Version Description
BACKUP YOUR DATABASE BEFORE INSTALLING! This release alters the table structure of the database. Once installed, please go to Statistics->Optimization->Database and add the visits index.
Download this release
Release Info
Developer | GregRoss |
Plugin | WP Statistics |
Version | 9.1 |
Comparing to | |
See all releases |
Code changes from version 9.0 to 9.1
- includes/log/all-browsers.php +2 -2
- includes/log/exclusions.php +3 -3
- includes/log/hit-statistics.php +4 -4
- includes/log/last-search.php +2 -1
- includes/log/last-visitor.php +2 -1
- includes/log/log.php +2 -0
- includes/log/search-statistics.php +4 -4
- includes/log/top-countries.php +1 -1
- includes/log/top-visitors.php +1 -1
- includes/log/widgets/browsers.php +2 -2
- includes/log/widgets/hits.php +3 -3
- includes/log/widgets/page.php +2 -2
- includes/log/widgets/search.php +3 -3
- includes/log/widgets/top.visitors.php +2 -0
- includes/optimization/tabs/wps-optimization-database.php +31 -0
- includes/optimization/wps-optimization.php +37 -1
- languages/wp_statistics-ckb.mo +0 -0
- languages/wp_statistics-ckb.po +502 -502
- languages/wp_statistics-de_DE.mo +0 -0
- languages/wp_statistics-de_DE.po +4 -4
- languages/wp_statistics-fa_IR.mo +0 -0
- languages/wp_statistics-fa_IR.po +2 -2
- languages/wp_statistics-fr_FR.mo +0 -0
- languages/wp_statistics-fr_FR.po +30 -30
- languages/wp_statistics-hu_HU.mo +0 -0
- languages/wp_statistics-hu_HU.po +149 -149
- languages/wp_statistics-nl_NL.mo +0 -0
- languages/wp_statistics-nl_NL.po +21 -21
- languages/wp_statistics-pl_PL.mo +0 -0
- languages/wp_statistics-pl_PL.po +3 -3
- readme.txt +14 -1
- wp-statistics.php +11 -3
- wps-install.php +3 -2
includes/log/all-browsers.php
CHANGED
@@ -39,7 +39,7 @@
|
|
39 |
|
40 |
browser_chart = jQuery.jqplot('browsers-log', [browser_data], {
|
41 |
title: {
|
42 |
-
text: '<b
|
43 |
fontSize: '12px',
|
44 |
fontFamily: 'Tahoma',
|
45 |
textColor: '#000000',
|
@@ -123,7 +123,7 @@
|
|
123 |
|
124 |
platform_chart = jQuery.jqplot('platform-log', [platform_data], {
|
125 |
title: {
|
126 |
-
text: '<b
|
127 |
fontSize: '12px',
|
128 |
fontFamily: 'Tahoma',
|
129 |
textColor: '#000000',
|
39 |
|
40 |
browser_chart = jQuery.jqplot('browsers-log', [browser_data], {
|
41 |
title: {
|
42 |
+
text: '<b>' + <?php echo json_encode(__('Browsers by type', 'wp_statistics')); ?> + '</b>',
|
43 |
fontSize: '12px',
|
44 |
fontFamily: 'Tahoma',
|
45 |
textColor: '#000000',
|
123 |
|
124 |
platform_chart = jQuery.jqplot('platform-log', [platform_data], {
|
125 |
title: {
|
126 |
+
text: '<b>' + <?php echo json_encode(__('Browsers by platform', 'wp_statistics')); ?> + '</b>',
|
127 |
fontSize: '12px',
|
128 |
fontFamily: 'Tahoma',
|
129 |
textColor: '#000000',
|
includes/log/exclusions.php
CHANGED
@@ -15,7 +15,7 @@
|
|
15 |
$excluded_reasons = array('Robot','Browscap','IP Match','Self Referral','Login Page','Admin Page','User Role','GeoIP','Hostname', 'Robot Threshold','Honey Pot','Feeds', 'Excluded URL');
|
16 |
$excluded_reason_tags = array('Robot' => 'robot','Browscap' => 'browscap','IP Match' => 'ipmatch','Self Referral' => 'selfreferral','Login Page' => 'loginpage','Admin Page' => 'adminpage','User Role' => 'userrole','Total' => 'total','GeoIP' => 'geoip','Hostname' => 'hostname','Robot Threshold' => 'robot_threshold','Honey Pot' => 'honeypot','Feeds' => 'feed', 'Excluded URL' => 'excluded_url');
|
17 |
$excluded_reason_db = array('Robot' => 'robot','Browscap' => 'browscap','IP Match' => 'ip match','Self Referral' => 'self referral','Login Page' => 'login page','Admin Page' => 'admin page','User Role' => 'user role','Total' => 'total','GeoIP' => 'geoip','Hostname' => 'hostname','Robot Threshold' => 'robot_threshold','Honey Pot' => 'honeypot','Feeds' => 'feed', 'Excluded URL' => 'excluded url');
|
18 |
-
$excluded_reason_translate = array( 'Robot' =>
|
19 |
$excluded_results = array('Total' => array() );
|
20 |
$excluded_total = 0;
|
21 |
|
@@ -96,7 +96,7 @@
|
|
96 |
?>
|
97 |
visit_chart = jQuery.jqplot('exclusion-stats', [<?php foreach( $excluded_reasons as $reason ) { echo "excluded_data_line_" . $excluded_reason_tags[$reason] . ", "; } ?>], {
|
98 |
title: {
|
99 |
-
text: '<b
|
100 |
fontSize: '12px',
|
101 |
fontFamily: 'Tahoma',
|
102 |
textColor: '#000000',
|
@@ -117,7 +117,7 @@
|
|
117 |
yaxis: {
|
118 |
min: 0,
|
119 |
padMin: 1.0,
|
120 |
-
label:
|
121 |
labelRenderer: jQuery.jqplot.CanvasAxisLabelRenderer,
|
122 |
labelOptions: {
|
123 |
angle: -90,
|
15 |
$excluded_reasons = array('Robot','Browscap','IP Match','Self Referral','Login Page','Admin Page','User Role','GeoIP','Hostname', 'Robot Threshold','Honey Pot','Feeds', 'Excluded URL');
|
16 |
$excluded_reason_tags = array('Robot' => 'robot','Browscap' => 'browscap','IP Match' => 'ipmatch','Self Referral' => 'selfreferral','Login Page' => 'loginpage','Admin Page' => 'adminpage','User Role' => 'userrole','Total' => 'total','GeoIP' => 'geoip','Hostname' => 'hostname','Robot Threshold' => 'robot_threshold','Honey Pot' => 'honeypot','Feeds' => 'feed', 'Excluded URL' => 'excluded_url');
|
17 |
$excluded_reason_db = array('Robot' => 'robot','Browscap' => 'browscap','IP Match' => 'ip match','Self Referral' => 'self referral','Login Page' => 'login page','Admin Page' => 'admin page','User Role' => 'user role','Total' => 'total','GeoIP' => 'geoip','Hostname' => 'hostname','Robot Threshold' => 'robot_threshold','Honey Pot' => 'honeypot','Feeds' => 'feed', 'Excluded URL' => 'excluded url');
|
18 |
+
$excluded_reason_translate = array( 'Robot' => json_encode(__('Robot', 'wp_statistics')), 'Browscap' => json_encode(__('Browscap', 'wp_statistics')), 'IP Match' => json_encode(__('IP Match', 'wp_statistics')), 'Self Referral' => json_encode(__('Self Referral', 'wp_statistics')), 'Login Page' => json_encode(__('Login Page', 'wp_statistics')), 'Admin Page' => json_encode(__('Admin Page', 'wp_statistics')), 'User Role' => json_encode(__('User Role', 'wp_statistics')), 'Total' => json_encode(__('Total', 'wp_statistics')), 'GeoIP' => json_encode(__('GeoIP', 'wp_statistics')), 'Hostname' => json_encode(__('Hostname', 'wp_statistics')), 'Robot Threshold' => json_encode(__('Robot Threshold', 'wp_statistics')), 'Honey Pot' => json_encode(__('Honey Pot', 'wp_statistics')), 'Feeds' => json_encode(__('Feeds', 'wp_statistics') ), 'Excluded URL' => json_encode(__('Excluded URL', 'wp_statistics') ));
|
19 |
$excluded_results = array('Total' => array() );
|
20 |
$excluded_total = 0;
|
21 |
|
96 |
?>
|
97 |
visit_chart = jQuery.jqplot('exclusion-stats', [<?php foreach( $excluded_reasons as $reason ) { echo "excluded_data_line_" . $excluded_reason_tags[$reason] . ", "; } ?>], {
|
98 |
title: {
|
99 |
+
text: '<b>' + <?php echo json_encode(__('Excluded hits in the last', 'wp_statistics') . ' ' . $daysToDisplay . ' ' . __('days', 'wp_statistics')); ?> + '</b>',
|
100 |
fontSize: '12px',
|
101 |
fontFamily: 'Tahoma',
|
102 |
textColor: '#000000',
|
117 |
yaxis: {
|
118 |
min: 0,
|
119 |
padMin: 1.0,
|
120 |
+
label: <?php echo json_encode(__('Number of excluded hits', 'wp_statistics')); ?>,
|
121 |
labelRenderer: jQuery.jqplot.CanvasAxisLabelRenderer,
|
122 |
labelOptions: {
|
123 |
angle: -90,
|
includes/log/hit-statistics.php
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
<script type="text/javascript">
|
2 |
jQuery(document).ready(function(){
|
3 |
-
|
4 |
});
|
5 |
</script>
|
6 |
<div class="wrap">
|
@@ -57,7 +57,7 @@
|
|
57 |
?>
|
58 |
visit_chart = jQuery.jqplot('visits-stats', [visit_data_line, visitor_data_line], {
|
59 |
title: {
|
60 |
-
text: '<b
|
61 |
fontSize: '12px',
|
62 |
fontFamily: 'Tahoma',
|
63 |
textColor: '#000000',
|
@@ -78,7 +78,7 @@
|
|
78 |
yaxis: {
|
79 |
min: 0,
|
80 |
padMin: 1.0,
|
81 |
-
label:
|
82 |
labelRenderer: jQuery.jqplot.CanvasAxisLabelRenderer,
|
83 |
labelOptions: {
|
84 |
angle: -90,
|
@@ -92,7 +92,7 @@
|
|
92 |
show: true,
|
93 |
location: 's',
|
94 |
placement: 'outsideGrid',
|
95 |
-
labels: ['<?php echo
|
96 |
renderer: jQuery.jqplot.EnhancedLegendRenderer,
|
97 |
rendererOptions:
|
98 |
{
|
1 |
<script type="text/javascript">
|
2 |
jQuery(document).ready(function(){
|
3 |
+
postboxes.add_postbox_toggles(pagenow);
|
4 |
});
|
5 |
</script>
|
6 |
<div class="wrap">
|
57 |
?>
|
58 |
visit_chart = jQuery.jqplot('visits-stats', [visit_data_line, visitor_data_line], {
|
59 |
title: {
|
60 |
+
text: '<b>' + <?php echo json_encode(__('Hits in the last', 'wp_statistics') . ' ' . $daysToDisplay . ' ' . __('days', 'wp_statistics')); ?> + '</b>',
|
61 |
fontSize: '12px',
|
62 |
fontFamily: 'Tahoma',
|
63 |
textColor: '#000000',
|
78 |
yaxis: {
|
79 |
min: 0,
|
80 |
padMin: 1.0,
|
81 |
+
label: <?php echo json_encode(__('Number of visits and visitors', 'wp_statistics')); ?>,
|
82 |
labelRenderer: jQuery.jqplot.CanvasAxisLabelRenderer,
|
83 |
labelOptions: {
|
84 |
angle: -90,
|
92 |
show: true,
|
93 |
location: 's',
|
94 |
placement: 'outsideGrid',
|
95 |
+
labels: ['<?php echo json_encode(__('Visit', 'wp_statistics')); ?>', '<?php echo json_encode(__('Visitor', 'wp_statistics')); ?>'],
|
96 |
renderer: jQuery.jqplot.EnhancedLegendRenderer,
|
97 |
rendererOptions:
|
98 |
{
|
includes/log/last-search.php
CHANGED
@@ -1,5 +1,6 @@
|
|
1 |
<script type="text/javascript">
|
2 |
-
|
|
|
3 |
});
|
4 |
</script>
|
5 |
<?php
|
1 |
<script type="text/javascript">
|
2 |
+
jQuery(document).ready(function(){
|
3 |
+
postboxes.add_postbox_toggles(pagenow);
|
4 |
});
|
5 |
</script>
|
6 |
<?php
|
includes/log/last-visitor.php
CHANGED
@@ -1,5 +1,6 @@
|
|
1 |
<script type="text/javascript">
|
2 |
-
|
|
|
3 |
});
|
4 |
</script>
|
5 |
<?php
|
1 |
<script type="text/javascript">
|
2 |
+
jQuery(document).ready(function(){
|
3 |
+
postboxes.add_postbox_toggles(pagenow);
|
4 |
});
|
5 |
</script>
|
6 |
<?php
|
includes/log/log.php
CHANGED
@@ -90,6 +90,7 @@
|
|
90 |
|
91 |
$display = $WP_Statistics->get_user_option('overview_display');
|
92 |
|
|
|
93 |
if( $display['A'][$slot] == '' ) { $display['A'][$slot] = $slot; }
|
94 |
|
95 |
$ret = 0;
|
@@ -133,6 +134,7 @@
|
|
133 |
|
134 |
$display = $WP_Statistics->get_user_option('overview_display');
|
135 |
|
|
|
136 |
if( $display['B'][$slot] == '' ) { $display['B'][$slot] = $slot; }
|
137 |
|
138 |
switch( $display['B'][$slot] ) {
|
90 |
|
91 |
$display = $WP_Statistics->get_user_option('overview_display');
|
92 |
|
93 |
+
if( !array_key_exists( $slot, $display['A'] ) ) { $display['A'][$slot] = $slot; }
|
94 |
if( $display['A'][$slot] == '' ) { $display['A'][$slot] = $slot; }
|
95 |
|
96 |
$ret = 0;
|
134 |
|
135 |
$display = $WP_Statistics->get_user_option('overview_display');
|
136 |
|
137 |
+
if( !array_key_exists( $slot, $display['B'] ) ) { $display['B'][$slot] = $slot; }
|
138 |
if( $display['B'][$slot] == '' ) { $display['B'][$slot] = $slot; }
|
139 |
|
140 |
switch( $display['B'][$slot] ) {
|
includes/log/search-statistics.php
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
<script type="text/javascript">
|
2 |
jQuery(document).ready(function(){
|
3 |
-
|
4 |
});
|
5 |
</script>
|
6 |
<?php
|
@@ -68,7 +68,7 @@
|
|
68 |
?>
|
69 |
visit_chart = jQuery.jqplot('search-stats', [<?php foreach( $search_engines as $se ) { echo "searches_data_line_" . $se['tag'] . ", "; } if( $total_stats == 1 ) { echo 'searches_data_line_total'; }?>], {
|
70 |
title: {
|
71 |
-
text: '<b
|
72 |
fontSize: '12px',
|
73 |
fontFamily: 'Tahoma',
|
74 |
textColor: '#000000',
|
@@ -89,7 +89,7 @@
|
|
89 |
yaxis: {
|
90 |
min: 0,
|
91 |
padMin: 1.0,
|
92 |
-
label: '<?php echo
|
93 |
labelRenderer: jQuery.jqplot.CanvasAxisLabelRenderer,
|
94 |
labelOptions: {
|
95 |
angle: -90,
|
@@ -103,7 +103,7 @@
|
|
103 |
show: true,
|
104 |
location: 's',
|
105 |
placement: 'outsideGrid',
|
106 |
-
labels: [<?php foreach( $search_engines as $se ) { echo "'" .
|
107 |
renderer: jQuery.jqplot.EnhancedLegendRenderer,
|
108 |
rendererOptions:
|
109 |
{
|
1 |
<script type="text/javascript">
|
2 |
jQuery(document).ready(function(){
|
3 |
+
postboxes.add_postbox_toggles(pagenow);
|
4 |
});
|
5 |
</script>
|
6 |
<?php
|
68 |
?>
|
69 |
visit_chart = jQuery.jqplot('search-stats', [<?php foreach( $search_engines as $se ) { echo "searches_data_line_" . $se['tag'] . ", "; } if( $total_stats == 1 ) { echo 'searches_data_line_total'; }?>], {
|
70 |
title: {
|
71 |
+
text: '<b>' + <?php echo json_encode(__('Search engine referrals in the last', 'wp_statistics') . ' ' . $daysToDisplay . ' ' . __('days', 'wp_statistics')); ?> + '</b>',
|
72 |
fontSize: '12px',
|
73 |
fontFamily: 'Tahoma',
|
74 |
textColor: '#000000',
|
89 |
yaxis: {
|
90 |
min: 0,
|
91 |
padMin: 1.0,
|
92 |
+
label: '<?php echo addslashes(__('Number of referrals', 'wp_statistics')); ?>',
|
93 |
labelRenderer: jQuery.jqplot.CanvasAxisLabelRenderer,
|
94 |
labelOptions: {
|
95 |
angle: -90,
|
103 |
show: true,
|
104 |
location: 's',
|
105 |
placement: 'outsideGrid',
|
106 |
+
labels: [<?php foreach( $search_engines as $se ) { echo "'" . addslashes($se['translated']) . "', "; } if( $total_stats == 1 ) { echo "'" . addslashes(__('Total', 'wp_statistics')) . "'"; }?>],
|
107 |
renderer: jQuery.jqplot.EnhancedLegendRenderer,
|
108 |
rendererOptions:
|
109 |
{
|
includes/log/top-countries.php
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
<script type="text/javascript">
|
2 |
jQuery(document).ready(function(){
|
3 |
-
|
4 |
});
|
5 |
</script>
|
6 |
<?php
|
1 |
<script type="text/javascript">
|
2 |
jQuery(document).ready(function(){
|
3 |
+
postboxes.add_postbox_toggles(pagenow);
|
4 |
});
|
5 |
</script>
|
6 |
<?php
|
includes/log/top-visitors.php
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
<script type="text/javascript">
|
2 |
jQuery(document).ready(function(){
|
3 |
-
|
4 |
});
|
5 |
</script>
|
6 |
<?php
|
1 |
<script type="text/javascript">
|
2 |
jQuery(document).ready(function(){
|
3 |
+
postboxes.add_postbox_toggles(pagenow);
|
4 |
});
|
5 |
</script>
|
6 |
<?php
|
includes/log/widgets/browsers.php
CHANGED
@@ -44,14 +44,14 @@
|
|
44 |
if( $count > 9 ) { break; }
|
45 |
}
|
46 |
|
47 |
-
echo "['" .
|
48 |
|
49 |
echo "];\n";
|
50 |
?>
|
51 |
|
52 |
browser_chart = jQuery.jqplot('browsers-log', [browser_data], {
|
53 |
title: {
|
54 |
-
text: '<b
|
55 |
fontSize: '12px',
|
56 |
fontFamily: 'Tahoma',
|
57 |
textColor: '#000000',
|
44 |
if( $count > 9 ) { break; }
|
45 |
}
|
46 |
|
47 |
+
echo "['" . json_encode(__('Other', 'wp_statistics')) . " (" . number_format_i18n($total - $topten) . ")'," . ( $total - $topten ) . "], ";
|
48 |
|
49 |
echo "];\n";
|
50 |
?>
|
51 |
|
52 |
browser_chart = jQuery.jqplot('browsers-log', [browser_data], {
|
53 |
title: {
|
54 |
+
text: '<b>' + <?php echo json_encode(__('Top 10 Browsers', 'wp_statistics')); ?> + '</b>',
|
55 |
fontSize: '12px',
|
56 |
fontFamily: 'Tahoma',
|
57 |
textColor: '#000000',
|
includes/log/widgets/hits.php
CHANGED
@@ -48,7 +48,7 @@
|
|
48 |
?>
|
49 |
visit_chart = jQuery.jqplot('visits-stats', [visit_data_line, visitor_data_line], {
|
50 |
title: {
|
51 |
-
text: '<b
|
52 |
fontSize: '12px',
|
53 |
fontFamily: 'Tahoma',
|
54 |
textColor: '#000000',
|
@@ -69,7 +69,7 @@
|
|
69 |
yaxis: {
|
70 |
min: 0,
|
71 |
padMin: 1.0,
|
72 |
-
label:
|
73 |
labelRenderer: jQuery.jqplot.CanvasAxisLabelRenderer,
|
74 |
labelOptions: {
|
75 |
angle: -90,
|
@@ -83,7 +83,7 @@
|
|
83 |
show: true,
|
84 |
location: 's',
|
85 |
placement: 'outsideGrid',
|
86 |
-
labels: ['<?php echo
|
87 |
renderer: jQuery.jqplot.EnhancedLegendRenderer,
|
88 |
rendererOptions:
|
89 |
{
|
48 |
?>
|
49 |
visit_chart = jQuery.jqplot('visits-stats', [visit_data_line, visitor_data_line], {
|
50 |
title: {
|
51 |
+
text: '<b>' + <?php echo json_encode(__('Hits in the last', 'wp_statistics') . ' ' . $days . ' ' . __('days', 'wp_statistics')); ?> + '</b>',
|
52 |
fontSize: '12px',
|
53 |
fontFamily: 'Tahoma',
|
54 |
textColor: '#000000',
|
69 |
yaxis: {
|
70 |
min: 0,
|
71 |
padMin: 1.0,
|
72 |
+
label: <?php echo json_encode(__('Number of visits and visitors', 'wp_statistics')); ?>,
|
73 |
labelRenderer: jQuery.jqplot.CanvasAxisLabelRenderer,
|
74 |
labelOptions: {
|
75 |
angle: -90,
|
83 |
show: true,
|
84 |
location: 's',
|
85 |
placement: 'outsideGrid',
|
86 |
+
labels: ['<?php echo json_encode(__('Visit', 'wp_statistics')); ?>', '<?php echo json_encode(__('Visitor', 'wp_statistics')); ?>'],
|
87 |
renderer: jQuery.jqplot.EnhancedLegendRenderer,
|
88 |
rendererOptions:
|
89 |
{
|
includes/log/widgets/page.php
CHANGED
@@ -36,7 +36,7 @@
|
|
36 |
?>
|
37 |
pages_jqchart = jQuery.jqplot('page-stats', [page_data_line], {
|
38 |
title: {
|
39 |
-
text: '<b
|
40 |
fontSize: '12px',
|
41 |
fontFamily: 'Tahoma',
|
42 |
textColor: '#000000',
|
@@ -57,7 +57,7 @@
|
|
57 |
yaxis: {
|
58 |
min: 0,
|
59 |
padMin: 1.0,
|
60 |
-
label:
|
61 |
labelRenderer: jQuery.jqplot.CanvasAxisLabelRenderer,
|
62 |
labelOptions: {
|
63 |
angle: -90,
|
36 |
?>
|
37 |
pages_jqchart = jQuery.jqplot('page-stats', [page_data_line], {
|
38 |
title: {
|
39 |
+
text: '<b>' + <?php echo json_encode(__($chart_title, 'wp_statistics')); ?> + '</b>',
|
40 |
fontSize: '12px',
|
41 |
fontFamily: 'Tahoma',
|
42 |
textColor: '#000000',
|
57 |
yaxis: {
|
58 |
min: 0,
|
59 |
padMin: 1.0,
|
60 |
+
label: <?php echo json_encode(__('Number of Hits', 'wp_statistics')); ?>,
|
61 |
labelRenderer: jQuery.jqplot.CanvasAxisLabelRenderer,
|
62 |
labelOptions: {
|
63 |
angle: -90,
|
includes/log/widgets/search.php
CHANGED
@@ -52,7 +52,7 @@
|
|
52 |
?>
|
53 |
referral_chart = jQuery.jqplot('search-stats', [<?php foreach( $search_engines as $se ) { echo "searches_data_line_" . $se['tag'] . ", "; } if( $total_stats == 1 ) { echo 'searches_data_line_total'; }?>], {
|
54 |
title: {
|
55 |
-
text: '<b
|
56 |
fontSize: '12px',
|
57 |
fontFamily: 'Tahoma',
|
58 |
textColor: '#000000',
|
@@ -73,7 +73,7 @@
|
|
73 |
yaxis: {
|
74 |
min: 0,
|
75 |
padMin: 1.0,
|
76 |
-
label:
|
77 |
labelRenderer: jQuery.jqplot.CanvasAxisLabelRenderer,
|
78 |
labelOptions: {
|
79 |
angle: -90,
|
@@ -87,7 +87,7 @@
|
|
87 |
show: true,
|
88 |
location: 's',
|
89 |
placement: 'outsideGrid',
|
90 |
-
labels: [<?php foreach( $search_engines as $se ) { echo
|
91 |
renderer: jQuery.jqplot.EnhancedLegendRenderer,
|
92 |
rendererOptions:
|
93 |
{
|
52 |
?>
|
53 |
referral_chart = jQuery.jqplot('search-stats', [<?php foreach( $search_engines as $se ) { echo "searches_data_line_" . $se['tag'] . ", "; } if( $total_stats == 1 ) { echo 'searches_data_line_total'; }?>], {
|
54 |
title: {
|
55 |
+
text: '<b>' + <?php echo json_encode(__('Search engine referrals in the last', 'wp_statistics') . ' ' . $days . ' ' . __('days', 'wp_statistics')); ?> + '</b>',
|
56 |
fontSize: '12px',
|
57 |
fontFamily: 'Tahoma',
|
58 |
textColor: '#000000',
|
73 |
yaxis: {
|
74 |
min: 0,
|
75 |
padMin: 1.0,
|
76 |
+
label: <?php echo json_encode(__('Number of referrals', 'wp_statistics')); ?>,
|
77 |
labelRenderer: jQuery.jqplot.CanvasAxisLabelRenderer,
|
78 |
labelOptions: {
|
79 |
angle: -90,
|
87 |
show: true,
|
88 |
location: 's',
|
89 |
placement: 'outsideGrid',
|
90 |
+
labels: [<?php foreach( $search_engines as $se ) { echo json_encode($se['translated']) . ", "; } if( $total_stats == 1 ) { echo "'" . json_encode(__('Total', 'wp_statistics')) . "'"; }?>],
|
91 |
renderer: jQuery.jqplot.EnhancedLegendRenderer,
|
92 |
rendererOptions:
|
93 |
{
|
includes/log/widgets/top.visitors.php
CHANGED
@@ -39,6 +39,8 @@
|
|
39 |
<?php
|
40 |
$result = $wpdb->get_results("SELECT * FROM `{$wpdb->prefix}statistics_visitor` WHERE last_counter = '{$sql_time}' ORDER BY hits DESC");
|
41 |
|
|
|
|
|
42 |
foreach( $result as $visitor) {
|
43 |
$i++;
|
44 |
|
39 |
<?php
|
40 |
$result = $wpdb->get_results("SELECT * FROM `{$wpdb->prefix}statistics_visitor` WHERE last_counter = '{$sql_time}' ORDER BY hits DESC");
|
41 |
|
42 |
+
$i = 0;
|
43 |
+
|
44 |
foreach( $result as $visitor) {
|
45 |
$i++;
|
46 |
|
includes/optimization/tabs/wps-optimization-database.php
CHANGED
@@ -50,6 +50,37 @@
|
|
50 |
?>
|
51 |
</td>
|
52 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
53 |
</tbody>
|
54 |
</table>
|
55 |
</div>
|
50 |
?>
|
51 |
</td>
|
52 |
</tr>
|
53 |
+
|
54 |
+
<tr valign="top">
|
55 |
+
<th scope="row">
|
56 |
+
<label for="index-submit"><?php _e('Visits Table', 'wp_statistics'); ?>:</label>
|
57 |
+
</th>
|
58 |
+
<td>
|
59 |
+
<?php
|
60 |
+
GLOBAL $wpdb;
|
61 |
+
$wp_prefix = $wpdb->prefix;
|
62 |
+
|
63 |
+
// Check the number of index's on the visits table, if it's only 5 we need to check for duplicate entries and remove them
|
64 |
+
$result = $wpdb->query("SHOW INDEX FROM {$wp_prefix}statistics_visit WHERE Key_name = 'unique_date'");
|
65 |
+
|
66 |
+
// Note, the result will be the number of fields contained in the index, so in our case 1.
|
67 |
+
if( $result != 1 ) {
|
68 |
+
?>
|
69 |
+
<input id="visits-submit" class="button button-primary" type="button" value="<?php _e('Update Now!', 'wp_statistics'); ?>" name="visit-submit" onclick="location.href=document.URL+'&visits=1&tab=database'">
|
70 |
+
<p class="description"><?php _e('Older installs of WP Statistics allow for duplicate entries in the visits table in a corner case. Newer installs protect against this with a unique index on the table. To create the index on the older installs duplicate entries must be deleted first. Clicking "Update Now" will scan the vistits table, delete duplicate entries and add the index.', 'wp_statistics'); ?></p>
|
71 |
+
<p class="description"><?php _e('This operation could take a long time on installs with many rows in the visits table.', 'wp_statistics'); ?></p>
|
72 |
+
<?php
|
73 |
+
}
|
74 |
+
else {
|
75 |
+
?>
|
76 |
+
<p class="description"><?php _e('Older installs of WP Statistics allow for duplicate entries in the visits table in a corner case. Newer installs protect against this with a unique index on the table.', 'wp_statistics'); ?></p>
|
77 |
+
<p class="description"><?php _e('Congratulations, your installation is already up to date, nothing to do.', 'wp_statistics'); ?></p>
|
78 |
+
<?php
|
79 |
+
}
|
80 |
+
?>
|
81 |
+
</td>
|
82 |
+
|
83 |
+
</tr>
|
84 |
</tbody>
|
85 |
</table>
|
86 |
</div>
|
includes/optimization/wps-optimization.php
CHANGED
@@ -57,7 +57,7 @@
|
|
57 |
// Check the number of index's on the visitors table, if it's only 5 we need to check for duplicate entries and remove them
|
58 |
$result = $wpdb->query("SHOW INDEX FROM {$wp_prefix}statistics_visitor WHERE Key_name = 'date_ip'");
|
59 |
|
60 |
-
if( $result !=
|
61 |
// We have to loop through all the rows in the visitors table to check for duplicates that may have been created in error.
|
62 |
$result = $wpdb->get_results( "SELECT ID, last_counter, ip FROM {$wp_prefix}statistics_visitor ORDER BY last_counter, ip" );
|
63 |
|
@@ -89,6 +89,42 @@
|
|
89 |
}
|
90 |
}
|
91 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
92 |
if( array_key_exists( 'historical-submit', $_POST ) ) {
|
93 |
|
94 |
if( array_key_exists( 'wps_historical_visitors', $_POST ) ) {
|
57 |
// Check the number of index's on the visitors table, if it's only 5 we need to check for duplicate entries and remove them
|
58 |
$result = $wpdb->query("SHOW INDEX FROM {$wp_prefix}statistics_visitor WHERE Key_name = 'date_ip'");
|
59 |
|
60 |
+
if( $result != 5 ) {
|
61 |
// We have to loop through all the rows in the visitors table to check for duplicates that may have been created in error.
|
62 |
$result = $wpdb->get_results( "SELECT ID, last_counter, ip FROM {$wp_prefix}statistics_visitor ORDER BY last_counter, ip" );
|
63 |
|
89 |
}
|
90 |
}
|
91 |
|
92 |
+
if( array_key_exists( 'visits', $_GET ) ) {
|
93 |
+
if( intval($_GET['visits']) == 1 ) {
|
94 |
+
// Check the number of index's on the visits table, if it's only 5 we need to check for duplicate entries and remove them
|
95 |
+
$result = $wpdb->query("SHOW INDEX FROM {$wp_prefix}statistics_visit WHERE Key_name = 'unique_date'");
|
96 |
+
|
97 |
+
// Note, the result will be the number of fields contained in the index, so in our case 1.
|
98 |
+
if( $result != 1 ) {
|
99 |
+
// We have to loop through all the rows in the visitors table to check for duplicates that may have been created in error.
|
100 |
+
$result = $wpdb->get_results( "SELECT ID, last_counter, visit FROM {$wp_prefix}statistics_visit ORDER BY last_counter, visit DESC" );
|
101 |
+
|
102 |
+
// Setup the initial values.
|
103 |
+
$lastrow = array( 'last_counter' => '', 'visit' => 0, 'id' => 0 );
|
104 |
+
$deleterows = array();
|
105 |
+
|
106 |
+
// Ok, now iterate over the results.
|
107 |
+
foreach( $result as $row ) {
|
108 |
+
// if the last_counter (the date) and IP is the same as the last row, add the row to be deleted.
|
109 |
+
if( $row->last_counter == $lastrow['last_counter'] ) { $deleterows[] .= $row->ID; }
|
110 |
+
|
111 |
+
// Update the lastrow data.
|
112 |
+
$lastrow['last_counter'] = $row->last_counter;
|
113 |
+
$lastrow['id'] = $row->ID;
|
114 |
+
$lastrow['visit'] = $row->visit;
|
115 |
+
}
|
116 |
+
|
117 |
+
// Now do the acutal deletions.
|
118 |
+
foreach( $deleterows as $row ) {
|
119 |
+
$wpdb->delete( $wp_prefix . 'statistics_visit', array( 'ID' => $row ) );
|
120 |
+
}
|
121 |
+
|
122 |
+
// The table should be ready to be updated now with the new index, so let's do it.
|
123 |
+
$result = $wpdb->get_results( "ALTER TABLE " . $wp_prefix . 'statistics_visit' . " ADD UNIQUE `unique_date` ( `last_counter` )" );
|
124 |
+
}
|
125 |
+
}
|
126 |
+
}
|
127 |
+
|
128 |
if( array_key_exists( 'historical-submit', $_POST ) ) {
|
129 |
|
130 |
if( array_key_exists( 'wps_historical_visitors', $_POST ) ) {
|
languages/wp_statistics-ckb.mo
CHANGED
Binary file
|
languages/wp_statistics-ckb.po
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
# This file is distributed under the same license as the WP Statistics package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"PO-Revision-Date: 2015-03-
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -40,15 +40,15 @@ msgstr "بەستەری دەرکراو"
|
|
40 |
|
41 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:58
|
42 |
msgid "Last 365 Days (Year)"
|
43 |
-
msgstr "
|
44 |
|
45 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:52
|
46 |
msgid "Last 30 Days (Month)"
|
47 |
-
msgstr "
|
48 |
|
49 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:46
|
50 |
msgid "Last 7 Days (Week)"
|
51 |
-
msgstr "
|
52 |
|
53 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:398
|
54 |
msgid "Yahoo!"
|
@@ -60,7 +60,7 @@ msgstr "یاندیکس"
|
|
60 |
|
61 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:395
|
62 |
msgid "clearch.org"
|
63 |
-
msgstr ""
|
64 |
|
65 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:396
|
66 |
msgid "DuckDuckGo"
|
@@ -76,7 +76,7 @@ msgstr "بەیدوو"
|
|
76 |
|
77 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:69
|
78 |
msgid "Hits in the last 20 days"
|
79 |
-
msgstr "
|
80 |
|
81 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
|
82 |
msgid "Feeds"
|
@@ -221,857 +221,857 @@ msgstr "ئاگاداركردنەوەكانی بەڕێوەبەر بشارەوە
|
|
221 |
|
222 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:259
|
223 |
msgid "By default WP Statistics displays an alert if any of the core features are disabled on every admin page, this option will disable these notices."
|
224 |
-
msgstr ""
|
225 |
|
226 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:265
|
227 |
msgid "Delete the manual"
|
228 |
-
msgstr ""
|
229 |
|
230 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:271
|
231 |
msgid "By default WP Statistics stores the admin manual in the plugin directory (~5 meg), if this option is enabled it will be deleted now and during upgrades in the future."
|
232 |
-
msgstr ""
|
233 |
|
234 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:276
|
235 |
msgid "Search Engines"
|
236 |
-
msgstr ""
|
237 |
|
238 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:281
|
239 |
msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
|
240 |
-
msgstr ""
|
241 |
|
242 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:296
|
243 |
msgid "disable"
|
244 |
-
msgstr ""
|
245 |
|
246 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:297
|
247 |
msgid "Disable %s from data collection and reporting."
|
248 |
-
msgstr ""
|
249 |
|
250 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:303
|
251 |
msgid "Charts"
|
252 |
-
msgstr ""
|
253 |
|
254 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:308
|
255 |
msgid "Include totals"
|
256 |
-
msgstr ""
|
257 |
|
258 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:314
|
259 |
msgid "Add a total line to charts with multiple values, like the search engine referrals"
|
260 |
-
msgstr ""
|
261 |
|
262 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:27
|
263 |
msgid "GeoIP settings"
|
264 |
-
msgstr ""
|
265 |
|
266 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:32
|
267 |
msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
|
268 |
-
msgstr ""
|
269 |
|
270 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:42
|
271 |
msgid "GeoIP collection"
|
272 |
-
msgstr ""
|
273 |
|
274 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:48
|
275 |
msgid "For get more information and location (country) from visitor, enable this feature."
|
276 |
-
msgstr ""
|
277 |
|
278 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:54
|
279 |
msgid "Update GeoIP Info"
|
280 |
-
msgstr ""
|
281 |
|
282 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:59
|
283 |
msgid "Download GeoIP Database"
|
284 |
-
msgstr ""
|
285 |
|
286 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:66
|
287 |
msgid "Schedule monthly update of GeoIP DB"
|
288 |
-
msgstr ""
|
289 |
|
290 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:92
|
291 |
msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
|
292 |
-
msgstr ""
|
293 |
|
294 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:93
|
295 |
msgid "This option will also download the database if the local filesize is less than 1k (which usually means the stub that comes with the plugin is still in place)."
|
296 |
-
msgstr ""
|
297 |
|
298 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:99
|
299 |
msgid "Populate missing GeoIP after update of GeoIP DB"
|
300 |
-
msgstr ""
|
301 |
|
302 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:105
|
303 |
msgid "Update any missing GeoIP data after downloading a new database."
|
304 |
-
msgstr ""
|
305 |
|
306 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:111
|
307 |
msgid "Country code for private IP addresses"
|
308 |
-
msgstr ""
|
309 |
|
310 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:116
|
311 |
msgid "The international standard two letter country code (ie. US = United States, CA = Canada, etc.) for private (non-routable) IP addresses (ie. 10.0.0.1, 192.158.1.1, 127.0.0.1, etc.). Use \"000\" (three zeros) to use \"Unknown\" as the country code."
|
312 |
-
msgstr ""
|
313 |
|
314 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:127
|
315 |
msgid "GeoIP collection is disabled due to the following reasons:"
|
316 |
-
msgstr ""
|
317 |
|
318 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:130
|
319 |
msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
|
320 |
-
msgstr ""
|
321 |
|
322 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:135
|
323 |
msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
|
324 |
-
msgstr ""
|
325 |
|
326 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:141
|
327 |
msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
|
328 |
-
msgstr ""
|
329 |
|
330 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:147
|
331 |
msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
|
332 |
-
msgstr ""
|
333 |
|
334 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:20
|
335 |
msgid "This will permanently delete data from the database each day, are you sure you want to enable this option?"
|
336 |
-
msgstr ""
|
337 |
|
338 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:30
|
339 |
msgid "Database Maintenance"
|
340 |
-
msgstr ""
|
341 |
|
342 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:35
|
343 |
msgid "Run a daily WP Cron job to prune the databases"
|
344 |
-
msgstr ""
|
345 |
|
346 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:41
|
347 |
msgid "A WP Cron job will be run daily to prune any data older than a set number of days."
|
348 |
-
msgstr ""
|
349 |
|
350 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:47
|
351 |
msgid "Prune data older than"
|
352 |
-
msgstr ""
|
353 |
|
354 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:52
|
355 |
msgid "Days"
|
356 |
-
msgstr ""
|
357 |
|
358 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:53
|
359 |
msgid "The number of days to keep statistics for. Minimum value is 30 days. Invalid values will disable the daily maintenance."
|
360 |
-
msgstr ""
|
361 |
|
362 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:44
|
363 |
msgid "Common Report Options"
|
364 |
-
msgstr ""
|
365 |
|
366 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:49
|
367 |
msgid "E-mail addresses"
|
368 |
-
msgstr ""
|
369 |
|
370 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:54
|
371 |
msgid "A comma separated list of e-mail addresses to send reports to."
|
372 |
-
msgstr ""
|
373 |
|
374 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:59
|
375 |
msgid "Update Reports"
|
376 |
-
msgstr ""
|
377 |
|
378 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
|
379 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:64
|
380 |
msgid "Browscap"
|
381 |
-
msgstr ""
|
382 |
|
383 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:70
|
384 |
msgid "Send a report whenever the browscap.ini is updated."
|
385 |
-
msgstr ""
|
386 |
|
387 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
|
388 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:76
|
389 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:104
|
390 |
msgid "GeoIP"
|
391 |
-
msgstr ""
|
392 |
|
393 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:82
|
394 |
msgid "Send a report whenever the GeoIP database is updated."
|
395 |
-
msgstr ""
|
396 |
|
397 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:88
|
398 |
msgid "Pruning"
|
399 |
-
msgstr ""
|
400 |
|
401 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:94
|
402 |
msgid "Send a report whenever the pruning of database is run."
|
403 |
-
msgstr ""
|
404 |
|
405 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:100
|
406 |
msgid "Upgrade"
|
407 |
-
msgstr ""
|
408 |
|
409 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:106
|
410 |
msgid "Send a report whenever the plugin is upgraded."
|
411 |
-
msgstr ""
|
412 |
|
413 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:111
|
414 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:116
|
415 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:174
|
416 |
msgid "Statistical reporting"
|
417 |
-
msgstr ""
|
418 |
|
419 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:129
|
420 |
msgid "Schedule"
|
421 |
-
msgstr ""
|
422 |
|
423 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:153
|
424 |
msgid "Select how often to receive statistical report."
|
425 |
-
msgstr ""
|
426 |
|
427 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:159
|
428 |
msgid "Send reports via"
|
429 |
-
msgstr ""
|
430 |
|
431 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:165
|
432 |
msgid "Email"
|
433 |
-
msgstr ""
|
434 |
|
435 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:167
|
436 |
msgid "SMS"
|
437 |
-
msgstr ""
|
438 |
|
439 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:170
|
440 |
msgid "Select delivery method for statistical report."
|
441 |
-
msgstr ""
|
442 |
|
443 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:173
|
444 |
msgid "Note: To send SMS text messages please install the %s plugin."
|
445 |
-
msgstr ""
|
446 |
|
447 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:173
|
448 |
msgid "WordPress SMS"
|
449 |
-
msgstr ""
|
450 |
|
451 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:180
|
452 |
msgid "Report body"
|
453 |
-
msgstr ""
|
454 |
|
455 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:185
|
456 |
msgid "Enter the contents of the report."
|
457 |
-
msgstr ""
|
458 |
|
459 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:187
|
460 |
msgid "Any shortcode supported by your installation of WordPress, include all shortcodes for WP Statistics (see the admin manual for a list of codes available) are supported in the body of the message. Here are some examples:"
|
461 |
-
msgstr ""
|
462 |
|
463 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
464 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:38
|
465 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:245
|
466 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:468
|
467 |
msgid "User Online"
|
468 |
-
msgstr ""
|
469 |
|
470 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:189
|
471 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:52
|
472 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:251
|
473 |
msgid "Today Visitor"
|
474 |
-
msgstr ""
|
475 |
|
476 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:190
|
477 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:45
|
478 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:248
|
479 |
msgid "Today Visit"
|
480 |
-
msgstr ""
|
481 |
|
482 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:191
|
483 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:66
|
484 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:257
|
485 |
msgid "Yesterday Visitor"
|
486 |
-
msgstr ""
|
487 |
|
488 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:192
|
489 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:59
|
490 |
msgid "Yesterday Visit"
|
491 |
-
msgstr ""
|
492 |
|
493 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:193
|
494 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:101
|
495 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:272
|
496 |
msgid "Total Visitor"
|
497 |
-
msgstr ""
|
498 |
|
499 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:194
|
500 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:94
|
501 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:269
|
502 |
msgid "Total Visit"
|
503 |
-
msgstr ""
|
504 |
|
505 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:23
|
506 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:32
|
507 |
msgid "None"
|
508 |
-
msgstr ""
|
509 |
|
510 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:24
|
511 |
msgid "Summary Statistics"
|
512 |
-
msgstr ""
|
513 |
|
514 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:28
|
515 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:108
|
516 |
msgid "About"
|
517 |
-
msgstr ""
|
518 |
|
519 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
520 |
msgid "Hits Statistical Chart"
|
521 |
-
msgstr ""
|
522 |
|
523 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:36
|
524 |
msgid "Search Engine Referrers Statistical Chart"
|
525 |
-
msgstr ""
|
526 |
|
527 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:38
|
528 |
msgid "Top Pages Visited"
|
529 |
-
msgstr ""
|
530 |
|
531 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:73
|
532 |
msgid "Dashboard"
|
533 |
-
msgstr ""
|
534 |
|
535 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:77
|
536 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:97
|
537 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:117
|
538 |
msgid "The following items are global to all users."
|
539 |
-
msgstr ""
|
540 |
|
541 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:82
|
542 |
msgid "Disable dashboard widgets"
|
543 |
-
msgstr ""
|
544 |
|
545 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:88
|
546 |
msgid "Disable the dashboard widgets."
|
547 |
-
msgstr ""
|
548 |
|
549 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:93
|
550 |
msgid "Page/Post Editor"
|
551 |
-
msgstr ""
|
552 |
|
553 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:102
|
554 |
msgid "Disable post/page editor widget"
|
555 |
-
msgstr ""
|
556 |
|
557 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:108
|
558 |
msgid "Disable the page/post editor widget."
|
559 |
-
msgstr ""
|
560 |
|
561 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:122
|
562 |
msgid "Map type"
|
563 |
-
msgstr ""
|
564 |
|
565 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:397
|
566 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:128
|
567 |
msgid "Google"
|
568 |
-
msgstr ""
|
569 |
|
570 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:128
|
571 |
msgid "JQVMap"
|
572 |
-
msgstr ""
|
573 |
|
574 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:135
|
575 |
msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
|
576 |
-
msgstr ""
|
577 |
|
578 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:136
|
579 |
msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
|
580 |
-
msgstr ""
|
581 |
|
582 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:142
|
583 |
msgid "Disable map"
|
584 |
-
msgstr ""
|
585 |
|
586 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:148
|
587 |
msgid "Disable the map display"
|
588 |
-
msgstr ""
|
589 |
|
590 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:154
|
591 |
msgid "Get country location from Google"
|
592 |
-
msgstr ""
|
593 |
|
594 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:160
|
595 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
596 |
-
msgstr ""
|
597 |
|
598 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:171
|
599 |
msgid "Overview Widgets to Display"
|
600 |
-
msgstr ""
|
601 |
|
602 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:175
|
603 |
msgid "The following items are unique to each user. If you do not select the 'About' widget it will automatically be displayed in the last positon of column A."
|
604 |
-
msgstr ""
|
605 |
|
606 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:180
|
607 |
msgid "Slot"
|
608 |
-
msgstr ""
|
609 |
|
610 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:184
|
611 |
msgid "Column A"
|
612 |
-
msgstr ""
|
613 |
|
614 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:188
|
615 |
msgid "Column B"
|
616 |
-
msgstr ""
|
617 |
|
618 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:194
|
619 |
msgid "Slot 1"
|
620 |
-
msgstr ""
|
621 |
|
622 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:224
|
623 |
msgid "Slot 2"
|
624 |
-
msgstr ""
|
625 |
|
626 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:254
|
627 |
msgid "Slot 3"
|
628 |
-
msgstr ""
|
629 |
|
630 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:284
|
631 |
msgid "Slot 4"
|
632 |
-
msgstr ""
|
633 |
|
634 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:314
|
635 |
msgid "Slot 5"
|
636 |
-
msgstr ""
|
637 |
|
638 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:344
|
639 |
msgid "Slot 6"
|
640 |
-
msgstr ""
|
641 |
|
642 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:348
|
643 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:370
|
644 |
msgid "N/A"
|
645 |
-
msgstr ""
|
646 |
|
647 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:366
|
648 |
msgid "Slot 7"
|
649 |
-
msgstr ""
|
650 |
|
651 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:15
|
652 |
msgid "WP Statisitcs Removal"
|
653 |
-
msgstr ""
|
654 |
|
655 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:20
|
656 |
msgid "Uninstalling WP Statistics will not remove the data and settings, you can use this option to remove the WP Statistics data from your install before uninstalling the plugin."
|
657 |
-
msgstr ""
|
658 |
|
659 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:23
|
660 |
msgid "Once you submit this form the settings will be deleted during the page load, however WP Statistics will still show up in your Admin menu until another page load is executed."
|
661 |
-
msgstr ""
|
662 |
|
663 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:29
|
664 |
msgid "Remove data and settings"
|
665 |
-
msgstr ""
|
666 |
|
667 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:34
|
668 |
msgid "Remove"
|
669 |
-
msgstr ""
|
670 |
|
671 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:35
|
672 |
msgid "Remove data and settings, this action cannot be undone."
|
673 |
-
msgstr ""
|
674 |
|
675 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:100
|
676 |
msgid "General"
|
677 |
-
msgstr ""
|
678 |
|
679 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:101
|
680 |
msgid "Notifications"
|
681 |
-
msgstr ""
|
682 |
|
683 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:102
|
684 |
msgid "Dashboard/Overview"
|
685 |
-
msgstr ""
|
686 |
|
687 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:103
|
688 |
msgid "Access/Exclusions"
|
689 |
-
msgstr ""
|
690 |
|
691 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:105
|
692 |
msgid "browscap"
|
693 |
-
msgstr ""
|
694 |
|
695 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:106
|
696 |
msgid "Maintenance"
|
697 |
-
msgstr ""
|
698 |
|
699 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:107
|
700 |
msgid "Removal"
|
701 |
-
msgstr ""
|
702 |
|
703 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:150
|
704 |
msgid "Update"
|
705 |
-
msgstr ""
|
706 |
|
707 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/manual/manual.php:29
|
708 |
msgid "Manual not found: %s"
|
709 |
-
msgstr ""
|
710 |
|
711 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/manual/manual.php:39
|
712 |
msgid "Invalid file type selected: %s"
|
713 |
-
msgstr ""
|
714 |
|
715 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:10
|
716 |
msgid "Once Weekly"
|
717 |
-
msgstr ""
|
718 |
|
719 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:17
|
720 |
msgid "Once Every 2 Weeks"
|
721 |
-
msgstr ""
|
722 |
|
723 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:24
|
724 |
msgid "Once Every 4 Weeks"
|
725 |
-
msgstr ""
|
726 |
|
727 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:14
|
728 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:288
|
729 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:325
|
730 |
msgid "Statistics"
|
731 |
-
msgstr ""
|
732 |
|
733 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:15
|
734 |
msgid "Show site stats in sidebar."
|
735 |
-
msgstr ""
|
736 |
|
737 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:73
|
738 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:260
|
739 |
msgid "Week Visit"
|
740 |
-
msgstr ""
|
741 |
|
742 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:80
|
743 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:263
|
744 |
msgid "Month Visit"
|
745 |
-
msgstr ""
|
746 |
|
747 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:87
|
748 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:266
|
749 |
msgid "Years Visit"
|
750 |
-
msgstr ""
|
751 |
|
752 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:108
|
753 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:275
|
754 |
msgid "Total Page Views"
|
755 |
-
msgstr ""
|
756 |
|
757 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:116
|
758 |
msgid "Search Engine referred"
|
759 |
-
msgstr ""
|
760 |
|
761 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:123
|
762 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:298
|
763 |
msgid "Total Posts"
|
764 |
-
msgstr ""
|
765 |
|
766 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:130
|
767 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:301
|
768 |
msgid "Total Pages"
|
769 |
-
msgstr ""
|
770 |
|
771 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:137
|
772 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:304
|
773 |
msgid "Total Comments"
|
774 |
-
msgstr ""
|
775 |
|
776 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:144
|
777 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:307
|
778 |
msgid "Total Spams"
|
779 |
-
msgstr ""
|
780 |
|
781 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:151
|
782 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:310
|
783 |
msgid "Total Users"
|
784 |
-
msgstr ""
|
785 |
|
786 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:158
|
787 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:313
|
788 |
msgid "Average Posts"
|
789 |
-
msgstr ""
|
790 |
|
791 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:165
|
792 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:316
|
793 |
msgid "Average Comments"
|
794 |
-
msgstr ""
|
795 |
|
796 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:172
|
797 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:319
|
798 |
msgid "Average Users"
|
799 |
-
msgstr ""
|
800 |
|
801 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:179
|
802 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:322
|
803 |
msgid "Last Post Date"
|
804 |
-
msgstr ""
|
805 |
|
806 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:238
|
807 |
msgid "Name"
|
808 |
-
msgstr ""
|
809 |
|
810 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:242
|
811 |
msgid "Items"
|
812 |
-
msgstr ""
|
813 |
|
814 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:254
|
815 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:493
|
816 |
msgid "Yesterday visit"
|
817 |
-
msgstr ""
|
818 |
|
819 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:278
|
820 |
msgid "Search Engine Referred"
|
821 |
-
msgstr ""
|
822 |
|
823 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:281
|
824 |
msgid "Select type of search engine"
|
825 |
-
msgstr ""
|
826 |
|
827 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:36
|
828 |
msgid "ERROR: WP Statistics has detected an unsupported version of PHP, WP Statistics will not function without PHP Version "
|
829 |
-
msgstr ""
|
830 |
|
831 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:36
|
832 |
msgid " or higher!"
|
833 |
-
msgstr ""
|
834 |
|
835 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:36
|
836 |
msgid "Your current PHP version is"
|
837 |
-
msgstr ""
|
838 |
|
839 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:51
|
840 |
msgid "WP Statistics has been removed, please disable and delete it."
|
841 |
-
msgstr ""
|
842 |
|
843 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
|
844 |
msgid "WP Statistics"
|
845 |
-
msgstr ""
|
846 |
|
847 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:28
|
848 |
msgid "Complete statistics for your WordPress site."
|
849 |
-
msgstr ""
|
850 |
|
851 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:101
|
852 |
msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
|
853 |
-
msgstr ""
|
854 |
|
855 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:101
|
856 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:104
|
857 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:107
|
858 |
msgid "setting page"
|
859 |
-
msgstr ""
|
860 |
|
861 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:104
|
862 |
msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
|
863 |
-
msgstr ""
|
864 |
|
865 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:107
|
866 |
msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
|
867 |
-
msgstr ""
|
868 |
|
869 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:110
|
870 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
871 |
-
msgstr ""
|
872 |
|
873 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:110
|
874 |
msgid "Setting page > GeoIP"
|
875 |
-
msgstr ""
|
876 |
|
877 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:195
|
878 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:307
|
879 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:379
|
880 |
msgid "Settings"
|
881 |
-
msgstr ""
|
882 |
|
883 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:207
|
884 |
msgid "Click here to visit the plugin on WordPress.org"
|
885 |
-
msgstr ""
|
886 |
|
887 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:207
|
888 |
msgid "Visit WordPress.org page"
|
889 |
-
msgstr ""
|
890 |
|
891 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:210
|
892 |
msgid "Click here to rate and review this plugin on WordPress.org"
|
893 |
-
msgstr ""
|
894 |
|
895 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:210
|
896 |
msgid "Rate this plugin"
|
897 |
-
msgstr ""
|
898 |
|
899 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:254
|
900 |
msgid "WP Statistics - Hits"
|
901 |
-
msgstr ""
|
902 |
|
903 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:291
|
904 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:328
|
905 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:366
|
906 |
msgid "Overview"
|
907 |
-
msgstr ""
|
908 |
|
909 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:298
|
910 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:371
|
911 |
msgid "Online"
|
912 |
-
msgstr ""
|
913 |
|
914 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:300
|
915 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:373
|
916 |
msgid "Referrers"
|
917 |
-
msgstr ""
|
918 |
|
919 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:301
|
920 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:374
|
921 |
msgid "Searches"
|
922 |
-
msgstr ""
|
923 |
|
924 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:302
|
925 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:375
|
926 |
msgid "Search Words"
|
927 |
-
msgstr ""
|
928 |
|
929 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:303
|
930 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:376
|
931 |
msgid "Top Visitors Today"
|
932 |
-
msgstr ""
|
933 |
|
934 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:306
|
935 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:378
|
936 |
msgid "Optimization"
|
937 |
-
msgstr ""
|
938 |
|
939 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:311
|
940 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:342
|
941 |
msgid "Manual"
|
942 |
-
msgstr ""
|
943 |
|
944 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:357
|
945 |
msgid "Site"
|
946 |
-
msgstr ""
|
947 |
|
948 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:358
|
949 |
msgid "Options"
|
950 |
-
msgstr ""
|
951 |
|
952 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:475
|
953 |
msgid "Today visitor"
|
954 |
-
msgstr ""
|
955 |
|
956 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:481
|
957 |
msgid "Today visit"
|
958 |
-
msgstr ""
|
959 |
|
960 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:487
|
961 |
msgid "Yesterday visitor"
|
962 |
-
msgstr ""
|
963 |
|
964 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:499
|
965 |
msgid "View Stats"
|
966 |
-
msgstr ""
|
967 |
|
968 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:523
|
969 |
msgid "Download ODF file"
|
970 |
-
msgstr ""
|
971 |
|
972 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:524
|
973 |
msgid "Download HTML file"
|
974 |
-
msgstr ""
|
975 |
|
976 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:528
|
977 |
msgid "Manual file not found."
|
978 |
-
msgstr ""
|
979 |
|
980 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:595
|
981 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:706
|
982 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:740
|
983 |
msgid "You do not have sufficient permissions to access this page."
|
984 |
-
msgstr ""
|
985 |
|
986 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:608
|
987 |
msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
|
988 |
-
msgstr ""
|
989 |
|
990 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-install.php:250
|
991 |
msgid "WP Statistics %s installed on"
|
992 |
-
msgstr ""
|
993 |
|
994 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:34
|
995 |
msgid "Error downloading GeoIP database from: %s - %s"
|
996 |
-
msgstr ""
|
997 |
|
998 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:45
|
999 |
msgid "Error could not open downloaded GeoIP database for reading: %s"
|
1000 |
-
msgstr ""
|
1001 |
|
1002 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:52
|
1003 |
msgid "Error could not open destination GeoIP database for writing %s"
|
1004 |
-
msgstr ""
|
1005 |
|
1006 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:68
|
1007 |
msgid "GeoIP Database updated successfully!"
|
1008 |
-
msgstr ""
|
1009 |
|
1010 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:93
|
1011 |
msgid "GeoIP update on"
|
1012 |
-
msgstr ""
|
1013 |
|
1014 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:160
|
1015 |
msgid "Error downloading browscap database from: %s - %s"
|
1016 |
-
msgstr ""
|
1017 |
|
1018 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:262
|
1019 |
msgid "browscap database updated successfully!"
|
1020 |
-
msgstr ""
|
1021 |
|
1022 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:273
|
1023 |
msgid "browscap database updated failed! Cache file too large, reverting to previous browscap.ini."
|
1024 |
-
msgstr ""
|
1025 |
|
1026 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:281
|
1027 |
msgid "browscap database updated failed! New browscap.ini is mis-identifing user agents as crawlers, reverting to previous browscap.ini."
|
1028 |
-
msgstr ""
|
1029 |
|
1030 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:303
|
1031 |
msgid "browscap already at current version!"
|
1032 |
-
msgstr ""
|
1033 |
|
1034 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:316
|
1035 |
msgid "Browscap.ini update on"
|
1036 |
-
msgstr ""
|
1037 |
|
1038 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:55
|
1039 |
msgid "Quick Stats"
|
1040 |
-
msgstr ""
|
1041 |
|
1042 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:56
|
1043 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:54
|
1044 |
msgid "Top 10 Browsers"
|
1045 |
-
msgstr ""
|
1046 |
|
1047 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:57
|
1048 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:11
|
1049 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:27
|
1050 |
msgid "Top 10 Countries"
|
1051 |
-
msgstr ""
|
1052 |
|
1053 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:58
|
1054 |
msgid "Today's Visitor Map"
|
1055 |
-
msgstr ""
|
1056 |
|
1057 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:59
|
1058 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:46
|
1059 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:8
|
1060 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:8
|
1061 |
msgid "Hit Statistics"
|
1062 |
-
msgstr ""
|
1063 |
|
1064 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:60
|
1065 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:11
|
1066 |
msgid "Top 10 Pages"
|
1067 |
-
msgstr ""
|
1068 |
|
1069 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:61
|
1070 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:31
|
1071 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:8
|
1072 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:39
|
1073 |
msgid "Recent Visitors"
|
1074 |
-
msgstr ""
|
1075 |
|
1076 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:62
|
1077 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:27
|
@@ -1079,77 +1079,77 @@ msgstr ""
|
|
1079 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:13
|
1080 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:26
|
1081 |
msgid "Top Referring Sites"
|
1082 |
-
msgstr ""
|
1083 |
|
1084 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:63
|
1085 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:7
|
1086 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:74
|
1087 |
msgid "Search Engine Referrals"
|
1088 |
-
msgstr ""
|
1089 |
|
1090 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:64
|
1091 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:8
|
1092 |
msgid "Summary"
|
1093 |
-
msgstr ""
|
1094 |
|
1095 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:65
|
1096 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:30
|
1097 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:8
|
1098 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:37
|
1099 |
msgid "Latest Search Words"
|
1100 |
-
msgstr ""
|
1101 |
|
1102 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:66
|
1103 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:8
|
1104 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:35
|
1105 |
msgid "Top 10 Visitors Today"
|
1106 |
-
msgstr ""
|
1107 |
|
1108 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:97
|
1109 |
msgid "Please reload the dashboard to display the content of this widget."
|
1110 |
-
msgstr ""
|
1111 |
|
1112 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:138
|
1113 |
msgid "WP Statistics Overview"
|
1114 |
-
msgstr ""
|
1115 |
|
1116 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:63
|
1117 |
msgid "This post is not yet published."
|
1118 |
-
msgstr ""
|
1119 |
|
1120 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:24
|
1121 |
msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
|
1122 |
-
msgstr ""
|
1123 |
|
1124 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:48
|
1125 |
msgid "Updated %s GeoIP records in the visitors database."
|
1126 |
-
msgstr ""
|
1127 |
|
1128 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:21
|
1129 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:39
|
1130 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:50
|
1131 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:83
|
1132 |
msgid "%s data older than %s days purged successfully."
|
1133 |
-
msgstr ""
|
1134 |
|
1135 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:23
|
1136 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:41
|
1137 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:52
|
1138 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:85
|
1139 |
msgid "No records found to purge from %s!"
|
1140 |
-
msgstr ""
|
1141 |
|
1142 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:98
|
1143 |
msgid "Database pruned on"
|
1144 |
-
msgstr ""
|
1145 |
|
1146 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:103
|
1147 |
msgid "Please select a value over 30 days."
|
1148 |
-
msgstr ""
|
1149 |
|
1150 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:8
|
1151 |
msgid "Browser Statistics"
|
1152 |
-
msgstr ""
|
1153 |
|
1154 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:14
|
1155 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:98
|
@@ -1178,7 +1178,7 @@ msgstr ""
|
|
1178 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:7
|
1179 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:6
|
1180 |
msgid "Click to toggle"
|
1181 |
-
msgstr ""
|
1182 |
|
1183 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:15
|
1184 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:7
|
@@ -1186,101 +1186,101 @@ msgstr ""
|
|
1186 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:292
|
1187 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:367
|
1188 |
msgid "Browsers"
|
1189 |
-
msgstr ""
|
1190 |
|
1191 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:42
|
1192 |
msgid "Browsers by type"
|
1193 |
-
msgstr ""
|
1194 |
|
1195 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:99
|
1196 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:34
|
1197 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:302
|
1198 |
msgid "Platform"
|
1199 |
-
msgstr ""
|
1200 |
|
1201 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:126
|
1202 |
msgid "Browsers by platform"
|
1203 |
-
msgstr ""
|
1204 |
|
1205 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:234
|
1206 |
msgid "%s Version"
|
1207 |
-
msgstr ""
|
1208 |
|
1209 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:8
|
1210 |
msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
|
1211 |
-
msgstr ""
|
1212 |
|
1213 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:56
|
1214 |
msgid "Exclusions Statistics"
|
1215 |
-
msgstr ""
|
1216 |
|
1217 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:59
|
1218 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:12
|
1219 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:33
|
1220 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:15
|
1221 |
msgid "10 Days"
|
1222 |
-
msgstr ""
|
1223 |
|
1224 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:60
|
1225 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:13
|
1226 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:34
|
1227 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:16
|
1228 |
msgid "20 Days"
|
1229 |
-
msgstr ""
|
1230 |
|
1231 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:61
|
1232 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:14
|
1233 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:35
|
1234 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:17
|
1235 |
msgid "30 Days"
|
1236 |
-
msgstr ""
|
1237 |
|
1238 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:62
|
1239 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:15
|
1240 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:36
|
1241 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:18
|
1242 |
msgid "2 Months"
|
1243 |
-
msgstr ""
|
1244 |
|
1245 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:63
|
1246 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:16
|
1247 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:37
|
1248 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:19
|
1249 |
msgid "3 Months"
|
1250 |
-
msgstr ""
|
1251 |
|
1252 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:64
|
1253 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:17
|
1254 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:38
|
1255 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:20
|
1256 |
msgid "6 Months"
|
1257 |
-
msgstr ""
|
1258 |
|
1259 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:65
|
1260 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:18
|
1261 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:39
|
1262 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
|
1263 |
msgid "9 Months"
|
1264 |
-
msgstr ""
|
1265 |
|
1266 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:66
|
1267 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:19
|
1268 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:40
|
1269 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
|
1270 |
msgid "1 Year"
|
1271 |
-
msgstr ""
|
1272 |
|
1273 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:70
|
1274 |
msgid "Total Exclusions: %s"
|
1275 |
-
msgstr ""
|
1276 |
|
1277 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:77
|
1278 |
msgid "Exclusions Statistical Chart"
|
1279 |
-
msgstr ""
|
1280 |
|
1281 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:99
|
1282 |
msgid "Excluded hits in the last"
|
1283 |
-
msgstr ""
|
1284 |
|
1285 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:99
|
1286 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:60
|
@@ -1289,41 +1289,41 @@ msgstr ""
|
|
1289 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:55
|
1290 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:151
|
1291 |
msgid "days"
|
1292 |
-
msgstr ""
|
1293 |
|
1294 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:120
|
1295 |
msgid "Number of excluded hits"
|
1296 |
-
msgstr ""
|
1297 |
|
1298 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:27
|
1299 |
msgid "Hits Statistics Chart"
|
1300 |
-
msgstr ""
|
1301 |
|
1302 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:60
|
1303 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:51
|
1304 |
msgid "Hits in the last"
|
1305 |
-
msgstr ""
|
1306 |
|
1307 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:81
|
1308 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:72
|
1309 |
msgid "Number of visits and visitors"
|
1310 |
-
msgstr ""
|
1311 |
|
1312 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:95
|
1313 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:86
|
1314 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:30
|
1315 |
msgid "Visit"
|
1316 |
-
msgstr ""
|
1317 |
|
1318 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:95
|
1319 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:86
|
1320 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:29
|
1321 |
msgid "Visitor"
|
1322 |
-
msgstr ""
|
1323 |
|
1324 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:64
|
1325 |
msgid "Latest Search Word Statistics"
|
1326 |
-
msgstr ""
|
1327 |
|
1328 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:99
|
1329 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:98
|
@@ -1333,7 +1333,7 @@ msgstr ""
|
|
1333 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:30
|
1334 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:32
|
1335 |
msgid "#hash#"
|
1336 |
-
msgstr ""
|
1337 |
|
1338 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:104
|
1339 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:103
|
@@ -1344,7 +1344,7 @@ msgstr ""
|
|
1344 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:33
|
1345 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:113
|
1346 |
msgid "Map"
|
1347 |
-
msgstr ""
|
1348 |
|
1349 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:141
|
1350 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:136
|
@@ -1352,7 +1352,7 @@ msgstr ""
|
|
1352 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
|
1353 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
|
1354 |
msgid "Page"
|
1355 |
-
msgstr ""
|
1356 |
|
1357 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:141
|
1358 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:136
|
@@ -1360,7 +1360,7 @@ msgstr ""
|
|
1360 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
|
1361 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
|
1362 |
msgid "From"
|
1363 |
-
msgstr ""
|
1364 |
|
1365 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:46
|
1366 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:33
|
@@ -1368,47 +1368,47 @@ msgstr ""
|
|
1368 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:135
|
1369 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:294
|
1370 |
msgid "All"
|
1371 |
-
msgstr ""
|
1372 |
|
1373 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:63
|
1374 |
msgid "Search for"
|
1375 |
-
msgstr ""
|
1376 |
|
1377 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:65
|
1378 |
msgid "Recent Visitor Statistics"
|
1379 |
-
msgstr ""
|
1380 |
|
1381 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:11
|
1382 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:18
|
1383 |
msgid "Online Users"
|
1384 |
-
msgstr ""
|
1385 |
|
1386 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:75
|
1387 |
msgid "Online for "
|
1388 |
-
msgstr ""
|
1389 |
|
1390 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:29
|
1391 |
msgid "Page Trend for Post ID"
|
1392 |
-
msgstr ""
|
1393 |
|
1394 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:48
|
1395 |
msgid "Page Trend"
|
1396 |
-
msgstr ""
|
1397 |
|
1398 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:11
|
1399 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:30
|
1400 |
msgid "Search Engine Referral Statistics"
|
1401 |
-
msgstr ""
|
1402 |
|
1403 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:71
|
1404 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:55
|
1405 |
msgid "Search engine referrals in the last"
|
1406 |
-
msgstr ""
|
1407 |
|
1408 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:92
|
1409 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:76
|
1410 |
msgid "Number of referrals"
|
1411 |
-
msgstr ""
|
1412 |
|
1413 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
|
1414 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:106
|
@@ -1416,57 +1416,57 @@ msgstr ""
|
|
1416 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:64
|
1417 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:104
|
1418 |
msgid "Total"
|
1419 |
-
msgstr ""
|
1420 |
|
1421 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:11
|
1422 |
msgid "Top Countries"
|
1423 |
-
msgstr ""
|
1424 |
|
1425 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:20
|
1426 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:30
|
1427 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:27
|
1428 |
msgid "Rank"
|
1429 |
-
msgstr ""
|
1430 |
|
1431 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:21
|
1432 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:31
|
1433 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:29
|
1434 |
msgid "Flag"
|
1435 |
-
msgstr ""
|
1436 |
|
1437 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:22
|
1438 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:32
|
1439 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:30
|
1440 |
msgid "Country"
|
1441 |
-
msgstr ""
|
1442 |
|
1443 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:23
|
1444 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:33
|
1445 |
msgid "Visitor Count"
|
1446 |
-
msgstr ""
|
1447 |
|
1448 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:13
|
1449 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:138
|
1450 |
msgid "Top Pages"
|
1451 |
-
msgstr ""
|
1452 |
|
1453 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:20
|
1454 |
msgid "Top 5 Pages Trends"
|
1455 |
-
msgstr ""
|
1456 |
|
1457 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:49
|
1458 |
msgid "Top 5 Page Trending Stats"
|
1459 |
-
msgstr ""
|
1460 |
|
1461 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:70
|
1462 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/page.php:60
|
1463 |
msgid "Number of Hits"
|
1464 |
-
msgstr ""
|
1465 |
|
1466 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:166
|
1467 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:32
|
1468 |
msgid "No page title found"
|
1469 |
-
msgstr ""
|
1470 |
|
1471 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:169
|
1472 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:35
|
@@ -1474,45 +1474,45 @@ msgstr ""
|
|
1474 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:122
|
1475 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:127
|
1476 |
msgid "Visits"
|
1477 |
-
msgstr ""
|
1478 |
|
1479 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:4
|
1480 |
msgid "To be added soon"
|
1481 |
-
msgstr ""
|
1482 |
|
1483 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:40
|
1484 |
msgid "Referring sites from"
|
1485 |
-
msgstr ""
|
1486 |
|
1487 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:110
|
1488 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:30
|
1489 |
msgid "References"
|
1490 |
-
msgstr ""
|
1491 |
|
1492 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-visitors.php:12
|
1493 |
msgid "Top 100 Visitors Today"
|
1494 |
-
msgstr ""
|
1495 |
|
1496 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:8
|
1497 |
msgid "About WP Statistics Version %s"
|
1498 |
-
msgstr ""
|
1499 |
|
1500 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:25
|
1501 |
msgid "Website"
|
1502 |
-
msgstr ""
|
1503 |
|
1504 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:26
|
1505 |
msgid "Rate and Review"
|
1506 |
-
msgstr ""
|
1507 |
|
1508 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:30
|
1509 |
msgid "More Information"
|
1510 |
-
msgstr ""
|
1511 |
|
1512 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:39
|
1513 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:12
|
1514 |
msgid "This product includes GeoLite2 data created by MaxMind, available from %s."
|
1515 |
-
msgstr ""
|
1516 |
|
1517 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:7
|
1518 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:11
|
@@ -1524,74 +1524,74 @@ msgstr ""
|
|
1524 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:8
|
1525 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:8
|
1526 |
msgid "More"
|
1527 |
-
msgstr ""
|
1528 |
|
1529 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:47
|
1530 |
msgid "Other"
|
1531 |
-
msgstr ""
|
1532 |
|
1533 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:9
|
1534 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:9
|
1535 |
msgid "Today Visitors Map"
|
1536 |
-
msgstr ""
|
1537 |
|
1538 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:31
|
1539 |
msgid "Address"
|
1540 |
-
msgstr ""
|
1541 |
|
1542 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:23
|
1543 |
msgid "User(s) Online"
|
1544 |
-
msgstr ""
|
1545 |
|
1546 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:34
|
1547 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:79
|
1548 |
msgid "Today"
|
1549 |
-
msgstr ""
|
1550 |
|
1551 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:40
|
1552 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:80
|
1553 |
msgid "Yesterday"
|
1554 |
-
msgstr ""
|
1555 |
|
1556 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:98
|
1557 |
msgid "Daily Total"
|
1558 |
-
msgstr ""
|
1559 |
|
1560 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:117
|
1561 |
msgid "Current Time and Date"
|
1562 |
-
msgstr ""
|
1563 |
|
1564 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:117
|
1565 |
msgid "(Adjustment)"
|
1566 |
-
msgstr ""
|
1567 |
|
1568 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:121
|
1569 |
msgid "Date: %s"
|
1570 |
-
msgstr ""
|
1571 |
|
1572 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:125
|
1573 |
msgid "Time: %s"
|
1574 |
-
msgstr ""
|
1575 |
|
1576 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:28
|
1577 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:219
|
1578 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:297
|
1579 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:370
|
1580 |
msgid "Hits"
|
1581 |
-
msgstr ""
|
1582 |
|
1583 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:31
|
1584 |
msgid "IP"
|
1585 |
-
msgstr ""
|
1586 |
|
1587 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:33
|
1588 |
msgid "Agent"
|
1589 |
-
msgstr ""
|
1590 |
|
1591 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:35
|
1592 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:291
|
1593 |
msgid "Version"
|
1594 |
-
msgstr ""
|
1595 |
|
1596 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:5
|
1597 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:5
|
@@ -1601,96 +1601,96 @@ msgstr ""
|
|
1601 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:6
|
1602 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/manual/manual.php:5
|
1603 |
msgid "Access denied!"
|
1604 |
-
msgstr ""
|
1605 |
|
1606 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:14
|
1607 |
msgid "%s agent data deleted successfully."
|
1608 |
-
msgstr ""
|
1609 |
|
1610 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:17
|
1611 |
msgid "No agent data found to remove!"
|
1612 |
-
msgstr ""
|
1613 |
|
1614 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:21
|
1615 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:21
|
1616 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:42
|
1617 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:80
|
1618 |
msgid "Please select the desired items."
|
1619 |
-
msgstr ""
|
1620 |
|
1621 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:14
|
1622 |
msgid "%s platform data deleted successfully."
|
1623 |
-
msgstr ""
|
1624 |
|
1625 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:17
|
1626 |
msgid "No platform data found to remove!"
|
1627 |
-
msgstr ""
|
1628 |
|
1629 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:53
|
1630 |
msgid "%s table data deleted successfully."
|
1631 |
-
msgstr ""
|
1632 |
|
1633 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:57
|
1634 |
msgid "Error, %s not emptied!"
|
1635 |
-
msgstr ""
|
1636 |
|
1637 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:5
|
1638 |
msgid "Database Setup"
|
1639 |
-
msgstr ""
|
1640 |
|
1641 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:10
|
1642 |
msgid "Re-run Install"
|
1643 |
-
msgstr ""
|
1644 |
|
1645 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:14
|
1646 |
msgid "Install Now!"
|
1647 |
-
msgstr ""
|
1648 |
|
1649 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:15
|
1650 |
msgid "If for some reason your installation of WP Statistics is missing the database tables or other core items, this will re-execute the install process."
|
1651 |
-
msgstr ""
|
1652 |
|
1653 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:20
|
1654 |
msgid "Database Index"
|
1655 |
-
msgstr ""
|
1656 |
|
1657 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1658 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1659 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:294
|
1660 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:368
|
1661 |
msgid "Countries"
|
1662 |
-
msgstr ""
|
1663 |
|
1664 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:39
|
1665 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:25
|
1666 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:40
|
1667 |
msgid "Update Now!"
|
1668 |
-
msgstr ""
|
1669 |
|
1670 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:40
|
1671 |
msgid "Older installs of WP Statistics allow for duplicate entries in the visitors table in a corner case. Newer installs protect against this with a unique index on the table. To create the index on the older installs duplicate entries must be deleted first. Clicking \"Update Now\" will scan the vistitors table, delete duplicate entries and add the index."
|
1672 |
-
msgstr ""
|
1673 |
|
1674 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:41
|
1675 |
msgid "This operation could take a long time on installs with many rows in the visitors table."
|
1676 |
-
msgstr ""
|
1677 |
|
1678 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:46
|
1679 |
msgid "Older installs of WP Statistics allow for duplicate entries in the visitors table in a corner case. Newer installs protect against this with a unique index on the table."
|
1680 |
-
msgstr ""
|
1681 |
|
1682 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:47
|
1683 |
msgid "Congratulations, your installation is already up to date, nothing to do."
|
1684 |
-
msgstr ""
|
1685 |
|
1686 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:7
|
1687 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:147
|
1688 |
msgid "Export"
|
1689 |
-
msgstr ""
|
1690 |
|
1691 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:12
|
1692 |
msgid "Export from"
|
1693 |
-
msgstr ""
|
1694 |
|
1695 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:17
|
1696 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:35
|
@@ -1700,39 +1700,39 @@ msgstr ""
|
|
1700 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:134
|
1701 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:164
|
1702 |
msgid "Please select"
|
1703 |
-
msgstr ""
|
1704 |
|
1705 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:24
|
1706 |
msgid "Select the table for the output file."
|
1707 |
-
msgstr ""
|
1708 |
|
1709 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:30
|
1710 |
msgid "Export To"
|
1711 |
-
msgstr ""
|
1712 |
|
1713 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:41
|
1714 |
msgid "Select the output file type."
|
1715 |
-
msgstr ""
|
1716 |
|
1717 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:47
|
1718 |
msgid "Include Header Row"
|
1719 |
-
msgstr ""
|
1720 |
|
1721 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:52
|
1722 |
msgid "Include a header row as the first line of the exported file."
|
1723 |
-
msgstr ""
|
1724 |
|
1725 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:53
|
1726 |
msgid "Start Now!"
|
1727 |
-
msgstr ""
|
1728 |
|
1729 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:15
|
1730 |
msgid "Historical Values"
|
1731 |
-
msgstr ""
|
1732 |
|
1733 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:20
|
1734 |
msgid "Note: As you have just purged the database you must reload this page for these numbers to be correct."
|
1735 |
-
msgstr ""
|
1736 |
|
1737 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:26
|
1738 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:138
|
@@ -1740,109 +1740,109 @@ msgstr ""
|
|
1740 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:304
|
1741 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:377
|
1742 |
msgid "Visitors"
|
1743 |
-
msgstr ""
|
1744 |
|
1745 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:31
|
1746 |
msgid "Number of historical number of visitors to the site (current value is %s)."
|
1747 |
-
msgstr ""
|
1748 |
|
1749 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:42
|
1750 |
msgid "Number of historical number of visits to the site (current value is %s)."
|
1751 |
-
msgstr ""
|
1752 |
|
1753 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:48
|
1754 |
msgid "Update now!"
|
1755 |
-
msgstr ""
|
1756 |
|
1757 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:10
|
1758 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:37
|
1759 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:63
|
1760 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:91
|
1761 |
msgid "Are you sure?"
|
1762 |
-
msgstr ""
|
1763 |
|
1764 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:119
|
1765 |
msgid "Data"
|
1766 |
-
msgstr ""
|
1767 |
|
1768 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:124
|
1769 |
msgid "Empty Table"
|
1770 |
-
msgstr ""
|
1771 |
|
1772 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:137
|
1773 |
msgid "All data table will be lost."
|
1774 |
-
msgstr ""
|
1775 |
|
1776 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:138
|
1777 |
msgid "Clear now!"
|
1778 |
-
msgstr ""
|
1779 |
|
1780 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:146
|
1781 |
msgid "Purge records older than"
|
1782 |
-
msgstr ""
|
1783 |
|
1784 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:152
|
1785 |
msgid "Deleted user statistics data older than the selected number of days. Minimum value is 30 days."
|
1786 |
-
msgstr ""
|
1787 |
|
1788 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:153
|
1789 |
msgid "Purge now!"
|
1790 |
-
msgstr ""
|
1791 |
|
1792 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:160
|
1793 |
msgid "Delete User Agent Types"
|
1794 |
-
msgstr ""
|
1795 |
|
1796 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:165
|
1797 |
msgid "Delete Agents"
|
1798 |
-
msgstr ""
|
1799 |
|
1800 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:180
|
1801 |
msgid "All visitor data will be lost for this agent type."
|
1802 |
-
msgstr ""
|
1803 |
|
1804 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:181
|
1805 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:205
|
1806 |
msgid "Delete now!"
|
1807 |
-
msgstr ""
|
1808 |
|
1809 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:189
|
1810 |
msgid "Delete Platforms"
|
1811 |
-
msgstr ""
|
1812 |
|
1813 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:204
|
1814 |
msgid "All visitor data will be lost for this platform type."
|
1815 |
-
msgstr ""
|
1816 |
|
1817 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:17
|
1818 |
msgid "Resources"
|
1819 |
-
msgstr ""
|
1820 |
|
1821 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:22
|
1822 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:27
|
1823 |
msgid "Memory usage in PHP"
|
1824 |
-
msgstr ""
|
1825 |
|
1826 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:26
|
1827 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:37
|
1828 |
msgid "Byte"
|
1829 |
-
msgstr ""
|
1830 |
|
1831 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:33
|
1832 |
msgid "Last Overview page memory usage"
|
1833 |
-
msgstr ""
|
1834 |
|
1835 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:38
|
1836 |
msgid "Memory usage in the overview page"
|
1837 |
-
msgstr ""
|
1838 |
|
1839 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:44
|
1840 |
msgid "PHP Memory Limit"
|
1841 |
-
msgstr ""
|
1842 |
|
1843 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:49
|
1844 |
msgid "The memory limit a script is allowed to consume, set in php.ini."
|
1845 |
-
msgstr ""
|
1846 |
|
1847 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:55
|
1848 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:66
|
@@ -1851,7 +1851,7 @@ msgstr ""
|
|
1851 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:99
|
1852 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:110
|
1853 |
msgid "Number of rows in the %s table"
|
1854 |
-
msgstr ""
|
1855 |
|
1856 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:59
|
1857 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:70
|
@@ -1860,7 +1860,7 @@ msgstr ""
|
|
1860 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:103
|
1861 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:114
|
1862 |
msgid "Row"
|
1863 |
-
msgstr ""
|
1864 |
|
1865 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:60
|
1866 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:71
|
@@ -1869,563 +1869,563 @@ msgstr ""
|
|
1869 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:104
|
1870 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:115
|
1871 |
msgid "Number of rows"
|
1872 |
-
msgstr ""
|
1873 |
|
1874 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:120
|
1875 |
msgid "Version Info"
|
1876 |
-
msgstr ""
|
1877 |
|
1878 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:125
|
1879 |
msgid "WP Statistics Version"
|
1880 |
-
msgstr ""
|
1881 |
|
1882 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:130
|
1883 |
msgid "The WP Statistics version you are running."
|
1884 |
-
msgstr ""
|
1885 |
|
1886 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:136
|
1887 |
msgid "PHP Version"
|
1888 |
-
msgstr ""
|
1889 |
|
1890 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:141
|
1891 |
msgid "The PHP version you are running."
|
1892 |
-
msgstr ""
|
1893 |
|
1894 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:147
|
1895 |
msgid "PHP Safe Mode"
|
1896 |
-
msgstr ""
|
1897 |
|
1898 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:152
|
1899 |
msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
|
1900 |
-
msgstr ""
|
1901 |
|
1902 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:158
|
1903 |
msgid "jQuery Version"
|
1904 |
-
msgstr ""
|
1905 |
|
1906 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:163
|
1907 |
msgid "The jQuery version you are running."
|
1908 |
-
msgstr ""
|
1909 |
|
1910 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:169
|
1911 |
msgid "cURL Version"
|
1912 |
-
msgstr ""
|
1913 |
|
1914 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:173
|
1915 |
msgid "cURL not installed"
|
1916 |
-
msgstr ""
|
1917 |
|
1918 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:174
|
1919 |
msgid "The PHP cURL Extension version you are running. cURL is required for the GeoIP code, if it is not installed GeoIP will be disabled."
|
1920 |
-
msgstr ""
|
1921 |
|
1922 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:180
|
1923 |
msgid "BC Math"
|
1924 |
-
msgstr ""
|
1925 |
|
1926 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:184
|
1927 |
msgid "Installed"
|
1928 |
-
msgstr ""
|
1929 |
|
1930 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:184
|
1931 |
msgid "Not installed"
|
1932 |
-
msgstr ""
|
1933 |
|
1934 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:185
|
1935 |
msgid "If the PHP BC Math Extension is installed. BC Math is no longer required for the GeoIP code and is listed here only for historical reasons."
|
1936 |
-
msgstr ""
|
1937 |
|
1938 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:190
|
1939 |
msgid "File Info"
|
1940 |
-
msgstr ""
|
1941 |
|
1942 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:195
|
1943 |
msgid "GeoIP Database"
|
1944 |
-
msgstr ""
|
1945 |
|
1946 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:204
|
1947 |
msgid "Database file does not exist."
|
1948 |
-
msgstr ""
|
1949 |
|
1950 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:206
|
1951 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:225
|
1952 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:244
|
1953 |
msgid ", created on "
|
1954 |
-
msgstr ""
|
1955 |
|
1956 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:208
|
1957 |
msgid "The file size and date of the GeoIP database."
|
1958 |
-
msgstr ""
|
1959 |
|
1960 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:214
|
1961 |
msgid "browscap.ini File"
|
1962 |
-
msgstr ""
|
1963 |
|
1964 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:223
|
1965 |
msgid "browscap.ini file does not exist."
|
1966 |
-
msgstr ""
|
1967 |
|
1968 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:227
|
1969 |
msgid "The file size and date of the browscap.ini file."
|
1970 |
-
msgstr ""
|
1971 |
|
1972 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:233
|
1973 |
msgid "browscap Cache File"
|
1974 |
-
msgstr ""
|
1975 |
|
1976 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:242
|
1977 |
msgid "browscap cache file does not exist."
|
1978 |
-
msgstr ""
|
1979 |
|
1980 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:246
|
1981 |
msgid "The file size and date of the browscap cache file."
|
1982 |
-
msgstr ""
|
1983 |
|
1984 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:251
|
1985 |
msgid "Client Info"
|
1986 |
-
msgstr ""
|
1987 |
|
1988 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:256
|
1989 |
msgid "Client IP"
|
1990 |
-
msgstr ""
|
1991 |
|
1992 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:261
|
1993 |
msgid "The client IP address."
|
1994 |
-
msgstr ""
|
1995 |
|
1996 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:267
|
1997 |
msgid "User Agent"
|
1998 |
-
msgstr ""
|
1999 |
|
2000 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:272
|
2001 |
msgid "The client user agent string."
|
2002 |
-
msgstr ""
|
2003 |
|
2004 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:278
|
2005 |
msgid "Browser"
|
2006 |
-
msgstr ""
|
2007 |
|
2008 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:285
|
2009 |
msgid "The detected client browser."
|
2010 |
-
msgstr ""
|
2011 |
|
2012 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:296
|
2013 |
msgid "The detected client browser version."
|
2014 |
-
msgstr ""
|
2015 |
|
2016 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:307
|
2017 |
msgid "The detected client platform."
|
2018 |
-
msgstr ""
|
2019 |
|
2020 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:4
|
2021 |
msgid "This will replace all IP addresses in the database with hash values and cannot be undo, are you sure?"
|
2022 |
-
msgstr ""
|
2023 |
|
2024 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:16
|
2025 |
msgid "GeoIP Options"
|
2026 |
-
msgstr ""
|
2027 |
|
2028 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:26
|
2029 |
msgid "Updates any unknown location data in the database, this may take a while"
|
2030 |
-
msgstr ""
|
2031 |
|
2032 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:31
|
2033 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:66
|
2034 |
msgid "IP Addresses"
|
2035 |
-
msgstr ""
|
2036 |
|
2037 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:36
|
2038 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:71
|
2039 |
msgid "Hash IP Addresses"
|
2040 |
-
msgstr ""
|
2041 |
|
2042 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:41
|
2043 |
msgid "Replace IP addresses in the database with hash values, you will not be able to recover the IP addresses in the future to populate location information afterwards and this may take a while"
|
2044 |
-
msgstr ""
|
2045 |
|
2046 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:43
|
2047 |
msgid "IP Addresses replaced with hash values."
|
2048 |
-
msgstr ""
|
2049 |
|
2050 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:51
|
2051 |
msgid "Install routine complete."
|
2052 |
-
msgstr ""
|
2053 |
|
2054 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:146
|
2055 |
msgid "Resources/Information"
|
2056 |
-
msgstr ""
|
2057 |
|
2058 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:148
|
2059 |
msgid "Purging"
|
2060 |
-
msgstr ""
|
2061 |
|
2062 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:149
|
2063 |
msgid "Database"
|
2064 |
-
msgstr ""
|
2065 |
|
2066 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:150
|
2067 |
msgid "Updates"
|
2068 |
-
msgstr ""
|
2069 |
|
2070 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:151
|
2071 |
msgid "Historical"
|
2072 |
-
msgstr ""
|
2073 |
|
2074 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:8
|
2075 |
msgid "WP Statistics V%s"
|
2076 |
-
msgstr ""
|
2077 |
|
2078 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:20
|
2079 |
msgid "Visit Us Online"
|
2080 |
-
msgstr ""
|
2081 |
|
2082 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:24
|
2083 |
msgid "Come visit our great new %s and keep up to date on the latest news about WP Statistics."
|
2084 |
-
msgstr ""
|
2085 |
|
2086 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:24
|
2087 |
msgid "website"
|
2088 |
-
msgstr ""
|
2089 |
|
2090 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:28
|
2091 |
msgid "Rate and Review at WordPress.org"
|
2092 |
-
msgstr ""
|
2093 |
|
2094 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:32
|
2095 |
msgid "Thanks for installing WP Statistics, we encourage you to submit a "
|
2096 |
-
msgstr ""
|
2097 |
|
2098 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:32
|
2099 |
msgid "rating and review"
|
2100 |
-
msgstr ""
|
2101 |
|
2102 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:32
|
2103 |
msgid "over at WordPress.org. Your feedback is greatly appreciated!"
|
2104 |
-
msgstr ""
|
2105 |
|
2106 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:36
|
2107 |
msgid "Translations"
|
2108 |
-
msgstr ""
|
2109 |
|
2110 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:40
|
2111 |
msgid "WP Statistics supports internationalization and we encourage our users to submit translations, please visit our %s to see the current status and %s if you would like to help."
|
2112 |
-
msgstr ""
|
2113 |
|
2114 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:40
|
2115 |
msgid "translation collaboration site"
|
2116 |
-
msgstr ""
|
2117 |
|
2118 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:40
|
2119 |
msgid "drop us a line"
|
2120 |
-
msgstr ""
|
2121 |
|
2122 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:44
|
2123 |
msgid "Support"
|
2124 |
-
msgstr ""
|
2125 |
|
2126 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:49
|
2127 |
msgid "We're sorry you're having problem with WP Statistics and we're happy to help out. Here are a few things to do before contacting us:"
|
2128 |
-
msgstr ""
|
2129 |
|
2130 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:52
|
2131 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:53
|
2132 |
msgid "Have you read the %s?"
|
2133 |
-
msgstr ""
|
2134 |
|
2135 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:52
|
2136 |
msgid "FAQs"
|
2137 |
-
msgstr ""
|
2138 |
|
2139 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:53
|
2140 |
msgid "manual"
|
2141 |
-
msgstr ""
|
2142 |
|
2143 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:54
|
2144 |
msgid "Have you search the %s for a similar issue?"
|
2145 |
-
msgstr ""
|
2146 |
|
2147 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:54
|
2148 |
msgid "support forum"
|
2149 |
-
msgstr ""
|
2150 |
|
2151 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:55
|
2152 |
msgid "Have you search the Internet for any error messages you are receiving?"
|
2153 |
-
msgstr ""
|
2154 |
|
2155 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:56
|
2156 |
msgid "Make sure you have access to your PHP error logs."
|
2157 |
-
msgstr ""
|
2158 |
|
2159 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:59
|
2160 |
msgid "And a few things to double-check:"
|
2161 |
-
msgstr ""
|
2162 |
|
2163 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:62
|
2164 |
msgid "How's your memory_limit in php.ini?"
|
2165 |
-
msgstr ""
|
2166 |
|
2167 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:63
|
2168 |
msgid "Have you tried disabling any other plugins you may have installed?"
|
2169 |
-
msgstr ""
|
2170 |
|
2171 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:64
|
2172 |
msgid "Have you tried using the default WordPress theme?"
|
2173 |
-
msgstr ""
|
2174 |
|
2175 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:65
|
2176 |
msgid "Have you double checked the plugin settings?"
|
2177 |
-
msgstr ""
|
2178 |
|
2179 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:66
|
2180 |
msgid "Do you have all the required PHP extensions installed?"
|
2181 |
-
msgstr ""
|
2182 |
|
2183 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:67
|
2184 |
msgid "Are you getting a blank or incomplete page displayed in your browser? Did you view the source for the page and check for any fatal errors?"
|
2185 |
-
msgstr ""
|
2186 |
|
2187 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:68
|
2188 |
msgid "Have you checked your PHP and web server error logs?"
|
2189 |
-
msgstr ""
|
2190 |
|
2191 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:71
|
2192 |
msgid "Still not having any luck?"
|
2193 |
-
msgstr ""
|
2194 |
|
2195 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:71
|
2196 |
msgid "Then please open a new thread on the %s and we'll respond as soon as possible."
|
2197 |
-
msgstr ""
|
2198 |
|
2199 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:71
|
2200 |
msgid "WordPress.org support forum"
|
2201 |
-
msgstr ""
|
2202 |
|
2203 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:75
|
2204 |
msgid "Alternatively %s support is available as well."
|
2205 |
-
msgstr ""
|
2206 |
|
2207 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:75
|
2208 |
msgid "Farsi"
|
2209 |
-
msgstr ""
|
2210 |
|
2211 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:21
|
2212 |
msgid "WP Statistics Honey Pot Page"
|
2213 |
-
msgstr ""
|
2214 |
|
2215 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:22
|
2216 |
msgid "This is the honey pot for WP Statistics to use, do not delete."
|
2217 |
-
msgstr ""
|
2218 |
|
2219 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:45
|
2220 |
msgid "Access Levels"
|
2221 |
-
msgstr ""
|
2222 |
|
2223 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:74
|
2224 |
msgid "Required user level to view WP Statistics"
|
2225 |
-
msgstr ""
|
2226 |
|
2227 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:89
|
2228 |
msgid "Required user level to manage WP Statistics"
|
2229 |
-
msgstr ""
|
2230 |
|
2231 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:97
|
2232 |
msgid "See the %s for details on capability levels."
|
2233 |
-
msgstr ""
|
2234 |
|
2235 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:97
|
2236 |
msgid "WordPress Roles and Capabilities page"
|
2237 |
-
msgstr ""
|
2238 |
|
2239 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:98
|
2240 |
msgid "Hint: manage_network = Super Admin Network, manage_options = Administrator, edit_others_posts = Editor, publish_posts = Author, edit_posts = Contributor, read = Everyone."
|
2241 |
-
msgstr ""
|
2242 |
|
2243 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:99
|
2244 |
msgid "Each of the above casscades the rights upwards in the default WordPress configuration. So for example selecting publish_posts grants the right to Authors, Editors, Admins and Super Admins."
|
2245 |
-
msgstr ""
|
2246 |
|
2247 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:100
|
2248 |
msgid "If you need a more robust solution to delegate access you might want to look at %s in the WordPress plugin directory."
|
2249 |
-
msgstr ""
|
2250 |
|
2251 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:105
|
2252 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:296
|
2253 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:369
|
2254 |
msgid "Exclusions"
|
2255 |
-
msgstr ""
|
2256 |
|
2257 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:109
|
2258 |
msgid "Record exclusions"
|
2259 |
-
msgstr ""
|
2260 |
|
2261 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:111
|
2262 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:165
|
2263 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:192
|
2264 |
msgid "Enable"
|
2265 |
-
msgstr ""
|
2266 |
|
2267 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:112
|
2268 |
msgid "This will record all the excluded hits in a separate table with the reasons why it was excluded but no other information. This will generate a lot of data but is useful if you want to see the total number of hits your site gets, not just actual user visits."
|
2269 |
-
msgstr ""
|
2270 |
|
2271 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:117
|
2272 |
msgid "Exclude User Roles"
|
2273 |
-
msgstr ""
|
2274 |
|
2275 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:133
|
2276 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:247
|
2277 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:254
|
2278 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:261
|
2279 |
msgid "Exclude"
|
2280 |
-
msgstr ""
|
2281 |
|
2282 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:134
|
2283 |
msgid "Exclude %s role from data collection."
|
2284 |
-
msgstr ""
|
2285 |
|
2286 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:140
|
2287 |
msgid "IP/Robot Exclusions"
|
2288 |
-
msgstr ""
|
2289 |
|
2290 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:144
|
2291 |
msgid "Robot list"
|
2292 |
-
msgstr ""
|
2293 |
|
2294 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:157
|
2295 |
msgid "A list of words (one per line) to match against to detect robots. Entries must be at least 4 characters long or they will be ignored."
|
2296 |
-
msgstr ""
|
2297 |
|
2298 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:158
|
2299 |
msgid "Reset to Default"
|
2300 |
-
msgstr ""
|
2301 |
|
2302 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:163
|
2303 |
msgid "Force robot list update after upgrades"
|
2304 |
-
msgstr ""
|
2305 |
|
2306 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:166
|
2307 |
msgid "Force the robot list to be reset to the default after an update to WP Statistics takes place. Note if this option is enabled any custom robots you have added to the list will be lost."
|
2308 |
-
msgstr ""
|
2309 |
|
2310 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:171
|
2311 |
msgid "Robot visit threshold"
|
2312 |
-
msgstr ""
|
2313 |
|
2314 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:174
|
2315 |
msgid "Treat visitors with more than this number of visits per day as robots. 0 = disabled."
|
2316 |
-
msgstr ""
|
2317 |
|
2318 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:179
|
2319 |
msgid "Excluded IP address list"
|
2320 |
-
msgstr ""
|
2321 |
|
2322 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:182
|
2323 |
msgid "A list of IP addresses and subnet masks (one per line) to exclude from statistics collection (both 192.168.0.0/24 and 192.168.0.0/255.255.255.0 formats are accepted). To specify an IP address only, use a subnet value of 32 or 255.255.255.255."
|
2324 |
-
msgstr ""
|
2325 |
|
2326 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:183
|
2327 |
msgid "Add 10.0.0.0"
|
2328 |
-
msgstr ""
|
2329 |
|
2330 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:184
|
2331 |
msgid "Add 172.16.0.0"
|
2332 |
-
msgstr ""
|
2333 |
|
2334 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:185
|
2335 |
msgid "Add 192.168.0.0"
|
2336 |
-
msgstr ""
|
2337 |
|
2338 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:190
|
2339 |
msgid "Use honey pot"
|
2340 |
-
msgstr ""
|
2341 |
|
2342 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:193
|
2343 |
msgid "Use a honey pot page to identify robots."
|
2344 |
-
msgstr ""
|
2345 |
|
2346 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:198
|
2347 |
msgid "Honey pot post id"
|
2348 |
-
msgstr ""
|
2349 |
|
2350 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:201
|
2351 |
msgid "The post id to use for the honeypot page."
|
2352 |
-
msgstr ""
|
2353 |
|
2354 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:202
|
2355 |
msgid "Create a new honey pot page"
|
2356 |
-
msgstr ""
|
2357 |
|
2358 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:207
|
2359 |
msgid "GeoIP Exclusions"
|
2360 |
-
msgstr ""
|
2361 |
|
2362 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:211
|
2363 |
msgid "Excluded countries list"
|
2364 |
-
msgstr ""
|
2365 |
|
2366 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:214
|
2367 |
msgid "A list of country codes (one per line, two letters each) to exclude from statistics collection. Use \"000\" (three zeros) to exclude unknown countries."
|
2368 |
-
msgstr ""
|
2369 |
|
2370 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:219
|
2371 |
msgid "Included countries list"
|
2372 |
-
msgstr ""
|
2373 |
|
2374 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:222
|
2375 |
msgid "A list of country codes (one per line, two letters each) to include in statistics collection, if this list is not empty, only visitors from the included countries will be recorded. Use \"000\" (three zeros) to exclude unknown countries."
|
2376 |
-
msgstr ""
|
2377 |
|
2378 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:227
|
2379 |
msgid "Host Exclusions"
|
2380 |
-
msgstr ""
|
2381 |
|
2382 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:231
|
2383 |
msgid "Excluded hosts list"
|
2384 |
-
msgstr ""
|
2385 |
|
2386 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:234
|
2387 |
msgid "A list of fully qualified host names (ie. server.example.com, one per line) to exclude from statistics collection."
|
2388 |
-
msgstr ""
|
2389 |
|
2390 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:236
|
2391 |
msgid "Note: this option will NOT perform a reverse DNS lookup on each page load but instead cache the IP address for the provided hostnames for one hour. If you are excluding dynamically assigned hosts you may find some degree of overlap when the host changes it's IP address and when the cache is updated resulting in some hits recorded."
|
2392 |
-
msgstr ""
|
2393 |
|
2394 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:241
|
2395 |
msgid "Site URL Exclusions"
|
2396 |
-
msgstr ""
|
2397 |
|
2398 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:245
|
2399 |
msgid "Excluded login page"
|
2400 |
-
msgstr ""
|
2401 |
|
2402 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:248
|
2403 |
msgid "Exclude the login page for registering as a hit."
|
2404 |
-
msgstr ""
|
2405 |
|
2406 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:252
|
2407 |
msgid "Excluded admin pages"
|
2408 |
-
msgstr ""
|
2409 |
|
2410 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:255
|
2411 |
msgid "Exclude the admin pages for registering as a hit."
|
2412 |
-
msgstr ""
|
2413 |
|
2414 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:259
|
2415 |
msgid "Excluded RSS feeds"
|
2416 |
-
msgstr ""
|
2417 |
|
2418 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:262
|
2419 |
msgid "Exclude the RSS feeds for registering as a hit."
|
2420 |
-
msgstr ""
|
2421 |
|
2422 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:22
|
2423 |
msgid "browscap settings"
|
2424 |
-
msgstr ""
|
2425 |
|
2426 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:27
|
2427 |
msgid "browscap usage"
|
2428 |
-
msgstr ""
|
2429 |
|
2430 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:32
|
2431 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:56
|
@@ -2457,50 +2457,50 @@ msgstr ""
|
|
2457 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:147
|
2458 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:159
|
2459 |
msgid "Active"
|
2460 |
-
msgstr ""
|
2461 |
|
2462 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:33
|
2463 |
msgid "The browscap database will be downloaded and used to detect robots."
|
2464 |
-
msgstr ""
|
2465 |
|
2466 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:39
|
2467 |
msgid "Update browscap Info"
|
2468 |
-
msgstr ""
|
2469 |
|
2470 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:44
|
2471 |
msgid "Download browscap Database"
|
2472 |
-
msgstr ""
|
2473 |
|
2474 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:45
|
2475 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:60
|
2476 |
msgid "Save changes on this page to download the update."
|
2477 |
-
msgstr ""
|
2478 |
|
2479 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:51
|
2480 |
msgid "Schedule weekly update of browscap DB"
|
2481 |
-
msgstr ""
|
2482 |
|
2483 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:59
|
2484 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:74
|
2485 |
msgid "Next update will be"
|
2486 |
-
msgstr ""
|
2487 |
|
2488 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:74
|
2489 |
msgid "Download of the browscap database will be scheduled for once a week."
|
2490 |
-
msgstr ""
|
2491 |
|
2492 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:50
|
2493 |
msgid "This will delete the manual when you save the settings, are you sure?"
|
2494 |
-
msgstr ""
|
2495 |
|
2496 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:77
|
2497 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2498 |
-
msgstr ""
|
2499 |
|
2500 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:82
|
2501 |
msgid "Users Online"
|
2502 |
-
msgstr ""
|
2503 |
|
2504 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:87
|
2505 |
msgid "User online"
|
2506 |
-
msgstr ""
|
2 |
# This file is distributed under the same license as the WP Statistics package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2015-03-17 07:08:07+0000\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
40 |
|
41 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:58
|
42 |
msgid "Last 365 Days (Year)"
|
43 |
+
msgstr "٣٦٥ ڕۆژ ڕابردوو(ساڵ)"
|
44 |
|
45 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:52
|
46 |
msgid "Last 30 Days (Month)"
|
47 |
+
msgstr "٣٠ ڕۆژ ڕابردوو (مانگ)"
|
48 |
|
49 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:46
|
50 |
msgid "Last 7 Days (Week)"
|
51 |
+
msgstr "٧ ڕۆژی ڕابردوو(هەفتە)"
|
52 |
|
53 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:398
|
54 |
msgid "Yahoo!"
|
60 |
|
61 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:395
|
62 |
msgid "clearch.org"
|
63 |
+
msgstr "clearch.org"
|
64 |
|
65 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:396
|
66 |
msgid "DuckDuckGo"
|
76 |
|
77 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:69
|
78 |
msgid "Hits in the last 20 days"
|
79 |
+
msgstr "ئامار لە دوایین ٢٠ ڕۆژدا"
|
80 |
|
81 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
|
82 |
msgid "Feeds"
|
221 |
|
222 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:259
|
223 |
msgid "By default WP Statistics displays an alert if any of the core features are disabled on every admin page, this option will disable these notices."
|
224 |
+
msgstr "لە بنەرەت زیادکراوەی ئاماری وۆردپرێس تواناییەکانی ناچالاکی زیاد کراوە بە شێوەی هەڵە لە پەڕەی بەڕێوەبەر نیشان ئەدات.ئەم هەڵبژاردە ئەم تایبەتمەندییە ناچالاک دەکات"
|
225 |
|
226 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:265
|
227 |
msgid "Delete the manual"
|
228 |
+
msgstr "سڕینەوەی پەڕگەی ڕینمایی"
|
229 |
|
230 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:271
|
231 |
msgid "By default WP Statistics stores the admin manual in the plugin directory (~5 meg), if this option is enabled it will be deleted now and during upgrades in the future."
|
232 |
+
msgstr "لە بنەرەت پەرگەی ڕینمایی بەکارهێنەرزیادکراوەی ئامار لە بوخچەی زیادکراوەی ئامار بە قەبارەی(٥مێگابایت) دانراوە.گەر ئەم هەڵبژاردە چالاک بێت هەر ئێستا سڕایەوە و لەکاتی بەڕۆژ بوونەوەس نامێنێت."
|
233 |
|
234 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:276
|
235 |
msgid "Search Engines"
|
236 |
+
msgstr "مەکینەکانی گەڕان"
|
237 |
|
238 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:281
|
239 |
msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
|
240 |
+
msgstr "ناچاڵاککردنی مەکینەکانی گەڕان کە پێویستت پێیان نییە..ئەم کارە لە ئاکامی گشتی مەکینەکان کارگێڕی هەیە."
|
241 |
|
242 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:296
|
243 |
msgid "disable"
|
244 |
+
msgstr "ناچالاک"
|
245 |
|
246 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:297
|
247 |
msgid "Disable %s from data collection and reporting."
|
248 |
+
msgstr "ناچالاککردنی %s کۆکردنەوەی داتا و گوزارشەکان."
|
249 |
|
250 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:303
|
251 |
msgid "Charts"
|
252 |
+
msgstr "هێڵکاریەکان"
|
253 |
|
254 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:308
|
255 |
msgid "Include totals"
|
256 |
+
msgstr "کۆی گشتی"
|
257 |
|
258 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:314
|
259 |
msgid "Add a total line to charts with multiple values, like the search engine referrals"
|
260 |
+
msgstr "زیادکردنی کۆی گشتی بە هێڵکاری ئاماری تێپەڕبوونلە مەکینەکانی گەڕان"
|
261 |
|
262 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:27
|
263 |
msgid "GeoIP settings"
|
264 |
+
msgstr "ڕێکخستنهکانیGeoIP"
|
265 |
|
266 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:32
|
267 |
msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
|
268 |
+
msgstr "خزمەتگوزاری نیشاندانی شوێن IPلەگەڵ GeoLite2 دابینکراوە و لەلایانMaxMind درووستکراوە و لە %s توانایی دەستپێگەیشتنی بۆ هەیە."
|
269 |
|
270 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:42
|
271 |
msgid "GeoIP collection"
|
272 |
+
msgstr "کۆی GeoIP"
|
273 |
|
274 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:48
|
275 |
msgid "For get more information and location (country) from visitor, enable this feature."
|
276 |
+
msgstr "بۆ وەرگرتنی زانیاری زۆرتر و شوێنی(وەڵاتی) میوان.ئەم جێگا چالاک بکە."
|
277 |
|
278 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:54
|
279 |
msgid "Update GeoIP Info"
|
280 |
+
msgstr "بەڕۆژ بونی زانیاریەکان GeoIP"
|
281 |
|
282 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:59
|
283 |
msgid "Download GeoIP Database"
|
284 |
+
msgstr "داگرتنی بنکەداراوەی GeoIP"
|
285 |
|
286 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:66
|
287 |
msgid "Schedule monthly update of GeoIP DB"
|
288 |
+
msgstr "برنامە دانان بۆ بەڕۆژ کردنی مانگانەی بنکەدراوەی GeoIP"
|
289 |
|
290 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:92
|
291 |
msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
|
292 |
+
msgstr "وەرگرتنی بنکەدراوەی GeoIP لە دوو ڕۆژ پاش یەکەمین سێ شەممەی هەر مانگ."
|
293 |
|
294 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:93
|
295 |
msgid "This option will also download the database if the local filesize is less than 1k (which usually means the stub that comes with the plugin is still in place)."
|
296 |
+
msgstr "ئەم هەڵبژاردە تەنانەت زانیاریەکانی کەمتر لە ١ کیلۆبایتیش دادگرێت(کە بەمانای زانیارییەکانی هاورێی زیادکراوەیە)."
|
297 |
|
298 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:99
|
299 |
msgid "Populate missing GeoIP after update of GeoIP DB"
|
300 |
+
msgstr "خەڵکی لەدەست چوو GeoIP پاش لە بەڕۆژ کردنی بنکەی دراوە GeoIP"
|
301 |
|
302 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:105
|
303 |
msgid "Update any missing GeoIP data after downloading a new database."
|
304 |
+
msgstr "بەڕۆژ کردنی هەر داتاییک لەدەست چوو GeoIP پاش لە داگرتنی بنکە دراوەی نوێ"
|
305 |
|
306 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:111
|
307 |
msgid "Country code for private IP addresses"
|
308 |
+
msgstr "کۆدی وەڵآت بۆ نیشانەکانی IP تایبەت"
|
309 |
|
310 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:116
|
311 |
msgid "The international standard two letter country code (ie. US = United States, CA = Canada, etc.) for private (non-routable) IP addresses (ie. 10.0.0.1, 192.158.1.1, 127.0.0.1, etc.). Use \"000\" (three zeros) to use \"Unknown\" as the country code."
|
312 |
+
msgstr "ستانداردی دوو کۆدی نێودەوڵەتی نامە (بۆ وێنە. ئەمریکا= وەڵآتی ئەمریکا، CA = کەنەدا، و هتد) بۆ تایبەت (یوانایی دەتپێگەیشتنی نییە) ناونیشانیIP (بۆ وێنە. 10.0.0.1، 192.158.1.1، 127.0.0.1،و هتد). بەکارهێنان لە "000" (سێ سفر) به استفاده از "نەناسراو" بە عینوانی کۆدی وەڵات."
|
313 |
|
314 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:127
|
315 |
msgid "GeoIP collection is disabled due to the following reasons:"
|
316 |
+
msgstr "کۆی GeoIP بەهۆکاری خوارەوە ناچالاک بووە"
|
317 |
|
318 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:130
|
319 |
msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
|
320 |
+
msgstr "کۆی GeoIP به PHP وەشانی%s یان سەرترەوە پێویستی هەیە، لە ئێستا بە هۆی کەم بوونی وەشانی PHPئێوە ناچالاکە."
|
321 |
|
322 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:135
|
323 |
msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
|
324 |
+
msgstr "کۆی GeoIPپێویستی بە پێوەکراوەی BC Math لەPHP هەیە وە ناتوانێت لە وەشانی ئێوە PHPدابین بکرێت!"
|
325 |
|
326 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:141
|
327 |
msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
|
328 |
+
msgstr "کۆی GeoIPپێویستی بە پێوەکراوەی BC Math لەPHP هەیە وە ناتوانێت لە وەشانی ئێوە PHPدابین بکرێت!"
|
329 |
|
330 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:147
|
331 |
msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
|
332 |
+
msgstr "شێوازی پاراستنی PHP نەدۆزراوە! کۆیGeoIP لەلایەن شیوازی پاراستنی PHP پاڵپشتی نابێت!"
|
333 |
|
334 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:20
|
335 |
msgid "This will permanently delete data from the database each day, are you sure you want to enable this option?"
|
336 |
+
msgstr "ئەم کردارە داتا کۆنەکان بۆ هەمیشە دەسڕێتەوە. بۆ چالاککردنی دەڵنیای؟"
|
337 |
|
338 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:30
|
339 |
msgid "Database Maintenance"
|
340 |
+
msgstr "چاککردن و پاراسنی بنکەدراوە"
|
341 |
|
342 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:35
|
343 |
msgid "Run a daily WP Cron job to prune the databases"
|
344 |
+
msgstr "هەڵبونی ڕۆژانەی کات بۆ هەرەسکردنی بنکەی دراوە"
|
345 |
|
346 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:41
|
347 |
msgid "A WP Cron job will be run daily to prune any data older than a set number of days."
|
348 |
+
msgstr "ئەرکی ئەو سڕینەوەی ڕۆژانەی زانیاریەکانە کە زۆرتر لە کاتی هەڵبەژاردە هەڵگیراوە"
|
349 |
|
350 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:47
|
351 |
msgid "Prune data older than"
|
352 |
+
msgstr "زانیاری کۆنەتر"
|
353 |
|
354 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:52
|
355 |
msgid "Days"
|
356 |
+
msgstr "ڕۆژ"
|
357 |
|
358 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:53
|
359 |
msgid "The number of days to keep statistics for. Minimum value is 30 days. Invalid values will disable the daily maintenance."
|
360 |
+
msgstr "ژمارەی ڕۆژەکان بۆ هێشتنەوەی ئامار. کەمترین ژمارە ٣٠ ڕۆژە.ڕۆژانە ژمارەی نادرووست ناچالاک دکرێتەوە."
|
361 |
|
362 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:44
|
363 |
msgid "Common Report Options"
|
364 |
+
msgstr "ڕێکخستنی گوزارشی گشتی"
|
365 |
|
366 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:49
|
367 |
msgid "E-mail addresses"
|
368 |
+
msgstr "ناونیشانەکانی ئیمەیل"
|
369 |
|
370 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:54
|
371 |
msgid "A comma separated list of e-mail addresses to send reports to."
|
372 |
+
msgstr "بۆ وەرگرتنی ئیمەیلی گوزارش،ناونیشانی ئیمەیلەکان بە کۆما جودابکەنەوە."
|
373 |
|
374 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:59
|
375 |
msgid "Update Reports"
|
376 |
+
msgstr "بەڕۆژکردنی گوزارشەکان"
|
377 |
|
378 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
|
379 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:64
|
380 |
msgid "Browscap"
|
381 |
+
msgstr "Browscap"
|
382 |
|
383 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:70
|
384 |
msgid "Send a report whenever the browscap.ini is updated."
|
385 |
+
msgstr "ناردنی گوزارش کاتێک browscap.ini بەڕۆژ دەبێت"
|
386 |
|
387 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
|
388 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:76
|
389 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:104
|
390 |
msgid "GeoIP"
|
391 |
+
msgstr "GeoIP"
|
392 |
|
393 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:82
|
394 |
msgid "Send a report whenever the GeoIP database is updated."
|
395 |
+
msgstr "ناردنی گوزارش کاتێک GeoIP بەڕۆژ دەبێت"
|
396 |
|
397 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:88
|
398 |
msgid "Pruning"
|
399 |
+
msgstr "سڕینەوە"
|
400 |
|
401 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:94
|
402 |
msgid "Send a report whenever the pruning of database is run."
|
403 |
+
msgstr "ناردنی گوزارش کاتێک بنکەی دراوە بەڕۆژ دەبێت"
|
404 |
|
405 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:100
|
406 |
msgid "Upgrade"
|
407 |
+
msgstr "بەڕۆژبوون"
|
408 |
|
409 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:106
|
410 |
msgid "Send a report whenever the plugin is upgraded."
|
411 |
+
msgstr "سڕینەوە"
|
412 |
|
413 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:111
|
414 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:116
|
415 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:174
|
416 |
msgid "Statistical reporting"
|
417 |
+
msgstr "گوزارشی ئاماری"
|
418 |
|
419 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:129
|
420 |
msgid "Schedule"
|
421 |
+
msgstr "کات دیاریکردن"
|
422 |
|
423 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:153
|
424 |
msgid "Select how often to receive statistical report."
|
425 |
+
msgstr "چۆنیەتی وەرگرتنی گوزارشی ئامار هەلبژێرە"
|
426 |
|
427 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:159
|
428 |
msgid "Send reports via"
|
429 |
+
msgstr "ناردنی گوزارش لە رێگای"
|
430 |
|
431 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:165
|
432 |
msgid "Email"
|
433 |
+
msgstr "ئیمەیل"
|
434 |
|
435 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:167
|
436 |
msgid "SMS"
|
437 |
+
msgstr "کۆرتە پەیام"
|
438 |
|
439 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:170
|
440 |
msgid "Select delivery method for statistical report."
|
441 |
+
msgstr "شێوازی وەرگرتنی گوزارشی ئاماری هەڵبژێرە"
|
442 |
|
443 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:173
|
444 |
msgid "Note: To send SMS text messages please install the %s plugin."
|
445 |
+
msgstr "خاڵ: بۆناردنی کورتە پەیام تکایە زیادکراوەی %s دامەرزێنە."
|
446 |
|
447 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:173
|
448 |
msgid "WordPress SMS"
|
449 |
+
msgstr "کورتەپەیامی وۆردپرێش"
|
450 |
|
451 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:180
|
452 |
msgid "Report body"
|
453 |
+
msgstr "ناوەرۆکی دەقی گوزارش"
|
454 |
|
455 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:185
|
456 |
msgid "Enter the contents of the report."
|
457 |
+
msgstr "ناوەرۆکی گوزارش بنووسە"
|
458 |
|
459 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:187
|
460 |
msgid "Any shortcode supported by your installation of WordPress, include all shortcodes for WP Statistics (see the admin manual for a list of codes available) are supported in the body of the message. Here are some examples:"
|
461 |
+
msgstr "هەر کورتە کۆدێک لە لایەن وۆردپرێسی ئێوە پاڵپشتی دەبێت. کورتەکۆدەکان لە زیادکراوەی ئامار(لیستی کۆدەکان لە رینمایی بەکارهینەردا هەیە) لە جەستە پشتیبانی دەکرێت. بۆ وێنە :"
|
462 |
|
463 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
464 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:38
|
465 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:245
|
466 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:468
|
467 |
msgid "User Online"
|
468 |
+
msgstr "بەکارهینەری سەرهێڵ"
|
469 |
|
470 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:189
|
471 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:52
|
472 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:251
|
473 |
msgid "Today Visitor"
|
474 |
+
msgstr "میوانی ئەمڕۆ"
|
475 |
|
476 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:190
|
477 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:45
|
478 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:248
|
479 |
msgid "Today Visit"
|
480 |
+
msgstr "سەردانی ئەمڕۆ"
|
481 |
|
482 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:191
|
483 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:66
|
484 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:257
|
485 |
msgid "Yesterday Visitor"
|
486 |
+
msgstr "میوانی دوێنێ"
|
487 |
|
488 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:192
|
489 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:59
|
490 |
msgid "Yesterday Visit"
|
491 |
+
msgstr "سەردانی دوێنێ"
|
492 |
|
493 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:193
|
494 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:101
|
495 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:272
|
496 |
msgid "Total Visitor"
|
497 |
+
msgstr "کۆی میوانەکان"
|
498 |
|
499 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:194
|
500 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:94
|
501 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:269
|
502 |
msgid "Total Visit"
|
503 |
+
msgstr "کۆی سەردانەکان"
|
504 |
|
505 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:23
|
506 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:32
|
507 |
msgid "None"
|
508 |
+
msgstr "هیچ"
|
509 |
|
510 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:24
|
511 |
msgid "Summary Statistics"
|
512 |
+
msgstr "کورتە ئامار"
|
513 |
|
514 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:28
|
515 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:108
|
516 |
msgid "About"
|
517 |
+
msgstr "دەربارە"
|
518 |
|
519 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
520 |
msgid "Hits Statistical Chart"
|
521 |
+
msgstr "هێڵکاری ئاماری سەردان"
|
522 |
|
523 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:36
|
524 |
msgid "Search Engine Referrers Statistical Chart"
|
525 |
+
msgstr "هێڵکاری یاماری مەکینەکانی گەڕان"
|
526 |
|
527 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:38
|
528 |
msgid "Top Pages Visited"
|
529 |
+
msgstr "زۆرترین پەرەکانی سەردان"
|
530 |
|
531 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:73
|
532 |
msgid "Dashboard"
|
533 |
+
msgstr "داشبۆرد"
|
534 |
|
535 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:77
|
536 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:97
|
537 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:117
|
538 |
msgid "The following items are global to all users."
|
539 |
+
msgstr "بەڕگەکانی خوارەوە جیهانین بۆ تەواو بەکارهینەران"
|
540 |
|
541 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:82
|
542 |
msgid "Disable dashboard widgets"
|
543 |
+
msgstr "ناچاڵاککردنی ئامرازی داشبۆرد"
|
544 |
|
545 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:88
|
546 |
msgid "Disable the dashboard widgets."
|
547 |
+
msgstr "ناچاڵاککردنی ئامرازی داشبۆرد"
|
548 |
|
549 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:93
|
550 |
msgid "Page/Post Editor"
|
551 |
+
msgstr "دەستکاری پەڕەو/نوسراوە"
|
552 |
|
553 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:102
|
554 |
msgid "Disable post/page editor widget"
|
555 |
+
msgstr "ناچالاککردنی ئامرازی(ویدجێت) سەردانی پەرەو/نوسراوە"
|
556 |
|
557 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:108
|
558 |
msgid "Disable the page/post editor widget."
|
559 |
+
msgstr "ناچالاککردنی ئامرازی(ویدجێت) سەردانی پەرەو/نوسراوە"
|
560 |
|
561 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:122
|
562 |
msgid "Map type"
|
563 |
+
msgstr "جۆری نەخشە"
|
564 |
|
565 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:397
|
566 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:128
|
567 |
msgid "Google"
|
568 |
+
msgstr "گووگڵ"
|
569 |
|
570 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:128
|
571 |
msgid "JQVMap"
|
572 |
+
msgstr "نەخشەیJQV"
|
573 |
|
574 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:135
|
575 |
msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
|
576 |
+
msgstr "هەلبژاردەی \"گوگڵ\" بۆخزمەتگوزاری نەخشەی گوگڵ بۆ دوایین سەردانەکان بەهرە وەردەگرێت. (پێویستی بە دەستپێگەیشتنی گووگڵە)."
|
577 |
|
578 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:136
|
579 |
msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
|
580 |
+
msgstr "هەڵبژاردەی \"JQVMap\" لە کتێبخانەی جاڤاسکریپت JQVMap بۆ دوایین سەردانەەکان کەڵک وەردەگرێت. (پێویستی بە خزمەتگوزاری دەرەوەی نابێت )."
|
581 |
|
582 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:142
|
583 |
msgid "Disable map"
|
584 |
+
msgstr "ناچالاککردنی نخشە"
|
585 |
|
586 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:148
|
587 |
msgid "Disable the map display"
|
588 |
+
msgstr "ناچالاککردنی نیشاندانی نەخشە"
|
589 |
|
590 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:154
|
591 |
msgid "Get country location from Google"
|
592 |
+
msgstr "وەرگرتنی شوێنی وەڵات لە گووگڵ"
|
593 |
|
594 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:160
|
595 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
596 |
+
msgstr "ئەم تایبەتمەندیە لەوانەیە نیشاندانی ئاماری بە هێواشی ئەنجام بدات .تەنها بۆ جۆری نەخشەی گووگڵ ڕێکخراوە."
|
597 |
|
598 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:171
|
599 |
msgid "Overview Widgets to Display"
|
600 |
+
msgstr "پێنوینی بۆ نیشاندانی ویدجێتەکان"
|
601 |
|
602 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:175
|
603 |
msgid "The following items are unique to each user. If you do not select the 'About' widget it will automatically be displayed in the last positon of column A."
|
604 |
+
msgstr "Aبڕگەکانی ژێرەوە تایبەت بە بەکارهێنەرانن.گەر ئێوە ئامرازی\"دەربارەی زیادکراوە\"هەڵنەبژیرن ،بەشێوازی خۆکارانە لە ستوونی نیشاندەدرێت"
|
605 |
|
606 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:180
|
607 |
msgid "Slot"
|
608 |
+
msgstr "ئاسۆیی "
|
609 |
|
610 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:184
|
611 |
msgid "Column A"
|
612 |
+
msgstr "Aئاسۆیی "
|
613 |
|
614 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:188
|
615 |
msgid "Column B"
|
616 |
+
msgstr "ئاسۆیی B"
|
617 |
|
618 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:194
|
619 |
msgid "Slot 1"
|
620 |
+
msgstr "ئاسۆیی ١"
|
621 |
|
622 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:224
|
623 |
msgid "Slot 2"
|
624 |
+
msgstr "ئاسۆیی ٢"
|
625 |
|
626 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:254
|
627 |
msgid "Slot 3"
|
628 |
+
msgstr "ئاسۆیی ٣"
|
629 |
|
630 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:284
|
631 |
msgid "Slot 4"
|
632 |
+
msgstr "ئاسۆیی ٤"
|
633 |
|
634 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:314
|
635 |
msgid "Slot 5"
|
636 |
+
msgstr "ئاسۆیی ٥"
|
637 |
|
638 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:344
|
639 |
msgid "Slot 6"
|
640 |
+
msgstr "ئاسۆیی ٦"
|
641 |
|
642 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:348
|
643 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:370
|
644 |
msgid "N/A"
|
645 |
+
msgstr "بەتاڵ"
|
646 |
|
647 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:366
|
648 |
msgid "Slot 7"
|
649 |
+
msgstr "ئاسۆیی ٧"
|
650 |
|
651 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:15
|
652 |
msgid "WP Statisitcs Removal"
|
653 |
+
msgstr "سڕینەوەی زیادکراوەی ئامار"
|
654 |
|
655 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:20
|
656 |
msgid "Uninstalling WP Statistics will not remove the data and settings, you can use this option to remove the WP Statistics data from your install before uninstalling the plugin."
|
657 |
+
msgstr "سڕینەوەی زیادکراوەی ئاماری وۆردپرێس،سڕینەوەی ڕیکخستنەکانی زیادکراوەی نییە.ئەم هەڵبژاردە دەتوانن تەواوی زانیاری(خشت و داتا)ی زیادکراوە بسڕنەوە."
|
658 |
|
659 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:23
|
660 |
msgid "Once you submit this form the settings will be deleted during the page load, however WP Statistics will still show up in your Admin menu until another page load is executed."
|
661 |
+
msgstr "پاکسازی لە کاتی بارکردنی پەڕە پاس بارێک لە تۆمارکردنی ڕێکخستنەکان ئەنجام دەبێت.بەڵام زیادکراوەی ئاماری وۆردپرێس لە پێرستی بەڕێوەبەر تاکاتێک بەشەکانی دیکەی پەڕە هەڵگرسابێت نیشان دەدرێت."
|
662 |
|
663 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:29
|
664 |
msgid "Remove data and settings"
|
665 |
+
msgstr "سڕینەوە داتاو ڕێکخستنەکان"
|
666 |
|
667 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:34
|
668 |
msgid "Remove"
|
669 |
+
msgstr "سڕینەوە"
|
670 |
|
671 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:35
|
672 |
msgid "Remove data and settings, this action cannot be undone."
|
673 |
+
msgstr "سڕینەوە داتاو ڕێکخستنەکان .ئەم کردارە ناگەرێتەوە."
|
674 |
|
675 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:100
|
676 |
msgid "General"
|
677 |
+
msgstr "گشتی"
|
678 |
|
679 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:101
|
680 |
msgid "Notifications"
|
681 |
+
msgstr "ئاگادارییەکان"
|
682 |
|
683 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:102
|
684 |
msgid "Dashboard/Overview"
|
685 |
+
msgstr "داشبۆرد/لەچاوپێکەوتنێک"
|
686 |
|
687 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:103
|
688 |
msgid "Access/Exclusions"
|
689 |
+
msgstr "دەستپێگەیشتن/دوورخستنەوە "
|
690 |
|
691 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:105
|
692 |
msgid "browscap"
|
693 |
+
msgstr "browscap"
|
694 |
|
695 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:106
|
696 |
msgid "Maintenance"
|
697 |
+
msgstr "پاراستن/چاککردن"
|
698 |
|
699 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:107
|
700 |
msgid "Removal"
|
701 |
+
msgstr "سڕینەوە"
|
702 |
|
703 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:150
|
704 |
msgid "Update"
|
705 |
+
msgstr "بەڕۆژکردن"
|
706 |
|
707 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/manual/manual.php:29
|
708 |
msgid "Manual not found: %s"
|
709 |
+
msgstr "ڕینمایی پەیدانەبوو: %s"
|
710 |
|
711 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/manual/manual.php:39
|
712 |
msgid "Invalid file type selected: %s"
|
713 |
+
msgstr "جۆری پەرگە ناڕەوا هەڵبژێردراوە: %s"
|
714 |
|
715 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:10
|
716 |
msgid "Once Weekly"
|
717 |
+
msgstr "جارێک لە هەفتە"
|
718 |
|
719 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:17
|
720 |
msgid "Once Every 2 Weeks"
|
721 |
+
msgstr "هەر ٢ هەفتە"
|
722 |
|
723 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:24
|
724 |
msgid "Once Every 4 Weeks"
|
725 |
+
msgstr "هەر ٤ هەفتە"
|
726 |
|
727 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:14
|
728 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:288
|
729 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:325
|
730 |
msgid "Statistics"
|
731 |
+
msgstr "ئامار"
|
732 |
|
733 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:15
|
734 |
msgid "Show site stats in sidebar."
|
735 |
+
msgstr "نیشاندانی ئاماری ماڵپەر لە (ئامرازی) لاتەنیشت"
|
736 |
|
737 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:73
|
738 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:260
|
739 |
msgid "Week Visit"
|
740 |
+
msgstr "سەردانی هەفتە"
|
741 |
|
742 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:80
|
743 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:263
|
744 |
msgid "Month Visit"
|
745 |
+
msgstr "سەردانی مانگ"
|
746 |
|
747 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:87
|
748 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:266
|
749 |
msgid "Years Visit"
|
750 |
+
msgstr "سەردانی ساڵ"
|
751 |
|
752 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:108
|
753 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:275
|
754 |
msgid "Total Page Views"
|
755 |
+
msgstr "کۆی گشتی سەردانی پەڕگە"
|
756 |
|
757 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:116
|
758 |
msgid "Search Engine referred"
|
759 |
+
msgstr "هاتن لە مەکینەی گەڕان"
|
760 |
|
761 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:123
|
762 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:298
|
763 |
msgid "Total Posts"
|
764 |
+
msgstr "کۆی نووسراوەکان"
|
765 |
|
766 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:130
|
767 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:301
|
768 |
msgid "Total Pages"
|
769 |
+
msgstr "کۆی پەڕەکان"
|
770 |
|
771 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:137
|
772 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:304
|
773 |
msgid "Total Comments"
|
774 |
+
msgstr "کۆی بۆچونەکان(لێدوانەکان)"
|
775 |
|
776 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:144
|
777 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:307
|
778 |
msgid "Total Spams"
|
779 |
+
msgstr "کۆی بێزارکەرەکان"
|
780 |
|
781 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:151
|
782 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:310
|
783 |
msgid "Total Users"
|
784 |
+
msgstr "کۆی بەکارهێنەران"
|
785 |
|
786 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:158
|
787 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:313
|
788 |
msgid "Average Posts"
|
789 |
+
msgstr "مامناوەندی نووسراوەکان"
|
790 |
|
791 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:165
|
792 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:316
|
793 |
msgid "Average Comments"
|
794 |
+
msgstr "مامناوەندی بۆچوونەکان"
|
795 |
|
796 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:172
|
797 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:319
|
798 |
msgid "Average Users"
|
799 |
+
msgstr "مامناوەندی بەکارهێنەران"
|
800 |
|
801 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:179
|
802 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:322
|
803 |
msgid "Last Post Date"
|
804 |
+
msgstr "ڕێکەوتی بەڕۆژبوونی ماڵپەڕ"
|
805 |
|
806 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:238
|
807 |
msgid "Name"
|
808 |
+
msgstr "ناو"
|
809 |
|
810 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:242
|
811 |
msgid "Items"
|
812 |
+
msgstr "بڕگە"
|
813 |
|
814 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:254
|
815 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:493
|
816 |
msgid "Yesterday visit"
|
817 |
+
msgstr "سەردانی دوێنێ"
|
818 |
|
819 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:278
|
820 |
msgid "Search Engine Referred"
|
821 |
+
msgstr "هاتن لە مەکینەی گەڕان"
|
822 |
|
823 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:281
|
824 |
msgid "Select type of search engine"
|
825 |
+
msgstr "هەڵبژاردنی جۆری مەکینەی گەڕان"
|
826 |
|
827 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:36
|
828 |
msgid "ERROR: WP Statistics has detected an unsupported version of PHP, WP Statistics will not function without PHP Version "
|
829 |
+
msgstr "هەڵە: زیادکراوەی ئاماری وۆردپرێس وەشانی پشتیوانی PHP نەکراوە ناناسێت.زیادکراوە بێ فەرمانی PHPئیش ناکات"
|
830 |
|
831 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:36
|
832 |
msgid " or higher!"
|
833 |
+
msgstr "و یان زۆرتر"
|
834 |
|
835 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:36
|
836 |
msgid "Your current PHP version is"
|
837 |
+
msgstr "وەشانی ئێستای PHP ئێوە"
|
838 |
|
839 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:51
|
840 |
msgid "WP Statistics has been removed, please disable and delete it."
|
841 |
+
msgstr "زیادکراوە ئاماری وۆردپرێس سڕاوەتەوە .تکایە ناچالاک یان بیشرەوە."
|
842 |
|
843 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
|
844 |
msgid "WP Statistics"
|
845 |
+
msgstr "ئاماری وۆردپرێس"
|
846 |
|
847 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:28
|
848 |
msgid "Complete statistics for your WordPress site."
|
849 |
+
msgstr "ئامری گشتی بۆ ماڵپەڕی وۆردپرێسەکەت"
|
850 |
|
851 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:101
|
852 |
msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
|
853 |
+
msgstr "بەکارهێنەرانی سەرهێڵ لە زیادکراوەی وۆردپرێس ناچالاکن تکایە بڕۆن بۆ %s چالاکی بکەن."
|
854 |
|
855 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:101
|
856 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:104
|
857 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:107
|
858 |
msgid "setting page"
|
859 |
+
msgstr "ڕیکخستنەکانی پەرە"
|
860 |
|
861 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:104
|
862 |
msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
|
863 |
+
msgstr "شوێن کەوتنی سەردان لە زیادکراوەی ئامری وۆردپرێس ناچالاکە.تکایە بڕۆن %s زیادکراوە چالاک بکەن،"
|
864 |
|
865 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:107
|
866 |
msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
|
867 |
+
msgstr "شوێن کەوتنی میوان لە زیادکراوەی ئامری وۆردپرێس ناچالاکە.تکایە بڕۆن %s زیادکراوە چالاک بکەن،"
|
868 |
|
869 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:110
|
870 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
871 |
+
msgstr "کۆی GeoIPچالاک نییە تکایە بڕۆن بۆ %s ئەم تایبەتمەندییە چالاک بکەن"
|
872 |
|
873 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:110
|
874 |
msgid "Setting page > GeoIP"
|
875 |
+
msgstr "پەرەی ڕیکخستنەکان > GeoIP"
|
876 |
|
877 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:195
|
878 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:307
|
879 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:379
|
880 |
msgid "Settings"
|
881 |
+
msgstr "ڕیکخستن"
|
882 |
|
883 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:207
|
884 |
msgid "Click here to visit the plugin on WordPress.org"
|
885 |
+
msgstr "بۆ دیتنی زیادکراوەی لە WordPress.org کرتەیێک بکە"
|
886 |
|
887 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:207
|
888 |
msgid "Visit WordPress.org page"
|
889 |
+
msgstr "دیتنی پەرەی WordPress.org"
|
890 |
|
891 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:210
|
892 |
msgid "Click here to rate and review this plugin on WordPress.org"
|
893 |
+
msgstr "بۆ ]لەدانان بە ئەم زیادکراوە لە سەر ماڵپەڕی Wordpress.org کرتە بکە "
|
894 |
|
895 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:210
|
896 |
msgid "Rate this plugin"
|
897 |
+
msgstr "پلەدانان بۆ ئەم زیادکراوە"
|
898 |
|
899 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:254
|
900 |
msgid "WP Statistics - Hits"
|
901 |
+
msgstr "ئاماری وۆردپرێس-سەردان"
|
902 |
|
903 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:291
|
904 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:328
|
905 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:366
|
906 |
msgid "Overview"
|
907 |
+
msgstr "پیشاندانی گشتی"
|
908 |
|
909 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:298
|
910 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:371
|
911 |
msgid "Online"
|
912 |
+
msgstr "سەرهێڵ"
|
913 |
|
914 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:300
|
915 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:373
|
916 |
msgid "Referrers"
|
917 |
+
msgstr "هاتنەژوورەوەکان"
|
918 |
|
919 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:301
|
920 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:374
|
921 |
msgid "Searches"
|
922 |
+
msgstr "گەرانەکان"
|
923 |
|
924 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:302
|
925 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:375
|
926 |
msgid "Search Words"
|
927 |
+
msgstr "گەرانی وەشەکان"
|
928 |
|
929 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:303
|
930 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:376
|
931 |
msgid "Top Visitors Today"
|
932 |
+
msgstr "بەرزترین میوانەکانی ئەمڕۆ"
|
933 |
|
934 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:306
|
935 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:378
|
936 |
msgid "Optimization"
|
937 |
+
msgstr "باشینەسازی)هەژیکردن)"
|
938 |
|
939 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:311
|
940 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:342
|
941 |
msgid "Manual"
|
942 |
+
msgstr "ڕێنمایی"
|
943 |
|
944 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:357
|
945 |
msgid "Site"
|
946 |
+
msgstr "مالپەڕ"
|
947 |
|
948 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:358
|
949 |
msgid "Options"
|
950 |
+
msgstr "ڕێکخستنهکان "
|
951 |
|
952 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:475
|
953 |
msgid "Today visitor"
|
954 |
+
msgstr "کۆی میوان"
|
955 |
|
956 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:481
|
957 |
msgid "Today visit"
|
958 |
+
msgstr "میوانی ئەمڕؤ"
|
959 |
|
960 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:487
|
961 |
msgid "Yesterday visitor"
|
962 |
+
msgstr "میوانی دوێنێ"
|
963 |
|
964 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:499
|
965 |
msgid "View Stats"
|
966 |
+
msgstr "نیشاندانی ئامار"
|
967 |
|
968 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:523
|
969 |
msgid "Download ODF file"
|
970 |
+
msgstr "داگرتنی پەڕگەی ODF"
|
971 |
|
972 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:524
|
973 |
msgid "Download HTML file"
|
974 |
+
msgstr "داگرتنی پەڕگەی HTML"
|
975 |
|
976 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:528
|
977 |
msgid "Manual file not found."
|
978 |
+
msgstr "ڕێنمایی پەیدا نەبوو"
|
979 |
|
980 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:595
|
981 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:706
|
982 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:740
|
983 |
msgid "You do not have sufficient permissions to access this page."
|
984 |
+
msgstr "تۆ مۆڵەتت بۆ دەستپێگەیشتنی ئەم پەڕەیە نییە."
|
985 |
|
986 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:608
|
987 |
msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
|
988 |
+
msgstr "خشتی زیادکراوە لە بنکەدراوە نییە! تکایە%s بۆدامەزراندن ئەنجام بدە %s."
|
989 |
|
990 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-install.php:250
|
991 |
msgid "WP Statistics %s installed on"
|
992 |
+
msgstr "زیادکراوەی ئاماری وۆردپرێس %s دامەزراوە"
|
993 |
|
994 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:34
|
995 |
msgid "Error downloading GeoIP database from: %s - %s"
|
996 |
+
msgstr "هەڵەی داگرتنی بنکەدراوەی GeoIP لە %s: - %s"
|
997 |
|
998 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:45
|
999 |
msgid "Error could not open downloaded GeoIP database for reading: %s"
|
1000 |
+
msgstr "هەڵەی کردنەوە لە کاتی داگرتنی GeoIPبۆ خوێندن %s"
|
1001 |
|
1002 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:52
|
1003 |
msgid "Error could not open destination GeoIP database for writing %s"
|
1004 |
+
msgstr "هەڵەی کردنەوە لە کاتی داگرتنی GeoIP بۆ نووسینی: %s"
|
1005 |
|
1006 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:68
|
1007 |
msgid "GeoIP Database updated successfully!"
|
1008 |
+
msgstr "بنکەیدراوەی GeoIP بە سەرکەوتوویی بە ڕۆژ بوو"
|
1009 |
|
1010 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:93
|
1011 |
msgid "GeoIP update on"
|
1012 |
+
msgstr "GeoIP بەڕۆژ بوو لە"
|
1013 |
|
1014 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:160
|
1015 |
msgid "Error downloading browscap database from: %s - %s"
|
1016 |
+
msgstr "داگرتنی بنکەی دراوە لە browscapهەڵە لە: %s - %s"
|
1017 |
|
1018 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:262
|
1019 |
msgid "browscap database updated successfully!"
|
1020 |
+
msgstr "browscap بنکەی بە سەرکەوتوویی بەڕۆژ بوو."
|
1021 |
|
1022 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:273
|
1023 |
msgid "browscap database updated failed! Cache file too large, reverting to previous browscap.ini."
|
1024 |
+
msgstr "بنکەدراوەی browscap بۆ بەڕۆژ بوون سەرکەوتوو نەبووە! پەڕگەی باشکەوتکردن قەبارەی گەورەیە! بڕۆ بۆ browscap.ini پێشتر."
|
1025 |
|
1026 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:281
|
1027 |
msgid "browscap database updated failed! New browscap.ini is mis-identifing user agents as crawlers, reverting to previous browscap.ini."
|
1028 |
+
msgstr "بنکەدراوەی browscap بۆ بەڕۆژ بوون سەرکەوتوو نەبووە! browscap.iniنوێ هەڵەیە identifing بریکاری بەکارهێنەر بەمانای وێبخشۆک بڕۆ بۆ browscap.ini پێشتر."
|
1029 |
|
1030 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:303
|
1031 |
msgid "browscap already at current version!"
|
1032 |
+
msgstr "browscap لە ئێستا ئامادەیە بۆ ئەم وەشانە!"
|
1033 |
|
1034 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:316
|
1035 |
msgid "Browscap.ini update on"
|
1036 |
+
msgstr "Browscap.ini بەڕۆژکرا"
|
1037 |
|
1038 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:55
|
1039 |
msgid "Quick Stats"
|
1040 |
+
msgstr "ئاماری خێرا"
|
1041 |
|
1042 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:56
|
1043 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:54
|
1044 |
msgid "Top 10 Browsers"
|
1045 |
+
msgstr "١٠ وێبگەڕی لووتکە"
|
1046 |
|
1047 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:57
|
1048 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:11
|
1049 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:27
|
1050 |
msgid "Top 10 Countries"
|
1051 |
+
msgstr "١٠ وەڵاتی لووتکە"
|
1052 |
|
1053 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:58
|
1054 |
msgid "Today's Visitor Map"
|
1055 |
+
msgstr "میوانەکانی ئەمڕۆ"
|
1056 |
|
1057 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:59
|
1058 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:46
|
1059 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:8
|
1060 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:8
|
1061 |
msgid "Hit Statistics"
|
1062 |
+
msgstr "ئامری سەردان"
|
1063 |
|
1064 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:60
|
1065 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:11
|
1066 |
msgid "Top 10 Pages"
|
1067 |
+
msgstr "بەرزترین ١٠ پەرە"
|
1068 |
|
1069 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:61
|
1070 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:31
|
1071 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:8
|
1072 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:39
|
1073 |
msgid "Recent Visitors"
|
1074 |
+
msgstr "دوایین میوانەکان"
|
1075 |
|
1076 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:62
|
1077 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:27
|
1079 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:13
|
1080 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:26
|
1081 |
msgid "Top Referring Sites"
|
1082 |
+
msgstr "زۆرترین ماڵپەڕی هاتن"
|
1083 |
|
1084 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:63
|
1085 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:7
|
1086 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:74
|
1087 |
msgid "Search Engine Referrals"
|
1088 |
+
msgstr "مەکینەی گەڕان هاتنەژوور"
|
1089 |
|
1090 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:64
|
1091 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:8
|
1092 |
msgid "Summary"
|
1093 |
+
msgstr "کورتە"
|
1094 |
|
1095 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:65
|
1096 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:30
|
1097 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:8
|
1098 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:37
|
1099 |
msgid "Latest Search Words"
|
1100 |
+
msgstr "دوایین وەشەی گەڕان"
|
1101 |
|
1102 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:66
|
1103 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:8
|
1104 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:35
|
1105 |
msgid "Top 10 Visitors Today"
|
1106 |
+
msgstr "١٠ میوانی لوتکەی ئەمڕۆ"
|
1107 |
|
1108 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:97
|
1109 |
msgid "Please reload the dashboard to display the content of this widget."
|
1110 |
+
msgstr "بۆ دیتنی ناوەڕۆکی ئامرازی ئامار پەرە بارێک نوێ بکەوە."
|
1111 |
|
1112 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:138
|
1113 |
msgid "WP Statistics Overview"
|
1114 |
+
msgstr "پیشاندانی گشتی ئامری وۆردپرێس"
|
1115 |
|
1116 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:63
|
1117 |
msgid "This post is not yet published."
|
1118 |
+
msgstr "ئەم نووسراوە هێشتا بڵاو نەکراوەتەوە"
|
1119 |
|
1120 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:24
|
1121 |
msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
|
1122 |
+
msgstr "توانایی گەڕانەوەی بنکەدراوەی GeoIP نییە، دەڵنیا بە لە پەرگەی ڕێکخستنەکان وەردەگیرێت."
|
1123 |
|
1124 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:48
|
1125 |
msgid "Updated %s GeoIP records in the visitors database."
|
1126 |
+
msgstr "%s ڕیکۆردی GeoIP لە بنکەی دراوە بەڕۆژ بوو."
|
1127 |
|
1128 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:21
|
1129 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:39
|
1130 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:50
|
1131 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:83
|
1132 |
msgid "%s data older than %s days purged successfully."
|
1133 |
+
msgstr "%s داتای کۆنەتر لە ڕۆژی %s بە سەرکەوتوویی پاکسازی بوو."
|
1134 |
|
1135 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:23
|
1136 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:41
|
1137 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:52
|
1138 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:85
|
1139 |
msgid "No records found to purge from %s!"
|
1140 |
+
msgstr " هیچ ریکۆردێک پەیدانەبوو بۆ %s! پاکسازی"
|
1141 |
|
1142 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:98
|
1143 |
msgid "Database pruned on"
|
1144 |
+
msgstr "بنکەی دراوە پاکسازی لە"
|
1145 |
|
1146 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:103
|
1147 |
msgid "Please select a value over 30 days."
|
1148 |
+
msgstr "تکایە زۆرتر لە ٣٠ ڕۆژ هەڵبژێرن"
|
1149 |
|
1150 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:8
|
1151 |
msgid "Browser Statistics"
|
1152 |
+
msgstr "ئاماری وێبگەرەکان"
|
1153 |
|
1154 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:14
|
1155 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:98
|
1178 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:7
|
1179 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:6
|
1180 |
msgid "Click to toggle"
|
1181 |
+
msgstr "بۆ بەستن و داخستن کرتە بکە"
|
1182 |
|
1183 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:15
|
1184 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:7
|
1186 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:292
|
1187 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:367
|
1188 |
msgid "Browsers"
|
1189 |
+
msgstr "وێبگەڕەکان"
|
1190 |
|
1191 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:42
|
1192 |
msgid "Browsers by type"
|
1193 |
+
msgstr "وێبگڕەکان لە سەر بنەمای جۆری"
|
1194 |
|
1195 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:99
|
1196 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:34
|
1197 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:302
|
1198 |
msgid "Platform"
|
1199 |
+
msgstr "سەکۆ"
|
1200 |
|
1201 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:126
|
1202 |
msgid "Browsers by platform"
|
1203 |
+
msgstr "وێبگەڕەکان لە سەر بنەمای سەکۆ"
|
1204 |
|
1205 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:234
|
1206 |
msgid "%s Version"
|
1207 |
+
msgstr "%s وەشان"
|
1208 |
|
1209 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:8
|
1210 |
msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
|
1211 |
+
msgstr "خاڵ: تائێستا جیاکاری بۆ ریکۆردەکان جیاکاری نەکراوە. ئاکامەکانی خوارەوە لەوانەیە ئاماری کۆتایی ڕەنگدانەوەی نەکات."
|
1212 |
|
1213 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:56
|
1214 |
msgid "Exclusions Statistics"
|
1215 |
+
msgstr "ئاماری جیاکاریەکان"
|
1216 |
|
1217 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:59
|
1218 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:12
|
1219 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:33
|
1220 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:15
|
1221 |
msgid "10 Days"
|
1222 |
+
msgstr "١٠ ڕۆژی ڕابردوو"
|
1223 |
|
1224 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:60
|
1225 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:13
|
1226 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:34
|
1227 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:16
|
1228 |
msgid "20 Days"
|
1229 |
+
msgstr "٢٠ ڕۆژی ڕابردوو"
|
1230 |
|
1231 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:61
|
1232 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:14
|
1233 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:35
|
1234 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:17
|
1235 |
msgid "30 Days"
|
1236 |
+
msgstr "٣٠ ڕۆژی ڕابردوو"
|
1237 |
|
1238 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:62
|
1239 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:15
|
1240 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:36
|
1241 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:18
|
1242 |
msgid "2 Months"
|
1243 |
+
msgstr "٢ مانگی ڕابردوو"
|
1244 |
|
1245 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:63
|
1246 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:16
|
1247 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:37
|
1248 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:19
|
1249 |
msgid "3 Months"
|
1250 |
+
msgstr "٣ مانگی ڕابردوو"
|
1251 |
|
1252 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:64
|
1253 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:17
|
1254 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:38
|
1255 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:20
|
1256 |
msgid "6 Months"
|
1257 |
+
msgstr "٦مانگی ڕابردوو"
|
1258 |
|
1259 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:65
|
1260 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:18
|
1261 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:39
|
1262 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
|
1263 |
msgid "9 Months"
|
1264 |
+
msgstr "٩ مانگی ڕابردوو"
|
1265 |
|
1266 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:66
|
1267 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:19
|
1268 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:40
|
1269 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
|
1270 |
msgid "1 Year"
|
1271 |
+
msgstr "١ ساڵی ڕابردوو"
|
1272 |
|
1273 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:70
|
1274 |
msgid "Total Exclusions: %s"
|
1275 |
+
msgstr "کۆی جیاکاریەکان: %s"
|
1276 |
|
1277 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:77
|
1278 |
msgid "Exclusions Statistical Chart"
|
1279 |
+
msgstr "هێڵکاری ئاماری جیاکراوەکان"
|
1280 |
|
1281 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:99
|
1282 |
msgid "Excluded hits in the last"
|
1283 |
+
msgstr "سەردانی دوایین جیاکردنەوە"
|
1284 |
|
1285 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:99
|
1286 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:60
|
1289 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:55
|
1290 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:151
|
1291 |
msgid "days"
|
1292 |
+
msgstr "ڕۆژی ڕابردوو"
|
1293 |
|
1294 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:120
|
1295 |
msgid "Number of excluded hits"
|
1296 |
+
msgstr "ژمارەی سەردانی جیاکاری"
|
1297 |
|
1298 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:27
|
1299 |
msgid "Hits Statistics Chart"
|
1300 |
+
msgstr "هێڵکاری ئاماری سەردانەکان"
|
1301 |
|
1302 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:60
|
1303 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:51
|
1304 |
msgid "Hits in the last"
|
1305 |
+
msgstr "دوایین سەردانەکان لە"
|
1306 |
|
1307 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:81
|
1308 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:72
|
1309 |
msgid "Number of visits and visitors"
|
1310 |
+
msgstr "ژمارەی سەردان و میوانەکان"
|
1311 |
|
1312 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:95
|
1313 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:86
|
1314 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:30
|
1315 |
msgid "Visit"
|
1316 |
+
msgstr "سەردان"
|
1317 |
|
1318 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:95
|
1319 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:86
|
1320 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:29
|
1321 |
msgid "Visitor"
|
1322 |
+
msgstr "میوان"
|
1323 |
|
1324 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:64
|
1325 |
msgid "Latest Search Word Statistics"
|
1326 |
+
msgstr "دوایین ئاماری گەڕانی وشە"
|
1327 |
|
1328 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:99
|
1329 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:98
|
1333 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:30
|
1334 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:32
|
1335 |
msgid "#hash#"
|
1336 |
+
msgstr "#hash#"
|
1337 |
|
1338 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:104
|
1339 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:103
|
1344 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:33
|
1345 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:113
|
1346 |
msgid "Map"
|
1347 |
+
msgstr "نەخشە"
|
1348 |
|
1349 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:141
|
1350 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:136
|
1352 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
|
1353 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
|
1354 |
msgid "Page"
|
1355 |
+
msgstr "پەڕە"
|
1356 |
|
1357 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:141
|
1358 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:136
|
1360 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
|
1361 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
|
1362 |
msgid "From"
|
1363 |
+
msgstr "لە"
|
1364 |
|
1365 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:46
|
1366 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:33
|
1368 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:135
|
1369 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:294
|
1370 |
msgid "All"
|
1371 |
+
msgstr "گشتی"
|
1372 |
|
1373 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:63
|
1374 |
msgid "Search for"
|
1375 |
+
msgstr "گەڕان بۆ"
|
1376 |
|
1377 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:65
|
1378 |
msgid "Recent Visitor Statistics"
|
1379 |
+
msgstr "دوایین ئاماری میوان"
|
1380 |
|
1381 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:11
|
1382 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:18
|
1383 |
msgid "Online Users"
|
1384 |
+
msgstr "بەکارهێنەرانی سەرهێڵ"
|
1385 |
|
1386 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:75
|
1387 |
msgid "Online for "
|
1388 |
+
msgstr "سەرهێڵ بۆ"
|
1389 |
|
1390 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:29
|
1391 |
msgid "Page Trend for Post ID"
|
1392 |
+
msgstr "پەرە بۆ جووڵانەوە شناسنامەی نووسراوە"
|
1393 |
|
1394 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:48
|
1395 |
msgid "Page Trend"
|
1396 |
+
msgstr "جووڵانەوە پەرە"
|
1397 |
|
1398 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:11
|
1399 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:30
|
1400 |
msgid "Search Engine Referral Statistics"
|
1401 |
+
msgstr "ئاماری هاتنەوە لە مەکەینەی گەڕان"
|
1402 |
|
1403 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:71
|
1404 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:55
|
1405 |
msgid "Search engine referrals in the last"
|
1406 |
+
msgstr "دوایین هاتنەکان لە مەکەینەی گەڕان"
|
1407 |
|
1408 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:92
|
1409 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:76
|
1410 |
msgid "Number of referrals"
|
1411 |
+
msgstr "ژمارەی هاتنەکان"
|
1412 |
|
1413 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
|
1414 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:106
|
1416 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:64
|
1417 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:104
|
1418 |
msgid "Total"
|
1419 |
+
msgstr "کۆ"
|
1420 |
|
1421 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:11
|
1422 |
msgid "Top Countries"
|
1423 |
+
msgstr "لوتکەی وەڵاتەکان"
|
1424 |
|
1425 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:20
|
1426 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:30
|
1427 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:27
|
1428 |
msgid "Rank"
|
1429 |
+
msgstr "پلە"
|
1430 |
|
1431 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:21
|
1432 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:31
|
1433 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:29
|
1434 |
msgid "Flag"
|
1435 |
+
msgstr "ئاڵا"
|
1436 |
|
1437 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:22
|
1438 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:32
|
1439 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:30
|
1440 |
msgid "Country"
|
1441 |
+
msgstr "وەڵات"
|
1442 |
|
1443 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:23
|
1444 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:33
|
1445 |
msgid "Visitor Count"
|
1446 |
+
msgstr "ژمارەی میوان"
|
1447 |
|
1448 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:13
|
1449 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:138
|
1450 |
msgid "Top Pages"
|
1451 |
+
msgstr "پەڕەکانی لووتکە"
|
1452 |
|
1453 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:20
|
1454 |
msgid "Top 5 Pages Trends"
|
1455 |
+
msgstr "لوتکەی ٥ پەرە"
|
1456 |
|
1457 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:49
|
1458 |
msgid "Top 5 Page Trending Stats"
|
1459 |
+
msgstr "لوتکەی باشترینی ٥ پەڕە"
|
1460 |
|
1461 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:70
|
1462 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/page.php:60
|
1463 |
msgid "Number of Hits"
|
1464 |
+
msgstr "ژمارەی سەردان"
|
1465 |
|
1466 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:166
|
1467 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:32
|
1468 |
msgid "No page title found"
|
1469 |
+
msgstr "سەردێڕی پەرە پەیدا نەبوو"
|
1470 |
|
1471 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:169
|
1472 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:35
|
1474 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:122
|
1475 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:127
|
1476 |
msgid "Visits"
|
1477 |
+
msgstr "سەردانەکان"
|
1478 |
|
1479 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:4
|
1480 |
msgid "To be added soon"
|
1481 |
+
msgstr "بە خێرایی زیاد دەبێت"
|
1482 |
|
1483 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:40
|
1484 |
msgid "Referring sites from"
|
1485 |
+
msgstr "ماڵپەرەکانی هاتن لە"
|
1486 |
|
1487 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:110
|
1488 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:30
|
1489 |
msgid "References"
|
1490 |
+
msgstr "سەرچاوە"
|
1491 |
|
1492 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-visitors.php:12
|
1493 |
msgid "Top 100 Visitors Today"
|
1494 |
+
msgstr "لوتکەی ١٠٠ میوانی ئەمڕۆ"
|
1495 |
|
1496 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:8
|
1497 |
msgid "About WP Statistics Version %s"
|
1498 |
+
msgstr "دەربارەی زیاد کراوەی ئاماری وۆردپرێس،وەشانی %s"
|
1499 |
|
1500 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:25
|
1501 |
msgid "Website"
|
1502 |
+
msgstr "ماڵپەڕەکان"
|
1503 |
|
1504 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:26
|
1505 |
msgid "Rate and Review"
|
1506 |
+
msgstr "پلەدانان و پێداچوونەوە"
|
1507 |
|
1508 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:30
|
1509 |
msgid "More Information"
|
1510 |
+
msgstr "زانیاری زۆرتر"
|
1511 |
|
1512 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:39
|
1513 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:12
|
1514 |
msgid "This product includes GeoLite2 data created by MaxMind, available from %s."
|
1515 |
+
msgstr "ائەم بەرهەمە بریتیە لە داتا GeoLite2 ە کە لەلایەن MaxMind،درووستبووە وە لە %s توانایی دەستپێگەیشتنت هەیە."
|
1516 |
|
1517 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:7
|
1518 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:11
|
1524 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:8
|
1525 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:8
|
1526 |
msgid "More"
|
1527 |
+
msgstr "زۆرتر"
|
1528 |
|
1529 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:47
|
1530 |
msgid "Other"
|
1531 |
+
msgstr "ئەوی "
|
1532 |
|
1533 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:9
|
1534 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:9
|
1535 |
msgid "Today Visitors Map"
|
1536 |
+
msgstr "میوانەکانی ئەمڕۆ لە سەر نەخشە"
|
1537 |
|
1538 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:31
|
1539 |
msgid "Address"
|
1540 |
+
msgstr "ناونیشان"
|
1541 |
|
1542 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:23
|
1543 |
msgid "User(s) Online"
|
1544 |
+
msgstr "بەکارهێنەر(ەکان) سەرهێڵ"
|
1545 |
|
1546 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:34
|
1547 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:79
|
1548 |
msgid "Today"
|
1549 |
+
msgstr "ئەمڕۆ"
|
1550 |
|
1551 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:40
|
1552 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:80
|
1553 |
msgid "Yesterday"
|
1554 |
+
msgstr "دوێنێ"
|
1555 |
|
1556 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:98
|
1557 |
msgid "Daily Total"
|
1558 |
+
msgstr "کۆی ئەمڕۆ"
|
1559 |
|
1560 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:117
|
1561 |
msgid "Current Time and Date"
|
1562 |
+
msgstr "کات و رێکەوتی ئەمڕۆ"
|
1563 |
|
1564 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:117
|
1565 |
msgid "(Adjustment)"
|
1566 |
+
msgstr "(ڕێکخستن)"
|
1567 |
|
1568 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:121
|
1569 |
msgid "Date: %s"
|
1570 |
+
msgstr "رێکەوت: %s"
|
1571 |
|
1572 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:125
|
1573 |
msgid "Time: %s"
|
1574 |
+
msgstr "کات: %s"
|
1575 |
|
1576 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:28
|
1577 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:219
|
1578 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:297
|
1579 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:370
|
1580 |
msgid "Hits"
|
1581 |
+
msgstr "سەردانەکان"
|
1582 |
|
1583 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:31
|
1584 |
msgid "IP"
|
1585 |
+
msgstr "IP"
|
1586 |
|
1587 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:33
|
1588 |
msgid "Agent"
|
1589 |
+
msgstr "بریکار"
|
1590 |
|
1591 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:35
|
1592 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:291
|
1593 |
msgid "Version"
|
1594 |
+
msgstr "وەشان"
|
1595 |
|
1596 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:5
|
1597 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:5
|
1601 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:6
|
1602 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/manual/manual.php:5
|
1603 |
msgid "Access denied!"
|
1604 |
+
msgstr "دەستپێگەیشتنی بێمۆڵەت"
|
1605 |
|
1606 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:14
|
1607 |
msgid "%s agent data deleted successfully."
|
1608 |
+
msgstr "%s بریکاری داتا بە سەرکەوتوویی سڕایەوە."
|
1609 |
|
1610 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:17
|
1611 |
msgid "No agent data found to remove!"
|
1612 |
+
msgstr "داتای وێبگەڕەکە بۆ سڕینەوە پەیدا نەبوو"
|
1613 |
|
1614 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:21
|
1615 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:21
|
1616 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:42
|
1617 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:80
|
1618 |
msgid "Please select the desired items."
|
1619 |
+
msgstr "تکایە بڕگەی داخوازی خوارەوە هەڵبژێرە."
|
1620 |
|
1621 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:14
|
1622 |
msgid "%s platform data deleted successfully."
|
1623 |
+
msgstr "ازانیارەکانی سەکۆ %s بە سەرکەوتوویی سڕایەوە.."
|
1624 |
|
1625 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:17
|
1626 |
msgid "No platform data found to remove!"
|
1627 |
+
msgstr "سەکۆی وێبگەڕ بۆ سڕینەوە پەیدا نەبوو."
|
1628 |
|
1629 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:53
|
1630 |
msgid "%s table data deleted successfully."
|
1631 |
+
msgstr "داتای خەشتی %s بە سەرکەوتوویی سڕایەوە"
|
1632 |
|
1633 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:57
|
1634 |
msgid "Error, %s not emptied!"
|
1635 |
+
msgstr "هەڵە! %s بەتاڵ نییە!"
|
1636 |
|
1637 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:5
|
1638 |
msgid "Database Setup"
|
1639 |
+
msgstr "دامەزراندنی بنکە دراوە"
|
1640 |
|
1641 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:10
|
1642 |
msgid "Re-run Install"
|
1643 |
+
msgstr "دامەزراندنی دوبار"
|
1644 |
|
1645 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:14
|
1646 |
msgid "Install Now!"
|
1647 |
+
msgstr "دامەزراندن ئێستا"
|
1648 |
|
1649 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:15
|
1650 |
msgid "If for some reason your installation of WP Statistics is missing the database tables or other core items, this will re-execute the install process."
|
1651 |
+
msgstr "گەر بە هەر هۆکارێک دامەزراندنی زیادکراوەی ئاماری وۆردپرێس یان خشتەکان بنکە دراوە یان بڕگەکانی دیکەی ناوەڕۆک لەدەست چووە ئەم پرۆسە دامەزراندن دووپات دەکات"
|
1652 |
|
1653 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:20
|
1654 |
msgid "Database Index"
|
1655 |
+
msgstr "پێنوێنی بنکەدراوە"
|
1656 |
|
1657 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1658 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1659 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:294
|
1660 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:368
|
1661 |
msgid "Countries"
|
1662 |
+
msgstr "وەڵآتەکان"
|
1663 |
|
1664 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:39
|
1665 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:25
|
1666 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:40
|
1667 |
msgid "Update Now!"
|
1668 |
+
msgstr "بەڕۆژکردن ئێستا"
|
1669 |
|
1670 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:40
|
1671 |
msgid "Older installs of WP Statistics allow for duplicate entries in the visitors table in a corner case. Newer installs protect against this with a unique index on the table. To create the index on the older installs duplicate entries must be deleted first. Clicking \"Update Now\" will scan the vistitors table, delete duplicate entries and add the index."
|
1672 |
+
msgstr "لە وەشانی کۆنەی زیادکراوەئامار داتای دووبارە لە سوچێکی خشتی میوان دووپات دەکرایەوە.وەشانی نوێ لەم بارەیە لە پێرستێک چاکسازیان بۆ بووە.بۆ درووستکردنی پێرست لە وەشانی کۆنە سەرەتا دەبێت دتاکنا بسڕنەوە.بە کرتە لەسەر بەڕۆژ بوون سەرەتا خشتی میوانان چاودێری ئینجا داتای دووبارودووپات دەسڕنەوەو پێرست زیاد دەکەن."
|
1673 |
|
1674 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:41
|
1675 |
msgid "This operation could take a long time on installs with many rows in the visitors table."
|
1676 |
+
msgstr "ئەم هەڵبژاردە کاتیکی زۆر بۆ بۆ دامەزراندنی ژمارەی رێزەکان لەخشتی میوانەکان بەخۆیەوە ترخان دەکات."
|
1677 |
|
1678 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:46
|
1679 |
msgid "Older installs of WP Statistics allow for duplicate entries in the visitors table in a corner case. Newer installs protect against this with a unique index on the table."
|
1680 |
+
msgstr "لە وەشانی کۆنەی زیادکراوەئامار داتای دووبارە لە سوچێکی خشتی میوان دووپات دەکرایەوە.وەشانی نوێ لەم بارەیە لە پێرستێک چاکسازیان بۆ بووە."
|
1681 |
|
1682 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:47
|
1683 |
msgid "Congratulations, your installation is already up to date, nothing to do."
|
1684 |
+
msgstr "پیرۆز بێت.تائێستا دامەزراوەی ئێوە بەڕۆژە و کێشەی نییە."
|
1685 |
|
1686 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:7
|
1687 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:147
|
1688 |
msgid "Export"
|
1689 |
+
msgstr "هەناردەکردن"
|
1690 |
|
1691 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:12
|
1692 |
msgid "Export from"
|
1693 |
+
msgstr "هەناردن لە"
|
1694 |
|
1695 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:17
|
1696 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:35
|
1700 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:134
|
1701 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:164
|
1702 |
msgid "Please select"
|
1703 |
+
msgstr "تکایە هەڵبژێرە"
|
1704 |
|
1705 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:24
|
1706 |
msgid "Select the table for the output file."
|
1707 |
+
msgstr "خشتی داخواز بۆ چونەدەرەڤەی پەڕگە هەڵبژێرە"
|
1708 |
|
1709 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:30
|
1710 |
msgid "Export To"
|
1711 |
+
msgstr "ناردنەدەرەوە بۆ"
|
1712 |
|
1713 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:41
|
1714 |
msgid "Select the output file type."
|
1715 |
+
msgstr "جۆری چونەدەرەڤەی پەڕگە هەڵبژێرە"
|
1716 |
|
1717 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:47
|
1718 |
msgid "Include Header Row"
|
1719 |
+
msgstr "تایبەتبوونی سەردێری رێز"
|
1720 |
|
1721 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:52
|
1722 |
msgid "Include a header row as the first line of the exported file."
|
1723 |
+
msgstr "بریتیە لە سەردێڕی رێز لە هێڵی یەکەمی پەڕگەی هەنارەکراوە."
|
1724 |
|
1725 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:53
|
1726 |
msgid "Start Now!"
|
1727 |
+
msgstr "دەستپێکە"
|
1728 |
|
1729 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:15
|
1730 |
msgid "Historical Values"
|
1731 |
+
msgstr "ژمارەی مێژوویی"
|
1732 |
|
1733 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:20
|
1734 |
msgid "Note: As you have just purged the database you must reload this page for these numbers to be correct."
|
1735 |
+
msgstr "خاڵ:هەر وا کە بنکەی دراوەتان پاکسازی کرد بۆ نیشاندانی ژمارە بە تەنیایی دەبیت پەڕە نوێ بکەنەوە."
|
1736 |
|
1737 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:26
|
1738 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:138
|
1740 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:304
|
1741 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:377
|
1742 |
msgid "Visitors"
|
1743 |
+
msgstr "میوانەکان"
|
1744 |
|
1745 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:31
|
1746 |
msgid "Number of historical number of visitors to the site (current value is %s)."
|
1747 |
+
msgstr "ژمارەی مێژووی میوانەکان (ژمارەی ئێستا %s یە)."
|
1748 |
|
1749 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:42
|
1750 |
msgid "Number of historical number of visits to the site (current value is %s)."
|
1751 |
+
msgstr "ژمارەی مێژووی سەردانەکان (ژمارەی ئێستا %s یە)."
|
1752 |
|
1753 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:48
|
1754 |
msgid "Update now!"
|
1755 |
+
msgstr "بەڕۆژکردن"
|
1756 |
|
1757 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:10
|
1758 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:37
|
1759 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:63
|
1760 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:91
|
1761 |
msgid "Are you sure?"
|
1762 |
+
msgstr "دەڵنیای ؟"
|
1763 |
|
1764 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:119
|
1765 |
msgid "Data"
|
1766 |
+
msgstr "رێکەوت"
|
1767 |
|
1768 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:124
|
1769 |
msgid "Empty Table"
|
1770 |
+
msgstr "بەتاڵ بوونی خشت"
|
1771 |
|
1772 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:137
|
1773 |
msgid "All data table will be lost."
|
1774 |
+
msgstr "گشتی زانیاریەکانی خشت لەدەست دەچێت"
|
1775 |
|
1776 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:138
|
1777 |
msgid "Clear now!"
|
1778 |
+
msgstr "پاککردنەە"
|
1779 |
|
1780 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:146
|
1781 |
msgid "Purge records older than"
|
1782 |
+
msgstr "پاکسازی ریکۆردی کۆنەتر لە"
|
1783 |
|
1784 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:152
|
1785 |
msgid "Deleted user statistics data older than the selected number of days. Minimum value is 30 days."
|
1786 |
+
msgstr "هەڵبژاردنی ڕۆژەکانی پێشتر بۆ سڕینەوەی داتاکانی بەکارهێنەر. کەمترین ژمارە ٣٠ رۆژ.."
|
1787 |
|
1788 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:153
|
1789 |
msgid "Purge now!"
|
1790 |
+
msgstr "ئێستا پاکسازیبکە"
|
1791 |
|
1792 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:160
|
1793 |
msgid "Delete User Agent Types"
|
1794 |
+
msgstr "سڕینەوەی جۆری سیستەمی کارپێکردنی بەکارهینەر"
|
1795 |
|
1796 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:165
|
1797 |
msgid "Delete Agents"
|
1798 |
+
msgstr "سڕینەوەی سیستەمی کارپێکردنەکان"
|
1799 |
|
1800 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:180
|
1801 |
msgid "All visitor data will be lost for this agent type."
|
1802 |
+
msgstr "گشتی داتای میوان لەجۆری بریکار لەدەستدەچن"
|
1803 |
|
1804 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:181
|
1805 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:205
|
1806 |
msgid "Delete now!"
|
1807 |
+
msgstr "ئێستا بیسڕەوە"
|
1808 |
|
1809 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:189
|
1810 |
msgid "Delete Platforms"
|
1811 |
+
msgstr "سڕینەوەی سەکۆ"
|
1812 |
|
1813 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:204
|
1814 |
msgid "All visitor data will be lost for this platform type."
|
1815 |
+
msgstr "تەواوی داتاکانی سەکۆی سەردان لەدەست دەچن."
|
1816 |
|
1817 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:17
|
1818 |
msgid "Resources"
|
1819 |
+
msgstr "سەرچاوەکان"
|
1820 |
|
1821 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:22
|
1822 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:27
|
1823 |
msgid "Memory usage in PHP"
|
1824 |
+
msgstr "بیرگەی بەکارهینان لە PHP"
|
1825 |
|
1826 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:26
|
1827 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:37
|
1828 |
msgid "Byte"
|
1829 |
+
msgstr "بایت"
|
1830 |
|
1831 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:33
|
1832 |
msgid "Last Overview page memory usage"
|
1833 |
+
msgstr "دوایین پیشاندانی گشتی پەری بیرگەی بەکارهێنراو."
|
1834 |
|
1835 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:38
|
1836 |
msgid "Memory usage in the overview page"
|
1837 |
+
msgstr "بیرگەی بەکارهێنان لە پیشاندانیگشتی بەڕە."
|
1838 |
|
1839 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:44
|
1840 |
msgid "PHP Memory Limit"
|
1841 |
+
msgstr "سنووری بیرگەی PHP "
|
1842 |
|
1843 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:49
|
1844 |
msgid "The memory limit a script is allowed to consume, set in php.ini."
|
1845 |
+
msgstr "ڕێکخستنی سنووری بیرگە بۆ سکریپتی php.iniلە دابینکراوە."
|
1846 |
|
1847 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:55
|
1848 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:66
|
1851 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:99
|
1852 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:110
|
1853 |
msgid "Number of rows in the %s table"
|
1854 |
+
msgstr "ژمارەی رێز لە خشت %s"
|
1855 |
|
1856 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:59
|
1857 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:70
|
1860 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:103
|
1861 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:114
|
1862 |
msgid "Row"
|
1863 |
+
msgstr "رێز"
|
1864 |
|
1865 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:60
|
1866 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:71
|
1869 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:104
|
1870 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:115
|
1871 |
msgid "Number of rows"
|
1872 |
+
msgstr "ژمارەی رێزەکان"
|
1873 |
|
1874 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:120
|
1875 |
msgid "Version Info"
|
1876 |
+
msgstr "زانیاری وەشان"
|
1877 |
|
1878 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:125
|
1879 |
msgid "WP Statistics Version"
|
1880 |
+
msgstr "وەشانی زیادکراوەی ئامار"
|
1881 |
|
1882 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:130
|
1883 |
msgid "The WP Statistics version you are running."
|
1884 |
+
msgstr "وەشانی زیادکراوەی ئاماری ئێستای ئێوە"
|
1885 |
|
1886 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:136
|
1887 |
msgid "PHP Version"
|
1888 |
+
msgstr "وەشانیPHP "
|
1889 |
|
1890 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:141
|
1891 |
msgid "The PHP version you are running."
|
1892 |
+
msgstr "وەشانی PHPی ئێوە لە کاتی ئیشکردن"
|
1893 |
|
1894 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:147
|
1895 |
msgid "PHP Safe Mode"
|
1896 |
+
msgstr "شیوازی پاراستنیPHP "
|
1897 |
|
1898 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:152
|
1899 |
msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
|
1900 |
+
msgstr "پاراسنی دۆخی PHP چالاکە.کۆدەکانی GeoIP لەدۆخی ئسایش پشتیوانی نابن"
|
1901 |
|
1902 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:158
|
1903 |
msgid "jQuery Version"
|
1904 |
+
msgstr "وەشانی jQuery "
|
1905 |
|
1906 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:163
|
1907 |
msgid "The jQuery version you are running."
|
1908 |
+
msgstr "وەشانی jQuery ئێوە کە لە ئێستا بەکارتهێناوە"
|
1909 |
|
1910 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:169
|
1911 |
msgid "cURL Version"
|
1912 |
+
msgstr "وەشانیcURL"
|
1913 |
|
1914 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:173
|
1915 |
msgid "cURL not installed"
|
1916 |
+
msgstr "cURL دانەمزراوە"
|
1917 |
|
1918 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:174
|
1919 |
msgid "The PHP cURL Extension version you are running. cURL is required for the GeoIP code, if it is not installed GeoIP will be disabled."
|
1920 |
+
msgstr "پێوەکراوەی cURL لە PHP ئێوە لەکاتی ڕاکردنە. گەر دانەمەزراوە GeoIP ناچالاک دەبێت"
|
1921 |
|
1922 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:180
|
1923 |
msgid "BC Math"
|
1924 |
+
msgstr "بیرکاری BC "
|
1925 |
|
1926 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:184
|
1927 |
msgid "Installed"
|
1928 |
+
msgstr "دامەزرا"
|
1929 |
|
1930 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:184
|
1931 |
msgid "Not installed"
|
1932 |
+
msgstr "دانەمەزرا"
|
1933 |
|
1934 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:185
|
1935 |
msgid "If the PHP BC Math Extension is installed. BC Math is no longer required for the GeoIP code and is listed here only for historical reasons."
|
1936 |
+
msgstr "گر بیریاری پێ زایین PHPجیاکاری لۆ دامەزراندن بووە.بیرکاری پێش زیینی تر بۆ دامەزراندن پێویستە بۆ کۆدی GeoIP تەنیا بە هۆکاری مێژوویی باس کراوە"
|
1937 |
|
1938 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:190
|
1939 |
msgid "File Info"
|
1940 |
+
msgstr "زانیاری پەڕگە"
|
1941 |
|
1942 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:195
|
1943 |
msgid "GeoIP Database"
|
1944 |
+
msgstr "بنکەدراوەی GeoIP"
|
1945 |
|
1946 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:204
|
1947 |
msgid "Database file does not exist."
|
1948 |
+
msgstr "پەڕگەی بنکەدراوە بوونی نییە"
|
1949 |
|
1950 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:206
|
1951 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:225
|
1952 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:244
|
1953 |
msgid ", created on "
|
1954 |
+
msgstr "درووستکراوە لە"
|
1955 |
|
1956 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:208
|
1957 |
msgid "The file size and date of the GeoIP database."
|
1958 |
+
msgstr "قەبارە پەڕگە ورێکەوتی بنکەیدراوەی GeoIP"
|
1959 |
|
1960 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:214
|
1961 |
msgid "browscap.ini File"
|
1962 |
+
msgstr "پەرگەی browscap.ini"
|
1963 |
|
1964 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:223
|
1965 |
msgid "browscap.ini file does not exist."
|
1966 |
+
msgstr "پەڕگەی browscap.ini بوونی نییە"
|
1967 |
|
1968 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:227
|
1969 |
msgid "The file size and date of the browscap.ini file."
|
1970 |
+
msgstr "قەباری و رێکەوتی پەڕگەی browscap.ini"
|
1971 |
|
1972 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:233
|
1973 |
msgid "browscap Cache File"
|
1974 |
+
msgstr "بیرگەی نهێنی browscap "
|
1975 |
|
1976 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:242
|
1977 |
msgid "browscap cache file does not exist."
|
1978 |
+
msgstr "بیرگەی نهێنی browscap بوونی نییە"
|
1979 |
|
1980 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:246
|
1981 |
msgid "The file size and date of the browscap cache file."
|
1982 |
+
msgstr "قەبارە پەڕگە ورێکەوتی بیرگەی نژێنی browscap ."
|
1983 |
|
1984 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:251
|
1985 |
msgid "Client Info"
|
1986 |
+
msgstr "زانیاری بەکارهینەر"
|
1987 |
|
1988 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:256
|
1989 |
msgid "Client IP"
|
1990 |
+
msgstr "IP بەکارهێنەر"
|
1991 |
|
1992 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:261
|
1993 |
msgid "The client IP address."
|
1994 |
+
msgstr "ناونیشانی IP بەکارهینەر"
|
1995 |
|
1996 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:267
|
1997 |
msgid "User Agent"
|
1998 |
+
msgstr "بریکاری بەکارهێنەر"
|
1999 |
|
2000 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:272
|
2001 |
msgid "The client user agent string."
|
2002 |
+
msgstr "رێزبەندی بریکاری بەکارهینەر"
|
2003 |
|
2004 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:278
|
2005 |
msgid "Browser"
|
2006 |
+
msgstr "وەبگەڕ"
|
2007 |
|
2008 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:285
|
2009 |
msgid "The detected client browser."
|
2010 |
+
msgstr "وەبگەڕی ناسراوەی بەکارهینەر"
|
2011 |
|
2012 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:296
|
2013 |
msgid "The detected client browser version."
|
2014 |
+
msgstr "وەشانی ناسراوەی وێبگەڕی بەکارهینەر"
|
2015 |
|
2016 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:307
|
2017 |
msgid "The detected client platform."
|
2018 |
+
msgstr "سەکۆی ناسراوەی بەکارهینەر"
|
2019 |
|
2020 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:4
|
2021 |
msgid "This will replace all IP addresses in the database with hash values and cannot be undo, are you sure?"
|
2022 |
+
msgstr "تەواوی ناونیشانەکانی لە بنکەدراوە دەگؤڕدڕێنە سەر هەش وە ناگەڕێنەوە ،دەڵنیای ؟"
|
2023 |
|
2024 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:16
|
2025 |
msgid "GeoIP Options"
|
2026 |
+
msgstr "رێکخستنی GeoIP"
|
2027 |
|
2028 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:26
|
2029 |
msgid "Updates any unknown location data in the database, this may take a while"
|
2030 |
+
msgstr "وەرگرتنی بەرۆژکردنی شوێنی وەڵآتەکان لە بنکەی درواە.لەوانەیە ئەم کردارە کەمێ کات بەخۆیەوە ترخان بکات"
|
2031 |
|
2032 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:31
|
2033 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:66
|
2034 |
msgid "IP Addresses"
|
2035 |
+
msgstr "ناونیشانەکانی IP "
|
2036 |
|
2037 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:36
|
2038 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:71
|
2039 |
msgid "Hash IP Addresses"
|
2040 |
+
msgstr "هەشکردنی ناونیشانی IP "
|
2041 |
|
2042 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:41
|
2043 |
msgid "Replace IP addresses in the database with hash values, you will not be able to recover the IP addresses in the future to populate location information afterwards and this may take a while"
|
2044 |
+
msgstr "تەواوی ناونیشانەکانی IP لە بنکەی دراوە بە هەش دەگۆردرێن و توانایی گەڕانەوەیان نییە.بۆ ئەم کردارە دەڵنیای ؟"
|
2045 |
|
2046 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:43
|
2047 |
msgid "IP Addresses replaced with hash values."
|
2048 |
+
msgstr "ناونیشانەکانی IP لەگەڵ بەهای هەش دەگۆڕدرێت"
|
2049 |
|
2050 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:51
|
2051 |
msgid "Install routine complete."
|
2052 |
+
msgstr "دامەزراندن تەواوبوو"
|
2053 |
|
2054 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:146
|
2055 |
msgid "Resources/Information"
|
2056 |
+
msgstr "سەرچاوەکان/زانیاری"
|
2057 |
|
2058 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:148
|
2059 |
msgid "Purging"
|
2060 |
+
msgstr "پاکسازی"
|
2061 |
|
2062 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:149
|
2063 |
msgid "Database"
|
2064 |
+
msgstr "بنکەدراوە"
|
2065 |
|
2066 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:150
|
2067 |
msgid "Updates"
|
2068 |
+
msgstr "بەڕۆژبونەکان"
|
2069 |
|
2070 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:151
|
2071 |
msgid "Historical"
|
2072 |
+
msgstr "مێژوویی"
|
2073 |
|
2074 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:8
|
2075 |
msgid "WP Statistics V%s"
|
2076 |
+
msgstr "ئاماری وۆردپرێس وشانی %s"
|
2077 |
|
2078 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:20
|
2079 |
msgid "Visit Us Online"
|
2080 |
+
msgstr "دیتنی ئێمە"
|
2081 |
|
2082 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:24
|
2083 |
msgid "Come visit our great new %s and keep up to date on the latest news about WP Statistics."
|
2084 |
+
msgstr "بۆ %s نوێی ئێمە بڕۆن تا لە زانیاریەکان و هەواڵەکانی زیادکراوەی ئاماری وۆردپرێس ئاگادار بن."
|
2085 |
|
2086 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:24
|
2087 |
msgid "website"
|
2088 |
+
msgstr "ماڵپەڕ"
|
2089 |
|
2090 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:28
|
2091 |
msgid "Rate and Review at WordPress.org"
|
2092 |
+
msgstr "پلەدانان و پێداچوونەوە لە WordPress.org"
|
2093 |
|
2094 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:32
|
2095 |
msgid "Thanks for installing WP Statistics, we encourage you to submit a "
|
2096 |
+
msgstr "سپاس و پێزانین بۆ دامەزراندنی زیادکراوەی ئاماری وۆردپرێس.ئێوە ئێوە هاندەدەین بۆ ناردنی "
|
2097 |
|
2098 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:32
|
2099 |
msgid "rating and review"
|
2100 |
+
msgstr "پلەدانان و پێداچوونەوە"
|
2101 |
|
2102 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:32
|
2103 |
msgid "over at WordPress.org. Your feedback is greatly appreciated!"
|
2104 |
+
msgstr "سەردانی ماڵپەڕی وۆردپرێش بکەن .بۆچوونەکانتان جێگای پێزانینە."
|
2105 |
|
2106 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:36
|
2107 |
msgid "Translations"
|
2108 |
+
msgstr "وەرگێڕانەکان"
|
2109 |
|
2110 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:40
|
2111 |
msgid "WP Statistics supports internationalization and we encourage our users to submit translations, please visit our %s to see the current status and %s if you would like to help."
|
2112 |
+
msgstr "زیادکراوەی ئاماری وۆردپرێش بۆ بوون بە نێودەوڵەتی هانتان ئەدات تاکوو وەرگێڕانی لە سەر بکەن., بۆ دیتنی دۆخی وەرگێڕاوەکان %s سەردانی بکەن و گەر پێت خۆشە یارمەتیمان بدەی %s سەردانی بکە."
|
2113 |
|
2114 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:40
|
2115 |
msgid "translation collaboration site"
|
2116 |
+
msgstr "مالپەڕی هاوکار لە وەرگێڕان"
|
2117 |
|
2118 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:40
|
2119 |
msgid "drop us a line"
|
2120 |
+
msgstr "پەیوەندی لەگەڵ ئێمە"
|
2121 |
|
2122 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:44
|
2123 |
msgid "Support"
|
2124 |
+
msgstr "پشتیوانی"
|
2125 |
|
2126 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:49
|
2127 |
msgid "We're sorry you're having problem with WP Statistics and we're happy to help out. Here are a few things to do before contacting us:"
|
2128 |
+
msgstr "گەر لە گەڵ زیادکراوەی ئاماری وۆردپرێس کێشەت هەیە !پێمان خۆشە یارمەتیت بدەین.لە خوارەوە دەتوانیت لە تاقمەکانی سوود وەربگریت و پەیوەندیمان پی بکەی : "
|
2129 |
|
2130 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:52
|
2131 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:53
|
2132 |
msgid "Have you read the %s?"
|
2133 |
+
msgstr "ئێوە %s ت خوێندوەتەوە ؟"
|
2134 |
|
2135 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:52
|
2136 |
msgid "FAQs"
|
2137 |
+
msgstr "پرسیارەکان"
|
2138 |
|
2139 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:53
|
2140 |
msgid "manual"
|
2141 |
+
msgstr "ڕێنمایی"
|
2142 |
|
2143 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:54
|
2144 |
msgid "Have you search the %s for a similar issue?"
|
2145 |
+
msgstr "لە %s بۆ بابەتەکانی هاوتا گڕانتان کردووە ؟"
|
2146 |
|
2147 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:54
|
2148 |
msgid "support forum"
|
2149 |
+
msgstr "سەکۆی پشتیوانی"
|
2150 |
|
2151 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:55
|
2152 |
msgid "Have you search the Internet for any error messages you are receiving?"
|
2153 |
+
msgstr "ئایا بۆ هەر هەڵە لە ئینتەرنێت گەڕاوی ؟"
|
2154 |
|
2155 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:56
|
2156 |
msgid "Make sure you have access to your PHP error logs."
|
2157 |
+
msgstr "دەڵنیای PHP بە هەڵەکانی دەستپێگەیشتنت هەیە؟"
|
2158 |
|
2159 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:59
|
2160 |
msgid "And a few things to double-check:"
|
2161 |
+
msgstr "سەرنج بەم چەند خاڵە بدەن :"
|
2162 |
|
2163 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:62
|
2164 |
msgid "How's your memory_limit in php.ini?"
|
2165 |
+
msgstr "ژمارەی memory_limit لەphp.ini چاو پێکەوتووە ؟"
|
2166 |
|
2167 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:63
|
2168 |
msgid "Have you tried disabling any other plugins you may have installed?"
|
2169 |
+
msgstr "هەوڵت داوە زیادکراوەکانی دیکە ناچالللاک بکەی ؟"
|
2170 |
|
2171 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:64
|
2172 |
msgid "Have you tried using the default WordPress theme?"
|
2173 |
+
msgstr "هەوڵت داوا ڕکاری بنەڕەتی وۆردپرێس بکاربێنیت ؟"
|
2174 |
|
2175 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:65
|
2176 |
msgid "Have you double checked the plugin settings?"
|
2177 |
+
msgstr "ئایا ڕێکخستنەکانی زیادکراوەت چاودێری کردووە ؟"
|
2178 |
|
2179 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:66
|
2180 |
msgid "Do you have all the required PHP extensions installed?"
|
2181 |
+
msgstr "ئایا پێویستیەکانی دەستپیگەیشتنی PHP دامەزراندووە؟"
|
2182 |
|
2183 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:67
|
2184 |
msgid "Are you getting a blank or incomplete page displayed in your browser? Did you view the source for the page and check for any fatal errors?"
|
2185 |
+
msgstr "ئایا پەرەییکی بەتاڵ لە وێبگەڕەکەت بینڕاوە ؟ئایا هەڵەکانت لە کۆدەکان بینیوە ئان پشکنینت بۆ کردووە /"
|
2186 |
|
2187 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:68
|
2188 |
msgid "Have you checked your PHP and web server error logs?"
|
2189 |
+
msgstr "ئایا PHP گوزارشی هەڵەکانی سێرڤێری وێبەکەت پشکنین کردووە ؟"
|
2190 |
|
2191 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:71
|
2192 |
msgid "Still not having any luck?"
|
2193 |
+
msgstr "هێشتا شآنسو بەختێکت بۆ نییە ؟"
|
2194 |
|
2195 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:71
|
2196 |
msgid "Then please open a new thread on the %s and we'll respond as soon as possible."
|
2197 |
+
msgstr "تکایە تیکێتێکی نوێ لە %s بنووسن تا لە کەمترین کات وەڵامەت بدەینەوە ."
|
2198 |
|
2199 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:71
|
2200 |
msgid "WordPress.org support forum"
|
2201 |
+
msgstr "سەکۆی پشتیوانی WordPress.org"
|
2202 |
|
2203 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:75
|
2204 |
msgid "Alternatively %s support is available as well."
|
2205 |
+
msgstr "مەکۆی پشتیوانی %s ئێمە ،ڕێگایێکی ترە بۆ دەستپێگەیشتن بە ئێمە"
|
2206 |
|
2207 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:75
|
2208 |
msgid "Farsi"
|
2209 |
+
msgstr "فارسی"
|
2210 |
|
2211 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:21
|
2212 |
msgid "WP Statistics Honey Pot Page"
|
2213 |
+
msgstr "پەڕەی ئاماری وۆردپرێسی مەنجەڵە هەنگوین"
|
2214 |
|
2215 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:22
|
2216 |
msgid "This is the honey pot for WP Statistics to use, do not delete."
|
2217 |
+
msgstr "ئەم مەنجەڵە هەنگوێنە بۆ بەکارهێنانی ئاماری WPیە،نەبۆ سڕینەوە"
|
2218 |
|
2219 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:45
|
2220 |
msgid "Access Levels"
|
2221 |
+
msgstr "ئاستی دەستپێگەیشتن"
|
2222 |
|
2223 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:74
|
2224 |
msgid "Required user level to view WP Statistics"
|
2225 |
+
msgstr "ئاستی بەکارهێنەری پێویست بۆ دیتنی ئاماری وۆردپرێس"
|
2226 |
|
2227 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:89
|
2228 |
msgid "Required user level to manage WP Statistics"
|
2229 |
+
msgstr "ئاستی بەکارهێنەری پێویست بۆ بەڕێوەبردنی ئاماری وۆردپرێس"
|
2230 |
|
2231 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:97
|
2232 |
msgid "See the %s for details on capability levels."
|
2233 |
+
msgstr "دیتنی وردەکاری %s لە سەر ئاستی تواناییەکان."
|
2234 |
|
2235 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:97
|
2236 |
msgid "WordPress Roles and Capabilities page"
|
2237 |
+
msgstr "پەڕەی ڕۆڵەکان و تواناییەکانی وۆردپرێس"
|
2238 |
|
2239 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:98
|
2240 |
msgid "Hint: manage_network = Super Admin Network, manage_options = Administrator, edit_others_posts = Editor, publish_posts = Author, edit_posts = Contributor, read = Everyone."
|
2241 |
+
msgstr "خاڵ: manage_network =بەڕێوەبەری تۆڕ، manage_options = بەڕیوەبەر، edit_others_posts = سەرنووسەر، publish_posts = نووسەر، edit_posts = هاوبەش، read = گشتی."
|
2242 |
|
2243 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:99
|
2244 |
msgid "Each of the above casscades the rights upwards in the default WordPress configuration. So for example selecting publish_posts grants the right to Authors, Editors, Admins and Super Admins."
|
2245 |
+
msgstr "هەر ئەکێک لە بڕگەکان بە شێوازی بنەڕەتی لە وۆردپرێس دابین کراوە. بۆ وێنە بە هەڵبژاردنی publish_posts به نویسندهگاه، سەرنووسەرەکان، بەڕێوەبەرو بەرێوەبەری گشتی دەستپێگەیشتن دەدەیت."
|
2246 |
|
2247 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:100
|
2248 |
msgid "If you need a more robust solution to delegate access you might want to look at %s in the WordPress plugin directory."
|
2249 |
+
msgstr "گەر پێویستت بە ڕێگاییک دیکە بۆ پەیوەندی لەگەڵ ڕۆڵی بەکارهینەرانی وۆردپرێس هەیە، نچاو لەم زیادکراوە %s بکەن"
|
2250 |
|
2251 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:105
|
2252 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:296
|
2253 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:369
|
2254 |
msgid "Exclusions"
|
2255 |
+
msgstr "جیاکاریەکان"
|
2256 |
|
2257 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:109
|
2258 |
msgid "Record exclusions"
|
2259 |
+
msgstr "تۆمارکردنی جیاکاریەکان"
|
2260 |
|
2261 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:111
|
2262 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:165
|
2263 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:192
|
2264 |
msgid "Enable"
|
2265 |
+
msgstr "چالاک"
|
2266 |
|
2267 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:112
|
2268 |
msgid "This will record all the excluded hits in a separate table with the reasons why it was excluded but no other information. This will generate a lot of data but is useful if you want to see the total number of hits your site gets, not just actual user visits."
|
2269 |
+
msgstr "جیاکردنی چینیک لە سەردانی ئامارەکە و هەڵگرتنی ئەان بە نووسینی هۆکارەکەیان لە خشتێکی تر.دەتوانێت ژمارەیێکی زۆر داتا درووستکرێت.بەسوودە دەتوانن ئامارێکی پتوتر لە سەردانەکان بەدەت بێنن."
|
2270 |
|
2271 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:117
|
2272 |
msgid "Exclude User Roles"
|
2273 |
+
msgstr "دوورخستنەوەی ڕۆڵی بەکارهێنەر"
|
2274 |
|
2275 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:133
|
2276 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:247
|
2277 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:254
|
2278 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:261
|
2279 |
msgid "Exclude"
|
2280 |
+
msgstr "دوورخستنەوەکان"
|
2281 |
|
2282 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:134
|
2283 |
msgid "Exclude %s role from data collection."
|
2284 |
+
msgstr "دوورخستنی ڕۆڵی بەکارهێنەر %s لە ژمارەی ئامار"
|
2285 |
|
2286 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:140
|
2287 |
msgid "IP/Robot Exclusions"
|
2288 |
+
msgstr "جیاکردنی ڕۆبۆت/ئای پی"
|
2289 |
|
2290 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:144
|
2291 |
msgid "Robot list"
|
2292 |
+
msgstr "لیستی ڕۆبۆتەکان"
|
2293 |
|
2294 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:157
|
2295 |
msgid "A list of words (one per line) to match against to detect robots. Entries must be at least 4 characters long or they will be ignored."
|
2296 |
+
msgstr "پیرستێک لە وەشەکان بۆ هەڵسەنگاندن و ناسینی ڕۆبۆتەکان (لە هەر هێڵ وەشەیێک بنووسن). چوونەژوورەوەکان دەبێت ٤ پیت بن."
|
2297 |
|
2298 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:158
|
2299 |
msgid "Reset to Default"
|
2300 |
+
msgstr "ڕێکخستنەوه بۆ شێوازی بنەڕەتی"
|
2301 |
|
2302 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:163
|
2303 |
msgid "Force robot list update after upgrades"
|
2304 |
+
msgstr "بەڕۆژکردنی لیستی ڕۆبۆتەکان پێش بەرزکردنەوە"
|
2305 |
|
2306 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:166
|
2307 |
msgid "Force the robot list to be reset to the default after an update to WP Statistics takes place. Note if this option is enabled any custom robots you have added to the list will be lost."
|
2308 |
+
msgstr "پێرستی ڕۆبۆتەکان پاش بەڕۆژ بوونەوە ڕێکدەخرینەە.گەر ئەم برگە هەڵبژیرن پێرست لەدەست دەچێت"
|
2309 |
|
2310 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:171
|
2311 |
msgid "Robot visit threshold"
|
2312 |
+
msgstr "لێواری سەفەری ڕۆبۆت"
|
2313 |
|
2314 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:174
|
2315 |
msgid "Treat visitors with more than this number of visits per day as robots. 0 = disabled."
|
2316 |
+
msgstr "هەڵسوکەوتکردنی میوانان زۆرتر لەم ژمارە سەردانە لەهەر ڕۆژ بە عینوانی ڕۆبۆت 0 = ناچالاکە."
|
2317 |
|
2318 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:179
|
2319 |
msgid "Excluded IP address list"
|
2320 |
+
msgstr "جیاکردنی پێرستی ناونیشانیIP"
|
2321 |
|
2322 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:182
|
2323 |
msgid "A list of IP addresses and subnet masks (one per line) to exclude from statistics collection (both 192.168.0.0/24 and 192.168.0.0/255.255.255.0 formats are accepted). To specify an IP address only, use a subnet value of 32 or 255.255.255.255."
|
2324 |
+
msgstr "لیستێک لە ناونیشانی IPو Subnet Maskهای (لە هەر هیڵ یەک دانی) بۆ بەرگیری لە ژمێڕیاری ئامار (هەر دوو شێوازی 192.168.0.0/24 و 192.168.0.0/255.255.255.0 توانیی قبووڵ). بۆ دابین کردن تەنها ئادرەسێک لەIP پێویست نییەSubnet Maskزیادی کەن "
|
2325 |
|
2326 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:183
|
2327 |
msgid "Add 10.0.0.0"
|
2328 |
+
msgstr "زیادکردنی10.0.0.0"
|
2329 |
|
2330 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:184
|
2331 |
msgid "Add 172.16.0.0"
|
2332 |
+
msgstr "زۆرکردنی172.16.0.0"
|
2333 |
|
2334 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:185
|
2335 |
msgid "Add 192.168.0.0"
|
2336 |
+
msgstr "زیادکردنی192.168.0.0"
|
2337 |
|
2338 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:190
|
2339 |
msgid "Use honey pot"
|
2340 |
+
msgstr "بەکارهینانی مەنجەڵە هەنگوین"
|
2341 |
|
2342 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:193
|
2343 |
msgid "Use a honey pot page to identify robots."
|
2344 |
+
msgstr "بەکارهینانی پەڕەیێک لە مەنجەڵە هەنگوین بۆ ناساندنی ڕۆبۆتەکان"
|
2345 |
|
2346 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:198
|
2347 |
msgid "Honey pot post id"
|
2348 |
+
msgstr "مەنجەڵە هەنگوین ناردنی ناسنامە"
|
2349 |
|
2350 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:201
|
2351 |
msgid "The post id to use for the honeypot page."
|
2352 |
+
msgstr "ناردنی ناسنامە بۆ بەکارهێنانی پەڕەی مەنجەڵە هەنگوین"
|
2353 |
|
2354 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:202
|
2355 |
msgid "Create a new honey pot page"
|
2356 |
+
msgstr "درووستکردنی پەڕەی نوێی مەنجەڵە هەنگوین"
|
2357 |
|
2358 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:207
|
2359 |
msgid "GeoIP Exclusions"
|
2360 |
+
msgstr "جیاکراوەکانی GeoIP"
|
2361 |
|
2362 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:211
|
2363 |
msgid "Excluded countries list"
|
2364 |
+
msgstr "لیستی وەڵاتە جیاکراوەکان"
|
2365 |
|
2366 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:214
|
2367 |
msgid "A list of country codes (one per line, two letters each) to exclude from statistics collection. Use \"000\" (three zeros) to exclude unknown countries."
|
2368 |
+
msgstr "لیستێک لە کۆدی وەڵاتەکان (ئەکدانە لە هەر هێڵ، هەر دوو نامە) لە کۆی ئامار بریتیە بەکارهێنان لە "000" (سێ سفر) رد بۆ وەڵاتە نەناسراوەکانە."
|
2369 |
|
2370 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:219
|
2371 |
msgid "Included countries list"
|
2372 |
+
msgstr "لیستی وەڵاتەکان بریتین لە"
|
2373 |
|
2374 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:222
|
2375 |
msgid "A list of country codes (one per line, two letters each) to include in statistics collection, if this list is not empty, only visitors from the included countries will be recorded. Use \"000\" (three zeros) to exclude unknown countries."
|
2376 |
+
msgstr "لیستێک لە کۆدی وەڵاتەکان (لەهەر هێڵ یەکێک، هەر دوو نامە)لە کۆ ئامار بریتییە، گەر ئەم لیستە بەتاڵ نییە، تەنیا میوانەکان لە وەڵاتەکان تۆمار دەبن. بەکارهێنان لە "000" (سێ سفر) بۆ قەبووڵ نەکردنی وەڵاتە نەناسراوەکانە."
|
2377 |
|
2378 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:227
|
2379 |
msgid "Host Exclusions"
|
2380 |
+
msgstr "جیاکاری هۆست"
|
2381 |
|
2382 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:231
|
2383 |
msgid "Excluded hosts list"
|
2384 |
+
msgstr "جیاکاری لیستی هۆستەکان"
|
2385 |
|
2386 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:234
|
2387 |
msgid "A list of fully qualified host names (ie. server.example.com, one per line) to exclude from statistics collection."
|
2388 |
+
msgstr "لیستێک لە ناونیشانەکانی خۆماڵی (بۆ وێنە: /wordpress/about، هەر هێڵ) لە کۆی ئامار دووردەخرێت."
|
2389 |
|
2390 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:236
|
2391 |
msgid "Note: this option will NOT perform a reverse DNS lookup on each page load but instead cache the IP address for the provided hostnames for one hour. If you are excluding dynamically assigned hosts you may find some degree of overlap when the host changes it's IP address and when the cache is updated resulting in some hits recorded."
|
2392 |
+
msgstr "ئاگاداربە:ئەم بڕگە dns پێچەوانە لە هەر نوێکردنی پەڕە بۆ هەر ipێک کە لە سەر شەکرەی هەر سێرڤێرێک لە کاتژمێر بەکاردێت . گەر ئێوە بەرگیری بکەن لە هەر هۆستێکی تایبەتلەوانەیە کە ءیوە پەیدا بکەن پلەی هاوئاهەنگی لە نێوانگۆڕانی هۆست کە بە ناونیشانی ئایپی و بەڕۆژ بوونی ئاکامی سەردانەکان لە بوونی شەکرە لە وێبگەر."
|
2393 |
|
2394 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:241
|
2395 |
msgid "Site URL Exclusions"
|
2396 |
+
msgstr "جیاکاری ئادرەسی ماڵپەڕ"
|
2397 |
|
2398 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:245
|
2399 |
msgid "Excluded login page"
|
2400 |
+
msgstr "جیاکاری پەڕگەی هاتنە ژوور"
|
2401 |
|
2402 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:248
|
2403 |
msgid "Exclude the login page for registering as a hit."
|
2404 |
+
msgstr "جیاکاری پەڕەی چوونەژوورەوە بۆ ناونووسی لە ژماردنی ئامار"
|
2405 |
|
2406 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:252
|
2407 |
msgid "Excluded admin pages"
|
2408 |
+
msgstr "جیاکاری پەڕەی بەڕێوەبەر"
|
2409 |
|
2410 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:255
|
2411 |
msgid "Exclude the admin pages for registering as a hit."
|
2412 |
+
msgstr "جیاکاری پەڕەی بەڕێوەبەر بۆ ناونووسی لە ژماردنی ئامار"
|
2413 |
|
2414 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:259
|
2415 |
msgid "Excluded RSS feeds"
|
2416 |
+
msgstr "جیاکاری فیدی RSS "
|
2417 |
|
2418 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:262
|
2419 |
msgid "Exclude the RSS feeds for registering as a hit."
|
2420 |
+
msgstr "جیاکاری پەڕەی فیدیRSS بۆ ناونووسی لە ژماردنی ئامار"
|
2421 |
|
2422 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:22
|
2423 |
msgid "browscap settings"
|
2424 |
+
msgstr "ڕێکخستنەکانی browscap "
|
2425 |
|
2426 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:27
|
2427 |
msgid "browscap usage"
|
2428 |
+
msgstr "سودوەرگرتن لە browscap"
|
2429 |
|
2430 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:32
|
2431 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:56
|
2457 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:147
|
2458 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:159
|
2459 |
msgid "Active"
|
2460 |
+
msgstr "چالاک"
|
2461 |
|
2462 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:33
|
2463 |
msgid "The browscap database will be downloaded and used to detect robots."
|
2464 |
+
msgstr "بنکەی دراوە browscap داگرە بۆ بهەرە وەرگرتن لە رۆبۆت."
|
2465 |
|
2466 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:39
|
2467 |
msgid "Update browscap Info"
|
2468 |
+
msgstr "Browscap بەڕۆژکردنی زانیاریەکانی"
|
2469 |
|
2470 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:44
|
2471 |
msgid "Download browscap Database"
|
2472 |
+
msgstr "داگرتنی browscapبنکەدراوە"
|
2473 |
|
2474 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:45
|
2475 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:60
|
2476 |
msgid "Save changes on this page to download the update."
|
2477 |
+
msgstr "پاشکەوتی گۆڕانکاری لەم پەرگە و داگرتنی بەڕۆژکراوەکان"
|
2478 |
|
2479 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:51
|
2480 |
msgid "Schedule weekly update of browscap DB"
|
2481 |
+
msgstr "ببەرنامەی بەڕۆژ کردنی هەفتانە browscap دسی بی"
|
2482 |
|
2483 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:59
|
2484 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:74
|
2485 |
msgid "Next update will be"
|
2486 |
+
msgstr "بەڕۆژ بوونی داهاتوو هەیە."
|
2487 |
|
2488 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:74
|
2489 |
msgid "Download of the browscap database will be scheduled for once a week."
|
2490 |
+
msgstr "داگرتنی بنکەدراوەی browscap بۆبارێک لە حەفتە"
|
2491 |
|
2492 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:50
|
2493 |
msgid "This will delete the manual when you save the settings, are you sure?"
|
2494 |
+
msgstr "پاش پاشکەتکردنی ڕێکخستنەکان پەڕگەی ڕینمایی دەسڕێتەوە ،دەڵنیای ؟"
|
2495 |
|
2496 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:77
|
2497 |
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2498 |
+
msgstr "ئەم تایبەتمەندییە ناونیشانی IP لە بنکەی دراوە پاشکەوت دەکات بەڵآم بە جێگای لە هەشی تایبەت بەهرە وەردەگرێت. String بریکاری بەکارهێنەر کۆی \"Store\" ڕێکخستن ناچالاک دەبێت گەر ئەم بڕگە هەڵبژێردرێت. ئێوە دەتوانن بۆ گەڕانەوەی ناونیشان IP لەداهاتو گە ڕانەوەی زانیاریەکانی شوێن چالاک بکەن.."
|
2499 |
|
2500 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:82
|
2501 |
msgid "Users Online"
|
2502 |
+
msgstr "بەکارهێنەری سەرهێڵ"
|
2503 |
|
2504 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:87
|
2505 |
msgid "User online"
|
2506 |
+
msgstr "بەکارهێنەری سەرهێڵ"
|
languages/wp_statistics-de_DE.mo
CHANGED
Binary file
|
languages/wp_statistics-de_DE.po
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
# This file is distributed under the same license as the WP Statistics package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"PO-Revision-Date: 2015-03-
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -20,7 +20,7 @@ msgstr ""
|
|
20 |
|
21 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:319
|
22 |
msgid "Languages"
|
23 |
-
msgstr ""
|
24 |
|
25 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:271
|
26 |
msgid "Note: this option will NOT handle url parameters (anything after the ?), only to the script name. Entries less than two characters will be ignored."
|
@@ -52,7 +52,7 @@ msgstr ""
|
|
52 |
|
53 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:398
|
54 |
msgid "Yahoo!"
|
55 |
-
msgstr ""
|
56 |
|
57 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:399
|
58 |
msgid "Yandex"
|
@@ -60,7 +60,7 @@ msgstr "Yandex"
|
|
60 |
|
61 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:395
|
62 |
msgid "clearch.org"
|
63 |
-
msgstr ""
|
64 |
|
65 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:396
|
66 |
msgid "DuckDuckGo"
|
2 |
# This file is distributed under the same license as the WP Statistics package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2015-03-18 00:52:26+0000\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
20 |
|
21 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:319
|
22 |
msgid "Languages"
|
23 |
+
msgstr "Sprachen"
|
24 |
|
25 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:271
|
26 |
msgid "Note: this option will NOT handle url parameters (anything after the ?), only to the script name. Entries less than two characters will be ignored."
|
52 |
|
53 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:398
|
54 |
msgid "Yahoo!"
|
55 |
+
msgstr "Yahoo!"
|
56 |
|
57 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:399
|
58 |
msgid "Yandex"
|
60 |
|
61 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:395
|
62 |
msgid "clearch.org"
|
63 |
+
msgstr "clearch.org"
|
64 |
|
65 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:396
|
66 |
msgid "DuckDuckGo"
|
languages/wp_statistics-fa_IR.mo
CHANGED
Binary file
|
languages/wp_statistics-fa_IR.po
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
# This file is distributed under the same license as the WP Statistics package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"PO-Revision-Date: 2015-03-
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -2045,7 +2045,7 @@ msgstr "جایگزین کردن مقادیر هش به جای آدرس آیپ
|
|
2045 |
|
2046 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:43
|
2047 |
msgid "IP Addresses replaced with hash values."
|
2048 |
-
msgstr "آدرس آیپی با مقادیر
|
2049 |
|
2050 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:51
|
2051 |
msgid "Install routine complete."
|
2 |
# This file is distributed under the same license as the WP Statistics package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2015-03-18 00:51:55+0000\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
2045 |
|
2046 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:43
|
2047 |
msgid "IP Addresses replaced with hash values."
|
2048 |
+
msgstr "آدرس آیپی با مقادیر هش جایگزین میشود."
|
2049 |
|
2050 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:51
|
2051 |
msgid "Install routine complete."
|
languages/wp_statistics-fr_FR.mo
CHANGED
Binary file
|
languages/wp_statistics-fr_FR.po
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
# This file is distributed under the same license as the WP Statistics package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"PO-Revision-Date: 2015-
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -12,119 +12,119 @@ msgstr ""
|
|
12 |
|
13 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:330
|
14 |
msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
|
15 |
-
msgstr ""
|
16 |
|
17 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:324
|
18 |
msgid "Force English"
|
19 |
-
msgstr ""
|
20 |
|
21 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:319
|
22 |
msgid "Languages"
|
23 |
-
msgstr ""
|
24 |
|
25 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:271
|
26 |
msgid "Note: this option will NOT handle url parameters (anything after the ?), only to the script name. Entries less than two characters will be ignored."
|
27 |
-
msgstr ""
|
28 |
|
29 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:269
|
30 |
msgid "A list of local urls (ie. /wordpress/about, one per line) to exclude from statistics collection."
|
31 |
-
msgstr ""
|
32 |
|
33 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:266
|
34 |
msgid "Excluded URLs list"
|
35 |
-
msgstr ""
|
36 |
|
37 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
|
38 |
msgid "Excluded URL"
|
39 |
-
msgstr ""
|
40 |
|
41 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:58
|
42 |
msgid "Last 365 Days (Year)"
|
43 |
-
msgstr ""
|
44 |
|
45 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:52
|
46 |
msgid "Last 30 Days (Month)"
|
47 |
-
msgstr ""
|
48 |
|
49 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:46
|
50 |
msgid "Last 7 Days (Week)"
|
51 |
-
msgstr ""
|
52 |
|
53 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:398
|
54 |
msgid "Yahoo!"
|
55 |
-
msgstr ""
|
56 |
|
57 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:399
|
58 |
msgid "Yandex"
|
59 |
-
msgstr ""
|
60 |
|
61 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:395
|
62 |
msgid "clearch.org"
|
63 |
-
msgstr ""
|
64 |
|
65 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:396
|
66 |
msgid "DuckDuckGo"
|
67 |
-
msgstr ""
|
68 |
|
69 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:394
|
70 |
msgid "Bing"
|
71 |
-
msgstr ""
|
72 |
|
73 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:393
|
74 |
msgid "Baidu"
|
75 |
-
msgstr ""
|
76 |
|
77 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:69
|
78 |
msgid "Hits in the last 20 days"
|
79 |
-
msgstr ""
|
80 |
|
81 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
|
82 |
msgid "Feeds"
|
83 |
-
msgstr ""
|
84 |
|
85 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
|
86 |
msgid "User Role"
|
87 |
-
msgstr ""
|
88 |
|
89 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
|
90 |
msgid "Login Page"
|
91 |
-
msgstr ""
|
92 |
|
93 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
|
94 |
msgid "Admin Page"
|
95 |
-
msgstr ""
|
96 |
|
97 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
|
98 |
msgid "Self Referral"
|
99 |
-
msgstr ""
|
100 |
|
101 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
|
102 |
msgid "IP Match"
|
103 |
-
msgstr ""
|
104 |
|
105 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
|
106 |
msgid "Robot"
|
107 |
-
msgstr ""
|
108 |
|
109 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:100
|
110 |
msgid "Currently there are no users online in the site."
|
111 |
-
msgstr ""
|
112 |
|
113 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
|
114 |
msgid "Robot Threshold"
|
115 |
-
msgstr ""
|
116 |
|
117 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
|
118 |
msgid "Honey Pot"
|
119 |
-
msgstr ""
|
120 |
|
121 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/page.php:6
|
122 |
msgid "Page Trending Stats"
|
123 |
-
msgstr ""
|
124 |
|
125 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
|
126 |
msgid "Hostname"
|
127 |
-
msgstr ""
|
128 |
|
129 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:93
|
130 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:133
|
2 |
# This file is distributed under the same license as the WP Statistics package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2015-03-14 11:57:33+0000\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
|
13 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:330
|
14 |
msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
|
15 |
+
msgstr "N'utilisez pas les traductions, utilisez plutôt les valeurs par défaut en anglais pour les statistiques WP (nécessite deux chargement de la page)"
|
16 |
|
17 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:324
|
18 |
msgid "Force English"
|
19 |
+
msgstr "Forcer l'anglais"
|
20 |
|
21 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:319
|
22 |
msgid "Languages"
|
23 |
+
msgstr "Langues"
|
24 |
|
25 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:271
|
26 |
msgid "Note: this option will NOT handle url parameters (anything after the ?), only to the script name. Entries less than two characters will be ignored."
|
27 |
+
msgstr "Remarque: cette option ne gérera les paramètres URL (tout ce qui est après le ?), seulement pour le nom du script. les entrées de moins deux caractères seront ignorés."
|
28 |
|
29 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:269
|
30 |
msgid "A list of local urls (ie. /wordpress/about, one per line) to exclude from statistics collection."
|
31 |
+
msgstr "Une liste d'URL locales (ex. /wordpress/about, un par ligne) à exclure de la collecte des statistiques."
|
32 |
|
33 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:266
|
34 |
msgid "Excluded URLs list"
|
35 |
+
msgstr "Liste des URL Exclus"
|
36 |
|
37 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
|
38 |
msgid "Excluded URL"
|
39 |
+
msgstr "URL Exclus"
|
40 |
|
41 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:58
|
42 |
msgid "Last 365 Days (Year)"
|
43 |
+
msgstr "365 derniers jours (Année)"
|
44 |
|
45 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:52
|
46 |
msgid "Last 30 Days (Month)"
|
47 |
+
msgstr "30 derniers jours (un mois)"
|
48 |
|
49 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:46
|
50 |
msgid "Last 7 Days (Week)"
|
51 |
+
msgstr "7 derniers jours (Semaine)"
|
52 |
|
53 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:398
|
54 |
msgid "Yahoo!"
|
55 |
+
msgstr "Yahoo!"
|
56 |
|
57 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:399
|
58 |
msgid "Yandex"
|
59 |
+
msgstr "Yandex"
|
60 |
|
61 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:395
|
62 |
msgid "clearch.org"
|
63 |
+
msgstr "clearch.org"
|
64 |
|
65 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:396
|
66 |
msgid "DuckDuckGo"
|
67 |
+
msgstr "DuckDuckGo"
|
68 |
|
69 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:394
|
70 |
msgid "Bing"
|
71 |
+
msgstr "Bing"
|
72 |
|
73 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:393
|
74 |
msgid "Baidu"
|
75 |
+
msgstr "Baidu"
|
76 |
|
77 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:69
|
78 |
msgid "Hits in the last 20 days"
|
79 |
+
msgstr "Résultats des 20 derniers jours"
|
80 |
|
81 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
|
82 |
msgid "Feeds"
|
83 |
+
msgstr "Feeds"
|
84 |
|
85 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
|
86 |
msgid "User Role"
|
87 |
+
msgstr "Rôle de l'utilisateur"
|
88 |
|
89 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
|
90 |
msgid "Login Page"
|
91 |
+
msgstr "Page de Connexion"
|
92 |
|
93 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
|
94 |
msgid "Admin Page"
|
95 |
+
msgstr "Page d'Admin"
|
96 |
|
97 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
|
98 |
msgid "Self Referral"
|
99 |
+
msgstr "Auto-orientation"
|
100 |
|
101 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
|
102 |
msgid "IP Match"
|
103 |
+
msgstr "Concordance IP"
|
104 |
|
105 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
|
106 |
msgid "Robot"
|
107 |
+
msgstr "Robot"
|
108 |
|
109 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:100
|
110 |
msgid "Currently there are no users online in the site."
|
111 |
+
msgstr "Actuellement, il n'y a aucun utilisateur en ligne sur le site."
|
112 |
|
113 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
|
114 |
msgid "Robot Threshold"
|
115 |
+
msgstr "Seuil de Robot"
|
116 |
|
117 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
|
118 |
msgid "Honey Pot"
|
119 |
+
msgstr "Pot de miel"
|
120 |
|
121 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/page.php:6
|
122 |
msgid "Page Trending Stats"
|
123 |
+
msgstr "Page Statistiques Tendances"
|
124 |
|
125 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
|
126 |
msgid "Hostname"
|
127 |
+
msgstr "Nom de l'hôte"
|
128 |
|
129 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:93
|
130 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:133
|
languages/wp_statistics-hu_HU.mo
CHANGED
Binary file
|
languages/wp_statistics-hu_HU.po
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
# This file is distributed under the same license as the WP Statistics package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"PO-Revision-Date: 2015-
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -12,15 +12,15 @@ msgstr ""
|
|
12 |
|
13 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:330
|
14 |
msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
|
15 |
-
msgstr ""
|
16 |
|
17 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:324
|
18 |
msgid "Force English"
|
19 |
-
msgstr ""
|
20 |
|
21 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:319
|
22 |
msgid "Languages"
|
23 |
-
msgstr ""
|
24 |
|
25 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:271
|
26 |
msgid "Note: this option will NOT handle url parameters (anything after the ?), only to the script name. Entries less than two characters will be ignored."
|
@@ -32,83 +32,83 @@ msgstr ""
|
|
32 |
|
33 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:266
|
34 |
msgid "Excluded URLs list"
|
35 |
-
msgstr ""
|
36 |
|
37 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
|
38 |
msgid "Excluded URL"
|
39 |
-
msgstr ""
|
40 |
|
41 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:58
|
42 |
msgid "Last 365 Days (Year)"
|
43 |
-
msgstr ""
|
44 |
|
45 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:52
|
46 |
msgid "Last 30 Days (Month)"
|
47 |
-
msgstr ""
|
48 |
|
49 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:46
|
50 |
msgid "Last 7 Days (Week)"
|
51 |
-
msgstr ""
|
52 |
|
53 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:398
|
54 |
msgid "Yahoo!"
|
55 |
-
msgstr ""
|
56 |
|
57 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:399
|
58 |
msgid "Yandex"
|
59 |
-
msgstr ""
|
60 |
|
61 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:395
|
62 |
msgid "clearch.org"
|
63 |
-
msgstr ""
|
64 |
|
65 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:396
|
66 |
msgid "DuckDuckGo"
|
67 |
-
msgstr ""
|
68 |
|
69 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:394
|
70 |
msgid "Bing"
|
71 |
-
msgstr ""
|
72 |
|
73 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:393
|
74 |
msgid "Baidu"
|
75 |
-
msgstr ""
|
76 |
|
77 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:69
|
78 |
msgid "Hits in the last 20 days"
|
79 |
-
msgstr ""
|
80 |
|
81 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
|
82 |
msgid "Feeds"
|
83 |
-
msgstr ""
|
84 |
|
85 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
|
86 |
msgid "User Role"
|
87 |
-
msgstr ""
|
88 |
|
89 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
|
90 |
msgid "Login Page"
|
91 |
-
msgstr ""
|
92 |
|
93 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
|
94 |
msgid "Admin Page"
|
95 |
-
msgstr ""
|
96 |
|
97 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
|
98 |
msgid "Self Referral"
|
99 |
-
msgstr ""
|
100 |
|
101 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
|
102 |
msgid "IP Match"
|
103 |
-
msgstr ""
|
104 |
|
105 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
|
106 |
msgid "Robot"
|
107 |
-
msgstr ""
|
108 |
|
109 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:100
|
110 |
msgid "Currently there are no users online in the site."
|
111 |
-
msgstr ""
|
112 |
|
113 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
|
114 |
msgid "Robot Threshold"
|
@@ -124,7 +124,7 @@ msgstr ""
|
|
124 |
|
125 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
|
126 |
msgid "Hostname"
|
127 |
-
msgstr ""
|
128 |
|
129 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:93
|
130 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:133
|
@@ -150,11 +150,11 @@ msgstr "Itt az ideje a pontos jelenlévő felhasználók ellenőrzésére az old
|
|
150 |
|
151 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:111
|
152 |
msgid "Record all user"
|
153 |
-
msgstr ""
|
154 |
|
155 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:117
|
156 |
msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
|
157 |
-
msgstr ""
|
158 |
|
159 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:155
|
160 |
msgid "Store entire user agent string"
|
@@ -233,7 +233,7 @@ msgstr "Mellett hiba WP Statistics tárolja az admin kézi a plugin könyvtárba
|
|
233 |
|
234 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:276
|
235 |
msgid "Search Engines"
|
236 |
-
msgstr ""
|
237 |
|
238 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:281
|
239 |
msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
|
@@ -396,7 +396,7 @@ msgstr ""
|
|
396 |
|
397 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:88
|
398 |
msgid "Pruning"
|
399 |
-
msgstr ""
|
400 |
|
401 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:94
|
402 |
msgid "Send a report whenever the pruning of database is run."
|
@@ -404,11 +404,11 @@ msgstr ""
|
|
404 |
|
405 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:100
|
406 |
msgid "Upgrade"
|
407 |
-
msgstr ""
|
408 |
|
409 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:106
|
410 |
msgid "Send a report whenever the plugin is upgraded."
|
411 |
-
msgstr ""
|
412 |
|
413 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:111
|
414 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:116
|
@@ -422,7 +422,7 @@ msgstr "Menetrend"
|
|
422 |
|
423 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:153
|
424 |
msgid "Select how often to receive statistical report."
|
425 |
-
msgstr ""
|
426 |
|
427 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:159
|
428 |
msgid "Send reports via"
|
@@ -438,7 +438,7 @@ msgstr "SMS"
|
|
438 |
|
439 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:170
|
440 |
msgid "Select delivery method for statistical report."
|
441 |
-
msgstr ""
|
442 |
|
443 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:173
|
444 |
msgid "Note: To send SMS text messages please install the %s plugin."
|
@@ -454,7 +454,7 @@ msgstr "Jelentés törzsében"
|
|
454 |
|
455 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:185
|
456 |
msgid "Enter the contents of the report."
|
457 |
-
msgstr ""
|
458 |
|
459 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:187
|
460 |
msgid "Any shortcode supported by your installation of WordPress, include all shortcodes for WP Statistics (see the admin manual for a list of codes available) are supported in the body of the message. Here are some examples:"
|
@@ -514,7 +514,7 @@ msgstr "Statisztikák összegzése"
|
|
514 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:28
|
515 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:108
|
516 |
msgid "About"
|
517 |
-
msgstr "
|
518 |
|
519 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
520 |
msgid "Hits Statistical Chart"
|
@@ -530,29 +530,29 @@ msgstr "Legtöbbet meglátogatott oldalak"
|
|
530 |
|
531 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:73
|
532 |
msgid "Dashboard"
|
533 |
-
msgstr ""
|
534 |
|
535 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:77
|
536 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:97
|
537 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:117
|
538 |
msgid "The following items are global to all users."
|
539 |
-
msgstr ""
|
540 |
|
541 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:82
|
542 |
msgid "Disable dashboard widgets"
|
543 |
-
msgstr ""
|
544 |
|
545 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:88
|
546 |
msgid "Disable the dashboard widgets."
|
547 |
-
msgstr ""
|
548 |
|
549 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:93
|
550 |
msgid "Page/Post Editor"
|
551 |
-
msgstr ""
|
552 |
|
553 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:102
|
554 |
msgid "Disable post/page editor widget"
|
555 |
-
msgstr ""
|
556 |
|
557 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:108
|
558 |
msgid "Disable the page/post editor widget."
|
@@ -605,39 +605,39 @@ msgstr "A következő elemek egyedülálló-hoz mindegyik felhasználó. Ha nem
|
|
605 |
|
606 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:180
|
607 |
msgid "Slot"
|
608 |
-
msgstr "
|
609 |
|
610 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:184
|
611 |
msgid "Column A"
|
612 |
-
msgstr "Oszlop"
|
613 |
|
614 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:188
|
615 |
msgid "Column B"
|
616 |
-
msgstr "B
|
617 |
|
618 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:194
|
619 |
msgid "Slot 1"
|
620 |
-
msgstr "
|
621 |
|
622 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:224
|
623 |
msgid "Slot 2"
|
624 |
-
msgstr "
|
625 |
|
626 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:254
|
627 |
msgid "Slot 3"
|
628 |
-
msgstr "
|
629 |
|
630 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:284
|
631 |
msgid "Slot 4"
|
632 |
-
msgstr "
|
633 |
|
634 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:314
|
635 |
msgid "Slot 5"
|
636 |
-
msgstr "
|
637 |
|
638 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:344
|
639 |
msgid "Slot 6"
|
640 |
-
msgstr "
|
641 |
|
642 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:348
|
643 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:370
|
@@ -646,7 +646,7 @@ msgstr "NINCS ADAT"
|
|
646 |
|
647 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:366
|
648 |
msgid "Slot 7"
|
649 |
-
msgstr ""
|
650 |
|
651 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:15
|
652 |
msgid "WP Statisitcs Removal"
|
@@ -666,7 +666,7 @@ msgstr ""
|
|
666 |
|
667 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:34
|
668 |
msgid "Remove"
|
669 |
-
msgstr ""
|
670 |
|
671 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:35
|
672 |
msgid "Remove data and settings, this action cannot be undone."
|
@@ -678,11 +678,11 @@ msgstr "Általános"
|
|
678 |
|
679 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:101
|
680 |
msgid "Notifications"
|
681 |
-
msgstr ""
|
682 |
|
683 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:102
|
684 |
msgid "Dashboard/Overview"
|
685 |
-
msgstr ""
|
686 |
|
687 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:103
|
688 |
msgid "Access/Exclusions"
|
@@ -698,7 +698,7 @@ msgstr "Karbantartás"
|
|
698 |
|
699 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:107
|
700 |
msgid "Removal"
|
701 |
-
msgstr ""
|
702 |
|
703 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:150
|
704 |
msgid "Update"
|
@@ -732,7 +732,7 @@ msgstr "Statisztikák"
|
|
732 |
|
733 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:15
|
734 |
msgid "Show site stats in sidebar."
|
735 |
-
msgstr "
|
736 |
|
737 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:73
|
738 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:260
|
@@ -834,11 +834,11 @@ msgstr "vagy magasabb!"
|
|
834 |
|
835 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:36
|
836 |
msgid "Your current PHP version is"
|
837 |
-
msgstr ""
|
838 |
|
839 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:51
|
840 |
msgid "WP Statistics has been removed, please disable and delete it."
|
841 |
-
msgstr ""
|
842 |
|
843 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
|
844 |
msgid "WP Statistics"
|
@@ -856,7 +856,7 @@ msgstr "Követés-ban WP Statistics online felhasználó nem engedélyezett, ké
|
|
856 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:104
|
857 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:107
|
858 |
msgid "setting page"
|
859 |
-
msgstr "
|
860 |
|
861 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:104
|
862 |
msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
|
@@ -872,7 +872,7 @@ msgstr "GeoIP gyűjtemény nincs aktív, legyen szíves megy (% s), és képess
|
|
872 |
|
873 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:110
|
874 |
msgid "Setting page > GeoIP"
|
875 |
-
msgstr "
|
876 |
|
877 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:195
|
878 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:307
|
@@ -882,7 +882,7 @@ msgstr "Beállítások"
|
|
882 |
|
883 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:207
|
884 |
msgid "Click here to visit the plugin on WordPress.org"
|
885 |
-
msgstr "Kattintson ide
|
886 |
|
887 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:207
|
888 |
msgid "Visit WordPress.org page"
|
@@ -890,11 +890,11 @@ msgstr "WordPress.org oldal megtekintése"
|
|
890 |
|
891 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:210
|
892 |
msgid "Click here to rate and review this plugin on WordPress.org"
|
893 |
-
msgstr "Kattintson ide
|
894 |
|
895 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:210
|
896 |
msgid "Rate this plugin"
|
897 |
-
msgstr "Bővítmény
|
898 |
|
899 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:254
|
900 |
msgid "WP Statistics - Hits"
|
@@ -909,27 +909,27 @@ msgstr "Áttekintés"
|
|
909 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:298
|
910 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:371
|
911 |
msgid "Online"
|
912 |
-
msgstr ""
|
913 |
|
914 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:300
|
915 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:373
|
916 |
msgid "Referrers"
|
917 |
-
msgstr ""
|
918 |
|
919 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:301
|
920 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:374
|
921 |
msgid "Searches"
|
922 |
-
msgstr "
|
923 |
|
924 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:302
|
925 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:375
|
926 |
msgid "Search Words"
|
927 |
-
msgstr "
|
928 |
|
929 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:303
|
930 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:376
|
931 |
msgid "Top Visitors Today"
|
932 |
-
msgstr ""
|
933 |
|
934 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:306
|
935 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:378
|
@@ -947,7 +947,7 @@ msgstr ""
|
|
947 |
|
948 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:358
|
949 |
msgid "Options"
|
950 |
-
msgstr ""
|
951 |
|
952 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:475
|
953 |
msgid "Today visitor"
|
@@ -959,7 +959,7 @@ msgstr "Mai látogatás"
|
|
959 |
|
960 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:487
|
961 |
msgid "Yesterday visitor"
|
962 |
-
msgstr "Tegnapi
|
963 |
|
964 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:499
|
965 |
msgid "View Stats"
|
@@ -989,7 +989,7 @@ msgstr ""
|
|
989 |
|
990 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-install.php:250
|
991 |
msgid "WP Statistics %s installed on"
|
992 |
-
msgstr ""
|
993 |
|
994 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:34
|
995 |
msgid "Error downloading GeoIP database from: %s - %s"
|
@@ -1021,11 +1021,11 @@ msgstr "browscap adatbázis sikeresen frissítve!"
|
|
1021 |
|
1022 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:273
|
1023 |
msgid "browscap database updated failed! Cache file too large, reverting to previous browscap.ini."
|
1024 |
-
msgstr ""
|
1025 |
|
1026 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:281
|
1027 |
msgid "browscap database updated failed! New browscap.ini is mis-identifing user agents as crawlers, reverting to previous browscap.ini."
|
1028 |
-
msgstr ""
|
1029 |
|
1030 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:303
|
1031 |
msgid "browscap already at current version!"
|
@@ -1033,11 +1033,11 @@ msgstr "browscap már az aktuális verzió!"
|
|
1033 |
|
1034 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:316
|
1035 |
msgid "Browscap.ini update on"
|
1036 |
-
msgstr ""
|
1037 |
|
1038 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:55
|
1039 |
msgid "Quick Stats"
|
1040 |
-
msgstr ""
|
1041 |
|
1042 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:56
|
1043 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:54
|
@@ -1052,7 +1052,7 @@ msgstr "A 10 leggyakoribb ország"
|
|
1052 |
|
1053 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:58
|
1054 |
msgid "Today's Visitor Map"
|
1055 |
-
msgstr ""
|
1056 |
|
1057 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:59
|
1058 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:46
|
@@ -1103,19 +1103,19 @@ msgstr "Utolsó keresett szavak"
|
|
1103 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:8
|
1104 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:35
|
1105 |
msgid "Top 10 Visitors Today"
|
1106 |
-
msgstr ""
|
1107 |
|
1108 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:97
|
1109 |
msgid "Please reload the dashboard to display the content of this widget."
|
1110 |
-
msgstr ""
|
1111 |
|
1112 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:138
|
1113 |
msgid "WP Statistics Overview"
|
1114 |
-
msgstr ""
|
1115 |
|
1116 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:63
|
1117 |
msgid "This post is not yet published."
|
1118 |
-
msgstr ""
|
1119 |
|
1120 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:24
|
1121 |
msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
|
@@ -1280,7 +1280,7 @@ msgstr "Kizárások statisztikai diagram"
|
|
1280 |
|
1281 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:99
|
1282 |
msgid "Excluded hits in the last"
|
1283 |
-
msgstr "Kizárt az utolsó
|
1284 |
|
1285 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:99
|
1286 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:60
|
@@ -1323,7 +1323,7 @@ msgstr "Látogató"
|
|
1323 |
|
1324 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:64
|
1325 |
msgid "Latest Search Word Statistics"
|
1326 |
-
msgstr "
|
1327 |
|
1328 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:99
|
1329 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:98
|
@@ -1333,7 +1333,7 @@ msgstr "Legújabb keresési szót statisztika"
|
|
1333 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:30
|
1334 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:32
|
1335 |
msgid "#hash#"
|
1336 |
-
msgstr "#hash
|
1337 |
|
1338 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:104
|
1339 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:103
|
@@ -1491,7 +1491,7 @@ msgstr "Referenciák"
|
|
1491 |
|
1492 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-visitors.php:12
|
1493 |
msgid "Top 100 Visitors Today"
|
1494 |
-
msgstr ""
|
1495 |
|
1496 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:8
|
1497 |
msgid "About WP Statistics Version %s"
|
@@ -1503,7 +1503,7 @@ msgstr "Honlap"
|
|
1503 |
|
1504 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:26
|
1505 |
msgid "Rate and Review"
|
1506 |
-
msgstr "
|
1507 |
|
1508 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:30
|
1509 |
msgid "More Information"
|
@@ -1512,7 +1512,7 @@ msgstr "További információ"
|
|
1512 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:39
|
1513 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:12
|
1514 |
msgid "This product includes GeoLite2 data created by MaxMind, available from %s."
|
1515 |
-
msgstr "
|
1516 |
|
1517 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:7
|
1518 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:11
|
@@ -1533,7 +1533,7 @@ msgstr "Egyéb"
|
|
1533 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:9
|
1534 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:9
|
1535 |
msgid "Today Visitors Map"
|
1536 |
-
msgstr "
|
1537 |
|
1538 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:31
|
1539 |
msgid "Address"
|
@@ -1541,7 +1541,7 @@ msgstr "Cím"
|
|
1541 |
|
1542 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:23
|
1543 |
msgid "User(s) Online"
|
1544 |
-
msgstr "Online
|
1545 |
|
1546 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:34
|
1547 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:79
|
@@ -1591,7 +1591,7 @@ msgstr ""
|
|
1591 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:35
|
1592 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:291
|
1593 |
msgid "Version"
|
1594 |
-
msgstr ""
|
1595 |
|
1596 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:5
|
1597 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:5
|
@@ -1624,7 +1624,7 @@ msgstr "a(z) %s platform adatok sikeresen törölve."
|
|
1624 |
|
1625 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:17
|
1626 |
msgid "No platform data found to remove!"
|
1627 |
-
msgstr ""
|
1628 |
|
1629 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:53
|
1630 |
msgid "%s table data deleted successfully."
|
@@ -1644,7 +1644,7 @@ msgstr "Futtassa újra a telepítés"
|
|
1644 |
|
1645 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:14
|
1646 |
msgid "Install Now!"
|
1647 |
-
msgstr "
|
1648 |
|
1649 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:15
|
1650 |
msgid "If for some reason your installation of WP Statistics is missing the database tables or other core items, this will re-execute the install process."
|
@@ -1681,7 +1681,7 @@ msgstr "Régi installálók WP Statistics ismétlődő bejegyzések a látogató
|
|
1681 |
|
1682 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:47
|
1683 |
msgid "Congratulations, your installation is already up to date, nothing to do."
|
1684 |
-
msgstr "Gratulálunk a
|
1685 |
|
1686 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:7
|
1687 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:147
|
@@ -1716,7 +1716,7 @@ msgstr "A kimeti fájl típúsának kiválasztása."
|
|
1716 |
|
1717 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:47
|
1718 |
msgid "Include Header Row"
|
1719 |
-
msgstr "
|
1720 |
|
1721 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:52
|
1722 |
msgid "Include a header row as the first line of the exported file."
|
@@ -1728,7 +1728,7 @@ msgstr "Indítás most!"
|
|
1728 |
|
1729 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:15
|
1730 |
msgid "Historical Values"
|
1731 |
-
msgstr ""
|
1732 |
|
1733 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:20
|
1734 |
msgid "Note: As you have just purged the database you must reload this page for these numbers to be correct."
|
@@ -1752,14 +1752,14 @@ msgstr ""
|
|
1752 |
|
1753 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:48
|
1754 |
msgid "Update now!"
|
1755 |
-
msgstr ""
|
1756 |
|
1757 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:10
|
1758 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:37
|
1759 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:63
|
1760 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:91
|
1761 |
msgid "Are you sure?"
|
1762 |
-
msgstr "Biztos?"
|
1763 |
|
1764 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:119
|
1765 |
msgid "Data"
|
@@ -1834,7 +1834,7 @@ msgstr ""
|
|
1834 |
|
1835 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:38
|
1836 |
msgid "Memory usage in the overview page"
|
1837 |
-
msgstr ""
|
1838 |
|
1839 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:44
|
1840 |
msgid "PHP Memory Limit"
|
@@ -1955,7 +1955,7 @@ msgstr ", létre "
|
|
1955 |
|
1956 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:208
|
1957 |
msgid "The file size and date of the GeoIP database."
|
1958 |
-
msgstr "A
|
1959 |
|
1960 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:214
|
1961 |
msgid "browscap.ini File"
|
@@ -2003,19 +2003,19 @@ msgstr "Az ügyfél felhasználói ügynök karakterlánca."
|
|
2003 |
|
2004 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:278
|
2005 |
msgid "Browser"
|
2006 |
-
msgstr ""
|
2007 |
|
2008 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:285
|
2009 |
msgid "The detected client browser."
|
2010 |
-
msgstr ""
|
2011 |
|
2012 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:296
|
2013 |
msgid "The detected client browser version."
|
2014 |
-
msgstr ""
|
2015 |
|
2016 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:307
|
2017 |
msgid "The detected client platform."
|
2018 |
-
msgstr ""
|
2019 |
|
2020 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:4
|
2021 |
msgid "This will replace all IP addresses in the database with hash values and cannot be undo, are you sure?"
|
@@ -2069,7 +2069,7 @@ msgstr "Frissítések"
|
|
2069 |
|
2070 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:151
|
2071 |
msgid "Historical"
|
2072 |
-
msgstr ""
|
2073 |
|
2074 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:8
|
2075 |
msgid "WP Statistics V%s"
|
@@ -2081,27 +2081,27 @@ msgstr "Látogasson el hozzánk Online"
|
|
2081 |
|
2082 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:24
|
2083 |
msgid "Come visit our great new %s and keep up to date on the latest news about WP Statistics."
|
2084 |
-
msgstr "
|
2085 |
|
2086 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:24
|
2087 |
msgid "website"
|
2088 |
-
msgstr "
|
2089 |
|
2090 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:28
|
2091 |
msgid "Rate and Review at WordPress.org"
|
2092 |
-
msgstr "A WordPress.org értékelése és"
|
2093 |
|
2094 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:32
|
2095 |
msgid "Thanks for installing WP Statistics, we encourage you to submit a "
|
2096 |
-
msgstr "
|
2097 |
|
2098 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:32
|
2099 |
msgid "rating and review"
|
2100 |
-
msgstr "
|
2101 |
|
2102 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:32
|
2103 |
msgid "over at WordPress.org. Your feedback is greatly appreciated!"
|
2104 |
-
msgstr "
|
2105 |
|
2106 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:36
|
2107 |
msgid "Translations"
|
@@ -2109,7 +2109,7 @@ msgstr "Fordítások"
|
|
2109 |
|
2110 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:40
|
2111 |
msgid "WP Statistics supports internationalization and we encourage our users to submit translations, please visit our %s to see the current status and %s if you would like to help."
|
2112 |
-
msgstr "WP Statistics támogatja a honosítást és bátorítjuk felhasználóinkat, hogy
|
2113 |
|
2114 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:40
|
2115 |
msgid "translation collaboration site"
|
@@ -2117,7 +2117,7 @@ msgstr "fordítási együttműködés webhely"
|
|
2117 |
|
2118 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:40
|
2119 |
msgid "drop us a line"
|
2120 |
-
msgstr "
|
2121 |
|
2122 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:44
|
2123 |
msgid "Support"
|
@@ -2125,16 +2125,16 @@ msgstr "Támogatás"
|
|
2125 |
|
2126 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:49
|
2127 |
msgid "We're sorry you're having problem with WP Statistics and we're happy to help out. Here are a few things to do before contacting us:"
|
2128 |
-
msgstr "
|
2129 |
|
2130 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:52
|
2131 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:53
|
2132 |
msgid "Have you read the %s?"
|
2133 |
-
msgstr "
|
2134 |
|
2135 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:52
|
2136 |
msgid "FAQs"
|
2137 |
-
msgstr "Gyakran
|
2138 |
|
2139 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:53
|
2140 |
msgid "manual"
|
@@ -2142,7 +2142,7 @@ msgstr "kézikönyv"
|
|
2142 |
|
2143 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:54
|
2144 |
msgid "Have you search the %s for a similar issue?"
|
2145 |
-
msgstr "
|
2146 |
|
2147 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:54
|
2148 |
msgid "support forum"
|
@@ -2150,7 +2150,7 @@ msgstr "Fórum"
|
|
2150 |
|
2151 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:55
|
2152 |
msgid "Have you search the Internet for any error messages you are receiving?"
|
2153 |
-
msgstr "
|
2154 |
|
2155 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:56
|
2156 |
msgid "Make sure you have access to your PHP error logs."
|
@@ -2158,55 +2158,55 @@ msgstr ""
|
|
2158 |
|
2159 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:59
|
2160 |
msgid "And a few things to double-check:"
|
2161 |
-
msgstr "
|
2162 |
|
2163 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:62
|
2164 |
msgid "How's your memory_limit in php.ini?"
|
2165 |
-
msgstr "
|
2166 |
|
2167 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:63
|
2168 |
msgid "Have you tried disabling any other plugins you may have installed?"
|
2169 |
-
msgstr "
|
2170 |
|
2171 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:64
|
2172 |
msgid "Have you tried using the default WordPress theme?"
|
2173 |
-
msgstr "
|
2174 |
|
2175 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:65
|
2176 |
msgid "Have you double checked the plugin settings?"
|
2177 |
-
msgstr "
|
2178 |
|
2179 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:66
|
2180 |
msgid "Do you have all the required PHP extensions installed?"
|
2181 |
-
msgstr "
|
2182 |
|
2183 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:67
|
2184 |
msgid "Are you getting a blank or incomplete page displayed in your browser? Did you view the source for the page and check for any fatal errors?"
|
2185 |
-
msgstr "
|
2186 |
|
2187 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:68
|
2188 |
msgid "Have you checked your PHP and web server error logs?"
|
2189 |
-
msgstr "
|
2190 |
|
2191 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:71
|
2192 |
msgid "Still not having any luck?"
|
2193 |
-
msgstr "Még mindig
|
2194 |
|
2195 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:71
|
2196 |
msgid "Then please open a new thread on the %s and we'll respond as soon as possible."
|
2197 |
-
msgstr "
|
2198 |
|
2199 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:71
|
2200 |
msgid "WordPress.org support forum"
|
2201 |
-
msgstr "WordPress.org
|
2202 |
|
2203 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:75
|
2204 |
msgid "Alternatively %s support is available as well."
|
2205 |
-
msgstr "Alternatív
|
2206 |
|
2207 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:75
|
2208 |
msgid "Farsi"
|
2209 |
-
msgstr "
|
2210 |
|
2211 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:21
|
2212 |
msgid "WP Statistics Honey Pot Page"
|
@@ -2277,7 +2277,7 @@ msgstr "Zárja ki a felhasználói szerepkörök"
|
|
2277 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:254
|
2278 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:261
|
2279 |
msgid "Exclude"
|
2280 |
-
msgstr "
|
2281 |
|
2282 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:134
|
2283 |
msgid "Exclude %s role from data collection."
|
@@ -2309,7 +2309,7 @@ msgstr "Erő a robot lista alaphelyzetbe kell állítani az alapértelmezett WP
|
|
2309 |
|
2310 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:171
|
2311 |
msgid "Robot visit threshold"
|
2312 |
-
msgstr ""
|
2313 |
|
2314 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:174
|
2315 |
msgid "Treat visitors with more than this number of visits per day as robots. 0 = disabled."
|
@@ -2317,7 +2317,7 @@ msgstr ""
|
|
2317 |
|
2318 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:179
|
2319 |
msgid "Excluded IP address list"
|
2320 |
-
msgstr "
|
2321 |
|
2322 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:182
|
2323 |
msgid "A list of IP addresses and subnet masks (one per line) to exclude from statistics collection (both 192.168.0.0/24 and 192.168.0.0/255.255.255.0 formats are accepted). To specify an IP address only, use a subnet value of 32 or 255.255.255.255."
|
@@ -2357,31 +2357,31 @@ msgstr ""
|
|
2357 |
|
2358 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:207
|
2359 |
msgid "GeoIP Exclusions"
|
2360 |
-
msgstr ""
|
2361 |
|
2362 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:211
|
2363 |
msgid "Excluded countries list"
|
2364 |
-
msgstr ""
|
2365 |
|
2366 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:214
|
2367 |
msgid "A list of country codes (one per line, two letters each) to exclude from statistics collection. Use \"000\" (three zeros) to exclude unknown countries."
|
2368 |
-
msgstr ""
|
2369 |
|
2370 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:219
|
2371 |
msgid "Included countries list"
|
2372 |
-
msgstr ""
|
2373 |
|
2374 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:222
|
2375 |
msgid "A list of country codes (one per line, two letters each) to include in statistics collection, if this list is not empty, only visitors from the included countries will be recorded. Use \"000\" (three zeros) to exclude unknown countries."
|
2376 |
-
msgstr ""
|
2377 |
|
2378 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:227
|
2379 |
msgid "Host Exclusions"
|
2380 |
-
msgstr ""
|
2381 |
|
2382 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:231
|
2383 |
msgid "Excluded hosts list"
|
2384 |
-
msgstr ""
|
2385 |
|
2386 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:234
|
2387 |
msgid "A list of fully qualified host names (ie. server.example.com, one per line) to exclude from statistics collection."
|
@@ -2397,27 +2397,27 @@ msgstr "Webhely URL-kivételek"
|
|
2397 |
|
2398 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:245
|
2399 |
msgid "Excluded login page"
|
2400 |
-
msgstr "
|
2401 |
|
2402 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:248
|
2403 |
msgid "Exclude the login page for registering as a hit."
|
2404 |
-
msgstr "
|
2405 |
|
2406 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:252
|
2407 |
msgid "Excluded admin pages"
|
2408 |
-
msgstr "
|
2409 |
|
2410 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:255
|
2411 |
msgid "Exclude the admin pages for registering as a hit."
|
2412 |
-
msgstr "Zárja ki az admin oldalak
|
2413 |
|
2414 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:259
|
2415 |
msgid "Excluded RSS feeds"
|
2416 |
-
msgstr ""
|
2417 |
|
2418 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:262
|
2419 |
msgid "Exclude the RSS feeds for registering as a hit."
|
2420 |
-
msgstr ""
|
2421 |
|
2422 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:22
|
2423 |
msgid "browscap settings"
|
@@ -2457,11 +2457,11 @@ msgstr "browscap használat"
|
|
2457 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:147
|
2458 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:159
|
2459 |
msgid "Active"
|
2460 |
-
msgstr "
|
2461 |
|
2462 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:33
|
2463 |
msgid "The browscap database will be downloaded and used to detect robots."
|
2464 |
-
msgstr "Az browscap adatbázis lesz
|
2465 |
|
2466 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:39
|
2467 |
msgid "Update browscap Info"
|
@@ -2469,12 +2469,12 @@ msgstr "Frissítés browscap Info"
|
|
2469 |
|
2470 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:44
|
2471 |
msgid "Download browscap Database"
|
2472 |
-
msgstr "
|
2473 |
|
2474 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:45
|
2475 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:60
|
2476 |
msgid "Save changes on this page to download the update."
|
2477 |
-
msgstr "
|
2478 |
|
2479 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:51
|
2480 |
msgid "Schedule weekly update of browscap DB"
|
2 |
# This file is distributed under the same license as the WP Statistics package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2015-03-16 12:13:46+0000\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
|
13 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:330
|
14 |
msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
|
15 |
+
msgstr "Ne használja a beállított fordítást, helyette az angol legyen a WP Statisztika alapértelmezett nyelve (két oldal betöltése szükséges)"
|
16 |
|
17 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:324
|
18 |
msgid "Force English"
|
19 |
+
msgstr "Angol nyelv kényszerítése"
|
20 |
|
21 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:319
|
22 |
msgid "Languages"
|
23 |
+
msgstr "Nyelvek"
|
24 |
|
25 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:271
|
26 |
msgid "Note: this option will NOT handle url parameters (anything after the ?), only to the script name. Entries less than two characters will be ignored."
|
32 |
|
33 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:266
|
34 |
msgid "Excluded URLs list"
|
35 |
+
msgstr "Blokkolt URL-ek listája"
|
36 |
|
37 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
|
38 |
msgid "Excluded URL"
|
39 |
+
msgstr "Blokkolt URL"
|
40 |
|
41 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:58
|
42 |
msgid "Last 365 Days (Year)"
|
43 |
+
msgstr "Az utolsó 365 nap (év)"
|
44 |
|
45 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:52
|
46 |
msgid "Last 30 Days (Month)"
|
47 |
+
msgstr "Utolsó 30 nap (hónap)"
|
48 |
|
49 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:46
|
50 |
msgid "Last 7 Days (Week)"
|
51 |
+
msgstr "Utolsó 7 nap (hét)"
|
52 |
|
53 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:398
|
54 |
msgid "Yahoo!"
|
55 |
+
msgstr "Yahoo!"
|
56 |
|
57 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:399
|
58 |
msgid "Yandex"
|
59 |
+
msgstr "Yandex"
|
60 |
|
61 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:395
|
62 |
msgid "clearch.org"
|
63 |
+
msgstr "clearch.org"
|
64 |
|
65 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:396
|
66 |
msgid "DuckDuckGo"
|
67 |
+
msgstr "DuckDuckGo"
|
68 |
|
69 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:394
|
70 |
msgid "Bing"
|
71 |
+
msgstr "Bing"
|
72 |
|
73 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:393
|
74 |
msgid "Baidu"
|
75 |
+
msgstr "Baidu"
|
76 |
|
77 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:69
|
78 |
msgid "Hits in the last 20 days"
|
79 |
+
msgstr "Találatok az elmúlt 20 napban"
|
80 |
|
81 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
|
82 |
msgid "Feeds"
|
83 |
+
msgstr "Hírcsatornák"
|
84 |
|
85 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
|
86 |
msgid "User Role"
|
87 |
+
msgstr "Felhasználói szerepkör"
|
88 |
|
89 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
|
90 |
msgid "Login Page"
|
91 |
+
msgstr "Bejelentkező oldal"
|
92 |
|
93 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
|
94 |
msgid "Admin Page"
|
95 |
+
msgstr "Admin oldal"
|
96 |
|
97 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
|
98 |
msgid "Self Referral"
|
99 |
+
msgstr "Önhivatkozás"
|
100 |
|
101 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
|
102 |
msgid "IP Match"
|
103 |
+
msgstr "IP egyezés"
|
104 |
|
105 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
|
106 |
msgid "Robot"
|
107 |
+
msgstr "Robot"
|
108 |
|
109 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:100
|
110 |
msgid "Currently there are no users online in the site."
|
111 |
+
msgstr "Jelenleg nincs aktív felhasználó az oldalon."
|
112 |
|
113 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
|
114 |
msgid "Robot Threshold"
|
124 |
|
125 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
|
126 |
msgid "Hostname"
|
127 |
+
msgstr "Hostname"
|
128 |
|
129 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:93
|
130 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:133
|
150 |
|
151 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:111
|
152 |
msgid "Record all user"
|
153 |
+
msgstr "Rögzíti az összes felhasználó"
|
154 |
|
155 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:117
|
156 |
msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
|
157 |
+
msgstr "Figyelmen kívül hagyja a blokkolási beállításokat és rögzíti az összes online felhasználót (beleértve az önhivatkozásokat és robotokat). Csak hibaelhárításra érdemes használni."
|
158 |
|
159 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:155
|
160 |
msgid "Store entire user agent string"
|
233 |
|
234 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:276
|
235 |
msgid "Search Engines"
|
236 |
+
msgstr "Keresőmotorok"
|
237 |
|
238 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:281
|
239 |
msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
|
396 |
|
397 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:88
|
398 |
msgid "Pruning"
|
399 |
+
msgstr "Fametszés"
|
400 |
|
401 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:94
|
402 |
msgid "Send a report whenever the pruning of database is run."
|
404 |
|
405 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:100
|
406 |
msgid "Upgrade"
|
407 |
+
msgstr "Frissítés"
|
408 |
|
409 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:106
|
410 |
msgid "Send a report whenever the plugin is upgraded."
|
411 |
+
msgstr "Jelentést küld, ha a plugint frissítették."
|
412 |
|
413 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:111
|
414 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:116
|
422 |
|
423 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:153
|
424 |
msgid "Select how often to receive statistical report."
|
425 |
+
msgstr "Válaszd ki, hogy milyen gyakran kérsz statisztikai jelentést."
|
426 |
|
427 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:159
|
428 |
msgid "Send reports via"
|
438 |
|
439 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:170
|
440 |
msgid "Select delivery method for statistical report."
|
441 |
+
msgstr "Válassz ki egy kézbesítési módot a statisztikai jelentésekről."
|
442 |
|
443 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:173
|
444 |
msgid "Note: To send SMS text messages please install the %s plugin."
|
454 |
|
455 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:185
|
456 |
msgid "Enter the contents of the report."
|
457 |
+
msgstr "Írd be a jelentés tartalmát."
|
458 |
|
459 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:187
|
460 |
msgid "Any shortcode supported by your installation of WordPress, include all shortcodes for WP Statistics (see the admin manual for a list of codes available) are supported in the body of the message. Here are some examples:"
|
514 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:28
|
515 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:108
|
516 |
msgid "About"
|
517 |
+
msgstr "Rólunk"
|
518 |
|
519 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
520 |
msgid "Hits Statistical Chart"
|
530 |
|
531 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:73
|
532 |
msgid "Dashboard"
|
533 |
+
msgstr "Vezérlőpult"
|
534 |
|
535 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:77
|
536 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:97
|
537 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:117
|
538 |
msgid "The following items are global to all users."
|
539 |
+
msgstr "A következő elemek minden felhasználó számára globálisak."
|
540 |
|
541 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:82
|
542 |
msgid "Disable dashboard widgets"
|
543 |
+
msgstr "Vezérlőpult widgetek kikapcsolása"
|
544 |
|
545 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:88
|
546 |
msgid "Disable the dashboard widgets."
|
547 |
+
msgstr " A vezérlőpult widgetek kikapcsolása."
|
548 |
|
549 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:93
|
550 |
msgid "Page/Post Editor"
|
551 |
+
msgstr "Oldal/ Bejegyzés szerkesztő"
|
552 |
|
553 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:102
|
554 |
msgid "Disable post/page editor widget"
|
555 |
+
msgstr "Bejegyzés/ oldal szerkesztő widget kikapcsolása"
|
556 |
|
557 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:108
|
558 |
msgid "Disable the page/post editor widget."
|
605 |
|
606 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:180
|
607 |
msgid "Slot"
|
608 |
+
msgstr "Cella"
|
609 |
|
610 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:184
|
611 |
msgid "Column A"
|
612 |
+
msgstr "Oszlop A"
|
613 |
|
614 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:188
|
615 |
msgid "Column B"
|
616 |
+
msgstr "Oszlop B"
|
617 |
|
618 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:194
|
619 |
msgid "Slot 1"
|
620 |
+
msgstr "Cella 1"
|
621 |
|
622 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:224
|
623 |
msgid "Slot 2"
|
624 |
+
msgstr "Cella 2"
|
625 |
|
626 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:254
|
627 |
msgid "Slot 3"
|
628 |
+
msgstr "Cella 3"
|
629 |
|
630 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:284
|
631 |
msgid "Slot 4"
|
632 |
+
msgstr "Cella 4"
|
633 |
|
634 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:314
|
635 |
msgid "Slot 5"
|
636 |
+
msgstr "Cella 5"
|
637 |
|
638 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:344
|
639 |
msgid "Slot 6"
|
640 |
+
msgstr "Cella 6"
|
641 |
|
642 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:348
|
643 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:370
|
646 |
|
647 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:366
|
648 |
msgid "Slot 7"
|
649 |
+
msgstr "Cella 7"
|
650 |
|
651 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:15
|
652 |
msgid "WP Statisitcs Removal"
|
666 |
|
667 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:34
|
668 |
msgid "Remove"
|
669 |
+
msgstr "Eltávolít"
|
670 |
|
671 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:35
|
672 |
msgid "Remove data and settings, this action cannot be undone."
|
678 |
|
679 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:101
|
680 |
msgid "Notifications"
|
681 |
+
msgstr "Értesítések"
|
682 |
|
683 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:102
|
684 |
msgid "Dashboard/Overview"
|
685 |
+
msgstr "Vezérlőpult/ áttekintés"
|
686 |
|
687 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:103
|
688 |
msgid "Access/Exclusions"
|
698 |
|
699 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:107
|
700 |
msgid "Removal"
|
701 |
+
msgstr "Eltávolítás"
|
702 |
|
703 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:150
|
704 |
msgid "Update"
|
732 |
|
733 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:15
|
734 |
msgid "Show site stats in sidebar."
|
735 |
+
msgstr "Megjeleníti az oldal statisztikáit a sidebaron."
|
736 |
|
737 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:73
|
738 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:260
|
834 |
|
835 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:36
|
836 |
msgid "Your current PHP version is"
|
837 |
+
msgstr "Az aktuális PHP verzió"
|
838 |
|
839 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:51
|
840 |
msgid "WP Statistics has been removed, please disable and delete it."
|
841 |
+
msgstr "WP Statistics törölve lett, kérjük, kapcsolja ki és törölje."
|
842 |
|
843 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
|
844 |
msgid "WP Statistics"
|
856 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:104
|
857 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:107
|
858 |
msgid "setting page"
|
859 |
+
msgstr "beállítás oldal"
|
860 |
|
861 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:104
|
862 |
msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
|
872 |
|
873 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:110
|
874 |
msgid "Setting page > GeoIP"
|
875 |
+
msgstr "Beállítás oldal > GeoIP"
|
876 |
|
877 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:195
|
878 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:307
|
882 |
|
883 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:207
|
884 |
msgid "Click here to visit the plugin on WordPress.org"
|
885 |
+
msgstr "Kattintson ide a bővítmény megtekintéséhez a WordPress.org-on"
|
886 |
|
887 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:207
|
888 |
msgid "Visit WordPress.org page"
|
890 |
|
891 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:210
|
892 |
msgid "Click here to rate and review this plugin on WordPress.org"
|
893 |
+
msgstr "Kattintson ide a bővítményértékeléséhez és áttekintéséhez a WordPress.org-on."
|
894 |
|
895 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:210
|
896 |
msgid "Rate this plugin"
|
897 |
+
msgstr "Bővítmény értékelése"
|
898 |
|
899 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:254
|
900 |
msgid "WP Statistics - Hits"
|
909 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:298
|
910 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:371
|
911 |
msgid "Online"
|
912 |
+
msgstr "Elérhető"
|
913 |
|
914 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:300
|
915 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:373
|
916 |
msgid "Referrers"
|
917 |
+
msgstr "Hivatkozók"
|
918 |
|
919 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:301
|
920 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:374
|
921 |
msgid "Searches"
|
922 |
+
msgstr "Keresések"
|
923 |
|
924 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:302
|
925 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:375
|
926 |
msgid "Search Words"
|
927 |
+
msgstr "Kereső szavak"
|
928 |
|
929 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:303
|
930 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:376
|
931 |
msgid "Top Visitors Today"
|
932 |
+
msgstr "Top mai látogatók"
|
933 |
|
934 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:306
|
935 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:378
|
947 |
|
948 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:358
|
949 |
msgid "Options"
|
950 |
+
msgstr "Opciók"
|
951 |
|
952 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:475
|
953 |
msgid "Today visitor"
|
959 |
|
960 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:487
|
961 |
msgid "Yesterday visitor"
|
962 |
+
msgstr "Tegnapi látogató"
|
963 |
|
964 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:499
|
965 |
msgid "View Stats"
|
989 |
|
990 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-install.php:250
|
991 |
msgid "WP Statistics %s installed on"
|
992 |
+
msgstr "WP Statisztika %s telepítve a(z)"
|
993 |
|
994 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:34
|
995 |
msgid "Error downloading GeoIP database from: %s - %s"
|
1021 |
|
1022 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:273
|
1023 |
msgid "browscap database updated failed! Cache file too large, reverting to previous browscap.ini."
|
1024 |
+
msgstr "browscap adatbázis frissítve nem sikerült! A cache fájl túl nagy, visszaállítjuk az előző browscap.ini-re."
|
1025 |
|
1026 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:281
|
1027 |
msgid "browscap database updated failed! New browscap.ini is mis-identifing user agents as crawlers, reverting to previous browscap.ini."
|
1028 |
+
msgstr "browscap adatbázis frissítése nem sikerült! Új browscap.ini a mis-identifing felhasználói alkalmazások, mint bejárók, visszatérve az előző browscap.ini."
|
1029 |
|
1030 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:303
|
1031 |
msgid "browscap already at current version!"
|
1033 |
|
1034 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:316
|
1035 |
msgid "Browscap.ini update on"
|
1036 |
+
msgstr "Browscap.ini frissítés"
|
1037 |
|
1038 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:55
|
1039 |
msgid "Quick Stats"
|
1040 |
+
msgstr "Gyors statisztikák"
|
1041 |
|
1042 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:56
|
1043 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:54
|
1052 |
|
1053 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:58
|
1054 |
msgid "Today's Visitor Map"
|
1055 |
+
msgstr "Mai látogatói térkép"
|
1056 |
|
1057 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:59
|
1058 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:46
|
1103 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:8
|
1104 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:35
|
1105 |
msgid "Top 10 Visitors Today"
|
1106 |
+
msgstr "Mai top 10 látogató"
|
1107 |
|
1108 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:97
|
1109 |
msgid "Please reload the dashboard to display the content of this widget."
|
1110 |
+
msgstr "Kérjük, frissítse be újra a vezérlőpultot, hogy megjelenjen a tartalom ezen widgeten."
|
1111 |
|
1112 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:138
|
1113 |
msgid "WP Statistics Overview"
|
1114 |
+
msgstr "WP Statisztikák áttekintése"
|
1115 |
|
1116 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:63
|
1117 |
msgid "This post is not yet published."
|
1118 |
+
msgstr "Ezt a bejegyzést még nem tették közzé."
|
1119 |
|
1120 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:24
|
1121 |
msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
|
1280 |
|
1281 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:99
|
1282 |
msgid "Excluded hits in the last"
|
1283 |
+
msgstr "Kizárt találatok az utolsó"
|
1284 |
|
1285 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:99
|
1286 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:60
|
1323 |
|
1324 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:64
|
1325 |
msgid "Latest Search Word Statistics"
|
1326 |
+
msgstr "Legutolsó keresési szavak statisztikája"
|
1327 |
|
1328 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:99
|
1329 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:98
|
1333 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:30
|
1334 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:32
|
1335 |
msgid "#hash#"
|
1336 |
+
msgstr "#hash#"
|
1337 |
|
1338 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:104
|
1339 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:103
|
1491 |
|
1492 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-visitors.php:12
|
1493 |
msgid "Top 100 Visitors Today"
|
1494 |
+
msgstr "Top 100 mai látogató"
|
1495 |
|
1496 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:8
|
1497 |
msgid "About WP Statistics Version %s"
|
1503 |
|
1504 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:26
|
1505 |
msgid "Rate and Review"
|
1506 |
+
msgstr "Értékelés és megtekintés"
|
1507 |
|
1508 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:30
|
1509 |
msgid "More Information"
|
1512 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:39
|
1513 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:12
|
1514 |
msgid "This product includes GeoLite2 data created by MaxMind, available from %s."
|
1515 |
+
msgstr "Ez a termék tartalmaz GeoLite2 adatokat, amit a MaxMind készített, elérhető: %s."
|
1516 |
|
1517 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:7
|
1518 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:11
|
1533 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:9
|
1534 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:9
|
1535 |
msgid "Today Visitors Map"
|
1536 |
+
msgstr "Mai látogatók térképe"
|
1537 |
|
1538 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:31
|
1539 |
msgid "Address"
|
1541 |
|
1542 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:23
|
1543 |
msgid "User(s) Online"
|
1544 |
+
msgstr "Online felhasználók"
|
1545 |
|
1546 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:34
|
1547 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:79
|
1591 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:35
|
1592 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:291
|
1593 |
msgid "Version"
|
1594 |
+
msgstr "Verzió"
|
1595 |
|
1596 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:5
|
1597 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:5
|
1624 |
|
1625 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:17
|
1626 |
msgid "No platform data found to remove!"
|
1627 |
+
msgstr "Nincs eltávolítható platform adat!"
|
1628 |
|
1629 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:53
|
1630 |
msgid "%s table data deleted successfully."
|
1644 |
|
1645 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:14
|
1646 |
msgid "Install Now!"
|
1647 |
+
msgstr "Telepítés most!"
|
1648 |
|
1649 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:15
|
1650 |
msgid "If for some reason your installation of WP Statistics is missing the database tables or other core items, this will re-execute the install process."
|
1681 |
|
1682 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:47
|
1683 |
msgid "Congratulations, your installation is already up to date, nothing to do."
|
1684 |
+
msgstr "Gratulálunk a telepítés befejeződött, nincs további teendője."
|
1685 |
|
1686 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:7
|
1687 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:147
|
1716 |
|
1717 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:47
|
1718 |
msgid "Include Header Row"
|
1719 |
+
msgstr "Fejléc sor beleérve"
|
1720 |
|
1721 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:52
|
1722 |
msgid "Include a header row as the first line of the exported file."
|
1728 |
|
1729 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:15
|
1730 |
msgid "Historical Values"
|
1731 |
+
msgstr "Történeti értékek"
|
1732 |
|
1733 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:20
|
1734 |
msgid "Note: As you have just purged the database you must reload this page for these numbers to be correct."
|
1752 |
|
1753 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:48
|
1754 |
msgid "Update now!"
|
1755 |
+
msgstr "Frissítse most!"
|
1756 |
|
1757 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:10
|
1758 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:37
|
1759 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:63
|
1760 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:91
|
1761 |
msgid "Are you sure?"
|
1762 |
+
msgstr "Biztos benne?"
|
1763 |
|
1764 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:119
|
1765 |
msgid "Data"
|
1834 |
|
1835 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:38
|
1836 |
msgid "Memory usage in the overview page"
|
1837 |
+
msgstr "Memóriahasználat az áttekintő oldalon"
|
1838 |
|
1839 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:44
|
1840 |
msgid "PHP Memory Limit"
|
1955 |
|
1956 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:208
|
1957 |
msgid "The file size and date of the GeoIP database."
|
1958 |
+
msgstr "A fájl méreet és a dátuma a GeoIP adatbázisnak."
|
1959 |
|
1960 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:214
|
1961 |
msgid "browscap.ini File"
|
2003 |
|
2004 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:278
|
2005 |
msgid "Browser"
|
2006 |
+
msgstr "Böngésző"
|
2007 |
|
2008 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:285
|
2009 |
msgid "The detected client browser."
|
2010 |
+
msgstr "Az észlelt kliens böngésző."
|
2011 |
|
2012 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:296
|
2013 |
msgid "The detected client browser version."
|
2014 |
+
msgstr "Az észlelt kliens böngésző verzió."
|
2015 |
|
2016 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:307
|
2017 |
msgid "The detected client platform."
|
2018 |
+
msgstr "Az észlelt kliens platform."
|
2019 |
|
2020 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:4
|
2021 |
msgid "This will replace all IP addresses in the database with hash values and cannot be undo, are you sure?"
|
2069 |
|
2070 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:151
|
2071 |
msgid "Historical"
|
2072 |
+
msgstr "Történeti"
|
2073 |
|
2074 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:8
|
2075 |
msgid "WP Statistics V%s"
|
2081 |
|
2082 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:24
|
2083 |
msgid "Come visit our great new %s and keep up to date on the latest news about WP Statistics."
|
2084 |
+
msgstr "Látogasson el a mi új %s-unkra, és legyen naprakész a WP Statistics legújabb híreiről."
|
2085 |
|
2086 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:24
|
2087 |
msgid "website"
|
2088 |
+
msgstr "honlap"
|
2089 |
|
2090 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:28
|
2091 |
msgid "Rate and Review at WordPress.org"
|
2092 |
+
msgstr "A WordPress.org értékelése és megtekintése"
|
2093 |
|
2094 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:32
|
2095 |
msgid "Thanks for installing WP Statistics, we encourage you to submit a "
|
2096 |
+
msgstr "Köszönjük, hogy telepítette a WP Statisztikákat, azt javasoljuk, hogy küldjön be egy "
|
2097 |
|
2098 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:32
|
2099 |
msgid "rating and review"
|
2100 |
+
msgstr "értékelést és áttekintést"
|
2101 |
|
2102 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:32
|
2103 |
msgid "over at WordPress.org. Your feedback is greatly appreciated!"
|
2104 |
+
msgstr "a WordPress.org-on. Az Ön visszajelzését előre is köszönjük!"
|
2105 |
|
2106 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:36
|
2107 |
msgid "Translations"
|
2109 |
|
2110 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:40
|
2111 |
msgid "WP Statistics supports internationalization and we encourage our users to submit translations, please visit our %s to see the current status and %s if you would like to help."
|
2112 |
+
msgstr "WP Statistics támogatja a honosítást és bátorítjuk felhasználóinkat, hogy nyújtsanak be fordítási javaslatokat. Kérjük, látogasson el a jelenlegi a %s és %s, ha szeretnél segítseni nekünk."
|
2113 |
|
2114 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:40
|
2115 |
msgid "translation collaboration site"
|
2117 |
|
2118 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:40
|
2119 |
msgid "drop us a line"
|
2120 |
+
msgstr "írjon egy sort nekünk"
|
2121 |
|
2122 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:44
|
2123 |
msgid "Support"
|
2125 |
|
2126 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:49
|
2127 |
msgid "We're sorry you're having problem with WP Statistics and we're happy to help out. Here are a few things to do before contacting us:"
|
2128 |
+
msgstr "Sajnáljuk, hogy problémába ütközött a WP Statisticssal, és örülünk, hogy segíthetünk. Itt van egy pár dolgot, mielőtt kapcsolatba lépne velünk:"
|
2129 |
|
2130 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:52
|
2131 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:53
|
2132 |
msgid "Have you read the %s?"
|
2133 |
+
msgstr "Olvasd el ezt: %s?"
|
2134 |
|
2135 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:52
|
2136 |
msgid "FAQs"
|
2137 |
+
msgstr "Gyakran Ismételt Kérdések"
|
2138 |
|
2139 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:53
|
2140 |
msgid "manual"
|
2142 |
|
2143 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:54
|
2144 |
msgid "Have you search the %s for a similar issue?"
|
2145 |
+
msgstr "Hasonló kérdéseket a problémával kapcsolatban a %s-on is kereshetsz."
|
2146 |
|
2147 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:54
|
2148 |
msgid "support forum"
|
2150 |
|
2151 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:55
|
2152 |
msgid "Have you search the Internet for any error messages you are receiving?"
|
2153 |
+
msgstr "Keress az interneten, ha valamilyen hibaüzenetet kapsz."
|
2154 |
|
2155 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:56
|
2156 |
msgid "Make sure you have access to your PHP error logs."
|
2158 |
|
2159 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:59
|
2160 |
msgid "And a few things to double-check:"
|
2161 |
+
msgstr "Az alábbi pár dolgot ellenőrizze:"
|
2162 |
|
2163 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:62
|
2164 |
msgid "How's your memory_limit in php.ini?"
|
2165 |
+
msgstr "Mennyi a memory_limit a php.ini fájlban?"
|
2166 |
|
2167 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:63
|
2168 |
msgid "Have you tried disabling any other plugins you may have installed?"
|
2169 |
+
msgstr "Próbálta már kikapcsolni bármelyik másik bővítményt, amit telepített?"
|
2170 |
|
2171 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:64
|
2172 |
msgid "Have you tried using the default WordPress theme?"
|
2173 |
+
msgstr "Próbálta már az alapértelmezett WordPress témát beállítani?"
|
2174 |
|
2175 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:65
|
2176 |
msgid "Have you double checked the plugin settings?"
|
2177 |
+
msgstr "Kétszer is ellenőrozte a bővítmény beállításait?"
|
2178 |
|
2179 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:66
|
2180 |
msgid "Do you have all the required PHP extensions installed?"
|
2181 |
+
msgstr "Minden szükséges PHP kiterjesztést telepített?"
|
2182 |
|
2183 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:67
|
2184 |
msgid "Are you getting a blank or incomplete page displayed in your browser? Did you view the source for the page and check for any fatal errors?"
|
2185 |
+
msgstr "Egy üres vagy hiányosan kitöltött oldal jelenik meg a böngészőjében? Megnézte az oldal forrását és ellenőrizze a végzetes hibákat?"
|
2186 |
|
2187 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:68
|
2188 |
msgid "Have you checked your PHP and web server error logs?"
|
2189 |
+
msgstr "Ellenőrizte a PHP és a web szerver hiba naplóját?"
|
2190 |
|
2191 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:71
|
2192 |
msgid "Still not having any luck?"
|
2193 |
+
msgstr "Még mindig nincs megoldva?"
|
2194 |
|
2195 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:71
|
2196 |
msgid "Then please open a new thread on the %s and we'll respond as soon as possible."
|
2197 |
+
msgstr "Kérjük nyisson egy új beszélgetést itt: %s, és mi válaszolni fogunk amilyen hamar csak tudunk."
|
2198 |
|
2199 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:71
|
2200 |
msgid "WordPress.org support forum"
|
2201 |
+
msgstr "WordPress.org fórum"
|
2202 |
|
2203 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:75
|
2204 |
msgid "Alternatively %s support is available as well."
|
2205 |
+
msgstr "Alternatív %s támogatás is rendelkezésre áll."
|
2206 |
|
2207 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:75
|
2208 |
msgid "Farsi"
|
2209 |
+
msgstr "Farsi"
|
2210 |
|
2211 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:21
|
2212 |
msgid "WP Statistics Honey Pot Page"
|
2277 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:254
|
2278 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:261
|
2279 |
msgid "Exclude"
|
2280 |
+
msgstr "Blokkolás"
|
2281 |
|
2282 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:134
|
2283 |
msgid "Exclude %s role from data collection."
|
2309 |
|
2310 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:171
|
2311 |
msgid "Robot visit threshold"
|
2312 |
+
msgstr "Robot látogatási küszöb"
|
2313 |
|
2314 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:174
|
2315 |
msgid "Treat visitors with more than this number of visits per day as robots. 0 = disabled."
|
2317 |
|
2318 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:179
|
2319 |
msgid "Excluded IP address list"
|
2320 |
+
msgstr "Blokkolt IP-cím lista"
|
2321 |
|
2322 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:182
|
2323 |
msgid "A list of IP addresses and subnet masks (one per line) to exclude from statistics collection (both 192.168.0.0/24 and 192.168.0.0/255.255.255.0 formats are accepted). To specify an IP address only, use a subnet value of 32 or 255.255.255.255."
|
2357 |
|
2358 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:207
|
2359 |
msgid "GeoIP Exclusions"
|
2360 |
+
msgstr "GeoIP blokkolások"
|
2361 |
|
2362 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:211
|
2363 |
msgid "Excluded countries list"
|
2364 |
+
msgstr "Blokkolt országok listája"
|
2365 |
|
2366 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:214
|
2367 |
msgid "A list of country codes (one per line, two letters each) to exclude from statistics collection. Use \"000\" (three zeros) to exclude unknown countries."
|
2368 |
+
msgstr "Blokkolt országkódok listája (soronként csak két betű) a statisztikák adatgyűjtéshez. Használd a "000" (három nullát) hogy az ismeretlen országokat blokkold."
|
2369 |
|
2370 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:219
|
2371 |
msgid "Included countries list"
|
2372 |
+
msgstr "Beleszámított országok listája"
|
2373 |
|
2374 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:222
|
2375 |
msgid "A list of country codes (one per line, two letters each) to include in statistics collection, if this list is not empty, only visitors from the included countries will be recorded. Use \"000\" (three zeros) to exclude unknown countries."
|
2376 |
+
msgstr "Engedélyezett országkódok listája (soronként csak két betű) a statisztikai adatgyűjtéshez, ha ez a lista nem üres, csak az engedélyezett országok látogatói kerülnek rögzítésre. Használd a "000" (három nullát), hogy az ismeretlen országokat letiltsd."
|
2377 |
|
2378 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:227
|
2379 |
msgid "Host Exclusions"
|
2380 |
+
msgstr "Host blokkolások"
|
2381 |
|
2382 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:231
|
2383 |
msgid "Excluded hosts list"
|
2384 |
+
msgstr "Blokkolt hostok listája"
|
2385 |
|
2386 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:234
|
2387 |
msgid "A list of fully qualified host names (ie. server.example.com, one per line) to exclude from statistics collection."
|
2397 |
|
2398 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:245
|
2399 |
msgid "Excluded login page"
|
2400 |
+
msgstr "Blokkolt login oldal"
|
2401 |
|
2402 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:248
|
2403 |
msgid "Exclude the login page for registering as a hit."
|
2404 |
+
msgstr "Blokkolja a login oldal találatként való regisztrálását."
|
2405 |
|
2406 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:252
|
2407 |
msgid "Excluded admin pages"
|
2408 |
+
msgstr "Blokkolt admin oldalak"
|
2409 |
|
2410 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:255
|
2411 |
msgid "Exclude the admin pages for registering as a hit."
|
2412 |
+
msgstr "Zárja ki az admin oldalak találatként való regisztrálását."
|
2413 |
|
2414 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:259
|
2415 |
msgid "Excluded RSS feeds"
|
2416 |
+
msgstr "Blokkolt RSS hírcsatornák"
|
2417 |
|
2418 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:262
|
2419 |
msgid "Exclude the RSS feeds for registering as a hit."
|
2420 |
+
msgstr "Blokkolja az RSS csatornák találatként való regisztrálását. "
|
2421 |
|
2422 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:22
|
2423 |
msgid "browscap settings"
|
2457 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:147
|
2458 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:159
|
2459 |
msgid "Active"
|
2460 |
+
msgstr "Aktív"
|
2461 |
|
2462 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:33
|
2463 |
msgid "The browscap database will be downloaded and used to detect robots."
|
2464 |
+
msgstr "Az browscap adatbázis le lesz töltötve és hozzászokott kinyomoz robotok."
|
2465 |
|
2466 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:39
|
2467 |
msgid "Update browscap Info"
|
2469 |
|
2470 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:44
|
2471 |
msgid "Download browscap Database"
|
2472 |
+
msgstr "Letölti a browscap adatbázist"
|
2473 |
|
2474 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:45
|
2475 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:60
|
2476 |
msgid "Save changes on this page to download the update."
|
2477 |
+
msgstr " Kérjük mentse el módosításait ezen az oldalon a frissítéshez."
|
2478 |
|
2479 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:51
|
2480 |
msgid "Schedule weekly update of browscap DB"
|
languages/wp_statistics-nl_NL.mo
CHANGED
Binary file
|
languages/wp_statistics-nl_NL.po
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
# This file is distributed under the same license as the WP Statistics package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"PO-Revision-Date: 2015-03-
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -12,15 +12,15 @@ msgstr ""
|
|
12 |
|
13 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:330
|
14 |
msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
|
15 |
-
msgstr ""
|
16 |
|
17 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:324
|
18 |
msgid "Force English"
|
19 |
-
msgstr ""
|
20 |
|
21 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:319
|
22 |
msgid "Languages"
|
23 |
-
msgstr ""
|
24 |
|
25 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:271
|
26 |
msgid "Note: this option will NOT handle url parameters (anything after the ?), only to the script name. Entries less than two characters will be ignored."
|
@@ -108,7 +108,7 @@ msgstr "Robot"
|
|
108 |
|
109 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:100
|
110 |
msgid "Currently there are no users online in the site."
|
111 |
-
msgstr "Er zijn momenteel geen
|
112 |
|
113 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
|
114 |
msgid "Robot Threshold"
|
@@ -138,7 +138,7 @@ msgstr "In- of uitschakelen van deze functie"
|
|
138 |
|
139 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:99
|
140 |
msgid "Check for online users every"
|
141 |
-
msgstr "Controleer voor online
|
142 |
|
143 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:104
|
144 |
msgid "Second"
|
@@ -146,15 +146,15 @@ msgstr "Seconden"
|
|
146 |
|
147 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:105
|
148 |
msgid "Time for the check accurate online user in the site. Now: %s Second"
|
149 |
-
msgstr "Tijd voor nauwkeurige controle
|
150 |
|
151 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:111
|
152 |
msgid "Record all user"
|
153 |
-
msgstr "Registreer alle
|
154 |
|
155 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:117
|
156 |
msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
|
157 |
-
msgstr "Dit negeert de uitsluitingsinstellingen en registreert alle
|
158 |
|
159 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:155
|
160 |
msgid "Store entire user agent string"
|
@@ -237,7 +237,7 @@ msgstr "Zoekmachines"
|
|
237 |
|
238 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:281
|
239 |
msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
|
240 |
-
msgstr "Uitschakelen van alle zoekmachines is niet toegestaan
|
241 |
|
242 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:296
|
243 |
msgid "disable"
|
@@ -536,7 +536,7 @@ msgstr "Dashboard"
|
|
536 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:97
|
537 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:117
|
538 |
msgid "The following items are global to all users."
|
539 |
-
msgstr "De volgende items gelden voor alle
|
540 |
|
541 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:82
|
542 |
msgid "Disable dashboard widgets"
|
@@ -781,7 +781,7 @@ msgstr "Totale Spams"
|
|
781 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:151
|
782 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:310
|
783 |
msgid "Total Users"
|
784 |
-
msgstr "Totaal aantal
|
785 |
|
786 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:158
|
787 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:313
|
@@ -796,7 +796,7 @@ msgstr "Gemiddelde reacties"
|
|
796 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:172
|
797 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:319
|
798 |
msgid "Average Users"
|
799 |
-
msgstr "Gemiddelde
|
800 |
|
801 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:179
|
802 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:322
|
@@ -1123,7 +1123,7 @@ msgstr "Kan niet de GeoIP-database laden, zorg ervoor dat u het hebt gedownload
|
|
1123 |
|
1124 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:48
|
1125 |
msgid "Updated %s GeoIP records in the visitors database."
|
1126 |
-
msgstr "
|
1127 |
|
1128 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:21
|
1129 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:39
|
@@ -1313,13 +1313,13 @@ msgstr "Aantal bezoeken en bezoekers"
|
|
1313 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:86
|
1314 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:30
|
1315 |
msgid "Visit"
|
1316 |
-
msgstr "
|
1317 |
|
1318 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:95
|
1319 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:86
|
1320 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:29
|
1321 |
msgid "Visitor"
|
1322 |
-
msgstr "
|
1323 |
|
1324 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:64
|
1325 |
msgid "Latest Search Word Statistics"
|
@@ -1381,7 +1381,7 @@ msgstr "Recente bezoekersstatistieken"
|
|
1381 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:11
|
1382 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:18
|
1383 |
msgid "Online Users"
|
1384 |
-
msgstr "
|
1385 |
|
1386 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:75
|
1387 |
msgid "Online for "
|
@@ -1443,7 +1443,7 @@ msgstr "Land"
|
|
1443 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:23
|
1444 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:33
|
1445 |
msgid "Visitor Count"
|
1446 |
-
msgstr "
|
1447 |
|
1448 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:13
|
1449 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:138
|
@@ -1503,7 +1503,7 @@ msgstr "Website"
|
|
1503 |
|
1504 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:26
|
1505 |
msgid "Rate and Review"
|
1506 |
-
msgstr "
|
1507 |
|
1508 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:30
|
1509 |
msgid "More Information"
|
@@ -1533,7 +1533,7 @@ msgstr "Andere"
|
|
1533 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:9
|
1534 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:9
|
1535 |
msgid "Today Visitors Map"
|
1536 |
-
msgstr "
|
1537 |
|
1538 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:31
|
1539 |
msgid "Address"
|
@@ -1897,7 +1897,7 @@ msgstr "PHP veilige modus"
|
|
1897 |
|
1898 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:152
|
1899 |
msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
|
1900 |
-
msgstr "Is
|
1901 |
|
1902 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:158
|
1903 |
msgid "jQuery Version"
|
2 |
# This file is distributed under the same license as the WP Statistics package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2015-03-16 07:34:02+0000\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
|
13 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:330
|
14 |
msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
|
15 |
+
msgstr "Gebruik de vertalingen niet. Gebruik in plaats daarvan de standaard Engelse teksten voor WP Statistics (vereist het herladen van twee pagina's)"
|
16 |
|
17 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:324
|
18 |
msgid "Force English"
|
19 |
+
msgstr "Forceer Engels"
|
20 |
|
21 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:319
|
22 |
msgid "Languages"
|
23 |
+
msgstr "Talen"
|
24 |
|
25 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:271
|
26 |
msgid "Note: this option will NOT handle url parameters (anything after the ?), only to the script name. Entries less than two characters will be ignored."
|
108 |
|
109 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:100
|
110 |
msgid "Currently there are no users online in the site."
|
111 |
+
msgstr "Er zijn momenteel geen bezoekers online op de site."
|
112 |
|
113 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
|
114 |
msgid "Robot Threshold"
|
138 |
|
139 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:99
|
140 |
msgid "Check for online users every"
|
141 |
+
msgstr "Controleer voor online bezoekers elke"
|
142 |
|
143 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:104
|
144 |
msgid "Second"
|
146 |
|
147 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:105
|
148 |
msgid "Time for the check accurate online user in the site. Now: %s Second"
|
149 |
+
msgstr "Tijd voor nauwkeurige controle van bezoekers op de site. Nu: %s seconden"
|
150 |
|
151 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:111
|
152 |
msgid "Record all user"
|
153 |
+
msgstr "Registreer alle bezoekers"
|
154 |
|
155 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:117
|
156 |
msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
|
157 |
+
msgstr "Dit negeert de uitsluitingsinstellingen en registreert alle bezoekers die online zijn (waaronder zelf-verwijzingen en robots). Het is aanbevolen om dit alleen te gebruiken voor het oplossen van problemen."
|
158 |
|
159 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:155
|
160 |
msgid "Store entire user agent string"
|
237 |
|
238 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:281
|
239 |
msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
|
240 |
+
msgstr "Uitschakelen van alle zoekmachines is niet toegestaan. Het resulteert in een activering van alle zoekmachines."
|
241 |
|
242 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:296
|
243 |
msgid "disable"
|
536 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:97
|
537 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:117
|
538 |
msgid "The following items are global to all users."
|
539 |
+
msgstr "De volgende items gelden voor alle bezoekers."
|
540 |
|
541 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:82
|
542 |
msgid "Disable dashboard widgets"
|
781 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:151
|
782 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:310
|
783 |
msgid "Total Users"
|
784 |
+
msgstr "Totaal aantal bezoekers"
|
785 |
|
786 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:158
|
787 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:313
|
796 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:172
|
797 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:319
|
798 |
msgid "Average Users"
|
799 |
+
msgstr "Gemiddelde bezoekers"
|
800 |
|
801 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:179
|
802 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:322
|
1123 |
|
1124 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:48
|
1125 |
msgid "Updated %s GeoIP records in the visitors database."
|
1126 |
+
msgstr "%s-GeoIP records bijgewerkt in de bezoekers-database."
|
1127 |
|
1128 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:21
|
1129 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:39
|
1313 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:86
|
1314 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:30
|
1315 |
msgid "Visit"
|
1316 |
+
msgstr "Bezoeken"
|
1317 |
|
1318 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:95
|
1319 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:86
|
1320 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:29
|
1321 |
msgid "Visitor"
|
1322 |
+
msgstr "Bezoekers"
|
1323 |
|
1324 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:64
|
1325 |
msgid "Latest Search Word Statistics"
|
1381 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:11
|
1382 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:18
|
1383 |
msgid "Online Users"
|
1384 |
+
msgstr "Bezoekers online"
|
1385 |
|
1386 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:75
|
1387 |
msgid "Online for "
|
1443 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:23
|
1444 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:33
|
1445 |
msgid "Visitor Count"
|
1446 |
+
msgstr "Aantal bezoekers"
|
1447 |
|
1448 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:13
|
1449 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:138
|
1503 |
|
1504 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:26
|
1505 |
msgid "Rate and Review"
|
1506 |
+
msgstr "Oordeel en review"
|
1507 |
|
1508 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:30
|
1509 |
msgid "More Information"
|
1533 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:9
|
1534 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:9
|
1535 |
msgid "Today Visitors Map"
|
1536 |
+
msgstr "Overzicht bezoekers vandaag"
|
1537 |
|
1538 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:31
|
1539 |
msgid "Address"
|
1897 |
|
1898 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:152
|
1899 |
msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
|
1900 |
+
msgstr "Is de veilige modus van PHP actief? De GeoIP-code wordt niet ondersteund in de veilige modus."
|
1901 |
|
1902 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:158
|
1903 |
msgid "jQuery Version"
|
languages/wp_statistics-pl_PL.mo
CHANGED
Binary file
|
languages/wp_statistics-pl_PL.po
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
# This file is distributed under the same license as the WP Statistics package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"PO-Revision-Date: 2015-
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -483,7 +483,7 @@ msgstr "Odwiedzin dzisiaj"
|
|
483 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:66
|
484 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:257
|
485 |
msgid "Yesterday Visitor"
|
486 |
-
msgstr "
|
487 |
|
488 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:192
|
489 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:59
|
@@ -494,7 +494,7 @@ msgstr "Odwiedzin wczoraj"
|
|
494 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:101
|
495 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:272
|
496 |
msgid "Total Visitor"
|
497 |
-
msgstr "Razem
|
498 |
|
499 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:194
|
500 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:94
|
2 |
# This file is distributed under the same license as the WP Statistics package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2015-03-15 16:33:08+0000\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
483 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:66
|
484 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:257
|
485 |
msgid "Yesterday Visitor"
|
486 |
+
msgstr "Odwiedziło wczoraj"
|
487 |
|
488 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:192
|
489 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:59
|
494 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:101
|
495 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:272
|
496 |
msgid "Total Visitor"
|
497 |
+
msgstr "Razem odwiedzających"
|
498 |
|
499 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:194
|
500 |
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:94
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://mostafa-soufi.ir/donate/
|
|
4 |
Tags: statistics, stats, visit, visitors, chart, browser, blog, today, yesterday, week, month, year, total, post, page, sidebar, summary, feedburner, hits, pagerank, google, alexa, live visit
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 4.1.1
|
7 |
-
Stable tag: 9.
|
8 |
License: GPL3
|
9 |
|
10 |
Complete statistics for your WordPress site.
|
@@ -214,10 +214,23 @@ There can be many reasons for this, but the most common reason is a botnet has d
|
|
214 |
10. View latest search engine referrers Statistics page.
|
215 |
|
216 |
== Upgrade Notice ==
|
|
|
|
|
|
|
217 |
= 9.0 =
|
218 |
This release updates some core code to do with timezones, hence the change to version 9.0, if you see any issues with timezones, please let us know. In addition, you may see an increase in your visits count as a race condition that dropped some visits has been resolved.
|
219 |
|
220 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
221 |
= 9.0 =
|
222 |
* Added: URL exclusions option.
|
223 |
* Added: Swedish translation, thanks ronneborn.
|
4 |
Tags: statistics, stats, visit, visitors, chart, browser, blog, today, yesterday, week, month, year, total, post, page, sidebar, summary, feedburner, hits, pagerank, google, alexa, live visit
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 4.1.1
|
7 |
+
Stable tag: 9.1
|
8 |
License: GPL3
|
9 |
|
10 |
Complete statistics for your WordPress site.
|
214 |
10. View latest search engine referrers Statistics page.
|
215 |
|
216 |
== Upgrade Notice ==
|
217 |
+
= 9.1 =
|
218 |
+
BACKUP YOUR DATABASE BEFORE INSTALLING! This release alters the table structure of the database. Once installed, please go to Statistics->Optimization->Database and add the visits index.
|
219 |
+
|
220 |
= 9.0 =
|
221 |
This release updates some core code to do with timezones, hence the change to version 9.0, if you see any issues with timezones, please let us know. In addition, you may see an increase in your visits count as a race condition that dropped some visits has been resolved.
|
222 |
|
223 |
== Changelog ==
|
224 |
+
= 9.1 =
|
225 |
+
* Added: Unique index requirement on visits table to avoid race condition creating duplicate entires.
|
226 |
+
* Added: Option to the optimization page to remove duplicates and add new unique index to visits table on existing installs.
|
227 |
+
* Updated: Translations, thanks to all of our translators!
|
228 |
+
* Updated: Cleanup of some WP Debug warnings.
|
229 |
+
* Fixed: JavaScript postboxes call was currupted on some pages causing a javascript error.
|
230 |
+
* Fixed: Change html encode to jason_ecnode for data to be used in javascript to avoid single quotes as part of the translation breaking the javascript array, this change now fixes extended character display in the JavaScript charts.
|
231 |
+
* Fixed: Verify $WP_Statistics is an object before using it, which was causing a fatal error on some installs.
|
232 |
+
* Removed: Redudnent e modifier in preg_replace_callback to avoid php warning message.
|
233 |
+
|
234 |
= 9.0 =
|
235 |
* Added: URL exclusions option.
|
236 |
* Added: Swedish translation, thanks ronneborn.
|
wp-statistics.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: WP Statistics
|
4 |
Plugin URI: http://wp-statistics.com/
|
5 |
Description: Complete statistics for your WordPress site.
|
6 |
-
Version: 9.
|
7 |
Author: Mostafa Soufi & Greg Ross
|
8 |
Author URI: http://wp-statistics.com/
|
9 |
Text Domain: wp_statistics
|
@@ -12,7 +12,7 @@ License: GPL2
|
|
12 |
*/
|
13 |
|
14 |
// These defines are used later for various reasons.
|
15 |
-
define('WP_STATISTICS_VERSION', '9.
|
16 |
define('WP_STATISTICS_MANUAL', 'manual/WP Statistics Admin Manual.');
|
17 |
define('WP_STATISTICS_REQUIRED_PHP_VERSION', '5.3.0');
|
18 |
define('WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION', WP_STATISTICS_REQUIRED_PHP_VERSION);
|
@@ -22,7 +22,15 @@ License: GPL2
|
|
22 |
function wp_statistics_init() {
|
23 |
GLOBAL $WP_Statistics;
|
24 |
|
25 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
load_plugin_textdomain('wp_statistics', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/');
|
27 |
__('WP Statistics', 'wp_statistics');
|
28 |
__('Complete statistics for your WordPress site.', 'wp_statistics');
|
3 |
Plugin Name: WP Statistics
|
4 |
Plugin URI: http://wp-statistics.com/
|
5 |
Description: Complete statistics for your WordPress site.
|
6 |
+
Version: 9.1
|
7 |
Author: Mostafa Soufi & Greg Ross
|
8 |
Author URI: http://wp-statistics.com/
|
9 |
Text Domain: wp_statistics
|
12 |
*/
|
13 |
|
14 |
// These defines are used later for various reasons.
|
15 |
+
define('WP_STATISTICS_VERSION', '9.1');
|
16 |
define('WP_STATISTICS_MANUAL', 'manual/WP Statistics Admin Manual.');
|
17 |
define('WP_STATISTICS_REQUIRED_PHP_VERSION', '5.3.0');
|
18 |
define('WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION', WP_STATISTICS_REQUIRED_PHP_VERSION);
|
22 |
function wp_statistics_init() {
|
23 |
GLOBAL $WP_Statistics;
|
24 |
|
25 |
+
$override = false;
|
26 |
+
|
27 |
+
if( is_object( $WP_Statistics ) ) {
|
28 |
+
if( $WP_Statistics->get_option('override_language', false) ) {
|
29 |
+
$override = true;
|
30 |
+
}
|
31 |
+
}
|
32 |
+
|
33 |
+
if( !$override ) {
|
34 |
load_plugin_textdomain('wp_statistics', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/');
|
35 |
__('WP Statistics', 'wp_statistics');
|
36 |
__('Complete statistics for your WordPress site.', 'wp_statistics');
|
wps-install.php
CHANGED
@@ -24,7 +24,8 @@
|
|
24 |
last_visit datetime NOT NULL,
|
25 |
last_counter date NOT NULL,
|
26 |
visit int(10) NOT NULL,
|
27 |
-
PRIMARY KEY (ID)
|
|
|
28 |
) CHARSET=utf8");
|
29 |
|
30 |
$create_visitor_table = ("CREATE TABLE {$wp_prefix}statistics_visitor (
|
@@ -220,7 +221,7 @@
|
|
220 |
);
|
221 |
|
222 |
// Replace the items in the template.
|
223 |
-
$final_report = preg_replace_callback('/%(.*?)%/
|
224 |
|
225 |
// Store the updated report content.
|
226 |
$WP_Statistics->store_option('content_report', $final_report);
|
24 |
last_visit datetime NOT NULL,
|
25 |
last_counter date NOT NULL,
|
26 |
visit int(10) NOT NULL,
|
27 |
+
PRIMARY KEY (ID),
|
28 |
+
UNIQUE KEY unique_date (last_counter),
|
29 |
) CHARSET=utf8");
|
30 |
|
31 |
$create_visitor_table = ("CREATE TABLE {$wp_prefix}statistics_visitor (
|
221 |
);
|
222 |
|
223 |
// Replace the items in the template.
|
224 |
+
$final_report = preg_replace_callback('/%(.*?)%/im', function($m) { return $template_vars[$m[1]]; }, $report_content);
|
225 |
|
226 |
// Store the updated report content.
|
227 |
$WP_Statistics->store_option('content_report', $final_report);
|