Version Description
This is primarily a maintenance release with updates to various libraries and bug fixes, note that Google Maps is no longer supported.
=
Download this release
Release Info
Developer | GregRoss |
Plugin | WP Statistics |
Version | 10.2 |
Comparing to | |
See all releases |
Code changes from version 10.1 to 10.2
- ajax.php +1 -6
- assets/css/jquery-ui-smoothness.css +10 -10
- assets/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- assets/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- assets/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- assets/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- assets/images/ui-bg_glass_75_dadada_1x400.png +0 -0
- assets/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- assets/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- assets/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- dashboard.php +3 -7
- includes/classes/statistics.class.php +11 -0
- includes/log/widgets/hits.php +3 -1
- includes/log/widgets/page.php +1 -1
- includes/log/widgets/quickstats.php +5 -5
- includes/settings/tabs/wps-overview-display.php +0 -20
- languages/wp_statistics-ar.mo +0 -0
- languages/wp_statistics-ar.po +60 -76
- languages/wp_statistics-ary.mo +0 -0
- languages/wp_statistics-ary.po +2713 -0
- languages/wp_statistics-bg_BG.mo +0 -0
- languages/wp_statistics-bg_BG.po +60 -76
- languages/wp_statistics-bn_BD.mo +0 -0
- languages/wp_statistics-bn_BD.po +60 -76
- languages/wp_statistics-ckb.mo +0 -0
- languages/wp_statistics-ckb.po +60 -76
- languages/wp_statistics-cs_CZ.mo +0 -0
- languages/wp_statistics-cs_CZ.po +60 -76
- languages/wp_statistics-da_DK.mo +0 -0
- languages/wp_statistics-da_DK.po +60 -76
- languages/wp_statistics-de_DE.mo +0 -0
- languages/wp_statistics-de_DE.po +60 -76
- languages/wp_statistics-eo.mo +0 -0
- languages/wp_statistics-eo.po +60 -76
- languages/wp_statistics-es_ES.mo +0 -0
- languages/wp_statistics-es_ES.po +62 -78
- languages/wp_statistics-fa_IR.mo +0 -0
- languages/wp_statistics-fa_IR.po +60 -76
- languages/wp_statistics-fr_FR.mo +0 -0
- languages/wp_statistics-fr_FR.po +62 -78
- languages/wp_statistics-hi.mo +0 -0
- languages/wp_statistics-hi.po +2713 -0
- languages/wp_statistics-hu_HU.mo +0 -0
- languages/wp_statistics-hu_HU.po +72 -88
- languages/wp_statistics-id_ID.mo +0 -0
- languages/wp_statistics-id_ID.po +60 -76
- languages/wp_statistics-it_IT.mo +0 -0
- languages/wp_statistics-it_IT.po +60 -76
- languages/wp_statistics-ja.mo +0 -0
- languages/wp_statistics-ja.po +60 -76
- languages/wp_statistics-nl_NL.mo +0 -0
- languages/wp_statistics-nl_NL.po +60 -76
- languages/wp_statistics-pl_PL.mo +0 -0
- languages/wp_statistics-pl_PL.po +66 -82
- languages/wp_statistics-pt_BR.mo +0 -0
- languages/wp_statistics-pt_BR.po +60 -76
- languages/wp_statistics-ro_RO.mo +0 -0
- languages/wp_statistics-ro_RO.po +60 -76
- languages/wp_statistics-ru_RU.mo +0 -0
- languages/wp_statistics-ru_RU.po +60 -76
- languages/wp_statistics-sk_SK.mo +0 -0
- languages/wp_statistics-sk_SK.po +60 -76
- languages/wp_statistics-sr_RS.mo +0 -0
- languages/wp_statistics-sr_RS.po +60 -76
- languages/wp_statistics-sv_SE.mo +0 -0
- languages/wp_statistics-sv_SE.po +60 -76
- languages/wp_statistics-tr_TR.mo +0 -0
- languages/wp_statistics-tr_TR.po +60 -76
- languages/wp_statistics-uk.mo +0 -0
- languages/wp_statistics-uk.po +62 -78
- languages/wp_statistics-vi.mo +0 -0
- languages/wp_statistics-vi.po +60 -76
- languages/wp_statistics-zh_CN.mo +0 -0
- languages/wp_statistics-zh_CN.po +60 -76
- languages/wp_statistics-zh_TW.mo +0 -0
- languages/wp_statistics-zh_TW.po +60 -76
- readme.txt +32 -3
- wp-statistics.php +5 -10
ajax.php
CHANGED
@@ -208,12 +208,7 @@ function wp_statistics_get_widget_contents_callback() {
|
|
208 |
}
|
209 |
|
210 |
if( 'map' == $widget || 'hitsmap' == $widget ) {
|
211 |
-
|
212 |
-
$widget = 'jqv.map';
|
213 |
-
}
|
214 |
-
else {
|
215 |
-
$widget = 'google.map';
|
216 |
-
}
|
217 |
}
|
218 |
|
219 |
if( '' == $widget ) {
|
208 |
}
|
209 |
|
210 |
if( 'map' == $widget || 'hitsmap' == $widget ) {
|
211 |
+
$widget = 'jqv.map';
|
|
|
|
|
|
|
|
|
|
|
212 |
}
|
213 |
|
214 |
if( '' == $widget ) {
|
assets/css/jquery-ui-smoothness.css
CHANGED
@@ -845,7 +845,7 @@ body .ui-tooltip {
|
|
845 |
}
|
846 |
.ui-widget-content {
|
847 |
border: 1px solid #aaaaaa;
|
848 |
-
background: #ffffff url("images/ui-bg_flat_75_ffffff_40x100.png") 50% 50% repeat-x;
|
849 |
color: #222222;
|
850 |
}
|
851 |
.ui-widget-content a {
|
@@ -853,7 +853,7 @@ body .ui-tooltip {
|
|
853 |
}
|
854 |
.ui-widget-header {
|
855 |
border: 1px solid #aaaaaa;
|
856 |
-
background: #cccccc url("images/ui-bg_highlight-soft_75_cccccc_1x100.png") 50% 50% repeat-x;
|
857 |
color: #222222;
|
858 |
font-weight: bold;
|
859 |
}
|
@@ -867,7 +867,7 @@ body .ui-tooltip {
|
|
867 |
.ui-widget-content .ui-state-default,
|
868 |
.ui-widget-header .ui-state-default {
|
869 |
border: 1px solid #d3d3d3;
|
870 |
-
background: #e6e6e6 url("images/ui-bg_glass_75_e6e6e6_1x400.png") 50% 50% repeat-x;
|
871 |
font-weight: normal;
|
872 |
color: #555555;
|
873 |
}
|
@@ -884,7 +884,7 @@ body .ui-tooltip {
|
|
884 |
.ui-widget-content .ui-state-focus,
|
885 |
.ui-widget-header .ui-state-focus {
|
886 |
border: 1px solid #999999;
|
887 |
-
background: #dadada url("images/ui-bg_glass_75_dadada_1x400.png") 50% 50% repeat-x;
|
888 |
font-weight: normal;
|
889 |
color: #212121;
|
890 |
}
|
@@ -903,7 +903,7 @@ body .ui-tooltip {
|
|
903 |
.ui-widget-content .ui-state-active,
|
904 |
.ui-widget-header .ui-state-active {
|
905 |
border: 1px solid #aaaaaa;
|
906 |
-
background: #ffffff url("images/ui-bg_glass_65_ffffff_1x400.png") 50% 50% repeat-x;
|
907 |
font-weight: normal;
|
908 |
color: #212121;
|
909 |
}
|
@@ -920,7 +920,7 @@ body .ui-tooltip {
|
|
920 |
.ui-widget-content .ui-state-highlight,
|
921 |
.ui-widget-header .ui-state-highlight {
|
922 |
border: 1px solid #fcefa1;
|
923 |
-
background: #fbf9ee url("images/ui-bg_glass_55_fbf9ee_1x400.png") 50% 50% repeat-x;
|
924 |
color: #363636;
|
925 |
}
|
926 |
.ui-state-highlight a,
|
@@ -932,7 +932,7 @@ body .ui-tooltip {
|
|
932 |
.ui-widget-content .ui-state-error,
|
933 |
.ui-widget-header .ui-state-error {
|
934 |
border: 1px solid #cd0a0a;
|
935 |
-
background: #fef1ec url("images/ui-bg_glass_95_fef1ec_1x400.png") 50% 50% repeat-x;
|
936 |
color: #cd0a0a;
|
937 |
}
|
938 |
.ui-state-error a,
|
@@ -978,7 +978,7 @@ body .ui-tooltip {
|
|
978 |
}
|
979 |
.ui-icon,
|
980 |
.ui-widget-content .ui-icon {
|
981 |
-
background-image: url("images/ui-icons_222222_256x240.png");
|
982 |
}
|
983 |
.ui-widget-header .ui-icon {
|
984 |
background-image: url("../images/ui-icons_222222_256x240.png");
|
@@ -1211,14 +1211,14 @@ body .ui-tooltip {
|
|
1211 |
|
1212 |
/* Overlays */
|
1213 |
.ui-widget-overlay {
|
1214 |
-
background: #aaaaaa url("images/ui-bg_flat_0_aaaaaa_40x100.png") 50% 50% repeat-x;
|
1215 |
opacity: .3;
|
1216 |
filter: Alpha(Opacity=30); /* support: IE8 */
|
1217 |
}
|
1218 |
.ui-widget-shadow {
|
1219 |
margin: -8px 0 0 -8px;
|
1220 |
padding: 8px;
|
1221 |
-
background: #aaaaaa url("images/ui-bg_flat_0_aaaaaa_40x100.png") 50% 50% repeat-x;
|
1222 |
opacity: .3;
|
1223 |
filter: Alpha(Opacity=30); /* support: IE8 */
|
1224 |
border-radius: 8px;
|
845 |
}
|
846 |
.ui-widget-content {
|
847 |
border: 1px solid #aaaaaa;
|
848 |
+
background: #ffffff url("../images/ui-bg_flat_75_ffffff_40x100.png") 50% 50% repeat-x;
|
849 |
color: #222222;
|
850 |
}
|
851 |
.ui-widget-content a {
|
853 |
}
|
854 |
.ui-widget-header {
|
855 |
border: 1px solid #aaaaaa;
|
856 |
+
background: #cccccc url("../images/ui-bg_highlight-soft_75_cccccc_1x100.png") 50% 50% repeat-x;
|
857 |
color: #222222;
|
858 |
font-weight: bold;
|
859 |
}
|
867 |
.ui-widget-content .ui-state-default,
|
868 |
.ui-widget-header .ui-state-default {
|
869 |
border: 1px solid #d3d3d3;
|
870 |
+
background: #e6e6e6 url("../images/ui-bg_glass_75_e6e6e6_1x400.png") 50% 50% repeat-x;
|
871 |
font-weight: normal;
|
872 |
color: #555555;
|
873 |
}
|
884 |
.ui-widget-content .ui-state-focus,
|
885 |
.ui-widget-header .ui-state-focus {
|
886 |
border: 1px solid #999999;
|
887 |
+
background: #dadada url("../images/ui-bg_glass_75_dadada_1x400.png") 50% 50% repeat-x;
|
888 |
font-weight: normal;
|
889 |
color: #212121;
|
890 |
}
|
903 |
.ui-widget-content .ui-state-active,
|
904 |
.ui-widget-header .ui-state-active {
|
905 |
border: 1px solid #aaaaaa;
|
906 |
+
background: #ffffff url("../images/ui-bg_glass_65_ffffff_1x400.png") 50% 50% repeat-x;
|
907 |
font-weight: normal;
|
908 |
color: #212121;
|
909 |
}
|
920 |
.ui-widget-content .ui-state-highlight,
|
921 |
.ui-widget-header .ui-state-highlight {
|
922 |
border: 1px solid #fcefa1;
|
923 |
+
background: #fbf9ee url("../images/ui-bg_glass_55_fbf9ee_1x400.png") 50% 50% repeat-x;
|
924 |
color: #363636;
|
925 |
}
|
926 |
.ui-state-highlight a,
|
932 |
.ui-widget-content .ui-state-error,
|
933 |
.ui-widget-header .ui-state-error {
|
934 |
border: 1px solid #cd0a0a;
|
935 |
+
background: #fef1ec url("../images/ui-bg_glass_95_fef1ec_1x400.png") 50% 50% repeat-x;
|
936 |
color: #cd0a0a;
|
937 |
}
|
938 |
.ui-state-error a,
|
978 |
}
|
979 |
.ui-icon,
|
980 |
.ui-widget-content .ui-icon {
|
981 |
+
background-image: url("../images/ui-icons_222222_256x240.png");
|
982 |
}
|
983 |
.ui-widget-header .ui-icon {
|
984 |
background-image: url("../images/ui-icons_222222_256x240.png");
|
1211 |
|
1212 |
/* Overlays */
|
1213 |
.ui-widget-overlay {
|
1214 |
+
background: #aaaaaa url("../images/ui-bg_flat_0_aaaaaa_40x100.png") 50% 50% repeat-x;
|
1215 |
opacity: .3;
|
1216 |
filter: Alpha(Opacity=30); /* support: IE8 */
|
1217 |
}
|
1218 |
.ui-widget-shadow {
|
1219 |
margin: -8px 0 0 -8px;
|
1220 |
padding: 8px;
|
1221 |
+
background: #aaaaaa url("../images/ui-bg_flat_0_aaaaaa_40x100.png") 50% 50% repeat-x;
|
1222 |
opacity: .3;
|
1223 |
filter: Alpha(Opacity=30); /* support: IE8 */
|
1224 |
border-radius: 8px;
|
assets/images/ui-bg_flat_0_aaaaaa_40x100.png
ADDED
Binary file
|
assets/images/ui-bg_flat_75_ffffff_40x100.png
ADDED
Binary file
|
assets/images/ui-bg_glass_55_fbf9ee_1x400.png
ADDED
Binary file
|
assets/images/ui-bg_glass_65_ffffff_1x400.png
ADDED
Binary file
|
assets/images/ui-bg_glass_75_dadada_1x400.png
ADDED
Binary file
|
assets/images/ui-bg_glass_75_e6e6e6_1x400.png
ADDED
Binary file
|
assets/images/ui-bg_glass_95_fef1ec_1x400.png
ADDED
Binary file
|
assets/images/ui-bg_highlight-soft_75_cccccc_1x100.png
ADDED
Binary file
|
dashboard.php
CHANGED
@@ -89,13 +89,9 @@
|
|
89 |
wp_enqueue_script('jqplot-pierenderer', plugin_dir_url(__FILE__) . 'assets/js/jqplot.pieRenderer.min.js', true, '0.8.3');
|
90 |
wp_enqueue_script('jqplot-enhancedlengend', plugin_dir_url(__FILE__) . 'assets/js/jqplot.enhancedLegendRenderer.min.js', true, '0.8.3');
|
91 |
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
wp_enqueue_script('jquery-vmap-world', plugin_dir_url(__FILE__) . 'assets/jqvmap/maps/jquery.vmap.world.js', true, '1.1');
|
96 |
-
} else {
|
97 |
-
wp_enqueue_script('google-maps', 'https://maps.google.com/maps/api/js');
|
98 |
-
}
|
99 |
|
100 |
$screen = get_current_screen();
|
101 |
|
89 |
wp_enqueue_script('jqplot-pierenderer', plugin_dir_url(__FILE__) . 'assets/js/jqplot.pieRenderer.min.js', true, '0.8.3');
|
90 |
wp_enqueue_script('jqplot-enhancedlengend', plugin_dir_url(__FILE__) . 'assets/js/jqplot.enhancedLegendRenderer.min.js', true, '0.8.3');
|
91 |
|
92 |
+
wp_enqueue_style('jqvmap-css', plugin_dir_url(__FILE__) . 'assets/jqvmap/jqvmap.css', true, '1.1');
|
93 |
+
wp_enqueue_script('jquery-vmap', plugin_dir_url(__FILE__) . 'assets/jqvmap/jquery.vmap.min.js', true, '1.1');
|
94 |
+
wp_enqueue_script('jquery-vmap-world', plugin_dir_url(__FILE__) . 'assets/jqvmap/maps/jquery.vmap.world.js', true, '1.1');
|
|
|
|
|
|
|
|
|
95 |
|
96 |
$screen = get_current_screen();
|
97 |
|
includes/classes/statistics.class.php
CHANGED
@@ -558,6 +558,17 @@
|
|
558 |
$this->historical[$id] = $count;
|
559 |
}
|
560 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
561 |
break;
|
562 |
}
|
563 |
|
558 |
$this->historical[$id] = $count;
|
559 |
}
|
560 |
|
561 |
+
break;
|
562 |
+
case 'page':
|
563 |
+
if( array_key_exists( $id, $this->historical ) ) {
|
564 |
+
return $this->historical[$id];
|
565 |
+
}
|
566 |
+
else {
|
567 |
+
$result = $this->db->get_var($this->db->prepare("SELECT value FROM {$this->tb_prefix}statistics_historical WHERE category = 'uri' AND page_id = %d", $id));
|
568 |
+
if( $result > $count ) { $count = $result; }
|
569 |
+
$this->historical[$id] = $count;
|
570 |
+
}
|
571 |
+
|
572 |
break;
|
573 |
}
|
574 |
|
includes/log/widgets/hits.php
CHANGED
@@ -7,6 +7,8 @@
|
|
7 |
var visit_chart;
|
8 |
jQuery(document).ready(function() {
|
9 |
<?php
|
|
|
|
|
10 |
if( $WP_Statistics->get_option( 'visits' ) ) {
|
11 |
echo "var visit_data_line = [";
|
12 |
|
@@ -37,7 +39,7 @@
|
|
37 |
$data_lines[] = 'visitor_data_line';
|
38 |
}
|
39 |
?>
|
40 |
-
visit_chart = jQuery.jqplot('visits-stats', [<?php echo implode( ',', $data_lines)?>], {
|
41 |
title: {
|
42 |
text: '<b>' + <?php echo json_encode(__('Hits in the last', 'wp_statistics') . ' ' . $days . ' ' . __('days', 'wp_statistics')); ?> + '</b>',
|
43 |
fontSize: '12px',
|
7 |
var visit_chart;
|
8 |
jQuery(document).ready(function() {
|
9 |
<?php
|
10 |
+
$data_lines = array();
|
11 |
+
|
12 |
if( $WP_Statistics->get_option( 'visits' ) ) {
|
13 |
echo "var visit_data_line = [";
|
14 |
|
39 |
$data_lines[] = 'visitor_data_line';
|
40 |
}
|
41 |
?>
|
42 |
+
visit_chart = jQuery.jqplot('visits-stats', [<?php echo implode( ',', $data_lines); ?>], {
|
43 |
title: {
|
44 |
text: '<b>' + <?php echo json_encode(__('Hits in the last', 'wp_statistics') . ' ' . $days . ' ' . __('days', 'wp_statistics')); ?> + '</b>',
|
45 |
fontSize: '12px',
|
includes/log/widgets/page.php
CHANGED
@@ -10,7 +10,7 @@
|
|
10 |
if( $pageuri && !$pageid ) { $pageid = wp_statistics_uri_to_id( $pageuri ); }
|
11 |
|
12 |
$post = get_post($pageid);
|
13 |
-
if( is_object($post) ) { $title = $post->post_title; } else { $title = ""; }
|
14 |
|
15 |
$urlfields = "&page-id={$pageid}";
|
16 |
if( $pageuri ) { $urlfields .= "&page-uri={$pageuri}"; }
|
10 |
if( $pageuri && !$pageid ) { $pageid = wp_statistics_uri_to_id( $pageuri ); }
|
11 |
|
12 |
$post = get_post($pageid);
|
13 |
+
if( is_object($post) ) { $title = esc_html( $post->post_title ); } else { $title = ""; }
|
14 |
|
15 |
$urlfields = "&page-id={$pageid}";
|
16 |
if( $pageuri ) { $urlfields .= "&page-uri={$pageuri}"; }
|
includes/log/widgets/quickstats.php
CHANGED
@@ -32,31 +32,31 @@ if( $WP_Statistics->get_option('visitors') || $WP_Statistics->get_option('visits
|
|
32 |
|
33 |
<tr>
|
34 |
<th><?php _e('Yesterday', 'wp_statistics'); ?>:</th>
|
35 |
-
<th class="th-center"><?php if( $WP_Statistics->get_option('visitors') ) { echo '<a href="admin.php?page=
|
36 |
<th class="th-center"><?php if( $WP_Statistics->get_option('visits') ) { echo '<a href="admin.php?page=' . WP_STATISTICS_HITS_PAGE . '&hitdays=1"><span>' . number_format_i18n(wp_statistics_visit('yesterday')) . '</span></a>'; } else { echo ''; }?></th>
|
37 |
</tr>
|
38 |
|
39 |
<tr>
|
40 |
<th><?php _e('Last 7 Days (Week)', 'wp_statistics'); ?>:</th>
|
41 |
-
<th class="th-center"><?php if( $WP_Statistics->get_option('visitors') ) { echo '<a href="admin.php?page=
|
42 |
<th class="th-center"><?php if( $WP_Statistics->get_option('visits') ) { echo '<a href="admin.php?page=' . WP_STATISTICS_HITS_PAGE .'&hitdays=7"><span>' . number_format_i18n(wp_statistics_visit('week')) . '</span></a>'; } else { echo ''; }?></th>
|
43 |
</tr>
|
44 |
|
45 |
<tr>
|
46 |
<th><?php _e('Last 30 Days (Month)', 'wp_statistics'); ?>:</th>
|
47 |
-
<th class="th-center"><?php if( $WP_Statistics->get_option('visitors') ) { echo '<a href="admin.php?page=
|
48 |
<th class="th-center"><?php if( $WP_Statistics->get_option('visits') ) { echo '<a href="admin.php?page=' . WP_STATISTICS_HITS_PAGE . '&hitdays=30"><span>' . number_format_i18n(wp_statistics_visit('month')) . '</span></a>'; } else { echo ''; }?></th>
|
49 |
</tr>
|
50 |
|
51 |
<tr>
|
52 |
<th><?php _e('Last 365 Days (Year)', 'wp_statistics'); ?>:</th>
|
53 |
-
<th class="th-center"><?php if( $WP_Statistics->get_option('visitors') ) { echo '<a href="admin.php?page=
|
54 |
<th class="th-center"><?php if( $WP_Statistics->get_option('visits') ) { echo '<a href="admin.php?page=' . WP_STATISTICS_HITS_PAGE . '&hitdays=365"><span>' . number_format_i18n(wp_statistics_visit('year')) . '</span></a>'; } else { echo ''; }?></th>
|
55 |
</tr>
|
56 |
|
57 |
<tr>
|
58 |
<th><?php _e('Total', 'wp_statistics'); ?>:</th>
|
59 |
-
<th class="th-center"><?php if( $WP_Statistics->get_option('visitors') ) { echo '<a href="admin.php?page=
|
60 |
<th class="th-center"><?php if( $WP_Statistics->get_option('visits') ) { echo '<a href="admin.php?page=' . WP_STATISTICS_HITS_PAGE . '&hitdays=365"><span>' . number_format_i18n(wp_statistics_visit('total')) . '</span></a>'; } else { echo ''; }?></th>
|
61 |
</tr>
|
62 |
|
32 |
|
33 |
<tr>
|
34 |
<th><?php _e('Yesterday', 'wp_statistics'); ?>:</th>
|
35 |
+
<th class="th-center"><?php if( $WP_Statistics->get_option('visitors') ) { echo '<a href="admin.php?page=' . WP_STATISTICS_VISITORS_PAGE . '&hitdays=1"><span>' . number_format_i18n(wp_statistics_visitor('yesterday',null,true)) . '</span></a>'; } else { echo ''; }?></th>
|
36 |
<th class="th-center"><?php if( $WP_Statistics->get_option('visits') ) { echo '<a href="admin.php?page=' . WP_STATISTICS_HITS_PAGE . '&hitdays=1"><span>' . number_format_i18n(wp_statistics_visit('yesterday')) . '</span></a>'; } else { echo ''; }?></th>
|
37 |
</tr>
|
38 |
|
39 |
<tr>
|
40 |
<th><?php _e('Last 7 Days (Week)', 'wp_statistics'); ?>:</th>
|
41 |
+
<th class="th-center"><?php if( $WP_Statistics->get_option('visitors') ) { echo '<a href="admin.php?page=' . WP_STATISTICS_VISITORS_PAGE . '&hitdays=7"><span>' . number_format_i18n(wp_statistics_visitor('week',null,true)) . '</span></a>'; } else { echo ''; }?></th>
|
42 |
<th class="th-center"><?php if( $WP_Statistics->get_option('visits') ) { echo '<a href="admin.php?page=' . WP_STATISTICS_HITS_PAGE .'&hitdays=7"><span>' . number_format_i18n(wp_statistics_visit('week')) . '</span></a>'; } else { echo ''; }?></th>
|
43 |
</tr>
|
44 |
|
45 |
<tr>
|
46 |
<th><?php _e('Last 30 Days (Month)', 'wp_statistics'); ?>:</th>
|
47 |
+
<th class="th-center"><?php if( $WP_Statistics->get_option('visitors') ) { echo '<a href="admin.php?page=' . WP_STATISTICS_VISITORS_PAGE . '&hitdays=30"><span>' . number_format_i18n(wp_statistics_visitor('month',null,true)) . '</span></a>'; } else { echo ''; }?></th>
|
48 |
<th class="th-center"><?php if( $WP_Statistics->get_option('visits') ) { echo '<a href="admin.php?page=' . WP_STATISTICS_HITS_PAGE . '&hitdays=30"><span>' . number_format_i18n(wp_statistics_visit('month')) . '</span></a>'; } else { echo ''; }?></th>
|
49 |
</tr>
|
50 |
|
51 |
<tr>
|
52 |
<th><?php _e('Last 365 Days (Year)', 'wp_statistics'); ?>:</th>
|
53 |
+
<th class="th-center"><?php if( $WP_Statistics->get_option('visitors') ) { echo '<a href="admin.php?page=' . WP_STATISTICS_VISITORS_PAGE . '&hitdays=365"><span>' . number_format_i18n(wp_statistics_visitor('year',null,true)) . '</span></a>'; } else { echo ''; }?></th>
|
54 |
<th class="th-center"><?php if( $WP_Statistics->get_option('visits') ) { echo '<a href="admin.php?page=' . WP_STATISTICS_HITS_PAGE . '&hitdays=365"><span>' . number_format_i18n(wp_statistics_visit('year')) . '</span></a>'; } else { echo ''; }?></th>
|
55 |
</tr>
|
56 |
|
57 |
<tr>
|
58 |
<th><?php _e('Total', 'wp_statistics'); ?>:</th>
|
59 |
+
<th class="th-center"><?php if( $WP_Statistics->get_option('visitors') ) { echo '<a href="admin.php?page=' . WP_STATISTICS_VISITORS_PAGE . '&hitdays=365"><span>' . number_format_i18n(wp_statistics_visitor('total',null,true)) . '</span></a>'; } else { echo ''; }?></th>
|
60 |
<th class="th-center"><?php if( $WP_Statistics->get_option('visits') ) { echo '<a href="admin.php?page=' . WP_STATISTICS_HITS_PAGE . '&hitdays=365"><span>' . number_format_i18n(wp_statistics_visit('total')) . '</span></a>'; } else { echo ''; }?></th>
|
61 |
</tr>
|
62 |
|
includes/settings/tabs/wps-overview-display.php
CHANGED
@@ -64,26 +64,6 @@ if( $wps_admin ) {
|
|
64 |
<td scope="row" colspan="2"><?php _e('The following items are global to all users.', 'wp_statistics');?></td>
|
65 |
</tr>
|
66 |
|
67 |
-
<tr valign="top">
|
68 |
-
<th scope="row">
|
69 |
-
<label for="wps_map_type"><?php _e('Map type', 'wp_statistics'); ?>:</label>
|
70 |
-
</th>
|
71 |
-
|
72 |
-
<td>
|
73 |
-
<select name="wps_map_type">
|
74 |
-
<?php
|
75 |
-
foreach( array( __('Google', 'wp_statistics') => 'google', __('JQVMap', 'wp_statistics') => 'jqvmap') as $key => $value ) {
|
76 |
-
echo "<option value=\"$value\"";
|
77 |
-
if( $WP_Statistics->get_option('map_type') == $value ) { echo ' SELECTED'; }
|
78 |
-
echo ">$key</option>";
|
79 |
-
}
|
80 |
-
?>
|
81 |
-
</select>
|
82 |
-
<p class="description"><?php _e('The "Google" option will use Google\'s mapping service to plot the recent visitors (requires access to Google).', 'wp_statistics'); ?></p>
|
83 |
-
<p class="description"><?php _e('The "JQVMap" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services).', 'wp_statistics'); ?></p>
|
84 |
-
</td>
|
85 |
-
</tr>
|
86 |
-
|
87 |
<tr valign="top">
|
88 |
<th scope="row">
|
89 |
<label for="disable-map"><?php _e('Disable map', 'wp_statistics'); ?>:</label>
|
64 |
<td scope="row" colspan="2"><?php _e('The following items are global to all users.', 'wp_statistics');?></td>
|
65 |
</tr>
|
66 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
67 |
<tr valign="top">
|
68 |
<th scope="row">
|
69 |
<label for="disable-map"><?php _e('Disable map', 'wp_statistics'); ?>:</label>
|
languages/wp_statistics-ar.mo
CHANGED
Binary file
|
languages/wp_statistics-ar.po
CHANGED
@@ -7,10 +7,11 @@ msgstr ""
|
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
10 |
-
"X-Generator: GlotPress/1.0
|
|
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#: wp-statistics/ajax.php:
|
14 |
msgid "No matching widget found!"
|
15 |
msgstr "لايوجد ودجات متطابق!"
|
16 |
|
@@ -46,22 +47,22 @@ msgstr "إحصائيات ووردبريس وجدت إصدار PHP %s غير مع
|
|
46 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
47 |
msgstr "يرجى الاتصال بموفر خدمة الاستضافة للترقية إلى إصدار معتمد أو عطل إحصائيات ووردبريس لإزالة هذه الرسالة."
|
48 |
|
49 |
-
#: wp-statistics/ajax.php:
|
50 |
msgid "ERROR: Widget not found!"
|
51 |
msgstr "خطأ: القطعة غير موجود!"
|
52 |
|
53 |
-
#: wp-statistics/dashboard.php:
|
54 |
#: wp-statistics/includes/log/log.php:20
|
55 |
msgid "Loading..."
|
56 |
msgstr "تحميل..."
|
57 |
|
58 |
-
#: wp-statistics/dashboard.php:
|
59 |
#: wp-statistics/includes/log/log.php:2
|
60 |
msgid "Reloading..."
|
61 |
msgstr "إعادة تحميل ..."
|
62 |
|
63 |
#: wp-statistics/includes/log/top-visitors.php:41
|
64 |
-
#: wp-statistics/wp-statistics.php:
|
65 |
msgid "Top Visitors"
|
66 |
msgstr "كبار الزوار"
|
67 |
|
@@ -158,7 +159,7 @@ msgstr "تتبع النقرات"
|
|
158 |
msgid "online user tracking"
|
159 |
msgstr "تتبع المستخدم المتصل"
|
160 |
|
161 |
-
#: wp-statistics/wp-statistics.php:
|
162 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
163 |
msgstr "جدول الإضافة التالية غير موجود في قاعدة البيانات, يرجى إعادة تشغيل %s للتثبيت الروتيني %s:"
|
164 |
|
@@ -622,7 +623,7 @@ msgstr "حساب توجيه النقرات لكل زائر. حالياً %s."
|
|
622 |
|
623 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
624 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
625 |
-
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:
|
626 |
msgid "Pages"
|
627 |
msgstr "الصفحات"
|
628 |
|
@@ -892,7 +893,7 @@ msgstr "أي رمز قصير بدعم من مثبت ووردبريس، وتشم
|
|
892 |
|
893 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
894 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
895 |
-
#: wp-statistics/wp-statistics.php:
|
896 |
msgid "User Online"
|
897 |
msgstr "المتواجدين الآن"
|
898 |
|
@@ -964,40 +965,23 @@ msgstr "تعطيل قطعة محرر الصفحة/المشاركة"
|
|
964 |
msgid "Disable the page/post editor widget."
|
965 |
msgstr "تعطيل القطع لمحرر الصفحة/المشاركة"
|
966 |
|
967 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
968 |
-
msgid "Map type"
|
969 |
-
msgstr "نوع الخريطة"
|
970 |
-
|
971 |
#: wp-statistics/includes/functions/functions.php:440
|
972 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
973 |
msgid "Google"
|
974 |
msgstr "جوجل"
|
975 |
|
976 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
977 |
-
msgid "JQVMap"
|
978 |
-
msgstr "JQVMap"
|
979 |
-
|
980 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:82
|
981 |
-
msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
|
982 |
-
msgstr "خيار \"جوجل\" يتوجب استخدام خدمة الخرائط جوجل لرسم زوار مؤخرا. (يتطلب الوصول إلى Google)"
|
983 |
-
|
984 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:83
|
985 |
-
msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
|
986 |
-
msgstr "خيار \"JQVMap\" استخدام مكتبة خرائط JQVMap جافا سكريبت لرسم الزوار مؤخرا. (لا يتطلب أي خدمات خارجية)."
|
987 |
-
|
988 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:89
|
989 |
msgid "Disable map"
|
990 |
msgstr "تعطيل الخريطة"
|
991 |
|
992 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
993 |
msgid "Disable the map display"
|
994 |
msgstr "تعطيل عرض الخريطة"
|
995 |
|
996 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
997 |
msgid "Get country location from Google"
|
998 |
msgstr "الحصول على موقع البلد من جوجل"
|
999 |
|
1000 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1001 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
1002 |
msgstr "قد تؤدي هذه الميزة تدهور الأداء عند عرض الإحصاءات وصالحة فقط إذا تم تعيين نوع الخريطة لـ \"جوجل\"."
|
1003 |
|
@@ -1051,7 +1035,7 @@ msgstr "الإزالة"
|
|
1051 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1052 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1053 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1054 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1055 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1056 |
msgid "Update"
|
1057 |
msgstr "تحديث"
|
@@ -1069,7 +1053,7 @@ msgid "Once Every 4 Weeks"
|
|
1069 |
msgstr "مرة كل 4 أسابيع"
|
1070 |
|
1071 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1072 |
-
#: wp-statistics/wp-statistics.php:
|
1073 |
msgid "Statistics"
|
1074 |
msgstr "الاحصائيات"
|
1075 |
|
@@ -1142,7 +1126,7 @@ msgstr "الأسم"
|
|
1142 |
msgid "Items"
|
1143 |
msgstr "البنود"
|
1144 |
|
1145 |
-
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:
|
1146 |
msgid "Yesterday visit"
|
1147 |
msgstr "زيارات الأمس"
|
1148 |
|
@@ -1167,7 +1151,7 @@ msgid "Complete statistics for your WordPress site."
|
|
1167 |
msgstr "إحصاءات كاملة لموقع ووردبريس الخاص بك."
|
1168 |
|
1169 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1170 |
-
#: wp-statistics/wp-statistics.php:
|
1171 |
msgid "Settings"
|
1172 |
msgstr "الإعدادات"
|
1173 |
|
@@ -1191,78 +1175,78 @@ msgstr "ضع تقييمك لهذه الاضافة"
|
|
1191 |
msgid "WP Statistics - Hits"
|
1192 |
msgstr "احصائيات ووردبريس - الزيارات"
|
1193 |
|
1194 |
-
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:
|
1195 |
-
#: wp-statistics/wp-statistics.php:
|
1196 |
msgid "Overview"
|
1197 |
msgstr "نظرة عامة"
|
1198 |
|
1199 |
-
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:
|
1200 |
msgid "Online"
|
1201 |
msgstr "المتواجدون"
|
1202 |
|
1203 |
-
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:
|
1204 |
msgid "Referrers"
|
1205 |
msgstr "الدعوات"
|
1206 |
|
1207 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1208 |
-
#: wp-statistics/wp-statistics.php:
|
1209 |
msgid "Searches"
|
1210 |
msgstr "عمليات البحث"
|
1211 |
|
1212 |
-
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:
|
1213 |
msgid "Search Words"
|
1214 |
msgstr "كلمات البحث"
|
1215 |
|
1216 |
-
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:
|
1217 |
msgid "Top Visitors Today"
|
1218 |
msgstr "أعلى زوار اليوم"
|
1219 |
|
1220 |
-
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:
|
1221 |
msgid "Optimization"
|
1222 |
msgstr "التحسين"
|
1223 |
|
1224 |
-
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:
|
1225 |
msgid "Manual"
|
1226 |
msgstr "الدليل"
|
1227 |
|
1228 |
-
#: wp-statistics/wp-statistics.php:
|
1229 |
msgid "Site"
|
1230 |
msgstr "موقع"
|
1231 |
|
1232 |
-
#: wp-statistics/wp-statistics.php:
|
1233 |
msgid "Options"
|
1234 |
msgstr "خيارات"
|
1235 |
|
1236 |
-
#: wp-statistics/wp-statistics.php:
|
1237 |
msgid "Today visitor"
|
1238 |
msgstr "زوار اليوم"
|
1239 |
|
1240 |
-
#: wp-statistics/wp-statistics.php:
|
1241 |
msgid "Today visit"
|
1242 |
msgstr "زيارات اليوم"
|
1243 |
|
1244 |
-
#: wp-statistics/wp-statistics.php:
|
1245 |
msgid "Yesterday visitor"
|
1246 |
msgstr "زيارات الأمس"
|
1247 |
|
1248 |
-
#: wp-statistics/wp-statistics.php:
|
1249 |
msgid "View Stats"
|
1250 |
msgstr "عرض الإحصائيات"
|
1251 |
|
1252 |
-
#: wp-statistics/wp-statistics.php:
|
1253 |
msgid "Download ODF file"
|
1254 |
msgstr "تحميل ملف ODF"
|
1255 |
|
1256 |
-
#: wp-statistics/wp-statistics.php:
|
1257 |
msgid "Download HTML file"
|
1258 |
msgstr "تحميل ملف HTML"
|
1259 |
|
1260 |
-
#: wp-statistics/wp-statistics.php:
|
1261 |
msgid "Manual file not found."
|
1262 |
msgstr "لم يتم العثور على ملف الدليل."
|
1263 |
|
1264 |
-
#: wp-statistics/wp-statistics.php:
|
1265 |
-
#: wp-statistics/wp-statistics.php:
|
1266 |
msgid "You do not have sufficient permissions to access this page."
|
1267 |
msgstr "ليس لديك الصلاحيات الكافية لدخول هذه الصفحة."
|
1268 |
|
@@ -1323,7 +1307,7 @@ msgstr "إحصائيات سريعة"
|
|
1323 |
msgid "Top 10 Browsers"
|
1324 |
msgstr "أفضل 10 متصفحات"
|
1325 |
|
1326 |
-
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:
|
1327 |
msgid "Top 10 Countries"
|
1328 |
msgstr "أعلى 10 دول"
|
1329 |
|
@@ -1337,36 +1321,36 @@ msgstr "خريطة زوار اليوم"
|
|
1337 |
msgid "Hit Statistics"
|
1338 |
msgstr "احصائية النقرات"
|
1339 |
|
1340 |
-
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:
|
1341 |
msgid "Top 10 Pages"
|
1342 |
msgstr "أفضل 10 صفحات"
|
1343 |
|
1344 |
#: wp-statistics/dashboard.php:62
|
1345 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1346 |
-
#: wp-statistics/wp-statistics.php:
|
1347 |
msgid "Recent Visitors"
|
1348 |
msgstr "الزيارات الأخيرة"
|
1349 |
|
1350 |
#: wp-statistics/dashboard.php:63
|
1351 |
#: wp-statistics/includes/log/top-referring.php:59
|
1352 |
#: wp-statistics/includes/log/top-referring.php:81
|
1353 |
-
#: wp-statistics/wp-statistics.php:
|
1354 |
msgid "Top Referring Sites"
|
1355 |
msgstr "أعلى المواقع اشارة"
|
1356 |
|
1357 |
#: wp-statistics/dashboard.php:64
|
1358 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1359 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1360 |
-
#: wp-statistics/wp-statistics.php:
|
1361 |
msgid "Search Engine Referrals"
|
1362 |
msgstr "إحالات محرك البحث"
|
1363 |
|
1364 |
-
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:
|
1365 |
msgid "Summary"
|
1366 |
msgstr "ملخص"
|
1367 |
|
1368 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1369 |
-
#: wp-statistics/wp-statistics.php:
|
1370 |
msgid "Latest Search Words"
|
1371 |
msgstr "أحدث كلمات البحث"
|
1372 |
|
@@ -1436,8 +1420,8 @@ msgid "Click to toggle"
|
|
1436 |
msgstr "انقر للتبديل"
|
1437 |
|
1438 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1439 |
-
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:
|
1440 |
-
#: wp-statistics/wp-statistics.php:
|
1441 |
msgid "Browsers"
|
1442 |
msgstr "المتصفحات"
|
1443 |
|
@@ -1510,7 +1494,7 @@ msgstr "استبعاد النقرات في الأخير"
|
|
1510 |
#: wp-statistics/includes/log/exclusions.php:95
|
1511 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1512 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1513 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1514 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1515 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1516 |
msgid "days"
|
@@ -1525,18 +1509,18 @@ msgid "Hits Statistics Chart"
|
|
1525 |
msgstr "الرسم البياني لاحصائيات النقرات"
|
1526 |
|
1527 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1528 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1529 |
msgid "Hits in the last"
|
1530 |
msgstr "آخر النقرات"
|
1531 |
|
1532 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1533 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1534 |
msgid "Number of visits and visitors"
|
1535 |
msgstr "عدد الزيارات والزوار"
|
1536 |
|
1537 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1538 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1539 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1540 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1541 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1542 |
msgid "Visit"
|
@@ -1544,7 +1528,7 @@ msgstr "زيارة"
|
|
1544 |
|
1545 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1546 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1547 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1548 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1549 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1550 |
msgid "Visitor"
|
@@ -1747,7 +1731,7 @@ msgstr "يتضمن هذا المنتج البيانات GeoLite2 التي أنش
|
|
1747 |
msgid "Other"
|
1748 |
msgstr "أخرى"
|
1749 |
|
1750 |
-
#: wp-statistics/wp-statistics.php:
|
1751 |
msgid "Today Visitors Map"
|
1752 |
msgstr "خريطة زوار اليوم"
|
1753 |
|
@@ -1802,7 +1786,7 @@ msgstr "التوقيت: %s"
|
|
1802 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1803 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1804 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1805 |
-
#: wp-statistics/wp-statistics.php:
|
1806 |
msgid "Hits"
|
1807 |
msgstr "نقرات"
|
1808 |
|
@@ -1821,7 +1805,7 @@ msgstr "الإصدار"
|
|
1821 |
|
1822 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1823 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1824 |
-
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:
|
1825 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1826 |
msgid "Access denied!"
|
1827 |
msgstr "تم رفض الوصول!"
|
@@ -1877,7 +1861,7 @@ msgstr "فهرس قاعدة بيانات"
|
|
1877 |
|
1878 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1879 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1880 |
-
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:
|
1881 |
msgid "Countries"
|
1882 |
msgstr "الدول"
|
1883 |
|
@@ -1962,7 +1946,7 @@ msgstr "ملاحظة: كلما قمت بتطهير قاعدة البيانات
|
|
1962 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1963 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1964 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1965 |
-
#: wp-statistics/wp-statistics.php:
|
1966 |
msgid "Visitors"
|
1967 |
msgstr "الزوار"
|
1968 |
|
@@ -2464,7 +2448,7 @@ msgstr "إذا كنت في حاجة الى حل أكثر قوة لتفويض ا
|
|
2464 |
#: wp-statistics/includes/log/exclusions.php:197
|
2465 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2466 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2467 |
-
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:
|
2468 |
msgid "Exclusions"
|
2469 |
msgstr "الاستثناءات"
|
2470 |
|
@@ -2674,8 +2658,8 @@ msgstr "استخدام browscap"
|
|
2674 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2675 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2676 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2677 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2678 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2679 |
msgid "Active"
|
2680 |
msgstr "تفعيل"
|
2681 |
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
10 |
+
"X-Generator: GlotPress/2.1.0\n"
|
11 |
+
"Language: ar\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
14 |
+
#: wp-statistics/ajax.php:215
|
15 |
msgid "No matching widget found!"
|
16 |
msgstr "لايوجد ودجات متطابق!"
|
17 |
|
47 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
48 |
msgstr "يرجى الاتصال بموفر خدمة الاستضافة للترقية إلى إصدار معتمد أو عطل إحصائيات ووردبريس لإزالة هذه الرسالة."
|
49 |
|
50 |
+
#: wp-statistics/ajax.php:294
|
51 |
msgid "ERROR: Widget not found!"
|
52 |
msgstr "خطأ: القطعة غير موجود!"
|
53 |
|
54 |
+
#: wp-statistics/dashboard.php:107 wp-statistics/editor.php:66
|
55 |
#: wp-statistics/includes/log/log.php:20
|
56 |
msgid "Loading..."
|
57 |
msgstr "تحميل..."
|
58 |
|
59 |
+
#: wp-statistics/dashboard.php:125 wp-statistics/editor.php:84
|
60 |
#: wp-statistics/includes/log/log.php:2
|
61 |
msgid "Reloading..."
|
62 |
msgstr "إعادة تحميل ..."
|
63 |
|
64 |
#: wp-statistics/includes/log/top-visitors.php:41
|
65 |
+
#: wp-statistics/wp-statistics.php:450
|
66 |
msgid "Top Visitors"
|
67 |
msgstr "كبار الزوار"
|
68 |
|
159 |
msgid "online user tracking"
|
160 |
msgstr "تتبع المستخدم المتصل"
|
161 |
|
162 |
+
#: wp-statistics/wp-statistics.php:791
|
163 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
164 |
msgstr "جدول الإضافة التالية غير موجود في قاعدة البيانات, يرجى إعادة تشغيل %s للتثبيت الروتيني %s:"
|
165 |
|
623 |
|
624 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
625 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
626 |
+
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:532
|
627 |
msgid "Pages"
|
628 |
msgstr "الصفحات"
|
629 |
|
893 |
|
894 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
895 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
896 |
+
#: wp-statistics/wp-statistics.php:637
|
897 |
msgid "User Online"
|
898 |
msgstr "المتواجدين الآن"
|
899 |
|
965 |
msgid "Disable the page/post editor widget."
|
966 |
msgstr "تعطيل القطع لمحرر الصفحة/المشاركة"
|
967 |
|
|
|
|
|
|
|
|
|
968 |
#: wp-statistics/includes/functions/functions.php:440
|
|
|
969 |
msgid "Google"
|
970 |
msgstr "جوجل"
|
971 |
|
972 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
973 |
msgid "Disable map"
|
974 |
msgstr "تعطيل الخريطة"
|
975 |
|
976 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
977 |
msgid "Disable the map display"
|
978 |
msgstr "تعطيل عرض الخريطة"
|
979 |
|
980 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:81
|
981 |
msgid "Get country location from Google"
|
982 |
msgstr "الحصول على موقع البلد من جوجل"
|
983 |
|
984 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:87
|
985 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
986 |
msgstr "قد تؤدي هذه الميزة تدهور الأداء عند عرض الإحصاءات وصالحة فقط إذا تم تعيين نوع الخريطة لـ \"جوجل\"."
|
987 |
|
1035 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1036 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1037 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1038 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:96
|
1039 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1040 |
msgid "Update"
|
1041 |
msgstr "تحديث"
|
1053 |
msgstr "مرة كل 4 أسابيع"
|
1054 |
|
1055 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1056 |
+
#: wp-statistics/wp-statistics.php:485
|
1057 |
msgid "Statistics"
|
1058 |
msgstr "الاحصائيات"
|
1059 |
|
1126 |
msgid "Items"
|
1127 |
msgstr "البنود"
|
1128 |
|
1129 |
+
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:662
|
1130 |
msgid "Yesterday visit"
|
1131 |
msgstr "زيارات الأمس"
|
1132 |
|
1151 |
msgstr "إحصاءات كاملة لموقع ووردبريس الخاص بك."
|
1152 |
|
1153 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1154 |
+
#: wp-statistics/wp-statistics.php:539
|
1155 |
msgid "Settings"
|
1156 |
msgstr "الإعدادات"
|
1157 |
|
1175 |
msgid "WP Statistics - Hits"
|
1176 |
msgstr "احصائيات ووردبريس - الزيارات"
|
1177 |
|
1178 |
+
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:488
|
1179 |
+
#: wp-statistics/wp-statistics.php:526
|
1180 |
msgid "Overview"
|
1181 |
msgstr "نظرة عامة"
|
1182 |
|
1183 |
+
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:531
|
1184 |
msgid "Online"
|
1185 |
msgstr "المتواجدون"
|
1186 |
|
1187 |
+
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:533
|
1188 |
msgid "Referrers"
|
1189 |
msgstr "الدعوات"
|
1190 |
|
1191 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1192 |
+
#: wp-statistics/wp-statistics.php:534
|
1193 |
msgid "Searches"
|
1194 |
msgstr "عمليات البحث"
|
1195 |
|
1196 |
+
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:535
|
1197 |
msgid "Search Words"
|
1198 |
msgstr "كلمات البحث"
|
1199 |
|
1200 |
+
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:536
|
1201 |
msgid "Top Visitors Today"
|
1202 |
msgstr "أعلى زوار اليوم"
|
1203 |
|
1204 |
+
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:538
|
1205 |
msgid "Optimization"
|
1206 |
msgstr "التحسين"
|
1207 |
|
1208 |
+
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:502
|
1209 |
msgid "Manual"
|
1210 |
msgstr "الدليل"
|
1211 |
|
1212 |
+
#: wp-statistics/wp-statistics.php:517
|
1213 |
msgid "Site"
|
1214 |
msgstr "موقع"
|
1215 |
|
1216 |
+
#: wp-statistics/wp-statistics.php:518
|
1217 |
msgid "Options"
|
1218 |
msgstr "خيارات"
|
1219 |
|
1220 |
+
#: wp-statistics/wp-statistics.php:644
|
1221 |
msgid "Today visitor"
|
1222 |
msgstr "زوار اليوم"
|
1223 |
|
1224 |
+
#: wp-statistics/wp-statistics.php:650
|
1225 |
msgid "Today visit"
|
1226 |
msgstr "زيارات اليوم"
|
1227 |
|
1228 |
+
#: wp-statistics/wp-statistics.php:656
|
1229 |
msgid "Yesterday visitor"
|
1230 |
msgstr "زيارات الأمس"
|
1231 |
|
1232 |
+
#: wp-statistics/wp-statistics.php:668
|
1233 |
msgid "View Stats"
|
1234 |
msgstr "عرض الإحصائيات"
|
1235 |
|
1236 |
+
#: wp-statistics/wp-statistics.php:692
|
1237 |
msgid "Download ODF file"
|
1238 |
msgstr "تحميل ملف ODF"
|
1239 |
|
1240 |
+
#: wp-statistics/wp-statistics.php:693
|
1241 |
msgid "Download HTML file"
|
1242 |
msgstr "تحميل ملف HTML"
|
1243 |
|
1244 |
+
#: wp-statistics/wp-statistics.php:697
|
1245 |
msgid "Manual file not found."
|
1246 |
msgstr "لم يتم العثور على ملف الدليل."
|
1247 |
|
1248 |
+
#: wp-statistics/wp-statistics.php:764 wp-statistics/wp-statistics.php:891
|
1249 |
+
#: wp-statistics/wp-statistics.php:926
|
1250 |
msgid "You do not have sufficient permissions to access this page."
|
1251 |
msgstr "ليس لديك الصلاحيات الكافية لدخول هذه الصفحة."
|
1252 |
|
1307 |
msgid "Top 10 Browsers"
|
1308 |
msgstr "أفضل 10 متصفحات"
|
1309 |
|
1310 |
+
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:471
|
1311 |
msgid "Top 10 Countries"
|
1312 |
msgstr "أعلى 10 دول"
|
1313 |
|
1321 |
msgid "Hit Statistics"
|
1322 |
msgstr "احصائية النقرات"
|
1323 |
|
1324 |
+
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:461
|
1325 |
msgid "Top 10 Pages"
|
1326 |
msgstr "أفضل 10 صفحات"
|
1327 |
|
1328 |
#: wp-statistics/dashboard.php:62
|
1329 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1330 |
+
#: wp-statistics/wp-statistics.php:453
|
1331 |
msgid "Recent Visitors"
|
1332 |
msgstr "الزيارات الأخيرة"
|
1333 |
|
1334 |
#: wp-statistics/dashboard.php:63
|
1335 |
#: wp-statistics/includes/log/top-referring.php:59
|
1336 |
#: wp-statistics/includes/log/top-referring.php:81
|
1337 |
+
#: wp-statistics/wp-statistics.php:468
|
1338 |
msgid "Top Referring Sites"
|
1339 |
msgstr "أعلى المواقع اشارة"
|
1340 |
|
1341 |
#: wp-statistics/dashboard.php:64
|
1342 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1343 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1344 |
+
#: wp-statistics/wp-statistics.php:451
|
1345 |
msgid "Search Engine Referrals"
|
1346 |
msgstr "إحالات محرك البحث"
|
1347 |
|
1348 |
+
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:466
|
1349 |
msgid "Summary"
|
1350 |
msgstr "ملخص"
|
1351 |
|
1352 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1353 |
+
#: wp-statistics/wp-statistics.php:452
|
1354 |
msgid "Latest Search Words"
|
1355 |
msgstr "أحدث كلمات البحث"
|
1356 |
|
1420 |
msgstr "انقر للتبديل"
|
1421 |
|
1422 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1423 |
+
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:467
|
1424 |
+
#: wp-statistics/wp-statistics.php:527
|
1425 |
msgid "Browsers"
|
1426 |
msgstr "المتصفحات"
|
1427 |
|
1494 |
#: wp-statistics/includes/log/exclusions.php:95
|
1495 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1496 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1497 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1498 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1499 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1500 |
msgid "days"
|
1509 |
msgstr "الرسم البياني لاحصائيات النقرات"
|
1510 |
|
1511 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1512 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1513 |
msgid "Hits in the last"
|
1514 |
msgstr "آخر النقرات"
|
1515 |
|
1516 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1517 |
+
#: wp-statistics/includes/log/widgets/hits.php:65
|
1518 |
msgid "Number of visits and visitors"
|
1519 |
msgstr "عدد الزيارات والزوار"
|
1520 |
|
1521 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1522 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1523 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1524 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1525 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1526 |
msgid "Visit"
|
1528 |
|
1529 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1530 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1531 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1532 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1533 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1534 |
msgid "Visitor"
|
1731 |
msgid "Other"
|
1732 |
msgstr "أخرى"
|
1733 |
|
1734 |
+
#: wp-statistics/wp-statistics.php:456
|
1735 |
msgid "Today Visitors Map"
|
1736 |
msgstr "خريطة زوار اليوم"
|
1737 |
|
1786 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1787 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1788 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1789 |
+
#: wp-statistics/wp-statistics.php:530
|
1790 |
msgid "Hits"
|
1791 |
msgstr "نقرات"
|
1792 |
|
1805 |
|
1806 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1807 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1808 |
+
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:297
|
1809 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1810 |
msgid "Access denied!"
|
1811 |
msgstr "تم رفض الوصول!"
|
1861 |
|
1862 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1863 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1864 |
+
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:528
|
1865 |
msgid "Countries"
|
1866 |
msgstr "الدول"
|
1867 |
|
1946 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1947 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1948 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1949 |
+
#: wp-statistics/wp-statistics.php:537
|
1950 |
msgid "Visitors"
|
1951 |
msgstr "الزوار"
|
1952 |
|
2448 |
#: wp-statistics/includes/log/exclusions.php:197
|
2449 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2450 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2451 |
+
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:529
|
2452 |
msgid "Exclusions"
|
2453 |
msgstr "الاستثناءات"
|
2454 |
|
2658 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2659 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2660 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2661 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:74
|
2662 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:86
|
2663 |
msgid "Active"
|
2664 |
msgstr "تفعيل"
|
2665 |
|
languages/wp_statistics-ary.mo
ADDED
Binary file
|
languages/wp_statistics-ary.po
ADDED
@@ -0,0 +1,2713 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of WP Statistics in Moroccan Arabic
|
2 |
+
# This file is distributed under the same license as the WP Statistics package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"PO-Revision-Date: 2016-04-05 21:10:28+0000\n"
|
6 |
+
"MIME-Version: 1.0\n"
|
7 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
+
"Content-Transfer-Encoding: 8bit\n"
|
9 |
+
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
10 |
+
"X-Generator: GlotPress/2.1.0\n"
|
11 |
+
"Language: ar_MA\n"
|
12 |
+
"Project-Id-Version: WP Statistics\n"
|
13 |
+
|
14 |
+
#: wp-statistics/ajax.php:215
|
15 |
+
msgid "No matching widget found!"
|
16 |
+
msgstr ""
|
17 |
+
|
18 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:180
|
19 |
+
msgid "Zlib gzopen()"
|
20 |
+
msgstr ""
|
21 |
+
|
22 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:185
|
23 |
+
msgid "If the gzopen() function is installed. gzopen() is required for the GeoIP database to be downloaded successfully."
|
24 |
+
msgstr ""
|
25 |
+
|
26 |
+
#: wp-statistics/wps-updates.php:16
|
27 |
+
msgid "Error the download_url() or gzopen() functions do not exist!"
|
28 |
+
msgstr ""
|
29 |
+
|
30 |
+
#: wp-statistics/wps-updates.php:45
|
31 |
+
msgid "Error setting permissions of the GeoIP database directory, make sure your web server has permissions to write to directories in : %s"
|
32 |
+
msgstr ""
|
33 |
+
|
34 |
+
#: wp-statistics/wp-statistics.php:95
|
35 |
+
msgid "— You are running an unsupported version of PHP."
|
36 |
+
msgstr ""
|
37 |
+
|
38 |
+
#: wp-statistics/wp-statistics.php:95
|
39 |
+
msgid "WP Statistics Disabled"
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: wp-statistics/wp-statistics.php:99
|
43 |
+
msgid "WP Statistics has detected PHP version %s which is unsupported, WP Statistics requires PHP Version %s or higher!"
|
44 |
+
msgstr ""
|
45 |
+
|
46 |
+
#: wp-statistics/wp-statistics.php:101
|
47 |
+
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
48 |
+
msgstr ""
|
49 |
+
|
50 |
+
#: wp-statistics/ajax.php:294
|
51 |
+
msgid "ERROR: Widget not found!"
|
52 |
+
msgstr ""
|
53 |
+
|
54 |
+
#: wp-statistics/dashboard.php:107 wp-statistics/editor.php:66
|
55 |
+
#: wp-statistics/includes/log/log.php:20
|
56 |
+
msgid "Loading..."
|
57 |
+
msgstr ""
|
58 |
+
|
59 |
+
#: wp-statistics/dashboard.php:125 wp-statistics/editor.php:84
|
60 |
+
#: wp-statistics/includes/log/log.php:2
|
61 |
+
msgid "Reloading..."
|
62 |
+
msgstr ""
|
63 |
+
|
64 |
+
#: wp-statistics/includes/log/top-visitors.php:41
|
65 |
+
#: wp-statistics/wp-statistics.php:450
|
66 |
+
msgid "Top Visitors"
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: wp-statistics/wp-statistics.php:206
|
70 |
+
msgid "optimization page"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:35
|
74 |
+
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:63
|
75 |
+
msgid "Enabled"
|
76 |
+
msgstr "تفعيل"
|
77 |
+
|
78 |
+
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:30
|
79 |
+
msgid "Purge Old Data Daily"
|
80 |
+
msgstr ""
|
81 |
+
|
82 |
+
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:41
|
83 |
+
msgid "A WP Cron job will be run daily to purge any data older than a set number of days."
|
84 |
+
msgstr ""
|
85 |
+
|
86 |
+
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:47
|
87 |
+
msgid "Purge data older than"
|
88 |
+
msgstr ""
|
89 |
+
|
90 |
+
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:58
|
91 |
+
msgid "Purge High Hit Count Visitors Daily"
|
92 |
+
msgstr ""
|
93 |
+
|
94 |
+
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:69
|
95 |
+
msgid "A WP Cron job will be run daily to purge any users statistics data where the user has more than the defined number of hits in a day (aka they are probably a bot)."
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:81
|
99 |
+
msgid "The number of hits required to delete the visitor. Minimum value is 10 hits. Invalid values will disable the daily maintenance."
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
#: wp-statistics/shortcode.php:184
|
103 |
+
msgid "The post/page id to get page statistics on."
|
104 |
+
msgstr "رقم المقال/الصفحة للحصول على احصائياتها."
|
105 |
+
|
106 |
+
#: wp-statistics/shortcode.php:181
|
107 |
+
msgid "Post/Page ID"
|
108 |
+
msgstr "رقم المقال/الصفحة"
|
109 |
+
|
110 |
+
#: wp-statistics/includes/functions/functions.php:435
|
111 |
+
msgid "Ask.com"
|
112 |
+
msgstr "Ask.com"
|
113 |
+
|
114 |
+
#: wp-statistics/shortcode.php:158
|
115 |
+
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it. Use \"total\" to get all recorded dates."
|
116 |
+
msgstr "الجدول الزمني للحصول على إحصائية لـ, strtotime() (http://php.net/manual/en/datetime.formats.php) سيتم استخدامها لحساب ذلك. استخدام \"المجموع\" للحصول على كل التواريخ المسجلة."
|
117 |
+
|
118 |
+
#: wp-statistics/wp-statistics.php:180
|
119 |
+
msgid "visitor tracking"
|
120 |
+
msgstr "تتبع الزوار"
|
121 |
+
|
122 |
+
#: wp-statistics/wp-statistics.php:181
|
123 |
+
msgid "geoip collection"
|
124 |
+
msgstr "مجموعة geoip"
|
125 |
+
|
126 |
+
#: wp-statistics/wp-statistics.php:197
|
127 |
+
msgid "visit database index"
|
128 |
+
msgstr "زيارة فهرس قاعدة البيانات"
|
129 |
+
|
130 |
+
#: wp-statistics/wp-statistics.php:206
|
131 |
+
msgid "Database updates are required, please go to %s and update the following: %s"
|
132 |
+
msgstr "يجب تحديث قاعدة البيانات، يرجى الذهاب إلى %s وتحديث التالي: %s"
|
133 |
+
|
134 |
+
#: wp-statistics/wp-statistics.php:197
|
135 |
+
msgid "countries database index"
|
136 |
+
msgstr "دول فهرس قاعدة البيانات"
|
137 |
+
|
138 |
+
#: wp-statistics/wp-statistics.php:190
|
139 |
+
msgid "search table"
|
140 |
+
msgstr "جدول البحث"
|
141 |
+
|
142 |
+
#: wp-statistics/wp-statistics.php:184
|
143 |
+
msgid "settings page"
|
144 |
+
msgstr "صفحة الإعدادات"
|
145 |
+
|
146 |
+
#: wp-statistics/wp-statistics.php:184 wp-statistics/wp-statistics.php:206
|
147 |
+
msgid ","
|
148 |
+
msgstr "،"
|
149 |
+
|
150 |
+
#: wp-statistics/wp-statistics.php:184
|
151 |
+
msgid "The following features are disabled, please go to %s and enable them: %s"
|
152 |
+
msgstr "الميزات التالية معطلة، يرجى الذهاب إلى %s وتمكينها: %s"
|
153 |
+
|
154 |
+
#: wp-statistics/wp-statistics.php:179
|
155 |
+
msgid "hit tracking"
|
156 |
+
msgstr "تتبع النقرات"
|
157 |
+
|
158 |
+
#: wp-statistics/wp-statistics.php:178
|
159 |
+
msgid "online user tracking"
|
160 |
+
msgstr "تتبع المستخدم المتصل"
|
161 |
+
|
162 |
+
#: wp-statistics/wp-statistics.php:791
|
163 |
+
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
164 |
+
msgstr "جدول الإضافة التالية غير موجود في قاعدة البيانات, يرجى إعادة تشغيل %s للتثبيت الروتيني %s:"
|
165 |
+
|
166 |
+
#: wp-statistics/includes/optimization/wps-optimization.php:196
|
167 |
+
msgid "Search table conversion complete, %d rows added."
|
168 |
+
msgstr "بحث تحويل الجدول المكتمل، الصفوف %d أضيفت."
|
169 |
+
|
170 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:113
|
171 |
+
msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion."
|
172 |
+
msgstr "التثبيت القديمة من احصائيات ووردبريس تخزن تفاصيل البحث في جدول آخر التي يمكن أن تصبح مشكلة على أداء مجموعات البيانات الكبيرة. تم إنشاء جدول جديد لإجراء هذه المعلومات بطريقة أفضل للتحجيم."
|
173 |
+
|
174 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:94
|
175 |
+
msgid "Search Table"
|
176 |
+
msgstr "جدول البحث"
|
177 |
+
|
178 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:99
|
179 |
+
msgid "Convert"
|
180 |
+
msgstr "التحويل"
|
181 |
+
|
182 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:106
|
183 |
+
msgid "Convert Now!"
|
184 |
+
msgstr "تحويل الآن!"
|
185 |
+
|
186 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:107
|
187 |
+
msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion, however the old data must first be converted to the new format before it can be used."
|
188 |
+
msgstr "التثبيت القديمة من احصائيات ووردبريس تخزن تفاصيل البحث في جدول آخر التي يمكن أن تصبح مشكلة على أداء مجموعات البيانات الكبيرة. تم إنشاء جدول جديد لإجراء هذه المعلومات بطريقة أفضل للتدرج، ولكن يجب أولا تحويل البيانات القديمة إلى الشكل الجديد قبل أن تتمكن من استخدامها."
|
189 |
+
|
190 |
+
#: wp-statistics/includes/log/exclusions.php:24
|
191 |
+
msgid "Referrer Spam"
|
192 |
+
msgstr "إحالات البريد المزعج"
|
193 |
+
|
194 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:279
|
195 |
+
msgid "Download of the Piwik Referrer Spam Blacklist database will be scheduled for once a week."
|
196 |
+
msgstr "سيتم جدولة التحميل من قاعدة البيانات Piwik لإحالات الرسائل الغير مرغوب فيها بالقائمة السوداء لمرة واحدة في الأسبوع."
|
197 |
+
|
198 |
+
#: wp-statistics/includes/settings/wps-settings.php:105
|
199 |
+
msgid "Externals"
|
200 |
+
msgstr "الجهات الخارجية"
|
201 |
+
|
202 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:220
|
203 |
+
msgid "Piwik Referrer Spam Blacklist settings"
|
204 |
+
msgstr "إعدادات القائمة السوداء Piwik لإحالات الرسائل الغير مرغوب فيها"
|
205 |
+
|
206 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:255
|
207 |
+
msgid "Schedule weekly update of Piwik Referrer Spam Blacklist DB"
|
208 |
+
msgstr "جدولة التحديث الأسبوعي لـ Piwik لإحالات الرسائل الغير مرغوب فيها بقاعدة بيانات القائمة السوداء"
|
209 |
+
|
210 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:248
|
211 |
+
msgid "Download Piwik Referrer Spam Blacklist Database"
|
212 |
+
msgstr "تحميل قاعدة البيانات Piwik لإحالات الرسائل الغير مرغوب فيها من القائمة السوداء"
|
213 |
+
|
214 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:243
|
215 |
+
msgid "Update Piwik Referrer Spam Blacklist Info"
|
216 |
+
msgstr "تحديث Piwik لإحالات الرسائل الغير مرغوب فيها بمعلومات القائمة السوداء"
|
217 |
+
|
218 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:237
|
219 |
+
msgid "The Piwik Referrer Spam Blacklist database will be downloaded and used to detect referrer spam."
|
220 |
+
msgstr "سيتم تحميل قاعدة البيانات Piwik لإحالات الرسائل الغير مرغوب فيها بالقائمة السوداء واستخدامها للكشف عن مرجعية البريد المزعج."
|
221 |
+
|
222 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:225
|
223 |
+
msgid "Referrer spam blacklist is provided by Piwik, available from %s."
|
224 |
+
msgstr "يتم توفير إحالات الرسائل الغير مرغوب فيها بالقائمة السوداء من قبل Piwik، وهي متاحة من %s."
|
225 |
+
|
226 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:231
|
227 |
+
msgid "Piwik Referrer Spam Blacklist usage"
|
228 |
+
msgstr "المرجع Piwik للرسائل الغير المرغوب فيها باستخدام القائمة السوداء"
|
229 |
+
|
230 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:148
|
231 |
+
msgid "Treat corrupt browser info as a bot"
|
232 |
+
msgstr "علاج معلومات المتصفح فاسدة بوت"
|
233 |
+
|
234 |
+
#: wp-statistics/includes/log/exclusions.php:24
|
235 |
+
msgid "404 Pages"
|
236 |
+
msgstr "404 صفحات"
|
237 |
+
|
238 |
+
#: wp-statistics/includes/log/top-visitors.php:26
|
239 |
+
msgid "Date"
|
240 |
+
msgstr "تاريخ"
|
241 |
+
|
242 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:151
|
243 |
+
msgid "Treat any visitor with corrupt browser info (missing IP address or empty user agent string) as a robot."
|
244 |
+
msgstr "علاج أي زائر مع معلومات الفاسدة المتصفح (عنوان IP مفقود أو فارغة سلسلة عامل المستخدم) على الروبوت."
|
245 |
+
|
246 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:215
|
247 |
+
msgid "Excluded 404 pages"
|
248 |
+
msgstr "استبعاد 404 صفحات"
|
249 |
+
|
250 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:218
|
251 |
+
msgid "Exclude any URL that returns a \"404 - Not Found\" message."
|
252 |
+
msgstr "استبعاد أي URL التي تقوم بإرجاع - رسالة "404 لم يتم العثور على"."
|
253 |
+
|
254 |
+
#: wp-statistics/wps-updates.php:37
|
255 |
+
msgid "Error creating GeoIP database directory, make sure your web server has permissions to create directories in : %s"
|
256 |
+
msgstr "خطأ في إنشاء GeoIP دليل قاعدة البيانات، تأكد من خادم الويب الخاص بك لديه أذونات لإنشاء الدلائل في:٪ الصورة"
|
257 |
+
|
258 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:281
|
259 |
+
msgid "Add page title to empty search words"
|
260 |
+
msgstr "إضافة عنوان الصفحة على كلمات بحث فارغة"
|
261 |
+
|
262 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:287
|
263 |
+
msgid "If a search engine is identified as the referrer but it does not include the search query this option will substitute the page title in quotes preceded by \"~:\" as the search query to help identify what the user may have been searching for."
|
264 |
+
msgstr "إذا تم التعرف على محرك بحث باسم المرجع لكنه لا يشمل استعلام البحث هذا الخيار يوجب استبدال عنوان الصفحة في الاقتباس الذي يسبقه \"~:\" كما طلب البحث للمساعدة في تحديد ما قد تم البحث عنه من قبل المستخدم."
|
265 |
+
|
266 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:218
|
267 |
+
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:75
|
268 |
+
msgid "Purge visitors with more than"
|
269 |
+
msgstr "الزوار المطهرين مع أكثر من"
|
270 |
+
|
271 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:223
|
272 |
+
msgid "hits"
|
273 |
+
msgstr "مشاهدات"
|
274 |
+
|
275 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:224
|
276 |
+
msgid "Deleted user statistics data where the user has more than the defined number of hits in a day. This can be useful to clear up old data when your site has been hit by a bot. This will remove the visitor and their hits to the site, however it will not remove individual page hits as that data is not recorded on a per use basis. Minimum value is 10 hits."
|
277 |
+
msgstr "حذف بيانات إحصائيات المستخدم حيث أن المستخدم لديه أكثر من عدد محدد من الزيارات في يوم واحد. هذا يمكن أن يكون مفيد لتوضيح البيانات القديمة عندما يتم زيارة موقعك من خلال بوت. سيؤدي ذلك إلى إزالة الزوار ونقراتهم في الموقع، على كل حال هذا لن يزيل النقرات الفردية للصفحة كما لم يتم تسجيل تلك البيانات على أساس كل استخدام. قيمة الحد الأدنى هو 10 نقرات."
|
278 |
+
|
279 |
+
#: wp-statistics/includes/functions/purge-hits.php:28
|
280 |
+
msgid "No visitors found to purge."
|
281 |
+
msgstr "لم يتم إيجاد زوار في التطهير."
|
282 |
+
|
283 |
+
#: wp-statistics/includes/functions/purge-hits.php:25
|
284 |
+
msgid "%s records purged successfully."
|
285 |
+
msgstr "%s سجلات طهرت بنجاح."
|
286 |
+
|
287 |
+
#: wp-statistics/ajax.php:178
|
288 |
+
#: wp-statistics/includes/functions/purge-hits.php:32
|
289 |
+
msgid "Number of hits must be greater than or equal to 10!"
|
290 |
+
msgstr "عدد الزيارات يجب أن يكون أكبر من أو يساوي 10!"
|
291 |
+
|
292 |
+
#: wp-statistics/shortcode.php:141
|
293 |
+
msgid "Page Visits"
|
294 |
+
msgstr "عدد زيارات هذه الصفحة"
|
295 |
+
|
296 |
+
#: wp-statistics/shortcode.php:144
|
297 |
+
msgid "Page Count"
|
298 |
+
msgstr "عدد الصفحة"
|
299 |
+
|
300 |
+
#: wp-statistics/shortcode.php:145
|
301 |
+
msgid "Comment Count"
|
302 |
+
msgstr "عدد التعليق"
|
303 |
+
|
304 |
+
#: wp-statistics/shortcode.php:146
|
305 |
+
msgid "Spam Count"
|
306 |
+
msgstr "عدد السبام"
|
307 |
+
|
308 |
+
#: wp-statistics/shortcode.php:147
|
309 |
+
msgid "User Count"
|
310 |
+
msgstr "عدد المستخدم"
|
311 |
+
|
312 |
+
#: wp-statistics/shortcode.php:148
|
313 |
+
msgid "Post Average"
|
314 |
+
msgstr "متوسط المشاركة"
|
315 |
+
|
316 |
+
#: wp-statistics/shortcode.php:149
|
317 |
+
msgid "Comment Average"
|
318 |
+
msgstr "متوسط التعليق"
|
319 |
+
|
320 |
+
#: wp-statistics/shortcode.php:150
|
321 |
+
msgid "User Average"
|
322 |
+
msgstr "متوسط المستخدم"
|
323 |
+
|
324 |
+
#: wp-statistics/shortcode.php:162
|
325 |
+
msgid "Search Provider"
|
326 |
+
msgstr "محرك البحث"
|
327 |
+
|
328 |
+
#: wp-statistics/shortcode.php:165
|
329 |
+
msgid "The search provider to get statistics on."
|
330 |
+
msgstr "مزود البحث للحصول على إحصائيات عن."
|
331 |
+
|
332 |
+
#: wp-statistics/shortcode.php:169
|
333 |
+
msgid "Number Format"
|
334 |
+
msgstr "صيغة الرقم"
|
335 |
+
|
336 |
+
#: wp-statistics/shortcode.php:172
|
337 |
+
msgid "The format to display numbers in: i18n, english, none."
|
338 |
+
msgstr "صيغة الأرقام للعرض في: I18N، الانجليزية، لا شيء."
|
339 |
+
|
340 |
+
#: wp-statistics/shortcode.php:176
|
341 |
+
msgid "English"
|
342 |
+
msgstr "الإنجليزية"
|
343 |
+
|
344 |
+
#: wp-statistics/shortcode.php:177
|
345 |
+
msgid "International"
|
346 |
+
msgstr "دولي"
|
347 |
+
|
348 |
+
#: wp-statistics/includes/log/exclusions.php:191
|
349 |
+
#: wp-statistics/includes/log/hit-statistics.php:164
|
350 |
+
msgid "Hits Statistics Summary"
|
351 |
+
msgstr "موجز إحصائيات المشاهدات"
|
352 |
+
|
353 |
+
#: wp-statistics/includes/log/exclusions.php:201
|
354 |
+
#: wp-statistics/includes/log/hit-statistics.php:175
|
355 |
+
msgid "Chart Total"
|
356 |
+
msgstr "إجمالي الرسم البياني"
|
357 |
+
|
358 |
+
#: wp-statistics/includes/log/exclusions.php:206
|
359 |
+
#: wp-statistics/includes/log/hit-statistics.php:181
|
360 |
+
msgid "All Time Total"
|
361 |
+
msgstr "مجموع كل الوقت"
|
362 |
+
|
363 |
+
#: wp-statistics/includes/log/log.php:6
|
364 |
+
msgid "Have you thought about donating to WP Statistics?"
|
365 |
+
msgstr "هل فكرت في التبرع لإحصائيات ووردبريس؟"
|
366 |
+
|
367 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:20
|
368 |
+
#: wp-statistics/wp-statistics.php:429
|
369 |
+
msgid "Donate"
|
370 |
+
msgstr "التبرع"
|
371 |
+
|
372 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:24
|
373 |
+
msgid "Fell like showing us how much you enjoy WP Statistics? Drop by our %s page and show us some love!"
|
374 |
+
msgstr "صف لنا مدى إستمتاعك في منتج إحصائيات ووردبريس؟ واضغط صفحة %s وبيّن لنا بعض الحب!"
|
375 |
+
|
376 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:24
|
377 |
+
msgid "donation"
|
378 |
+
msgstr "التبرعات"
|
379 |
+
|
380 |
+
#: wp-statistics/includes/log/log.php:6
|
381 |
+
msgid "Donate Now!"
|
382 |
+
msgstr "تبرع الآن!"
|
383 |
+
|
384 |
+
#: wp-statistics/includes/log/log.php:6
|
385 |
+
msgid "Close"
|
386 |
+
msgstr "إغلاق"
|
387 |
+
|
388 |
+
#: wp-statistics/shortcode.php:135
|
389 |
+
msgid "Select the statistic you wish to display."
|
390 |
+
msgstr "حدد الإحصائية التي ترغب في عرضها."
|
391 |
+
|
392 |
+
#: wp-statistics/shortcode.php:132
|
393 |
+
msgid "Statistic"
|
394 |
+
msgstr "إحصائية"
|
395 |
+
|
396 |
+
#: wp-statistics/shortcode.php:143
|
397 |
+
msgid "Post Count"
|
398 |
+
msgstr "عدد المقال"
|
399 |
+
|
400 |
+
#: wp-statistics/shortcode.php:155
|
401 |
+
msgid "Time Frame"
|
402 |
+
msgstr "الإطار الزمني"
|
403 |
+
|
404 |
+
#: wp-statistics/includes/functions/functions.php:1032
|
405 |
+
msgid "to"
|
406 |
+
msgstr "إلى"
|
407 |
+
|
408 |
+
#: wp-statistics/includes/functions/functions.php:1032
|
409 |
+
#: wp-statistics/includes/log/top-visitors.php:29
|
410 |
+
msgid "Go"
|
411 |
+
msgstr "إذهب"
|
412 |
+
|
413 |
+
#: wp-statistics/includes/log/top-pages.php:102
|
414 |
+
msgid "Rank #5"
|
415 |
+
msgstr "المرتبة #5"
|
416 |
+
|
417 |
+
#: wp-statistics/includes/log/top-pages.php:102
|
418 |
+
msgid "Rank #4"
|
419 |
+
msgstr "المرتبة #4"
|
420 |
+
|
421 |
+
#: wp-statistics/includes/log/top-pages.php:102
|
422 |
+
msgid "Rank #3"
|
423 |
+
msgstr "المرتبة #3"
|
424 |
+
|
425 |
+
#: wp-statistics/includes/log/top-pages.php:102
|
426 |
+
msgid "Rank #1"
|
427 |
+
msgstr "المرتبة #1"
|
428 |
+
|
429 |
+
#: wp-statistics/includes/log/top-pages.php:102
|
430 |
+
msgid "Rank #2"
|
431 |
+
msgstr "المرتبة #2"
|
432 |
+
|
433 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:60
|
434 |
+
msgid "Visits Table"
|
435 |
+
msgstr "جدول الزيارات"
|
436 |
+
|
437 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:75
|
438 |
+
msgid "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."
|
439 |
+
msgstr "التثبيتات القديمة من احصائيات ووردبريس تسمح للإدخالات المكررة في جدول الزيارات في كل مرة. بتثبيت أحدث حماية مقابل هذا الفهرس الفريد على الجدول. و لإنشاء فهرس على الإصدارات القديمة المثبتة يجب أن يتم حذف الإدخالات المكررة أولا. أنقر على \"التحديث الآن\" لفحص جدول الزيارات، وحذف الإدخالات المكررة وإضافة الفهرس."
|
440 |
+
|
441 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:76
|
442 |
+
msgid "This operation could take a long time on installs with many rows in the visits table."
|
443 |
+
msgstr "هذه العملية يمكن أن تستغرق وقتا طويلا لتثبيت العديد من الصفوف في جدول الزيارات."
|
444 |
+
|
445 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:82
|
446 |
+
msgid "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."
|
447 |
+
msgstr "التثبيتات القديمة من احصائيات ووردبريس تسمح للإدخالات المكررة في جدول الزيارات. للحماية من ذلك ثبت الفهرس الفريد في الجدول."
|
448 |
+
|
449 |
+
#: wp-statistics/includes/log/last-visitor.php:68
|
450 |
+
msgid "Filtered by"
|
451 |
+
msgstr "تمت تصفيتها من قبل"
|
452 |
+
|
453 |
+
#: wp-statistics/includes/functions/functions.php:1026
|
454 |
+
#: wp-statistics/includes/functions/functions.php:1029
|
455 |
+
msgid "Range"
|
456 |
+
msgstr "المدى"
|
457 |
+
|
458 |
+
#: wp-statistics/includes/functions/functions.php:1032
|
459 |
+
#: wp-statistics/includes/log/top-visitors.php:29
|
460 |
+
msgid "MM/DD/YYYY"
|
461 |
+
msgstr "MM/DD/YYYY"
|
462 |
+
|
463 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:342
|
464 |
+
msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
|
465 |
+
msgstr "لا تستخدم الترجمات واستخدام بدلاً من ذلك الإعدادات الافتراضية الإنجليزية لإحصائيات ووردبريس (يتطلب تحميل صفحتين)"
|
466 |
+
|
467 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:336
|
468 |
+
msgid "Force English"
|
469 |
+
msgstr "إجبار اللغة الإنجليزية"
|
470 |
+
|
471 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:331
|
472 |
+
msgid "Languages"
|
473 |
+
msgstr "اللغات"
|
474 |
+
|
475 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:227
|
476 |
+
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."
|
477 |
+
msgstr "ملاحظة: هذا الخيار لن يتعامل مع معايير عنوان URL، (أي شيء بعد علامة؟) إلا اسم البرنامج النصي . سيتم تجاهل إدخالات أقل من حرفين."
|
478 |
+
|
479 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:225
|
480 |
+
msgid "A list of local urls (ie. /wordpress/about, one per line) to exclude from statistics collection."
|
481 |
+
msgstr "قائمة عناوين المواقع المحلية (اتصل بنا,حول, واحد في كل سطر) للإستبعاد من جمع الإحصائيات."
|
482 |
+
|
483 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:222
|
484 |
+
msgid "Excluded URLs list"
|
485 |
+
msgstr "قائمة عناوين المواقع المستبعدة"
|
486 |
+
|
487 |
+
#: wp-statistics/includes/log/exclusions.php:24
|
488 |
+
msgid "Excluded URL"
|
489 |
+
msgstr "العناوين المستبعدة"
|
490 |
+
|
491 |
+
#: wp-statistics/includes/log/widgets/quickstats.php:52
|
492 |
+
#: wp-statistics/includes/log/widgets/summary.php:52
|
493 |
+
msgid "Last 365 Days (Year)"
|
494 |
+
msgstr "مشاركة 365 يوم (السنة)"
|
495 |
+
|
496 |
+
#: wp-statistics/includes/log/widgets/quickstats.php:46
|
497 |
+
#: wp-statistics/includes/log/widgets/summary.php:46
|
498 |
+
msgid "Last 30 Days (Month)"
|
499 |
+
msgstr "آخر 30 يوم (شهر)"
|
500 |
+
|
501 |
+
#: wp-statistics/includes/log/widgets/quickstats.php:40
|
502 |
+
#: wp-statistics/includes/log/widgets/summary.php:40
|
503 |
+
msgid "Last 7 Days (Week)"
|
504 |
+
msgstr "آخر 7 أيام (أسبوع)"
|
505 |
+
|
506 |
+
#: wp-statistics/includes/functions/functions.php:441
|
507 |
+
msgid "Yahoo!"
|
508 |
+
msgstr "ياهو!"
|
509 |
+
|
510 |
+
#: wp-statistics/includes/functions/functions.php:442
|
511 |
+
msgid "Yandex"
|
512 |
+
msgstr "ياندكس"
|
513 |
+
|
514 |
+
#: wp-statistics/includes/functions/functions.php:438
|
515 |
+
msgid "clearch.org"
|
516 |
+
msgstr "clearch.org"
|
517 |
+
|
518 |
+
#: wp-statistics/includes/functions/functions.php:439
|
519 |
+
msgid "DuckDuckGo"
|
520 |
+
msgstr "دك دك غو"
|
521 |
+
|
522 |
+
#: wp-statistics/includes/functions/functions.php:437
|
523 |
+
msgid "Bing"
|
524 |
+
msgstr "بينج"
|
525 |
+
|
526 |
+
#: wp-statistics/includes/functions/functions.php:436
|
527 |
+
msgid "Baidu"
|
528 |
+
msgstr "بايدو"
|
529 |
+
|
530 |
+
#: wp-statistics/includes/log/exclusions.php:24
|
531 |
+
msgid "Feeds"
|
532 |
+
msgstr "التغذيات"
|
533 |
+
|
534 |
+
#: wp-statistics/includes/log/exclusions.php:24
|
535 |
+
msgid "User Role"
|
536 |
+
msgstr "دور المستخدم"
|
537 |
+
|
538 |
+
#: wp-statistics/includes/log/exclusions.php:24
|
539 |
+
msgid "Login Page"
|
540 |
+
msgstr "صفحة تسجيل الدخول"
|
541 |
+
|
542 |
+
#: wp-statistics/includes/log/exclusions.php:24
|
543 |
+
msgid "Admin Page"
|
544 |
+
msgstr "صفحة الإدارة"
|
545 |
+
|
546 |
+
#: wp-statistics/includes/log/exclusions.php:24
|
547 |
+
msgid "Self Referral"
|
548 |
+
msgstr "الإحالة الذاتية"
|
549 |
+
|
550 |
+
#: wp-statistics/includes/log/exclusions.php:24
|
551 |
+
msgid "IP Match"
|
552 |
+
msgstr "المتطابق IP"
|
553 |
+
|
554 |
+
#: wp-statistics/includes/log/exclusions.php:24
|
555 |
+
msgid "Robot"
|
556 |
+
msgstr "روبوت"
|
557 |
+
|
558 |
+
#: wp-statistics/includes/log/online.php:100
|
559 |
+
msgid "Currently there are no users online in the site."
|
560 |
+
msgstr "حالياً هناك مستخدمين متواجدين في الموقع."
|
561 |
+
|
562 |
+
#: wp-statistics/includes/log/exclusions.php:24
|
563 |
+
msgid "Robot Threshold"
|
564 |
+
msgstr "الحد من الروبوت"
|
565 |
+
|
566 |
+
#: wp-statistics/includes/log/exclusions.php:24
|
567 |
+
msgid "Honey Pot"
|
568 |
+
msgstr "وعاء العسل"
|
569 |
+
|
570 |
+
#: wp-statistics/includes/log/widgets/page.php:8
|
571 |
+
msgid "Page Trending Stats"
|
572 |
+
msgstr "صفحة الإحصائيات الأكثر رواجاً"
|
573 |
+
|
574 |
+
#: wp-statistics/includes/log/exclusions.php:24
|
575 |
+
msgid "Hostname"
|
576 |
+
msgstr "اسم المضيف"
|
577 |
+
|
578 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:93
|
579 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:133
|
580 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:149
|
581 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:188
|
582 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:200
|
583 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:229
|
584 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:122
|
585 |
+
msgid "Enable or disable this feature"
|
586 |
+
msgstr "تمكين أو تعطيل هذه الميزة"
|
587 |
+
|
588 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:99
|
589 |
+
msgid "Check for online users every"
|
590 |
+
msgstr "تحقق من المتصلين في الموقع في كل"
|
591 |
+
|
592 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:104
|
593 |
+
msgid "Second"
|
594 |
+
msgstr "ثانية"
|
595 |
+
|
596 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:105
|
597 |
+
msgid "Time for the check accurate online user in the site. Now: %s Second"
|
598 |
+
msgstr "وقت التحقق من المستخدمين المتصلين في الموقع. الآن: %s ثانية"
|
599 |
+
|
600 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:111
|
601 |
+
msgid "Record all user"
|
602 |
+
msgstr "تسجيل جميع المستخدمين"
|
603 |
+
|
604 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:117
|
605 |
+
msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
|
606 |
+
msgstr "يتجاهل إعدادات الإقصاء ويسجل كل المستخدمين التي يتم على الانترنت (بما في ذلك الإحالة الذاتية والروبوتات). وينبغي أن تستخدم فقط لاستكشاف الأخطاء وإصلاحها."
|
607 |
+
|
608 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:155
|
609 |
+
msgid "Store entire user agent string"
|
610 |
+
msgstr "تخزين كامل سلسلة عامل المستخدم"
|
611 |
+
|
612 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:161
|
613 |
+
msgid "Only enabled for debugging"
|
614 |
+
msgstr "تمكين فقط من أجل التصحيح"
|
615 |
+
|
616 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:167
|
617 |
+
msgid "Coefficient per visitor"
|
618 |
+
msgstr "درجة لكل زائر"
|
619 |
+
|
620 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:172
|
621 |
+
msgid "For each visit to account for several hits. Currently %s."
|
622 |
+
msgstr "حساب توجيه النقرات لكل زائر. حالياً %s."
|
623 |
+
|
624 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
625 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
626 |
+
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:532
|
627 |
+
msgid "Pages"
|
628 |
+
msgstr "الصفحات"
|
629 |
+
|
630 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:194
|
631 |
+
msgid "Track all pages"
|
632 |
+
msgstr "تتبع جميع الصفحات"
|
633 |
+
|
634 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:209
|
635 |
+
msgid "Strip parameters from URI"
|
636 |
+
msgstr "معايير الشريط من URI"
|
637 |
+
|
638 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:215
|
639 |
+
msgid "This will remove anything after the ? in a URL."
|
640 |
+
msgstr "سيؤدي هذا إلى إزالة أي شيء بعد؟ في URL."
|
641 |
+
|
642 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:223
|
643 |
+
msgid "Disable hits column in post/pages list"
|
644 |
+
msgstr "تعطيل عمود النقرات في قائمة المقال/الصفحات"
|
645 |
+
|
646 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:234
|
647 |
+
msgid "Miscellaneous"
|
648 |
+
msgstr "متفرقات"
|
649 |
+
|
650 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:239
|
651 |
+
msgid "Show stats in menu bar"
|
652 |
+
msgstr "إظهار الاحصائيات في شريط القوائم"
|
653 |
+
|
654 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:244
|
655 |
+
msgid "No"
|
656 |
+
msgstr "لا"
|
657 |
+
|
658 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:245
|
659 |
+
msgid "Yes"
|
660 |
+
msgstr "نعم"
|
661 |
+
|
662 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:247
|
663 |
+
msgid "Show stats in admin menu bar"
|
664 |
+
msgstr "اظهار الاحصائيات في شريط القوائم الإداري"
|
665 |
+
|
666 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:253
|
667 |
+
msgid "Hide admin notices about non active features"
|
668 |
+
msgstr "اخفاء إشعارات المشرف حول الميزات غير نشطة"
|
669 |
+
|
670 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:259
|
671 |
+
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."
|
672 |
+
msgstr "افتراضيا احصائيات ووردبريس يعرض تنبيها إذا تم تعطيل أي من الميزات الأساسية في صفحة المشرف، وهذا الخيار لتعطيل هذه الإشعارات."
|
673 |
+
|
674 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:265
|
675 |
+
msgid "Delete the manual"
|
676 |
+
msgstr "حذف الدليل"
|
677 |
+
|
678 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:271
|
679 |
+
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."
|
680 |
+
msgstr "افتراضيا احصائيات ووردبريس يخزن دليل المشرف في الدليل المساعد (~ 5 ميج)، إذا تم تمكين هذا الخيار سيتم حذفه الآن، وخلال الترقيات في المستقبل."
|
681 |
+
|
682 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:276
|
683 |
+
msgid "Search Engines"
|
684 |
+
msgstr "محركات البحث"
|
685 |
+
|
686 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:293
|
687 |
+
msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
|
688 |
+
msgstr "تعطيل جميع محركات البحث غير مسموح, سيؤدي ذلك الى تنشيط جميع محركات البحث."
|
689 |
+
|
690 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:308
|
691 |
+
msgid "disable"
|
692 |
+
msgstr "تعطيل"
|
693 |
+
|
694 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:309
|
695 |
+
msgid "Disable %s from data collection and reporting."
|
696 |
+
msgstr "تعطيل %s من جمع البيانات وإعداد التقارير."
|
697 |
+
|
698 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:315
|
699 |
+
msgid "Charts"
|
700 |
+
msgstr "الرسوم البيانية"
|
701 |
+
|
702 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:320
|
703 |
+
msgid "Include totals"
|
704 |
+
msgstr "تتضمن الاجماليات"
|
705 |
+
|
706 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:326
|
707 |
+
msgid "Add a total line to charts with multiple values, like the search engine referrals"
|
708 |
+
msgstr "إضافة سطر مجموع المخططات مع قيم متعددة، مثل إحالات محرك البحث"
|
709 |
+
|
710 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:32
|
711 |
+
msgid "GeoIP settings"
|
712 |
+
msgstr "إعدادات GeoIP"
|
713 |
+
|
714 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:37
|
715 |
+
msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
|
716 |
+
msgstr "خدمات الموقع IP المقدمة من البيانات GeoLite2 التي أنشأتها MaxMind، المتاحة من %s."
|
717 |
+
|
718 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:47
|
719 |
+
msgid "GeoIP collection"
|
720 |
+
msgstr "مجموعة GeoIP"
|
721 |
+
|
722 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:53
|
723 |
+
msgid "For get more information and location (country) from visitor, enable this feature."
|
724 |
+
msgstr "للحصول على مزيد من المعلومات، والمكان (البلد) من الزوار، تمكين هذه الميزة."
|
725 |
+
|
726 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:59
|
727 |
+
msgid "Update GeoIP Info"
|
728 |
+
msgstr "تحديث معلومات GeoIP"
|
729 |
+
|
730 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:64
|
731 |
+
msgid "Download GeoIP Database"
|
732 |
+
msgstr "تحميل قاعدة بيانات GeoIP"
|
733 |
+
|
734 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:71
|
735 |
+
msgid "Schedule monthly update of GeoIP DB"
|
736 |
+
msgstr "جدولة التحديث الشهري لGeoIP DB"
|
737 |
+
|
738 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:97
|
739 |
+
msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
|
740 |
+
msgstr "سيتم جدولة التحميل من قاعدة البيانات GeoIP لمدة 2 يوما بعد يوم الثلاثاء الأول من الشهر."
|
741 |
+
|
742 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:98
|
743 |
+
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)."
|
744 |
+
msgstr "وهذا الخيار أيضا تحميل قاعدة البيانات إذا كان حجم الملف المحلي أقل من 1K (الذي يعني عادة أن طرف البرنامج التي تأتي مع البرنامج المساعد لا يزال في مكانه)."
|
745 |
+
|
746 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:104
|
747 |
+
msgid "Populate missing GeoIP after update of GeoIP DB"
|
748 |
+
msgstr "تعبئة GeoIP في عداد المفقودين بعد التحديث من GeoIP DB"
|
749 |
+
|
750 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:110
|
751 |
+
msgid "Update any missing GeoIP data after downloading a new database."
|
752 |
+
msgstr "تحديث أي بيانات GeoIP مفقودة بعد تحميل قاعدة البيانات الجديدة."
|
753 |
+
|
754 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:116
|
755 |
+
msgid "Country code for private IP addresses"
|
756 |
+
msgstr "رمز البلد لعناوين IP خاصة"
|
757 |
+
|
758 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:121
|
759 |
+
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."
|
760 |
+
msgstr "المعيار اثنين الرمز الدولي بلد إلكتروني (أي الولايات المتحدة = الولايات المتحدة الأمريكية، CA = كندا، الخ) ل(غير قابل للتوجيه) عناوين IP خاصة (أي. 10.0.0.1، 192.158.1.1، 127.0.0.1، وما إلى ذلك). استخدام \"000\" (ثلاثة أصفار) لاستخدام \"غير معروف\"، كما رمز البلد."
|
761 |
+
|
762 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:132
|
763 |
+
msgid "GeoIP collection is disabled due to the following reasons:"
|
764 |
+
msgstr "تم تعطيل مجموعة GeoIP وذلك للأسباب التالية:"
|
765 |
+
|
766 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:135
|
767 |
+
msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
|
768 |
+
msgstr "جمع GeoIP يتطلب PHP %s أو أعلى، يتم تعطيله حاليا نظرا لكونها نسخة PHP مثبتة"
|
769 |
+
|
770 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:140
|
771 |
+
msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
|
772 |
+
msgstr "مجموعة GeoIP تتطلب الملحق cURL PHP و هو غير مفعل على إصدار الـ PHP!"
|
773 |
+
|
774 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:146
|
775 |
+
msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
|
776 |
+
msgstr "مجموعة GeoIP تتطلب الملحق BC Math PHP و هو غير مفعل على إصدار الـ PHP!"
|
777 |
+
|
778 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:152
|
779 |
+
msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
|
780 |
+
msgstr "تم الكشف عن الوضع الآمن في PHP! مجموعة GeoIP غير معتمدة عند تمكين الوضع الآمن في PHP!"
|
781 |
+
|
782 |
+
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:20
|
783 |
+
msgid "This will permanently delete data from the database each day, are you sure you want to enable this option?"
|
784 |
+
msgstr "سيؤدي ذلك إلى حذف البيانات من قاعدة البيانات بشكل دائم كل يوم، هل أنت متأكد من أنك تريد تمكين هذا الخيار؟"
|
785 |
+
|
786 |
+
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:52
|
787 |
+
msgid "Days"
|
788 |
+
msgstr "أيام"
|
789 |
+
|
790 |
+
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:53
|
791 |
+
msgid "The number of days to keep statistics for. Minimum value is 30 days. Invalid values will disable the daily maintenance."
|
792 |
+
msgstr "عدد الأيام للحفاظ على الإحصاءات المتعلقة. قيمة الحد الأدنى هو 30 يوما. سيتم تعطيل الصيانة اليومية في حال ادخال قيم غير صالحة."
|
793 |
+
|
794 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:44
|
795 |
+
msgid "Common Report Options"
|
796 |
+
msgstr "خيارات تقرير المشترك"
|
797 |
+
|
798 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:49
|
799 |
+
msgid "E-mail addresses"
|
800 |
+
msgstr "عناوين البريد الإلكتروني"
|
801 |
+
|
802 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:54
|
803 |
+
msgid "A comma separated list of e-mail addresses to send reports to."
|
804 |
+
msgstr "أفصل قائمة عناوين البريد الإلكتروني بفاصلة لإرسال التقارير إلى."
|
805 |
+
|
806 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:59
|
807 |
+
msgid "Update Reports"
|
808 |
+
msgstr "تقارير التحديث"
|
809 |
+
|
810 |
+
#: wp-statistics/includes/log/exclusions.php:24
|
811 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:64
|
812 |
+
msgid "Browscap"
|
813 |
+
msgstr "Browscap"
|
814 |
+
|
815 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:70
|
816 |
+
msgid "Send a report whenever the browscap.ini is updated."
|
817 |
+
msgstr "إرسال تقرير كلما يتم تحديث browscap.ini."
|
818 |
+
|
819 |
+
#: wp-statistics/includes/log/exclusions.php:24
|
820 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:76
|
821 |
+
msgid "GeoIP"
|
822 |
+
msgstr "GeoIP"
|
823 |
+
|
824 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:82
|
825 |
+
msgid "Send a report whenever the GeoIP database is updated."
|
826 |
+
msgstr "إرسال تقرير كلما يتم تحديث قاعدة البيانات GeoIP."
|
827 |
+
|
828 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:88
|
829 |
+
msgid "Pruning"
|
830 |
+
msgstr "تنقيح"
|
831 |
+
|
832 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:94
|
833 |
+
msgid "Send a report whenever the pruning of database is run."
|
834 |
+
msgstr "إرسال تقرير كلما يتم تشغيل التنقيح في قاعدة البيانات."
|
835 |
+
|
836 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:100
|
837 |
+
msgid "Upgrade"
|
838 |
+
msgstr "ترقية"
|
839 |
+
|
840 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:106
|
841 |
+
msgid "Send a report whenever the plugin is upgraded."
|
842 |
+
msgstr "إرسال تقرير كلما تتم ترقية البرنامج المساعد."
|
843 |
+
|
844 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:111
|
845 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:116
|
846 |
+
#: wp-statistics/schedule.php:221
|
847 |
+
msgid "Statistical reporting"
|
848 |
+
msgstr "تقارير الإحصائيات"
|
849 |
+
|
850 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:129
|
851 |
+
msgid "Schedule"
|
852 |
+
msgstr "جدول"
|
853 |
+
|
854 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:153
|
855 |
+
msgid "Select how often to receive statistical report."
|
856 |
+
msgstr "حدد عدد المرات لتلقي تقرير إحصائي."
|
857 |
+
|
858 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:159
|
859 |
+
msgid "Send reports via"
|
860 |
+
msgstr "إرسال التقارير عن طريق"
|
861 |
+
|
862 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:165
|
863 |
+
msgid "Email"
|
864 |
+
msgstr "البريد الإلكتروني"
|
865 |
+
|
866 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:167
|
867 |
+
msgid "SMS"
|
868 |
+
msgstr "رسائل نصية"
|
869 |
+
|
870 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:170
|
871 |
+
msgid "Select delivery method for statistical report."
|
872 |
+
msgstr "حدد طريقة التسليم للتقرير الإحصائي."
|
873 |
+
|
874 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:173
|
875 |
+
msgid "Note: To send SMS text messages please install the %s plugin."
|
876 |
+
msgstr "ملاحظة: لإرسال رسائل نصية SMS الرجاء تثبيت إضافة %s."
|
877 |
+
|
878 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:173
|
879 |
+
msgid "WordPress SMS"
|
880 |
+
msgstr "الرسائل النصية"
|
881 |
+
|
882 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:180
|
883 |
+
msgid "Report body"
|
884 |
+
msgstr "تقرير الهيئة"
|
885 |
+
|
886 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:185
|
887 |
+
msgid "Enter the contents of the report."
|
888 |
+
msgstr "أدخل محتويات التقرير."
|
889 |
+
|
890 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:187
|
891 |
+
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:"
|
892 |
+
msgstr "أي رمز قصير بدعم من مثبت ووردبريس، وتشمل جميع الاكواد المختصرة لاحصائيات ووردبريس (انظر دليل المشرف للحصول على قائمة رموز المتاحة) معتمدة في نص الرسالة. وهنا بعض الأمثلة:"
|
893 |
+
|
894 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
895 |
+
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
896 |
+
#: wp-statistics/wp-statistics.php:637
|
897 |
+
msgid "User Online"
|
898 |
+
msgstr "المتواجدين الآن"
|
899 |
+
|
900 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:189
|
901 |
+
#: wp-statistics/widget.php:52 wp-statistics/widget.php:253
|
902 |
+
msgid "Today Visitor"
|
903 |
+
msgstr "زوار اليوم"
|
904 |
+
|
905 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:190
|
906 |
+
#: wp-statistics/widget.php:45 wp-statistics/widget.php:250
|
907 |
+
msgid "Today Visit"
|
908 |
+
msgstr "زيارات اليوم"
|
909 |
+
|
910 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:191
|
911 |
+
#: wp-statistics/widget.php:66 wp-statistics/widget.php:259
|
912 |
+
msgid "Yesterday Visitor"
|
913 |
+
msgstr "زوار الأمس"
|
914 |
+
|
915 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:192
|
916 |
+
#: wp-statistics/widget.php:59
|
917 |
+
msgid "Yesterday Visit"
|
918 |
+
msgstr "زيارات الأمس"
|
919 |
+
|
920 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:193
|
921 |
+
#: wp-statistics/widget.php:101 wp-statistics/widget.php:274
|
922 |
+
msgid "Total Visitor"
|
923 |
+
msgstr "مجموع الزوار"
|
924 |
+
|
925 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:194
|
926 |
+
#: wp-statistics/widget.php:94 wp-statistics/widget.php:271
|
927 |
+
msgid "Total Visit"
|
928 |
+
msgstr "مجموع الزيارات"
|
929 |
+
|
930 |
+
#: wp-statistics/shortcode.php:175
|
931 |
+
msgid "None"
|
932 |
+
msgstr "لا شيء"
|
933 |
+
|
934 |
+
#: wp-statistics/includes/settings/wps-settings.php:108
|
935 |
+
msgid "About"
|
936 |
+
msgstr "حول"
|
937 |
+
|
938 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:20
|
939 |
+
msgid "Dashboard"
|
940 |
+
msgstr "لوحة القيادة"
|
941 |
+
|
942 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:24
|
943 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:44
|
944 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:64
|
945 |
+
msgid "The following items are global to all users."
|
946 |
+
msgstr "العناصر التالية هي عالمية لجميع المستخدمين."
|
947 |
+
|
948 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:29
|
949 |
+
msgid "Disable dashboard widgets"
|
950 |
+
msgstr "تعطيل قطع لوحة القيادة"
|
951 |
+
|
952 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:35
|
953 |
+
msgid "Disable the dashboard widgets."
|
954 |
+
msgstr "تعطيل القطع للوحة القيادة"
|
955 |
+
|
956 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:40
|
957 |
+
msgid "Page/Post Editor"
|
958 |
+
msgstr "محرر الصفحة/المشاركة"
|
959 |
+
|
960 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:49
|
961 |
+
msgid "Disable post/page editor widget"
|
962 |
+
msgstr "تعطيل قطعة محرر الصفحة/المشاركة"
|
963 |
+
|
964 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:55
|
965 |
+
msgid "Disable the page/post editor widget."
|
966 |
+
msgstr "تعطيل القطع لمحرر الصفحة/المشاركة"
|
967 |
+
|
968 |
+
#: wp-statistics/includes/functions/functions.php:440
|
969 |
+
msgid "Google"
|
970 |
+
msgstr "جوجل"
|
971 |
+
|
972 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
973 |
+
msgid "Disable map"
|
974 |
+
msgstr "تعطيل الخريطة"
|
975 |
+
|
976 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
977 |
+
msgid "Disable the map display"
|
978 |
+
msgstr "تعطيل عرض الخريطة"
|
979 |
+
|
980 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:81
|
981 |
+
msgid "Get country location from Google"
|
982 |
+
msgstr "الحصول على موقع البلد من جوجل"
|
983 |
+
|
984 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:87
|
985 |
+
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
986 |
+
msgstr "قد تؤدي هذه الميزة تدهور الأداء عند عرض الإحصاءات وصالحة فقط إذا تم تعيين نوع الخريطة لـ \"جوجل\"."
|
987 |
+
|
988 |
+
#: wp-statistics/includes/settings/tabs/wps-removal.php:15
|
989 |
+
msgid "WP Statisitcs Removal"
|
990 |
+
msgstr "إزالة احصائيات ووردبريس"
|
991 |
+
|
992 |
+
#: wp-statistics/includes/settings/tabs/wps-removal.php:20
|
993 |
+
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."
|
994 |
+
msgstr "إزالة احصائيات ووردبريس لن تقوم بإزالة البيانات والإعدادات، يمكنك استخدام هذا الخيار لإزالة البيانات الخاصة بك قبل إلغاء تثبيت البرنامج المساعد."
|
995 |
+
|
996 |
+
#: wp-statistics/includes/settings/tabs/wps-removal.php:23
|
997 |
+
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."
|
998 |
+
msgstr "بمجرد التقدم في هذا الخيار سيتم حذف الإعدادات أثناء تحميل صفحة هذا النموذج، ولكن سوف تزال تظهر احصائيات ووردبريس في قائمة المشرف الخاص بك حتى يتم تحميل الصفحة مرة أخرى."
|
999 |
+
|
1000 |
+
#: wp-statistics/includes/settings/tabs/wps-removal.php:29
|
1001 |
+
msgid "Remove data and settings"
|
1002 |
+
msgstr "إزالة البيانات والإعدادات"
|
1003 |
+
|
1004 |
+
#: wp-statistics/includes/settings/tabs/wps-removal.php:34
|
1005 |
+
msgid "Remove"
|
1006 |
+
msgstr "إزالة"
|
1007 |
+
|
1008 |
+
#: wp-statistics/includes/settings/tabs/wps-removal.php:35
|
1009 |
+
msgid "Remove data and settings, this action cannot be undone."
|
1010 |
+
msgstr "إزالة البيانات والإعدادات، لا يمكنك التراجع مستقبلاً."
|
1011 |
+
|
1012 |
+
#: wp-statistics/includes/settings/wps-settings.php:100
|
1013 |
+
msgid "General"
|
1014 |
+
msgstr "عام"
|
1015 |
+
|
1016 |
+
#: wp-statistics/includes/settings/wps-settings.php:101
|
1017 |
+
msgid "Notifications"
|
1018 |
+
msgstr "الإشعارات"
|
1019 |
+
|
1020 |
+
#: wp-statistics/includes/settings/wps-settings.php:102
|
1021 |
+
msgid "Dashboard/Overview"
|
1022 |
+
msgstr "اللوحة/نظرة عامة"
|
1023 |
+
|
1024 |
+
#: wp-statistics/includes/settings/wps-settings.php:106
|
1025 |
+
msgid "Maintenance"
|
1026 |
+
msgstr "صيانة"
|
1027 |
+
|
1028 |
+
#: wp-statistics/includes/settings/wps-settings.php:107
|
1029 |
+
msgid "Removal"
|
1030 |
+
msgstr "الإزالة"
|
1031 |
+
|
1032 |
+
#: wp-statistics/includes/settings/tabs/wps-access-level.php:85
|
1033 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:234
|
1034 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:286
|
1035 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1036 |
+
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1037 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1038 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:96
|
1039 |
+
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1040 |
+
msgid "Update"
|
1041 |
+
msgstr "تحديث"
|
1042 |
+
|
1043 |
+
#: wp-statistics/schedule.php:10
|
1044 |
+
msgid "Once Weekly"
|
1045 |
+
msgstr "مرة كل أسبوع"
|
1046 |
+
|
1047 |
+
#: wp-statistics/schedule.php:17
|
1048 |
+
msgid "Once Every 2 Weeks"
|
1049 |
+
msgstr "مرة كل 2 أسابيع"
|
1050 |
+
|
1051 |
+
#: wp-statistics/schedule.php:24
|
1052 |
+
msgid "Once Every 4 Weeks"
|
1053 |
+
msgstr "مرة كل 4 أسابيع"
|
1054 |
+
|
1055 |
+
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1056 |
+
#: wp-statistics/wp-statistics.php:485
|
1057 |
+
msgid "Statistics"
|
1058 |
+
msgstr "الاحصائيات"
|
1059 |
+
|
1060 |
+
#: wp-statistics/widget.php:15
|
1061 |
+
msgid "Show site stats in sidebar."
|
1062 |
+
msgstr "عرض احصائيات الموقع في الشريط الجانبي."
|
1063 |
+
|
1064 |
+
#: wp-statistics/widget.php:73 wp-statistics/widget.php:262
|
1065 |
+
msgid "Week Visit"
|
1066 |
+
msgstr "زيارات الأسبوع"
|
1067 |
+
|
1068 |
+
#: wp-statistics/widget.php:80 wp-statistics/widget.php:265
|
1069 |
+
msgid "Month Visit"
|
1070 |
+
msgstr "زيارات الشهر"
|
1071 |
+
|
1072 |
+
#: wp-statistics/widget.php:87 wp-statistics/widget.php:268
|
1073 |
+
msgid "Years Visit"
|
1074 |
+
msgstr "زيارات السنة"
|
1075 |
+
|
1076 |
+
#: wp-statistics/widget.php:108 wp-statistics/widget.php:277
|
1077 |
+
msgid "Total Page Views"
|
1078 |
+
msgstr "مجموع مشاهدات الصفحة"
|
1079 |
+
|
1080 |
+
#: wp-statistics/widget.php:116
|
1081 |
+
msgid "Search Engine referred"
|
1082 |
+
msgstr "محرك البحث المشار"
|
1083 |
+
|
1084 |
+
#: wp-statistics/widget.php:123 wp-statistics/widget.php:300
|
1085 |
+
msgid "Total Posts"
|
1086 |
+
msgstr "إجمالي المشاركات"
|
1087 |
+
|
1088 |
+
#: wp-statistics/widget.php:130 wp-statistics/widget.php:303
|
1089 |
+
msgid "Total Pages"
|
1090 |
+
msgstr "إجمالي الصفحات"
|
1091 |
+
|
1092 |
+
#: wp-statistics/widget.php:137 wp-statistics/widget.php:306
|
1093 |
+
msgid "Total Comments"
|
1094 |
+
msgstr "إجمالي التعليقات"
|
1095 |
+
|
1096 |
+
#: wp-statistics/widget.php:144 wp-statistics/widget.php:309
|
1097 |
+
msgid "Total Spams"
|
1098 |
+
msgstr "إجمالي السبام"
|
1099 |
+
|
1100 |
+
#: wp-statistics/widget.php:151 wp-statistics/widget.php:312
|
1101 |
+
msgid "Total Users"
|
1102 |
+
msgstr "عدد الاعضاء"
|
1103 |
+
|
1104 |
+
#: wp-statistics/widget.php:158 wp-statistics/widget.php:315
|
1105 |
+
msgid "Average Posts"
|
1106 |
+
msgstr "متوسط المشاركات"
|
1107 |
+
|
1108 |
+
#: wp-statistics/widget.php:165 wp-statistics/widget.php:318
|
1109 |
+
msgid "Average Comments"
|
1110 |
+
msgstr "متوسط التعليقات"
|
1111 |
+
|
1112 |
+
#: wp-statistics/widget.php:172 wp-statistics/widget.php:321
|
1113 |
+
msgid "Average Users"
|
1114 |
+
msgstr "متوسط الاعضاء"
|
1115 |
+
|
1116 |
+
#: wp-statistics/shortcode.php:151 wp-statistics/widget.php:179
|
1117 |
+
#: wp-statistics/widget.php:324
|
1118 |
+
msgid "Last Post Date"
|
1119 |
+
msgstr "تاريخ آخر مشاركة"
|
1120 |
+
|
1121 |
+
#: wp-statistics/widget.php:240
|
1122 |
+
msgid "Name"
|
1123 |
+
msgstr "الأسم"
|
1124 |
+
|
1125 |
+
#: wp-statistics/widget.php:244
|
1126 |
+
msgid "Items"
|
1127 |
+
msgstr "البنود"
|
1128 |
+
|
1129 |
+
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:662
|
1130 |
+
msgid "Yesterday visit"
|
1131 |
+
msgstr "زيارات الأمس"
|
1132 |
+
|
1133 |
+
#: wp-statistics/widget.php:280
|
1134 |
+
msgid "Search Engine Referred"
|
1135 |
+
msgstr "محرك بحث المشارين"
|
1136 |
+
|
1137 |
+
#: wp-statistics/widget.php:283
|
1138 |
+
msgid "Select type of search engine"
|
1139 |
+
msgstr "حدد نوع من محرك البحث"
|
1140 |
+
|
1141 |
+
#: wp-statistics/wp-statistics.php:122
|
1142 |
+
msgid "WP Statistics has been removed, please disable and delete it."
|
1143 |
+
msgstr "تمت إزالة احصائيات ووردبريس، يرجى التعطيل والحذف."
|
1144 |
+
|
1145 |
+
#: wp-statistics/wp-statistics.php:54
|
1146 |
+
msgid "WP Statistics"
|
1147 |
+
msgstr "احصائيات ووردبريس"
|
1148 |
+
|
1149 |
+
#: wp-statistics/wp-statistics.php:55
|
1150 |
+
msgid "Complete statistics for your WordPress site."
|
1151 |
+
msgstr "إحصاءات كاملة لموقع ووردبريس الخاص بك."
|
1152 |
+
|
1153 |
+
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1154 |
+
#: wp-statistics/wp-statistics.php:539
|
1155 |
+
msgid "Settings"
|
1156 |
+
msgstr "الإعدادات"
|
1157 |
+
|
1158 |
+
#: wp-statistics/wp-statistics.php:325
|
1159 |
+
msgid "Click here to visit the plugin on WordPress.org"
|
1160 |
+
msgstr "انقر هنا لزيارة صفحة الإضافة على WordPress.org"
|
1161 |
+
|
1162 |
+
#: wp-statistics/wp-statistics.php:325
|
1163 |
+
msgid "Visit WordPress.org page"
|
1164 |
+
msgstr "زيارة صفحة WordPress.org"
|
1165 |
+
|
1166 |
+
#: wp-statistics/wp-statistics.php:328
|
1167 |
+
msgid "Click here to rate and review this plugin on WordPress.org"
|
1168 |
+
msgstr "أنقر هنا لمراجهة وتقييم الإضافة على WordPress.org"
|
1169 |
+
|
1170 |
+
#: wp-statistics/wp-statistics.php:328
|
1171 |
+
msgid "Rate this plugin"
|
1172 |
+
msgstr "ضع تقييمك لهذه الاضافة"
|
1173 |
+
|
1174 |
+
#: wp-statistics/wp-statistics.php:372
|
1175 |
+
msgid "WP Statistics - Hits"
|
1176 |
+
msgstr "احصائيات ووردبريس - الزيارات"
|
1177 |
+
|
1178 |
+
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:488
|
1179 |
+
#: wp-statistics/wp-statistics.php:526
|
1180 |
+
msgid "Overview"
|
1181 |
+
msgstr "نظرة عامة"
|
1182 |
+
|
1183 |
+
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:531
|
1184 |
+
msgid "Online"
|
1185 |
+
msgstr "المتواجدون"
|
1186 |
+
|
1187 |
+
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:533
|
1188 |
+
msgid "Referrers"
|
1189 |
+
msgstr "الدعوات"
|
1190 |
+
|
1191 |
+
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1192 |
+
#: wp-statistics/wp-statistics.php:534
|
1193 |
+
msgid "Searches"
|
1194 |
+
msgstr "عمليات البحث"
|
1195 |
+
|
1196 |
+
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:535
|
1197 |
+
msgid "Search Words"
|
1198 |
+
msgstr "كلمات البحث"
|
1199 |
+
|
1200 |
+
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:536
|
1201 |
+
msgid "Top Visitors Today"
|
1202 |
+
msgstr "أعلى زوار اليوم"
|
1203 |
+
|
1204 |
+
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:538
|
1205 |
+
msgid "Optimization"
|
1206 |
+
msgstr "التحسين"
|
1207 |
+
|
1208 |
+
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:502
|
1209 |
+
msgid "Manual"
|
1210 |
+
msgstr "الدليل"
|
1211 |
+
|
1212 |
+
#: wp-statistics/wp-statistics.php:517
|
1213 |
+
msgid "Site"
|
1214 |
+
msgstr "موقع"
|
1215 |
+
|
1216 |
+
#: wp-statistics/wp-statistics.php:518
|
1217 |
+
msgid "Options"
|
1218 |
+
msgstr "خيارات"
|
1219 |
+
|
1220 |
+
#: wp-statistics/wp-statistics.php:644
|
1221 |
+
msgid "Today visitor"
|
1222 |
+
msgstr "زوار اليوم"
|
1223 |
+
|
1224 |
+
#: wp-statistics/wp-statistics.php:650
|
1225 |
+
msgid "Today visit"
|
1226 |
+
msgstr "زيارات اليوم"
|
1227 |
+
|
1228 |
+
#: wp-statistics/wp-statistics.php:656
|
1229 |
+
msgid "Yesterday visitor"
|
1230 |
+
msgstr "زيارات الأمس"
|
1231 |
+
|
1232 |
+
#: wp-statistics/wp-statistics.php:668
|
1233 |
+
msgid "View Stats"
|
1234 |
+
msgstr "عرض الإحصائيات"
|
1235 |
+
|
1236 |
+
#: wp-statistics/wp-statistics.php:692
|
1237 |
+
msgid "Download ODF file"
|
1238 |
+
msgstr "تحميل ملف ODF"
|
1239 |
+
|
1240 |
+
#: wp-statistics/wp-statistics.php:693
|
1241 |
+
msgid "Download HTML file"
|
1242 |
+
msgstr "تحميل ملف HTML"
|
1243 |
+
|
1244 |
+
#: wp-statistics/wp-statistics.php:697
|
1245 |
+
msgid "Manual file not found."
|
1246 |
+
msgstr "لم يتم العثور على ملف الدليل."
|
1247 |
+
|
1248 |
+
#: wp-statistics/wp-statistics.php:764 wp-statistics/wp-statistics.php:891
|
1249 |
+
#: wp-statistics/wp-statistics.php:926
|
1250 |
+
msgid "You do not have sufficient permissions to access this page."
|
1251 |
+
msgstr "ليس لديك الصلاحيات الكافية لدخول هذه الصفحة."
|
1252 |
+
|
1253 |
+
#: wp-statistics/wp-statistics.php:301
|
1254 |
+
msgid "WP Statistics %s installed on"
|
1255 |
+
msgstr "احصائيات ووردبريس %s مثبتة على"
|
1256 |
+
|
1257 |
+
#: wp-statistics/wps-updates.php:54
|
1258 |
+
msgid "Error downloading GeoIP database from: %s - %s"
|
1259 |
+
msgstr "خطأ تحميل قاعدة بيانات GeoIP من: %s - %s"
|
1260 |
+
|
1261 |
+
#: wp-statistics/wps-updates.php:65
|
1262 |
+
msgid "Error could not open downloaded GeoIP database for reading: %s"
|
1263 |
+
msgstr "خطأ لا يمكن فتح قاعدة البيانات GeoIP التي تم تحميلها للقراءة: %s"
|
1264 |
+
|
1265 |
+
#: wp-statistics/wps-updates.php:72
|
1266 |
+
msgid "Error could not open destination GeoIP database for writing %s"
|
1267 |
+
msgstr "خطأ لا يمكن فتح قاعدة البيانات GeoIP لجهة الكتابة %s"
|
1268 |
+
|
1269 |
+
#: wp-statistics/wps-updates.php:88
|
1270 |
+
msgid "GeoIP Database updated successfully!"
|
1271 |
+
msgstr "تم تحديث قاعدة بيانات GeoIP بنجاح!"
|
1272 |
+
|
1273 |
+
#: wp-statistics/wps-updates.php:113
|
1274 |
+
msgid "GeoIP update on"
|
1275 |
+
msgstr "تحديث GeoIP على"
|
1276 |
+
|
1277 |
+
#: wp-statistics/wps-updates.php:180
|
1278 |
+
msgid "Error downloading browscap database from: %s - %s"
|
1279 |
+
msgstr "خطأ في قاعدة بيانات browscap تحميل من: %s - %s"
|
1280 |
+
|
1281 |
+
#: wp-statistics/wps-updates.php:289
|
1282 |
+
msgid "browscap database updated successfully!"
|
1283 |
+
msgstr "قاعدة بيانات browscap تم تحديثها بنجاح!"
|
1284 |
+
|
1285 |
+
#: wp-statistics/wps-updates.php:299
|
1286 |
+
msgid "browscap database updated failed! Cache file too large, reverting to previous browscap.ini."
|
1287 |
+
msgstr "تحديث قاعدة بيانات browscap فشل! ملف الكاش كبير جدا، تم الرجوع إلى browscap.ini السابق."
|
1288 |
+
|
1289 |
+
#: wp-statistics/wps-updates.php:307
|
1290 |
+
msgid "browscap database updated failed! New browscap.ini is mis-identifing user agents as crawlers, reverting to previous browscap.ini."
|
1291 |
+
msgstr "تحديث قاعدة بيانات browscap فشل! لم تتم تحديد هوية browscap.ini الجديدة لكلا من المستخدم والزواحف، وتم الرجوع إلى browscap.ini السابق."
|
1292 |
+
|
1293 |
+
#: wp-statistics/wps-updates.php:329
|
1294 |
+
msgid "browscap already at current version!"
|
1295 |
+
msgstr "browscap بالفعل في النسخة الحالية!"
|
1296 |
+
|
1297 |
+
#: wp-statistics/wps-updates.php:342
|
1298 |
+
msgid "Browscap.ini update on"
|
1299 |
+
msgstr "تحديث Browscap.ini على"
|
1300 |
+
|
1301 |
+
#: wp-statistics/dashboard.php:56
|
1302 |
+
msgid "Quick Stats"
|
1303 |
+
msgstr "إحصائيات سريعة"
|
1304 |
+
|
1305 |
+
#: wp-statistics/dashboard.php:57
|
1306 |
+
#: wp-statistics/includes/log/widgets/browsers.php:41
|
1307 |
+
msgid "Top 10 Browsers"
|
1308 |
+
msgstr "أفضل 10 متصفحات"
|
1309 |
+
|
1310 |
+
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:471
|
1311 |
+
msgid "Top 10 Countries"
|
1312 |
+
msgstr "أعلى 10 دول"
|
1313 |
+
|
1314 |
+
#: wp-statistics/dashboard.php:59
|
1315 |
+
msgid "Today's Visitor Map"
|
1316 |
+
msgstr "خريطة زوار اليوم"
|
1317 |
+
|
1318 |
+
#: wp-statistics/dashboard.php:60 wp-statistics/editor.php:46
|
1319 |
+
#: wp-statistics/includes/log/hit-statistics.php:8
|
1320 |
+
#: wp-statistics/wp-statistics.php:446
|
1321 |
+
msgid "Hit Statistics"
|
1322 |
+
msgstr "احصائية النقرات"
|
1323 |
+
|
1324 |
+
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:461
|
1325 |
+
msgid "Top 10 Pages"
|
1326 |
+
msgstr "أفضل 10 صفحات"
|
1327 |
+
|
1328 |
+
#: wp-statistics/dashboard.php:62
|
1329 |
+
#: wp-statistics/includes/log/last-visitor.php:36
|
1330 |
+
#: wp-statistics/wp-statistics.php:453
|
1331 |
+
msgid "Recent Visitors"
|
1332 |
+
msgstr "الزيارات الأخيرة"
|
1333 |
+
|
1334 |
+
#: wp-statistics/dashboard.php:63
|
1335 |
+
#: wp-statistics/includes/log/top-referring.php:59
|
1336 |
+
#: wp-statistics/includes/log/top-referring.php:81
|
1337 |
+
#: wp-statistics/wp-statistics.php:468
|
1338 |
+
msgid "Top Referring Sites"
|
1339 |
+
msgstr "أعلى المواقع اشارة"
|
1340 |
+
|
1341 |
+
#: wp-statistics/dashboard.php:64
|
1342 |
+
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1343 |
+
#: wp-statistics/includes/log/widgets/summary.php:75
|
1344 |
+
#: wp-statistics/wp-statistics.php:451
|
1345 |
+
msgid "Search Engine Referrals"
|
1346 |
+
msgstr "إحالات محرك البحث"
|
1347 |
+
|
1348 |
+
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:466
|
1349 |
+
msgid "Summary"
|
1350 |
+
msgstr "ملخص"
|
1351 |
+
|
1352 |
+
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1353 |
+
#: wp-statistics/wp-statistics.php:452
|
1354 |
+
msgid "Latest Search Words"
|
1355 |
+
msgstr "أحدث كلمات البحث"
|
1356 |
+
|
1357 |
+
#: wp-statistics/dashboard.php:67
|
1358 |
+
msgid "Top 10 Visitors Today"
|
1359 |
+
msgstr "أفضل 10 زوار اليوم"
|
1360 |
+
|
1361 |
+
#: wp-statistics/editor.php:58
|
1362 |
+
msgid "This post is not yet published."
|
1363 |
+
msgstr "لم يتم نشر هذا المقال حتى الآن."
|
1364 |
+
|
1365 |
+
#: wp-statistics/includes/functions/geoip-populate.php:24
|
1366 |
+
msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
|
1367 |
+
msgstr "غير قادر على تحميل قاعدة البيانات GeoIP، تأكد من أنك قمت بتنزيلها في صفحة الإعدادات."
|
1368 |
+
|
1369 |
+
#: wp-statistics/includes/functions/geoip-populate.php:48
|
1370 |
+
msgid "Updated %s GeoIP records in the visitors database."
|
1371 |
+
msgstr "تحديث السجلات %s GeoIP في قاعدة بيانات الزوار."
|
1372 |
+
|
1373 |
+
#: wp-statistics/includes/functions/purge.php:21
|
1374 |
+
#: wp-statistics/includes/functions/purge.php:39
|
1375 |
+
#: wp-statistics/includes/functions/purge.php:50
|
1376 |
+
#: wp-statistics/includes/functions/purge.php:61
|
1377 |
+
#: wp-statistics/includes/functions/purge.php:94
|
1378 |
+
msgid "%s data older than %s days purged successfully."
|
1379 |
+
msgstr "البيانات %s مضى عليها أكثر من %s أيام طهرت فيه بنجاح."
|
1380 |
+
|
1381 |
+
#: wp-statistics/includes/functions/purge.php:23
|
1382 |
+
#: wp-statistics/includes/functions/purge.php:41
|
1383 |
+
#: wp-statistics/includes/functions/purge.php:52
|
1384 |
+
#: wp-statistics/includes/functions/purge.php:63
|
1385 |
+
#: wp-statistics/includes/functions/purge.php:96
|
1386 |
+
msgid "No records found to purge from %s!"
|
1387 |
+
msgstr "لا توجد سجلات للتخلص من %s!"
|
1388 |
+
|
1389 |
+
#: wp-statistics/includes/functions/purge-hits.php:45
|
1390 |
+
#: wp-statistics/includes/functions/purge.php:109
|
1391 |
+
msgid "Database pruned on"
|
1392 |
+
msgstr "قاعدة بيانات مجردة على"
|
1393 |
+
|
1394 |
+
#: wp-statistics/includes/functions/purge.php:114
|
1395 |
+
msgid "Please select a value over 30 days."
|
1396 |
+
msgstr "يرجى تحديد قيمة أكثر من 30 يوما."
|
1397 |
+
|
1398 |
+
#: wp-statistics/includes/log/all-browsers.php:21
|
1399 |
+
msgid "Browser Statistics"
|
1400 |
+
msgstr "إحصائيات المتصفح"
|
1401 |
+
|
1402 |
+
#: wp-statistics/includes/log/all-browsers.php:29
|
1403 |
+
#: wp-statistics/includes/log/all-browsers.php:113
|
1404 |
+
#: wp-statistics/includes/log/all-browsers.php:248
|
1405 |
+
#: wp-statistics/includes/log/exclusions.php:72
|
1406 |
+
#: wp-statistics/includes/log/exclusions.php:190
|
1407 |
+
#: wp-statistics/includes/log/hit-statistics.php:26
|
1408 |
+
#: wp-statistics/includes/log/hit-statistics.php:163
|
1409 |
+
#: wp-statistics/includes/log/last-search.php:64
|
1410 |
+
#: wp-statistics/includes/log/last-visitor.php:67
|
1411 |
+
#: wp-statistics/includes/log/online.php:17
|
1412 |
+
#: wp-statistics/includes/log/page-statistics.php:34
|
1413 |
+
#: wp-statistics/includes/log/search-statistics.php:27
|
1414 |
+
#: wp-statistics/includes/log/top-countries.php:26
|
1415 |
+
#: wp-statistics/includes/log/top-pages.php:29
|
1416 |
+
#: wp-statistics/includes/log/top-pages.php:155
|
1417 |
+
#: wp-statistics/includes/log/top-referring.php:77
|
1418 |
+
#: wp-statistics/includes/log/top-visitors.php:40
|
1419 |
+
msgid "Click to toggle"
|
1420 |
+
msgstr "انقر للتبديل"
|
1421 |
+
|
1422 |
+
#: wp-statistics/includes/log/all-browsers.php:30
|
1423 |
+
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:467
|
1424 |
+
#: wp-statistics/wp-statistics.php:527
|
1425 |
+
msgid "Browsers"
|
1426 |
+
msgstr "المتصفحات"
|
1427 |
+
|
1428 |
+
#: wp-statistics/includes/log/all-browsers.php:57
|
1429 |
+
msgid "Browsers by type"
|
1430 |
+
msgstr "حسب نوع المتصفحات"
|
1431 |
+
|
1432 |
+
#: wp-statistics/includes/log/all-browsers.php:114
|
1433 |
+
#: wp-statistics/includes/log/widgets/top.visitors.php:18
|
1434 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:302
|
1435 |
+
msgid "Platform"
|
1436 |
+
msgstr "المنصة"
|
1437 |
+
|
1438 |
+
#: wp-statistics/includes/log/all-browsers.php:141
|
1439 |
+
msgid "Browsers by platform"
|
1440 |
+
msgstr "حسب نوع المنصة"
|
1441 |
+
|
1442 |
+
#: wp-statistics/includes/log/all-browsers.php:249
|
1443 |
+
msgid "%s Version"
|
1444 |
+
msgstr "الإصدار %s"
|
1445 |
+
|
1446 |
+
#: wp-statistics/includes/log/exclusions.php:8
|
1447 |
+
msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
|
1448 |
+
msgstr "تنبيه: لم يتم تعيين الاستثناءات حاليا ليتم تسجيلها، قد لا تستطيع عكس نتائج الإحصائيات الحالية أدناه!"
|
1449 |
+
|
1450 |
+
#: wp-statistics/includes/log/exclusions.php:64
|
1451 |
+
msgid "Exclusions Statistics"
|
1452 |
+
msgstr "استثناءات الاحصائيات"
|
1453 |
+
|
1454 |
+
#: wp-statistics/includes/functions/functions.php:970
|
1455 |
+
msgid "10 Days"
|
1456 |
+
msgstr "10 أيام"
|
1457 |
+
|
1458 |
+
#: wp-statistics/includes/functions/functions.php:970
|
1459 |
+
msgid "20 Days"
|
1460 |
+
msgstr "20 يوم"
|
1461 |
+
|
1462 |
+
#: wp-statistics/includes/functions/functions.php:970
|
1463 |
+
msgid "30 Days"
|
1464 |
+
msgstr "30 يو م"
|
1465 |
+
|
1466 |
+
#: wp-statistics/includes/functions/functions.php:970
|
1467 |
+
msgid "2 Months"
|
1468 |
+
msgstr "شهرين"
|
1469 |
+
|
1470 |
+
#: wp-statistics/includes/functions/functions.php:970
|
1471 |
+
msgid "3 Months"
|
1472 |
+
msgstr "3 أشهر"
|
1473 |
+
|
1474 |
+
#: wp-statistics/includes/functions/functions.php:970
|
1475 |
+
msgid "6 Months"
|
1476 |
+
msgstr "6 أشهر"
|
1477 |
+
|
1478 |
+
#: wp-statistics/includes/functions/functions.php:970
|
1479 |
+
msgid "9 Months"
|
1480 |
+
msgstr "9 أشهر"
|
1481 |
+
|
1482 |
+
#: wp-statistics/includes/functions/functions.php:970
|
1483 |
+
msgid "1 Year"
|
1484 |
+
msgstr "سنة"
|
1485 |
+
|
1486 |
+
#: wp-statistics/includes/log/exclusions.php:73
|
1487 |
+
msgid "Exclusions Statistical Chart"
|
1488 |
+
msgstr "الرسم البياني لإحصائيات الاستثناءات"
|
1489 |
+
|
1490 |
+
#: wp-statistics/includes/log/exclusions.php:95
|
1491 |
+
msgid "Excluded hits in the last"
|
1492 |
+
msgstr "استبعاد النقرات في الأخير"
|
1493 |
+
|
1494 |
+
#: wp-statistics/includes/log/exclusions.php:95
|
1495 |
+
#: wp-statistics/includes/log/hit-statistics.php:66
|
1496 |
+
#: wp-statistics/includes/log/search-statistics.php:69
|
1497 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1498 |
+
#: wp-statistics/includes/log/widgets/search.php:42
|
1499 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1500 |
+
msgid "days"
|
1501 |
+
msgstr "أيام"
|
1502 |
+
|
1503 |
+
#: wp-statistics/includes/log/exclusions.php:116
|
1504 |
+
msgid "Number of excluded hits"
|
1505 |
+
msgstr "عدد الزيارات المستبعدة"
|
1506 |
+
|
1507 |
+
#: wp-statistics/includes/log/hit-statistics.php:27
|
1508 |
+
msgid "Hits Statistics Chart"
|
1509 |
+
msgstr "الرسم البياني لاحصائيات النقرات"
|
1510 |
+
|
1511 |
+
#: wp-statistics/includes/log/hit-statistics.php:66
|
1512 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1513 |
+
msgid "Hits in the last"
|
1514 |
+
msgstr "آخر النقرات"
|
1515 |
+
|
1516 |
+
#: wp-statistics/includes/log/hit-statistics.php:87
|
1517 |
+
#: wp-statistics/includes/log/widgets/hits.php:65
|
1518 |
+
msgid "Number of visits and visitors"
|
1519 |
+
msgstr "عدد الزيارات والزوار"
|
1520 |
+
|
1521 |
+
#: wp-statistics/includes/log/hit-statistics.php:101
|
1522 |
+
#: wp-statistics/includes/log/hit-statistics.php:170
|
1523 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1524 |
+
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1525 |
+
#: wp-statistics/includes/log/widgets/summary.php:24
|
1526 |
+
msgid "Visit"
|
1527 |
+
msgstr "زيارة"
|
1528 |
+
|
1529 |
+
#: wp-statistics/includes/log/hit-statistics.php:101
|
1530 |
+
#: wp-statistics/includes/log/hit-statistics.php:171
|
1531 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1532 |
+
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1533 |
+
#: wp-statistics/includes/log/widgets/summary.php:23
|
1534 |
+
msgid "Visitor"
|
1535 |
+
msgstr "زائر"
|
1536 |
+
|
1537 |
+
#: wp-statistics/includes/log/last-search.php:65
|
1538 |
+
msgid "Latest Search Word Statistics"
|
1539 |
+
msgstr "أحصائيات أحدث كلمات البحث"
|
1540 |
+
|
1541 |
+
#: wp-statistics/includes/log/last-search.php:110
|
1542 |
+
#: wp-statistics/includes/log/last-visitor.php:101
|
1543 |
+
#: wp-statistics/includes/log/online.php:50
|
1544 |
+
#: wp-statistics/includes/log/widgets/google.map.php:60
|
1545 |
+
#: wp-statistics/includes/log/widgets/jqv.map.php:55
|
1546 |
+
#: wp-statistics/includes/log/widgets/recent.php:14
|
1547 |
+
#: wp-statistics/includes/log/widgets/words.php:27
|
1548 |
+
msgid "#hash#"
|
1549 |
+
msgstr "#hash#"
|
1550 |
+
|
1551 |
+
#: wp-statistics/includes/log/last-search.php:115
|
1552 |
+
#: wp-statistics/includes/log/last-visitor.php:106
|
1553 |
+
#: wp-statistics/includes/log/online.php:55
|
1554 |
+
#: wp-statistics/includes/log/top-referring.php:112
|
1555 |
+
#: wp-statistics/includes/log/widgets/recent.php:19
|
1556 |
+
#: wp-statistics/includes/log/widgets/words.php:42
|
1557 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:60
|
1558 |
+
msgid "Map"
|
1559 |
+
msgstr "خريطة"
|
1560 |
+
|
1561 |
+
#: wp-statistics/includes/log/last-search.php:159
|
1562 |
+
#: wp-statistics/includes/log/last-visitor.php:139
|
1563 |
+
#: wp-statistics/includes/log/online.php:109
|
1564 |
+
#: wp-statistics/includes/log/top-pages.php:205
|
1565 |
+
#: wp-statistics/includes/log/top-referring.php:153
|
1566 |
+
msgid "Page"
|
1567 |
+
msgstr "صفحة"
|
1568 |
+
|
1569 |
+
#: wp-statistics/includes/log/last-search.php:159
|
1570 |
+
#: wp-statistics/includes/log/last-visitor.php:139
|
1571 |
+
#: wp-statistics/includes/log/online.php:109
|
1572 |
+
#: wp-statistics/includes/log/top-pages.php:205
|
1573 |
+
#: wp-statistics/includes/log/top-referring.php:153
|
1574 |
+
msgid "From"
|
1575 |
+
msgstr "من"
|
1576 |
+
|
1577 |
+
#: wp-statistics/includes/log/last-search.php:47
|
1578 |
+
#: wp-statistics/includes/log/last-visitor.php:38
|
1579 |
+
#: wp-statistics/includes/log/top-referring.php:67
|
1580 |
+
#: wp-statistics/includes/log/top-referring.php:70
|
1581 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:192
|
1582 |
+
#: wp-statistics/widget.php:296
|
1583 |
+
msgid "All"
|
1584 |
+
msgstr "الكل"
|
1585 |
+
|
1586 |
+
#: wp-statistics/includes/log/last-visitor.php:68
|
1587 |
+
msgid "Recent Visitor Statistics"
|
1588 |
+
msgstr "آخر إحصائيات الزوار"
|
1589 |
+
|
1590 |
+
#: wp-statistics/includes/log/online.php:11
|
1591 |
+
#: wp-statistics/includes/log/online.php:18
|
1592 |
+
msgid "Online Users"
|
1593 |
+
msgstr "المستخدمين على الانترنت"
|
1594 |
+
|
1595 |
+
#: wp-statistics/includes/log/online.php:75
|
1596 |
+
msgid "Online for "
|
1597 |
+
msgstr "متصل لـ"
|
1598 |
+
|
1599 |
+
#: wp-statistics/includes/log/page-statistics.php:26
|
1600 |
+
msgid "Page Trend for Post ID"
|
1601 |
+
msgstr "صفحة الأكثر رواجاً بمعرف المشاركة"
|
1602 |
+
|
1603 |
+
#: wp-statistics/includes/log/page-statistics.php:35
|
1604 |
+
msgid "Page Trend"
|
1605 |
+
msgstr "الصفحة الأكثر رواجاً"
|
1606 |
+
|
1607 |
+
#: wp-statistics/includes/log/search-statistics.php:19
|
1608 |
+
#: wp-statistics/includes/log/search-statistics.php:28
|
1609 |
+
msgid "Search Engine Referral Statistics"
|
1610 |
+
msgstr "إحصائيات مرجعية محرك البحث"
|
1611 |
+
|
1612 |
+
#: wp-statistics/includes/log/search-statistics.php:69
|
1613 |
+
#: wp-statistics/includes/log/widgets/search.php:42
|
1614 |
+
msgid "Search engine referrals in the last"
|
1615 |
+
msgstr "إحالات محرك البحث في الأخير"
|
1616 |
+
|
1617 |
+
#: wp-statistics/includes/log/search-statistics.php:90
|
1618 |
+
#: wp-statistics/includes/log/widgets/search.php:63
|
1619 |
+
msgid "Number of referrals"
|
1620 |
+
msgstr "عدد الإحالات"
|
1621 |
+
|
1622 |
+
#: wp-statistics/includes/log/exclusions.php:24
|
1623 |
+
#: wp-statistics/includes/log/search-statistics.php:104
|
1624 |
+
#: wp-statistics/includes/log/widgets/quickstats.php:58
|
1625 |
+
#: wp-statistics/includes/log/widgets/quickstats.php:105
|
1626 |
+
#: wp-statistics/includes/log/widgets/search.php:77
|
1627 |
+
#: wp-statistics/includes/log/widgets/summary.php:58
|
1628 |
+
#: wp-statistics/includes/log/widgets/summary.php:105
|
1629 |
+
msgid "Total"
|
1630 |
+
msgstr "المجموع"
|
1631 |
+
|
1632 |
+
#: wp-statistics/includes/log/top-countries.php:18
|
1633 |
+
#: wp-statistics/includes/log/top-countries.php:27
|
1634 |
+
msgid "Top Countries"
|
1635 |
+
msgstr "أفضل الدول"
|
1636 |
+
|
1637 |
+
#: wp-statistics/includes/log/top-countries.php:31
|
1638 |
+
#: wp-statistics/includes/log/widgets/countries.php:9
|
1639 |
+
#: wp-statistics/includes/log/widgets/top.visitors.php:11
|
1640 |
+
msgid "Rank"
|
1641 |
+
msgstr "الترتيب"
|
1642 |
+
|
1643 |
+
#: wp-statistics/includes/log/top-countries.php:32
|
1644 |
+
#: wp-statistics/includes/log/widgets/countries.php:10
|
1645 |
+
#: wp-statistics/includes/log/widgets/top.visitors.php:13
|
1646 |
+
msgid "Flag"
|
1647 |
+
msgstr "العلم"
|
1648 |
+
|
1649 |
+
#: wp-statistics/includes/log/top-countries.php:33
|
1650 |
+
#: wp-statistics/includes/log/widgets/countries.php:11
|
1651 |
+
#: wp-statistics/includes/log/widgets/top.visitors.php:14
|
1652 |
+
msgid "Country"
|
1653 |
+
msgstr "الدولة"
|
1654 |
+
|
1655 |
+
#: wp-statistics/includes/log/top-countries.php:34
|
1656 |
+
#: wp-statistics/includes/log/widgets/countries.php:12
|
1657 |
+
msgid "Visitor Count"
|
1658 |
+
msgstr "عدد الزوار"
|
1659 |
+
|
1660 |
+
#: wp-statistics/includes/log/top-pages.php:20
|
1661 |
+
#: wp-statistics/includes/log/top-pages.php:156
|
1662 |
+
msgid "Top Pages"
|
1663 |
+
msgstr "أفضل الصفحات"
|
1664 |
+
|
1665 |
+
#: wp-statistics/includes/log/top-pages.php:30
|
1666 |
+
msgid "Top 5 Pages Trends"
|
1667 |
+
msgstr "الصفحات الـ5 الأكثر رواجاً"
|
1668 |
+
|
1669 |
+
#: wp-statistics/includes/log/top-pages.php:67
|
1670 |
+
msgid "Top 5 Page Trending Stats"
|
1671 |
+
msgstr "احصائيات الصفحات الـ5 الأكثر رواجاً"
|
1672 |
+
|
1673 |
+
#: wp-statistics/includes/log/top-pages.php:88
|
1674 |
+
#: wp-statistics/includes/log/widgets/page.php:63
|
1675 |
+
msgid "Number of Hits"
|
1676 |
+
msgstr "عدد الزيارات"
|
1677 |
+
|
1678 |
+
#: wp-statistics/includes/log/top-pages.php:184
|
1679 |
+
#: wp-statistics/includes/log/widgets/pages.php:13
|
1680 |
+
msgid "No page title found"
|
1681 |
+
msgstr "لم يتم العثور على عنوان الصفحة"
|
1682 |
+
|
1683 |
+
#: wp-statistics/includes/log/top-pages.php:187
|
1684 |
+
#: wp-statistics/includes/log/widgets/pages.php:16
|
1685 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:37
|
1686 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:122
|
1687 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:127
|
1688 |
+
#: wp-statistics/shortcode.php:139
|
1689 |
+
msgid "Visits"
|
1690 |
+
msgstr "الزيارات"
|
1691 |
+
|
1692 |
+
#: wp-statistics/includes/log/top-referring.php:4
|
1693 |
+
msgid "To be added soon"
|
1694 |
+
msgstr "تضاف قريبا"
|
1695 |
+
|
1696 |
+
#: wp-statistics/includes/log/top-referring.php:79
|
1697 |
+
msgid "Referring sites from"
|
1698 |
+
msgstr "مواقع اشارة من"
|
1699 |
+
|
1700 |
+
#: wp-statistics/includes/log/top-referring.php:137
|
1701 |
+
#: wp-statistics/includes/log/widgets/referring.php:35
|
1702 |
+
msgid "References"
|
1703 |
+
msgstr "المراجع"
|
1704 |
+
|
1705 |
+
#: wp-statistics/includes/log/top-visitors.php:12
|
1706 |
+
msgid "Top 100 Visitors Today"
|
1707 |
+
msgstr "أفضل 100 زائر اليوم"
|
1708 |
+
|
1709 |
+
#: wp-statistics/includes/log/log.php:17
|
1710 |
+
msgid "About WP Statistics Version %s"
|
1711 |
+
msgstr "حول إصدار احصائيات ووردبريس %s"
|
1712 |
+
|
1713 |
+
#: wp-statistics/includes/log/widgets/about.php:11
|
1714 |
+
msgid "Website"
|
1715 |
+
msgstr "الموقع"
|
1716 |
+
|
1717 |
+
#: wp-statistics/includes/log/widgets/about.php:12
|
1718 |
+
msgid "Rate and Review"
|
1719 |
+
msgstr "التقييم والمراجعة"
|
1720 |
+
|
1721 |
+
#: wp-statistics/includes/log/widgets/about.php:16
|
1722 |
+
msgid "More Information"
|
1723 |
+
msgstr "مزيد من المعلومات"
|
1724 |
+
|
1725 |
+
#: wp-statistics/includes/log/widgets/about.php:25
|
1726 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:12
|
1727 |
+
msgid "This product includes GeoLite2 data created by MaxMind, available from %s."
|
1728 |
+
msgstr "يتضمن هذا المنتج البيانات GeoLite2 التي أنشأتها MaxMind، المتاحة من %s."
|
1729 |
+
|
1730 |
+
#: wp-statistics/includes/log/widgets/browsers.php:34
|
1731 |
+
msgid "Other"
|
1732 |
+
msgstr "أخرى"
|
1733 |
+
|
1734 |
+
#: wp-statistics/wp-statistics.php:456
|
1735 |
+
msgid "Today Visitors Map"
|
1736 |
+
msgstr "خريطة زوار اليوم"
|
1737 |
+
|
1738 |
+
#: wp-statistics/includes/log/widgets/referring.php:36
|
1739 |
+
msgid "Address"
|
1740 |
+
msgstr "العنوان"
|
1741 |
+
|
1742 |
+
#: wp-statistics/includes/log/widgets/quickstats.php:12
|
1743 |
+
#: wp-statistics/includes/log/widgets/summary.php:12
|
1744 |
+
msgid "User(s) Online"
|
1745 |
+
msgstr "المتصلين على الانترنت"
|
1746 |
+
|
1747 |
+
#: wp-statistics/includes/log/widgets/quickstats.php:28
|
1748 |
+
#: wp-statistics/includes/log/widgets/quickstats.php:80
|
1749 |
+
#: wp-statistics/includes/log/widgets/summary.php:28
|
1750 |
+
#: wp-statistics/includes/log/widgets/summary.php:80
|
1751 |
+
msgid "Today"
|
1752 |
+
msgstr "اليوم"
|
1753 |
+
|
1754 |
+
#: wp-statistics/includes/log/widgets/quickstats.php:34
|
1755 |
+
#: wp-statistics/includes/log/widgets/quickstats.php:81
|
1756 |
+
#: wp-statistics/includes/log/widgets/summary.php:34
|
1757 |
+
#: wp-statistics/includes/log/widgets/summary.php:81
|
1758 |
+
msgid "Yesterday"
|
1759 |
+
msgstr "الأمس"
|
1760 |
+
|
1761 |
+
#: wp-statistics/includes/log/widgets/quickstats.php:99
|
1762 |
+
#: wp-statistics/includes/log/widgets/summary.php:99
|
1763 |
+
msgid "Daily Total"
|
1764 |
+
msgstr "المجموع اليومي"
|
1765 |
+
|
1766 |
+
#: wp-statistics/includes/log/widgets/quickstats.php:118
|
1767 |
+
#: wp-statistics/includes/log/widgets/summary.php:118
|
1768 |
+
msgid "Current Time and Date"
|
1769 |
+
msgstr "التوقيت الحالي و التاريخ"
|
1770 |
+
|
1771 |
+
#: wp-statistics/includes/log/widgets/quickstats.php:118
|
1772 |
+
#: wp-statistics/includes/log/widgets/summary.php:118
|
1773 |
+
msgid "(Adjustment)"
|
1774 |
+
msgstr "(التوافق)"
|
1775 |
+
|
1776 |
+
#: wp-statistics/includes/log/widgets/quickstats.php:122
|
1777 |
+
#: wp-statistics/includes/log/widgets/summary.php:122
|
1778 |
+
msgid "Date: %s"
|
1779 |
+
msgstr "التاريخ: %s"
|
1780 |
+
|
1781 |
+
#: wp-statistics/includes/log/widgets/quickstats.php:126
|
1782 |
+
#: wp-statistics/includes/log/widgets/summary.php:126
|
1783 |
+
msgid "Time: %s"
|
1784 |
+
msgstr "التوقيت: %s"
|
1785 |
+
|
1786 |
+
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1787 |
+
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1788 |
+
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1789 |
+
#: wp-statistics/wp-statistics.php:530
|
1790 |
+
msgid "Hits"
|
1791 |
+
msgstr "نقرات"
|
1792 |
+
|
1793 |
+
#: wp-statistics/includes/log/widgets/top.visitors.php:15
|
1794 |
+
msgid "IP"
|
1795 |
+
msgstr "IP"
|
1796 |
+
|
1797 |
+
#: wp-statistics/includes/log/widgets/top.visitors.php:17
|
1798 |
+
msgid "Agent"
|
1799 |
+
msgstr "وكيل"
|
1800 |
+
|
1801 |
+
#: wp-statistics/includes/log/widgets/top.visitors.php:19
|
1802 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:291
|
1803 |
+
msgid "Version"
|
1804 |
+
msgstr "الإصدار"
|
1805 |
+
|
1806 |
+
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1807 |
+
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1808 |
+
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:297
|
1809 |
+
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1810 |
+
msgid "Access denied!"
|
1811 |
+
msgstr "تم رفض الوصول!"
|
1812 |
+
|
1813 |
+
#: wp-statistics/ajax.php:31
|
1814 |
+
msgid "%s agent data deleted successfully."
|
1815 |
+
msgstr "%s تم حذف بيانات الوكيل بنجاح."
|
1816 |
+
|
1817 |
+
#: wp-statistics/ajax.php:34
|
1818 |
+
msgid "No agent data found to remove!"
|
1819 |
+
msgstr "لا توجد بيانات وكيل لإزالتها!"
|
1820 |
+
|
1821 |
+
#: wp-statistics/ajax.php:38 wp-statistics/ajax.php:68
|
1822 |
+
#: wp-statistics/ajax.php:120 wp-statistics/ajax.php:126
|
1823 |
+
msgid "Please select the desired items."
|
1824 |
+
msgstr "يرجى تحديد العناصر المطلوبة."
|
1825 |
+
|
1826 |
+
#: wp-statistics/ajax.php:62
|
1827 |
+
msgid "%s platform data deleted successfully."
|
1828 |
+
msgstr "%s تم حذف بيانات المنصة بنجاح."
|
1829 |
+
|
1830 |
+
#: wp-statistics/ajax.php:65
|
1831 |
+
msgid "No platform data found to remove!"
|
1832 |
+
msgstr "لا توجد بيانات منصة لإزالتها!"
|
1833 |
+
|
1834 |
+
#: wp-statistics/includes/functions/functions.php:1074
|
1835 |
+
msgid "%s table data deleted successfully."
|
1836 |
+
msgstr "%s تم حذف بيانات الجدول بنجاح."
|
1837 |
+
|
1838 |
+
#: wp-statistics/includes/functions/functions.php:1078
|
1839 |
+
msgid "Error, %s not emptied!"
|
1840 |
+
msgstr "خطأ, %s لم يتم التفريغ!"
|
1841 |
+
|
1842 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:5
|
1843 |
+
msgid "Database Setup"
|
1844 |
+
msgstr "إعداد قاعدة البيانات"
|
1845 |
+
|
1846 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:10
|
1847 |
+
msgid "Re-run Install"
|
1848 |
+
msgstr "إعادة تشغيل التثبيت"
|
1849 |
+
|
1850 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:14
|
1851 |
+
msgid "Install Now!"
|
1852 |
+
msgstr "تثبيت الآن!"
|
1853 |
+
|
1854 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:15
|
1855 |
+
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."
|
1856 |
+
msgstr "لسبب ما اذا فقدت بيانات في قاعدة البيانات أو احد العناصر الأساسية, هذا الأمر سيعيد تنفيذ العملية مرة أخرى."
|
1857 |
+
|
1858 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:20
|
1859 |
+
msgid "Database Index"
|
1860 |
+
msgstr "فهرس قاعدة بيانات"
|
1861 |
+
|
1862 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1863 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1864 |
+
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:528
|
1865 |
+
msgid "Countries"
|
1866 |
+
msgstr "الدول"
|
1867 |
+
|
1868 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:42
|
1869 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:74
|
1870 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:25
|
1871 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:40
|
1872 |
+
msgid "Update Now!"
|
1873 |
+
msgstr "تحديث الآن!"
|
1874 |
+
|
1875 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:43
|
1876 |
+
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."
|
1877 |
+
msgstr "المنصب القديم لإضافة احصائيات ووردبريس تسمح للإدخالات المتكررة في جداول الزوار في بعض الحالات. بتثبيت أحدث منتج يجب تواجد الفهرس في الجداول. لإنشاء فهرس لمنتج قديم يجب أن يتم حذف الإدخالات المكررة أولاً. أنقر على \"تحديث الآن\" وسيقوم تلقائيا بفحص جدول الزوار وحذف كافة الإدخالات المكررة وإضافة الفهرس."
|
1878 |
+
|
1879 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:44
|
1880 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:108
|
1881 |
+
msgid "This operation could take a long time on installs with many rows in the visitors table."
|
1882 |
+
msgstr "هذه العملية يمكن أن تستغرق وقتا طويلا على تثبيت مع العديد من الصفوف في جدول الزوار."
|
1883 |
+
|
1884 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:50
|
1885 |
+
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."
|
1886 |
+
msgstr "الإصدارات القديمة من منتج احصائيات ووردبريس تسمح للإدخالات المكررة في جدول الزوار في بعض الحالات. عند تثبيت إصدارات أحدث من ذلك سيتم إضافة فهرس فريد على الجدول."
|
1887 |
+
|
1888 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:51
|
1889 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:83
|
1890 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:114
|
1891 |
+
msgid "Congratulations, your installation is already up to date, nothing to do."
|
1892 |
+
msgstr "تهانينا، التثبيت موجود بالفعل حتى الآن، لا شيء للقيام به."
|
1893 |
+
|
1894 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:8
|
1895 |
+
#: wp-statistics/includes/optimization/wps-optimization.php:235
|
1896 |
+
msgid "Export"
|
1897 |
+
msgstr "تصدير"
|
1898 |
+
|
1899 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:13
|
1900 |
+
msgid "Export from"
|
1901 |
+
msgstr "التصدير من"
|
1902 |
+
|
1903 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:18
|
1904 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:37
|
1905 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:185
|
1906 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:242
|
1907 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:266
|
1908 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:134
|
1909 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:164
|
1910 |
+
msgid "Please select"
|
1911 |
+
msgstr "الرجاء تحديد"
|
1912 |
+
|
1913 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:26
|
1914 |
+
msgid "Select the table for the output file."
|
1915 |
+
msgstr "حدد الجدول لملف الإخراج."
|
1916 |
+
|
1917 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:32
|
1918 |
+
msgid "Export To"
|
1919 |
+
msgstr "التصدير لـ"
|
1920 |
+
|
1921 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:42
|
1922 |
+
msgid "Select the output file type."
|
1923 |
+
msgstr "حدد نوع ملف الإخراج."
|
1924 |
+
|
1925 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:48
|
1926 |
+
msgid "Include Header Row"
|
1927 |
+
msgstr "تضمين رأس الصف"
|
1928 |
+
|
1929 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:53
|
1930 |
+
msgid "Include a header row as the first line of the exported file."
|
1931 |
+
msgstr "تضمين صف الرأس كما في السطر الأول من الملف الذي تم تصديره."
|
1932 |
+
|
1933 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:54
|
1934 |
+
msgid "Start Now!"
|
1935 |
+
msgstr "ابدأ الآن!"
|
1936 |
+
|
1937 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:15
|
1938 |
+
msgid "Historical Values"
|
1939 |
+
msgstr "القيم التاريخية"
|
1940 |
+
|
1941 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:20
|
1942 |
+
msgid "Note: As you have just purged the database you must reload this page for these numbers to be correct."
|
1943 |
+
msgstr "ملاحظة: كلما قمت بتطهير قاعدة البيانات يجب تحميل هذه الصفحة لتكون الأرقام صحيحة."
|
1944 |
+
|
1945 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:26
|
1946 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1947 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1948 |
+
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1949 |
+
#: wp-statistics/wp-statistics.php:537
|
1950 |
+
msgid "Visitors"
|
1951 |
+
msgstr "الزوار"
|
1952 |
+
|
1953 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:31
|
1954 |
+
msgid "Number of historical number of visitors to the site (current value is %s)."
|
1955 |
+
msgstr "العدد التاريخي لزوار الموقع (القيمة الحالية هي %s)."
|
1956 |
+
|
1957 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:42
|
1958 |
+
msgid "Number of historical number of visits to the site (current value is %s)."
|
1959 |
+
msgstr "العدد التاريخي لزيارات الموقع (القيمة الحالية هي %s)."
|
1960 |
+
|
1961 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:48
|
1962 |
+
msgid "Update now!"
|
1963 |
+
msgstr "تحديث الآن!"
|
1964 |
+
|
1965 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:10
|
1966 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:43
|
1967 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:75
|
1968 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:107
|
1969 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:141
|
1970 |
+
msgid "Are you sure?"
|
1971 |
+
msgstr "هل أنت متأكد؟"
|
1972 |
+
|
1973 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:175
|
1974 |
+
msgid "Data"
|
1975 |
+
msgstr "المعطيات"
|
1976 |
+
|
1977 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:180
|
1978 |
+
msgid "Empty Table"
|
1979 |
+
msgstr "تفريغ الجدول"
|
1980 |
+
|
1981 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:194
|
1982 |
+
msgid "All data table will be lost."
|
1983 |
+
msgstr "سيتم فقدان جميع البيانات الجدول."
|
1984 |
+
|
1985 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:195
|
1986 |
+
msgid "Clear now!"
|
1987 |
+
msgstr "مسح الآن!"
|
1988 |
+
|
1989 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:203
|
1990 |
+
msgid "Purge records older than"
|
1991 |
+
msgstr "سجلات الضخ أقدم من"
|
1992 |
+
|
1993 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:209
|
1994 |
+
msgid "Deleted user statistics data older than the selected number of days. Minimum value is 30 days."
|
1995 |
+
msgstr "بيانات الاحصائيات المستخدم المحذوف أقدم من الرقم المحدد من الأيام. قيمة الحد الأدنى هو 30 يوما."
|
1996 |
+
|
1997 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:210
|
1998 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:225
|
1999 |
+
msgid "Purge now!"
|
2000 |
+
msgstr "ضخ الآن!"
|
2001 |
+
|
2002 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:232
|
2003 |
+
msgid "Delete User Agent Types"
|
2004 |
+
msgstr "حذف أنواع وكيل العضو"
|
2005 |
+
|
2006 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:237
|
2007 |
+
msgid "Delete Agents"
|
2008 |
+
msgstr "حذف الوكلاء"
|
2009 |
+
|
2010 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:252
|
2011 |
+
msgid "All visitor data will be lost for this agent type."
|
2012 |
+
msgstr "سيتم فقد جميع البيانات الزائر لهذا النوع."
|
2013 |
+
|
2014 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:253
|
2015 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:277
|
2016 |
+
msgid "Delete now!"
|
2017 |
+
msgstr "حذف الآن!"
|
2018 |
+
|
2019 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:261
|
2020 |
+
msgid "Delete Platforms"
|
2021 |
+
msgstr "حذف المنصات"
|
2022 |
+
|
2023 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:276
|
2024 |
+
msgid "All visitor data will be lost for this platform type."
|
2025 |
+
msgstr "سيتم فقد جميع البيانات الزائر لنوع هذه المنصة."
|
2026 |
+
|
2027 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:17
|
2028 |
+
msgid "Resources"
|
2029 |
+
msgstr "الموارد"
|
2030 |
+
|
2031 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:22
|
2032 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:27
|
2033 |
+
msgid "Memory usage in PHP"
|
2034 |
+
msgstr "استخدام الذاكرة في PHP"
|
2035 |
+
|
2036 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:26
|
2037 |
+
msgid "Byte"
|
2038 |
+
msgstr "بايت"
|
2039 |
+
|
2040 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:33
|
2041 |
+
msgid "PHP Memory Limit"
|
2042 |
+
msgstr "حدود ذاكرة PHP"
|
2043 |
+
|
2044 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:38
|
2045 |
+
msgid "The memory limit a script is allowed to consume, set in php.ini."
|
2046 |
+
msgstr "حدود الذاكرة تسمح للبرنامج النصي باستهلاك حد معين، قم بتعيين ملف php.ini."
|
2047 |
+
|
2048 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:44
|
2049 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:55
|
2050 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:66
|
2051 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:77
|
2052 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:88
|
2053 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:99
|
2054 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:110
|
2055 |
+
msgid "Number of rows in the %s table"
|
2056 |
+
msgstr "عدد الصفوف في جدول %s"
|
2057 |
+
|
2058 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:48
|
2059 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:59
|
2060 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:70
|
2061 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:81
|
2062 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:92
|
2063 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:103
|
2064 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:114
|
2065 |
+
msgid "Row"
|
2066 |
+
msgstr "صف"
|
2067 |
+
|
2068 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:49
|
2069 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:60
|
2070 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:71
|
2071 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:82
|
2072 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:93
|
2073 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:104
|
2074 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:115
|
2075 |
+
msgid "Number of rows"
|
2076 |
+
msgstr "عدد الصفوف"
|
2077 |
+
|
2078 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:120
|
2079 |
+
msgid "Version Info"
|
2080 |
+
msgstr "معلومات الإصدار"
|
2081 |
+
|
2082 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:125
|
2083 |
+
msgid "WP Statistics Version"
|
2084 |
+
msgstr "نسخة WP Statistics"
|
2085 |
+
|
2086 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:130
|
2087 |
+
msgid "The WP Statistics version you are running."
|
2088 |
+
msgstr "إصدار WP Statistics."
|
2089 |
+
|
2090 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:136
|
2091 |
+
msgid "PHP Version"
|
2092 |
+
msgstr "نسخة PHP"
|
2093 |
+
|
2094 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:141
|
2095 |
+
msgid "The PHP version you are running."
|
2096 |
+
msgstr "إصدار PHP."
|
2097 |
+
|
2098 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:147
|
2099 |
+
msgid "PHP Safe Mode"
|
2100 |
+
msgstr "الوضع الآمن PHP"
|
2101 |
+
|
2102 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:152
|
2103 |
+
msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
|
2104 |
+
msgstr "هل الوضع الآمن نشط. الكود GeoIP غير معتمد في الوضع الآمن."
|
2105 |
+
|
2106 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:158
|
2107 |
+
msgid "jQuery Version"
|
2108 |
+
msgstr "نسخة jQuery"
|
2109 |
+
|
2110 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:163
|
2111 |
+
msgid "The jQuery version you are running."
|
2112 |
+
msgstr "إصدار jQuery."
|
2113 |
+
|
2114 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:169
|
2115 |
+
msgid "cURL Version"
|
2116 |
+
msgstr "إصدار cURL"
|
2117 |
+
|
2118 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:173
|
2119 |
+
msgid "cURL not installed"
|
2120 |
+
msgstr "cURL غير مثبت"
|
2121 |
+
|
2122 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:174
|
2123 |
+
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."
|
2124 |
+
msgstr "نسخة الملحق PHP cURL تعمل. الملحق cURL مطلوب لعمل كود GeoIP, وإذا لم يتم تثبيته يتم تعطيل GeoIP."
|
2125 |
+
|
2126 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:184
|
2127 |
+
msgid "Installed"
|
2128 |
+
msgstr "مثبت"
|
2129 |
+
|
2130 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:184
|
2131 |
+
msgid "Not installed"
|
2132 |
+
msgstr "غير مثبت"
|
2133 |
+
|
2134 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:190
|
2135 |
+
msgid "File Info"
|
2136 |
+
msgstr "معلومات عن الملف"
|
2137 |
+
|
2138 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:195
|
2139 |
+
msgid "GeoIP Database"
|
2140 |
+
msgstr "قاعدة بيانات GeoIP"
|
2141 |
+
|
2142 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:204
|
2143 |
+
msgid "Database file does not exist."
|
2144 |
+
msgstr "لا وجود لملف قاعدة البيانات."
|
2145 |
+
|
2146 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:206
|
2147 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:225
|
2148 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:244
|
2149 |
+
msgid ", created on "
|
2150 |
+
msgstr "، التي تم إنشاؤها على"
|
2151 |
+
|
2152 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:208
|
2153 |
+
msgid "The file size and date of the GeoIP database."
|
2154 |
+
msgstr "حجم الملف والتاريخ من قاعدة بيانات GeoIP."
|
2155 |
+
|
2156 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:214
|
2157 |
+
msgid "browscap.ini File"
|
2158 |
+
msgstr "ملف browscap.ini"
|
2159 |
+
|
2160 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:223
|
2161 |
+
msgid "browscap.ini file does not exist."
|
2162 |
+
msgstr "لا وجود لملف browscap.ini."
|
2163 |
+
|
2164 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:227
|
2165 |
+
msgid "The file size and date of the browscap.ini file."
|
2166 |
+
msgstr "حجم الملف وتاريخ الملف browscap.ini."
|
2167 |
+
|
2168 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:233
|
2169 |
+
msgid "browscap Cache File"
|
2170 |
+
msgstr "browscap ملف ذاكرة التخزين المؤقت"
|
2171 |
+
|
2172 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:242
|
2173 |
+
msgid "browscap cache file does not exist."
|
2174 |
+
msgstr "لا وجود لملف ذاكرة التخزين المؤقت browscap."
|
2175 |
+
|
2176 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:246
|
2177 |
+
msgid "The file size and date of the browscap cache file."
|
2178 |
+
msgstr "حجم الملف وتاريخ الملف المؤقت browscap."
|
2179 |
+
|
2180 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:251
|
2181 |
+
msgid "Client Info"
|
2182 |
+
msgstr "معلومات العميل"
|
2183 |
+
|
2184 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:256
|
2185 |
+
msgid "Client IP"
|
2186 |
+
msgstr "IP العميل"
|
2187 |
+
|
2188 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:261
|
2189 |
+
msgid "The client IP address."
|
2190 |
+
msgstr "عنوان IP للعميل."
|
2191 |
+
|
2192 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:267
|
2193 |
+
msgid "User Agent"
|
2194 |
+
msgstr "وكيل المستخدم"
|
2195 |
+
|
2196 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:272
|
2197 |
+
msgid "The client user agent string."
|
2198 |
+
msgstr "سلسلة عامل المستخدم العميل."
|
2199 |
+
|
2200 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:278
|
2201 |
+
msgid "Browser"
|
2202 |
+
msgstr "المتصفح"
|
2203 |
+
|
2204 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:285
|
2205 |
+
msgid "The detected client browser."
|
2206 |
+
msgstr "مستكشف مستعرض العميل."
|
2207 |
+
|
2208 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:296
|
2209 |
+
msgid "The detected client browser version."
|
2210 |
+
msgstr "إصدار مستكشف مستعرض العميل."
|
2211 |
+
|
2212 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:307
|
2213 |
+
msgid "The detected client platform."
|
2214 |
+
msgstr "مستكشف منصة العميل"
|
2215 |
+
|
2216 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:4
|
2217 |
+
msgid "This will replace all IP addresses in the database with hash values and cannot be undo, are you sure?"
|
2218 |
+
msgstr "سيؤدي ذلك إلى استبدال جميع عناوين IP في قاعدة البيانات مع قيم التجزئة ولا يمكن التراجع، هل أنت متأكد؟"
|
2219 |
+
|
2220 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:16
|
2221 |
+
msgid "GeoIP Options"
|
2222 |
+
msgstr "خيارات GeoIP"
|
2223 |
+
|
2224 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:26
|
2225 |
+
msgid "Updates any unknown location data in the database, this may take a while"
|
2226 |
+
msgstr "تحديث أي بيانات الموقع غير معروفة في قاعدة البيانات, هذا قد يستغرق بعض الوقت"
|
2227 |
+
|
2228 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:31
|
2229 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:66
|
2230 |
+
msgid "IP Addresses"
|
2231 |
+
msgstr "عناوين IP"
|
2232 |
+
|
2233 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:36
|
2234 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:71
|
2235 |
+
msgid "Hash IP Addresses"
|
2236 |
+
msgstr "عناوين IP المجزئة"
|
2237 |
+
|
2238 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:41
|
2239 |
+
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"
|
2240 |
+
msgstr "استبدال عناوين IP في قاعدة البيانات مع قيم التجزئة، فإنك لن تكون قادرا على استرداد عناوين IP في المستقبل لتجميع معلومات عن الموقع بعد ذلك وهذا قد يستغرق بعض الوقت"
|
2241 |
+
|
2242 |
+
#: wp-statistics/includes/optimization/wps-optimization.php:43
|
2243 |
+
msgid "IP Addresses replaced with hash values."
|
2244 |
+
msgstr "استبدال عناوين IP مع قيم التجزئة."
|
2245 |
+
|
2246 |
+
#: wp-statistics/includes/optimization/wps-optimization.php:51
|
2247 |
+
msgid "Install routine complete."
|
2248 |
+
msgstr "التثبيت الكامل الروتيني."
|
2249 |
+
|
2250 |
+
#: wp-statistics/includes/optimization/wps-optimization.php:234
|
2251 |
+
msgid "Resources/Information"
|
2252 |
+
msgstr "الموارد/معلومات"
|
2253 |
+
|
2254 |
+
#: wp-statistics/includes/optimization/wps-optimization.php:236
|
2255 |
+
msgid "Purging"
|
2256 |
+
msgstr "تطهير"
|
2257 |
+
|
2258 |
+
#: wp-statistics/includes/optimization/wps-optimization.php:237
|
2259 |
+
msgid "Database"
|
2260 |
+
msgstr "قاعدة البيانات"
|
2261 |
+
|
2262 |
+
#: wp-statistics/includes/optimization/wps-optimization.php:238
|
2263 |
+
msgid "Updates"
|
2264 |
+
msgstr "تحديثات"
|
2265 |
+
|
2266 |
+
#: wp-statistics/includes/optimization/wps-optimization.php:239
|
2267 |
+
msgid "Historical"
|
2268 |
+
msgstr "التاريخي"
|
2269 |
+
|
2270 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:8
|
2271 |
+
msgid "WP Statistics V%s"
|
2272 |
+
msgstr "WP Statistics V%s"
|
2273 |
+
|
2274 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:28
|
2275 |
+
msgid "Visit Us Online"
|
2276 |
+
msgstr "زورونا على الإنترنت"
|
2277 |
+
|
2278 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:32
|
2279 |
+
msgid "Come visit our great new %s and keep up to date on the latest news about WP Statistics."
|
2280 |
+
msgstr "قم بزيارة موقعنا الجديد كلياً على %s وأبقى على إطلاع دائم حول أخبار احصائيات ووردبريس."
|
2281 |
+
|
2282 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:32
|
2283 |
+
msgid "website"
|
2284 |
+
msgstr "الموقع"
|
2285 |
+
|
2286 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:36
|
2287 |
+
msgid "Rate and Review at WordPress.org"
|
2288 |
+
msgstr "التقييم و المراجعة في WordPress.org"
|
2289 |
+
|
2290 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:40
|
2291 |
+
msgid "Thanks for installing WP Statistics, we encourage you to submit a "
|
2292 |
+
msgstr "كل الشكر لتثبيت احصائيات ووردبريس، ونحن نشجعكم على تقديم"
|
2293 |
+
|
2294 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:40
|
2295 |
+
msgid "rating and review"
|
2296 |
+
msgstr "التقييم و المراجعة"
|
2297 |
+
|
2298 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:40
|
2299 |
+
msgid "over at WordPress.org. Your feedback is greatly appreciated!"
|
2300 |
+
msgstr "في WordPress.org. حيث أن ملاحظاتكم في موضع تقدير دائماً!"
|
2301 |
+
|
2302 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:44
|
2303 |
+
msgid "Translations"
|
2304 |
+
msgstr "الترجمات"
|
2305 |
+
|
2306 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:48
|
2307 |
+
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."
|
2308 |
+
msgstr "احصائيات ووردبريس تدعم التدويل ونحن نشجع مستخدمينا على تقديم الترجمات، يرجى زيارة موقعنا %s لرؤية الوضع الحالي و %s إذا كنت ترغب في المساعدة."
|
2309 |
+
|
2310 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:48
|
2311 |
+
msgid "translation collaboration site"
|
2312 |
+
msgstr "الموقع التعاوني للترجمة"
|
2313 |
+
|
2314 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:48
|
2315 |
+
msgid "drop us a line"
|
2316 |
+
msgstr "اترك لنا رسالة"
|
2317 |
+
|
2318 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:52
|
2319 |
+
msgid "Support"
|
2320 |
+
msgstr "دعم"
|
2321 |
+
|
2322 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:57
|
2323 |
+
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:"
|
2324 |
+
msgstr "نحن آسفون إن كنت تواجه مشكلة مع احصائيات ووردبريس ونحن سعداء للمساعدة. وهنا عدد قليل من الأشياء للقيام بها قبل الاتصال بنا:"
|
2325 |
+
|
2326 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:60
|
2327 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:61
|
2328 |
+
msgid "Have you read the %s?"
|
2329 |
+
msgstr "هل قرأت %s؟"
|
2330 |
+
|
2331 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:60
|
2332 |
+
msgid "FAQs"
|
2333 |
+
msgstr "أسئلة وأجوبة"
|
2334 |
+
|
2335 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:61
|
2336 |
+
msgid "manual"
|
2337 |
+
msgstr "الدليل"
|
2338 |
+
|
2339 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:62
|
2340 |
+
msgid "Have you search the %s for a similar issue?"
|
2341 |
+
msgstr "هل بحثت في %s لمشكلة مشابهة؟"
|
2342 |
+
|
2343 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:62
|
2344 |
+
msgid "support forum"
|
2345 |
+
msgstr "منتدى الدعم"
|
2346 |
+
|
2347 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:63
|
2348 |
+
msgid "Have you search the Internet for any error messages you are receiving?"
|
2349 |
+
msgstr "هل بحثت في الإنترنت عن أي رسائل خطأ التي تظهر لك؟"
|
2350 |
+
|
2351 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:64
|
2352 |
+
msgid "Make sure you have access to your PHP error logs."
|
2353 |
+
msgstr "تأكد أن لديك الوصول إلى سجلات الخطأ PHP الخاص بك."
|
2354 |
+
|
2355 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:67
|
2356 |
+
msgid "And a few things to double-check:"
|
2357 |
+
msgstr "وعدد قليل من الأشياء الأخرى:"
|
2358 |
+
|
2359 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:70
|
2360 |
+
msgid "How's your memory_limit in php.ini?"
|
2361 |
+
msgstr "كيف حال memory_limit الخاصة بك في ملف php.ini؟"
|
2362 |
+
|
2363 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:71
|
2364 |
+
msgid "Have you tried disabling any other plugins you may have installed?"
|
2365 |
+
msgstr "هل حاولت تعطيل أي إضافات أخرى التي قد تم تثبيتها؟"
|
2366 |
+
|
2367 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:72
|
2368 |
+
msgid "Have you tried using the default WordPress theme?"
|
2369 |
+
msgstr "هل حاولت استخدام المظهر الافتراضي للوردبريس؟"
|
2370 |
+
|
2371 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:73
|
2372 |
+
msgid "Have you double checked the plugin settings?"
|
2373 |
+
msgstr "هل ضاعفت الفحص على إعدادات البرنامج المساعد؟"
|
2374 |
+
|
2375 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:74
|
2376 |
+
msgid "Do you have all the required PHP extensions installed?"
|
2377 |
+
msgstr "هل قمت بتثبيت جميع ملحقات PHP المطلوبة؟"
|
2378 |
+
|
2379 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:75
|
2380 |
+
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?"
|
2381 |
+
msgstr "أنت تحصل على صفحة فارغة أو غير مكتملة العرض في المستعرض الخاص بك؟ قم بعرض المصدر للصفحة وتحقق من وجود أية أخطاء قاتلة؟"
|
2382 |
+
|
2383 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:76
|
2384 |
+
msgid "Have you checked your PHP and web server error logs?"
|
2385 |
+
msgstr "هل راجعت سجل أخطاء الـPHP الخاص بك؟"
|
2386 |
+
|
2387 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:79
|
2388 |
+
msgid "Still not having any luck?"
|
2389 |
+
msgstr "لم يحالفك الحظ حتى الآن؟"
|
2390 |
+
|
2391 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:79
|
2392 |
+
msgid "Then please open a new thread on the %s and we'll respond as soon as possible."
|
2393 |
+
msgstr "الرجاء فتح موضوع جديد في %s، وسنقوم بالرد في أقرب وقت ممكن."
|
2394 |
+
|
2395 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:79
|
2396 |
+
msgid "WordPress.org support forum"
|
2397 |
+
msgstr "منتدى الدعم"
|
2398 |
+
|
2399 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:83
|
2400 |
+
msgid "Alternatively %s support is available as well."
|
2401 |
+
msgstr "كما أنه يتوفر دعم للغة %s كذلك."
|
2402 |
+
|
2403 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:83
|
2404 |
+
msgid "Farsi"
|
2405 |
+
msgstr "الفارسية"
|
2406 |
+
|
2407 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:21
|
2408 |
+
msgid "WP Statistics Honey Pot Page"
|
2409 |
+
msgstr "الفسفور الابيض الاحصائيات عاء العسل الصفحة"
|
2410 |
+
|
2411 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:22
|
2412 |
+
msgid "This is the honey pot for WP Statistics to use, do not delete."
|
2413 |
+
msgstr "هذا هو وعاء العسل لاحصائيات ووردبريس المستخدم, لا تحذف"
|
2414 |
+
|
2415 |
+
#: wp-statistics/includes/settings/tabs/wps-access-level.php:23
|
2416 |
+
#: wp-statistics/includes/settings/wps-settings.php:103
|
2417 |
+
msgid "Access Levels"
|
2418 |
+
msgstr "مستويات الوصول"
|
2419 |
+
|
2420 |
+
#: wp-statistics/includes/settings/tabs/wps-access-level.php:52
|
2421 |
+
msgid "Required user level to view WP Statistics"
|
2422 |
+
msgstr "مطلوب مستوى المستخدم لعرض الاحصائيات"
|
2423 |
+
|
2424 |
+
#: wp-statistics/includes/settings/tabs/wps-access-level.php:67
|
2425 |
+
msgid "Required user level to manage WP Statistics"
|
2426 |
+
msgstr "مطلوب مستوى المستخدم لإدارة الاحصائيات"
|
2427 |
+
|
2428 |
+
#: wp-statistics/includes/settings/tabs/wps-access-level.php:75
|
2429 |
+
msgid "See the %s for details on capability levels."
|
2430 |
+
msgstr "اطلع على %s لمزيد من التفاصيل على مستويات القدرة."
|
2431 |
+
|
2432 |
+
#: wp-statistics/includes/settings/tabs/wps-access-level.php:75
|
2433 |
+
msgid "WordPress Roles and Capabilities page"
|
2434 |
+
msgstr "أدوار وقدرات صفحة ووردبريس"
|
2435 |
+
|
2436 |
+
#: wp-statistics/includes/settings/tabs/wps-access-level.php:76
|
2437 |
+
msgid "Hint: manage_network = Super Admin Network, manage_options = Administrator, edit_others_posts = Editor, publish_posts = Author, edit_posts = Contributor, read = Everyone."
|
2438 |
+
msgstr "تلميح: manage_network = مسؤول, manage_options = مدير, edit_others_posts = محرر, publish_posts = كاتب, edit_posts = مساهم, read = الجميع"
|
2439 |
+
|
2440 |
+
#: wp-statistics/includes/settings/tabs/wps-access-level.php:77
|
2441 |
+
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."
|
2442 |
+
msgstr "كل ما سبق من الكاسكيدز هي حقوق تكوين الووردبريس الافتراضي. على سبيل المثال عند اختيار publish_posts يمنح حقوق المؤلف,المحرر,المدير,المسؤول."
|
2443 |
+
|
2444 |
+
#: wp-statistics/includes/settings/tabs/wps-access-level.php:78
|
2445 |
+
msgid "If you need a more robust solution to delegate access you might want to look at %s in the WordPress plugin directory."
|
2446 |
+
msgstr "إذا كنت في حاجة الى حل أكثر قوة لتفويض الوصول التي قد ترغب في النظر في %s الدليل المساعد لووردبريس."
|
2447 |
+
|
2448 |
+
#: wp-statistics/includes/log/exclusions.php:197
|
2449 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2450 |
+
#: wp-statistics/includes/settings/wps-settings.php:104
|
2451 |
+
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:529
|
2452 |
+
msgid "Exclusions"
|
2453 |
+
msgstr "الاستثناءات"
|
2454 |
+
|
2455 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:50
|
2456 |
+
msgid "Record exclusions"
|
2457 |
+
msgstr "سجل الاستثناءات"
|
2458 |
+
|
2459 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:52
|
2460 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:106
|
2461 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:133
|
2462 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:150
|
2463 |
+
msgid "Enable"
|
2464 |
+
msgstr "تمكين"
|
2465 |
+
|
2466 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:53
|
2467 |
+
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."
|
2468 |
+
msgstr "يقوم هذا الخيار بتسجيل جميع النقرات المستبعدة في جدول منفصل مع أسباب الأستبعاد، ولكن بدون معلومات أخرى. وهذا قد يولد الكثير من البيانات ولكن هو مفيد إذا كنت تريد أن ترى العدد الكلي من المشاهدات التي يحصل عليها موقعك، وليس فقط المستخدم الفعلي للموقع."
|
2469 |
+
|
2470 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:58
|
2471 |
+
msgid "Exclude User Roles"
|
2472 |
+
msgstr "استبعاد أدوار المستخدم"
|
2473 |
+
|
2474 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:74
|
2475 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:196
|
2476 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:203
|
2477 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:210
|
2478 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:217
|
2479 |
+
msgid "Exclude"
|
2480 |
+
msgstr "منع"
|
2481 |
+
|
2482 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:75
|
2483 |
+
msgid "Exclude %s role from data collection."
|
2484 |
+
msgstr "استبعاد دور %s من جمع البيانات."
|
2485 |
+
|
2486 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:81
|
2487 |
+
msgid "IP/Robot Exclusions"
|
2488 |
+
msgstr "استثناءات IP/Robot"
|
2489 |
+
|
2490 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:85
|
2491 |
+
msgid "Robot list"
|
2492 |
+
msgstr "قائمة الروبوت"
|
2493 |
+
|
2494 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:98
|
2495 |
+
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."
|
2496 |
+
msgstr "قائمة من الكلمات (واحد في كل سطر) لمطابقة ضد للكشف عن الروبوتات. يجب أن تكون إدخالات 4 أحرف على الأقل أو أنها سيتم تجاهلها."
|
2497 |
+
|
2498 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:99
|
2499 |
+
msgid "Reset to Default"
|
2500 |
+
msgstr "إعادة تعيين إلى الافتراضي"
|
2501 |
+
|
2502 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:104
|
2503 |
+
msgid "Force robot list update after upgrades"
|
2504 |
+
msgstr "إجبار تحديث قائمة الربوت بعد الترقيات"
|
2505 |
+
|
2506 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:107
|
2507 |
+
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."
|
2508 |
+
msgstr "إجبار قائمة الروبوت لإعادة تعيين إلى الافتراضي بعد تحديث احصائيات ووردبريس لتأخذ مكان. ملاحظة إذا تم تمكين هذا الخيار أي روبوتات تم تخصيصها في القائمة سوف تضيع."
|
2509 |
+
|
2510 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:112
|
2511 |
+
msgid "Robot visit threshold"
|
2512 |
+
msgstr "الحد الأدنى بزيارة الروبوت"
|
2513 |
+
|
2514 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:115
|
2515 |
+
msgid "Treat visitors with more than this number of visits per day as robots. 0 = disabled."
|
2516 |
+
msgstr "تعامل للزوار أكثر من هذا العدد من مرة في اليوم الواحد كما الروبوتات. 0 = تعطيل."
|
2517 |
+
|
2518 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:120
|
2519 |
+
msgid "Excluded IP address list"
|
2520 |
+
msgstr "قائمة عناوين IP المستبعدة"
|
2521 |
+
|
2522 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:123
|
2523 |
+
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."
|
2524 |
+
msgstr "قائمة عناوين IP وأقنعة الشبكة الفرعية (واحد في كل سطر) لاستبعاد من جميع الإحصائيات (وتقبل الأشكال كل من 192.168.0.0/24 و 192.168.0.0/255.255.255.0 ). لتحديد عنوان IP فقط، استخدم قيمة الشبكة الفرعية 32 أو 255.255.255.255.255."
|
2525 |
+
|
2526 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:124
|
2527 |
+
msgid "Add 10.0.0.0"
|
2528 |
+
msgstr "إضافة 10.0.0.0"
|
2529 |
+
|
2530 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:125
|
2531 |
+
msgid "Add 172.16.0.0"
|
2532 |
+
msgstr "إضافة 172.16.0.0"
|
2533 |
+
|
2534 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:126
|
2535 |
+
msgid "Add 192.168.0.0"
|
2536 |
+
msgstr "إضافة 192.168.0.0"
|
2537 |
+
|
2538 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:131
|
2539 |
+
msgid "Use honey pot"
|
2540 |
+
msgstr "استخدام وعاء العسل"
|
2541 |
+
|
2542 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:134
|
2543 |
+
msgid "Use a honey pot page to identify robots."
|
2544 |
+
msgstr "استخدام صفحة وعاء العسل لتحديد الروبوتات."
|
2545 |
+
|
2546 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:139
|
2547 |
+
msgid "Honey pot post id"
|
2548 |
+
msgstr "معرف مقال وعاء العسل"
|
2549 |
+
|
2550 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:142
|
2551 |
+
msgid "The post id to use for the honeypot page."
|
2552 |
+
msgstr "رقم المشاركة لاستخدامها في صفحة المصيدة."
|
2553 |
+
|
2554 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:143
|
2555 |
+
msgid "Create a new honey pot page"
|
2556 |
+
msgstr "إنشاء صفحة وعاء عسل جديدة"
|
2557 |
+
|
2558 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:156
|
2559 |
+
msgid "GeoIP Exclusions"
|
2560 |
+
msgstr "استثناءات GeoIP"
|
2561 |
+
|
2562 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:160
|
2563 |
+
msgid "Excluded countries list"
|
2564 |
+
msgstr "قائمة الدول المستثناة"
|
2565 |
+
|
2566 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:163
|
2567 |
+
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."
|
2568 |
+
msgstr "قائمة رموز البلد (واحد في كل سطر، رسالتين لكل منهما) لاستبعاد من جمع الإحصاءات. استخدام \"000\" (ثلاثة أصفار) لاستبعاد بلدان غير معروفة."
|
2569 |
+
|
2570 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:168
|
2571 |
+
msgid "Included countries list"
|
2572 |
+
msgstr "قائمة البلدان المدرجة"
|
2573 |
+
|
2574 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:171
|
2575 |
+
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."
|
2576 |
+
msgstr "قائمة رموز البلد (واحد في كل سطر، رسالتين لكل منهما) لتشمل في جمع الإحصاءات، إذا كانت هذه القائمة ليست فارغة، سيتم تسجيل الزوار فقط من الدول المدرجة. استخدام \"000\" (ثلاثة أصفار) لاستبعاد بلدان غير معروفة."
|
2577 |
+
|
2578 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:176
|
2579 |
+
msgid "Host Exclusions"
|
2580 |
+
msgstr "استثناءات المضيف"
|
2581 |
+
|
2582 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:180
|
2583 |
+
msgid "Excluded hosts list"
|
2584 |
+
msgstr "قائمة المضيفين المستبعدين"
|
2585 |
+
|
2586 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:183
|
2587 |
+
msgid "A list of fully qualified host names (ie. server.example.com, one per line) to exclude from statistics collection."
|
2588 |
+
msgstr "قائمة أسماء المضيف المؤهل بالكامل (أي. server.example.com، سطر واحد في المائة) لاستبعاد من جمع الإحصاءات."
|
2589 |
+
|
2590 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:185
|
2591 |
+
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."
|
2592 |
+
msgstr "ملاحظة: هذا الخيار لإجراء بحث DNS عكسي على تحميل كل صفحة ولكن بدلا من ذلك بالتخزين المؤقت لعنوان الـIP لأسماء المضيفين المنصوص عليها هي ساعة واحدة. إذا كنت استبعدت المضيفين وقم بتعيين حيوي قد تجد بعض الدرجات من التداخل عندما يتغير عنوان IP للمضيف وذلك وعندما يتم تحديث ذاكرة التخزين المؤقت قد يؤدي في بعض الزيارات المسجلة."
|
2593 |
+
|
2594 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:190
|
2595 |
+
msgid "Site URL Exclusions"
|
2596 |
+
msgstr "رابط الموقع المستثنى"
|
2597 |
+
|
2598 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:194
|
2599 |
+
msgid "Excluded login page"
|
2600 |
+
msgstr "استبعاد صفحة تسجيل الدخول"
|
2601 |
+
|
2602 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:197
|
2603 |
+
msgid "Exclude the login page for registering as a hit."
|
2604 |
+
msgstr "استبعاد صفحة الدخول للتسجيل كنقرة."
|
2605 |
+
|
2606 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:201
|
2607 |
+
msgid "Excluded admin pages"
|
2608 |
+
msgstr "استبعاد الصفحات الإدارية"
|
2609 |
+
|
2610 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:204
|
2611 |
+
msgid "Exclude the admin pages for registering as a hit."
|
2612 |
+
msgstr "استبعاد الصفحات الادارية للتسجيل كنقرة."
|
2613 |
+
|
2614 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:208
|
2615 |
+
msgid "Excluded RSS feeds"
|
2616 |
+
msgstr "آر إس إس مستبعدة"
|
2617 |
+
|
2618 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:211
|
2619 |
+
msgid "Exclude the RSS feeds for registering as a hit."
|
2620 |
+
msgstr "استبعاد آر إس إس لتسجيل كما ضرب."
|
2621 |
+
|
2622 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:162
|
2623 |
+
msgid "browscap settings"
|
2624 |
+
msgstr "إعدادات browscap"
|
2625 |
+
|
2626 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:167
|
2627 |
+
msgid "browscap usage"
|
2628 |
+
msgstr "استخدام browscap"
|
2629 |
+
|
2630 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:52
|
2631 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:76
|
2632 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:109
|
2633 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:172
|
2634 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:196
|
2635 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:236
|
2636 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:260
|
2637 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:76
|
2638 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:92
|
2639 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:116
|
2640 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:132
|
2641 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:148
|
2642 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:160
|
2643 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:187
|
2644 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:199
|
2645 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:214
|
2646 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:228
|
2647 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:258
|
2648 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:270
|
2649 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:286
|
2650 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:325
|
2651 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:341
|
2652 |
+
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:40
|
2653 |
+
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:68
|
2654 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:69
|
2655 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:81
|
2656 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:93
|
2657 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:105
|
2658 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2659 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2660 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2661 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:74
|
2662 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:86
|
2663 |
+
msgid "Active"
|
2664 |
+
msgstr "تفعيل"
|
2665 |
+
|
2666 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:173
|
2667 |
+
msgid "The browscap database will be downloaded and used to detect robots."
|
2668 |
+
msgstr "سيتم تحميل قاعدة البيانات browscap وتستخدم للكشف عن الروبوتات."
|
2669 |
+
|
2670 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:179
|
2671 |
+
msgid "Update browscap Info"
|
2672 |
+
msgstr "تحديث معلومات browscap"
|
2673 |
+
|
2674 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:184
|
2675 |
+
msgid "Download browscap Database"
|
2676 |
+
msgstr "تحميل قاعدة بيانات browscap"
|
2677 |
+
|
2678 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:65
|
2679 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:185
|
2680 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:249
|
2681 |
+
msgid "Save changes on this page to download the update."
|
2682 |
+
msgstr "حفظ التغييرات على هذه الصفحة لتحميل التحديث."
|
2683 |
+
|
2684 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:191
|
2685 |
+
msgid "Schedule weekly update of browscap DB"
|
2686 |
+
msgstr "جدولة التحديث الأسبوعي لـ browscap DB"
|
2687 |
+
|
2688 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:79
|
2689 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:199
|
2690 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:263
|
2691 |
+
msgid "Next update will be"
|
2692 |
+
msgstr "التحديث القادم سيكون في"
|
2693 |
+
|
2694 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:215
|
2695 |
+
msgid "Download of the browscap database will be scheduled for once a week."
|
2696 |
+
msgstr "سيتم تحديد موعد تحميل قاعدة بيانات browscap لمرة واحدة في الأسبوع."
|
2697 |
+
|
2698 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:50
|
2699 |
+
msgid "This will delete the manual when you save the settings, are you sure?"
|
2700 |
+
msgstr "سيؤدي ذلك إلى حذف الدليل عند حفظ الإعدادات، هل أنت متأكد؟"
|
2701 |
+
|
2702 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:77
|
2703 |
+
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."
|
2704 |
+
msgstr "هذه الميزة لتخزين عناوين IP في قاعدة البيانات ولكن بدلا من ذلك تستخدم تجزئة فريدة من نوعها. سيتم تعطيل \"مخزن سلسلة عامل المستخدم بأكمله\" إذا تم تحديد هذا. أنت لن تكون قادر على استرداد عناوين IP في المستقبل لاسترداد معلومات الموقع إذا تم تمكين هذا."
|
2705 |
+
|
2706 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:82
|
2707 |
+
#: wp-statistics/shortcode.php:138
|
2708 |
+
msgid "Users Online"
|
2709 |
+
msgstr "الإعضاء المتواجدين"
|
2710 |
+
|
2711 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:87
|
2712 |
+
msgid "User online"
|
2713 |
+
msgstr "المتواجدين الآن"
|
languages/wp_statistics-bg_BG.mo
CHANGED
Binary file
|
languages/wp_statistics-bg_BG.po
CHANGED
@@ -7,10 +7,11 @@ msgstr ""
|
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
-
"X-Generator: GlotPress/1.0
|
|
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#: wp-statistics/ajax.php:
|
14 |
msgid "No matching widget found!"
|
15 |
msgstr ""
|
16 |
|
@@ -46,22 +47,22 @@ msgstr ""
|
|
46 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: wp-statistics/ajax.php:
|
50 |
msgid "ERROR: Widget not found!"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: wp-statistics/dashboard.php:
|
54 |
#: wp-statistics/includes/log/log.php:20
|
55 |
msgid "Loading..."
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: wp-statistics/dashboard.php:
|
59 |
#: wp-statistics/includes/log/log.php:2
|
60 |
msgid "Reloading..."
|
61 |
msgstr ""
|
62 |
|
63 |
#: wp-statistics/includes/log/top-visitors.php:41
|
64 |
-
#: wp-statistics/wp-statistics.php:
|
65 |
msgid "Top Visitors"
|
66 |
msgstr ""
|
67 |
|
@@ -158,7 +159,7 @@ msgstr ""
|
|
158 |
msgid "online user tracking"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: wp-statistics/wp-statistics.php:
|
162 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
163 |
msgstr ""
|
164 |
|
@@ -622,7 +623,7 @@ msgstr "За всяко посещение на сметка за няколко
|
|
622 |
|
623 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
624 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
625 |
-
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:
|
626 |
msgid "Pages"
|
627 |
msgstr "Страници"
|
628 |
|
@@ -892,7 +893,7 @@ msgstr ""
|
|
892 |
|
893 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
894 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
895 |
-
#: wp-statistics/wp-statistics.php:
|
896 |
msgid "User Online"
|
897 |
msgstr "Онлайн потребители"
|
898 |
|
@@ -964,40 +965,23 @@ msgstr ""
|
|
964 |
msgid "Disable the page/post editor widget."
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
968 |
-
msgid "Map type"
|
969 |
-
msgstr "Тип карта"
|
970 |
-
|
971 |
#: wp-statistics/includes/functions/functions.php:440
|
972 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
973 |
msgid "Google"
|
974 |
msgstr "Google"
|
975 |
|
976 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
977 |
-
msgid "JQVMap"
|
978 |
-
msgstr "JQVMap"
|
979 |
-
|
980 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:82
|
981 |
-
msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
|
982 |
-
msgstr "\"Google\" опция ще използва на Google картографска услуга да начертаете последните посетители (изисква достъп до Google)."
|
983 |
-
|
984 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:83
|
985 |
-
msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
|
986 |
-
msgstr "\"JQVMap\" опция ще използва JQVMap библиотека javascript картографиране да начертаете последните посетители (изисква extenral услуги)."
|
987 |
-
|
988 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:89
|
989 |
msgid "Disable map"
|
990 |
msgstr "Забраняване на картата"
|
991 |
|
992 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
993 |
msgid "Disable the map display"
|
994 |
msgstr "Забраняване на показването на картите"
|
995 |
|
996 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
997 |
msgid "Get country location from Google"
|
998 |
msgstr "Се страна местоположение от Google"
|
999 |
|
1000 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1001 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
1002 |
msgstr "Тази функция може да доведе до намаляване на производителността, когато разглеждате статистиката и е валидно, ако типът на картата е настроено на \"Google само\"."
|
1003 |
|
@@ -1051,7 +1035,7 @@ msgstr ""
|
|
1051 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1052 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1053 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1054 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1055 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1056 |
msgid "Update"
|
1057 |
msgstr "Актуализация"
|
@@ -1069,7 +1053,7 @@ msgid "Once Every 4 Weeks"
|
|
1069 |
msgstr "Веднъж на всеки 4 седмици"
|
1070 |
|
1071 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1072 |
-
#: wp-statistics/wp-statistics.php:
|
1073 |
msgid "Statistics"
|
1074 |
msgstr "Статистики"
|
1075 |
|
@@ -1142,7 +1126,7 @@ msgstr "Име"
|
|
1142 |
msgid "Items"
|
1143 |
msgstr "Броя"
|
1144 |
|
1145 |
-
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:
|
1146 |
msgid "Yesterday visit"
|
1147 |
msgstr "Вчерашни посещения"
|
1148 |
|
@@ -1167,7 +1151,7 @@ msgid "Complete statistics for your WordPress site."
|
|
1167 |
msgstr "Пълна статистика за вашия сайт WordPress."
|
1168 |
|
1169 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1170 |
-
#: wp-statistics/wp-statistics.php:
|
1171 |
msgid "Settings"
|
1172 |
msgstr "Настройки"
|
1173 |
|
@@ -1191,78 +1175,78 @@ msgstr "Оцени този плъгин"
|
|
1191 |
msgid "WP Statistics - Hits"
|
1192 |
msgstr "WP-статистика - хитове"
|
1193 |
|
1194 |
-
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:
|
1195 |
-
#: wp-statistics/wp-statistics.php:
|
1196 |
msgid "Overview"
|
1197 |
msgstr "Общ преглед"
|
1198 |
|
1199 |
-
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:
|
1200 |
msgid "Online"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:
|
1204 |
msgid "Referrers"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1208 |
-
#: wp-statistics/wp-statistics.php:
|
1209 |
msgid "Searches"
|
1210 |
msgstr "Търсения"
|
1211 |
|
1212 |
-
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:
|
1213 |
msgid "Search Words"
|
1214 |
msgstr "Думи за търсене"
|
1215 |
|
1216 |
-
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:
|
1217 |
msgid "Top Visitors Today"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
-
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:
|
1221 |
msgid "Optimization"
|
1222 |
msgstr "Оптимизация"
|
1223 |
|
1224 |
-
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:
|
1225 |
msgid "Manual"
|
1226 |
msgstr "Ръководство"
|
1227 |
|
1228 |
-
#: wp-statistics/wp-statistics.php:
|
1229 |
msgid "Site"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
-
#: wp-statistics/wp-statistics.php:
|
1233 |
msgid "Options"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
-
#: wp-statistics/wp-statistics.php:
|
1237 |
msgid "Today visitor"
|
1238 |
msgstr "Днес посетителите"
|
1239 |
|
1240 |
-
#: wp-statistics/wp-statistics.php:
|
1241 |
msgid "Today visit"
|
1242 |
msgstr "Днес, посетете"
|
1243 |
|
1244 |
-
#: wp-statistics/wp-statistics.php:
|
1245 |
msgid "Yesterday visitor"
|
1246 |
msgstr "Вчера посетител"
|
1247 |
|
1248 |
-
#: wp-statistics/wp-statistics.php:
|
1249 |
msgid "View Stats"
|
1250 |
msgstr "Преглед на статистиките"
|
1251 |
|
1252 |
-
#: wp-statistics/wp-statistics.php:
|
1253 |
msgid "Download ODF file"
|
1254 |
msgstr "Изтегляне на ODF файл"
|
1255 |
|
1256 |
-
#: wp-statistics/wp-statistics.php:
|
1257 |
msgid "Download HTML file"
|
1258 |
msgstr "Изтегли HTML файл"
|
1259 |
|
1260 |
-
#: wp-statistics/wp-statistics.php:
|
1261 |
msgid "Manual file not found."
|
1262 |
msgstr "Ръчно файлът не е намерен."
|
1263 |
|
1264 |
-
#: wp-statistics/wp-statistics.php:
|
1265 |
-
#: wp-statistics/wp-statistics.php:
|
1266 |
msgid "You do not have sufficient permissions to access this page."
|
1267 |
msgstr "Нямате права за тази страница"
|
1268 |
|
@@ -1323,7 +1307,7 @@ msgstr ""
|
|
1323 |
msgid "Top 10 Browsers"
|
1324 |
msgstr "Топ 10 браузъри"
|
1325 |
|
1326 |
-
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:
|
1327 |
msgid "Top 10 Countries"
|
1328 |
msgstr "Топ 10 страни"
|
1329 |
|
@@ -1337,36 +1321,36 @@ msgstr ""
|
|
1337 |
msgid "Hit Statistics"
|
1338 |
msgstr "Удари статистика"
|
1339 |
|
1340 |
-
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:
|
1341 |
msgid "Top 10 Pages"
|
1342 |
msgstr "Топ 10 страници"
|
1343 |
|
1344 |
#: wp-statistics/dashboard.php:62
|
1345 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1346 |
-
#: wp-statistics/wp-statistics.php:
|
1347 |
msgid "Recent Visitors"
|
1348 |
msgstr "Последните посетители"
|
1349 |
|
1350 |
#: wp-statistics/dashboard.php:63
|
1351 |
#: wp-statistics/includes/log/top-referring.php:59
|
1352 |
#: wp-statistics/includes/log/top-referring.php:81
|
1353 |
-
#: wp-statistics/wp-statistics.php:
|
1354 |
msgid "Top Referring Sites"
|
1355 |
msgstr "Топ Препращащи сайтове"
|
1356 |
|
1357 |
#: wp-statistics/dashboard.php:64
|
1358 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1359 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1360 |
-
#: wp-statistics/wp-statistics.php:
|
1361 |
msgid "Search Engine Referrals"
|
1362 |
msgstr "Търсене двигател референции"
|
1363 |
|
1364 |
-
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:
|
1365 |
msgid "Summary"
|
1366 |
msgstr "Резюме"
|
1367 |
|
1368 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1369 |
-
#: wp-statistics/wp-statistics.php:
|
1370 |
msgid "Latest Search Words"
|
1371 |
msgstr "Последни думи за търсене"
|
1372 |
|
@@ -1436,8 +1420,8 @@ msgid "Click to toggle"
|
|
1436 |
msgstr "Щракнете за превключване"
|
1437 |
|
1438 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1439 |
-
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:
|
1440 |
-
#: wp-statistics/wp-statistics.php:
|
1441 |
msgid "Browsers"
|
1442 |
msgstr "Браузъри"
|
1443 |
|
@@ -1510,7 +1494,7 @@ msgstr "Изключени хитове през последните"
|
|
1510 |
#: wp-statistics/includes/log/exclusions.php:95
|
1511 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1512 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1513 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1514 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1515 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1516 |
msgid "days"
|
@@ -1525,18 +1509,18 @@ msgid "Hits Statistics Chart"
|
|
1525 |
msgstr "Хитове статистика диаграма"
|
1526 |
|
1527 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1528 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1529 |
msgid "Hits in the last"
|
1530 |
msgstr "Хитове през последните"
|
1531 |
|
1532 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1533 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1534 |
msgid "Number of visits and visitors"
|
1535 |
msgstr "Броят на посещенията и посетителите"
|
1536 |
|
1537 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1538 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1539 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1540 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1541 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1542 |
msgid "Visit"
|
@@ -1544,7 +1528,7 @@ msgstr "Посетете"
|
|
1544 |
|
1545 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1546 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1547 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1548 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1549 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1550 |
msgid "Visitor"
|
@@ -1747,7 +1731,7 @@ msgstr "Този продукт съдържа GeoLite2 данни, създад
|
|
1747 |
msgid "Other"
|
1748 |
msgstr "Други"
|
1749 |
|
1750 |
-
#: wp-statistics/wp-statistics.php:
|
1751 |
msgid "Today Visitors Map"
|
1752 |
msgstr "Днес посетителите карта"
|
1753 |
|
@@ -1802,7 +1786,7 @@ msgstr "Време: %s"
|
|
1802 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1803 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1804 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1805 |
-
#: wp-statistics/wp-statistics.php:
|
1806 |
msgid "Hits"
|
1807 |
msgstr "Посещения"
|
1808 |
|
@@ -1821,7 +1805,7 @@ msgstr ""
|
|
1821 |
|
1822 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1823 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1824 |
-
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:
|
1825 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1826 |
msgid "Access denied!"
|
1827 |
msgstr "Отказан достъп!"
|
@@ -1877,7 +1861,7 @@ msgstr "Индекс на база данни"
|
|
1877 |
|
1878 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1879 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1880 |
-
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:
|
1881 |
msgid "Countries"
|
1882 |
msgstr "Страни"
|
1883 |
|
@@ -1962,7 +1946,7 @@ msgstr ""
|
|
1962 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1963 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1964 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1965 |
-
#: wp-statistics/wp-statistics.php:
|
1966 |
msgid "Visitors"
|
1967 |
msgstr "Посетители"
|
1968 |
|
@@ -2464,7 +2448,7 @@ msgstr "Ако имате нужда от по-силен решение за д
|
|
2464 |
#: wp-statistics/includes/log/exclusions.php:197
|
2465 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2466 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2467 |
-
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:
|
2468 |
msgid "Exclusions"
|
2469 |
msgstr "Изключения"
|
2470 |
|
@@ -2674,8 +2658,8 @@ msgstr "използване на browscap"
|
|
2674 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2675 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2676 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2677 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2678 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2679 |
msgid "Active"
|
2680 |
msgstr "Активен"
|
2681 |
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
+
"X-Generator: GlotPress/2.1.0\n"
|
11 |
+
"Language: bg\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
14 |
+
#: wp-statistics/ajax.php:215
|
15 |
msgid "No matching widget found!"
|
16 |
msgstr ""
|
17 |
|
47 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: wp-statistics/ajax.php:294
|
51 |
msgid "ERROR: Widget not found!"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: wp-statistics/dashboard.php:107 wp-statistics/editor.php:66
|
55 |
#: wp-statistics/includes/log/log.php:20
|
56 |
msgid "Loading..."
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: wp-statistics/dashboard.php:125 wp-statistics/editor.php:84
|
60 |
#: wp-statistics/includes/log/log.php:2
|
61 |
msgid "Reloading..."
|
62 |
msgstr ""
|
63 |
|
64 |
#: wp-statistics/includes/log/top-visitors.php:41
|
65 |
+
#: wp-statistics/wp-statistics.php:450
|
66 |
msgid "Top Visitors"
|
67 |
msgstr ""
|
68 |
|
159 |
msgid "online user tracking"
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: wp-statistics/wp-statistics.php:791
|
163 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
164 |
msgstr ""
|
165 |
|
623 |
|
624 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
625 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
626 |
+
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:532
|
627 |
msgid "Pages"
|
628 |
msgstr "Страници"
|
629 |
|
893 |
|
894 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
895 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
896 |
+
#: wp-statistics/wp-statistics.php:637
|
897 |
msgid "User Online"
|
898 |
msgstr "Онлайн потребители"
|
899 |
|
965 |
msgid "Disable the page/post editor widget."
|
966 |
msgstr ""
|
967 |
|
|
|
|
|
|
|
|
|
968 |
#: wp-statistics/includes/functions/functions.php:440
|
|
|
969 |
msgid "Google"
|
970 |
msgstr "Google"
|
971 |
|
972 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
973 |
msgid "Disable map"
|
974 |
msgstr "Забраняване на картата"
|
975 |
|
976 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
977 |
msgid "Disable the map display"
|
978 |
msgstr "Забраняване на показването на картите"
|
979 |
|
980 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:81
|
981 |
msgid "Get country location from Google"
|
982 |
msgstr "Се страна местоположение от Google"
|
983 |
|
984 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:87
|
985 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
986 |
msgstr "Тази функция може да доведе до намаляване на производителността, когато разглеждате статистиката и е валидно, ако типът на картата е настроено на \"Google само\"."
|
987 |
|
1035 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1036 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1037 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1038 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:96
|
1039 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1040 |
msgid "Update"
|
1041 |
msgstr "Актуализация"
|
1053 |
msgstr "Веднъж на всеки 4 седмици"
|
1054 |
|
1055 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1056 |
+
#: wp-statistics/wp-statistics.php:485
|
1057 |
msgid "Statistics"
|
1058 |
msgstr "Статистики"
|
1059 |
|
1126 |
msgid "Items"
|
1127 |
msgstr "Броя"
|
1128 |
|
1129 |
+
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:662
|
1130 |
msgid "Yesterday visit"
|
1131 |
msgstr "Вчерашни посещения"
|
1132 |
|
1151 |
msgstr "Пълна статистика за вашия сайт WordPress."
|
1152 |
|
1153 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1154 |
+
#: wp-statistics/wp-statistics.php:539
|
1155 |
msgid "Settings"
|
1156 |
msgstr "Настройки"
|
1157 |
|
1175 |
msgid "WP Statistics - Hits"
|
1176 |
msgstr "WP-статистика - хитове"
|
1177 |
|
1178 |
+
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:488
|
1179 |
+
#: wp-statistics/wp-statistics.php:526
|
1180 |
msgid "Overview"
|
1181 |
msgstr "Общ преглед"
|
1182 |
|
1183 |
+
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:531
|
1184 |
msgid "Online"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:533
|
1188 |
msgid "Referrers"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1192 |
+
#: wp-statistics/wp-statistics.php:534
|
1193 |
msgid "Searches"
|
1194 |
msgstr "Търсения"
|
1195 |
|
1196 |
+
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:535
|
1197 |
msgid "Search Words"
|
1198 |
msgstr "Думи за търсене"
|
1199 |
|
1200 |
+
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:536
|
1201 |
msgid "Top Visitors Today"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
+
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:538
|
1205 |
msgid "Optimization"
|
1206 |
msgstr "Оптимизация"
|
1207 |
|
1208 |
+
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:502
|
1209 |
msgid "Manual"
|
1210 |
msgstr "Ръководство"
|
1211 |
|
1212 |
+
#: wp-statistics/wp-statistics.php:517
|
1213 |
msgid "Site"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
+
#: wp-statistics/wp-statistics.php:518
|
1217 |
msgid "Options"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
+
#: wp-statistics/wp-statistics.php:644
|
1221 |
msgid "Today visitor"
|
1222 |
msgstr "Днес посетителите"
|
1223 |
|
1224 |
+
#: wp-statistics/wp-statistics.php:650
|
1225 |
msgid "Today visit"
|
1226 |
msgstr "Днес, посетете"
|
1227 |
|
1228 |
+
#: wp-statistics/wp-statistics.php:656
|
1229 |
msgid "Yesterday visitor"
|
1230 |
msgstr "Вчера посетител"
|
1231 |
|
1232 |
+
#: wp-statistics/wp-statistics.php:668
|
1233 |
msgid "View Stats"
|
1234 |
msgstr "Преглед на статистиките"
|
1235 |
|
1236 |
+
#: wp-statistics/wp-statistics.php:692
|
1237 |
msgid "Download ODF file"
|
1238 |
msgstr "Изтегляне на ODF файл"
|
1239 |
|
1240 |
+
#: wp-statistics/wp-statistics.php:693
|
1241 |
msgid "Download HTML file"
|
1242 |
msgstr "Изтегли HTML файл"
|
1243 |
|
1244 |
+
#: wp-statistics/wp-statistics.php:697
|
1245 |
msgid "Manual file not found."
|
1246 |
msgstr "Ръчно файлът не е намерен."
|
1247 |
|
1248 |
+
#: wp-statistics/wp-statistics.php:764 wp-statistics/wp-statistics.php:891
|
1249 |
+
#: wp-statistics/wp-statistics.php:926
|
1250 |
msgid "You do not have sufficient permissions to access this page."
|
1251 |
msgstr "Нямате права за тази страница"
|
1252 |
|
1307 |
msgid "Top 10 Browsers"
|
1308 |
msgstr "Топ 10 браузъри"
|
1309 |
|
1310 |
+
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:471
|
1311 |
msgid "Top 10 Countries"
|
1312 |
msgstr "Топ 10 страни"
|
1313 |
|
1321 |
msgid "Hit Statistics"
|
1322 |
msgstr "Удари статистика"
|
1323 |
|
1324 |
+
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:461
|
1325 |
msgid "Top 10 Pages"
|
1326 |
msgstr "Топ 10 страници"
|
1327 |
|
1328 |
#: wp-statistics/dashboard.php:62
|
1329 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1330 |
+
#: wp-statistics/wp-statistics.php:453
|
1331 |
msgid "Recent Visitors"
|
1332 |
msgstr "Последните посетители"
|
1333 |
|
1334 |
#: wp-statistics/dashboard.php:63
|
1335 |
#: wp-statistics/includes/log/top-referring.php:59
|
1336 |
#: wp-statistics/includes/log/top-referring.php:81
|
1337 |
+
#: wp-statistics/wp-statistics.php:468
|
1338 |
msgid "Top Referring Sites"
|
1339 |
msgstr "Топ Препращащи сайтове"
|
1340 |
|
1341 |
#: wp-statistics/dashboard.php:64
|
1342 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1343 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1344 |
+
#: wp-statistics/wp-statistics.php:451
|
1345 |
msgid "Search Engine Referrals"
|
1346 |
msgstr "Търсене двигател референции"
|
1347 |
|
1348 |
+
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:466
|
1349 |
msgid "Summary"
|
1350 |
msgstr "Резюме"
|
1351 |
|
1352 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1353 |
+
#: wp-statistics/wp-statistics.php:452
|
1354 |
msgid "Latest Search Words"
|
1355 |
msgstr "Последни думи за търсене"
|
1356 |
|
1420 |
msgstr "Щракнете за превключване"
|
1421 |
|
1422 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1423 |
+
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:467
|
1424 |
+
#: wp-statistics/wp-statistics.php:527
|
1425 |
msgid "Browsers"
|
1426 |
msgstr "Браузъри"
|
1427 |
|
1494 |
#: wp-statistics/includes/log/exclusions.php:95
|
1495 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1496 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1497 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1498 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1499 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1500 |
msgid "days"
|
1509 |
msgstr "Хитове статистика диаграма"
|
1510 |
|
1511 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1512 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1513 |
msgid "Hits in the last"
|
1514 |
msgstr "Хитове през последните"
|
1515 |
|
1516 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1517 |
+
#: wp-statistics/includes/log/widgets/hits.php:65
|
1518 |
msgid "Number of visits and visitors"
|
1519 |
msgstr "Броят на посещенията и посетителите"
|
1520 |
|
1521 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1522 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1523 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1524 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1525 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1526 |
msgid "Visit"
|
1528 |
|
1529 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1530 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1531 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1532 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1533 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1534 |
msgid "Visitor"
|
1731 |
msgid "Other"
|
1732 |
msgstr "Други"
|
1733 |
|
1734 |
+
#: wp-statistics/wp-statistics.php:456
|
1735 |
msgid "Today Visitors Map"
|
1736 |
msgstr "Днес посетителите карта"
|
1737 |
|
1786 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1787 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1788 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1789 |
+
#: wp-statistics/wp-statistics.php:530
|
1790 |
msgid "Hits"
|
1791 |
msgstr "Посещения"
|
1792 |
|
1805 |
|
1806 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1807 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1808 |
+
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:297
|
1809 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1810 |
msgid "Access denied!"
|
1811 |
msgstr "Отказан достъп!"
|
1861 |
|
1862 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1863 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1864 |
+
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:528
|
1865 |
msgid "Countries"
|
1866 |
msgstr "Страни"
|
1867 |
|
1946 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1947 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1948 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1949 |
+
#: wp-statistics/wp-statistics.php:537
|
1950 |
msgid "Visitors"
|
1951 |
msgstr "Посетители"
|
1952 |
|
2448 |
#: wp-statistics/includes/log/exclusions.php:197
|
2449 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2450 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2451 |
+
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:529
|
2452 |
msgid "Exclusions"
|
2453 |
msgstr "Изключения"
|
2454 |
|
2658 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2659 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2660 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2661 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:74
|
2662 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:86
|
2663 |
msgid "Active"
|
2664 |
msgstr "Активен"
|
2665 |
|
languages/wp_statistics-bn_BD.mo
CHANGED
Binary file
|
languages/wp_statistics-bn_BD.po
CHANGED
@@ -7,10 +7,11 @@ msgstr ""
|
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
-
"X-Generator: GlotPress/1.0
|
|
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#: wp-statistics/ajax.php:
|
14 |
msgid "No matching widget found!"
|
15 |
msgstr ""
|
16 |
|
@@ -46,22 +47,22 @@ msgstr ""
|
|
46 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: wp-statistics/ajax.php:
|
50 |
msgid "ERROR: Widget not found!"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: wp-statistics/dashboard.php:
|
54 |
#: wp-statistics/includes/log/log.php:20
|
55 |
msgid "Loading..."
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: wp-statistics/dashboard.php:
|
59 |
#: wp-statistics/includes/log/log.php:2
|
60 |
msgid "Reloading..."
|
61 |
msgstr ""
|
62 |
|
63 |
#: wp-statistics/includes/log/top-visitors.php:41
|
64 |
-
#: wp-statistics/wp-statistics.php:
|
65 |
msgid "Top Visitors"
|
66 |
msgstr ""
|
67 |
|
@@ -158,7 +159,7 @@ msgstr ""
|
|
158 |
msgid "online user tracking"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: wp-statistics/wp-statistics.php:
|
162 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
163 |
msgstr ""
|
164 |
|
@@ -622,7 +623,7 @@ msgstr ""
|
|
622 |
|
623 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
624 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
625 |
-
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:
|
626 |
msgid "Pages"
|
627 |
msgstr ""
|
628 |
|
@@ -892,7 +893,7 @@ msgstr ""
|
|
892 |
|
893 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
894 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
895 |
-
#: wp-statistics/wp-statistics.php:
|
896 |
msgid "User Online"
|
897 |
msgstr "এখন দেখছে"
|
898 |
|
@@ -964,40 +965,23 @@ msgstr ""
|
|
964 |
msgid "Disable the page/post editor widget."
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
968 |
-
msgid "Map type"
|
969 |
-
msgstr ""
|
970 |
-
|
971 |
#: wp-statistics/includes/functions/functions.php:440
|
972 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
973 |
msgid "Google"
|
974 |
msgstr "গুগল"
|
975 |
|
976 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
977 |
-
msgid "JQVMap"
|
978 |
-
msgstr ""
|
979 |
-
|
980 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:82
|
981 |
-
msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
|
982 |
-
msgstr ""
|
983 |
-
|
984 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:83
|
985 |
-
msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
|
986 |
-
msgstr ""
|
987 |
-
|
988 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:89
|
989 |
msgid "Disable map"
|
990 |
msgstr ""
|
991 |
|
992 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
993 |
msgid "Disable the map display"
|
994 |
msgstr ""
|
995 |
|
996 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
997 |
msgid "Get country location from Google"
|
998 |
msgstr ""
|
999 |
|
1000 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1001 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
1002 |
msgstr ""
|
1003 |
|
@@ -1051,7 +1035,7 @@ msgstr ""
|
|
1051 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1052 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1053 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1054 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1055 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1056 |
msgid "Update"
|
1057 |
msgstr ""
|
@@ -1069,7 +1053,7 @@ msgid "Once Every 4 Weeks"
|
|
1069 |
msgstr ""
|
1070 |
|
1071 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1072 |
-
#: wp-statistics/wp-statistics.php:
|
1073 |
msgid "Statistics"
|
1074 |
msgstr "পরিসংখ্যান"
|
1075 |
|
@@ -1142,7 +1126,7 @@ msgstr "নাম"
|
|
1142 |
msgid "Items"
|
1143 |
msgstr "আইটেম"
|
1144 |
|
1145 |
-
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:
|
1146 |
msgid "Yesterday visit"
|
1147 |
msgstr "গতকাল দেখেছে"
|
1148 |
|
@@ -1167,7 +1151,7 @@ msgid "Complete statistics for your WordPress site."
|
|
1167 |
msgstr ""
|
1168 |
|
1169 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1170 |
-
#: wp-statistics/wp-statistics.php:
|
1171 |
msgid "Settings"
|
1172 |
msgstr "সেটিসং"
|
1173 |
|
@@ -1191,78 +1175,78 @@ msgstr ""
|
|
1191 |
msgid "WP Statistics - Hits"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
-
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:
|
1195 |
-
#: wp-statistics/wp-statistics.php:
|
1196 |
msgid "Overview"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
-
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:
|
1200 |
msgid "Online"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:
|
1204 |
msgid "Referrers"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1208 |
-
#: wp-statistics/wp-statistics.php:
|
1209 |
msgid "Searches"
|
1210 |
msgstr ""
|
1211 |
|
1212 |
-
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:
|
1213 |
msgid "Search Words"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
-
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:
|
1217 |
msgid "Top Visitors Today"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
-
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:
|
1221 |
msgid "Optimization"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
-
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:
|
1225 |
msgid "Manual"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
-
#: wp-statistics/wp-statistics.php:
|
1229 |
msgid "Site"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
-
#: wp-statistics/wp-statistics.php:
|
1233 |
msgid "Options"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
-
#: wp-statistics/wp-statistics.php:
|
1237 |
msgid "Today visitor"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
-
#: wp-statistics/wp-statistics.php:
|
1241 |
msgid "Today visit"
|
1242 |
msgstr ""
|
1243 |
|
1244 |
-
#: wp-statistics/wp-statistics.php:
|
1245 |
msgid "Yesterday visitor"
|
1246 |
msgstr ""
|
1247 |
|
1248 |
-
#: wp-statistics/wp-statistics.php:
|
1249 |
msgid "View Stats"
|
1250 |
msgstr ""
|
1251 |
|
1252 |
-
#: wp-statistics/wp-statistics.php:
|
1253 |
msgid "Download ODF file"
|
1254 |
msgstr ""
|
1255 |
|
1256 |
-
#: wp-statistics/wp-statistics.php:
|
1257 |
msgid "Download HTML file"
|
1258 |
msgstr ""
|
1259 |
|
1260 |
-
#: wp-statistics/wp-statistics.php:
|
1261 |
msgid "Manual file not found."
|
1262 |
msgstr ""
|
1263 |
|
1264 |
-
#: wp-statistics/wp-statistics.php:
|
1265 |
-
#: wp-statistics/wp-statistics.php:
|
1266 |
msgid "You do not have sufficient permissions to access this page."
|
1267 |
msgstr "আপনার এই পেজ দেখার মত পর্যাপ্ত অনুমতি নেই।"
|
1268 |
|
@@ -1323,7 +1307,7 @@ msgstr ""
|
|
1323 |
msgid "Top 10 Browsers"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
-
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:
|
1327 |
msgid "Top 10 Countries"
|
1328 |
msgstr ""
|
1329 |
|
@@ -1337,36 +1321,36 @@ msgstr ""
|
|
1337 |
msgid "Hit Statistics"
|
1338 |
msgstr ""
|
1339 |
|
1340 |
-
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:
|
1341 |
msgid "Top 10 Pages"
|
1342 |
msgstr ""
|
1343 |
|
1344 |
#: wp-statistics/dashboard.php:62
|
1345 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1346 |
-
#: wp-statistics/wp-statistics.php:
|
1347 |
msgid "Recent Visitors"
|
1348 |
msgstr ""
|
1349 |
|
1350 |
#: wp-statistics/dashboard.php:63
|
1351 |
#: wp-statistics/includes/log/top-referring.php:59
|
1352 |
#: wp-statistics/includes/log/top-referring.php:81
|
1353 |
-
#: wp-statistics/wp-statistics.php:
|
1354 |
msgid "Top Referring Sites"
|
1355 |
msgstr ""
|
1356 |
|
1357 |
#: wp-statistics/dashboard.php:64
|
1358 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1359 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1360 |
-
#: wp-statistics/wp-statistics.php:
|
1361 |
msgid "Search Engine Referrals"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
-
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:
|
1365 |
msgid "Summary"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1369 |
-
#: wp-statistics/wp-statistics.php:
|
1370 |
msgid "Latest Search Words"
|
1371 |
msgstr ""
|
1372 |
|
@@ -1436,8 +1420,8 @@ msgid "Click to toggle"
|
|
1436 |
msgstr ""
|
1437 |
|
1438 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1439 |
-
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:
|
1440 |
-
#: wp-statistics/wp-statistics.php:
|
1441 |
msgid "Browsers"
|
1442 |
msgstr ""
|
1443 |
|
@@ -1510,7 +1494,7 @@ msgstr ""
|
|
1510 |
#: wp-statistics/includes/log/exclusions.php:95
|
1511 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1512 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1513 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1514 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1515 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1516 |
msgid "days"
|
@@ -1525,18 +1509,18 @@ msgid "Hits Statistics Chart"
|
|
1525 |
msgstr ""
|
1526 |
|
1527 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1528 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1529 |
msgid "Hits in the last"
|
1530 |
msgstr ""
|
1531 |
|
1532 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1533 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1534 |
msgid "Number of visits and visitors"
|
1535 |
msgstr ""
|
1536 |
|
1537 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1538 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1539 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1540 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1541 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1542 |
msgid "Visit"
|
@@ -1544,7 +1528,7 @@ msgstr ""
|
|
1544 |
|
1545 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1546 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1547 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1548 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1549 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1550 |
msgid "Visitor"
|
@@ -1747,7 +1731,7 @@ msgstr ""
|
|
1747 |
msgid "Other"
|
1748 |
msgstr ""
|
1749 |
|
1750 |
-
#: wp-statistics/wp-statistics.php:
|
1751 |
msgid "Today Visitors Map"
|
1752 |
msgstr ""
|
1753 |
|
@@ -1802,7 +1786,7 @@ msgstr ""
|
|
1802 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1803 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1804 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1805 |
-
#: wp-statistics/wp-statistics.php:
|
1806 |
msgid "Hits"
|
1807 |
msgstr ""
|
1808 |
|
@@ -1821,7 +1805,7 @@ msgstr ""
|
|
1821 |
|
1822 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1823 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1824 |
-
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:
|
1825 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1826 |
msgid "Access denied!"
|
1827 |
msgstr ""
|
@@ -1877,7 +1861,7 @@ msgstr ""
|
|
1877 |
|
1878 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1879 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1880 |
-
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:
|
1881 |
msgid "Countries"
|
1882 |
msgstr ""
|
1883 |
|
@@ -1962,7 +1946,7 @@ msgstr ""
|
|
1962 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1963 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1964 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1965 |
-
#: wp-statistics/wp-statistics.php:
|
1966 |
msgid "Visitors"
|
1967 |
msgstr ""
|
1968 |
|
@@ -2464,7 +2448,7 @@ msgstr ""
|
|
2464 |
#: wp-statistics/includes/log/exclusions.php:197
|
2465 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2466 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2467 |
-
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:
|
2468 |
msgid "Exclusions"
|
2469 |
msgstr ""
|
2470 |
|
@@ -2674,8 +2658,8 @@ msgstr ""
|
|
2674 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2675 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2676 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2677 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2678 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2679 |
msgid "Active"
|
2680 |
msgstr ""
|
2681 |
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
+
"X-Generator: GlotPress/2.1.0\n"
|
11 |
+
"Language: bn\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
14 |
+
#: wp-statistics/ajax.php:215
|
15 |
msgid "No matching widget found!"
|
16 |
msgstr ""
|
17 |
|
47 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: wp-statistics/ajax.php:294
|
51 |
msgid "ERROR: Widget not found!"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: wp-statistics/dashboard.php:107 wp-statistics/editor.php:66
|
55 |
#: wp-statistics/includes/log/log.php:20
|
56 |
msgid "Loading..."
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: wp-statistics/dashboard.php:125 wp-statistics/editor.php:84
|
60 |
#: wp-statistics/includes/log/log.php:2
|
61 |
msgid "Reloading..."
|
62 |
msgstr ""
|
63 |
|
64 |
#: wp-statistics/includes/log/top-visitors.php:41
|
65 |
+
#: wp-statistics/wp-statistics.php:450
|
66 |
msgid "Top Visitors"
|
67 |
msgstr ""
|
68 |
|
159 |
msgid "online user tracking"
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: wp-statistics/wp-statistics.php:791
|
163 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
164 |
msgstr ""
|
165 |
|
623 |
|
624 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
625 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
626 |
+
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:532
|
627 |
msgid "Pages"
|
628 |
msgstr ""
|
629 |
|
893 |
|
894 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
895 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
896 |
+
#: wp-statistics/wp-statistics.php:637
|
897 |
msgid "User Online"
|
898 |
msgstr "এখন দেখছে"
|
899 |
|
965 |
msgid "Disable the page/post editor widget."
|
966 |
msgstr ""
|
967 |
|
|
|
|
|
|
|
|
|
968 |
#: wp-statistics/includes/functions/functions.php:440
|
|
|
969 |
msgid "Google"
|
970 |
msgstr "গুগল"
|
971 |
|
972 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
973 |
msgid "Disable map"
|
974 |
msgstr ""
|
975 |
|
976 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
977 |
msgid "Disable the map display"
|
978 |
msgstr ""
|
979 |
|
980 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:81
|
981 |
msgid "Get country location from Google"
|
982 |
msgstr ""
|
983 |
|
984 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:87
|
985 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
986 |
msgstr ""
|
987 |
|
1035 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1036 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1037 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1038 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:96
|
1039 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1040 |
msgid "Update"
|
1041 |
msgstr ""
|
1053 |
msgstr ""
|
1054 |
|
1055 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1056 |
+
#: wp-statistics/wp-statistics.php:485
|
1057 |
msgid "Statistics"
|
1058 |
msgstr "পরিসংখ্যান"
|
1059 |
|
1126 |
msgid "Items"
|
1127 |
msgstr "আইটেম"
|
1128 |
|
1129 |
+
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:662
|
1130 |
msgid "Yesterday visit"
|
1131 |
msgstr "গতকাল দেখেছে"
|
1132 |
|
1151 |
msgstr ""
|
1152 |
|
1153 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1154 |
+
#: wp-statistics/wp-statistics.php:539
|
1155 |
msgid "Settings"
|
1156 |
msgstr "সেটিসং"
|
1157 |
|
1175 |
msgid "WP Statistics - Hits"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
+
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:488
|
1179 |
+
#: wp-statistics/wp-statistics.php:526
|
1180 |
msgid "Overview"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
+
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:531
|
1184 |
msgid "Online"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:533
|
1188 |
msgid "Referrers"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1192 |
+
#: wp-statistics/wp-statistics.php:534
|
1193 |
msgid "Searches"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
+
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:535
|
1197 |
msgid "Search Words"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
+
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:536
|
1201 |
msgid "Top Visitors Today"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
+
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:538
|
1205 |
msgid "Optimization"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
+
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:502
|
1209 |
msgid "Manual"
|
1210 |
msgstr ""
|
1211 |
|
1212 |
+
#: wp-statistics/wp-statistics.php:517
|
1213 |
msgid "Site"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
+
#: wp-statistics/wp-statistics.php:518
|
1217 |
msgid "Options"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
+
#: wp-statistics/wp-statistics.php:644
|
1221 |
msgid "Today visitor"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
+
#: wp-statistics/wp-statistics.php:650
|
1225 |
msgid "Today visit"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
+
#: wp-statistics/wp-statistics.php:656
|
1229 |
msgid "Yesterday visitor"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
+
#: wp-statistics/wp-statistics.php:668
|
1233 |
msgid "View Stats"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
+
#: wp-statistics/wp-statistics.php:692
|
1237 |
msgid "Download ODF file"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
+
#: wp-statistics/wp-statistics.php:693
|
1241 |
msgid "Download HTML file"
|
1242 |
msgstr ""
|
1243 |
|
1244 |
+
#: wp-statistics/wp-statistics.php:697
|
1245 |
msgid "Manual file not found."
|
1246 |
msgstr ""
|
1247 |
|
1248 |
+
#: wp-statistics/wp-statistics.php:764 wp-statistics/wp-statistics.php:891
|
1249 |
+
#: wp-statistics/wp-statistics.php:926
|
1250 |
msgid "You do not have sufficient permissions to access this page."
|
1251 |
msgstr "আপনার এই পেজ দেখার মত পর্যাপ্ত অনুমতি নেই।"
|
1252 |
|
1307 |
msgid "Top 10 Browsers"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
+
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:471
|
1311 |
msgid "Top 10 Countries"
|
1312 |
msgstr ""
|
1313 |
|
1321 |
msgid "Hit Statistics"
|
1322 |
msgstr ""
|
1323 |
|
1324 |
+
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:461
|
1325 |
msgid "Top 10 Pages"
|
1326 |
msgstr ""
|
1327 |
|
1328 |
#: wp-statistics/dashboard.php:62
|
1329 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1330 |
+
#: wp-statistics/wp-statistics.php:453
|
1331 |
msgid "Recent Visitors"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
#: wp-statistics/dashboard.php:63
|
1335 |
#: wp-statistics/includes/log/top-referring.php:59
|
1336 |
#: wp-statistics/includes/log/top-referring.php:81
|
1337 |
+
#: wp-statistics/wp-statistics.php:468
|
1338 |
msgid "Top Referring Sites"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
#: wp-statistics/dashboard.php:64
|
1342 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1343 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1344 |
+
#: wp-statistics/wp-statistics.php:451
|
1345 |
msgid "Search Engine Referrals"
|
1346 |
msgstr ""
|
1347 |
|
1348 |
+
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:466
|
1349 |
msgid "Summary"
|
1350 |
msgstr ""
|
1351 |
|
1352 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1353 |
+
#: wp-statistics/wp-statistics.php:452
|
1354 |
msgid "Latest Search Words"
|
1355 |
msgstr ""
|
1356 |
|
1420 |
msgstr ""
|
1421 |
|
1422 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1423 |
+
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:467
|
1424 |
+
#: wp-statistics/wp-statistics.php:527
|
1425 |
msgid "Browsers"
|
1426 |
msgstr ""
|
1427 |
|
1494 |
#: wp-statistics/includes/log/exclusions.php:95
|
1495 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1496 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1497 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1498 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1499 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1500 |
msgid "days"
|
1509 |
msgstr ""
|
1510 |
|
1511 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1512 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1513 |
msgid "Hits in the last"
|
1514 |
msgstr ""
|
1515 |
|
1516 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1517 |
+
#: wp-statistics/includes/log/widgets/hits.php:65
|
1518 |
msgid "Number of visits and visitors"
|
1519 |
msgstr ""
|
1520 |
|
1521 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1522 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1523 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1524 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1525 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1526 |
msgid "Visit"
|
1528 |
|
1529 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1530 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1531 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1532 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1533 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1534 |
msgid "Visitor"
|
1731 |
msgid "Other"
|
1732 |
msgstr ""
|
1733 |
|
1734 |
+
#: wp-statistics/wp-statistics.php:456
|
1735 |
msgid "Today Visitors Map"
|
1736 |
msgstr ""
|
1737 |
|
1786 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1787 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1788 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1789 |
+
#: wp-statistics/wp-statistics.php:530
|
1790 |
msgid "Hits"
|
1791 |
msgstr ""
|
1792 |
|
1805 |
|
1806 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1807 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1808 |
+
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:297
|
1809 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1810 |
msgid "Access denied!"
|
1811 |
msgstr ""
|
1861 |
|
1862 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1863 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1864 |
+
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:528
|
1865 |
msgid "Countries"
|
1866 |
msgstr ""
|
1867 |
|
1946 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1947 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1948 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1949 |
+
#: wp-statistics/wp-statistics.php:537
|
1950 |
msgid "Visitors"
|
1951 |
msgstr ""
|
1952 |
|
2448 |
#: wp-statistics/includes/log/exclusions.php:197
|
2449 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2450 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2451 |
+
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:529
|
2452 |
msgid "Exclusions"
|
2453 |
msgstr ""
|
2454 |
|
2658 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2659 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2660 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2661 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:74
|
2662 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:86
|
2663 |
msgid "Active"
|
2664 |
msgstr ""
|
2665 |
|
languages/wp_statistics-ckb.mo
CHANGED
Binary file
|
languages/wp_statistics-ckb.po
CHANGED
@@ -7,10 +7,11 @@ msgstr ""
|
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
-
"X-Generator: GlotPress/1.0
|
|
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#: wp-statistics/ajax.php:
|
14 |
msgid "No matching widget found!"
|
15 |
msgstr ""
|
16 |
|
@@ -46,22 +47,22 @@ msgstr ""
|
|
46 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
47 |
msgstr "WP ئاماری PHP وشانی٪ s ناسراوە کە پاڵپشتی ناکرێت WP پێویستی PHP وشانی ٪ s و سەرتر هەیە!"
|
48 |
|
49 |
-
#: wp-statistics/ajax.php:
|
50 |
msgid "ERROR: Widget not found!"
|
51 |
msgstr "هەڵە : ویجیت پەیدا نەبوو"
|
52 |
|
53 |
-
#: wp-statistics/dashboard.php:
|
54 |
#: wp-statistics/includes/log/log.php:20
|
55 |
msgid "Loading..."
|
56 |
msgstr "خرمەخرم......"
|
57 |
|
58 |
-
#: wp-statistics/dashboard.php:
|
59 |
#: wp-statistics/includes/log/log.php:2
|
60 |
msgid "Reloading..."
|
61 |
msgstr "لە کاتی هەڵگرساندەوە...."
|
62 |
|
63 |
#: wp-statistics/includes/log/top-visitors.php:41
|
64 |
-
#: wp-statistics/wp-statistics.php:
|
65 |
msgid "Top Visitors"
|
66 |
msgstr "دوایین سەردانەکان"
|
67 |
|
@@ -158,7 +159,7 @@ msgstr ""
|
|
158 |
msgid "online user tracking"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: wp-statistics/wp-statistics.php:
|
162 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
163 |
msgstr ""
|
164 |
|
@@ -622,7 +623,7 @@ msgstr "بۆ هەر سەردانێک بۆ هەژمارکردنی ژمارەیە
|
|
622 |
|
623 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
624 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
625 |
-
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:
|
626 |
msgid "Pages"
|
627 |
msgstr "پەڕەكان"
|
628 |
|
@@ -892,7 +893,7 @@ msgstr "هەر کورتە کۆدێک لە لایەن وۆردپرێسی ئێوە
|
|
892 |
|
893 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
894 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
895 |
-
#: wp-statistics/wp-statistics.php:
|
896 |
msgid "User Online"
|
897 |
msgstr "بەکارهینەری سەرهێڵ"
|
898 |
|
@@ -964,40 +965,23 @@ msgstr "ناچالاککردنی ئامرازی(ویدجێت) سەردانی پ
|
|
964 |
msgid "Disable the page/post editor widget."
|
965 |
msgstr "ناچالاککردنی ئامرازی(ویدجێت) سەردانی پەرەو/نوسراوە"
|
966 |
|
967 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
968 |
-
msgid "Map type"
|
969 |
-
msgstr "جۆری نەخشە"
|
970 |
-
|
971 |
#: wp-statistics/includes/functions/functions.php:440
|
972 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
973 |
msgid "Google"
|
974 |
msgstr "گووگڵ"
|
975 |
|
976 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
977 |
-
msgid "JQVMap"
|
978 |
-
msgstr "نەخشەیJQV"
|
979 |
-
|
980 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:82
|
981 |
-
msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
|
982 |
-
msgstr "هەلبژاردەی \"گوگڵ\" بۆخزمەتگوزاری نەخشەی گوگڵ بۆ دوایین سەردانەکان بەهرە وەردەگرێت. (پێویستی بە دەستپێگەیشتنی گووگڵە)."
|
983 |
-
|
984 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:83
|
985 |
-
msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
|
986 |
-
msgstr "هەڵبژاردەی \"JQVMap\" لە کتێبخانەی جاڤاسکریپت JQVMap بۆ دوایین سەردانەەکان کەڵک وەردەگرێت. (پێویستی بە خزمەتگوزاری دەرەوەی نابێت )."
|
987 |
-
|
988 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:89
|
989 |
msgid "Disable map"
|
990 |
msgstr "ناچالاککردنی نخشە"
|
991 |
|
992 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
993 |
msgid "Disable the map display"
|
994 |
msgstr "ناچالاککردنی نیشاندانی نەخشە"
|
995 |
|
996 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
997 |
msgid "Get country location from Google"
|
998 |
msgstr "وەرگرتنی شوێنی وەڵات لە گووگڵ"
|
999 |
|
1000 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1001 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
1002 |
msgstr "ئەم تایبەتمەندیە لەوانەیە نیشاندانی ئاماری بە هێواشی ئەنجام بدات .تەنها بۆ جۆری نەخشەی گووگڵ ڕێکخراوە."
|
1003 |
|
@@ -1051,7 +1035,7 @@ msgstr "سڕینەوە"
|
|
1051 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1052 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1053 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1054 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1055 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1056 |
msgid "Update"
|
1057 |
msgstr "بەڕۆژکردن"
|
@@ -1069,7 +1053,7 @@ msgid "Once Every 4 Weeks"
|
|
1069 |
msgstr "هەر ٤ هەفتە"
|
1070 |
|
1071 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1072 |
-
#: wp-statistics/wp-statistics.php:
|
1073 |
msgid "Statistics"
|
1074 |
msgstr "ئامار"
|
1075 |
|
@@ -1142,7 +1126,7 @@ msgstr "ناو"
|
|
1142 |
msgid "Items"
|
1143 |
msgstr "بڕگە"
|
1144 |
|
1145 |
-
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:
|
1146 |
msgid "Yesterday visit"
|
1147 |
msgstr "سەردانی دوێنێ"
|
1148 |
|
@@ -1167,7 +1151,7 @@ msgid "Complete statistics for your WordPress site."
|
|
1167 |
msgstr "ئامری گشتی بۆ ماڵپەڕی وۆردپرێسەکەت"
|
1168 |
|
1169 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1170 |
-
#: wp-statistics/wp-statistics.php:
|
1171 |
msgid "Settings"
|
1172 |
msgstr "ڕیکخستن"
|
1173 |
|
@@ -1191,78 +1175,78 @@ msgstr "پلەدانان بۆ ئەم زیادکراوە"
|
|
1191 |
msgid "WP Statistics - Hits"
|
1192 |
msgstr "ئاماری وۆردپرێس-سەردان"
|
1193 |
|
1194 |
-
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:
|
1195 |
-
#: wp-statistics/wp-statistics.php:
|
1196 |
msgid "Overview"
|
1197 |
msgstr "پیشاندانی گشتی"
|
1198 |
|
1199 |
-
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:
|
1200 |
msgid "Online"
|
1201 |
msgstr "سەرهێڵ"
|
1202 |
|
1203 |
-
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:
|
1204 |
msgid "Referrers"
|
1205 |
msgstr "هاتنەژوورەوەکان"
|
1206 |
|
1207 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1208 |
-
#: wp-statistics/wp-statistics.php:
|
1209 |
msgid "Searches"
|
1210 |
msgstr "گەرانەکان"
|
1211 |
|
1212 |
-
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:
|
1213 |
msgid "Search Words"
|
1214 |
msgstr "گەرانی وەشەکان"
|
1215 |
|
1216 |
-
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:
|
1217 |
msgid "Top Visitors Today"
|
1218 |
msgstr "بەرزترین میوانەکانی ئەمڕۆ"
|
1219 |
|
1220 |
-
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:
|
1221 |
msgid "Optimization"
|
1222 |
msgstr "باشینەسازی)هەژیکردن)"
|
1223 |
|
1224 |
-
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:
|
1225 |
msgid "Manual"
|
1226 |
msgstr "ڕێنمایی"
|
1227 |
|
1228 |
-
#: wp-statistics/wp-statistics.php:
|
1229 |
msgid "Site"
|
1230 |
msgstr "مالپەڕ"
|
1231 |
|
1232 |
-
#: wp-statistics/wp-statistics.php:
|
1233 |
msgid "Options"
|
1234 |
msgstr "ڕێکخستنهکان "
|
1235 |
|
1236 |
-
#: wp-statistics/wp-statistics.php:
|
1237 |
msgid "Today visitor"
|
1238 |
msgstr "کۆی میوان"
|
1239 |
|
1240 |
-
#: wp-statistics/wp-statistics.php:
|
1241 |
msgid "Today visit"
|
1242 |
msgstr "میوانی ئەمڕؤ"
|
1243 |
|
1244 |
-
#: wp-statistics/wp-statistics.php:
|
1245 |
msgid "Yesterday visitor"
|
1246 |
msgstr "میوانی دوێنێ"
|
1247 |
|
1248 |
-
#: wp-statistics/wp-statistics.php:
|
1249 |
msgid "View Stats"
|
1250 |
msgstr "نیشاندانی ئامار"
|
1251 |
|
1252 |
-
#: wp-statistics/wp-statistics.php:
|
1253 |
msgid "Download ODF file"
|
1254 |
msgstr "داگرتنی پەڕگەی ODF"
|
1255 |
|
1256 |
-
#: wp-statistics/wp-statistics.php:
|
1257 |
msgid "Download HTML file"
|
1258 |
msgstr "داگرتنی پەڕگەی HTML"
|
1259 |
|
1260 |
-
#: wp-statistics/wp-statistics.php:
|
1261 |
msgid "Manual file not found."
|
1262 |
msgstr "ڕێنمایی پەیدا نەبوو"
|
1263 |
|
1264 |
-
#: wp-statistics/wp-statistics.php:
|
1265 |
-
#: wp-statistics/wp-statistics.php:
|
1266 |
msgid "You do not have sufficient permissions to access this page."
|
1267 |
msgstr "تۆ مۆڵەتت بۆ دەستپێگەیشتنی ئەم پەڕەیە نییە."
|
1268 |
|
@@ -1323,7 +1307,7 @@ msgstr "ئاماری خێرا"
|
|
1323 |
msgid "Top 10 Browsers"
|
1324 |
msgstr "١٠ وێبگەڕی لووتکە"
|
1325 |
|
1326 |
-
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:
|
1327 |
msgid "Top 10 Countries"
|
1328 |
msgstr "١٠ وەڵاتی لووتکە"
|
1329 |
|
@@ -1337,36 +1321,36 @@ msgstr "میوانەکانی ئەمڕۆ"
|
|
1337 |
msgid "Hit Statistics"
|
1338 |
msgstr "ئامری سەردان"
|
1339 |
|
1340 |
-
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:
|
1341 |
msgid "Top 10 Pages"
|
1342 |
msgstr "بەرزترین ١٠ پەرە"
|
1343 |
|
1344 |
#: wp-statistics/dashboard.php:62
|
1345 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1346 |
-
#: wp-statistics/wp-statistics.php:
|
1347 |
msgid "Recent Visitors"
|
1348 |
msgstr "دوایین میوانەکان"
|
1349 |
|
1350 |
#: wp-statistics/dashboard.php:63
|
1351 |
#: wp-statistics/includes/log/top-referring.php:59
|
1352 |
#: wp-statistics/includes/log/top-referring.php:81
|
1353 |
-
#: wp-statistics/wp-statistics.php:
|
1354 |
msgid "Top Referring Sites"
|
1355 |
msgstr "زۆرترین ماڵپەڕی هاتن"
|
1356 |
|
1357 |
#: wp-statistics/dashboard.php:64
|
1358 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1359 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1360 |
-
#: wp-statistics/wp-statistics.php:
|
1361 |
msgid "Search Engine Referrals"
|
1362 |
msgstr "مەکینەی گەڕان هاتنەژوور"
|
1363 |
|
1364 |
-
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:
|
1365 |
msgid "Summary"
|
1366 |
msgstr "کورتە"
|
1367 |
|
1368 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1369 |
-
#: wp-statistics/wp-statistics.php:
|
1370 |
msgid "Latest Search Words"
|
1371 |
msgstr "دوایین وەشەی گەڕان"
|
1372 |
|
@@ -1436,8 +1420,8 @@ msgid "Click to toggle"
|
|
1436 |
msgstr "بۆ بەستن و داخستن کرتە بکە"
|
1437 |
|
1438 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1439 |
-
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:
|
1440 |
-
#: wp-statistics/wp-statistics.php:
|
1441 |
msgid "Browsers"
|
1442 |
msgstr "وێبگەڕەکان"
|
1443 |
|
@@ -1510,7 +1494,7 @@ msgstr "سەردانی دوایین جیاکردنەوە"
|
|
1510 |
#: wp-statistics/includes/log/exclusions.php:95
|
1511 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1512 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1513 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1514 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1515 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1516 |
msgid "days"
|
@@ -1525,18 +1509,18 @@ msgid "Hits Statistics Chart"
|
|
1525 |
msgstr "هێڵکاری ئاماری سەردانەکان"
|
1526 |
|
1527 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1528 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1529 |
msgid "Hits in the last"
|
1530 |
msgstr "دوایین سەردانەکان لە"
|
1531 |
|
1532 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1533 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1534 |
msgid "Number of visits and visitors"
|
1535 |
msgstr "ژمارەی سەردان و میوانەکان"
|
1536 |
|
1537 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1538 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1539 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1540 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1541 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1542 |
msgid "Visit"
|
@@ -1544,7 +1528,7 @@ msgstr "سەردان"
|
|
1544 |
|
1545 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1546 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1547 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1548 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1549 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1550 |
msgid "Visitor"
|
@@ -1747,7 +1731,7 @@ msgstr "ائەم بەرهەمە بریتیە لە داتا GeoLite2 ە کە لە
|
|
1747 |
msgid "Other"
|
1748 |
msgstr "ئەوی "
|
1749 |
|
1750 |
-
#: wp-statistics/wp-statistics.php:
|
1751 |
msgid "Today Visitors Map"
|
1752 |
msgstr "میوانەکانی ئەمڕۆ لە سەر نەخشە"
|
1753 |
|
@@ -1802,7 +1786,7 @@ msgstr "کات: %s"
|
|
1802 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1803 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1804 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1805 |
-
#: wp-statistics/wp-statistics.php:
|
1806 |
msgid "Hits"
|
1807 |
msgstr "سەردانەکان"
|
1808 |
|
@@ -1821,7 +1805,7 @@ msgstr "وەشان"
|
|
1821 |
|
1822 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1823 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1824 |
-
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:
|
1825 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1826 |
msgid "Access denied!"
|
1827 |
msgstr "دەستپێگەیشتنی بێمۆڵەت"
|
@@ -1877,7 +1861,7 @@ msgstr "پێنوێنی بنکەدراوە"
|
|
1877 |
|
1878 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1879 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1880 |
-
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:
|
1881 |
msgid "Countries"
|
1882 |
msgstr "وەڵآتەکان"
|
1883 |
|
@@ -1962,7 +1946,7 @@ msgstr "خاڵ:هەر وا کە بنکەی دراوەتان پاکسازی کر
|
|
1962 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1963 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1964 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1965 |
-
#: wp-statistics/wp-statistics.php:
|
1966 |
msgid "Visitors"
|
1967 |
msgstr "میوانەکان"
|
1968 |
|
@@ -2464,7 +2448,7 @@ msgstr "گەر پێویستت بە ڕێگاییک دیکە بۆ پەیوەندی
|
|
2464 |
#: wp-statistics/includes/log/exclusions.php:197
|
2465 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2466 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2467 |
-
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:
|
2468 |
msgid "Exclusions"
|
2469 |
msgstr "جیاکاریەکان"
|
2470 |
|
@@ -2674,8 +2658,8 @@ msgstr "سودوەرگرتن لە browscap"
|
|
2674 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2675 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2676 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2677 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2678 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2679 |
msgid "Active"
|
2680 |
msgstr "چالاک"
|
2681 |
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
+
"X-Generator: GlotPress/2.1.0\n"
|
11 |
+
"Language: ku_IQ\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
14 |
+
#: wp-statistics/ajax.php:215
|
15 |
msgid "No matching widget found!"
|
16 |
msgstr ""
|
17 |
|
47 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
48 |
msgstr "WP ئاماری PHP وشانی٪ s ناسراوە کە پاڵپشتی ناکرێت WP پێویستی PHP وشانی ٪ s و سەرتر هەیە!"
|
49 |
|
50 |
+
#: wp-statistics/ajax.php:294
|
51 |
msgid "ERROR: Widget not found!"
|
52 |
msgstr "هەڵە : ویجیت پەیدا نەبوو"
|
53 |
|
54 |
+
#: wp-statistics/dashboard.php:107 wp-statistics/editor.php:66
|
55 |
#: wp-statistics/includes/log/log.php:20
|
56 |
msgid "Loading..."
|
57 |
msgstr "خرمەخرم......"
|
58 |
|
59 |
+
#: wp-statistics/dashboard.php:125 wp-statistics/editor.php:84
|
60 |
#: wp-statistics/includes/log/log.php:2
|
61 |
msgid "Reloading..."
|
62 |
msgstr "لە کاتی هەڵگرساندەوە...."
|
63 |
|
64 |
#: wp-statistics/includes/log/top-visitors.php:41
|
65 |
+
#: wp-statistics/wp-statistics.php:450
|
66 |
msgid "Top Visitors"
|
67 |
msgstr "دوایین سەردانەکان"
|
68 |
|
159 |
msgid "online user tracking"
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: wp-statistics/wp-statistics.php:791
|
163 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
164 |
msgstr ""
|
165 |
|
623 |
|
624 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
625 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
626 |
+
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:532
|
627 |
msgid "Pages"
|
628 |
msgstr "پەڕەكان"
|
629 |
|
893 |
|
894 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
895 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
896 |
+
#: wp-statistics/wp-statistics.php:637
|
897 |
msgid "User Online"
|
898 |
msgstr "بەکارهینەری سەرهێڵ"
|
899 |
|
965 |
msgid "Disable the page/post editor widget."
|
966 |
msgstr "ناچالاککردنی ئامرازی(ویدجێت) سەردانی پەرەو/نوسراوە"
|
967 |
|
|
|
|
|
|
|
|
|
968 |
#: wp-statistics/includes/functions/functions.php:440
|
|
|
969 |
msgid "Google"
|
970 |
msgstr "گووگڵ"
|
971 |
|
972 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
973 |
msgid "Disable map"
|
974 |
msgstr "ناچالاککردنی نخشە"
|
975 |
|
976 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
977 |
msgid "Disable the map display"
|
978 |
msgstr "ناچالاککردنی نیشاندانی نەخشە"
|
979 |
|
980 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:81
|
981 |
msgid "Get country location from Google"
|
982 |
msgstr "وەرگرتنی شوێنی وەڵات لە گووگڵ"
|
983 |
|
984 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:87
|
985 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
986 |
msgstr "ئەم تایبەتمەندیە لەوانەیە نیشاندانی ئاماری بە هێواشی ئەنجام بدات .تەنها بۆ جۆری نەخشەی گووگڵ ڕێکخراوە."
|
987 |
|
1035 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1036 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1037 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1038 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:96
|
1039 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1040 |
msgid "Update"
|
1041 |
msgstr "بەڕۆژکردن"
|
1053 |
msgstr "هەر ٤ هەفتە"
|
1054 |
|
1055 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1056 |
+
#: wp-statistics/wp-statistics.php:485
|
1057 |
msgid "Statistics"
|
1058 |
msgstr "ئامار"
|
1059 |
|
1126 |
msgid "Items"
|
1127 |
msgstr "بڕگە"
|
1128 |
|
1129 |
+
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:662
|
1130 |
msgid "Yesterday visit"
|
1131 |
msgstr "سەردانی دوێنێ"
|
1132 |
|
1151 |
msgstr "ئامری گشتی بۆ ماڵپەڕی وۆردپرێسەکەت"
|
1152 |
|
1153 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1154 |
+
#: wp-statistics/wp-statistics.php:539
|
1155 |
msgid "Settings"
|
1156 |
msgstr "ڕیکخستن"
|
1157 |
|
1175 |
msgid "WP Statistics - Hits"
|
1176 |
msgstr "ئاماری وۆردپرێس-سەردان"
|
1177 |
|
1178 |
+
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:488
|
1179 |
+
#: wp-statistics/wp-statistics.php:526
|
1180 |
msgid "Overview"
|
1181 |
msgstr "پیشاندانی گشتی"
|
1182 |
|
1183 |
+
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:531
|
1184 |
msgid "Online"
|
1185 |
msgstr "سەرهێڵ"
|
1186 |
|
1187 |
+
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:533
|
1188 |
msgid "Referrers"
|
1189 |
msgstr "هاتنەژوورەوەکان"
|
1190 |
|
1191 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1192 |
+
#: wp-statistics/wp-statistics.php:534
|
1193 |
msgid "Searches"
|
1194 |
msgstr "گەرانەکان"
|
1195 |
|
1196 |
+
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:535
|
1197 |
msgid "Search Words"
|
1198 |
msgstr "گەرانی وەشەکان"
|
1199 |
|
1200 |
+
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:536
|
1201 |
msgid "Top Visitors Today"
|
1202 |
msgstr "بەرزترین میوانەکانی ئەمڕۆ"
|
1203 |
|
1204 |
+
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:538
|
1205 |
msgid "Optimization"
|
1206 |
msgstr "باشینەسازی)هەژیکردن)"
|
1207 |
|
1208 |
+
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:502
|
1209 |
msgid "Manual"
|
1210 |
msgstr "ڕێنمایی"
|
1211 |
|
1212 |
+
#: wp-statistics/wp-statistics.php:517
|
1213 |
msgid "Site"
|
1214 |
msgstr "مالپەڕ"
|
1215 |
|
1216 |
+
#: wp-statistics/wp-statistics.php:518
|
1217 |
msgid "Options"
|
1218 |
msgstr "ڕێکخستنهکان "
|
1219 |
|
1220 |
+
#: wp-statistics/wp-statistics.php:644
|
1221 |
msgid "Today visitor"
|
1222 |
msgstr "کۆی میوان"
|
1223 |
|
1224 |
+
#: wp-statistics/wp-statistics.php:650
|
1225 |
msgid "Today visit"
|
1226 |
msgstr "میوانی ئەمڕؤ"
|
1227 |
|
1228 |
+
#: wp-statistics/wp-statistics.php:656
|
1229 |
msgid "Yesterday visitor"
|
1230 |
msgstr "میوانی دوێنێ"
|
1231 |
|
1232 |
+
#: wp-statistics/wp-statistics.php:668
|
1233 |
msgid "View Stats"
|
1234 |
msgstr "نیشاندانی ئامار"
|
1235 |
|
1236 |
+
#: wp-statistics/wp-statistics.php:692
|
1237 |
msgid "Download ODF file"
|
1238 |
msgstr "داگرتنی پەڕگەی ODF"
|
1239 |
|
1240 |
+
#: wp-statistics/wp-statistics.php:693
|
1241 |
msgid "Download HTML file"
|
1242 |
msgstr "داگرتنی پەڕگەی HTML"
|
1243 |
|
1244 |
+
#: wp-statistics/wp-statistics.php:697
|
1245 |
msgid "Manual file not found."
|
1246 |
msgstr "ڕێنمایی پەیدا نەبوو"
|
1247 |
|
1248 |
+
#: wp-statistics/wp-statistics.php:764 wp-statistics/wp-statistics.php:891
|
1249 |
+
#: wp-statistics/wp-statistics.php:926
|
1250 |
msgid "You do not have sufficient permissions to access this page."
|
1251 |
msgstr "تۆ مۆڵەتت بۆ دەستپێگەیشتنی ئەم پەڕەیە نییە."
|
1252 |
|
1307 |
msgid "Top 10 Browsers"
|
1308 |
msgstr "١٠ وێبگەڕی لووتکە"
|
1309 |
|
1310 |
+
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:471
|
1311 |
msgid "Top 10 Countries"
|
1312 |
msgstr "١٠ وەڵاتی لووتکە"
|
1313 |
|
1321 |
msgid "Hit Statistics"
|
1322 |
msgstr "ئامری سەردان"
|
1323 |
|
1324 |
+
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:461
|
1325 |
msgid "Top 10 Pages"
|
1326 |
msgstr "بەرزترین ١٠ پەرە"
|
1327 |
|
1328 |
#: wp-statistics/dashboard.php:62
|
1329 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1330 |
+
#: wp-statistics/wp-statistics.php:453
|
1331 |
msgid "Recent Visitors"
|
1332 |
msgstr "دوایین میوانەکان"
|
1333 |
|
1334 |
#: wp-statistics/dashboard.php:63
|
1335 |
#: wp-statistics/includes/log/top-referring.php:59
|
1336 |
#: wp-statistics/includes/log/top-referring.php:81
|
1337 |
+
#: wp-statistics/wp-statistics.php:468
|
1338 |
msgid "Top Referring Sites"
|
1339 |
msgstr "زۆرترین ماڵپەڕی هاتن"
|
1340 |
|
1341 |
#: wp-statistics/dashboard.php:64
|
1342 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1343 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1344 |
+
#: wp-statistics/wp-statistics.php:451
|
1345 |
msgid "Search Engine Referrals"
|
1346 |
msgstr "مەکینەی گەڕان هاتنەژوور"
|
1347 |
|
1348 |
+
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:466
|
1349 |
msgid "Summary"
|
1350 |
msgstr "کورتە"
|
1351 |
|
1352 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1353 |
+
#: wp-statistics/wp-statistics.php:452
|
1354 |
msgid "Latest Search Words"
|
1355 |
msgstr "دوایین وەشەی گەڕان"
|
1356 |
|
1420 |
msgstr "بۆ بەستن و داخستن کرتە بکە"
|
1421 |
|
1422 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1423 |
+
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:467
|
1424 |
+
#: wp-statistics/wp-statistics.php:527
|
1425 |
msgid "Browsers"
|
1426 |
msgstr "وێبگەڕەکان"
|
1427 |
|
1494 |
#: wp-statistics/includes/log/exclusions.php:95
|
1495 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1496 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1497 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1498 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1499 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1500 |
msgid "days"
|
1509 |
msgstr "هێڵکاری ئاماری سەردانەکان"
|
1510 |
|
1511 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1512 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1513 |
msgid "Hits in the last"
|
1514 |
msgstr "دوایین سەردانەکان لە"
|
1515 |
|
1516 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1517 |
+
#: wp-statistics/includes/log/widgets/hits.php:65
|
1518 |
msgid "Number of visits and visitors"
|
1519 |
msgstr "ژمارەی سەردان و میوانەکان"
|
1520 |
|
1521 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1522 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1523 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1524 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1525 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1526 |
msgid "Visit"
|
1528 |
|
1529 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1530 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1531 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1532 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1533 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1534 |
msgid "Visitor"
|
1731 |
msgid "Other"
|
1732 |
msgstr "ئەوی "
|
1733 |
|
1734 |
+
#: wp-statistics/wp-statistics.php:456
|
1735 |
msgid "Today Visitors Map"
|
1736 |
msgstr "میوانەکانی ئەمڕۆ لە سەر نەخشە"
|
1737 |
|
1786 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1787 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1788 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1789 |
+
#: wp-statistics/wp-statistics.php:530
|
1790 |
msgid "Hits"
|
1791 |
msgstr "سەردانەکان"
|
1792 |
|
1805 |
|
1806 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1807 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1808 |
+
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:297
|
1809 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1810 |
msgid "Access denied!"
|
1811 |
msgstr "دەستپێگەیشتنی بێمۆڵەت"
|
1861 |
|
1862 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1863 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1864 |
+
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:528
|
1865 |
msgid "Countries"
|
1866 |
msgstr "وەڵآتەکان"
|
1867 |
|
1946 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1947 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1948 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1949 |
+
#: wp-statistics/wp-statistics.php:537
|
1950 |
msgid "Visitors"
|
1951 |
msgstr "میوانەکان"
|
1952 |
|
2448 |
#: wp-statistics/includes/log/exclusions.php:197
|
2449 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2450 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2451 |
+
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:529
|
2452 |
msgid "Exclusions"
|
2453 |
msgstr "جیاکاریەکان"
|
2454 |
|
2658 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2659 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2660 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2661 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:74
|
2662 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:86
|
2663 |
msgid "Active"
|
2664 |
msgstr "چالاک"
|
2665 |
|
languages/wp_statistics-cs_CZ.mo
CHANGED
Binary file
|
languages/wp_statistics-cs_CZ.po
CHANGED
@@ -7,10 +7,11 @@ msgstr ""
|
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
10 |
-
"X-Generator: GlotPress/1.0
|
|
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#: wp-statistics/ajax.php:
|
14 |
msgid "No matching widget found!"
|
15 |
msgstr ""
|
16 |
|
@@ -46,22 +47,22 @@ msgstr ""
|
|
46 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: wp-statistics/ajax.php:
|
50 |
msgid "ERROR: Widget not found!"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: wp-statistics/dashboard.php:
|
54 |
#: wp-statistics/includes/log/log.php:20
|
55 |
msgid "Loading..."
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: wp-statistics/dashboard.php:
|
59 |
#: wp-statistics/includes/log/log.php:2
|
60 |
msgid "Reloading..."
|
61 |
msgstr ""
|
62 |
|
63 |
#: wp-statistics/includes/log/top-visitors.php:41
|
64 |
-
#: wp-statistics/wp-statistics.php:
|
65 |
msgid "Top Visitors"
|
66 |
msgstr ""
|
67 |
|
@@ -158,7 +159,7 @@ msgstr ""
|
|
158 |
msgid "online user tracking"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: wp-statistics/wp-statistics.php:
|
162 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
163 |
msgstr ""
|
164 |
|
@@ -622,7 +623,7 @@ msgstr "Pro každou návštěvu k účtu pro několik hitů. V současné době
|
|
622 |
|
623 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
624 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
625 |
-
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:
|
626 |
msgid "Pages"
|
627 |
msgstr "Stránky"
|
628 |
|
@@ -892,7 +893,7 @@ msgstr ""
|
|
892 |
|
893 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
894 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
895 |
-
#: wp-statistics/wp-statistics.php:
|
896 |
msgid "User Online"
|
897 |
msgstr "Online uživatelé"
|
898 |
|
@@ -964,40 +965,23 @@ msgstr ""
|
|
964 |
msgid "Disable the page/post editor widget."
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
968 |
-
msgid "Map type"
|
969 |
-
msgstr "Typ mapy"
|
970 |
-
|
971 |
#: wp-statistics/includes/functions/functions.php:440
|
972 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
973 |
msgid "Google"
|
974 |
msgstr "Google"
|
975 |
|
976 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
977 |
-
msgid "JQVMap"
|
978 |
-
msgstr "JQVMap"
|
979 |
-
|
980 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:82
|
981 |
-
msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
|
982 |
-
msgstr "Zvolením \"Google\" bude použity mapové službý Google pro vykreslení návštěv (požaduje přístup na Google(. "
|
983 |
-
|
984 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:83
|
985 |
-
msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
|
986 |
-
msgstr " \"JQVMap\" volba použije JQVMap javascript mapovou knihovnu k vykreslení návštěv (vyžaduje externí služby)."
|
987 |
-
|
988 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:89
|
989 |
msgid "Disable map"
|
990 |
msgstr "Vypnout mapu"
|
991 |
|
992 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
993 |
msgid "Disable the map display"
|
994 |
msgstr "Vypnout zobrazení mapy"
|
995 |
|
996 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
997 |
msgid "Get country location from Google"
|
998 |
msgstr "Získat polohu země z Google"
|
999 |
|
1000 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1001 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
1002 |
msgstr "Tato funkce může způsobit snížení výkonu při prohlížení statistiky a je platná pouze pokud typ mapy je nastavena na \"Google\"."
|
1003 |
|
@@ -1051,7 +1035,7 @@ msgstr ""
|
|
1051 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1052 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1053 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1054 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1055 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1056 |
msgid "Update"
|
1057 |
msgstr "Aktualizovat"
|
@@ -1069,7 +1053,7 @@ msgid "Once Every 4 Weeks"
|
|
1069 |
msgstr "Jednou za 4 týdny"
|
1070 |
|
1071 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1072 |
-
#: wp-statistics/wp-statistics.php:
|
1073 |
msgid "Statistics"
|
1074 |
msgstr "Statistiky"
|
1075 |
|
@@ -1142,7 +1126,7 @@ msgstr "Jméno"
|
|
1142 |
msgid "Items"
|
1143 |
msgstr "Položky"
|
1144 |
|
1145 |
-
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:
|
1146 |
msgid "Yesterday visit"
|
1147 |
msgstr "Včera návštěv"
|
1148 |
|
@@ -1167,7 +1151,7 @@ msgid "Complete statistics for your WordPress site."
|
|
1167 |
msgstr "Kompletní statistiky pro váš web WordPress."
|
1168 |
|
1169 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1170 |
-
#: wp-statistics/wp-statistics.php:
|
1171 |
msgid "Settings"
|
1172 |
msgstr "Nastavení"
|
1173 |
|
@@ -1191,78 +1175,78 @@ msgstr "Ohodnoť tento plugin"
|
|
1191 |
msgid "WP Statistics - Hits"
|
1192 |
msgstr "WP Statistics - Hits"
|
1193 |
|
1194 |
-
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:
|
1195 |
-
#: wp-statistics/wp-statistics.php:
|
1196 |
msgid "Overview"
|
1197 |
msgstr "Přehled"
|
1198 |
|
1199 |
-
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:
|
1200 |
msgid "Online"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:
|
1204 |
msgid "Referrers"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1208 |
-
#: wp-statistics/wp-statistics.php:
|
1209 |
msgid "Searches"
|
1210 |
msgstr "Vyhledávání"
|
1211 |
|
1212 |
-
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:
|
1213 |
msgid "Search Words"
|
1214 |
msgstr "Hledaná slova"
|
1215 |
|
1216 |
-
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:
|
1217 |
msgid "Top Visitors Today"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
-
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:
|
1221 |
msgid "Optimization"
|
1222 |
msgstr "Optimalizace"
|
1223 |
|
1224 |
-
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:
|
1225 |
msgid "Manual"
|
1226 |
msgstr "Manuál"
|
1227 |
|
1228 |
-
#: wp-statistics/wp-statistics.php:
|
1229 |
msgid "Site"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
-
#: wp-statistics/wp-statistics.php:
|
1233 |
msgid "Options"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
-
#: wp-statistics/wp-statistics.php:
|
1237 |
msgid "Today visitor"
|
1238 |
msgstr "Dnešní návštěvník"
|
1239 |
|
1240 |
-
#: wp-statistics/wp-statistics.php:
|
1241 |
msgid "Today visit"
|
1242 |
msgstr "Dnešní návštěva"
|
1243 |
|
1244 |
-
#: wp-statistics/wp-statistics.php:
|
1245 |
msgid "Yesterday visitor"
|
1246 |
msgstr "Včera návštěvníků"
|
1247 |
|
1248 |
-
#: wp-statistics/wp-statistics.php:
|
1249 |
msgid "View Stats"
|
1250 |
msgstr "Zobrazit statistiky"
|
1251 |
|
1252 |
-
#: wp-statistics/wp-statistics.php:
|
1253 |
msgid "Download ODF file"
|
1254 |
msgstr "Stáhnout soubor ODF"
|
1255 |
|
1256 |
-
#: wp-statistics/wp-statistics.php:
|
1257 |
msgid "Download HTML file"
|
1258 |
msgstr "Stáhnout HTML soubor"
|
1259 |
|
1260 |
-
#: wp-statistics/wp-statistics.php:
|
1261 |
msgid "Manual file not found."
|
1262 |
msgstr "Ruční soubor nebyl nalezen."
|
1263 |
|
1264 |
-
#: wp-statistics/wp-statistics.php:
|
1265 |
-
#: wp-statistics/wp-statistics.php:
|
1266 |
msgid "You do not have sufficient permissions to access this page."
|
1267 |
msgstr "Nemáte dostatečná práva pro přístup na tuto stránku."
|
1268 |
|
@@ -1323,7 +1307,7 @@ msgstr ""
|
|
1323 |
msgid "Top 10 Browsers"
|
1324 |
msgstr "Top 10 Prohlížečů"
|
1325 |
|
1326 |
-
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:
|
1327 |
msgid "Top 10 Countries"
|
1328 |
msgstr "Pořadí"
|
1329 |
|
@@ -1337,36 +1321,36 @@ msgstr ""
|
|
1337 |
msgid "Hit Statistics"
|
1338 |
msgstr "Statistika hitů"
|
1339 |
|
1340 |
-
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:
|
1341 |
msgid "Top 10 Pages"
|
1342 |
msgstr "Top 10 stránek"
|
1343 |
|
1344 |
#: wp-statistics/dashboard.php:62
|
1345 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1346 |
-
#: wp-statistics/wp-statistics.php:
|
1347 |
msgid "Recent Visitors"
|
1348 |
msgstr "Aktuální návštěvníci"
|
1349 |
|
1350 |
#: wp-statistics/dashboard.php:63
|
1351 |
#: wp-statistics/includes/log/top-referring.php:59
|
1352 |
#: wp-statistics/includes/log/top-referring.php:81
|
1353 |
-
#: wp-statistics/wp-statistics.php:
|
1354 |
msgid "Top Referring Sites"
|
1355 |
msgstr "Nejlepší odkazující stránky"
|
1356 |
|
1357 |
#: wp-statistics/dashboard.php:64
|
1358 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1359 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1360 |
-
#: wp-statistics/wp-statistics.php:
|
1361 |
msgid "Search Engine Referrals"
|
1362 |
msgstr "Vyhledávací Engine odkazy"
|
1363 |
|
1364 |
-
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:
|
1365 |
msgid "Summary"
|
1366 |
msgstr "Souhrn"
|
1367 |
|
1368 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1369 |
-
#: wp-statistics/wp-statistics.php:
|
1370 |
msgid "Latest Search Words"
|
1371 |
msgstr "Poslední vyhledávaný slova"
|
1372 |
|
@@ -1436,8 +1420,8 @@ msgid "Click to toggle"
|
|
1436 |
msgstr "Klik na vypínač"
|
1437 |
|
1438 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1439 |
-
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:
|
1440 |
-
#: wp-statistics/wp-statistics.php:
|
1441 |
msgid "Browsers"
|
1442 |
msgstr "Prohlížeče"
|
1443 |
|
@@ -1510,7 +1494,7 @@ msgstr "Vyloučené hity v posledních"
|
|
1510 |
#: wp-statistics/includes/log/exclusions.php:95
|
1511 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1512 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1513 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1514 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1515 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1516 |
msgid "days"
|
@@ -1525,18 +1509,18 @@ msgid "Hits Statistics Chart"
|
|
1525 |
msgstr "Graf statistiky přístupů"
|
1526 |
|
1527 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1528 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1529 |
msgid "Hits in the last"
|
1530 |
msgstr "Hity v posledních"
|
1531 |
|
1532 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1533 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1534 |
msgid "Number of visits and visitors"
|
1535 |
msgstr "Počet návštěv a návštěvníků"
|
1536 |
|
1537 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1538 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1539 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1540 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1541 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1542 |
msgid "Visit"
|
@@ -1544,7 +1528,7 @@ msgstr "Návštěva"
|
|
1544 |
|
1545 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1546 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1547 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1548 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1549 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1550 |
msgid "Visitor"
|
@@ -1747,7 +1731,7 @@ msgstr "Tento produkt obsahuje GeoLite2 data vytvořená MaxMind, k dispozici od
|
|
1747 |
msgid "Other"
|
1748 |
msgstr "Jiný"
|
1749 |
|
1750 |
-
#: wp-statistics/wp-statistics.php:
|
1751 |
msgid "Today Visitors Map"
|
1752 |
msgstr "Dnešní mapa návštšvníků"
|
1753 |
|
@@ -1802,7 +1786,7 @@ msgstr "Čas: %s"
|
|
1802 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1803 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1804 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1805 |
-
#: wp-statistics/wp-statistics.php:
|
1806 |
msgid "Hits"
|
1807 |
msgstr "Hity"
|
1808 |
|
@@ -1821,7 +1805,7 @@ msgstr ""
|
|
1821 |
|
1822 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1823 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1824 |
-
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:
|
1825 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1826 |
msgid "Access denied!"
|
1827 |
msgstr "Přístup zakázán!"
|
@@ -1877,7 +1861,7 @@ msgstr "Databáze Index"
|
|
1877 |
|
1878 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1879 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1880 |
-
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:
|
1881 |
msgid "Countries"
|
1882 |
msgstr "Země"
|
1883 |
|
@@ -1962,7 +1946,7 @@ msgstr ""
|
|
1962 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1963 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1964 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1965 |
-
#: wp-statistics/wp-statistics.php:
|
1966 |
msgid "Visitors"
|
1967 |
msgstr "Návštěvníci"
|
1968 |
|
@@ -2464,7 +2448,7 @@ msgstr "Pokud budete potřebovat robustnější řešení pro přístup delegát
|
|
2464 |
#: wp-statistics/includes/log/exclusions.php:197
|
2465 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2466 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2467 |
-
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:
|
2468 |
msgid "Exclusions"
|
2469 |
msgstr "Vyjímky"
|
2470 |
|
@@ -2674,8 +2658,8 @@ msgstr "Browscap využití"
|
|
2674 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2675 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2676 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2677 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2678 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2679 |
msgid "Active"
|
2680 |
msgstr "Aktivní"
|
2681 |
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
10 |
+
"X-Generator: GlotPress/2.1.0\n"
|
11 |
+
"Language: cs_CZ\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
14 |
+
#: wp-statistics/ajax.php:215
|
15 |
msgid "No matching widget found!"
|
16 |
msgstr ""
|
17 |
|
47 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: wp-statistics/ajax.php:294
|
51 |
msgid "ERROR: Widget not found!"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: wp-statistics/dashboard.php:107 wp-statistics/editor.php:66
|
55 |
#: wp-statistics/includes/log/log.php:20
|
56 |
msgid "Loading..."
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: wp-statistics/dashboard.php:125 wp-statistics/editor.php:84
|
60 |
#: wp-statistics/includes/log/log.php:2
|
61 |
msgid "Reloading..."
|
62 |
msgstr ""
|
63 |
|
64 |
#: wp-statistics/includes/log/top-visitors.php:41
|
65 |
+
#: wp-statistics/wp-statistics.php:450
|
66 |
msgid "Top Visitors"
|
67 |
msgstr ""
|
68 |
|
159 |
msgid "online user tracking"
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: wp-statistics/wp-statistics.php:791
|
163 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
164 |
msgstr ""
|
165 |
|
623 |
|
624 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
625 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
626 |
+
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:532
|
627 |
msgid "Pages"
|
628 |
msgstr "Stránky"
|
629 |
|
893 |
|
894 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
895 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
896 |
+
#: wp-statistics/wp-statistics.php:637
|
897 |
msgid "User Online"
|
898 |
msgstr "Online uživatelé"
|
899 |
|
965 |
msgid "Disable the page/post editor widget."
|
966 |
msgstr ""
|
967 |
|
|
|
|
|
|
|
|
|
968 |
#: wp-statistics/includes/functions/functions.php:440
|
|
|
969 |
msgid "Google"
|
970 |
msgstr "Google"
|
971 |
|
972 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
973 |
msgid "Disable map"
|
974 |
msgstr "Vypnout mapu"
|
975 |
|
976 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
977 |
msgid "Disable the map display"
|
978 |
msgstr "Vypnout zobrazení mapy"
|
979 |
|
980 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:81
|
981 |
msgid "Get country location from Google"
|
982 |
msgstr "Získat polohu země z Google"
|
983 |
|
984 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:87
|
985 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
986 |
msgstr "Tato funkce může způsobit snížení výkonu při prohlížení statistiky a je platná pouze pokud typ mapy je nastavena na \"Google\"."
|
987 |
|
1035 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1036 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1037 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1038 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:96
|
1039 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1040 |
msgid "Update"
|
1041 |
msgstr "Aktualizovat"
|
1053 |
msgstr "Jednou za 4 týdny"
|
1054 |
|
1055 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1056 |
+
#: wp-statistics/wp-statistics.php:485
|
1057 |
msgid "Statistics"
|
1058 |
msgstr "Statistiky"
|
1059 |
|
1126 |
msgid "Items"
|
1127 |
msgstr "Položky"
|
1128 |
|
1129 |
+
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:662
|
1130 |
msgid "Yesterday visit"
|
1131 |
msgstr "Včera návštěv"
|
1132 |
|
1151 |
msgstr "Kompletní statistiky pro váš web WordPress."
|
1152 |
|
1153 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1154 |
+
#: wp-statistics/wp-statistics.php:539
|
1155 |
msgid "Settings"
|
1156 |
msgstr "Nastavení"
|
1157 |
|
1175 |
msgid "WP Statistics - Hits"
|
1176 |
msgstr "WP Statistics - Hits"
|
1177 |
|
1178 |
+
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:488
|
1179 |
+
#: wp-statistics/wp-statistics.php:526
|
1180 |
msgid "Overview"
|
1181 |
msgstr "Přehled"
|
1182 |
|
1183 |
+
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:531
|
1184 |
msgid "Online"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:533
|
1188 |
msgid "Referrers"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1192 |
+
#: wp-statistics/wp-statistics.php:534
|
1193 |
msgid "Searches"
|
1194 |
msgstr "Vyhledávání"
|
1195 |
|
1196 |
+
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:535
|
1197 |
msgid "Search Words"
|
1198 |
msgstr "Hledaná slova"
|
1199 |
|
1200 |
+
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:536
|
1201 |
msgid "Top Visitors Today"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
+
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:538
|
1205 |
msgid "Optimization"
|
1206 |
msgstr "Optimalizace"
|
1207 |
|
1208 |
+
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:502
|
1209 |
msgid "Manual"
|
1210 |
msgstr "Manuál"
|
1211 |
|
1212 |
+
#: wp-statistics/wp-statistics.php:517
|
1213 |
msgid "Site"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
+
#: wp-statistics/wp-statistics.php:518
|
1217 |
msgid "Options"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
+
#: wp-statistics/wp-statistics.php:644
|
1221 |
msgid "Today visitor"
|
1222 |
msgstr "Dnešní návštěvník"
|
1223 |
|
1224 |
+
#: wp-statistics/wp-statistics.php:650
|
1225 |
msgid "Today visit"
|
1226 |
msgstr "Dnešní návštěva"
|
1227 |
|
1228 |
+
#: wp-statistics/wp-statistics.php:656
|
1229 |
msgid "Yesterday visitor"
|
1230 |
msgstr "Včera návštěvníků"
|
1231 |
|
1232 |
+
#: wp-statistics/wp-statistics.php:668
|
1233 |
msgid "View Stats"
|
1234 |
msgstr "Zobrazit statistiky"
|
1235 |
|
1236 |
+
#: wp-statistics/wp-statistics.php:692
|
1237 |
msgid "Download ODF file"
|
1238 |
msgstr "Stáhnout soubor ODF"
|
1239 |
|
1240 |
+
#: wp-statistics/wp-statistics.php:693
|
1241 |
msgid "Download HTML file"
|
1242 |
msgstr "Stáhnout HTML soubor"
|
1243 |
|
1244 |
+
#: wp-statistics/wp-statistics.php:697
|
1245 |
msgid "Manual file not found."
|
1246 |
msgstr "Ruční soubor nebyl nalezen."
|
1247 |
|
1248 |
+
#: wp-statistics/wp-statistics.php:764 wp-statistics/wp-statistics.php:891
|
1249 |
+
#: wp-statistics/wp-statistics.php:926
|
1250 |
msgid "You do not have sufficient permissions to access this page."
|
1251 |
msgstr "Nemáte dostatečná práva pro přístup na tuto stránku."
|
1252 |
|
1307 |
msgid "Top 10 Browsers"
|
1308 |
msgstr "Top 10 Prohlížečů"
|
1309 |
|
1310 |
+
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:471
|
1311 |
msgid "Top 10 Countries"
|
1312 |
msgstr "Pořadí"
|
1313 |
|
1321 |
msgid "Hit Statistics"
|
1322 |
msgstr "Statistika hitů"
|
1323 |
|
1324 |
+
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:461
|
1325 |
msgid "Top 10 Pages"
|
1326 |
msgstr "Top 10 stránek"
|
1327 |
|
1328 |
#: wp-statistics/dashboard.php:62
|
1329 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1330 |
+
#: wp-statistics/wp-statistics.php:453
|
1331 |
msgid "Recent Visitors"
|
1332 |
msgstr "Aktuální návštěvníci"
|
1333 |
|
1334 |
#: wp-statistics/dashboard.php:63
|
1335 |
#: wp-statistics/includes/log/top-referring.php:59
|
1336 |
#: wp-statistics/includes/log/top-referring.php:81
|
1337 |
+
#: wp-statistics/wp-statistics.php:468
|
1338 |
msgid "Top Referring Sites"
|
1339 |
msgstr "Nejlepší odkazující stránky"
|
1340 |
|
1341 |
#: wp-statistics/dashboard.php:64
|
1342 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1343 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1344 |
+
#: wp-statistics/wp-statistics.php:451
|
1345 |
msgid "Search Engine Referrals"
|
1346 |
msgstr "Vyhledávací Engine odkazy"
|
1347 |
|
1348 |
+
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:466
|
1349 |
msgid "Summary"
|
1350 |
msgstr "Souhrn"
|
1351 |
|
1352 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1353 |
+
#: wp-statistics/wp-statistics.php:452
|
1354 |
msgid "Latest Search Words"
|
1355 |
msgstr "Poslední vyhledávaný slova"
|
1356 |
|
1420 |
msgstr "Klik na vypínač"
|
1421 |
|
1422 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1423 |
+
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:467
|
1424 |
+
#: wp-statistics/wp-statistics.php:527
|
1425 |
msgid "Browsers"
|
1426 |
msgstr "Prohlížeče"
|
1427 |
|
1494 |
#: wp-statistics/includes/log/exclusions.php:95
|
1495 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1496 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1497 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1498 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1499 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1500 |
msgid "days"
|
1509 |
msgstr "Graf statistiky přístupů"
|
1510 |
|
1511 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1512 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1513 |
msgid "Hits in the last"
|
1514 |
msgstr "Hity v posledních"
|
1515 |
|
1516 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1517 |
+
#: wp-statistics/includes/log/widgets/hits.php:65
|
1518 |
msgid "Number of visits and visitors"
|
1519 |
msgstr "Počet návštěv a návštěvníků"
|
1520 |
|
1521 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1522 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1523 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1524 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1525 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1526 |
msgid "Visit"
|
1528 |
|
1529 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1530 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1531 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1532 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1533 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1534 |
msgid "Visitor"
|
1731 |
msgid "Other"
|
1732 |
msgstr "Jiný"
|
1733 |
|
1734 |
+
#: wp-statistics/wp-statistics.php:456
|
1735 |
msgid "Today Visitors Map"
|
1736 |
msgstr "Dnešní mapa návštšvníků"
|
1737 |
|
1786 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1787 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1788 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1789 |
+
#: wp-statistics/wp-statistics.php:530
|
1790 |
msgid "Hits"
|
1791 |
msgstr "Hity"
|
1792 |
|
1805 |
|
1806 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1807 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1808 |
+
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:297
|
1809 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1810 |
msgid "Access denied!"
|
1811 |
msgstr "Přístup zakázán!"
|
1861 |
|
1862 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1863 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1864 |
+
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:528
|
1865 |
msgid "Countries"
|
1866 |
msgstr "Země"
|
1867 |
|
1946 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1947 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1948 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1949 |
+
#: wp-statistics/wp-statistics.php:537
|
1950 |
msgid "Visitors"
|
1951 |
msgstr "Návštěvníci"
|
1952 |
|
2448 |
#: wp-statistics/includes/log/exclusions.php:197
|
2449 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2450 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2451 |
+
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:529
|
2452 |
msgid "Exclusions"
|
2453 |
msgstr "Vyjímky"
|
2454 |
|
2658 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2659 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2660 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2661 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:74
|
2662 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:86
|
2663 |
msgid "Active"
|
2664 |
msgstr "Aktivní"
|
2665 |
|
languages/wp_statistics-da_DK.mo
CHANGED
Binary file
|
languages/wp_statistics-da_DK.po
CHANGED
@@ -7,10 +7,11 @@ msgstr ""
|
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
-
"X-Generator: GlotPress/1.0
|
|
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#: wp-statistics/ajax.php:
|
14 |
msgid "No matching widget found!"
|
15 |
msgstr ""
|
16 |
|
@@ -46,22 +47,22 @@ msgstr ""
|
|
46 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: wp-statistics/ajax.php:
|
50 |
msgid "ERROR: Widget not found!"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: wp-statistics/dashboard.php:
|
54 |
#: wp-statistics/includes/log/log.php:20
|
55 |
msgid "Loading..."
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: wp-statistics/dashboard.php:
|
59 |
#: wp-statistics/includes/log/log.php:2
|
60 |
msgid "Reloading..."
|
61 |
msgstr ""
|
62 |
|
63 |
#: wp-statistics/includes/log/top-visitors.php:41
|
64 |
-
#: wp-statistics/wp-statistics.php:
|
65 |
msgid "Top Visitors"
|
66 |
msgstr ""
|
67 |
|
@@ -158,7 +159,7 @@ msgstr ""
|
|
158 |
msgid "online user tracking"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: wp-statistics/wp-statistics.php:
|
162 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
163 |
msgstr ""
|
164 |
|
@@ -622,7 +623,7 @@ msgstr ""
|
|
622 |
|
623 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
624 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
625 |
-
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:
|
626 |
msgid "Pages"
|
627 |
msgstr ""
|
628 |
|
@@ -892,7 +893,7 @@ msgstr ""
|
|
892 |
|
893 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
894 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
895 |
-
#: wp-statistics/wp-statistics.php:
|
896 |
msgid "User Online"
|
897 |
msgstr ""
|
898 |
|
@@ -964,40 +965,23 @@ msgstr ""
|
|
964 |
msgid "Disable the page/post editor widget."
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
968 |
-
msgid "Map type"
|
969 |
-
msgstr ""
|
970 |
-
|
971 |
#: wp-statistics/includes/functions/functions.php:440
|
972 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
973 |
msgid "Google"
|
974 |
msgstr ""
|
975 |
|
976 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
977 |
-
msgid "JQVMap"
|
978 |
-
msgstr ""
|
979 |
-
|
980 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:82
|
981 |
-
msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
|
982 |
-
msgstr ""
|
983 |
-
|
984 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:83
|
985 |
-
msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
|
986 |
-
msgstr ""
|
987 |
-
|
988 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:89
|
989 |
msgid "Disable map"
|
990 |
msgstr ""
|
991 |
|
992 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
993 |
msgid "Disable the map display"
|
994 |
msgstr ""
|
995 |
|
996 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
997 |
msgid "Get country location from Google"
|
998 |
msgstr ""
|
999 |
|
1000 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1001 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
1002 |
msgstr ""
|
1003 |
|
@@ -1051,7 +1035,7 @@ msgstr ""
|
|
1051 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1052 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1053 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1054 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1055 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1056 |
msgid "Update"
|
1057 |
msgstr ""
|
@@ -1069,7 +1053,7 @@ msgid "Once Every 4 Weeks"
|
|
1069 |
msgstr ""
|
1070 |
|
1071 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1072 |
-
#: wp-statistics/wp-statistics.php:
|
1073 |
msgid "Statistics"
|
1074 |
msgstr ""
|
1075 |
|
@@ -1142,7 +1126,7 @@ msgstr ""
|
|
1142 |
msgid "Items"
|
1143 |
msgstr ""
|
1144 |
|
1145 |
-
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:
|
1146 |
msgid "Yesterday visit"
|
1147 |
msgstr ""
|
1148 |
|
@@ -1167,7 +1151,7 @@ msgid "Complete statistics for your WordPress site."
|
|
1167 |
msgstr ""
|
1168 |
|
1169 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1170 |
-
#: wp-statistics/wp-statistics.php:
|
1171 |
msgid "Settings"
|
1172 |
msgstr ""
|
1173 |
|
@@ -1191,78 +1175,78 @@ msgstr ""
|
|
1191 |
msgid "WP Statistics - Hits"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
-
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:
|
1195 |
-
#: wp-statistics/wp-statistics.php:
|
1196 |
msgid "Overview"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
-
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:
|
1200 |
msgid "Online"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:
|
1204 |
msgid "Referrers"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1208 |
-
#: wp-statistics/wp-statistics.php:
|
1209 |
msgid "Searches"
|
1210 |
msgstr ""
|
1211 |
|
1212 |
-
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:
|
1213 |
msgid "Search Words"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
-
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:
|
1217 |
msgid "Top Visitors Today"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
-
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:
|
1221 |
msgid "Optimization"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
-
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:
|
1225 |
msgid "Manual"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
-
#: wp-statistics/wp-statistics.php:
|
1229 |
msgid "Site"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
-
#: wp-statistics/wp-statistics.php:
|
1233 |
msgid "Options"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
-
#: wp-statistics/wp-statistics.php:
|
1237 |
msgid "Today visitor"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
-
#: wp-statistics/wp-statistics.php:
|
1241 |
msgid "Today visit"
|
1242 |
msgstr ""
|
1243 |
|
1244 |
-
#: wp-statistics/wp-statistics.php:
|
1245 |
msgid "Yesterday visitor"
|
1246 |
msgstr ""
|
1247 |
|
1248 |
-
#: wp-statistics/wp-statistics.php:
|
1249 |
msgid "View Stats"
|
1250 |
msgstr ""
|
1251 |
|
1252 |
-
#: wp-statistics/wp-statistics.php:
|
1253 |
msgid "Download ODF file"
|
1254 |
msgstr ""
|
1255 |
|
1256 |
-
#: wp-statistics/wp-statistics.php:
|
1257 |
msgid "Download HTML file"
|
1258 |
msgstr ""
|
1259 |
|
1260 |
-
#: wp-statistics/wp-statistics.php:
|
1261 |
msgid "Manual file not found."
|
1262 |
msgstr ""
|
1263 |
|
1264 |
-
#: wp-statistics/wp-statistics.php:
|
1265 |
-
#: wp-statistics/wp-statistics.php:
|
1266 |
msgid "You do not have sufficient permissions to access this page."
|
1267 |
msgstr ""
|
1268 |
|
@@ -1323,7 +1307,7 @@ msgstr ""
|
|
1323 |
msgid "Top 10 Browsers"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
-
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:
|
1327 |
msgid "Top 10 Countries"
|
1328 |
msgstr ""
|
1329 |
|
@@ -1337,36 +1321,36 @@ msgstr ""
|
|
1337 |
msgid "Hit Statistics"
|
1338 |
msgstr ""
|
1339 |
|
1340 |
-
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:
|
1341 |
msgid "Top 10 Pages"
|
1342 |
msgstr ""
|
1343 |
|
1344 |
#: wp-statistics/dashboard.php:62
|
1345 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1346 |
-
#: wp-statistics/wp-statistics.php:
|
1347 |
msgid "Recent Visitors"
|
1348 |
msgstr ""
|
1349 |
|
1350 |
#: wp-statistics/dashboard.php:63
|
1351 |
#: wp-statistics/includes/log/top-referring.php:59
|
1352 |
#: wp-statistics/includes/log/top-referring.php:81
|
1353 |
-
#: wp-statistics/wp-statistics.php:
|
1354 |
msgid "Top Referring Sites"
|
1355 |
msgstr ""
|
1356 |
|
1357 |
#: wp-statistics/dashboard.php:64
|
1358 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1359 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1360 |
-
#: wp-statistics/wp-statistics.php:
|
1361 |
msgid "Search Engine Referrals"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
-
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:
|
1365 |
msgid "Summary"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1369 |
-
#: wp-statistics/wp-statistics.php:
|
1370 |
msgid "Latest Search Words"
|
1371 |
msgstr ""
|
1372 |
|
@@ -1436,8 +1420,8 @@ msgid "Click to toggle"
|
|
1436 |
msgstr ""
|
1437 |
|
1438 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1439 |
-
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:
|
1440 |
-
#: wp-statistics/wp-statistics.php:
|
1441 |
msgid "Browsers"
|
1442 |
msgstr ""
|
1443 |
|
@@ -1510,7 +1494,7 @@ msgstr ""
|
|
1510 |
#: wp-statistics/includes/log/exclusions.php:95
|
1511 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1512 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1513 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1514 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1515 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1516 |
msgid "days"
|
@@ -1525,18 +1509,18 @@ msgid "Hits Statistics Chart"
|
|
1525 |
msgstr ""
|
1526 |
|
1527 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1528 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1529 |
msgid "Hits in the last"
|
1530 |
msgstr ""
|
1531 |
|
1532 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1533 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1534 |
msgid "Number of visits and visitors"
|
1535 |
msgstr ""
|
1536 |
|
1537 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1538 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1539 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1540 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1541 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1542 |
msgid "Visit"
|
@@ -1544,7 +1528,7 @@ msgstr ""
|
|
1544 |
|
1545 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1546 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1547 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1548 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1549 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1550 |
msgid "Visitor"
|
@@ -1747,7 +1731,7 @@ msgstr ""
|
|
1747 |
msgid "Other"
|
1748 |
msgstr ""
|
1749 |
|
1750 |
-
#: wp-statistics/wp-statistics.php:
|
1751 |
msgid "Today Visitors Map"
|
1752 |
msgstr ""
|
1753 |
|
@@ -1802,7 +1786,7 @@ msgstr ""
|
|
1802 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1803 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1804 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1805 |
-
#: wp-statistics/wp-statistics.php:
|
1806 |
msgid "Hits"
|
1807 |
msgstr ""
|
1808 |
|
@@ -1821,7 +1805,7 @@ msgstr ""
|
|
1821 |
|
1822 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1823 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1824 |
-
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:
|
1825 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1826 |
msgid "Access denied!"
|
1827 |
msgstr ""
|
@@ -1877,7 +1861,7 @@ msgstr ""
|
|
1877 |
|
1878 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1879 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1880 |
-
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:
|
1881 |
msgid "Countries"
|
1882 |
msgstr ""
|
1883 |
|
@@ -1962,7 +1946,7 @@ msgstr ""
|
|
1962 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1963 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1964 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1965 |
-
#: wp-statistics/wp-statistics.php:
|
1966 |
msgid "Visitors"
|
1967 |
msgstr ""
|
1968 |
|
@@ -2464,7 +2448,7 @@ msgstr ""
|
|
2464 |
#: wp-statistics/includes/log/exclusions.php:197
|
2465 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2466 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2467 |
-
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:
|
2468 |
msgid "Exclusions"
|
2469 |
msgstr ""
|
2470 |
|
@@ -2674,8 +2658,8 @@ msgstr ""
|
|
2674 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2675 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2676 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2677 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2678 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2679 |
msgid "Active"
|
2680 |
msgstr ""
|
2681 |
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
+
"X-Generator: GlotPress/2.1.0\n"
|
11 |
+
"Language: da_DK\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
14 |
+
#: wp-statistics/ajax.php:215
|
15 |
msgid "No matching widget found!"
|
16 |
msgstr ""
|
17 |
|
47 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: wp-statistics/ajax.php:294
|
51 |
msgid "ERROR: Widget not found!"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: wp-statistics/dashboard.php:107 wp-statistics/editor.php:66
|
55 |
#: wp-statistics/includes/log/log.php:20
|
56 |
msgid "Loading..."
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: wp-statistics/dashboard.php:125 wp-statistics/editor.php:84
|
60 |
#: wp-statistics/includes/log/log.php:2
|
61 |
msgid "Reloading..."
|
62 |
msgstr ""
|
63 |
|
64 |
#: wp-statistics/includes/log/top-visitors.php:41
|
65 |
+
#: wp-statistics/wp-statistics.php:450
|
66 |
msgid "Top Visitors"
|
67 |
msgstr ""
|
68 |
|
159 |
msgid "online user tracking"
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: wp-statistics/wp-statistics.php:791
|
163 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
164 |
msgstr ""
|
165 |
|
623 |
|
624 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
625 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
626 |
+
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:532
|
627 |
msgid "Pages"
|
628 |
msgstr ""
|
629 |
|
893 |
|
894 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
895 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
896 |
+
#: wp-statistics/wp-statistics.php:637
|
897 |
msgid "User Online"
|
898 |
msgstr ""
|
899 |
|
965 |
msgid "Disable the page/post editor widget."
|
966 |
msgstr ""
|
967 |
|
|
|
|
|
|
|
|
|
968 |
#: wp-statistics/includes/functions/functions.php:440
|
|
|
969 |
msgid "Google"
|
970 |
msgstr ""
|
971 |
|
972 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
973 |
msgid "Disable map"
|
974 |
msgstr ""
|
975 |
|
976 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
977 |
msgid "Disable the map display"
|
978 |
msgstr ""
|
979 |
|
980 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:81
|
981 |
msgid "Get country location from Google"
|
982 |
msgstr ""
|
983 |
|
984 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:87
|
985 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
986 |
msgstr ""
|
987 |
|
1035 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1036 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1037 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1038 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:96
|
1039 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1040 |
msgid "Update"
|
1041 |
msgstr ""
|
1053 |
msgstr ""
|
1054 |
|
1055 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1056 |
+
#: wp-statistics/wp-statistics.php:485
|
1057 |
msgid "Statistics"
|
1058 |
msgstr ""
|
1059 |
|
1126 |
msgid "Items"
|
1127 |
msgstr ""
|
1128 |
|
1129 |
+
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:662
|
1130 |
msgid "Yesterday visit"
|
1131 |
msgstr ""
|
1132 |
|
1151 |
msgstr ""
|
1152 |
|
1153 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1154 |
+
#: wp-statistics/wp-statistics.php:539
|
1155 |
msgid "Settings"
|
1156 |
msgstr ""
|
1157 |
|
1175 |
msgid "WP Statistics - Hits"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
+
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:488
|
1179 |
+
#: wp-statistics/wp-statistics.php:526
|
1180 |
msgid "Overview"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
+
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:531
|
1184 |
msgid "Online"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:533
|
1188 |
msgid "Referrers"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1192 |
+
#: wp-statistics/wp-statistics.php:534
|
1193 |
msgid "Searches"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
+
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:535
|
1197 |
msgid "Search Words"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
+
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:536
|
1201 |
msgid "Top Visitors Today"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
+
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:538
|
1205 |
msgid "Optimization"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
+
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:502
|
1209 |
msgid "Manual"
|
1210 |
msgstr ""
|
1211 |
|
1212 |
+
#: wp-statistics/wp-statistics.php:517
|
1213 |
msgid "Site"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
+
#: wp-statistics/wp-statistics.php:518
|
1217 |
msgid "Options"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
+
#: wp-statistics/wp-statistics.php:644
|
1221 |
msgid "Today visitor"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
+
#: wp-statistics/wp-statistics.php:650
|
1225 |
msgid "Today visit"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
+
#: wp-statistics/wp-statistics.php:656
|
1229 |
msgid "Yesterday visitor"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
+
#: wp-statistics/wp-statistics.php:668
|
1233 |
msgid "View Stats"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
+
#: wp-statistics/wp-statistics.php:692
|
1237 |
msgid "Download ODF file"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
+
#: wp-statistics/wp-statistics.php:693
|
1241 |
msgid "Download HTML file"
|
1242 |
msgstr ""
|
1243 |
|
1244 |
+
#: wp-statistics/wp-statistics.php:697
|
1245 |
msgid "Manual file not found."
|
1246 |
msgstr ""
|
1247 |
|
1248 |
+
#: wp-statistics/wp-statistics.php:764 wp-statistics/wp-statistics.php:891
|
1249 |
+
#: wp-statistics/wp-statistics.php:926
|
1250 |
msgid "You do not have sufficient permissions to access this page."
|
1251 |
msgstr ""
|
1252 |
|
1307 |
msgid "Top 10 Browsers"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
+
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:471
|
1311 |
msgid "Top 10 Countries"
|
1312 |
msgstr ""
|
1313 |
|
1321 |
msgid "Hit Statistics"
|
1322 |
msgstr ""
|
1323 |
|
1324 |
+
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:461
|
1325 |
msgid "Top 10 Pages"
|
1326 |
msgstr ""
|
1327 |
|
1328 |
#: wp-statistics/dashboard.php:62
|
1329 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1330 |
+
#: wp-statistics/wp-statistics.php:453
|
1331 |
msgid "Recent Visitors"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
#: wp-statistics/dashboard.php:63
|
1335 |
#: wp-statistics/includes/log/top-referring.php:59
|
1336 |
#: wp-statistics/includes/log/top-referring.php:81
|
1337 |
+
#: wp-statistics/wp-statistics.php:468
|
1338 |
msgid "Top Referring Sites"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
#: wp-statistics/dashboard.php:64
|
1342 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1343 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1344 |
+
#: wp-statistics/wp-statistics.php:451
|
1345 |
msgid "Search Engine Referrals"
|
1346 |
msgstr ""
|
1347 |
|
1348 |
+
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:466
|
1349 |
msgid "Summary"
|
1350 |
msgstr ""
|
1351 |
|
1352 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1353 |
+
#: wp-statistics/wp-statistics.php:452
|
1354 |
msgid "Latest Search Words"
|
1355 |
msgstr ""
|
1356 |
|
1420 |
msgstr ""
|
1421 |
|
1422 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1423 |
+
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:467
|
1424 |
+
#: wp-statistics/wp-statistics.php:527
|
1425 |
msgid "Browsers"
|
1426 |
msgstr ""
|
1427 |
|
1494 |
#: wp-statistics/includes/log/exclusions.php:95
|
1495 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1496 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1497 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1498 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1499 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1500 |
msgid "days"
|
1509 |
msgstr ""
|
1510 |
|
1511 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1512 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1513 |
msgid "Hits in the last"
|
1514 |
msgstr ""
|
1515 |
|
1516 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1517 |
+
#: wp-statistics/includes/log/widgets/hits.php:65
|
1518 |
msgid "Number of visits and visitors"
|
1519 |
msgstr ""
|
1520 |
|
1521 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1522 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1523 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1524 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1525 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1526 |
msgid "Visit"
|
1528 |
|
1529 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1530 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1531 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1532 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1533 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1534 |
msgid "Visitor"
|
1731 |
msgid "Other"
|
1732 |
msgstr ""
|
1733 |
|
1734 |
+
#: wp-statistics/wp-statistics.php:456
|
1735 |
msgid "Today Visitors Map"
|
1736 |
msgstr ""
|
1737 |
|
1786 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1787 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1788 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1789 |
+
#: wp-statistics/wp-statistics.php:530
|
1790 |
msgid "Hits"
|
1791 |
msgstr ""
|
1792 |
|
1805 |
|
1806 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1807 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1808 |
+
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:297
|
1809 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1810 |
msgid "Access denied!"
|
1811 |
msgstr ""
|
1861 |
|
1862 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1863 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1864 |
+
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:528
|
1865 |
msgid "Countries"
|
1866 |
msgstr ""
|
1867 |
|
1946 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1947 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1948 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1949 |
+
#: wp-statistics/wp-statistics.php:537
|
1950 |
msgid "Visitors"
|
1951 |
msgstr ""
|
1952 |
|
2448 |
#: wp-statistics/includes/log/exclusions.php:197
|
2449 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2450 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2451 |
+
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:529
|
2452 |
msgid "Exclusions"
|
2453 |
msgstr ""
|
2454 |
|
2658 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2659 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2660 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2661 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:74
|
2662 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:86
|
2663 |
msgid "Active"
|
2664 |
msgstr ""
|
2665 |
|
languages/wp_statistics-de_DE.mo
CHANGED
Binary file
|
languages/wp_statistics-de_DE.po
CHANGED
@@ -7,10 +7,11 @@ msgstr ""
|
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
-
"X-Generator: GlotPress/1.0
|
|
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#: wp-statistics/ajax.php:
|
14 |
msgid "No matching widget found!"
|
15 |
msgstr ""
|
16 |
|
@@ -46,22 +47,22 @@ msgstr ""
|
|
46 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: wp-statistics/ajax.php:
|
50 |
msgid "ERROR: Widget not found!"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: wp-statistics/dashboard.php:
|
54 |
#: wp-statistics/includes/log/log.php:20
|
55 |
msgid "Loading..."
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: wp-statistics/dashboard.php:
|
59 |
#: wp-statistics/includes/log/log.php:2
|
60 |
msgid "Reloading..."
|
61 |
msgstr ""
|
62 |
|
63 |
#: wp-statistics/includes/log/top-visitors.php:41
|
64 |
-
#: wp-statistics/wp-statistics.php:
|
65 |
msgid "Top Visitors"
|
66 |
msgstr ""
|
67 |
|
@@ -158,7 +159,7 @@ msgstr "Aufrufe-Tracking"
|
|
158 |
msgid "online user tracking"
|
159 |
msgstr "Online-User-Tracking"
|
160 |
|
161 |
-
#: wp-statistics/wp-statistics.php:
|
162 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
163 |
msgstr "Die folgenden Plugin-Tabellen existieren nicht in der Datenbank. Bitte führe die %s-Installationsroutine erneut durch %s: "
|
164 |
|
@@ -622,7 +623,7 @@ msgstr "Koeffizient - ein Besucher zählt \"X\" Aufrufe. Aktuell: %s."
|
|
622 |
|
623 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
624 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
625 |
-
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:
|
626 |
msgid "Pages"
|
627 |
msgstr "Seitenaufrufe"
|
628 |
|
@@ -892,7 +893,7 @@ msgstr "Alle Shortcodes deiner WordPress-Installation und die eigenen Shortcodes
|
|
892 |
|
893 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
894 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
895 |
-
#: wp-statistics/wp-statistics.php:
|
896 |
msgid "User Online"
|
897 |
msgstr "Besucher aktuell"
|
898 |
|
@@ -964,40 +965,23 @@ msgstr "Editor-Widget deaktivieren"
|
|
964 |
msgid "Disable the page/post editor widget."
|
965 |
msgstr "Feature aktivieren oder deaktivieren"
|
966 |
|
967 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
968 |
-
msgid "Map type"
|
969 |
-
msgstr "Karten-Typ"
|
970 |
-
|
971 |
#: wp-statistics/includes/functions/functions.php:440
|
972 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
973 |
msgid "Google"
|
974 |
msgstr "Google"
|
975 |
|
976 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
977 |
-
msgid "JQVMap"
|
978 |
-
msgstr "JQVMap"
|
979 |
-
|
980 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:82
|
981 |
-
msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
|
982 |
-
msgstr "\"Google\" verwendet das externe Karten-Service von Google, um die letzten Besucher anzuzeigen. Diese Option benötigt eine Verbindung zum Google Karten-Service."
|
983 |
-
|
984 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:83
|
985 |
-
msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
|
986 |
-
msgstr "\"JQVMap\" verwendet die zugehörige Javascript Karten-Bibliothek, um die letzten Besucher anzuzeigen und benötigt keine externen Services."
|
987 |
-
|
988 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:89
|
989 |
msgid "Disable map"
|
990 |
msgstr "Karte deaktivieren"
|
991 |
|
992 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
993 |
msgid "Disable the map display"
|
994 |
msgstr "Anzeige der Weltkarte auf der Statistik-Übersicht deaktiveren."
|
995 |
|
996 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
997 |
msgid "Get country location from Google"
|
998 |
msgstr "Länderinformation von Google abfragen"
|
999 |
|
1000 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1001 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
1002 |
msgstr "Diese Option kann Leistungseinbußen bei der Anzeige der Statistiken zur Folge haben und ist nur gültig, wenn der Karten-Typ auf \"Google\" gesetzt ist."
|
1003 |
|
@@ -1051,7 +1035,7 @@ msgstr "Deinstallation"
|
|
1051 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1052 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1053 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1054 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1055 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1056 |
msgid "Update"
|
1057 |
msgstr "Einstellungen speichern"
|
@@ -1069,7 +1053,7 @@ msgid "Once Every 4 Weeks"
|
|
1069 |
msgstr "Alle vier Wochen"
|
1070 |
|
1071 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1072 |
-
#: wp-statistics/wp-statistics.php:
|
1073 |
msgid "Statistics"
|
1074 |
msgstr "Statistik"
|
1075 |
|
@@ -1142,7 +1126,7 @@ msgstr "Name"
|
|
1142 |
msgid "Items"
|
1143 |
msgstr "Elemente"
|
1144 |
|
1145 |
-
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:
|
1146 |
msgid "Yesterday visit"
|
1147 |
msgstr "Aufrufe gestern"
|
1148 |
|
@@ -1167,7 +1151,7 @@ msgid "Complete statistics for your WordPress site."
|
|
1167 |
msgstr "Umfangreiche Statistik für WordPress."
|
1168 |
|
1169 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1170 |
-
#: wp-statistics/wp-statistics.php:
|
1171 |
msgid "Settings"
|
1172 |
msgstr "Einstellungen"
|
1173 |
|
@@ -1191,78 +1175,78 @@ msgstr "Bewerte das Plugin"
|
|
1191 |
msgid "WP Statistics - Hits"
|
1192 |
msgstr "WP Statistics - Aufrufe bisher"
|
1193 |
|
1194 |
-
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:
|
1195 |
-
#: wp-statistics/wp-statistics.php:
|
1196 |
msgid "Overview"
|
1197 |
msgstr "Übersicht"
|
1198 |
|
1199 |
-
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:
|
1200 |
msgid "Online"
|
1201 |
msgstr "Zurzeit online"
|
1202 |
|
1203 |
-
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:
|
1204 |
msgid "Referrers"
|
1205 |
msgstr "Verw. Websites"
|
1206 |
|
1207 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1208 |
-
#: wp-statistics/wp-statistics.php:
|
1209 |
msgid "Searches"
|
1210 |
msgstr "Suchmaschinen"
|
1211 |
|
1212 |
-
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:
|
1213 |
msgid "Search Words"
|
1214 |
msgstr "Suchbegriffe"
|
1215 |
|
1216 |
-
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:
|
1217 |
msgid "Top Visitors Today"
|
1218 |
msgstr "Top 100 Besucher"
|
1219 |
|
1220 |
-
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:
|
1221 |
msgid "Optimization"
|
1222 |
msgstr "Optimierung"
|
1223 |
|
1224 |
-
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:
|
1225 |
msgid "Manual"
|
1226 |
msgstr "Benutzerhandbuch"
|
1227 |
|
1228 |
-
#: wp-statistics/wp-statistics.php:
|
1229 |
msgid "Site"
|
1230 |
msgstr "Website"
|
1231 |
|
1232 |
-
#: wp-statistics/wp-statistics.php:
|
1233 |
msgid "Options"
|
1234 |
msgstr "Optionen"
|
1235 |
|
1236 |
-
#: wp-statistics/wp-statistics.php:
|
1237 |
msgid "Today visitor"
|
1238 |
msgstr "Besucher heute"
|
1239 |
|
1240 |
-
#: wp-statistics/wp-statistics.php:
|
1241 |
msgid "Today visit"
|
1242 |
msgstr "Aufrufe heute"
|
1243 |
|
1244 |
-
#: wp-statistics/wp-statistics.php:
|
1245 |
msgid "Yesterday visitor"
|
1246 |
msgstr "Besucher gestern"
|
1247 |
|
1248 |
-
#: wp-statistics/wp-statistics.php:
|
1249 |
msgid "View Stats"
|
1250 |
msgstr "Statistiken"
|
1251 |
|
1252 |
-
#: wp-statistics/wp-statistics.php:
|
1253 |
msgid "Download ODF file"
|
1254 |
msgstr "ODF-Datei herunterladen"
|
1255 |
|
1256 |
-
#: wp-statistics/wp-statistics.php:
|
1257 |
msgid "Download HTML file"
|
1258 |
msgstr "HTML-Datei herunterladen"
|
1259 |
|
1260 |
-
#: wp-statistics/wp-statistics.php:
|
1261 |
msgid "Manual file not found."
|
1262 |
msgstr "Benutzerdokumentation nicht gefunden."
|
1263 |
|
1264 |
-
#: wp-statistics/wp-statistics.php:
|
1265 |
-
#: wp-statistics/wp-statistics.php:
|
1266 |
msgid "You do not have sufficient permissions to access this page."
|
1267 |
msgstr "Du hast keine Zugriffsrechte, um diese Seite zu sehen."
|
1268 |
|
@@ -1323,7 +1307,7 @@ msgstr "Kurzstatistik"
|
|
1323 |
msgid "Top 10 Browsers"
|
1324 |
msgstr "Top 10 Browser"
|
1325 |
|
1326 |
-
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:
|
1327 |
msgid "Top 10 Countries"
|
1328 |
msgstr "Top 10 Länder"
|
1329 |
|
@@ -1337,36 +1321,36 @@ msgstr "Karte Besucher heute"
|
|
1337 |
msgid "Hit Statistics"
|
1338 |
msgstr "Website-Aufrufe"
|
1339 |
|
1340 |
-
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:
|
1341 |
msgid "Top 10 Pages"
|
1342 |
msgstr "Top 10 Seiten"
|
1343 |
|
1344 |
#: wp-statistics/dashboard.php:62
|
1345 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1346 |
-
#: wp-statistics/wp-statistics.php:
|
1347 |
msgid "Recent Visitors"
|
1348 |
msgstr "Letzte Besucher"
|
1349 |
|
1350 |
#: wp-statistics/dashboard.php:63
|
1351 |
#: wp-statistics/includes/log/top-referring.php:59
|
1352 |
#: wp-statistics/includes/log/top-referring.php:81
|
1353 |
-
#: wp-statistics/wp-statistics.php:
|
1354 |
msgid "Top Referring Sites"
|
1355 |
msgstr "Top verweisende Websites"
|
1356 |
|
1357 |
#: wp-statistics/dashboard.php:64
|
1358 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1359 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1360 |
-
#: wp-statistics/wp-statistics.php:
|
1361 |
msgid "Search Engine Referrals"
|
1362 |
msgstr "Suchmaschinen-Verweise"
|
1363 |
|
1364 |
-
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:
|
1365 |
msgid "Summary"
|
1366 |
msgstr "Zusammenfassung"
|
1367 |
|
1368 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1369 |
-
#: wp-statistics/wp-statistics.php:
|
1370 |
msgid "Latest Search Words"
|
1371 |
msgstr "Suchbegriffe"
|
1372 |
|
@@ -1436,8 +1420,8 @@ msgid "Click to toggle"
|
|
1436 |
msgstr "Klicken, um umzuschalten"
|
1437 |
|
1438 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1439 |
-
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:
|
1440 |
-
#: wp-statistics/wp-statistics.php:
|
1441 |
msgid "Browsers"
|
1442 |
msgstr "Browser"
|
1443 |
|
@@ -1510,7 +1494,7 @@ msgstr "Ausnahmen in den letzten"
|
|
1510 |
#: wp-statistics/includes/log/exclusions.php:95
|
1511 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1512 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1513 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1514 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1515 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1516 |
msgid "days"
|
@@ -1525,18 +1509,18 @@ msgid "Hits Statistics Chart"
|
|
1525 |
msgstr "Website-Aufrufe - Verlauf"
|
1526 |
|
1527 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1528 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1529 |
msgid "Hits in the last"
|
1530 |
msgstr "Aufrufe in den letzten"
|
1531 |
|
1532 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1533 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1534 |
msgid "Number of visits and visitors"
|
1535 |
msgstr "Anzahl der Aufrufe und Besucher"
|
1536 |
|
1537 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1538 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1539 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1540 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1541 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1542 |
msgid "Visit"
|
@@ -1544,7 +1528,7 @@ msgstr "Aufrufe"
|
|
1544 |
|
1545 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1546 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1547 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1548 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1549 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1550 |
msgid "Visitor"
|
@@ -1747,7 +1731,7 @@ msgstr "Dieses Plugin verwendet GeoLite2, zur Verfügung gestellt von MaxMind -
|
|
1747 |
msgid "Other"
|
1748 |
msgstr "Andere"
|
1749 |
|
1750 |
-
#: wp-statistics/wp-statistics.php:
|
1751 |
msgid "Today Visitors Map"
|
1752 |
msgstr "Herkunft Besucher heute"
|
1753 |
|
@@ -1802,7 +1786,7 @@ msgstr "Zeit: %s"
|
|
1802 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1803 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1804 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1805 |
-
#: wp-statistics/wp-statistics.php:
|
1806 |
msgid "Hits"
|
1807 |
msgstr "Website-Aufrufe"
|
1808 |
|
@@ -1821,7 +1805,7 @@ msgstr "Version"
|
|
1821 |
|
1822 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1823 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1824 |
-
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:
|
1825 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1826 |
msgid "Access denied!"
|
1827 |
msgstr "Zugriff verweigert."
|
@@ -1877,7 +1861,7 @@ msgstr "Datenbank-Index"
|
|
1877 |
|
1878 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1879 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1880 |
-
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:
|
1881 |
msgid "Countries"
|
1882 |
msgstr "Länder"
|
1883 |
|
@@ -1962,7 +1946,7 @@ msgstr "Hinweis: Da du Daten gerade erst gelöscht hast, musst du diese Seite ne
|
|
1962 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1963 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1964 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1965 |
-
#: wp-statistics/wp-statistics.php:
|
1966 |
msgid "Visitors"
|
1967 |
msgstr "Besucher"
|
1968 |
|
@@ -2464,7 +2448,7 @@ msgstr "Um mehr Freiheiten beim Verwalten von Rollen und Berechtigungen zu haben
|
|
2464 |
#: wp-statistics/includes/log/exclusions.php:197
|
2465 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2466 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2467 |
-
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:
|
2468 |
msgid "Exclusions"
|
2469 |
msgstr "Ausnahmen"
|
2470 |
|
@@ -2674,8 +2658,8 @@ msgstr "browscap.ini verwenden"
|
|
2674 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2675 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2676 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2677 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2678 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2679 |
msgid "Active"
|
2680 |
msgstr "Aktiv"
|
2681 |
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
+
"X-Generator: GlotPress/2.1.0\n"
|
11 |
+
"Language: de\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
14 |
+
#: wp-statistics/ajax.php:215
|
15 |
msgid "No matching widget found!"
|
16 |
msgstr ""
|
17 |
|
47 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: wp-statistics/ajax.php:294
|
51 |
msgid "ERROR: Widget not found!"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: wp-statistics/dashboard.php:107 wp-statistics/editor.php:66
|
55 |
#: wp-statistics/includes/log/log.php:20
|
56 |
msgid "Loading..."
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: wp-statistics/dashboard.php:125 wp-statistics/editor.php:84
|
60 |
#: wp-statistics/includes/log/log.php:2
|
61 |
msgid "Reloading..."
|
62 |
msgstr ""
|
63 |
|
64 |
#: wp-statistics/includes/log/top-visitors.php:41
|
65 |
+
#: wp-statistics/wp-statistics.php:450
|
66 |
msgid "Top Visitors"
|
67 |
msgstr ""
|
68 |
|
159 |
msgid "online user tracking"
|
160 |
msgstr "Online-User-Tracking"
|
161 |
|
162 |
+
#: wp-statistics/wp-statistics.php:791
|
163 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
164 |
msgstr "Die folgenden Plugin-Tabellen existieren nicht in der Datenbank. Bitte führe die %s-Installationsroutine erneut durch %s: "
|
165 |
|
623 |
|
624 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
625 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
626 |
+
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:532
|
627 |
msgid "Pages"
|
628 |
msgstr "Seitenaufrufe"
|
629 |
|
893 |
|
894 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
895 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
896 |
+
#: wp-statistics/wp-statistics.php:637
|
897 |
msgid "User Online"
|
898 |
msgstr "Besucher aktuell"
|
899 |
|
965 |
msgid "Disable the page/post editor widget."
|
966 |
msgstr "Feature aktivieren oder deaktivieren"
|
967 |
|
|
|
|
|
|
|
|
|
968 |
#: wp-statistics/includes/functions/functions.php:440
|
|
|
969 |
msgid "Google"
|
970 |
msgstr "Google"
|
971 |
|
972 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
973 |
msgid "Disable map"
|
974 |
msgstr "Karte deaktivieren"
|
975 |
|
976 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
977 |
msgid "Disable the map display"
|
978 |
msgstr "Anzeige der Weltkarte auf der Statistik-Übersicht deaktiveren."
|
979 |
|
980 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:81
|
981 |
msgid "Get country location from Google"
|
982 |
msgstr "Länderinformation von Google abfragen"
|
983 |
|
984 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:87
|
985 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
986 |
msgstr "Diese Option kann Leistungseinbußen bei der Anzeige der Statistiken zur Folge haben und ist nur gültig, wenn der Karten-Typ auf \"Google\" gesetzt ist."
|
987 |
|
1035 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1036 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1037 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1038 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:96
|
1039 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1040 |
msgid "Update"
|
1041 |
msgstr "Einstellungen speichern"
|
1053 |
msgstr "Alle vier Wochen"
|
1054 |
|
1055 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1056 |
+
#: wp-statistics/wp-statistics.php:485
|
1057 |
msgid "Statistics"
|
1058 |
msgstr "Statistik"
|
1059 |
|
1126 |
msgid "Items"
|
1127 |
msgstr "Elemente"
|
1128 |
|
1129 |
+
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:662
|
1130 |
msgid "Yesterday visit"
|
1131 |
msgstr "Aufrufe gestern"
|
1132 |
|
1151 |
msgstr "Umfangreiche Statistik für WordPress."
|
1152 |
|
1153 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1154 |
+
#: wp-statistics/wp-statistics.php:539
|
1155 |
msgid "Settings"
|
1156 |
msgstr "Einstellungen"
|
1157 |
|
1175 |
msgid "WP Statistics - Hits"
|
1176 |
msgstr "WP Statistics - Aufrufe bisher"
|
1177 |
|
1178 |
+
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:488
|
1179 |
+
#: wp-statistics/wp-statistics.php:526
|
1180 |
msgid "Overview"
|
1181 |
msgstr "Übersicht"
|
1182 |
|
1183 |
+
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:531
|
1184 |
msgid "Online"
|
1185 |
msgstr "Zurzeit online"
|
1186 |
|
1187 |
+
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:533
|
1188 |
msgid "Referrers"
|
1189 |
msgstr "Verw. Websites"
|
1190 |
|
1191 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1192 |
+
#: wp-statistics/wp-statistics.php:534
|
1193 |
msgid "Searches"
|
1194 |
msgstr "Suchmaschinen"
|
1195 |
|
1196 |
+
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:535
|
1197 |
msgid "Search Words"
|
1198 |
msgstr "Suchbegriffe"
|
1199 |
|
1200 |
+
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:536
|
1201 |
msgid "Top Visitors Today"
|
1202 |
msgstr "Top 100 Besucher"
|
1203 |
|
1204 |
+
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:538
|
1205 |
msgid "Optimization"
|
1206 |
msgstr "Optimierung"
|
1207 |
|
1208 |
+
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:502
|
1209 |
msgid "Manual"
|
1210 |
msgstr "Benutzerhandbuch"
|
1211 |
|
1212 |
+
#: wp-statistics/wp-statistics.php:517
|
1213 |
msgid "Site"
|
1214 |
msgstr "Website"
|
1215 |
|
1216 |
+
#: wp-statistics/wp-statistics.php:518
|
1217 |
msgid "Options"
|
1218 |
msgstr "Optionen"
|
1219 |
|
1220 |
+
#: wp-statistics/wp-statistics.php:644
|
1221 |
msgid "Today visitor"
|
1222 |
msgstr "Besucher heute"
|
1223 |
|
1224 |
+
#: wp-statistics/wp-statistics.php:650
|
1225 |
msgid "Today visit"
|
1226 |
msgstr "Aufrufe heute"
|
1227 |
|
1228 |
+
#: wp-statistics/wp-statistics.php:656
|
1229 |
msgid "Yesterday visitor"
|
1230 |
msgstr "Besucher gestern"
|
1231 |
|
1232 |
+
#: wp-statistics/wp-statistics.php:668
|
1233 |
msgid "View Stats"
|
1234 |
msgstr "Statistiken"
|
1235 |
|
1236 |
+
#: wp-statistics/wp-statistics.php:692
|
1237 |
msgid "Download ODF file"
|
1238 |
msgstr "ODF-Datei herunterladen"
|
1239 |
|
1240 |
+
#: wp-statistics/wp-statistics.php:693
|
1241 |
msgid "Download HTML file"
|
1242 |
msgstr "HTML-Datei herunterladen"
|
1243 |
|
1244 |
+
#: wp-statistics/wp-statistics.php:697
|
1245 |
msgid "Manual file not found."
|
1246 |
msgstr "Benutzerdokumentation nicht gefunden."
|
1247 |
|
1248 |
+
#: wp-statistics/wp-statistics.php:764 wp-statistics/wp-statistics.php:891
|
1249 |
+
#: wp-statistics/wp-statistics.php:926
|
1250 |
msgid "You do not have sufficient permissions to access this page."
|
1251 |
msgstr "Du hast keine Zugriffsrechte, um diese Seite zu sehen."
|
1252 |
|
1307 |
msgid "Top 10 Browsers"
|
1308 |
msgstr "Top 10 Browser"
|
1309 |
|
1310 |
+
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:471
|
1311 |
msgid "Top 10 Countries"
|
1312 |
msgstr "Top 10 Länder"
|
1313 |
|
1321 |
msgid "Hit Statistics"
|
1322 |
msgstr "Website-Aufrufe"
|
1323 |
|
1324 |
+
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:461
|
1325 |
msgid "Top 10 Pages"
|
1326 |
msgstr "Top 10 Seiten"
|
1327 |
|
1328 |
#: wp-statistics/dashboard.php:62
|
1329 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1330 |
+
#: wp-statistics/wp-statistics.php:453
|
1331 |
msgid "Recent Visitors"
|
1332 |
msgstr "Letzte Besucher"
|
1333 |
|
1334 |
#: wp-statistics/dashboard.php:63
|
1335 |
#: wp-statistics/includes/log/top-referring.php:59
|
1336 |
#: wp-statistics/includes/log/top-referring.php:81
|
1337 |
+
#: wp-statistics/wp-statistics.php:468
|
1338 |
msgid "Top Referring Sites"
|
1339 |
msgstr "Top verweisende Websites"
|
1340 |
|
1341 |
#: wp-statistics/dashboard.php:64
|
1342 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1343 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1344 |
+
#: wp-statistics/wp-statistics.php:451
|
1345 |
msgid "Search Engine Referrals"
|
1346 |
msgstr "Suchmaschinen-Verweise"
|
1347 |
|
1348 |
+
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:466
|
1349 |
msgid "Summary"
|
1350 |
msgstr "Zusammenfassung"
|
1351 |
|
1352 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1353 |
+
#: wp-statistics/wp-statistics.php:452
|
1354 |
msgid "Latest Search Words"
|
1355 |
msgstr "Suchbegriffe"
|
1356 |
|
1420 |
msgstr "Klicken, um umzuschalten"
|
1421 |
|
1422 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1423 |
+
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:467
|
1424 |
+
#: wp-statistics/wp-statistics.php:527
|
1425 |
msgid "Browsers"
|
1426 |
msgstr "Browser"
|
1427 |
|
1494 |
#: wp-statistics/includes/log/exclusions.php:95
|
1495 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1496 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1497 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1498 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1499 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1500 |
msgid "days"
|
1509 |
msgstr "Website-Aufrufe - Verlauf"
|
1510 |
|
1511 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1512 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1513 |
msgid "Hits in the last"
|
1514 |
msgstr "Aufrufe in den letzten"
|
1515 |
|
1516 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1517 |
+
#: wp-statistics/includes/log/widgets/hits.php:65
|
1518 |
msgid "Number of visits and visitors"
|
1519 |
msgstr "Anzahl der Aufrufe und Besucher"
|
1520 |
|
1521 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1522 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1523 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1524 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1525 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1526 |
msgid "Visit"
|
1528 |
|
1529 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1530 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1531 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1532 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1533 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1534 |
msgid "Visitor"
|
1731 |
msgid "Other"
|
1732 |
msgstr "Andere"
|
1733 |
|
1734 |
+
#: wp-statistics/wp-statistics.php:456
|
1735 |
msgid "Today Visitors Map"
|
1736 |
msgstr "Herkunft Besucher heute"
|
1737 |
|
1786 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1787 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1788 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1789 |
+
#: wp-statistics/wp-statistics.php:530
|
1790 |
msgid "Hits"
|
1791 |
msgstr "Website-Aufrufe"
|
1792 |
|
1805 |
|
1806 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1807 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1808 |
+
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:297
|
1809 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1810 |
msgid "Access denied!"
|
1811 |
msgstr "Zugriff verweigert."
|
1861 |
|
1862 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1863 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1864 |
+
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:528
|
1865 |
msgid "Countries"
|
1866 |
msgstr "Länder"
|
1867 |
|
1946 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1947 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1948 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1949 |
+
#: wp-statistics/wp-statistics.php:537
|
1950 |
msgid "Visitors"
|
1951 |
msgstr "Besucher"
|
1952 |
|
2448 |
#: wp-statistics/includes/log/exclusions.php:197
|
2449 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2450 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2451 |
+
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:529
|
2452 |
msgid "Exclusions"
|
2453 |
msgstr "Ausnahmen"
|
2454 |
|
2658 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2659 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2660 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2661 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:74
|
2662 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:86
|
2663 |
msgid "Active"
|
2664 |
msgstr "Aktiv"
|
2665 |
|
languages/wp_statistics-eo.mo
CHANGED
Binary file
|
languages/wp_statistics-eo.po
CHANGED
@@ -7,10 +7,11 @@ msgstr ""
|
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
-
"X-Generator: GlotPress/1.0
|
|
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#: wp-statistics/ajax.php:
|
14 |
msgid "No matching widget found!"
|
15 |
msgstr ""
|
16 |
|
@@ -46,22 +47,22 @@ msgstr ""
|
|
46 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: wp-statistics/ajax.php:
|
50 |
msgid "ERROR: Widget not found!"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: wp-statistics/dashboard.php:
|
54 |
#: wp-statistics/includes/log/log.php:20
|
55 |
msgid "Loading..."
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: wp-statistics/dashboard.php:
|
59 |
#: wp-statistics/includes/log/log.php:2
|
60 |
msgid "Reloading..."
|
61 |
msgstr ""
|
62 |
|
63 |
#: wp-statistics/includes/log/top-visitors.php:41
|
64 |
-
#: wp-statistics/wp-statistics.php:
|
65 |
msgid "Top Visitors"
|
66 |
msgstr ""
|
67 |
|
@@ -158,7 +159,7 @@ msgstr ""
|
|
158 |
msgid "online user tracking"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: wp-statistics/wp-statistics.php:
|
162 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
163 |
msgstr ""
|
164 |
|
@@ -622,7 +623,7 @@ msgstr ""
|
|
622 |
|
623 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
624 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
625 |
-
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:
|
626 |
msgid "Pages"
|
627 |
msgstr ""
|
628 |
|
@@ -892,7 +893,7 @@ msgstr ""
|
|
892 |
|
893 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
894 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
895 |
-
#: wp-statistics/wp-statistics.php:
|
896 |
msgid "User Online"
|
897 |
msgstr ""
|
898 |
|
@@ -964,40 +965,23 @@ msgstr ""
|
|
964 |
msgid "Disable the page/post editor widget."
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
968 |
-
msgid "Map type"
|
969 |
-
msgstr ""
|
970 |
-
|
971 |
#: wp-statistics/includes/functions/functions.php:440
|
972 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
973 |
msgid "Google"
|
974 |
msgstr ""
|
975 |
|
976 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
977 |
-
msgid "JQVMap"
|
978 |
-
msgstr ""
|
979 |
-
|
980 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:82
|
981 |
-
msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
|
982 |
-
msgstr ""
|
983 |
-
|
984 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:83
|
985 |
-
msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
|
986 |
-
msgstr ""
|
987 |
-
|
988 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:89
|
989 |
msgid "Disable map"
|
990 |
msgstr ""
|
991 |
|
992 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
993 |
msgid "Disable the map display"
|
994 |
msgstr ""
|
995 |
|
996 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
997 |
msgid "Get country location from Google"
|
998 |
msgstr ""
|
999 |
|
1000 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1001 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
1002 |
msgstr ""
|
1003 |
|
@@ -1051,7 +1035,7 @@ msgstr ""
|
|
1051 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1052 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1053 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1054 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1055 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1056 |
msgid "Update"
|
1057 |
msgstr ""
|
@@ -1069,7 +1053,7 @@ msgid "Once Every 4 Weeks"
|
|
1069 |
msgstr ""
|
1070 |
|
1071 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1072 |
-
#: wp-statistics/wp-statistics.php:
|
1073 |
msgid "Statistics"
|
1074 |
msgstr ""
|
1075 |
|
@@ -1142,7 +1126,7 @@ msgstr ""
|
|
1142 |
msgid "Items"
|
1143 |
msgstr ""
|
1144 |
|
1145 |
-
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:
|
1146 |
msgid "Yesterday visit"
|
1147 |
msgstr ""
|
1148 |
|
@@ -1167,7 +1151,7 @@ msgid "Complete statistics for your WordPress site."
|
|
1167 |
msgstr ""
|
1168 |
|
1169 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1170 |
-
#: wp-statistics/wp-statistics.php:
|
1171 |
msgid "Settings"
|
1172 |
msgstr ""
|
1173 |
|
@@ -1191,78 +1175,78 @@ msgstr ""
|
|
1191 |
msgid "WP Statistics - Hits"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
-
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:
|
1195 |
-
#: wp-statistics/wp-statistics.php:
|
1196 |
msgid "Overview"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
-
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:
|
1200 |
msgid "Online"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:
|
1204 |
msgid "Referrers"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1208 |
-
#: wp-statistics/wp-statistics.php:
|
1209 |
msgid "Searches"
|
1210 |
msgstr ""
|
1211 |
|
1212 |
-
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:
|
1213 |
msgid "Search Words"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
-
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:
|
1217 |
msgid "Top Visitors Today"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
-
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:
|
1221 |
msgid "Optimization"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
-
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:
|
1225 |
msgid "Manual"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
-
#: wp-statistics/wp-statistics.php:
|
1229 |
msgid "Site"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
-
#: wp-statistics/wp-statistics.php:
|
1233 |
msgid "Options"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
-
#: wp-statistics/wp-statistics.php:
|
1237 |
msgid "Today visitor"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
-
#: wp-statistics/wp-statistics.php:
|
1241 |
msgid "Today visit"
|
1242 |
msgstr ""
|
1243 |
|
1244 |
-
#: wp-statistics/wp-statistics.php:
|
1245 |
msgid "Yesterday visitor"
|
1246 |
msgstr ""
|
1247 |
|
1248 |
-
#: wp-statistics/wp-statistics.php:
|
1249 |
msgid "View Stats"
|
1250 |
msgstr ""
|
1251 |
|
1252 |
-
#: wp-statistics/wp-statistics.php:
|
1253 |
msgid "Download ODF file"
|
1254 |
msgstr ""
|
1255 |
|
1256 |
-
#: wp-statistics/wp-statistics.php:
|
1257 |
msgid "Download HTML file"
|
1258 |
msgstr ""
|
1259 |
|
1260 |
-
#: wp-statistics/wp-statistics.php:
|
1261 |
msgid "Manual file not found."
|
1262 |
msgstr ""
|
1263 |
|
1264 |
-
#: wp-statistics/wp-statistics.php:
|
1265 |
-
#: wp-statistics/wp-statistics.php:
|
1266 |
msgid "You do not have sufficient permissions to access this page."
|
1267 |
msgstr ""
|
1268 |
|
@@ -1323,7 +1307,7 @@ msgstr ""
|
|
1323 |
msgid "Top 10 Browsers"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
-
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:
|
1327 |
msgid "Top 10 Countries"
|
1328 |
msgstr ""
|
1329 |
|
@@ -1337,36 +1321,36 @@ msgstr ""
|
|
1337 |
msgid "Hit Statistics"
|
1338 |
msgstr ""
|
1339 |
|
1340 |
-
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:
|
1341 |
msgid "Top 10 Pages"
|
1342 |
msgstr ""
|
1343 |
|
1344 |
#: wp-statistics/dashboard.php:62
|
1345 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1346 |
-
#: wp-statistics/wp-statistics.php:
|
1347 |
msgid "Recent Visitors"
|
1348 |
msgstr ""
|
1349 |
|
1350 |
#: wp-statistics/dashboard.php:63
|
1351 |
#: wp-statistics/includes/log/top-referring.php:59
|
1352 |
#: wp-statistics/includes/log/top-referring.php:81
|
1353 |
-
#: wp-statistics/wp-statistics.php:
|
1354 |
msgid "Top Referring Sites"
|
1355 |
msgstr ""
|
1356 |
|
1357 |
#: wp-statistics/dashboard.php:64
|
1358 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1359 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1360 |
-
#: wp-statistics/wp-statistics.php:
|
1361 |
msgid "Search Engine Referrals"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
-
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:
|
1365 |
msgid "Summary"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1369 |
-
#: wp-statistics/wp-statistics.php:
|
1370 |
msgid "Latest Search Words"
|
1371 |
msgstr ""
|
1372 |
|
@@ -1436,8 +1420,8 @@ msgid "Click to toggle"
|
|
1436 |
msgstr ""
|
1437 |
|
1438 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1439 |
-
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:
|
1440 |
-
#: wp-statistics/wp-statistics.php:
|
1441 |
msgid "Browsers"
|
1442 |
msgstr ""
|
1443 |
|
@@ -1510,7 +1494,7 @@ msgstr ""
|
|
1510 |
#: wp-statistics/includes/log/exclusions.php:95
|
1511 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1512 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1513 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1514 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1515 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1516 |
msgid "days"
|
@@ -1525,18 +1509,18 @@ msgid "Hits Statistics Chart"
|
|
1525 |
msgstr ""
|
1526 |
|
1527 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1528 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1529 |
msgid "Hits in the last"
|
1530 |
msgstr ""
|
1531 |
|
1532 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1533 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1534 |
msgid "Number of visits and visitors"
|
1535 |
msgstr ""
|
1536 |
|
1537 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1538 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1539 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1540 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1541 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1542 |
msgid "Visit"
|
@@ -1544,7 +1528,7 @@ msgstr ""
|
|
1544 |
|
1545 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1546 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1547 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1548 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1549 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1550 |
msgid "Visitor"
|
@@ -1747,7 +1731,7 @@ msgstr ""
|
|
1747 |
msgid "Other"
|
1748 |
msgstr ""
|
1749 |
|
1750 |
-
#: wp-statistics/wp-statistics.php:
|
1751 |
msgid "Today Visitors Map"
|
1752 |
msgstr ""
|
1753 |
|
@@ -1802,7 +1786,7 @@ msgstr ""
|
|
1802 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1803 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1804 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1805 |
-
#: wp-statistics/wp-statistics.php:
|
1806 |
msgid "Hits"
|
1807 |
msgstr ""
|
1808 |
|
@@ -1821,7 +1805,7 @@ msgstr ""
|
|
1821 |
|
1822 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1823 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1824 |
-
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:
|
1825 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1826 |
msgid "Access denied!"
|
1827 |
msgstr ""
|
@@ -1877,7 +1861,7 @@ msgstr ""
|
|
1877 |
|
1878 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1879 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1880 |
-
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:
|
1881 |
msgid "Countries"
|
1882 |
msgstr ""
|
1883 |
|
@@ -1962,7 +1946,7 @@ msgstr ""
|
|
1962 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1963 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1964 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1965 |
-
#: wp-statistics/wp-statistics.php:
|
1966 |
msgid "Visitors"
|
1967 |
msgstr ""
|
1968 |
|
@@ -2464,7 +2448,7 @@ msgstr ""
|
|
2464 |
#: wp-statistics/includes/log/exclusions.php:197
|
2465 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2466 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2467 |
-
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:
|
2468 |
msgid "Exclusions"
|
2469 |
msgstr ""
|
2470 |
|
@@ -2674,8 +2658,8 @@ msgstr ""
|
|
2674 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2675 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2676 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2677 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2678 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2679 |
msgid "Active"
|
2680 |
msgstr ""
|
2681 |
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
+
"X-Generator: GlotPress/2.1.0\n"
|
11 |
+
"Language: eo\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
14 |
+
#: wp-statistics/ajax.php:215
|
15 |
msgid "No matching widget found!"
|
16 |
msgstr ""
|
17 |
|
47 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: wp-statistics/ajax.php:294
|
51 |
msgid "ERROR: Widget not found!"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: wp-statistics/dashboard.php:107 wp-statistics/editor.php:66
|
55 |
#: wp-statistics/includes/log/log.php:20
|
56 |
msgid "Loading..."
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: wp-statistics/dashboard.php:125 wp-statistics/editor.php:84
|
60 |
#: wp-statistics/includes/log/log.php:2
|
61 |
msgid "Reloading..."
|
62 |
msgstr ""
|
63 |
|
64 |
#: wp-statistics/includes/log/top-visitors.php:41
|
65 |
+
#: wp-statistics/wp-statistics.php:450
|
66 |
msgid "Top Visitors"
|
67 |
msgstr ""
|
68 |
|
159 |
msgid "online user tracking"
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: wp-statistics/wp-statistics.php:791
|
163 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
164 |
msgstr ""
|
165 |
|
623 |
|
624 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
625 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
626 |
+
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:532
|
627 |
msgid "Pages"
|
628 |
msgstr ""
|
629 |
|
893 |
|
894 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
895 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
896 |
+
#: wp-statistics/wp-statistics.php:637
|
897 |
msgid "User Online"
|
898 |
msgstr ""
|
899 |
|
965 |
msgid "Disable the page/post editor widget."
|
966 |
msgstr ""
|
967 |
|
|
|
|
|
|
|
|
|
968 |
#: wp-statistics/includes/functions/functions.php:440
|
|
|
969 |
msgid "Google"
|
970 |
msgstr ""
|
971 |
|
972 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
973 |
msgid "Disable map"
|
974 |
msgstr ""
|
975 |
|
976 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
977 |
msgid "Disable the map display"
|
978 |
msgstr ""
|
979 |
|
980 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:81
|
981 |
msgid "Get country location from Google"
|
982 |
msgstr ""
|
983 |
|
984 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:87
|
985 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
986 |
msgstr ""
|
987 |
|
1035 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1036 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1037 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1038 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:96
|
1039 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1040 |
msgid "Update"
|
1041 |
msgstr ""
|
1053 |
msgstr ""
|
1054 |
|
1055 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1056 |
+
#: wp-statistics/wp-statistics.php:485
|
1057 |
msgid "Statistics"
|
1058 |
msgstr ""
|
1059 |
|
1126 |
msgid "Items"
|
1127 |
msgstr ""
|
1128 |
|
1129 |
+
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:662
|
1130 |
msgid "Yesterday visit"
|
1131 |
msgstr ""
|
1132 |
|
1151 |
msgstr ""
|
1152 |
|
1153 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1154 |
+
#: wp-statistics/wp-statistics.php:539
|
1155 |
msgid "Settings"
|
1156 |
msgstr ""
|
1157 |
|
1175 |
msgid "WP Statistics - Hits"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
+
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:488
|
1179 |
+
#: wp-statistics/wp-statistics.php:526
|
1180 |
msgid "Overview"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
+
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:531
|
1184 |
msgid "Online"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:533
|
1188 |
msgid "Referrers"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1192 |
+
#: wp-statistics/wp-statistics.php:534
|
1193 |
msgid "Searches"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
+
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:535
|
1197 |
msgid "Search Words"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
+
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:536
|
1201 |
msgid "Top Visitors Today"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
+
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:538
|
1205 |
msgid "Optimization"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
+
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:502
|
1209 |
msgid "Manual"
|
1210 |
msgstr ""
|
1211 |
|
1212 |
+
#: wp-statistics/wp-statistics.php:517
|
1213 |
msgid "Site"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
+
#: wp-statistics/wp-statistics.php:518
|
1217 |
msgid "Options"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
+
#: wp-statistics/wp-statistics.php:644
|
1221 |
msgid "Today visitor"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
+
#: wp-statistics/wp-statistics.php:650
|
1225 |
msgid "Today visit"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
+
#: wp-statistics/wp-statistics.php:656
|
1229 |
msgid "Yesterday visitor"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
+
#: wp-statistics/wp-statistics.php:668
|
1233 |
msgid "View Stats"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
+
#: wp-statistics/wp-statistics.php:692
|
1237 |
msgid "Download ODF file"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
+
#: wp-statistics/wp-statistics.php:693
|
1241 |
msgid "Download HTML file"
|
1242 |
msgstr ""
|
1243 |
|
1244 |
+
#: wp-statistics/wp-statistics.php:697
|
1245 |
msgid "Manual file not found."
|
1246 |
msgstr ""
|
1247 |
|
1248 |
+
#: wp-statistics/wp-statistics.php:764 wp-statistics/wp-statistics.php:891
|
1249 |
+
#: wp-statistics/wp-statistics.php:926
|
1250 |
msgid "You do not have sufficient permissions to access this page."
|
1251 |
msgstr ""
|
1252 |
|
1307 |
msgid "Top 10 Browsers"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
+
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:471
|
1311 |
msgid "Top 10 Countries"
|
1312 |
msgstr ""
|
1313 |
|
1321 |
msgid "Hit Statistics"
|
1322 |
msgstr ""
|
1323 |
|
1324 |
+
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:461
|
1325 |
msgid "Top 10 Pages"
|
1326 |
msgstr ""
|
1327 |
|
1328 |
#: wp-statistics/dashboard.php:62
|
1329 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1330 |
+
#: wp-statistics/wp-statistics.php:453
|
1331 |
msgid "Recent Visitors"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
#: wp-statistics/dashboard.php:63
|
1335 |
#: wp-statistics/includes/log/top-referring.php:59
|
1336 |
#: wp-statistics/includes/log/top-referring.php:81
|
1337 |
+
#: wp-statistics/wp-statistics.php:468
|
1338 |
msgid "Top Referring Sites"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
#: wp-statistics/dashboard.php:64
|
1342 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1343 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1344 |
+
#: wp-statistics/wp-statistics.php:451
|
1345 |
msgid "Search Engine Referrals"
|
1346 |
msgstr ""
|
1347 |
|
1348 |
+
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:466
|
1349 |
msgid "Summary"
|
1350 |
msgstr ""
|
1351 |
|
1352 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1353 |
+
#: wp-statistics/wp-statistics.php:452
|
1354 |
msgid "Latest Search Words"
|
1355 |
msgstr ""
|
1356 |
|
1420 |
msgstr ""
|
1421 |
|
1422 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1423 |
+
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:467
|
1424 |
+
#: wp-statistics/wp-statistics.php:527
|
1425 |
msgid "Browsers"
|
1426 |
msgstr ""
|
1427 |
|
1494 |
#: wp-statistics/includes/log/exclusions.php:95
|
1495 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1496 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1497 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1498 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1499 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1500 |
msgid "days"
|
1509 |
msgstr ""
|
1510 |
|
1511 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1512 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1513 |
msgid "Hits in the last"
|
1514 |
msgstr ""
|
1515 |
|
1516 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1517 |
+
#: wp-statistics/includes/log/widgets/hits.php:65
|
1518 |
msgid "Number of visits and visitors"
|
1519 |
msgstr ""
|
1520 |
|
1521 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1522 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1523 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1524 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1525 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1526 |
msgid "Visit"
|
1528 |
|
1529 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1530 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1531 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1532 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1533 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1534 |
msgid "Visitor"
|
1731 |
msgid "Other"
|
1732 |
msgstr ""
|
1733 |
|
1734 |
+
#: wp-statistics/wp-statistics.php:456
|
1735 |
msgid "Today Visitors Map"
|
1736 |
msgstr ""
|
1737 |
|
1786 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1787 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1788 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1789 |
+
#: wp-statistics/wp-statistics.php:530
|
1790 |
msgid "Hits"
|
1791 |
msgstr ""
|
1792 |
|
1805 |
|
1806 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1807 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1808 |
+
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:297
|
1809 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1810 |
msgid "Access denied!"
|
1811 |
msgstr ""
|
1861 |
|
1862 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1863 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1864 |
+
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:528
|
1865 |
msgid "Countries"
|
1866 |
msgstr ""
|
1867 |
|
1946 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1947 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1948 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1949 |
+
#: wp-statistics/wp-statistics.php:537
|
1950 |
msgid "Visitors"
|
1951 |
msgstr ""
|
1952 |
|
2448 |
#: wp-statistics/includes/log/exclusions.php:197
|
2449 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2450 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2451 |
+
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:529
|
2452 |
msgid "Exclusions"
|
2453 |
msgstr ""
|
2454 |
|
2658 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2659 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2660 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2661 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:74
|
2662 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:86
|
2663 |
msgid "Active"
|
2664 |
msgstr ""
|
2665 |
|
languages/wp_statistics-es_ES.mo
CHANGED
Binary file
|
languages/wp_statistics-es_ES.po
CHANGED
@@ -2,15 +2,16 @@
|
|
2 |
# This file is distributed under the same license as the WP Statistics package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"PO-Revision-Date:
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
-
"X-Generator: GlotPress/1.0
|
|
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#: wp-statistics/ajax.php:
|
14 |
msgid "No matching widget found!"
|
15 |
msgstr ""
|
16 |
|
@@ -46,22 +47,22 @@ msgstr ""
|
|
46 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: wp-statistics/ajax.php:
|
50 |
msgid "ERROR: Widget not found!"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: wp-statistics/dashboard.php:
|
54 |
#: wp-statistics/includes/log/log.php:20
|
55 |
msgid "Loading..."
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: wp-statistics/dashboard.php:
|
59 |
#: wp-statistics/includes/log/log.php:2
|
60 |
msgid "Reloading..."
|
61 |
msgstr ""
|
62 |
|
63 |
#: wp-statistics/includes/log/top-visitors.php:41
|
64 |
-
#: wp-statistics/wp-statistics.php:
|
65 |
msgid "Top Visitors"
|
66 |
msgstr ""
|
67 |
|
@@ -158,7 +159,7 @@ msgstr "seguimiento de accesos"
|
|
158 |
msgid "online user tracking"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: wp-statistics/wp-statistics.php:
|
162 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
163 |
msgstr ""
|
164 |
|
@@ -622,7 +623,7 @@ msgstr "Por cada visita para tener en cuenta varios golpes. Actualmente %s."
|
|
622 |
|
623 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
624 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
625 |
-
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:
|
626 |
msgid "Pages"
|
627 |
msgstr "Páginas"
|
628 |
|
@@ -892,7 +893,7 @@ msgstr ""
|
|
892 |
|
893 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
894 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
895 |
-
#: wp-statistics/wp-statistics.php:
|
896 |
msgid "User Online"
|
897 |
msgstr "Usuarios conectados"
|
898 |
|
@@ -914,7 +915,7 @@ msgstr "Ayer visitante"
|
|
914 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:192
|
915 |
#: wp-statistics/widget.php:59
|
916 |
msgid "Yesterday Visit"
|
917 |
-
msgstr "Ayer
|
918 |
|
919 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:193
|
920 |
#: wp-statistics/widget.php:101 wp-statistics/widget.php:274
|
@@ -964,40 +965,23 @@ msgstr ""
|
|
964 |
msgid "Disable the page/post editor widget."
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
968 |
-
msgid "Map type"
|
969 |
-
msgstr "Tipo de mapa"
|
970 |
-
|
971 |
#: wp-statistics/includes/functions/functions.php:440
|
972 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
973 |
msgid "Google"
|
974 |
msgstr "Google"
|
975 |
|
976 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
977 |
-
msgid "JQVMap"
|
978 |
-
msgstr "JQVMap"
|
979 |
-
|
980 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:82
|
981 |
-
msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
|
982 |
-
msgstr "La opción de \"Google\" usará el servicio de mapeo de Google para localizar los últimos visitantes (requiere acceso a Google)."
|
983 |
-
|
984 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:83
|
985 |
-
msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
|
986 |
-
msgstr "La opción \"JQVMap\" usará la biblioteca de mapeo javascript JQVMap para localizar los últimos visitantes (no requiere ningún servicio externo)."
|
987 |
-
|
988 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:89
|
989 |
msgid "Disable map"
|
990 |
msgstr "Desactivar el mapa"
|
991 |
|
992 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
993 |
msgid "Disable the map display"
|
994 |
msgstr "Desactivar la pantalla de mapa"
|
995 |
|
996 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
997 |
msgid "Get country location from Google"
|
998 |
msgstr "Obtener ubicación país de Google"
|
999 |
|
1000 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1001 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
1002 |
msgstr "Esta característica puede provocar una degradación del rendimiento al ver las estadísticas y sólo es válida si se establece el tipo de mapa en \"Google\"."
|
1003 |
|
@@ -1051,7 +1035,7 @@ msgstr ""
|
|
1051 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1052 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1053 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1054 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1055 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1056 |
msgid "Update"
|
1057 |
msgstr "Actualización"
|
@@ -1069,7 +1053,7 @@ msgid "Once Every 4 Weeks"
|
|
1069 |
msgstr "Una vez cada 4 semanas"
|
1070 |
|
1071 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1072 |
-
#: wp-statistics/wp-statistics.php:
|
1073 |
msgid "Statistics"
|
1074 |
msgstr "Estadísticas"
|
1075 |
|
@@ -1142,7 +1126,7 @@ msgstr "Nombre"
|
|
1142 |
msgid "Items"
|
1143 |
msgstr "Elementos"
|
1144 |
|
1145 |
-
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:
|
1146 |
msgid "Yesterday visit"
|
1147 |
msgstr "Visitas ayer"
|
1148 |
|
@@ -1167,7 +1151,7 @@ msgid "Complete statistics for your WordPress site."
|
|
1167 |
msgstr "Estadísticas completas para su sitio de WordPress."
|
1168 |
|
1169 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1170 |
-
#: wp-statistics/wp-statistics.php:
|
1171 |
msgid "Settings"
|
1172 |
msgstr "Configuración"
|
1173 |
|
@@ -1191,78 +1175,78 @@ msgstr "Tasa de este plugin"
|
|
1191 |
msgid "WP Statistics - Hits"
|
1192 |
msgstr "Estadísticas de WP - Hitos"
|
1193 |
|
1194 |
-
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:
|
1195 |
-
#: wp-statistics/wp-statistics.php:
|
1196 |
msgid "Overview"
|
1197 |
msgstr "Resumen"
|
1198 |
|
1199 |
-
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:
|
1200 |
msgid "Online"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:
|
1204 |
msgid "Referrers"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1208 |
-
#: wp-statistics/wp-statistics.php:
|
1209 |
msgid "Searches"
|
1210 |
msgstr "Búsquedas"
|
1211 |
|
1212 |
-
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:
|
1213 |
msgid "Search Words"
|
1214 |
msgstr "Palabras de búsqueda"
|
1215 |
|
1216 |
-
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:
|
1217 |
msgid "Top Visitors Today"
|
1218 |
msgstr "Lista de visitantes de hoy"
|
1219 |
|
1220 |
-
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:
|
1221 |
msgid "Optimization"
|
1222 |
msgstr "Optimización"
|
1223 |
|
1224 |
-
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:
|
1225 |
msgid "Manual"
|
1226 |
msgstr "Manual"
|
1227 |
|
1228 |
-
#: wp-statistics/wp-statistics.php:
|
1229 |
msgid "Site"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
-
#: wp-statistics/wp-statistics.php:
|
1233 |
msgid "Options"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
-
#: wp-statistics/wp-statistics.php:
|
1237 |
msgid "Today visitor"
|
1238 |
msgstr "Visitante de hoy"
|
1239 |
|
1240 |
-
#: wp-statistics/wp-statistics.php:
|
1241 |
msgid "Today visit"
|
1242 |
msgstr "Visite hoy"
|
1243 |
|
1244 |
-
#: wp-statistics/wp-statistics.php:
|
1245 |
msgid "Yesterday visitor"
|
1246 |
msgstr "Ayer visitante"
|
1247 |
|
1248 |
-
#: wp-statistics/wp-statistics.php:
|
1249 |
msgid "View Stats"
|
1250 |
msgstr "Ver estadísticas"
|
1251 |
|
1252 |
-
#: wp-statistics/wp-statistics.php:
|
1253 |
msgid "Download ODF file"
|
1254 |
msgstr "Descargar archivo ODF"
|
1255 |
|
1256 |
-
#: wp-statistics/wp-statistics.php:
|
1257 |
msgid "Download HTML file"
|
1258 |
msgstr "Descargar archivo HTML"
|
1259 |
|
1260 |
-
#: wp-statistics/wp-statistics.php:
|
1261 |
msgid "Manual file not found."
|
1262 |
msgstr "Manual archivo no encontrado."
|
1263 |
|
1264 |
-
#: wp-statistics/wp-statistics.php:
|
1265 |
-
#: wp-statistics/wp-statistics.php:
|
1266 |
msgid "You do not have sufficient permissions to access this page."
|
1267 |
msgstr "No tienes permisos suficientes para acceder a esta página."
|
1268 |
|
@@ -1323,7 +1307,7 @@ msgstr ""
|
|
1323 |
msgid "Top 10 Browsers"
|
1324 |
msgstr "10 mejores navegadores"
|
1325 |
|
1326 |
-
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:
|
1327 |
msgid "Top 10 Countries"
|
1328 |
msgstr "Top 10 países"
|
1329 |
|
@@ -1337,36 +1321,36 @@ msgstr ""
|
|
1337 |
msgid "Hit Statistics"
|
1338 |
msgstr "Estadística de hitos"
|
1339 |
|
1340 |
-
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:
|
1341 |
msgid "Top 10 Pages"
|
1342 |
msgstr "Top 10 páginas"
|
1343 |
|
1344 |
#: wp-statistics/dashboard.php:62
|
1345 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1346 |
-
#: wp-statistics/wp-statistics.php:
|
1347 |
msgid "Recent Visitors"
|
1348 |
msgstr "Visitantes recientes"
|
1349 |
|
1350 |
#: wp-statistics/dashboard.php:63
|
1351 |
#: wp-statistics/includes/log/top-referring.php:59
|
1352 |
#: wp-statistics/includes/log/top-referring.php:81
|
1353 |
-
#: wp-statistics/wp-statistics.php:
|
1354 |
msgid "Top Referring Sites"
|
1355 |
msgstr "Principales sitios de referencia"
|
1356 |
|
1357 |
#: wp-statistics/dashboard.php:64
|
1358 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1359 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1360 |
-
#: wp-statistics/wp-statistics.php:
|
1361 |
msgid "Search Engine Referrals"
|
1362 |
msgstr "Referencias por motores de búsqueda"
|
1363 |
|
1364 |
-
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:
|
1365 |
msgid "Summary"
|
1366 |
msgstr "Resumen"
|
1367 |
|
1368 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1369 |
-
#: wp-statistics/wp-statistics.php:
|
1370 |
msgid "Latest Search Words"
|
1371 |
msgstr "Las últimas palabras de búsqueda"
|
1372 |
|
@@ -1436,8 +1420,8 @@ msgid "Click to toggle"
|
|
1436 |
msgstr "Haga clic para alternar"
|
1437 |
|
1438 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1439 |
-
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:
|
1440 |
-
#: wp-statistics/wp-statistics.php:
|
1441 |
msgid "Browsers"
|
1442 |
msgstr "Navegadores"
|
1443 |
|
@@ -1510,7 +1494,7 @@ msgstr "Excluir accesos en los últimos"
|
|
1510 |
#: wp-statistics/includes/log/exclusions.php:95
|
1511 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1512 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1513 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1514 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1515 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1516 |
msgid "days"
|
@@ -1525,18 +1509,18 @@ msgid "Hits Statistics Chart"
|
|
1525 |
msgstr "Tabla de estadísticas Hits"
|
1526 |
|
1527 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1528 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1529 |
msgid "Hits in the last"
|
1530 |
msgstr "Golpes en los últimos"
|
1531 |
|
1532 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1533 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1534 |
msgid "Number of visits and visitors"
|
1535 |
msgstr "Número de visitas y visitantes"
|
1536 |
|
1537 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1538 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1539 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1540 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1541 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1542 |
msgid "Visit"
|
@@ -1544,7 +1528,7 @@ msgstr "Visita"
|
|
1544 |
|
1545 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1546 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1547 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1548 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1549 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1550 |
msgid "Visitor"
|
@@ -1747,7 +1731,7 @@ msgstr "Este producto incluye datos GeoLite2 creados por MaxMind, disponible des
|
|
1747 |
msgid "Other"
|
1748 |
msgstr "Otros"
|
1749 |
|
1750 |
-
#: wp-statistics/wp-statistics.php:
|
1751 |
msgid "Today Visitors Map"
|
1752 |
msgstr "Mapa de visitantes diarios"
|
1753 |
|
@@ -1802,7 +1786,7 @@ msgstr "Tiempo: %s"
|
|
1802 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1803 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1804 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1805 |
-
#: wp-statistics/wp-statistics.php:
|
1806 |
msgid "Hits"
|
1807 |
msgstr "Hitos"
|
1808 |
|
@@ -1821,7 +1805,7 @@ msgstr ""
|
|
1821 |
|
1822 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1823 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1824 |
-
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:
|
1825 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1826 |
msgid "Access denied!"
|
1827 |
msgstr "Acceso denegado!"
|
@@ -1877,7 +1861,7 @@ msgstr "Índice de base de datos"
|
|
1877 |
|
1878 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1879 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1880 |
-
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:
|
1881 |
msgid "Countries"
|
1882 |
msgstr "Países"
|
1883 |
|
@@ -1962,7 +1946,7 @@ msgstr ""
|
|
1962 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1963 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1964 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1965 |
-
#: wp-statistics/wp-statistics.php:
|
1966 |
msgid "Visitors"
|
1967 |
msgstr "Visitantes"
|
1968 |
|
@@ -2464,7 +2448,7 @@ msgstr "Si usted necesita una solución más robusta para delegar el acceso que
|
|
2464 |
#: wp-statistics/includes/log/exclusions.php:197
|
2465 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2466 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2467 |
-
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:
|
2468 |
msgid "Exclusions"
|
2469 |
msgstr "Exclusiones"
|
2470 |
|
@@ -2674,8 +2658,8 @@ msgstr "uso Browscap"
|
|
2674 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2675 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2676 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2677 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2678 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2679 |
msgid "Active"
|
2680 |
msgstr "Activo"
|
2681 |
|
2 |
# This file is distributed under the same license as the WP Statistics package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2016-07-11 13:14:02+0000\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
+
"X-Generator: GlotPress/2.1.0\n"
|
11 |
+
"Language: es\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
14 |
+
#: wp-statistics/ajax.php:215
|
15 |
msgid "No matching widget found!"
|
16 |
msgstr ""
|
17 |
|
47 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: wp-statistics/ajax.php:294
|
51 |
msgid "ERROR: Widget not found!"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: wp-statistics/dashboard.php:107 wp-statistics/editor.php:66
|
55 |
#: wp-statistics/includes/log/log.php:20
|
56 |
msgid "Loading..."
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: wp-statistics/dashboard.php:125 wp-statistics/editor.php:84
|
60 |
#: wp-statistics/includes/log/log.php:2
|
61 |
msgid "Reloading..."
|
62 |
msgstr ""
|
63 |
|
64 |
#: wp-statistics/includes/log/top-visitors.php:41
|
65 |
+
#: wp-statistics/wp-statistics.php:450
|
66 |
msgid "Top Visitors"
|
67 |
msgstr ""
|
68 |
|
159 |
msgid "online user tracking"
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: wp-statistics/wp-statistics.php:791
|
163 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
164 |
msgstr ""
|
165 |
|
623 |
|
624 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
625 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
626 |
+
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:532
|
627 |
msgid "Pages"
|
628 |
msgstr "Páginas"
|
629 |
|
893 |
|
894 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
895 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
896 |
+
#: wp-statistics/wp-statistics.php:637
|
897 |
msgid "User Online"
|
898 |
msgstr "Usuarios conectados"
|
899 |
|
915 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:192
|
916 |
#: wp-statistics/widget.php:59
|
917 |
msgid "Yesterday Visit"
|
918 |
+
msgstr "Visitas Ayer"
|
919 |
|
920 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:193
|
921 |
#: wp-statistics/widget.php:101 wp-statistics/widget.php:274
|
965 |
msgid "Disable the page/post editor widget."
|
966 |
msgstr ""
|
967 |
|
|
|
|
|
|
|
|
|
968 |
#: wp-statistics/includes/functions/functions.php:440
|
|
|
969 |
msgid "Google"
|
970 |
msgstr "Google"
|
971 |
|
972 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
973 |
msgid "Disable map"
|
974 |
msgstr "Desactivar el mapa"
|
975 |
|
976 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
977 |
msgid "Disable the map display"
|
978 |
msgstr "Desactivar la pantalla de mapa"
|
979 |
|
980 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:81
|
981 |
msgid "Get country location from Google"
|
982 |
msgstr "Obtener ubicación país de Google"
|
983 |
|
984 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:87
|
985 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
986 |
msgstr "Esta característica puede provocar una degradación del rendimiento al ver las estadísticas y sólo es válida si se establece el tipo de mapa en \"Google\"."
|
987 |
|
1035 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1036 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1037 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1038 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:96
|
1039 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1040 |
msgid "Update"
|
1041 |
msgstr "Actualización"
|
1053 |
msgstr "Una vez cada 4 semanas"
|
1054 |
|
1055 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1056 |
+
#: wp-statistics/wp-statistics.php:485
|
1057 |
msgid "Statistics"
|
1058 |
msgstr "Estadísticas"
|
1059 |
|
1126 |
msgid "Items"
|
1127 |
msgstr "Elementos"
|
1128 |
|
1129 |
+
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:662
|
1130 |
msgid "Yesterday visit"
|
1131 |
msgstr "Visitas ayer"
|
1132 |
|
1151 |
msgstr "Estadísticas completas para su sitio de WordPress."
|
1152 |
|
1153 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1154 |
+
#: wp-statistics/wp-statistics.php:539
|
1155 |
msgid "Settings"
|
1156 |
msgstr "Configuración"
|
1157 |
|
1175 |
msgid "WP Statistics - Hits"
|
1176 |
msgstr "Estadísticas de WP - Hitos"
|
1177 |
|
1178 |
+
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:488
|
1179 |
+
#: wp-statistics/wp-statistics.php:526
|
1180 |
msgid "Overview"
|
1181 |
msgstr "Resumen"
|
1182 |
|
1183 |
+
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:531
|
1184 |
msgid "Online"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:533
|
1188 |
msgid "Referrers"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1192 |
+
#: wp-statistics/wp-statistics.php:534
|
1193 |
msgid "Searches"
|
1194 |
msgstr "Búsquedas"
|
1195 |
|
1196 |
+
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:535
|
1197 |
msgid "Search Words"
|
1198 |
msgstr "Palabras de búsqueda"
|
1199 |
|
1200 |
+
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:536
|
1201 |
msgid "Top Visitors Today"
|
1202 |
msgstr "Lista de visitantes de hoy"
|
1203 |
|
1204 |
+
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:538
|
1205 |
msgid "Optimization"
|
1206 |
msgstr "Optimización"
|
1207 |
|
1208 |
+
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:502
|
1209 |
msgid "Manual"
|
1210 |
msgstr "Manual"
|
1211 |
|
1212 |
+
#: wp-statistics/wp-statistics.php:517
|
1213 |
msgid "Site"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
+
#: wp-statistics/wp-statistics.php:518
|
1217 |
msgid "Options"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
+
#: wp-statistics/wp-statistics.php:644
|
1221 |
msgid "Today visitor"
|
1222 |
msgstr "Visitante de hoy"
|
1223 |
|
1224 |
+
#: wp-statistics/wp-statistics.php:650
|
1225 |
msgid "Today visit"
|
1226 |
msgstr "Visite hoy"
|
1227 |
|
1228 |
+
#: wp-statistics/wp-statistics.php:656
|
1229 |
msgid "Yesterday visitor"
|
1230 |
msgstr "Ayer visitante"
|
1231 |
|
1232 |
+
#: wp-statistics/wp-statistics.php:668
|
1233 |
msgid "View Stats"
|
1234 |
msgstr "Ver estadísticas"
|
1235 |
|
1236 |
+
#: wp-statistics/wp-statistics.php:692
|
1237 |
msgid "Download ODF file"
|
1238 |
msgstr "Descargar archivo ODF"
|
1239 |
|
1240 |
+
#: wp-statistics/wp-statistics.php:693
|
1241 |
msgid "Download HTML file"
|
1242 |
msgstr "Descargar archivo HTML"
|
1243 |
|
1244 |
+
#: wp-statistics/wp-statistics.php:697
|
1245 |
msgid "Manual file not found."
|
1246 |
msgstr "Manual archivo no encontrado."
|
1247 |
|
1248 |
+
#: wp-statistics/wp-statistics.php:764 wp-statistics/wp-statistics.php:891
|
1249 |
+
#: wp-statistics/wp-statistics.php:926
|
1250 |
msgid "You do not have sufficient permissions to access this page."
|
1251 |
msgstr "No tienes permisos suficientes para acceder a esta página."
|
1252 |
|
1307 |
msgid "Top 10 Browsers"
|
1308 |
msgstr "10 mejores navegadores"
|
1309 |
|
1310 |
+
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:471
|
1311 |
msgid "Top 10 Countries"
|
1312 |
msgstr "Top 10 países"
|
1313 |
|
1321 |
msgid "Hit Statistics"
|
1322 |
msgstr "Estadística de hitos"
|
1323 |
|
1324 |
+
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:461
|
1325 |
msgid "Top 10 Pages"
|
1326 |
msgstr "Top 10 páginas"
|
1327 |
|
1328 |
#: wp-statistics/dashboard.php:62
|
1329 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1330 |
+
#: wp-statistics/wp-statistics.php:453
|
1331 |
msgid "Recent Visitors"
|
1332 |
msgstr "Visitantes recientes"
|
1333 |
|
1334 |
#: wp-statistics/dashboard.php:63
|
1335 |
#: wp-statistics/includes/log/top-referring.php:59
|
1336 |
#: wp-statistics/includes/log/top-referring.php:81
|
1337 |
+
#: wp-statistics/wp-statistics.php:468
|
1338 |
msgid "Top Referring Sites"
|
1339 |
msgstr "Principales sitios de referencia"
|
1340 |
|
1341 |
#: wp-statistics/dashboard.php:64
|
1342 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1343 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1344 |
+
#: wp-statistics/wp-statistics.php:451
|
1345 |
msgid "Search Engine Referrals"
|
1346 |
msgstr "Referencias por motores de búsqueda"
|
1347 |
|
1348 |
+
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:466
|
1349 |
msgid "Summary"
|
1350 |
msgstr "Resumen"
|
1351 |
|
1352 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1353 |
+
#: wp-statistics/wp-statistics.php:452
|
1354 |
msgid "Latest Search Words"
|
1355 |
msgstr "Las últimas palabras de búsqueda"
|
1356 |
|
1420 |
msgstr "Haga clic para alternar"
|
1421 |
|
1422 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1423 |
+
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:467
|
1424 |
+
#: wp-statistics/wp-statistics.php:527
|
1425 |
msgid "Browsers"
|
1426 |
msgstr "Navegadores"
|
1427 |
|
1494 |
#: wp-statistics/includes/log/exclusions.php:95
|
1495 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1496 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1497 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1498 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1499 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1500 |
msgid "days"
|
1509 |
msgstr "Tabla de estadísticas Hits"
|
1510 |
|
1511 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1512 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1513 |
msgid "Hits in the last"
|
1514 |
msgstr "Golpes en los últimos"
|
1515 |
|
1516 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1517 |
+
#: wp-statistics/includes/log/widgets/hits.php:65
|
1518 |
msgid "Number of visits and visitors"
|
1519 |
msgstr "Número de visitas y visitantes"
|
1520 |
|
1521 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1522 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1523 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1524 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1525 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1526 |
msgid "Visit"
|
1528 |
|
1529 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1530 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1531 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1532 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1533 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1534 |
msgid "Visitor"
|
1731 |
msgid "Other"
|
1732 |
msgstr "Otros"
|
1733 |
|
1734 |
+
#: wp-statistics/wp-statistics.php:456
|
1735 |
msgid "Today Visitors Map"
|
1736 |
msgstr "Mapa de visitantes diarios"
|
1737 |
|
1786 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1787 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1788 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1789 |
+
#: wp-statistics/wp-statistics.php:530
|
1790 |
msgid "Hits"
|
1791 |
msgstr "Hitos"
|
1792 |
|
1805 |
|
1806 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1807 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1808 |
+
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:297
|
1809 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1810 |
msgid "Access denied!"
|
1811 |
msgstr "Acceso denegado!"
|
1861 |
|
1862 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1863 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1864 |
+
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:528
|
1865 |
msgid "Countries"
|
1866 |
msgstr "Países"
|
1867 |
|
1946 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1947 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1948 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1949 |
+
#: wp-statistics/wp-statistics.php:537
|
1950 |
msgid "Visitors"
|
1951 |
msgstr "Visitantes"
|
1952 |
|
2448 |
#: wp-statistics/includes/log/exclusions.php:197
|
2449 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2450 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2451 |
+
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:529
|
2452 |
msgid "Exclusions"
|
2453 |
msgstr "Exclusiones"
|
2454 |
|
2658 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2659 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2660 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2661 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:74
|
2662 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:86
|
2663 |
msgid "Active"
|
2664 |
msgstr "Activo"
|
2665 |
|
languages/wp_statistics-fa_IR.mo
CHANGED
Binary file
|
languages/wp_statistics-fa_IR.po
CHANGED
@@ -7,10 +7,11 @@ msgstr ""
|
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
10 |
-
"X-Generator: GlotPress/1.0
|
|
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#: wp-statistics/ajax.php:
|
14 |
msgid "No matching widget found!"
|
15 |
msgstr ""
|
16 |
|
@@ -46,22 +47,22 @@ msgstr ""
|
|
46 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: wp-statistics/ajax.php:
|
50 |
msgid "ERROR: Widget not found!"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: wp-statistics/dashboard.php:
|
54 |
#: wp-statistics/includes/log/log.php:20
|
55 |
msgid "Loading..."
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: wp-statistics/dashboard.php:
|
59 |
#: wp-statistics/includes/log/log.php:2
|
60 |
msgid "Reloading..."
|
61 |
msgstr ""
|
62 |
|
63 |
#: wp-statistics/includes/log/top-visitors.php:41
|
64 |
-
#: wp-statistics/wp-statistics.php:
|
65 |
msgid "Top Visitors"
|
66 |
msgstr ""
|
67 |
|
@@ -158,7 +159,7 @@ msgstr "ردیابی رکورد"
|
|
158 |
msgid "online user tracking"
|
159 |
msgstr "ردیابی آنلاین کاربر"
|
160 |
|
161 |
-
#: wp-statistics/wp-statistics.php:
|
162 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
163 |
msgstr "جدول داده های افزونه های درخواستی در پایگاه های داده وجود ندارد ، لطفاً %s را دوباره اجرا و دوباره نصب کنید %s:"
|
164 |
|
@@ -622,7 +623,7 @@ msgstr "ضریب محاسبه هر بازدید کننده را در آمار م
|
|
622 |
|
623 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
624 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
625 |
-
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:
|
626 |
msgid "Pages"
|
627 |
msgstr "برگهها"
|
628 |
|
@@ -892,7 +893,7 @@ msgstr "هر کدکوتاهی توسط وردپرس شما پشتیبانی می
|
|
892 |
|
893 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
894 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
895 |
-
#: wp-statistics/wp-statistics.php:
|
896 |
msgid "User Online"
|
897 |
msgstr "کاربران حاضر"
|
898 |
|
@@ -964,40 +965,23 @@ msgstr "غیرفعال کردن ابزارک بازدید در برگه/نوشت
|
|
964 |
msgid "Disable the page/post editor widget."
|
965 |
msgstr "غیرفعال ابزارک در نوشته/برگه"
|
966 |
|
967 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
968 |
-
msgid "Map type"
|
969 |
-
msgstr "نوع نقشه"
|
970 |
-
|
971 |
#: wp-statistics/includes/functions/functions.php:440
|
972 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
973 |
msgid "Google"
|
974 |
msgstr "گوگل"
|
975 |
|
976 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
977 |
-
msgid "JQVMap"
|
978 |
-
msgstr "JQV"
|
979 |
-
|
980 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:82
|
981 |
-
msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
|
982 |
-
msgstr "گزینه \"گوگل\" از سرویس نقشه گوگل برای آخرین بازدیدکنندگاه استفاده میکند. (نیازمند دسترسی به گوگل است)."
|
983 |
-
|
984 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:83
|
985 |
-
msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
|
986 |
-
msgstr "گزینه \"JQVMap\" از کتابخوانه جاوا اسکریپتی JQVMap برای آخرین بازدیدکنندگاه استفاده میکند. (نیازمند سرویس خارجی نمیباشد)."
|
987 |
-
|
988 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:89
|
989 |
msgid "Disable map"
|
990 |
msgstr "غیرفعال کردن نقشه"
|
991 |
|
992 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
993 |
msgid "Disable the map display"
|
994 |
msgstr "غیرفعال کردن نمایش نقشه"
|
995 |
|
996 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
997 |
msgid "Get country location from Google"
|
998 |
msgstr "دریافت مختصات کشورها از گوگل"
|
999 |
|
1000 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1001 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
1002 |
msgstr "این ویژگی ممکن است مشاهده آمار را با کندی مواجه کند و تنها برای نوع نقشه \"گوگل\" تنظیم شده است."
|
1003 |
|
@@ -1051,7 +1035,7 @@ msgstr "حذف"
|
|
1051 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1052 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1053 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1054 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1055 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1056 |
msgid "Update"
|
1057 |
msgstr "بهروز رسانی"
|
@@ -1069,7 +1053,7 @@ msgid "Once Every 4 Weeks"
|
|
1069 |
msgstr "هر 4 هفته"
|
1070 |
|
1071 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1072 |
-
#: wp-statistics/wp-statistics.php:
|
1073 |
msgid "Statistics"
|
1074 |
msgstr "آمار"
|
1075 |
|
@@ -1142,7 +1126,7 @@ msgstr "نام"
|
|
1142 |
msgid "Items"
|
1143 |
msgstr "آیتمها"
|
1144 |
|
1145 |
-
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:
|
1146 |
msgid "Yesterday visit"
|
1147 |
msgstr "بازدید دیروز"
|
1148 |
|
@@ -1167,7 +1151,7 @@ msgid "Complete statistics for your WordPress site."
|
|
1167 |
msgstr "آماری کامل برای سایت وردپرسی شما."
|
1168 |
|
1169 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1170 |
-
#: wp-statistics/wp-statistics.php:
|
1171 |
msgid "Settings"
|
1172 |
msgstr "تنظیمات"
|
1173 |
|
@@ -1191,78 +1175,78 @@ msgstr "امتیاز به افزونه"
|
|
1191 |
msgid "WP Statistics - Hits"
|
1192 |
msgstr "آمار وردپرس - بازدید"
|
1193 |
|
1194 |
-
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:
|
1195 |
-
#: wp-statistics/wp-statistics.php:
|
1196 |
msgid "Overview"
|
1197 |
msgstr "مرور کلی"
|
1198 |
|
1199 |
-
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:
|
1200 |
msgid "Online"
|
1201 |
msgstr "آنلاین"
|
1202 |
|
1203 |
-
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:
|
1204 |
msgid "Referrers"
|
1205 |
msgstr "ارجاعدهندهها"
|
1206 |
|
1207 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1208 |
-
#: wp-statistics/wp-statistics.php:
|
1209 |
msgid "Searches"
|
1210 |
msgstr "جستجوها"
|
1211 |
|
1212 |
-
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:
|
1213 |
msgid "Search Words"
|
1214 |
msgstr "کلمات جستجو شده"
|
1215 |
|
1216 |
-
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:
|
1217 |
msgid "Top Visitors Today"
|
1218 |
msgstr "برترین بازدیدکنندگان"
|
1219 |
|
1220 |
-
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:
|
1221 |
msgid "Optimization"
|
1222 |
msgstr "بهینه سازی"
|
1223 |
|
1224 |
-
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:
|
1225 |
msgid "Manual"
|
1226 |
msgstr "راهنما"
|
1227 |
|
1228 |
-
#: wp-statistics/wp-statistics.php:
|
1229 |
msgid "Site"
|
1230 |
msgstr "سایت"
|
1231 |
|
1232 |
-
#: wp-statistics/wp-statistics.php:
|
1233 |
msgid "Options"
|
1234 |
msgstr "تنظیمات"
|
1235 |
|
1236 |
-
#: wp-statistics/wp-statistics.php:
|
1237 |
msgid "Today visitor"
|
1238 |
msgstr "بازدید کننده امروز"
|
1239 |
|
1240 |
-
#: wp-statistics/wp-statistics.php:
|
1241 |
msgid "Today visit"
|
1242 |
msgstr "بازدید امروز"
|
1243 |
|
1244 |
-
#: wp-statistics/wp-statistics.php:
|
1245 |
msgid "Yesterday visitor"
|
1246 |
msgstr "بازدید کننده دیروز"
|
1247 |
|
1248 |
-
#: wp-statistics/wp-statistics.php:
|
1249 |
msgid "View Stats"
|
1250 |
msgstr "نمایش آمار"
|
1251 |
|
1252 |
-
#: wp-statistics/wp-statistics.php:
|
1253 |
msgid "Download ODF file"
|
1254 |
msgstr "دریافت فایل ODF"
|
1255 |
|
1256 |
-
#: wp-statistics/wp-statistics.php:
|
1257 |
msgid "Download HTML file"
|
1258 |
msgstr "دریافت فایل HTML"
|
1259 |
|
1260 |
-
#: wp-statistics/wp-statistics.php:
|
1261 |
msgid "Manual file not found."
|
1262 |
msgstr "راهنما یافت نشد."
|
1263 |
|
1264 |
-
#: wp-statistics/wp-statistics.php:
|
1265 |
-
#: wp-statistics/wp-statistics.php:
|
1266 |
msgid "You do not have sufficient permissions to access this page."
|
1267 |
msgstr "شما مجوز کافی برای مشاهدهی این قسمت را ندارید."
|
1268 |
|
@@ -1323,7 +1307,7 @@ msgstr "بازدید دریک نگاه"
|
|
1323 |
msgid "Top 10 Browsers"
|
1324 |
msgstr "10 مرورگر برتر"
|
1325 |
|
1326 |
-
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:
|
1327 |
msgid "Top 10 Countries"
|
1328 |
msgstr "10 کشور برتر"
|
1329 |
|
@@ -1337,36 +1321,36 @@ msgstr "بازدیدکنندگان امروز"
|
|
1337 |
msgid "Hit Statistics"
|
1338 |
msgstr "آمار بازدید ها"
|
1339 |
|
1340 |
-
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:
|
1341 |
msgid "Top 10 Pages"
|
1342 |
msgstr "10 برگه برتر"
|
1343 |
|
1344 |
#: wp-statistics/dashboard.php:62
|
1345 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1346 |
-
#: wp-statistics/wp-statistics.php:
|
1347 |
msgid "Recent Visitors"
|
1348 |
msgstr "آخرین بازدیدکنندگان"
|
1349 |
|
1350 |
#: wp-statistics/dashboard.php:63
|
1351 |
#: wp-statistics/includes/log/top-referring.php:59
|
1352 |
#: wp-statistics/includes/log/top-referring.php:81
|
1353 |
-
#: wp-statistics/wp-statistics.php:
|
1354 |
msgid "Top Referring Sites"
|
1355 |
msgstr "برترین ارجاع دهندهها"
|
1356 |
|
1357 |
#: wp-statistics/dashboard.php:64
|
1358 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1359 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1360 |
-
#: wp-statistics/wp-statistics.php:
|
1361 |
msgid "Search Engine Referrals"
|
1362 |
msgstr "ورودی موتور های جستجو"
|
1363 |
|
1364 |
-
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:
|
1365 |
msgid "Summary"
|
1366 |
msgstr "خلاصه"
|
1367 |
|
1368 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1369 |
-
#: wp-statistics/wp-statistics.php:
|
1370 |
msgid "Latest Search Words"
|
1371 |
msgstr "آخرین کلمات جستجو شده"
|
1372 |
|
@@ -1436,8 +1420,8 @@ msgid "Click to toggle"
|
|
1436 |
msgstr "برای باز و بستن کلیک کنید"
|
1437 |
|
1438 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1439 |
-
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:
|
1440 |
-
#: wp-statistics/wp-statistics.php:
|
1441 |
msgid "Browsers"
|
1442 |
msgstr "مرورگر ها"
|
1443 |
|
@@ -1510,7 +1494,7 @@ msgstr "بازدید آخرین استثنائات"
|
|
1510 |
#: wp-statistics/includes/log/exclusions.php:95
|
1511 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1512 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1513 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1514 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1515 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1516 |
msgid "days"
|
@@ -1525,18 +1509,18 @@ msgid "Hits Statistics Chart"
|
|
1525 |
msgstr "نمودار آمار بازدید ها"
|
1526 |
|
1527 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1528 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1529 |
msgid "Hits in the last"
|
1530 |
msgstr "آخرین بازدید ها در"
|
1531 |
|
1532 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1533 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1534 |
msgid "Number of visits and visitors"
|
1535 |
msgstr "تعداد بازدید و بازدید کننده"
|
1536 |
|
1537 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1538 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1539 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1540 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1541 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1542 |
msgid "Visit"
|
@@ -1544,7 +1528,7 @@ msgstr "بازدید"
|
|
1544 |
|
1545 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1546 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1547 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1548 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1549 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1550 |
msgid "Visitor"
|
@@ -1747,7 +1731,7 @@ msgstr "این محصول شامل دادههای GeoLite2 میباشد ک
|
|
1747 |
msgid "Other"
|
1748 |
msgstr "دیگر"
|
1749 |
|
1750 |
-
#: wp-statistics/wp-statistics.php:
|
1751 |
msgid "Today Visitors Map"
|
1752 |
msgstr "بازدیدکنندگان امروز برروی نقشه"
|
1753 |
|
@@ -1802,7 +1786,7 @@ msgstr "زمان: %s"
|
|
1802 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1803 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1804 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1805 |
-
#: wp-statistics/wp-statistics.php:
|
1806 |
msgid "Hits"
|
1807 |
msgstr "بازدید ها"
|
1808 |
|
@@ -1821,7 +1805,7 @@ msgstr "نگارش"
|
|
1821 |
|
1822 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1823 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1824 |
-
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:
|
1825 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1826 |
msgid "Access denied!"
|
1827 |
msgstr "دسترسی غیرمجاز!"
|
@@ -1877,7 +1861,7 @@ msgstr "شاخص پایگاهداده"
|
|
1877 |
|
1878 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1879 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1880 |
-
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:
|
1881 |
msgid "Countries"
|
1882 |
msgstr "کشورها"
|
1883 |
|
@@ -1962,7 +1946,7 @@ msgstr "نکته: همانطوری که پایگاهداده را پاک سا
|
|
1962 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1963 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1964 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1965 |
-
#: wp-statistics/wp-statistics.php:
|
1966 |
msgid "Visitors"
|
1967 |
msgstr "بازدیدکنندگان"
|
1968 |
|
@@ -2464,7 +2448,7 @@ msgstr "اگر نیاز به راهحلهای بیشتری در رابطه
|
|
2464 |
#: wp-statistics/includes/log/exclusions.php:197
|
2465 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2466 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2467 |
-
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:
|
2468 |
msgid "Exclusions"
|
2469 |
msgstr "استثنائات"
|
2470 |
|
@@ -2674,8 +2658,8 @@ msgstr "استفاده از browscap"
|
|
2674 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2675 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2676 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2677 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2678 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2679 |
msgid "Active"
|
2680 |
msgstr "فعال"
|
2681 |
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
10 |
+
"X-Generator: GlotPress/2.1.0\n"
|
11 |
+
"Language: fa\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
14 |
+
#: wp-statistics/ajax.php:215
|
15 |
msgid "No matching widget found!"
|
16 |
msgstr ""
|
17 |
|
47 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: wp-statistics/ajax.php:294
|
51 |
msgid "ERROR: Widget not found!"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: wp-statistics/dashboard.php:107 wp-statistics/editor.php:66
|
55 |
#: wp-statistics/includes/log/log.php:20
|
56 |
msgid "Loading..."
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: wp-statistics/dashboard.php:125 wp-statistics/editor.php:84
|
60 |
#: wp-statistics/includes/log/log.php:2
|
61 |
msgid "Reloading..."
|
62 |
msgstr ""
|
63 |
|
64 |
#: wp-statistics/includes/log/top-visitors.php:41
|
65 |
+
#: wp-statistics/wp-statistics.php:450
|
66 |
msgid "Top Visitors"
|
67 |
msgstr ""
|
68 |
|
159 |
msgid "online user tracking"
|
160 |
msgstr "ردیابی آنلاین کاربر"
|
161 |
|
162 |
+
#: wp-statistics/wp-statistics.php:791
|
163 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
164 |
msgstr "جدول داده های افزونه های درخواستی در پایگاه های داده وجود ندارد ، لطفاً %s را دوباره اجرا و دوباره نصب کنید %s:"
|
165 |
|
623 |
|
624 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
625 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
626 |
+
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:532
|
627 |
msgid "Pages"
|
628 |
msgstr "برگهها"
|
629 |
|
893 |
|
894 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
895 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
896 |
+
#: wp-statistics/wp-statistics.php:637
|
897 |
msgid "User Online"
|
898 |
msgstr "کاربران حاضر"
|
899 |
|
965 |
msgid "Disable the page/post editor widget."
|
966 |
msgstr "غیرفعال ابزارک در نوشته/برگه"
|
967 |
|
|
|
|
|
|
|
|
|
968 |
#: wp-statistics/includes/functions/functions.php:440
|
|
|
969 |
msgid "Google"
|
970 |
msgstr "گوگل"
|
971 |
|
972 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
973 |
msgid "Disable map"
|
974 |
msgstr "غیرفعال کردن نقشه"
|
975 |
|
976 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
977 |
msgid "Disable the map display"
|
978 |
msgstr "غیرفعال کردن نمایش نقشه"
|
979 |
|
980 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:81
|
981 |
msgid "Get country location from Google"
|
982 |
msgstr "دریافت مختصات کشورها از گوگل"
|
983 |
|
984 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:87
|
985 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
986 |
msgstr "این ویژگی ممکن است مشاهده آمار را با کندی مواجه کند و تنها برای نوع نقشه \"گوگل\" تنظیم شده است."
|
987 |
|
1035 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1036 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1037 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1038 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:96
|
1039 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1040 |
msgid "Update"
|
1041 |
msgstr "بهروز رسانی"
|
1053 |
msgstr "هر 4 هفته"
|
1054 |
|
1055 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1056 |
+
#: wp-statistics/wp-statistics.php:485
|
1057 |
msgid "Statistics"
|
1058 |
msgstr "آمار"
|
1059 |
|
1126 |
msgid "Items"
|
1127 |
msgstr "آیتمها"
|
1128 |
|
1129 |
+
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:662
|
1130 |
msgid "Yesterday visit"
|
1131 |
msgstr "بازدید دیروز"
|
1132 |
|
1151 |
msgstr "آماری کامل برای سایت وردپرسی شما."
|
1152 |
|
1153 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1154 |
+
#: wp-statistics/wp-statistics.php:539
|
1155 |
msgid "Settings"
|
1156 |
msgstr "تنظیمات"
|
1157 |
|
1175 |
msgid "WP Statistics - Hits"
|
1176 |
msgstr "آمار وردپرس - بازدید"
|
1177 |
|
1178 |
+
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:488
|
1179 |
+
#: wp-statistics/wp-statistics.php:526
|
1180 |
msgid "Overview"
|
1181 |
msgstr "مرور کلی"
|
1182 |
|
1183 |
+
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:531
|
1184 |
msgid "Online"
|
1185 |
msgstr "آنلاین"
|
1186 |
|
1187 |
+
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:533
|
1188 |
msgid "Referrers"
|
1189 |
msgstr "ارجاعدهندهها"
|
1190 |
|
1191 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1192 |
+
#: wp-statistics/wp-statistics.php:534
|
1193 |
msgid "Searches"
|
1194 |
msgstr "جستجوها"
|
1195 |
|
1196 |
+
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:535
|
1197 |
msgid "Search Words"
|
1198 |
msgstr "کلمات جستجو شده"
|
1199 |
|
1200 |
+
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:536
|
1201 |
msgid "Top Visitors Today"
|
1202 |
msgstr "برترین بازدیدکنندگان"
|
1203 |
|
1204 |
+
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:538
|
1205 |
msgid "Optimization"
|
1206 |
msgstr "بهینه سازی"
|
1207 |
|
1208 |
+
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:502
|
1209 |
msgid "Manual"
|
1210 |
msgstr "راهنما"
|
1211 |
|
1212 |
+
#: wp-statistics/wp-statistics.php:517
|
1213 |
msgid "Site"
|
1214 |
msgstr "سایت"
|
1215 |
|
1216 |
+
#: wp-statistics/wp-statistics.php:518
|
1217 |
msgid "Options"
|
1218 |
msgstr "تنظیمات"
|
1219 |
|
1220 |
+
#: wp-statistics/wp-statistics.php:644
|
1221 |
msgid "Today visitor"
|
1222 |
msgstr "بازدید کننده امروز"
|
1223 |
|
1224 |
+
#: wp-statistics/wp-statistics.php:650
|
1225 |
msgid "Today visit"
|
1226 |
msgstr "بازدید امروز"
|
1227 |
|
1228 |
+
#: wp-statistics/wp-statistics.php:656
|
1229 |
msgid "Yesterday visitor"
|
1230 |
msgstr "بازدید کننده دیروز"
|
1231 |
|
1232 |
+
#: wp-statistics/wp-statistics.php:668
|
1233 |
msgid "View Stats"
|
1234 |
msgstr "نمایش آمار"
|
1235 |
|
1236 |
+
#: wp-statistics/wp-statistics.php:692
|
1237 |
msgid "Download ODF file"
|
1238 |
msgstr "دریافت فایل ODF"
|
1239 |
|
1240 |
+
#: wp-statistics/wp-statistics.php:693
|
1241 |
msgid "Download HTML file"
|
1242 |
msgstr "دریافت فایل HTML"
|
1243 |
|
1244 |
+
#: wp-statistics/wp-statistics.php:697
|
1245 |
msgid "Manual file not found."
|
1246 |
msgstr "راهنما یافت نشد."
|
1247 |
|
1248 |
+
#: wp-statistics/wp-statistics.php:764 wp-statistics/wp-statistics.php:891
|
1249 |
+
#: wp-statistics/wp-statistics.php:926
|
1250 |
msgid "You do not have sufficient permissions to access this page."
|
1251 |
msgstr "شما مجوز کافی برای مشاهدهی این قسمت را ندارید."
|
1252 |
|
1307 |
msgid "Top 10 Browsers"
|
1308 |
msgstr "10 مرورگر برتر"
|
1309 |
|
1310 |
+
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:471
|
1311 |
msgid "Top 10 Countries"
|
1312 |
msgstr "10 کشور برتر"
|
1313 |
|
1321 |
msgid "Hit Statistics"
|
1322 |
msgstr "آمار بازدید ها"
|
1323 |
|
1324 |
+
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:461
|
1325 |
msgid "Top 10 Pages"
|
1326 |
msgstr "10 برگه برتر"
|
1327 |
|
1328 |
#: wp-statistics/dashboard.php:62
|
1329 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1330 |
+
#: wp-statistics/wp-statistics.php:453
|
1331 |
msgid "Recent Visitors"
|
1332 |
msgstr "آخرین بازدیدکنندگان"
|
1333 |
|
1334 |
#: wp-statistics/dashboard.php:63
|
1335 |
#: wp-statistics/includes/log/top-referring.php:59
|
1336 |
#: wp-statistics/includes/log/top-referring.php:81
|
1337 |
+
#: wp-statistics/wp-statistics.php:468
|
1338 |
msgid "Top Referring Sites"
|
1339 |
msgstr "برترین ارجاع دهندهها"
|
1340 |
|
1341 |
#: wp-statistics/dashboard.php:64
|
1342 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1343 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1344 |
+
#: wp-statistics/wp-statistics.php:451
|
1345 |
msgid "Search Engine Referrals"
|
1346 |
msgstr "ورودی موتور های جستجو"
|
1347 |
|
1348 |
+
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:466
|
1349 |
msgid "Summary"
|
1350 |
msgstr "خلاصه"
|
1351 |
|
1352 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1353 |
+
#: wp-statistics/wp-statistics.php:452
|
1354 |
msgid "Latest Search Words"
|
1355 |
msgstr "آخرین کلمات جستجو شده"
|
1356 |
|
1420 |
msgstr "برای باز و بستن کلیک کنید"
|
1421 |
|
1422 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1423 |
+
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:467
|
1424 |
+
#: wp-statistics/wp-statistics.php:527
|
1425 |
msgid "Browsers"
|
1426 |
msgstr "مرورگر ها"
|
1427 |
|
1494 |
#: wp-statistics/includes/log/exclusions.php:95
|
1495 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1496 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1497 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1498 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1499 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1500 |
msgid "days"
|
1509 |
msgstr "نمودار آمار بازدید ها"
|
1510 |
|
1511 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1512 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1513 |
msgid "Hits in the last"
|
1514 |
msgstr "آخرین بازدید ها در"
|
1515 |
|
1516 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1517 |
+
#: wp-statistics/includes/log/widgets/hits.php:65
|
1518 |
msgid "Number of visits and visitors"
|
1519 |
msgstr "تعداد بازدید و بازدید کننده"
|
1520 |
|
1521 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1522 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1523 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1524 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1525 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1526 |
msgid "Visit"
|
1528 |
|
1529 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1530 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1531 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1532 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1533 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1534 |
msgid "Visitor"
|
1731 |
msgid "Other"
|
1732 |
msgstr "دیگر"
|
1733 |
|
1734 |
+
#: wp-statistics/wp-statistics.php:456
|
1735 |
msgid "Today Visitors Map"
|
1736 |
msgstr "بازدیدکنندگان امروز برروی نقشه"
|
1737 |
|
1786 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1787 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1788 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1789 |
+
#: wp-statistics/wp-statistics.php:530
|
1790 |
msgid "Hits"
|
1791 |
msgstr "بازدید ها"
|
1792 |
|
1805 |
|
1806 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1807 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1808 |
+
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:297
|
1809 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1810 |
msgid "Access denied!"
|
1811 |
msgstr "دسترسی غیرمجاز!"
|
1861 |
|
1862 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1863 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1864 |
+
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:528
|
1865 |
msgid "Countries"
|
1866 |
msgstr "کشورها"
|
1867 |
|
1946 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1947 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1948 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1949 |
+
#: wp-statistics/wp-statistics.php:537
|
1950 |
msgid "Visitors"
|
1951 |
msgstr "بازدیدکنندگان"
|
1952 |
|
2448 |
#: wp-statistics/includes/log/exclusions.php:197
|
2449 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2450 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2451 |
+
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:529
|
2452 |
msgid "Exclusions"
|
2453 |
msgstr "استثنائات"
|
2454 |
|
2658 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2659 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2660 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2661 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:74
|
2662 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:86
|
2663 |
msgid "Active"
|
2664 |
msgstr "فعال"
|
2665 |
|
languages/wp_statistics-fr_FR.mo
CHANGED
Binary file
|
languages/wp_statistics-fr_FR.po
CHANGED
@@ -2,15 +2,16 @@
|
|
2 |
# This file is distributed under the same license as the WP Statistics package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"PO-Revision-Date: 2016-
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
10 |
-
"X-Generator: GlotPress/1.0
|
|
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#: wp-statistics/ajax.php:
|
14 |
msgid "No matching widget found!"
|
15 |
msgstr "Aucun widget correspondant n’a été trouvé !"
|
16 |
|
@@ -46,22 +47,22 @@ msgstr "WP Statistics a détecté une version %s de PHP, qui n’est pas prise e
|
|
46 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
47 |
msgstr "Veuillez contacter votre fournisseur d’hébergement pour passer à une version prise en charge, ou désactiver WP Statistics pour supprimer ce message."
|
48 |
|
49 |
-
#: wp-statistics/ajax.php:
|
50 |
msgid "ERROR: Widget not found!"
|
51 |
msgstr "Erreur : Widget non trouvé !"
|
52 |
|
53 |
-
#: wp-statistics/dashboard.php:
|
54 |
#: wp-statistics/includes/log/log.php:20
|
55 |
msgid "Loading..."
|
56 |
msgstr "Chargement en cours…"
|
57 |
|
58 |
-
#: wp-statistics/dashboard.php:
|
59 |
#: wp-statistics/includes/log/log.php:2
|
60 |
msgid "Reloading..."
|
61 |
msgstr "Rechargement en cours…"
|
62 |
|
63 |
#: wp-statistics/includes/log/top-visitors.php:41
|
64 |
-
#: wp-statistics/wp-statistics.php:
|
65 |
msgid "Top Visitors"
|
66 |
msgstr "Top Visiteurs"
|
67 |
|
@@ -158,7 +159,7 @@ msgstr "suivi des hits"
|
|
158 |
msgid "online user tracking"
|
159 |
msgstr "suivi des utilisateurs en ligne"
|
160 |
|
161 |
-
#: wp-statistics/wp-statistics.php:
|
162 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
163 |
msgstr "Le(s) table(s) des extensions suivantes n’existent pas dans la base de données, veuillez réexécuter la routine d’installation %s : %s"
|
164 |
|
@@ -622,7 +623,7 @@ msgstr "Pour chaque visite tenir compte de plusieurs hits. Actuellement %s."
|
|
622 |
|
623 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
624 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
625 |
-
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:
|
626 |
msgid "Pages"
|
627 |
msgstr "Pages"
|
628 |
|
@@ -892,7 +893,7 @@ msgstr "N'importe quel code pris en charge par votre installation de Wordpress,
|
|
892 |
|
893 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
894 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
895 |
-
#: wp-statistics/wp-statistics.php:
|
896 |
msgid "User Online"
|
897 |
msgstr "Utilisateur en ligne"
|
898 |
|
@@ -964,40 +965,23 @@ msgstr "Désactiver le widget d’éditeur de page/article"
|
|
964 |
msgid "Disable the page/post editor widget."
|
965 |
msgstr "Désactive le widget de l'éditeur de page/article."
|
966 |
|
967 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
968 |
-
msgid "Map type"
|
969 |
-
msgstr "Type de carte"
|
970 |
-
|
971 |
#: wp-statistics/includes/functions/functions.php:440
|
972 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
973 |
msgid "Google"
|
974 |
msgstr "Google"
|
975 |
|
976 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
977 |
-
msgid "JQVMap"
|
978 |
-
msgstr "JQVMap"
|
979 |
-
|
980 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:82
|
981 |
-
msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
|
982 |
-
msgstr "L'option \"Google\" utilisera le service de cartographie de Google pour dessiner les visiteurs récents (nécessite l'accès à Google)."
|
983 |
-
|
984 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:83
|
985 |
-
msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
|
986 |
-
msgstr "L'option \"JQVMap\" utilisera la bibliothèque de cartographie javascript JQVMap pour dessiner les visiteurs récents (ne nécessite aucun service externe)."
|
987 |
-
|
988 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:89
|
989 |
msgid "Disable map"
|
990 |
msgstr "Désactiver la carte"
|
991 |
|
992 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
993 |
msgid "Disable the map display"
|
994 |
msgstr "Désactiver l'affichage de la carte"
|
995 |
|
996 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
997 |
msgid "Get country location from Google"
|
998 |
msgstr "Obtenir l'emplacement du pays depuis Google"
|
999 |
|
1000 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1001 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
1002 |
msgstr "Cette fonctionnalité peut entraîner une dégradation des performances lorsque vous affichez des statistiques et n'est valide que si le type de carte défini est \"Google\"."
|
1003 |
|
@@ -1051,7 +1035,7 @@ msgstr "Suppression"
|
|
1051 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1052 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1053 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1054 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1055 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1056 |
msgid "Update"
|
1057 |
msgstr "Mise à jour"
|
@@ -1069,7 +1053,7 @@ msgid "Once Every 4 Weeks"
|
|
1069 |
msgstr "Une fois toutes les 4 semaines"
|
1070 |
|
1071 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1072 |
-
#: wp-statistics/wp-statistics.php:
|
1073 |
msgid "Statistics"
|
1074 |
msgstr "Statistiques"
|
1075 |
|
@@ -1142,7 +1126,7 @@ msgstr "Nom"
|
|
1142 |
msgid "Items"
|
1143 |
msgstr "Éléments"
|
1144 |
|
1145 |
-
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:
|
1146 |
msgid "Yesterday visit"
|
1147 |
msgstr "Visite d'hier"
|
1148 |
|
@@ -1167,7 +1151,7 @@ msgid "Complete statistics for your WordPress site."
|
|
1167 |
msgstr "Statistiques complètes pour votre site WordPress."
|
1168 |
|
1169 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1170 |
-
#: wp-statistics/wp-statistics.php:
|
1171 |
msgid "Settings"
|
1172 |
msgstr "Réglages"
|
1173 |
|
@@ -1191,78 +1175,78 @@ msgstr "Noter cette extension"
|
|
1191 |
msgid "WP Statistics - Hits"
|
1192 |
msgstr "WP Statistics - Hits"
|
1193 |
|
1194 |
-
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:
|
1195 |
-
#: wp-statistics/wp-statistics.php:
|
1196 |
msgid "Overview"
|
1197 |
msgstr "Vue globale"
|
1198 |
|
1199 |
-
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:
|
1200 |
msgid "Online"
|
1201 |
msgstr "En ligne"
|
1202 |
|
1203 |
-
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:
|
1204 |
msgid "Referrers"
|
1205 |
msgstr "Référents"
|
1206 |
|
1207 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1208 |
-
#: wp-statistics/wp-statistics.php:
|
1209 |
msgid "Searches"
|
1210 |
msgstr "Recherches"
|
1211 |
|
1212 |
-
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:
|
1213 |
msgid "Search Words"
|
1214 |
msgstr "Recherche par mots"
|
1215 |
|
1216 |
-
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:
|
1217 |
msgid "Top Visitors Today"
|
1218 |
msgstr "Top des visiteurs du jour"
|
1219 |
|
1220 |
-
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:
|
1221 |
msgid "Optimization"
|
1222 |
msgstr "Optimisation"
|
1223 |
|
1224 |
-
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:
|
1225 |
msgid "Manual"
|
1226 |
-
msgstr "
|
1227 |
|
1228 |
-
#: wp-statistics/wp-statistics.php:
|
1229 |
msgid "Site"
|
1230 |
msgstr "Site"
|
1231 |
|
1232 |
-
#: wp-statistics/wp-statistics.php:
|
1233 |
msgid "Options"
|
1234 |
msgstr "Options"
|
1235 |
|
1236 |
-
#: wp-statistics/wp-statistics.php:
|
1237 |
msgid "Today visitor"
|
1238 |
msgstr "Visiteur aujourd'hui"
|
1239 |
|
1240 |
-
#: wp-statistics/wp-statistics.php:
|
1241 |
msgid "Today visit"
|
1242 |
msgstr "Visite aujourd’hui"
|
1243 |
|
1244 |
-
#: wp-statistics/wp-statistics.php:
|
1245 |
msgid "Yesterday visitor"
|
1246 |
msgstr "Visiteur hier"
|
1247 |
|
1248 |
-
#: wp-statistics/wp-statistics.php:
|
1249 |
msgid "View Stats"
|
1250 |
msgstr "Voir les Stats"
|
1251 |
|
1252 |
-
#: wp-statistics/wp-statistics.php:
|
1253 |
msgid "Download ODF file"
|
1254 |
msgstr "Télécharger fichier ODF"
|
1255 |
|
1256 |
-
#: wp-statistics/wp-statistics.php:
|
1257 |
msgid "Download HTML file"
|
1258 |
msgstr "Télécharger le fichier HTML"
|
1259 |
|
1260 |
-
#: wp-statistics/wp-statistics.php:
|
1261 |
msgid "Manual file not found."
|
1262 |
msgstr "Fichier du manuel non trouvé."
|
1263 |
|
1264 |
-
#: wp-statistics/wp-statistics.php:
|
1265 |
-
#: wp-statistics/wp-statistics.php:
|
1266 |
msgid "You do not have sufficient permissions to access this page."
|
1267 |
msgstr "Vous n'avez pas les autorisations suffisantes pour accéder à cette page."
|
1268 |
|
@@ -1323,7 +1307,7 @@ msgstr "Stats rapides"
|
|
1323 |
msgid "Top 10 Browsers"
|
1324 |
msgstr "Top 10 des navigateurs"
|
1325 |
|
1326 |
-
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:
|
1327 |
msgid "Top 10 Countries"
|
1328 |
msgstr "Top 10 des pays"
|
1329 |
|
@@ -1337,36 +1321,36 @@ msgstr "Carte des visiteurs aujourd'hui"
|
|
1337 |
msgid "Hit Statistics"
|
1338 |
msgstr "Statistiques de hits"
|
1339 |
|
1340 |
-
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:
|
1341 |
msgid "Top 10 Pages"
|
1342 |
msgstr "Top 10 des pages"
|
1343 |
|
1344 |
#: wp-statistics/dashboard.php:62
|
1345 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1346 |
-
#: wp-statistics/wp-statistics.php:
|
1347 |
msgid "Recent Visitors"
|
1348 |
msgstr "Visiteurs récents"
|
1349 |
|
1350 |
#: wp-statistics/dashboard.php:63
|
1351 |
#: wp-statistics/includes/log/top-referring.php:59
|
1352 |
#: wp-statistics/includes/log/top-referring.php:81
|
1353 |
-
#: wp-statistics/wp-statistics.php:
|
1354 |
msgid "Top Referring Sites"
|
1355 |
msgstr "Top des Sites référents"
|
1356 |
|
1357 |
#: wp-statistics/dashboard.php:64
|
1358 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1359 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1360 |
-
#: wp-statistics/wp-statistics.php:
|
1361 |
msgid "Search Engine Referrals"
|
1362 |
msgstr "Référents de moteur de recherche"
|
1363 |
|
1364 |
-
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:
|
1365 |
msgid "Summary"
|
1366 |
msgstr "Résumé"
|
1367 |
|
1368 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1369 |
-
#: wp-statistics/wp-statistics.php:
|
1370 |
msgid "Latest Search Words"
|
1371 |
msgstr "Derniers mots recherchés"
|
1372 |
|
@@ -1436,8 +1420,8 @@ msgid "Click to toggle"
|
|
1436 |
msgstr "Cliquez ici pour activer/désactiver"
|
1437 |
|
1438 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1439 |
-
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:
|
1440 |
-
#: wp-statistics/wp-statistics.php:
|
1441 |
msgid "Browsers"
|
1442 |
msgstr "Navigateurs"
|
1443 |
|
@@ -1510,7 +1494,7 @@ msgstr "Hits exclus dans le dernier"
|
|
1510 |
#: wp-statistics/includes/log/exclusions.php:95
|
1511 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1512 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1513 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1514 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1515 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1516 |
msgid "days"
|
@@ -1525,18 +1509,18 @@ msgid "Hits Statistics Chart"
|
|
1525 |
msgstr "Graphique statistique des hits"
|
1526 |
|
1527 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1528 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1529 |
msgid "Hits in the last"
|
1530 |
msgstr "Hits dans les derniers"
|
1531 |
|
1532 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1533 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1534 |
msgid "Number of visits and visitors"
|
1535 |
msgstr "Nombre de visites et visiteurs"
|
1536 |
|
1537 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1538 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1539 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1540 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1541 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1542 |
msgid "Visit"
|
@@ -1544,7 +1528,7 @@ msgstr "Visite"
|
|
1544 |
|
1545 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1546 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1547 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1548 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1549 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1550 |
msgid "Visitor"
|
@@ -1747,7 +1731,7 @@ msgstr "Ce produit inclut des données de GeoLite2 créées par MaxMind, disponi
|
|
1747 |
msgid "Other"
|
1748 |
msgstr "Autres"
|
1749 |
|
1750 |
-
#: wp-statistics/wp-statistics.php:
|
1751 |
msgid "Today Visitors Map"
|
1752 |
msgstr "Carte des Visiteurs Aujourd’hui"
|
1753 |
|
@@ -1802,7 +1786,7 @@ msgstr "Temps : %s"
|
|
1802 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1803 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1804 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1805 |
-
#: wp-statistics/wp-statistics.php:
|
1806 |
msgid "Hits"
|
1807 |
msgstr "Hits"
|
1808 |
|
@@ -1821,7 +1805,7 @@ msgstr "Version"
|
|
1821 |
|
1822 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1823 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1824 |
-
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:
|
1825 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1826 |
msgid "Access denied!"
|
1827 |
msgstr "Accès refusé !"
|
@@ -1877,7 +1861,7 @@ msgstr "Index de base de données"
|
|
1877 |
|
1878 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1879 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1880 |
-
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:
|
1881 |
msgid "Countries"
|
1882 |
msgstr "Pays"
|
1883 |
|
@@ -1962,7 +1946,7 @@ msgstr "Note : comme vous venez de purger la base de données, vous devez rechar
|
|
1962 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1963 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1964 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1965 |
-
#: wp-statistics/wp-statistics.php:
|
1966 |
msgid "Visitors"
|
1967 |
msgstr "Visiteurs"
|
1968 |
|
@@ -2464,7 +2448,7 @@ msgstr "Si vous avez besoin d'une solution plus robuste pour déléguer l'accès
|
|
2464 |
#: wp-statistics/includes/log/exclusions.php:197
|
2465 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2466 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2467 |
-
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:
|
2468 |
msgid "Exclusions"
|
2469 |
msgstr "Exclusions"
|
2470 |
|
@@ -2674,8 +2658,8 @@ msgstr "utilisation de browscap"
|
|
2674 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2675 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2676 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2677 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2678 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2679 |
msgid "Active"
|
2680 |
msgstr "Active"
|
2681 |
|
2 |
# This file is distributed under the same license as the WP Statistics package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2016-06-17 16:16:59+0000\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
10 |
+
"X-Generator: GlotPress/2.1.0\n"
|
11 |
+
"Language: fr\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
14 |
+
#: wp-statistics/ajax.php:215
|
15 |
msgid "No matching widget found!"
|
16 |
msgstr "Aucun widget correspondant n’a été trouvé !"
|
17 |
|
47 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
48 |
msgstr "Veuillez contacter votre fournisseur d’hébergement pour passer à une version prise en charge, ou désactiver WP Statistics pour supprimer ce message."
|
49 |
|
50 |
+
#: wp-statistics/ajax.php:294
|
51 |
msgid "ERROR: Widget not found!"
|
52 |
msgstr "Erreur : Widget non trouvé !"
|
53 |
|
54 |
+
#: wp-statistics/dashboard.php:107 wp-statistics/editor.php:66
|
55 |
#: wp-statistics/includes/log/log.php:20
|
56 |
msgid "Loading..."
|
57 |
msgstr "Chargement en cours…"
|
58 |
|
59 |
+
#: wp-statistics/dashboard.php:125 wp-statistics/editor.php:84
|
60 |
#: wp-statistics/includes/log/log.php:2
|
61 |
msgid "Reloading..."
|
62 |
msgstr "Rechargement en cours…"
|
63 |
|
64 |
#: wp-statistics/includes/log/top-visitors.php:41
|
65 |
+
#: wp-statistics/wp-statistics.php:450
|
66 |
msgid "Top Visitors"
|
67 |
msgstr "Top Visiteurs"
|
68 |
|
159 |
msgid "online user tracking"
|
160 |
msgstr "suivi des utilisateurs en ligne"
|
161 |
|
162 |
+
#: wp-statistics/wp-statistics.php:791
|
163 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
164 |
msgstr "Le(s) table(s) des extensions suivantes n’existent pas dans la base de données, veuillez réexécuter la routine d’installation %s : %s"
|
165 |
|
623 |
|
624 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
625 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
626 |
+
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:532
|
627 |
msgid "Pages"
|
628 |
msgstr "Pages"
|
629 |
|
893 |
|
894 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
895 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
896 |
+
#: wp-statistics/wp-statistics.php:637
|
897 |
msgid "User Online"
|
898 |
msgstr "Utilisateur en ligne"
|
899 |
|
965 |
msgid "Disable the page/post editor widget."
|
966 |
msgstr "Désactive le widget de l'éditeur de page/article."
|
967 |
|
|
|
|
|
|
|
|
|
968 |
#: wp-statistics/includes/functions/functions.php:440
|
|
|
969 |
msgid "Google"
|
970 |
msgstr "Google"
|
971 |
|
972 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
973 |
msgid "Disable map"
|
974 |
msgstr "Désactiver la carte"
|
975 |
|
976 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
977 |
msgid "Disable the map display"
|
978 |
msgstr "Désactiver l'affichage de la carte"
|
979 |
|
980 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:81
|
981 |
msgid "Get country location from Google"
|
982 |
msgstr "Obtenir l'emplacement du pays depuis Google"
|
983 |
|
984 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:87
|
985 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
986 |
msgstr "Cette fonctionnalité peut entraîner une dégradation des performances lorsque vous affichez des statistiques et n'est valide que si le type de carte défini est \"Google\"."
|
987 |
|
1035 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1036 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1037 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1038 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:96
|
1039 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1040 |
msgid "Update"
|
1041 |
msgstr "Mise à jour"
|
1053 |
msgstr "Une fois toutes les 4 semaines"
|
1054 |
|
1055 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1056 |
+
#: wp-statistics/wp-statistics.php:485
|
1057 |
msgid "Statistics"
|
1058 |
msgstr "Statistiques"
|
1059 |
|
1126 |
msgid "Items"
|
1127 |
msgstr "Éléments"
|
1128 |
|
1129 |
+
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:662
|
1130 |
msgid "Yesterday visit"
|
1131 |
msgstr "Visite d'hier"
|
1132 |
|
1151 |
msgstr "Statistiques complètes pour votre site WordPress."
|
1152 |
|
1153 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1154 |
+
#: wp-statistics/wp-statistics.php:539
|
1155 |
msgid "Settings"
|
1156 |
msgstr "Réglages"
|
1157 |
|
1175 |
msgid "WP Statistics - Hits"
|
1176 |
msgstr "WP Statistics - Hits"
|
1177 |
|
1178 |
+
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:488
|
1179 |
+
#: wp-statistics/wp-statistics.php:526
|
1180 |
msgid "Overview"
|
1181 |
msgstr "Vue globale"
|
1182 |
|
1183 |
+
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:531
|
1184 |
msgid "Online"
|
1185 |
msgstr "En ligne"
|
1186 |
|
1187 |
+
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:533
|
1188 |
msgid "Referrers"
|
1189 |
msgstr "Référents"
|
1190 |
|
1191 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1192 |
+
#: wp-statistics/wp-statistics.php:534
|
1193 |
msgid "Searches"
|
1194 |
msgstr "Recherches"
|
1195 |
|
1196 |
+
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:535
|
1197 |
msgid "Search Words"
|
1198 |
msgstr "Recherche par mots"
|
1199 |
|
1200 |
+
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:536
|
1201 |
msgid "Top Visitors Today"
|
1202 |
msgstr "Top des visiteurs du jour"
|
1203 |
|
1204 |
+
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:538
|
1205 |
msgid "Optimization"
|
1206 |
msgstr "Optimisation"
|
1207 |
|
1208 |
+
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:502
|
1209 |
msgid "Manual"
|
1210 |
+
msgstr "Manuel"
|
1211 |
|
1212 |
+
#: wp-statistics/wp-statistics.php:517
|
1213 |
msgid "Site"
|
1214 |
msgstr "Site"
|
1215 |
|
1216 |
+
#: wp-statistics/wp-statistics.php:518
|
1217 |
msgid "Options"
|
1218 |
msgstr "Options"
|
1219 |
|
1220 |
+
#: wp-statistics/wp-statistics.php:644
|
1221 |
msgid "Today visitor"
|
1222 |
msgstr "Visiteur aujourd'hui"
|
1223 |
|
1224 |
+
#: wp-statistics/wp-statistics.php:650
|
1225 |
msgid "Today visit"
|
1226 |
msgstr "Visite aujourd’hui"
|
1227 |
|
1228 |
+
#: wp-statistics/wp-statistics.php:656
|
1229 |
msgid "Yesterday visitor"
|
1230 |
msgstr "Visiteur hier"
|
1231 |
|
1232 |
+
#: wp-statistics/wp-statistics.php:668
|
1233 |
msgid "View Stats"
|
1234 |
msgstr "Voir les Stats"
|
1235 |
|
1236 |
+
#: wp-statistics/wp-statistics.php:692
|
1237 |
msgid "Download ODF file"
|
1238 |
msgstr "Télécharger fichier ODF"
|
1239 |
|
1240 |
+
#: wp-statistics/wp-statistics.php:693
|
1241 |
msgid "Download HTML file"
|
1242 |
msgstr "Télécharger le fichier HTML"
|
1243 |
|
1244 |
+
#: wp-statistics/wp-statistics.php:697
|
1245 |
msgid "Manual file not found."
|
1246 |
msgstr "Fichier du manuel non trouvé."
|
1247 |
|
1248 |
+
#: wp-statistics/wp-statistics.php:764 wp-statistics/wp-statistics.php:891
|
1249 |
+
#: wp-statistics/wp-statistics.php:926
|
1250 |
msgid "You do not have sufficient permissions to access this page."
|
1251 |
msgstr "Vous n'avez pas les autorisations suffisantes pour accéder à cette page."
|
1252 |
|
1307 |
msgid "Top 10 Browsers"
|
1308 |
msgstr "Top 10 des navigateurs"
|
1309 |
|
1310 |
+
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:471
|
1311 |
msgid "Top 10 Countries"
|
1312 |
msgstr "Top 10 des pays"
|
1313 |
|
1321 |
msgid "Hit Statistics"
|
1322 |
msgstr "Statistiques de hits"
|
1323 |
|
1324 |
+
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:461
|
1325 |
msgid "Top 10 Pages"
|
1326 |
msgstr "Top 10 des pages"
|
1327 |
|
1328 |
#: wp-statistics/dashboard.php:62
|
1329 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1330 |
+
#: wp-statistics/wp-statistics.php:453
|
1331 |
msgid "Recent Visitors"
|
1332 |
msgstr "Visiteurs récents"
|
1333 |
|
1334 |
#: wp-statistics/dashboard.php:63
|
1335 |
#: wp-statistics/includes/log/top-referring.php:59
|
1336 |
#: wp-statistics/includes/log/top-referring.php:81
|
1337 |
+
#: wp-statistics/wp-statistics.php:468
|
1338 |
msgid "Top Referring Sites"
|
1339 |
msgstr "Top des Sites référents"
|
1340 |
|
1341 |
#: wp-statistics/dashboard.php:64
|
1342 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1343 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1344 |
+
#: wp-statistics/wp-statistics.php:451
|
1345 |
msgid "Search Engine Referrals"
|
1346 |
msgstr "Référents de moteur de recherche"
|
1347 |
|
1348 |
+
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:466
|
1349 |
msgid "Summary"
|
1350 |
msgstr "Résumé"
|
1351 |
|
1352 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1353 |
+
#: wp-statistics/wp-statistics.php:452
|
1354 |
msgid "Latest Search Words"
|
1355 |
msgstr "Derniers mots recherchés"
|
1356 |
|
1420 |
msgstr "Cliquez ici pour activer/désactiver"
|
1421 |
|
1422 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1423 |
+
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:467
|
1424 |
+
#: wp-statistics/wp-statistics.php:527
|
1425 |
msgid "Browsers"
|
1426 |
msgstr "Navigateurs"
|
1427 |
|
1494 |
#: wp-statistics/includes/log/exclusions.php:95
|
1495 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1496 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1497 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1498 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1499 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1500 |
msgid "days"
|
1509 |
msgstr "Graphique statistique des hits"
|
1510 |
|
1511 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1512 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1513 |
msgid "Hits in the last"
|
1514 |
msgstr "Hits dans les derniers"
|
1515 |
|
1516 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1517 |
+
#: wp-statistics/includes/log/widgets/hits.php:65
|
1518 |
msgid "Number of visits and visitors"
|
1519 |
msgstr "Nombre de visites et visiteurs"
|
1520 |
|
1521 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1522 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1523 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1524 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1525 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1526 |
msgid "Visit"
|
1528 |
|
1529 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1530 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1531 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1532 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1533 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1534 |
msgid "Visitor"
|
1731 |
msgid "Other"
|
1732 |
msgstr "Autres"
|
1733 |
|
1734 |
+
#: wp-statistics/wp-statistics.php:456
|
1735 |
msgid "Today Visitors Map"
|
1736 |
msgstr "Carte des Visiteurs Aujourd’hui"
|
1737 |
|
1786 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1787 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1788 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1789 |
+
#: wp-statistics/wp-statistics.php:530
|
1790 |
msgid "Hits"
|
1791 |
msgstr "Hits"
|
1792 |
|
1805 |
|
1806 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1807 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1808 |
+
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:297
|
1809 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1810 |
msgid "Access denied!"
|
1811 |
msgstr "Accès refusé !"
|
1861 |
|
1862 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1863 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1864 |
+
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:528
|
1865 |
msgid "Countries"
|
1866 |
msgstr "Pays"
|
1867 |
|
1946 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1947 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1948 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1949 |
+
#: wp-statistics/wp-statistics.php:537
|
1950 |
msgid "Visitors"
|
1951 |
msgstr "Visiteurs"
|
1952 |
|
2448 |
#: wp-statistics/includes/log/exclusions.php:197
|
2449 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2450 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2451 |
+
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:529
|
2452 |
msgid "Exclusions"
|
2453 |
msgstr "Exclusions"
|
2454 |
|
2658 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2659 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2660 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2661 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:74
|
2662 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:86
|
2663 |
msgid "Active"
|
2664 |
msgstr "Active"
|
2665 |
|
languages/wp_statistics-hi.mo
ADDED
Binary file
|
languages/wp_statistics-hi.po
ADDED
@@ -0,0 +1,2713 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of WP Statistics in Hindi
|
2 |
+
# This file is distributed under the same license as the WP Statistics package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"PO-Revision-Date: 2016-07-20 20:12:24+0000\n"
|
6 |
+
"MIME-Version: 1.0\n"
|
7 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
+
"Content-Transfer-Encoding: 8bit\n"
|
9 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
+
"X-Generator: GlotPress/2.1.0\n"
|
11 |
+
"Language: hi_IN\n"
|
12 |
+
"Project-Id-Version: WP Statistics\n"
|
13 |
+
|
14 |
+
#: wp-statistics/ajax.php:215
|
15 |
+
msgid "No matching widget found!"
|
16 |
+
msgstr "कोई भी समान विजेट नही मिला!"
|
17 |
+
|
18 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:180
|
19 |
+
msgid "Zlib gzopen()"
|
20 |
+
msgstr ""
|
21 |
+
|
22 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:185
|
23 |
+
msgid "If the gzopen() function is installed. gzopen() is required for the GeoIP database to be downloaded successfully."
|
24 |
+
msgstr ""
|
25 |
+
|
26 |
+
#: wp-statistics/wps-updates.php:16
|
27 |
+
msgid "Error the download_url() or gzopen() functions do not exist!"
|
28 |
+
msgstr ""
|
29 |
+
|
30 |
+
#: wp-statistics/wps-updates.php:45
|
31 |
+
msgid "Error setting permissions of the GeoIP database directory, make sure your web server has permissions to write to directories in : %s"
|
32 |
+
msgstr ""
|
33 |
+
|
34 |
+
#: wp-statistics/wp-statistics.php:95
|
35 |
+
msgid "— You are running an unsupported version of PHP."
|
36 |
+
msgstr ""
|
37 |
+
|
38 |
+
#: wp-statistics/wp-statistics.php:95
|
39 |
+
msgid "WP Statistics Disabled"
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: wp-statistics/wp-statistics.php:99
|
43 |
+
msgid "WP Statistics has detected PHP version %s which is unsupported, WP Statistics requires PHP Version %s or higher!"
|
44 |
+
msgstr ""
|
45 |
+
|
46 |
+
#: wp-statistics/wp-statistics.php:101
|
47 |
+
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
48 |
+
msgstr ""
|
49 |
+
|
50 |
+
#: wp-statistics/ajax.php:294
|
51 |
+
msgid "ERROR: Widget not found!"
|
52 |
+
msgstr ""
|
53 |
+
|
54 |
+
#: wp-statistics/dashboard.php:107 wp-statistics/editor.php:66
|
55 |
+
#: wp-statistics/includes/log/log.php:20
|
56 |
+
msgid "Loading..."
|
57 |
+
msgstr ""
|
58 |
+
|
59 |
+
#: wp-statistics/dashboard.php:125 wp-statistics/editor.php:84
|
60 |
+
#: wp-statistics/includes/log/log.php:2
|
61 |
+
msgid "Reloading..."
|
62 |
+
msgstr ""
|
63 |
+
|
64 |
+
#: wp-statistics/includes/log/top-visitors.php:41
|
65 |
+
#: wp-statistics/wp-statistics.php:450
|
66 |
+
msgid "Top Visitors"
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: wp-statistics/wp-statistics.php:206
|
70 |
+
msgid "optimization page"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:35
|
74 |
+
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:63
|
75 |
+
msgid "Enabled"
|
76 |
+
msgstr ""
|
77 |
+
|
78 |
+
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:30
|
79 |
+
msgid "Purge Old Data Daily"
|
80 |
+
msgstr ""
|
81 |
+
|
82 |
+
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:41
|
83 |
+
msgid "A WP Cron job will be run daily to purge any data older than a set number of days."
|
84 |
+
msgstr ""
|
85 |
+
|
86 |
+
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:47
|
87 |
+
msgid "Purge data older than"
|
88 |
+
msgstr ""
|
89 |
+
|
90 |
+
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:58
|
91 |
+
msgid "Purge High Hit Count Visitors Daily"
|
92 |
+
msgstr ""
|
93 |
+
|
94 |
+
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:69
|
95 |
+
msgid "A WP Cron job will be run daily to purge any users statistics data where the user has more than the defined number of hits in a day (aka they are probably a bot)."
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:81
|
99 |
+
msgid "The number of hits required to delete the visitor. Minimum value is 10 hits. Invalid values will disable the daily maintenance."
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
#: wp-statistics/shortcode.php:184
|
103 |
+
msgid "The post/page id to get page statistics on."
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: wp-statistics/shortcode.php:181
|
107 |
+
msgid "Post/Page ID"
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: wp-statistics/includes/functions/functions.php:435
|
111 |
+
msgid "Ask.com"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: wp-statistics/shortcode.php:158
|
115 |
+
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it. Use \"total\" to get all recorded dates."
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: wp-statistics/wp-statistics.php:180
|
119 |
+
msgid "visitor tracking"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: wp-statistics/wp-statistics.php:181
|
123 |
+
msgid "geoip collection"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: wp-statistics/wp-statistics.php:197
|
127 |
+
msgid "visit database index"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: wp-statistics/wp-statistics.php:206
|
131 |
+
msgid "Database updates are required, please go to %s and update the following: %s"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: wp-statistics/wp-statistics.php:197
|
135 |
+
msgid "countries database index"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: wp-statistics/wp-statistics.php:190
|
139 |
+
msgid "search table"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: wp-statistics/wp-statistics.php:184
|
143 |
+
msgid "settings page"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: wp-statistics/wp-statistics.php:184 wp-statistics/wp-statistics.php:206
|
147 |
+
msgid ","
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: wp-statistics/wp-statistics.php:184
|
151 |
+
msgid "The following features are disabled, please go to %s and enable them: %s"
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: wp-statistics/wp-statistics.php:179
|
155 |
+
msgid "hit tracking"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: wp-statistics/wp-statistics.php:178
|
159 |
+
msgid "online user tracking"
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: wp-statistics/wp-statistics.php:791
|
163 |
+
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: wp-statistics/includes/optimization/wps-optimization.php:196
|
167 |
+
msgid "Search table conversion complete, %d rows added."
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:113
|
171 |
+
msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion."
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:94
|
175 |
+
msgid "Search Table"
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:99
|
179 |
+
msgid "Convert"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:106
|
183 |
+
msgid "Convert Now!"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:107
|
187 |
+
msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion, however the old data must first be converted to the new format before it can be used."
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: wp-statistics/includes/log/exclusions.php:24
|
191 |
+
msgid "Referrer Spam"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:279
|
195 |
+
msgid "Download of the Piwik Referrer Spam Blacklist database will be scheduled for once a week."
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: wp-statistics/includes/settings/wps-settings.php:105
|
199 |
+
msgid "Externals"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:220
|
203 |
+
msgid "Piwik Referrer Spam Blacklist settings"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:255
|
207 |
+
msgid "Schedule weekly update of Piwik Referrer Spam Blacklist DB"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:248
|
211 |
+
msgid "Download Piwik Referrer Spam Blacklist Database"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:243
|
215 |
+
msgid "Update Piwik Referrer Spam Blacklist Info"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:237
|
219 |
+
msgid "The Piwik Referrer Spam Blacklist database will be downloaded and used to detect referrer spam."
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:225
|
223 |
+
msgid "Referrer spam blacklist is provided by Piwik, available from %s."
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:231
|
227 |
+
msgid "Piwik Referrer Spam Blacklist usage"
|
228 |
+
msgstr ""
|
229 |
+
|
230 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:148
|
231 |
+
msgid "Treat corrupt browser info as a bot"
|
232 |
+
msgstr ""
|
233 |
+
|
234 |
+
#: wp-statistics/includes/log/exclusions.php:24
|
235 |
+
msgid "404 Pages"
|
236 |
+
msgstr ""
|
237 |
+
|
238 |
+
#: wp-statistics/includes/log/top-visitors.php:26
|
239 |
+
msgid "Date"
|
240 |
+
msgstr ""
|
241 |
+
|
242 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:151
|
243 |
+
msgid "Treat any visitor with corrupt browser info (missing IP address or empty user agent string) as a robot."
|
244 |
+
msgstr ""
|
245 |
+
|
246 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:215
|
247 |
+
msgid "Excluded 404 pages"
|
248 |
+
msgstr ""
|
249 |
+
|
250 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:218
|
251 |
+
msgid "Exclude any URL that returns a \"404 - Not Found\" message."
|
252 |
+
msgstr ""
|
253 |
+
|
254 |
+
#: wp-statistics/wps-updates.php:37
|
255 |
+
msgid "Error creating GeoIP database directory, make sure your web server has permissions to create directories in : %s"
|
256 |
+
msgstr ""
|
257 |
+
|
258 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:281
|
259 |
+
msgid "Add page title to empty search words"
|
260 |
+
msgstr ""
|
261 |
+
|
262 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:287
|
263 |
+
msgid "If a search engine is identified as the referrer but it does not include the search query this option will substitute the page title in quotes preceded by \"~:\" as the search query to help identify what the user may have been searching for."
|
264 |
+
msgstr ""
|
265 |
+
|
266 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:218
|
267 |
+
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:75
|
268 |
+
msgid "Purge visitors with more than"
|
269 |
+
msgstr ""
|
270 |
+
|
271 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:223
|
272 |
+
msgid "hits"
|
273 |
+
msgstr ""
|
274 |
+
|
275 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:224
|
276 |
+
msgid "Deleted user statistics data where the user has more than the defined number of hits in a day. This can be useful to clear up old data when your site has been hit by a bot. This will remove the visitor and their hits to the site, however it will not remove individual page hits as that data is not recorded on a per use basis. Minimum value is 10 hits."
|
277 |
+
msgstr ""
|
278 |
+
|
279 |
+
#: wp-statistics/includes/functions/purge-hits.php:28
|
280 |
+
msgid "No visitors found to purge."
|
281 |
+
msgstr ""
|
282 |
+
|
283 |
+
#: wp-statistics/includes/functions/purge-hits.php:25
|
284 |
+
msgid "%s records purged successfully."
|
285 |
+
msgstr ""
|
286 |
+
|
287 |
+
#: wp-statistics/ajax.php:178
|
288 |
+
#: wp-statistics/includes/functions/purge-hits.php:32
|
289 |
+
msgid "Number of hits must be greater than or equal to 10!"
|
290 |
+
msgstr ""
|
291 |
+
|
292 |
+
#: wp-statistics/shortcode.php:141
|
293 |
+
msgid "Page Visits"
|
294 |
+
msgstr ""
|
295 |
+
|
296 |
+
#: wp-statistics/shortcode.php:144
|
297 |
+
msgid "Page Count"
|
298 |
+
msgstr ""
|
299 |
+
|
300 |
+
#: wp-statistics/shortcode.php:145
|
301 |
+
msgid "Comment Count"
|
302 |
+
msgstr ""
|
303 |
+
|
304 |
+
#: wp-statistics/shortcode.php:146
|
305 |
+
msgid "Spam Count"
|
306 |
+
msgstr ""
|
307 |
+
|
308 |
+
#: wp-statistics/shortcode.php:147
|
309 |
+
msgid "User Count"
|
310 |
+
msgstr ""
|
311 |
+
|
312 |
+
#: wp-statistics/shortcode.php:148
|
313 |
+
msgid "Post Average"
|
314 |
+
msgstr ""
|
315 |
+
|
316 |
+
#: wp-statistics/shortcode.php:149
|
317 |
+
msgid "Comment Average"
|
318 |
+
msgstr ""
|
319 |
+
|
320 |
+
#: wp-statistics/shortcode.php:150
|
321 |
+
msgid "User Average"
|
322 |
+
msgstr ""
|
323 |
+
|
324 |
+
#: wp-statistics/shortcode.php:162
|
325 |
+
msgid "Search Provider"
|
326 |
+
msgstr ""
|
327 |
+
|
328 |
+
#: wp-statistics/shortcode.php:165
|
329 |
+
msgid "The search provider to get statistics on."
|
330 |
+
msgstr ""
|
331 |
+
|
332 |
+
#: wp-statistics/shortcode.php:169
|
333 |
+
msgid "Number Format"
|
334 |
+
msgstr ""
|
335 |
+
|
336 |
+
#: wp-statistics/shortcode.php:172
|
337 |
+
msgid "The format to display numbers in: i18n, english, none."
|
338 |
+
msgstr ""
|
339 |
+
|
340 |
+
#: wp-statistics/shortcode.php:176
|
341 |
+
msgid "English"
|
342 |
+
msgstr ""
|
343 |
+
|
344 |
+
#: wp-statistics/shortcode.php:177
|
345 |
+
msgid "International"
|
346 |
+
msgstr ""
|
347 |
+
|
348 |
+
#: wp-statistics/includes/log/exclusions.php:191
|
349 |
+
#: wp-statistics/includes/log/hit-statistics.php:164
|
350 |
+
msgid "Hits Statistics Summary"
|
351 |
+
msgstr ""
|
352 |
+
|
353 |
+
#: wp-statistics/includes/log/exclusions.php:201
|
354 |
+
#: wp-statistics/includes/log/hit-statistics.php:175
|
355 |
+
msgid "Chart Total"
|
356 |
+
msgstr ""
|
357 |
+
|
358 |
+
#: wp-statistics/includes/log/exclusions.php:206
|
359 |
+
#: wp-statistics/includes/log/hit-statistics.php:181
|
360 |
+
msgid "All Time Total"
|
361 |
+
msgstr ""
|
362 |
+
|
363 |
+
#: wp-statistics/includes/log/log.php:6
|
364 |
+
msgid "Have you thought about donating to WP Statistics?"
|
365 |
+
msgstr ""
|
366 |
+
|
367 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:20
|
368 |
+
#: wp-statistics/wp-statistics.php:429
|
369 |
+
msgid "Donate"
|
370 |
+
msgstr ""
|
371 |
+
|
372 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:24
|
373 |
+
msgid "Fell like showing us how much you enjoy WP Statistics? Drop by our %s page and show us some love!"
|
374 |
+
msgstr ""
|
375 |
+
|
376 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:24
|
377 |
+
msgid "donation"
|
378 |
+
msgstr ""
|
379 |
+
|
380 |
+
#: wp-statistics/includes/log/log.php:6
|
381 |
+
msgid "Donate Now!"
|
382 |
+
msgstr ""
|
383 |
+
|
384 |
+
#: wp-statistics/includes/log/log.php:6
|
385 |
+
msgid "Close"
|
386 |
+
msgstr ""
|
387 |
+
|
388 |
+
#: wp-statistics/shortcode.php:135
|
389 |
+
msgid "Select the statistic you wish to display."
|
390 |
+
msgstr ""
|
391 |
+
|
392 |
+
#: wp-statistics/shortcode.php:132
|
393 |
+
msgid "Statistic"
|
394 |
+
msgstr ""
|
395 |
+
|
396 |
+
#: wp-statistics/shortcode.php:143
|
397 |
+
msgid "Post Count"
|
398 |
+
msgstr ""
|
399 |
+
|
400 |
+
#: wp-statistics/shortcode.php:155
|
401 |
+
msgid "Time Frame"
|
402 |
+
msgstr ""
|
403 |
+
|
404 |
+
#: wp-statistics/includes/functions/functions.php:1032
|
405 |
+
msgid "to"
|
406 |
+
msgstr ""
|
407 |
+
|
408 |
+
#: wp-statistics/includes/functions/functions.php:1032
|
409 |
+
#: wp-statistics/includes/log/top-visitors.php:29
|
410 |
+
msgid "Go"
|
411 |
+
msgstr ""
|
412 |
+
|
413 |
+
#: wp-statistics/includes/log/top-pages.php:102
|
414 |
+
msgid "Rank #5"
|
415 |
+
msgstr ""
|
416 |
+
|
417 |
+
#: wp-statistics/includes/log/top-pages.php:102
|
418 |
+
msgid "Rank #4"
|
419 |
+
msgstr ""
|
420 |
+
|
421 |
+
#: wp-statistics/includes/log/top-pages.php:102
|
422 |
+
msgid "Rank #3"
|
423 |
+
msgstr ""
|
424 |
+
|
425 |
+
#: wp-statistics/includes/log/top-pages.php:102
|
426 |
+
msgid "Rank #1"
|
427 |
+
msgstr ""
|
428 |
+
|
429 |
+
#: wp-statistics/includes/log/top-pages.php:102
|
430 |
+
msgid "Rank #2"
|
431 |
+
msgstr ""
|
432 |
+
|
433 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:60
|
434 |
+
msgid "Visits Table"
|
435 |
+
msgstr ""
|
436 |
+
|
437 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:75
|
438 |
+
msgid "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."
|
439 |
+
msgstr ""
|
440 |
+
|
441 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:76
|
442 |
+
msgid "This operation could take a long time on installs with many rows in the visits table."
|
443 |
+
msgstr ""
|
444 |
+
|
445 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:82
|
446 |
+
msgid "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."
|
447 |
+
msgstr ""
|
448 |
+
|
449 |
+
#: wp-statistics/includes/log/last-visitor.php:68
|
450 |
+
msgid "Filtered by"
|
451 |
+
msgstr ""
|
452 |
+
|
453 |
+
#: wp-statistics/includes/functions/functions.php:1026
|
454 |
+
#: wp-statistics/includes/functions/functions.php:1029
|
455 |
+
msgid "Range"
|
456 |
+
msgstr ""
|
457 |
+
|
458 |
+
#: wp-statistics/includes/functions/functions.php:1032
|
459 |
+
#: wp-statistics/includes/log/top-visitors.php:29
|
460 |
+
msgid "MM/DD/YYYY"
|
461 |
+
msgstr ""
|
462 |
+
|
463 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:342
|
464 |
+
msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
|
465 |
+
msgstr ""
|
466 |
+
|
467 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:336
|
468 |
+
msgid "Force English"
|
469 |
+
msgstr ""
|
470 |
+
|
471 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:331
|
472 |
+
msgid "Languages"
|
473 |
+
msgstr ""
|
474 |
+
|
475 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:227
|
476 |
+
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."
|
477 |
+
msgstr ""
|
478 |
+
|
479 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:225
|
480 |
+
msgid "A list of local urls (ie. /wordpress/about, one per line) to exclude from statistics collection."
|
481 |
+
msgstr ""
|
482 |
+
|
483 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:222
|
484 |
+
msgid "Excluded URLs list"
|
485 |
+
msgstr ""
|
486 |
+
|
487 |
+
#: wp-statistics/includes/log/exclusions.php:24
|
488 |
+
msgid "Excluded URL"
|
489 |
+
msgstr ""
|
490 |
+
|
491 |
+
#: wp-statistics/includes/log/widgets/quickstats.php:52
|
492 |
+
#: wp-statistics/includes/log/widgets/summary.php:52
|
493 |
+
msgid "Last 365 Days (Year)"
|
494 |
+
msgstr ""
|
495 |
+
|
496 |
+
#: wp-statistics/includes/log/widgets/quickstats.php:46
|
497 |
+
#: wp-statistics/includes/log/widgets/summary.php:46
|
498 |
+
msgid "Last 30 Days (Month)"
|
499 |
+
msgstr ""
|
500 |
+
|
501 |
+
#: wp-statistics/includes/log/widgets/quickstats.php:40
|
502 |
+
#: wp-statistics/includes/log/widgets/summary.php:40
|
503 |
+
msgid "Last 7 Days (Week)"
|
504 |
+
msgstr ""
|
505 |
+
|
506 |
+
#: wp-statistics/includes/functions/functions.php:441
|
507 |
+
msgid "Yahoo!"
|
508 |
+
msgstr ""
|
509 |
+
|
510 |
+
#: wp-statistics/includes/functions/functions.php:442
|
511 |
+
msgid "Yandex"
|
512 |
+
msgstr ""
|
513 |
+
|
514 |
+
#: wp-statistics/includes/functions/functions.php:438
|
515 |
+
msgid "clearch.org"
|
516 |
+
msgstr ""
|
517 |
+
|
518 |
+
#: wp-statistics/includes/functions/functions.php:439
|
519 |
+
msgid "DuckDuckGo"
|
520 |
+
msgstr ""
|
521 |
+
|
522 |
+
#: wp-statistics/includes/functions/functions.php:437
|
523 |
+
msgid "Bing"
|
524 |
+
msgstr ""
|
525 |
+
|
526 |
+
#: wp-statistics/includes/functions/functions.php:436
|
527 |
+
msgid "Baidu"
|
528 |
+
msgstr ""
|
529 |
+
|
530 |
+
#: wp-statistics/includes/log/exclusions.php:24
|
531 |
+
msgid "Feeds"
|
532 |
+
msgstr ""
|
533 |
+
|
534 |
+
#: wp-statistics/includes/log/exclusions.php:24
|
535 |
+
msgid "User Role"
|
536 |
+
msgstr ""
|
537 |
+
|
538 |
+
#: wp-statistics/includes/log/exclusions.php:24
|
539 |
+
msgid "Login Page"
|
540 |
+
msgstr ""
|
541 |
+
|
542 |
+
#: wp-statistics/includes/log/exclusions.php:24
|
543 |
+
msgid "Admin Page"
|
544 |
+
msgstr ""
|
545 |
+
|
546 |
+
#: wp-statistics/includes/log/exclusions.php:24
|
547 |
+
msgid "Self Referral"
|
548 |
+
msgstr ""
|
549 |
+
|
550 |
+
#: wp-statistics/includes/log/exclusions.php:24
|
551 |
+
msgid "IP Match"
|
552 |
+
msgstr ""
|
553 |
+
|
554 |
+
#: wp-statistics/includes/log/exclusions.php:24
|
555 |
+
msgid "Robot"
|
556 |
+
msgstr ""
|
557 |
+
|
558 |
+
#: wp-statistics/includes/log/online.php:100
|
559 |
+
msgid "Currently there are no users online in the site."
|
560 |
+
msgstr ""
|
561 |
+
|
562 |
+
#: wp-statistics/includes/log/exclusions.php:24
|
563 |
+
msgid "Robot Threshold"
|
564 |
+
msgstr ""
|
565 |
+
|
566 |
+
#: wp-statistics/includes/log/exclusions.php:24
|
567 |
+
msgid "Honey Pot"
|
568 |
+
msgstr ""
|
569 |
+
|
570 |
+
#: wp-statistics/includes/log/widgets/page.php:8
|
571 |
+
msgid "Page Trending Stats"
|
572 |
+
msgstr ""
|
573 |
+
|
574 |
+
#: wp-statistics/includes/log/exclusions.php:24
|
575 |
+
msgid "Hostname"
|
576 |
+
msgstr ""
|
577 |
+
|
578 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:93
|
579 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:133
|
580 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:149
|
581 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:188
|
582 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:200
|
583 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:229
|
584 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:122
|
585 |
+
msgid "Enable or disable this feature"
|
586 |
+
msgstr ""
|
587 |
+
|
588 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:99
|
589 |
+
msgid "Check for online users every"
|
590 |
+
msgstr ""
|
591 |
+
|
592 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:104
|
593 |
+
msgid "Second"
|
594 |
+
msgstr ""
|
595 |
+
|
596 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:105
|
597 |
+
msgid "Time for the check accurate online user in the site. Now: %s Second"
|
598 |
+
msgstr ""
|
599 |
+
|
600 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:111
|
601 |
+
msgid "Record all user"
|
602 |
+
msgstr ""
|
603 |
+
|
604 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:117
|
605 |
+
msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
|
606 |
+
msgstr ""
|
607 |
+
|
608 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:155
|
609 |
+
msgid "Store entire user agent string"
|
610 |
+
msgstr ""
|
611 |
+
|
612 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:161
|
613 |
+
msgid "Only enabled for debugging"
|
614 |
+
msgstr ""
|
615 |
+
|
616 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:167
|
617 |
+
msgid "Coefficient per visitor"
|
618 |
+
msgstr ""
|
619 |
+
|
620 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:172
|
621 |
+
msgid "For each visit to account for several hits. Currently %s."
|
622 |
+
msgstr ""
|
623 |
+
|
624 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
625 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
626 |
+
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:532
|
627 |
+
msgid "Pages"
|
628 |
+
msgstr ""
|
629 |
+
|
630 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:194
|
631 |
+
msgid "Track all pages"
|
632 |
+
msgstr ""
|
633 |
+
|
634 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:209
|
635 |
+
msgid "Strip parameters from URI"
|
636 |
+
msgstr ""
|
637 |
+
|
638 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:215
|
639 |
+
msgid "This will remove anything after the ? in a URL."
|
640 |
+
msgstr ""
|
641 |
+
|
642 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:223
|
643 |
+
msgid "Disable hits column in post/pages list"
|
644 |
+
msgstr ""
|
645 |
+
|
646 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:234
|
647 |
+
msgid "Miscellaneous"
|
648 |
+
msgstr ""
|
649 |
+
|
650 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:239
|
651 |
+
msgid "Show stats in menu bar"
|
652 |
+
msgstr ""
|
653 |
+
|
654 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:244
|
655 |
+
msgid "No"
|
656 |
+
msgstr ""
|
657 |
+
|
658 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:245
|
659 |
+
msgid "Yes"
|
660 |
+
msgstr ""
|
661 |
+
|
662 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:247
|
663 |
+
msgid "Show stats in admin menu bar"
|
664 |
+
msgstr ""
|
665 |
+
|
666 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:253
|
667 |
+
msgid "Hide admin notices about non active features"
|
668 |
+
msgstr ""
|
669 |
+
|
670 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:259
|
671 |
+
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."
|
672 |
+
msgstr ""
|
673 |
+
|
674 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:265
|
675 |
+
msgid "Delete the manual"
|
676 |
+
msgstr ""
|
677 |
+
|
678 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:271
|
679 |
+
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."
|
680 |
+
msgstr ""
|
681 |
+
|
682 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:276
|
683 |
+
msgid "Search Engines"
|
684 |
+
msgstr ""
|
685 |
+
|
686 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:293
|
687 |
+
msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
|
688 |
+
msgstr ""
|
689 |
+
|
690 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:308
|
691 |
+
msgid "disable"
|
692 |
+
msgstr ""
|
693 |
+
|
694 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:309
|
695 |
+
msgid "Disable %s from data collection and reporting."
|
696 |
+
msgstr ""
|
697 |
+
|
698 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:315
|
699 |
+
msgid "Charts"
|
700 |
+
msgstr ""
|
701 |
+
|
702 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:320
|
703 |
+
msgid "Include totals"
|
704 |
+
msgstr ""
|
705 |
+
|
706 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:326
|
707 |
+
msgid "Add a total line to charts with multiple values, like the search engine referrals"
|
708 |
+
msgstr ""
|
709 |
+
|
710 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:32
|
711 |
+
msgid "GeoIP settings"
|
712 |
+
msgstr ""
|
713 |
+
|
714 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:37
|
715 |
+
msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
|
716 |
+
msgstr ""
|
717 |
+
|
718 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:47
|
719 |
+
msgid "GeoIP collection"
|
720 |
+
msgstr ""
|
721 |
+
|
722 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:53
|
723 |
+
msgid "For get more information and location (country) from visitor, enable this feature."
|
724 |
+
msgstr ""
|
725 |
+
|
726 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:59
|
727 |
+
msgid "Update GeoIP Info"
|
728 |
+
msgstr ""
|
729 |
+
|
730 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:64
|
731 |
+
msgid "Download GeoIP Database"
|
732 |
+
msgstr ""
|
733 |
+
|
734 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:71
|
735 |
+
msgid "Schedule monthly update of GeoIP DB"
|
736 |
+
msgstr ""
|
737 |
+
|
738 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:97
|
739 |
+
msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
|
740 |
+
msgstr ""
|
741 |
+
|
742 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:98
|
743 |
+
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)."
|
744 |
+
msgstr ""
|
745 |
+
|
746 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:104
|
747 |
+
msgid "Populate missing GeoIP after update of GeoIP DB"
|
748 |
+
msgstr ""
|
749 |
+
|
750 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:110
|
751 |
+
msgid "Update any missing GeoIP data after downloading a new database."
|
752 |
+
msgstr ""
|
753 |
+
|
754 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:116
|
755 |
+
msgid "Country code for private IP addresses"
|
756 |
+
msgstr ""
|
757 |
+
|
758 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:121
|
759 |
+
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."
|
760 |
+
msgstr ""
|
761 |
+
|
762 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:132
|
763 |
+
msgid "GeoIP collection is disabled due to the following reasons:"
|
764 |
+
msgstr ""
|
765 |
+
|
766 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:135
|
767 |
+
msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
|
768 |
+
msgstr ""
|
769 |
+
|
770 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:140
|
771 |
+
msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
|
772 |
+
msgstr ""
|
773 |
+
|
774 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:146
|
775 |
+
msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
|
776 |
+
msgstr ""
|
777 |
+
|
778 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:152
|
779 |
+
msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
|
780 |
+
msgstr ""
|
781 |
+
|
782 |
+
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:20
|
783 |
+
msgid "This will permanently delete data from the database each day, are you sure you want to enable this option?"
|
784 |
+
msgstr ""
|
785 |
+
|
786 |
+
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:52
|
787 |
+
msgid "Days"
|
788 |
+
msgstr ""
|
789 |
+
|
790 |
+
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:53
|
791 |
+
msgid "The number of days to keep statistics for. Minimum value is 30 days. Invalid values will disable the daily maintenance."
|
792 |
+
msgstr ""
|
793 |
+
|
794 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:44
|
795 |
+
msgid "Common Report Options"
|
796 |
+
msgstr ""
|
797 |
+
|
798 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:49
|
799 |
+
msgid "E-mail addresses"
|
800 |
+
msgstr ""
|
801 |
+
|
802 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:54
|
803 |
+
msgid "A comma separated list of e-mail addresses to send reports to."
|
804 |
+
msgstr ""
|
805 |
+
|
806 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:59
|
807 |
+
msgid "Update Reports"
|
808 |
+
msgstr ""
|
809 |
+
|
810 |
+
#: wp-statistics/includes/log/exclusions.php:24
|
811 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:64
|
812 |
+
msgid "Browscap"
|
813 |
+
msgstr ""
|
814 |
+
|
815 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:70
|
816 |
+
msgid "Send a report whenever the browscap.ini is updated."
|
817 |
+
msgstr ""
|
818 |
+
|
819 |
+
#: wp-statistics/includes/log/exclusions.php:24
|
820 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:76
|
821 |
+
msgid "GeoIP"
|
822 |
+
msgstr ""
|
823 |
+
|
824 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:82
|
825 |
+
msgid "Send a report whenever the GeoIP database is updated."
|
826 |
+
msgstr ""
|
827 |
+
|
828 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:88
|
829 |
+
msgid "Pruning"
|
830 |
+
msgstr ""
|
831 |
+
|
832 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:94
|
833 |
+
msgid "Send a report whenever the pruning of database is run."
|
834 |
+
msgstr ""
|
835 |
+
|
836 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:100
|
837 |
+
msgid "Upgrade"
|
838 |
+
msgstr ""
|
839 |
+
|
840 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:106
|
841 |
+
msgid "Send a report whenever the plugin is upgraded."
|
842 |
+
msgstr ""
|
843 |
+
|
844 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:111
|
845 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:116
|
846 |
+
#: wp-statistics/schedule.php:221
|
847 |
+
msgid "Statistical reporting"
|
848 |
+
msgstr ""
|
849 |
+
|
850 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:129
|
851 |
+
msgid "Schedule"
|
852 |
+
msgstr ""
|
853 |
+
|
854 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:153
|
855 |
+
msgid "Select how often to receive statistical report."
|
856 |
+
msgstr ""
|
857 |
+
|
858 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:159
|
859 |
+
msgid "Send reports via"
|
860 |
+
msgstr ""
|
861 |
+
|
862 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:165
|
863 |
+
msgid "Email"
|
864 |
+
msgstr ""
|
865 |
+
|
866 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:167
|
867 |
+
msgid "SMS"
|
868 |
+
msgstr ""
|
869 |
+
|
870 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:170
|
871 |
+
msgid "Select delivery method for statistical report."
|
872 |
+
msgstr ""
|
873 |
+
|
874 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:173
|
875 |
+
msgid "Note: To send SMS text messages please install the %s plugin."
|
876 |
+
msgstr ""
|
877 |
+
|
878 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:173
|
879 |
+
msgid "WordPress SMS"
|
880 |
+
msgstr ""
|
881 |
+
|
882 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:180
|
883 |
+
msgid "Report body"
|
884 |
+
msgstr ""
|
885 |
+
|
886 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:185
|
887 |
+
msgid "Enter the contents of the report."
|
888 |
+
msgstr ""
|
889 |
+
|
890 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:187
|
891 |
+
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:"
|
892 |
+
msgstr ""
|
893 |
+
|
894 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
895 |
+
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
896 |
+
#: wp-statistics/wp-statistics.php:637
|
897 |
+
msgid "User Online"
|
898 |
+
msgstr ""
|
899 |
+
|
900 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:189
|
901 |
+
#: wp-statistics/widget.php:52 wp-statistics/widget.php:253
|
902 |
+
msgid "Today Visitor"
|
903 |
+
msgstr ""
|
904 |
+
|
905 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:190
|
906 |
+
#: wp-statistics/widget.php:45 wp-statistics/widget.php:250
|
907 |
+
msgid "Today Visit"
|
908 |
+
msgstr ""
|
909 |
+
|
910 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:191
|
911 |
+
#: wp-statistics/widget.php:66 wp-statistics/widget.php:259
|
912 |
+
msgid "Yesterday Visitor"
|
913 |
+
msgstr ""
|
914 |
+
|
915 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:192
|
916 |
+
#: wp-statistics/widget.php:59
|
917 |
+
msgid "Yesterday Visit"
|
918 |
+
msgstr ""
|
919 |
+
|
920 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:193
|
921 |
+
#: wp-statistics/widget.php:101 wp-statistics/widget.php:274
|
922 |
+
msgid "Total Visitor"
|
923 |
+
msgstr ""
|
924 |
+
|
925 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:194
|
926 |
+
#: wp-statistics/widget.php:94 wp-statistics/widget.php:271
|
927 |
+
msgid "Total Visit"
|
928 |
+
msgstr ""
|
929 |
+
|
930 |
+
#: wp-statistics/shortcode.php:175
|
931 |
+
msgid "None"
|
932 |
+
msgstr ""
|
933 |
+
|
934 |
+
#: wp-statistics/includes/settings/wps-settings.php:108
|
935 |
+
msgid "About"
|
936 |
+
msgstr ""
|
937 |
+
|
938 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:20
|
939 |
+
msgid "Dashboard"
|
940 |
+
msgstr ""
|
941 |
+
|
942 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:24
|
943 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:44
|
944 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:64
|
945 |
+
msgid "The following items are global to all users."
|
946 |
+
msgstr ""
|
947 |
+
|
948 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:29
|
949 |
+
msgid "Disable dashboard widgets"
|
950 |
+
msgstr ""
|
951 |
+
|
952 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:35
|
953 |
+
msgid "Disable the dashboard widgets."
|
954 |
+
msgstr ""
|
955 |
+
|
956 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:40
|
957 |
+
msgid "Page/Post Editor"
|
958 |
+
msgstr ""
|
959 |
+
|
960 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:49
|
961 |
+
msgid "Disable post/page editor widget"
|
962 |
+
msgstr ""
|
963 |
+
|
964 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:55
|
965 |
+
msgid "Disable the page/post editor widget."
|
966 |
+
msgstr ""
|
967 |
+
|
968 |
+
#: wp-statistics/includes/functions/functions.php:440
|
969 |
+
msgid "Google"
|
970 |
+
msgstr ""
|
971 |
+
|
972 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
973 |
+
msgid "Disable map"
|
974 |
+
msgstr ""
|
975 |
+
|
976 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
977 |
+
msgid "Disable the map display"
|
978 |
+
msgstr ""
|
979 |
+
|
980 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:81
|
981 |
+
msgid "Get country location from Google"
|
982 |
+
msgstr ""
|
983 |
+
|
984 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:87
|
985 |
+
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
986 |
+
msgstr ""
|
987 |
+
|
988 |
+
#: wp-statistics/includes/settings/tabs/wps-removal.php:15
|
989 |
+
msgid "WP Statisitcs Removal"
|
990 |
+
msgstr ""
|
991 |
+
|
992 |
+
#: wp-statistics/includes/settings/tabs/wps-removal.php:20
|
993 |
+
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."
|
994 |
+
msgstr ""
|
995 |
+
|
996 |
+
#: wp-statistics/includes/settings/tabs/wps-removal.php:23
|
997 |
+
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."
|
998 |
+
msgstr ""
|
999 |
+
|
1000 |
+
#: wp-statistics/includes/settings/tabs/wps-removal.php:29
|
1001 |
+
msgid "Remove data and settings"
|
1002 |
+
msgstr ""
|
1003 |
+
|
1004 |
+
#: wp-statistics/includes/settings/tabs/wps-removal.php:34
|
1005 |
+
msgid "Remove"
|
1006 |
+
msgstr ""
|
1007 |
+
|
1008 |
+
#: wp-statistics/includes/settings/tabs/wps-removal.php:35
|
1009 |
+
msgid "Remove data and settings, this action cannot be undone."
|
1010 |
+
msgstr ""
|
1011 |
+
|
1012 |
+
#: wp-statistics/includes/settings/wps-settings.php:100
|
1013 |
+
msgid "General"
|
1014 |
+
msgstr ""
|
1015 |
+
|
1016 |
+
#: wp-statistics/includes/settings/wps-settings.php:101
|
1017 |
+
msgid "Notifications"
|
1018 |
+
msgstr ""
|
1019 |
+
|
1020 |
+
#: wp-statistics/includes/settings/wps-settings.php:102
|
1021 |
+
msgid "Dashboard/Overview"
|
1022 |
+
msgstr ""
|
1023 |
+
|
1024 |
+
#: wp-statistics/includes/settings/wps-settings.php:106
|
1025 |
+
msgid "Maintenance"
|
1026 |
+
msgstr ""
|
1027 |
+
|
1028 |
+
#: wp-statistics/includes/settings/wps-settings.php:107
|
1029 |
+
msgid "Removal"
|
1030 |
+
msgstr ""
|
1031 |
+
|
1032 |
+
#: wp-statistics/includes/settings/tabs/wps-access-level.php:85
|
1033 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:234
|
1034 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:286
|
1035 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1036 |
+
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1037 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1038 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:96
|
1039 |
+
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1040 |
+
msgid "Update"
|
1041 |
+
msgstr ""
|
1042 |
+
|
1043 |
+
#: wp-statistics/schedule.php:10
|
1044 |
+
msgid "Once Weekly"
|
1045 |
+
msgstr ""
|
1046 |
+
|
1047 |
+
#: wp-statistics/schedule.php:17
|
1048 |
+
msgid "Once Every 2 Weeks"
|
1049 |
+
msgstr ""
|
1050 |
+
|
1051 |
+
#: wp-statistics/schedule.php:24
|
1052 |
+
msgid "Once Every 4 Weeks"
|
1053 |
+
msgstr ""
|
1054 |
+
|
1055 |
+
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1056 |
+
#: wp-statistics/wp-statistics.php:485
|
1057 |
+
msgid "Statistics"
|
1058 |
+
msgstr ""
|
1059 |
+
|
1060 |
+
#: wp-statistics/widget.php:15
|
1061 |
+
msgid "Show site stats in sidebar."
|
1062 |
+
msgstr ""
|
1063 |
+
|
1064 |
+
#: wp-statistics/widget.php:73 wp-statistics/widget.php:262
|
1065 |
+
msgid "Week Visit"
|
1066 |
+
msgstr ""
|
1067 |
+
|
1068 |
+
#: wp-statistics/widget.php:80 wp-statistics/widget.php:265
|
1069 |
+
msgid "Month Visit"
|
1070 |
+
msgstr ""
|
1071 |
+
|
1072 |
+
#: wp-statistics/widget.php:87 wp-statistics/widget.php:268
|
1073 |
+
msgid "Years Visit"
|
1074 |
+
msgstr ""
|
1075 |
+
|
1076 |
+
#: wp-statistics/widget.php:108 wp-statistics/widget.php:277
|
1077 |
+
msgid "Total Page Views"
|
1078 |
+
msgstr ""
|
1079 |
+
|
1080 |
+
#: wp-statistics/widget.php:116
|
1081 |
+
msgid "Search Engine referred"
|
1082 |
+
msgstr ""
|
1083 |
+
|
1084 |
+
#: wp-statistics/widget.php:123 wp-statistics/widget.php:300
|
1085 |
+
msgid "Total Posts"
|
1086 |
+
msgstr ""
|
1087 |
+
|
1088 |
+
#: wp-statistics/widget.php:130 wp-statistics/widget.php:303
|
1089 |
+
msgid "Total Pages"
|
1090 |
+
msgstr ""
|
1091 |
+
|
1092 |
+
#: wp-statistics/widget.php:137 wp-statistics/widget.php:306
|
1093 |
+
msgid "Total Comments"
|
1094 |
+
msgstr ""
|
1095 |
+
|
1096 |
+
#: wp-statistics/widget.php:144 wp-statistics/widget.php:309
|
1097 |
+
msgid "Total Spams"
|
1098 |
+
msgstr ""
|
1099 |
+
|
1100 |
+
#: wp-statistics/widget.php:151 wp-statistics/widget.php:312
|
1101 |
+
msgid "Total Users"
|
1102 |
+
msgstr ""
|
1103 |
+
|
1104 |
+
#: wp-statistics/widget.php:158 wp-statistics/widget.php:315
|
1105 |
+
msgid "Average Posts"
|
1106 |
+
msgstr ""
|
1107 |
+
|
1108 |
+
#: wp-statistics/widget.php:165 wp-statistics/widget.php:318
|
1109 |
+
msgid "Average Comments"
|
1110 |
+
msgstr ""
|
1111 |
+
|
1112 |
+
#: wp-statistics/widget.php:172 wp-statistics/widget.php:321
|
1113 |
+
msgid "Average Users"
|
1114 |
+
msgstr ""
|
1115 |
+
|
1116 |
+
#: wp-statistics/shortcode.php:151 wp-statistics/widget.php:179
|
1117 |
+
#: wp-statistics/widget.php:324
|
1118 |
+
msgid "Last Post Date"
|
1119 |
+
msgstr ""
|
1120 |
+
|
1121 |
+
#: wp-statistics/widget.php:240
|
1122 |
+
msgid "Name"
|
1123 |
+
msgstr ""
|
1124 |
+
|
1125 |
+
#: wp-statistics/widget.php:244
|
1126 |
+
msgid "Items"
|
1127 |
+
msgstr ""
|
1128 |
+
|
1129 |
+
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:662
|
1130 |
+
msgid "Yesterday visit"
|
1131 |
+
msgstr ""
|
1132 |
+
|
1133 |
+
#: wp-statistics/widget.php:280
|
1134 |
+
msgid "Search Engine Referred"
|
1135 |
+
msgstr ""
|
1136 |
+
|
1137 |
+
#: wp-statistics/widget.php:283
|
1138 |
+
msgid "Select type of search engine"
|
1139 |
+
msgstr ""
|
1140 |
+
|
1141 |
+
#: wp-statistics/wp-statistics.php:122
|
1142 |
+
msgid "WP Statistics has been removed, please disable and delete it."
|
1143 |
+
msgstr ""
|
1144 |
+
|
1145 |
+
#: wp-statistics/wp-statistics.php:54
|
1146 |
+
msgid "WP Statistics"
|
1147 |
+
msgstr ""
|
1148 |
+
|
1149 |
+
#: wp-statistics/wp-statistics.php:55
|
1150 |
+
msgid "Complete statistics for your WordPress site."
|
1151 |
+
msgstr ""
|
1152 |
+
|
1153 |
+
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1154 |
+
#: wp-statistics/wp-statistics.php:539
|
1155 |
+
msgid "Settings"
|
1156 |
+
msgstr ""
|
1157 |
+
|
1158 |
+
#: wp-statistics/wp-statistics.php:325
|
1159 |
+
msgid "Click here to visit the plugin on WordPress.org"
|
1160 |
+
msgstr ""
|
1161 |
+
|
1162 |
+
#: wp-statistics/wp-statistics.php:325
|
1163 |
+
msgid "Visit WordPress.org page"
|
1164 |
+
msgstr ""
|
1165 |
+
|
1166 |
+
#: wp-statistics/wp-statistics.php:328
|
1167 |
+
msgid "Click here to rate and review this plugin on WordPress.org"
|
1168 |
+
msgstr ""
|
1169 |
+
|
1170 |
+
#: wp-statistics/wp-statistics.php:328
|
1171 |
+
msgid "Rate this plugin"
|
1172 |
+
msgstr ""
|
1173 |
+
|
1174 |
+
#: wp-statistics/wp-statistics.php:372
|
1175 |
+
msgid "WP Statistics - Hits"
|
1176 |
+
msgstr ""
|
1177 |
+
|
1178 |
+
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:488
|
1179 |
+
#: wp-statistics/wp-statistics.php:526
|
1180 |
+
msgid "Overview"
|
1181 |
+
msgstr ""
|
1182 |
+
|
1183 |
+
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:531
|
1184 |
+
msgid "Online"
|
1185 |
+
msgstr ""
|
1186 |
+
|
1187 |
+
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:533
|
1188 |
+
msgid "Referrers"
|
1189 |
+
msgstr ""
|
1190 |
+
|
1191 |
+
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1192 |
+
#: wp-statistics/wp-statistics.php:534
|
1193 |
+
msgid "Searches"
|
1194 |
+
msgstr ""
|
1195 |
+
|
1196 |
+
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:535
|
1197 |
+
msgid "Search Words"
|
1198 |
+
msgstr ""
|
1199 |
+
|
1200 |
+
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:536
|
1201 |
+
msgid "Top Visitors Today"
|
1202 |
+
msgstr ""
|
1203 |
+
|
1204 |
+
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:538
|
1205 |
+
msgid "Optimization"
|
1206 |
+
msgstr ""
|
1207 |
+
|
1208 |
+
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:502
|
1209 |
+
msgid "Manual"
|
1210 |
+
msgstr ""
|
1211 |
+
|
1212 |
+
#: wp-statistics/wp-statistics.php:517
|
1213 |
+
msgid "Site"
|
1214 |
+
msgstr ""
|
1215 |
+
|
1216 |
+
#: wp-statistics/wp-statistics.php:518
|
1217 |
+
msgid "Options"
|
1218 |
+
msgstr ""
|
1219 |
+
|
1220 |
+
#: wp-statistics/wp-statistics.php:644
|
1221 |
+
msgid "Today visitor"
|
1222 |
+
msgstr ""
|
1223 |
+
|
1224 |
+
#: wp-statistics/wp-statistics.php:650
|
1225 |
+
msgid "Today visit"
|
1226 |
+
msgstr ""
|
1227 |
+
|
1228 |
+
#: wp-statistics/wp-statistics.php:656
|
1229 |
+
msgid "Yesterday visitor"
|
1230 |
+
msgstr ""
|
1231 |
+
|
1232 |
+
#: wp-statistics/wp-statistics.php:668
|
1233 |
+
msgid "View Stats"
|
1234 |
+
msgstr ""
|
1235 |
+
|
1236 |
+
#: wp-statistics/wp-statistics.php:692
|
1237 |
+
msgid "Download ODF file"
|
1238 |
+
msgstr ""
|
1239 |
+
|
1240 |
+
#: wp-statistics/wp-statistics.php:693
|
1241 |
+
msgid "Download HTML file"
|
1242 |
+
msgstr ""
|
1243 |
+
|
1244 |
+
#: wp-statistics/wp-statistics.php:697
|
1245 |
+
msgid "Manual file not found."
|
1246 |
+
msgstr ""
|
1247 |
+
|
1248 |
+
#: wp-statistics/wp-statistics.php:764 wp-statistics/wp-statistics.php:891
|
1249 |
+
#: wp-statistics/wp-statistics.php:926
|
1250 |
+
msgid "You do not have sufficient permissions to access this page."
|
1251 |
+
msgstr ""
|
1252 |
+
|
1253 |
+
#: wp-statistics/wp-statistics.php:301
|
1254 |
+
msgid "WP Statistics %s installed on"
|
1255 |
+
msgstr ""
|
1256 |
+
|
1257 |
+
#: wp-statistics/wps-updates.php:54
|
1258 |
+
msgid "Error downloading GeoIP database from: %s - %s"
|
1259 |
+
msgstr ""
|
1260 |
+
|
1261 |
+
#: wp-statistics/wps-updates.php:65
|
1262 |
+
msgid "Error could not open downloaded GeoIP database for reading: %s"
|
1263 |
+
msgstr ""
|
1264 |
+
|
1265 |
+
#: wp-statistics/wps-updates.php:72
|
1266 |
+
msgid "Error could not open destination GeoIP database for writing %s"
|
1267 |
+
msgstr ""
|
1268 |
+
|
1269 |
+
#: wp-statistics/wps-updates.php:88
|
1270 |
+
msgid "GeoIP Database updated successfully!"
|
1271 |
+
msgstr ""
|
1272 |
+
|
1273 |
+
#: wp-statistics/wps-updates.php:113
|
1274 |
+
msgid "GeoIP update on"
|
1275 |
+
msgstr ""
|
1276 |
+
|
1277 |
+
#: wp-statistics/wps-updates.php:180
|
1278 |
+
msgid "Error downloading browscap database from: %s - %s"
|
1279 |
+
msgstr ""
|
1280 |
+
|
1281 |
+
#: wp-statistics/wps-updates.php:289
|
1282 |
+
msgid "browscap database updated successfully!"
|
1283 |
+
msgstr ""
|
1284 |
+
|
1285 |
+
#: wp-statistics/wps-updates.php:299
|
1286 |
+
msgid "browscap database updated failed! Cache file too large, reverting to previous browscap.ini."
|
1287 |
+
msgstr ""
|
1288 |
+
|
1289 |
+
#: wp-statistics/wps-updates.php:307
|
1290 |
+
msgid "browscap database updated failed! New browscap.ini is mis-identifing user agents as crawlers, reverting to previous browscap.ini."
|
1291 |
+
msgstr ""
|
1292 |
+
|
1293 |
+
#: wp-statistics/wps-updates.php:329
|
1294 |
+
msgid "browscap already at current version!"
|
1295 |
+
msgstr ""
|
1296 |
+
|
1297 |
+
#: wp-statistics/wps-updates.php:342
|
1298 |
+
msgid "Browscap.ini update on"
|
1299 |
+
msgstr ""
|
1300 |
+
|
1301 |
+
#: wp-statistics/dashboard.php:56
|
1302 |
+
msgid "Quick Stats"
|
1303 |
+
msgstr ""
|
1304 |
+
|
1305 |
+
#: wp-statistics/dashboard.php:57
|
1306 |
+
#: wp-statistics/includes/log/widgets/browsers.php:41
|
1307 |
+
msgid "Top 10 Browsers"
|
1308 |
+
msgstr ""
|
1309 |
+
|
1310 |
+
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:471
|
1311 |
+
msgid "Top 10 Countries"
|
1312 |
+
msgstr ""
|
1313 |
+
|
1314 |
+
#: wp-statistics/dashboard.php:59
|
1315 |
+
msgid "Today's Visitor Map"
|
1316 |
+
msgstr ""
|
1317 |
+
|
1318 |
+
#: wp-statistics/dashboard.php:60 wp-statistics/editor.php:46
|
1319 |
+
#: wp-statistics/includes/log/hit-statistics.php:8
|
1320 |
+
#: wp-statistics/wp-statistics.php:446
|
1321 |
+
msgid "Hit Statistics"
|
1322 |
+
msgstr ""
|
1323 |
+
|
1324 |
+
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:461
|
1325 |
+
msgid "Top 10 Pages"
|
1326 |
+
msgstr ""
|
1327 |
+
|
1328 |
+
#: wp-statistics/dashboard.php:62
|
1329 |
+
#: wp-statistics/includes/log/last-visitor.php:36
|
1330 |
+
#: wp-statistics/wp-statistics.php:453
|
1331 |
+
msgid "Recent Visitors"
|
1332 |
+
msgstr ""
|
1333 |
+
|
1334 |
+
#: wp-statistics/dashboard.php:63
|
1335 |
+
#: wp-statistics/includes/log/top-referring.php:59
|
1336 |
+
#: wp-statistics/includes/log/top-referring.php:81
|
1337 |
+
#: wp-statistics/wp-statistics.php:468
|
1338 |
+
msgid "Top Referring Sites"
|
1339 |
+
msgstr ""
|
1340 |
+
|
1341 |
+
#: wp-statistics/dashboard.php:64
|
1342 |
+
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1343 |
+
#: wp-statistics/includes/log/widgets/summary.php:75
|
1344 |
+
#: wp-statistics/wp-statistics.php:451
|
1345 |
+
msgid "Search Engine Referrals"
|
1346 |
+
msgstr ""
|
1347 |
+
|
1348 |
+
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:466
|
1349 |
+
msgid "Summary"
|
1350 |
+
msgstr ""
|
1351 |
+
|
1352 |
+
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1353 |
+
#: wp-statistics/wp-statistics.php:452
|
1354 |
+
msgid "Latest Search Words"
|
1355 |
+
msgstr ""
|
1356 |
+
|
1357 |
+
#: wp-statistics/dashboard.php:67
|
1358 |
+
msgid "Top 10 Visitors Today"
|
1359 |
+
msgstr ""
|
1360 |
+
|
1361 |
+
#: wp-statistics/editor.php:58
|
1362 |
+
msgid "This post is not yet published."
|
1363 |
+
msgstr ""
|
1364 |
+
|
1365 |
+
#: wp-statistics/includes/functions/geoip-populate.php:24
|
1366 |
+
msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
|
1367 |
+
msgstr ""
|
1368 |
+
|
1369 |
+
#: wp-statistics/includes/functions/geoip-populate.php:48
|
1370 |
+
msgid "Updated %s GeoIP records in the visitors database."
|
1371 |
+
msgstr ""
|
1372 |
+
|
1373 |
+
#: wp-statistics/includes/functions/purge.php:21
|
1374 |
+
#: wp-statistics/includes/functions/purge.php:39
|
1375 |
+
#: wp-statistics/includes/functions/purge.php:50
|
1376 |
+
#: wp-statistics/includes/functions/purge.php:61
|
1377 |
+
#: wp-statistics/includes/functions/purge.php:94
|
1378 |
+
msgid "%s data older than %s days purged successfully."
|
1379 |
+
msgstr ""
|
1380 |
+
|
1381 |
+
#: wp-statistics/includes/functions/purge.php:23
|
1382 |
+
#: wp-statistics/includes/functions/purge.php:41
|
1383 |
+
#: wp-statistics/includes/functions/purge.php:52
|
1384 |
+
#: wp-statistics/includes/functions/purge.php:63
|
1385 |
+
#: wp-statistics/includes/functions/purge.php:96
|
1386 |
+
msgid "No records found to purge from %s!"
|
1387 |
+
msgstr ""
|
1388 |
+
|
1389 |
+
#: wp-statistics/includes/functions/purge-hits.php:45
|
1390 |
+
#: wp-statistics/includes/functions/purge.php:109
|
1391 |
+
msgid "Database pruned on"
|
1392 |
+
msgstr ""
|
1393 |
+
|
1394 |
+
#: wp-statistics/includes/functions/purge.php:114
|
1395 |
+
msgid "Please select a value over 30 days."
|
1396 |
+
msgstr ""
|
1397 |
+
|
1398 |
+
#: wp-statistics/includes/log/all-browsers.php:21
|
1399 |
+
msgid "Browser Statistics"
|
1400 |
+
msgstr ""
|
1401 |
+
|
1402 |
+
#: wp-statistics/includes/log/all-browsers.php:29
|
1403 |
+
#: wp-statistics/includes/log/all-browsers.php:113
|
1404 |
+
#: wp-statistics/includes/log/all-browsers.php:248
|
1405 |
+
#: wp-statistics/includes/log/exclusions.php:72
|
1406 |
+
#: wp-statistics/includes/log/exclusions.php:190
|
1407 |
+
#: wp-statistics/includes/log/hit-statistics.php:26
|
1408 |
+
#: wp-statistics/includes/log/hit-statistics.php:163
|
1409 |
+
#: wp-statistics/includes/log/last-search.php:64
|
1410 |
+
#: wp-statistics/includes/log/last-visitor.php:67
|
1411 |
+
#: wp-statistics/includes/log/online.php:17
|
1412 |
+
#: wp-statistics/includes/log/page-statistics.php:34
|
1413 |
+
#: wp-statistics/includes/log/search-statistics.php:27
|
1414 |
+
#: wp-statistics/includes/log/top-countries.php:26
|
1415 |
+
#: wp-statistics/includes/log/top-pages.php:29
|
1416 |
+
#: wp-statistics/includes/log/top-pages.php:155
|
1417 |
+
#: wp-statistics/includes/log/top-referring.php:77
|
1418 |
+
#: wp-statistics/includes/log/top-visitors.php:40
|
1419 |
+
msgid "Click to toggle"
|
1420 |
+
msgstr ""
|
1421 |
+
|
1422 |
+
#: wp-statistics/includes/log/all-browsers.php:30
|
1423 |
+
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:467
|
1424 |
+
#: wp-statistics/wp-statistics.php:527
|
1425 |
+
msgid "Browsers"
|
1426 |
+
msgstr ""
|
1427 |
+
|
1428 |
+
#: wp-statistics/includes/log/all-browsers.php:57
|
1429 |
+
msgid "Browsers by type"
|
1430 |
+
msgstr ""
|
1431 |
+
|
1432 |
+
#: wp-statistics/includes/log/all-browsers.php:114
|
1433 |
+
#: wp-statistics/includes/log/widgets/top.visitors.php:18
|
1434 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:302
|
1435 |
+
msgid "Platform"
|
1436 |
+
msgstr ""
|
1437 |
+
|
1438 |
+
#: wp-statistics/includes/log/all-browsers.php:141
|
1439 |
+
msgid "Browsers by platform"
|
1440 |
+
msgstr ""
|
1441 |
+
|
1442 |
+
#: wp-statistics/includes/log/all-browsers.php:249
|
1443 |
+
msgid "%s Version"
|
1444 |
+
msgstr ""
|
1445 |
+
|
1446 |
+
#: wp-statistics/includes/log/exclusions.php:8
|
1447 |
+
msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
|
1448 |
+
msgstr ""
|
1449 |
+
|
1450 |
+
#: wp-statistics/includes/log/exclusions.php:64
|
1451 |
+
msgid "Exclusions Statistics"
|
1452 |
+
msgstr ""
|
1453 |
+
|
1454 |
+
#: wp-statistics/includes/functions/functions.php:970
|
1455 |
+
msgid "10 Days"
|
1456 |
+
msgstr ""
|
1457 |
+
|
1458 |
+
#: wp-statistics/includes/functions/functions.php:970
|
1459 |
+
msgid "20 Days"
|
1460 |
+
msgstr ""
|
1461 |
+
|
1462 |
+
#: wp-statistics/includes/functions/functions.php:970
|
1463 |
+
msgid "30 Days"
|
1464 |
+
msgstr ""
|
1465 |
+
|
1466 |
+
#: wp-statistics/includes/functions/functions.php:970
|
1467 |
+
msgid "2 Months"
|
1468 |
+
msgstr ""
|
1469 |
+
|
1470 |
+
#: wp-statistics/includes/functions/functions.php:970
|
1471 |
+
msgid "3 Months"
|
1472 |
+
msgstr ""
|
1473 |
+
|
1474 |
+
#: wp-statistics/includes/functions/functions.php:970
|
1475 |
+
msgid "6 Months"
|
1476 |
+
msgstr ""
|
1477 |
+
|
1478 |
+
#: wp-statistics/includes/functions/functions.php:970
|
1479 |
+
msgid "9 Months"
|
1480 |
+
msgstr ""
|
1481 |
+
|
1482 |
+
#: wp-statistics/includes/functions/functions.php:970
|
1483 |
+
msgid "1 Year"
|
1484 |
+
msgstr ""
|
1485 |
+
|
1486 |
+
#: wp-statistics/includes/log/exclusions.php:73
|
1487 |
+
msgid "Exclusions Statistical Chart"
|
1488 |
+
msgstr ""
|
1489 |
+
|
1490 |
+
#: wp-statistics/includes/log/exclusions.php:95
|
1491 |
+
msgid "Excluded hits in the last"
|
1492 |
+
msgstr ""
|
1493 |
+
|
1494 |
+
#: wp-statistics/includes/log/exclusions.php:95
|
1495 |
+
#: wp-statistics/includes/log/hit-statistics.php:66
|
1496 |
+
#: wp-statistics/includes/log/search-statistics.php:69
|
1497 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1498 |
+
#: wp-statistics/includes/log/widgets/search.php:42
|
1499 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1500 |
+
msgid "days"
|
1501 |
+
msgstr ""
|
1502 |
+
|
1503 |
+
#: wp-statistics/includes/log/exclusions.php:116
|
1504 |
+
msgid "Number of excluded hits"
|
1505 |
+
msgstr ""
|
1506 |
+
|
1507 |
+
#: wp-statistics/includes/log/hit-statistics.php:27
|
1508 |
+
msgid "Hits Statistics Chart"
|
1509 |
+
msgstr ""
|
1510 |
+
|
1511 |
+
#: wp-statistics/includes/log/hit-statistics.php:66
|
1512 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1513 |
+
msgid "Hits in the last"
|
1514 |
+
msgstr ""
|
1515 |
+
|
1516 |
+
#: wp-statistics/includes/log/hit-statistics.php:87
|
1517 |
+
#: wp-statistics/includes/log/widgets/hits.php:65
|
1518 |
+
msgid "Number of visits and visitors"
|
1519 |
+
msgstr ""
|
1520 |
+
|
1521 |
+
#: wp-statistics/includes/log/hit-statistics.php:101
|
1522 |
+
#: wp-statistics/includes/log/hit-statistics.php:170
|
1523 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1524 |
+
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1525 |
+
#: wp-statistics/includes/log/widgets/summary.php:24
|
1526 |
+
msgid "Visit"
|
1527 |
+
msgstr ""
|
1528 |
+
|
1529 |
+
#: wp-statistics/includes/log/hit-statistics.php:101
|
1530 |
+
#: wp-statistics/includes/log/hit-statistics.php:171
|
1531 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1532 |
+
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1533 |
+
#: wp-statistics/includes/log/widgets/summary.php:23
|
1534 |
+
msgid "Visitor"
|
1535 |
+
msgstr ""
|
1536 |
+
|
1537 |
+
#: wp-statistics/includes/log/last-search.php:65
|
1538 |
+
msgid "Latest Search Word Statistics"
|
1539 |
+
msgstr ""
|
1540 |
+
|
1541 |
+
#: wp-statistics/includes/log/last-search.php:110
|
1542 |
+
#: wp-statistics/includes/log/last-visitor.php:101
|
1543 |
+
#: wp-statistics/includes/log/online.php:50
|
1544 |
+
#: wp-statistics/includes/log/widgets/google.map.php:60
|
1545 |
+
#: wp-statistics/includes/log/widgets/jqv.map.php:55
|
1546 |
+
#: wp-statistics/includes/log/widgets/recent.php:14
|
1547 |
+
#: wp-statistics/includes/log/widgets/words.php:27
|
1548 |
+
msgid "#hash#"
|
1549 |
+
msgstr ""
|
1550 |
+
|
1551 |
+
#: wp-statistics/includes/log/last-search.php:115
|
1552 |
+
#: wp-statistics/includes/log/last-visitor.php:106
|
1553 |
+
#: wp-statistics/includes/log/online.php:55
|
1554 |
+
#: wp-statistics/includes/log/top-referring.php:112
|
1555 |
+
#: wp-statistics/includes/log/widgets/recent.php:19
|
1556 |
+
#: wp-statistics/includes/log/widgets/words.php:42
|
1557 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:60
|
1558 |
+
msgid "Map"
|
1559 |
+
msgstr ""
|
1560 |
+
|
1561 |
+
#: wp-statistics/includes/log/last-search.php:159
|
1562 |
+
#: wp-statistics/includes/log/last-visitor.php:139
|
1563 |
+
#: wp-statistics/includes/log/online.php:109
|
1564 |
+
#: wp-statistics/includes/log/top-pages.php:205
|
1565 |
+
#: wp-statistics/includes/log/top-referring.php:153
|
1566 |
+
msgid "Page"
|
1567 |
+
msgstr ""
|
1568 |
+
|
1569 |
+
#: wp-statistics/includes/log/last-search.php:159
|
1570 |
+
#: wp-statistics/includes/log/last-visitor.php:139
|
1571 |
+
#: wp-statistics/includes/log/online.php:109
|
1572 |
+
#: wp-statistics/includes/log/top-pages.php:205
|
1573 |
+
#: wp-statistics/includes/log/top-referring.php:153
|
1574 |
+
msgid "From"
|
1575 |
+
msgstr ""
|
1576 |
+
|
1577 |
+
#: wp-statistics/includes/log/last-search.php:47
|
1578 |
+
#: wp-statistics/includes/log/last-visitor.php:38
|
1579 |
+
#: wp-statistics/includes/log/top-referring.php:67
|
1580 |
+
#: wp-statistics/includes/log/top-referring.php:70
|
1581 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:192
|
1582 |
+
#: wp-statistics/widget.php:296
|
1583 |
+
msgid "All"
|
1584 |
+
msgstr ""
|
1585 |
+
|
1586 |
+
#: wp-statistics/includes/log/last-visitor.php:68
|
1587 |
+
msgid "Recent Visitor Statistics"
|
1588 |
+
msgstr ""
|
1589 |
+
|
1590 |
+
#: wp-statistics/includes/log/online.php:11
|
1591 |
+
#: wp-statistics/includes/log/online.php:18
|
1592 |
+
msgid "Online Users"
|
1593 |
+
msgstr ""
|
1594 |
+
|
1595 |
+
#: wp-statistics/includes/log/online.php:75
|
1596 |
+
msgid "Online for "
|
1597 |
+
msgstr ""
|
1598 |
+
|
1599 |
+
#: wp-statistics/includes/log/page-statistics.php:26
|
1600 |
+
msgid "Page Trend for Post ID"
|
1601 |
+
msgstr ""
|
1602 |
+
|
1603 |
+
#: wp-statistics/includes/log/page-statistics.php:35
|
1604 |
+
msgid "Page Trend"
|
1605 |
+
msgstr ""
|
1606 |
+
|
1607 |
+
#: wp-statistics/includes/log/search-statistics.php:19
|
1608 |
+
#: wp-statistics/includes/log/search-statistics.php:28
|
1609 |
+
msgid "Search Engine Referral Statistics"
|
1610 |
+
msgstr ""
|
1611 |
+
|
1612 |
+
#: wp-statistics/includes/log/search-statistics.php:69
|
1613 |
+
#: wp-statistics/includes/log/widgets/search.php:42
|
1614 |
+
msgid "Search engine referrals in the last"
|
1615 |
+
msgstr ""
|
1616 |
+
|
1617 |
+
#: wp-statistics/includes/log/search-statistics.php:90
|
1618 |
+
#: wp-statistics/includes/log/widgets/search.php:63
|
1619 |
+
msgid "Number of referrals"
|
1620 |
+
msgstr ""
|
1621 |
+
|
1622 |
+
#: wp-statistics/includes/log/exclusions.php:24
|
1623 |
+
#: wp-statistics/includes/log/search-statistics.php:104
|
1624 |
+
#: wp-statistics/includes/log/widgets/quickstats.php:58
|
1625 |
+
#: wp-statistics/includes/log/widgets/quickstats.php:105
|
1626 |
+
#: wp-statistics/includes/log/widgets/search.php:77
|
1627 |
+
#: wp-statistics/includes/log/widgets/summary.php:58
|
1628 |
+
#: wp-statistics/includes/log/widgets/summary.php:105
|
1629 |
+
msgid "Total"
|
1630 |
+
msgstr ""
|
1631 |
+
|
1632 |
+
#: wp-statistics/includes/log/top-countries.php:18
|
1633 |
+
#: wp-statistics/includes/log/top-countries.php:27
|
1634 |
+
msgid "Top Countries"
|
1635 |
+
msgstr ""
|
1636 |
+
|
1637 |
+
#: wp-statistics/includes/log/top-countries.php:31
|
1638 |
+
#: wp-statistics/includes/log/widgets/countries.php:9
|
1639 |
+
#: wp-statistics/includes/log/widgets/top.visitors.php:11
|
1640 |
+
msgid "Rank"
|
1641 |
+
msgstr ""
|
1642 |
+
|
1643 |
+
#: wp-statistics/includes/log/top-countries.php:32
|
1644 |
+
#: wp-statistics/includes/log/widgets/countries.php:10
|
1645 |
+
#: wp-statistics/includes/log/widgets/top.visitors.php:13
|
1646 |
+
msgid "Flag"
|
1647 |
+
msgstr ""
|
1648 |
+
|
1649 |
+
#: wp-statistics/includes/log/top-countries.php:33
|
1650 |
+
#: wp-statistics/includes/log/widgets/countries.php:11
|
1651 |
+
#: wp-statistics/includes/log/widgets/top.visitors.php:14
|
1652 |
+
msgid "Country"
|
1653 |
+
msgstr ""
|
1654 |
+
|
1655 |
+
#: wp-statistics/includes/log/top-countries.php:34
|
1656 |
+
#: wp-statistics/includes/log/widgets/countries.php:12
|
1657 |
+
msgid "Visitor Count"
|
1658 |
+
msgstr ""
|
1659 |
+
|
1660 |
+
#: wp-statistics/includes/log/top-pages.php:20
|
1661 |
+
#: wp-statistics/includes/log/top-pages.php:156
|
1662 |
+
msgid "Top Pages"
|
1663 |
+
msgstr ""
|
1664 |
+
|
1665 |
+
#: wp-statistics/includes/log/top-pages.php:30
|
1666 |
+
msgid "Top 5 Pages Trends"
|
1667 |
+
msgstr ""
|
1668 |
+
|
1669 |
+
#: wp-statistics/includes/log/top-pages.php:67
|
1670 |
+
msgid "Top 5 Page Trending Stats"
|
1671 |
+
msgstr ""
|
1672 |
+
|
1673 |
+
#: wp-statistics/includes/log/top-pages.php:88
|
1674 |
+
#: wp-statistics/includes/log/widgets/page.php:63
|
1675 |
+
msgid "Number of Hits"
|
1676 |
+
msgstr ""
|
1677 |
+
|
1678 |
+
#: wp-statistics/includes/log/top-pages.php:184
|
1679 |
+
#: wp-statistics/includes/log/widgets/pages.php:13
|
1680 |
+
msgid "No page title found"
|
1681 |
+
msgstr ""
|
1682 |
+
|
1683 |
+
#: wp-statistics/includes/log/top-pages.php:187
|
1684 |
+
#: wp-statistics/includes/log/widgets/pages.php:16
|
1685 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:37
|
1686 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:122
|
1687 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:127
|
1688 |
+
#: wp-statistics/shortcode.php:139
|
1689 |
+
msgid "Visits"
|
1690 |
+
msgstr ""
|
1691 |
+
|
1692 |
+
#: wp-statistics/includes/log/top-referring.php:4
|
1693 |
+
msgid "To be added soon"
|
1694 |
+
msgstr ""
|
1695 |
+
|
1696 |
+
#: wp-statistics/includes/log/top-referring.php:79
|
1697 |
+
msgid "Referring sites from"
|
1698 |
+
msgstr ""
|
1699 |
+
|
1700 |
+
#: wp-statistics/includes/log/top-referring.php:137
|
1701 |
+
#: wp-statistics/includes/log/widgets/referring.php:35
|
1702 |
+
msgid "References"
|
1703 |
+
msgstr ""
|
1704 |
+
|
1705 |
+
#: wp-statistics/includes/log/top-visitors.php:12
|
1706 |
+
msgid "Top 100 Visitors Today"
|
1707 |
+
msgstr ""
|
1708 |
+
|
1709 |
+
#: wp-statistics/includes/log/log.php:17
|
1710 |
+
msgid "About WP Statistics Version %s"
|
1711 |
+
msgstr ""
|
1712 |
+
|
1713 |
+
#: wp-statistics/includes/log/widgets/about.php:11
|
1714 |
+
msgid "Website"
|
1715 |
+
msgstr ""
|
1716 |
+
|
1717 |
+
#: wp-statistics/includes/log/widgets/about.php:12
|
1718 |
+
msgid "Rate and Review"
|
1719 |
+
msgstr ""
|
1720 |
+
|
1721 |
+
#: wp-statistics/includes/log/widgets/about.php:16
|
1722 |
+
msgid "More Information"
|
1723 |
+
msgstr ""
|
1724 |
+
|
1725 |
+
#: wp-statistics/includes/log/widgets/about.php:25
|
1726 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:12
|
1727 |
+
msgid "This product includes GeoLite2 data created by MaxMind, available from %s."
|
1728 |
+
msgstr ""
|
1729 |
+
|
1730 |
+
#: wp-statistics/includes/log/widgets/browsers.php:34
|
1731 |
+
msgid "Other"
|
1732 |
+
msgstr ""
|
1733 |
+
|
1734 |
+
#: wp-statistics/wp-statistics.php:456
|
1735 |
+
msgid "Today Visitors Map"
|
1736 |
+
msgstr ""
|
1737 |
+
|
1738 |
+
#: wp-statistics/includes/log/widgets/referring.php:36
|
1739 |
+
msgid "Address"
|
1740 |
+
msgstr ""
|
1741 |
+
|
1742 |
+
#: wp-statistics/includes/log/widgets/quickstats.php:12
|
1743 |
+
#: wp-statistics/includes/log/widgets/summary.php:12
|
1744 |
+
msgid "User(s) Online"
|
1745 |
+
msgstr ""
|
1746 |
+
|
1747 |
+
#: wp-statistics/includes/log/widgets/quickstats.php:28
|
1748 |
+
#: wp-statistics/includes/log/widgets/quickstats.php:80
|
1749 |
+
#: wp-statistics/includes/log/widgets/summary.php:28
|
1750 |
+
#: wp-statistics/includes/log/widgets/summary.php:80
|
1751 |
+
msgid "Today"
|
1752 |
+
msgstr ""
|
1753 |
+
|
1754 |
+
#: wp-statistics/includes/log/widgets/quickstats.php:34
|
1755 |
+
#: wp-statistics/includes/log/widgets/quickstats.php:81
|
1756 |
+
#: wp-statistics/includes/log/widgets/summary.php:34
|
1757 |
+
#: wp-statistics/includes/log/widgets/summary.php:81
|
1758 |
+
msgid "Yesterday"
|
1759 |
+
msgstr ""
|
1760 |
+
|
1761 |
+
#: wp-statistics/includes/log/widgets/quickstats.php:99
|
1762 |
+
#: wp-statistics/includes/log/widgets/summary.php:99
|
1763 |
+
msgid "Daily Total"
|
1764 |
+
msgstr ""
|
1765 |
+
|
1766 |
+
#: wp-statistics/includes/log/widgets/quickstats.php:118
|
1767 |
+
#: wp-statistics/includes/log/widgets/summary.php:118
|
1768 |
+
msgid "Current Time and Date"
|
1769 |
+
msgstr ""
|
1770 |
+
|
1771 |
+
#: wp-statistics/includes/log/widgets/quickstats.php:118
|
1772 |
+
#: wp-statistics/includes/log/widgets/summary.php:118
|
1773 |
+
msgid "(Adjustment)"
|
1774 |
+
msgstr ""
|
1775 |
+
|
1776 |
+
#: wp-statistics/includes/log/widgets/quickstats.php:122
|
1777 |
+
#: wp-statistics/includes/log/widgets/summary.php:122
|
1778 |
+
msgid "Date: %s"
|
1779 |
+
msgstr ""
|
1780 |
+
|
1781 |
+
#: wp-statistics/includes/log/widgets/quickstats.php:126
|
1782 |
+
#: wp-statistics/includes/log/widgets/summary.php:126
|
1783 |
+
msgid "Time: %s"
|
1784 |
+
msgstr ""
|
1785 |
+
|
1786 |
+
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1787 |
+
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1788 |
+
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1789 |
+
#: wp-statistics/wp-statistics.php:530
|
1790 |
+
msgid "Hits"
|
1791 |
+
msgstr ""
|
1792 |
+
|
1793 |
+
#: wp-statistics/includes/log/widgets/top.visitors.php:15
|
1794 |
+
msgid "IP"
|
1795 |
+
msgstr ""
|
1796 |
+
|
1797 |
+
#: wp-statistics/includes/log/widgets/top.visitors.php:17
|
1798 |
+
msgid "Agent"
|
1799 |
+
msgstr ""
|
1800 |
+
|
1801 |
+
#: wp-statistics/includes/log/widgets/top.visitors.php:19
|
1802 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:291
|
1803 |
+
msgid "Version"
|
1804 |
+
msgstr ""
|
1805 |
+
|
1806 |
+
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1807 |
+
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1808 |
+
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:297
|
1809 |
+
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1810 |
+
msgid "Access denied!"
|
1811 |
+
msgstr ""
|
1812 |
+
|
1813 |
+
#: wp-statistics/ajax.php:31
|
1814 |
+
msgid "%s agent data deleted successfully."
|
1815 |
+
msgstr ""
|
1816 |
+
|
1817 |
+
#: wp-statistics/ajax.php:34
|
1818 |
+
msgid "No agent data found to remove!"
|
1819 |
+
msgstr ""
|
1820 |
+
|
1821 |
+
#: wp-statistics/ajax.php:38 wp-statistics/ajax.php:68
|
1822 |
+
#: wp-statistics/ajax.php:120 wp-statistics/ajax.php:126
|
1823 |
+
msgid "Please select the desired items."
|
1824 |
+
msgstr ""
|
1825 |
+
|
1826 |
+
#: wp-statistics/ajax.php:62
|
1827 |
+
msgid "%s platform data deleted successfully."
|
1828 |
+
msgstr ""
|
1829 |
+
|
1830 |
+
#: wp-statistics/ajax.php:65
|
1831 |
+
msgid "No platform data found to remove!"
|
1832 |
+
msgstr ""
|
1833 |
+
|
1834 |
+
#: wp-statistics/includes/functions/functions.php:1074
|
1835 |
+
msgid "%s table data deleted successfully."
|
1836 |
+
msgstr ""
|
1837 |
+
|
1838 |
+
#: wp-statistics/includes/functions/functions.php:1078
|
1839 |
+
msgid "Error, %s not emptied!"
|
1840 |
+
msgstr ""
|
1841 |
+
|
1842 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:5
|
1843 |
+
msgid "Database Setup"
|
1844 |
+
msgstr ""
|
1845 |
+
|
1846 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:10
|
1847 |
+
msgid "Re-run Install"
|
1848 |
+
msgstr ""
|
1849 |
+
|
1850 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:14
|
1851 |
+
msgid "Install Now!"
|
1852 |
+
msgstr ""
|
1853 |
+
|
1854 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:15
|
1855 |
+
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."
|
1856 |
+
msgstr ""
|
1857 |
+
|
1858 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:20
|
1859 |
+
msgid "Database Index"
|
1860 |
+
msgstr ""
|
1861 |
+
|
1862 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1863 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1864 |
+
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:528
|
1865 |
+
msgid "Countries"
|
1866 |
+
msgstr ""
|
1867 |
+
|
1868 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:42
|
1869 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:74
|
1870 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:25
|
1871 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:40
|
1872 |
+
msgid "Update Now!"
|
1873 |
+
msgstr ""
|
1874 |
+
|
1875 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:43
|
1876 |
+
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."
|
1877 |
+
msgstr ""
|
1878 |
+
|
1879 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:44
|
1880 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:108
|
1881 |
+
msgid "This operation could take a long time on installs with many rows in the visitors table."
|
1882 |
+
msgstr ""
|
1883 |
+
|
1884 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:50
|
1885 |
+
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."
|
1886 |
+
msgstr ""
|
1887 |
+
|
1888 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:51
|
1889 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:83
|
1890 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:114
|
1891 |
+
msgid "Congratulations, your installation is already up to date, nothing to do."
|
1892 |
+
msgstr ""
|
1893 |
+
|
1894 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:8
|
1895 |
+
#: wp-statistics/includes/optimization/wps-optimization.php:235
|
1896 |
+
msgid "Export"
|
1897 |
+
msgstr ""
|
1898 |
+
|
1899 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:13
|
1900 |
+
msgid "Export from"
|
1901 |
+
msgstr ""
|
1902 |
+
|
1903 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:18
|
1904 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:37
|
1905 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:185
|
1906 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:242
|
1907 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:266
|
1908 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:134
|
1909 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:164
|
1910 |
+
msgid "Please select"
|
1911 |
+
msgstr ""
|
1912 |
+
|
1913 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:26
|
1914 |
+
msgid "Select the table for the output file."
|
1915 |
+
msgstr ""
|
1916 |
+
|
1917 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:32
|
1918 |
+
msgid "Export To"
|
1919 |
+
msgstr ""
|
1920 |
+
|
1921 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:42
|
1922 |
+
msgid "Select the output file type."
|
1923 |
+
msgstr ""
|
1924 |
+
|
1925 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:48
|
1926 |
+
msgid "Include Header Row"
|
1927 |
+
msgstr ""
|
1928 |
+
|
1929 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:53
|
1930 |
+
msgid "Include a header row as the first line of the exported file."
|
1931 |
+
msgstr ""
|
1932 |
+
|
1933 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-export.php:54
|
1934 |
+
msgid "Start Now!"
|
1935 |
+
msgstr ""
|
1936 |
+
|
1937 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:15
|
1938 |
+
msgid "Historical Values"
|
1939 |
+
msgstr ""
|
1940 |
+
|
1941 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:20
|
1942 |
+
msgid "Note: As you have just purged the database you must reload this page for these numbers to be correct."
|
1943 |
+
msgstr ""
|
1944 |
+
|
1945 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:26
|
1946 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1947 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1948 |
+
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1949 |
+
#: wp-statistics/wp-statistics.php:537
|
1950 |
+
msgid "Visitors"
|
1951 |
+
msgstr ""
|
1952 |
+
|
1953 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:31
|
1954 |
+
msgid "Number of historical number of visitors to the site (current value is %s)."
|
1955 |
+
msgstr ""
|
1956 |
+
|
1957 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:42
|
1958 |
+
msgid "Number of historical number of visits to the site (current value is %s)."
|
1959 |
+
msgstr ""
|
1960 |
+
|
1961 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:48
|
1962 |
+
msgid "Update now!"
|
1963 |
+
msgstr ""
|
1964 |
+
|
1965 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:10
|
1966 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:43
|
1967 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:75
|
1968 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:107
|
1969 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:141
|
1970 |
+
msgid "Are you sure?"
|
1971 |
+
msgstr ""
|
1972 |
+
|
1973 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:175
|
1974 |
+
msgid "Data"
|
1975 |
+
msgstr ""
|
1976 |
+
|
1977 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:180
|
1978 |
+
msgid "Empty Table"
|
1979 |
+
msgstr ""
|
1980 |
+
|
1981 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:194
|
1982 |
+
msgid "All data table will be lost."
|
1983 |
+
msgstr ""
|
1984 |
+
|
1985 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:195
|
1986 |
+
msgid "Clear now!"
|
1987 |
+
msgstr ""
|
1988 |
+
|
1989 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:203
|
1990 |
+
msgid "Purge records older than"
|
1991 |
+
msgstr ""
|
1992 |
+
|
1993 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:209
|
1994 |
+
msgid "Deleted user statistics data older than the selected number of days. Minimum value is 30 days."
|
1995 |
+
msgstr ""
|
1996 |
+
|
1997 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:210
|
1998 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:225
|
1999 |
+
msgid "Purge now!"
|
2000 |
+
msgstr ""
|
2001 |
+
|
2002 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:232
|
2003 |
+
msgid "Delete User Agent Types"
|
2004 |
+
msgstr ""
|
2005 |
+
|
2006 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:237
|
2007 |
+
msgid "Delete Agents"
|
2008 |
+
msgstr ""
|
2009 |
+
|
2010 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:252
|
2011 |
+
msgid "All visitor data will be lost for this agent type."
|
2012 |
+
msgstr ""
|
2013 |
+
|
2014 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:253
|
2015 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:277
|
2016 |
+
msgid "Delete now!"
|
2017 |
+
msgstr ""
|
2018 |
+
|
2019 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:261
|
2020 |
+
msgid "Delete Platforms"
|
2021 |
+
msgstr ""
|
2022 |
+
|
2023 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:276
|
2024 |
+
msgid "All visitor data will be lost for this platform type."
|
2025 |
+
msgstr ""
|
2026 |
+
|
2027 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:17
|
2028 |
+
msgid "Resources"
|
2029 |
+
msgstr ""
|
2030 |
+
|
2031 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:22
|
2032 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:27
|
2033 |
+
msgid "Memory usage in PHP"
|
2034 |
+
msgstr ""
|
2035 |
+
|
2036 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:26
|
2037 |
+
msgid "Byte"
|
2038 |
+
msgstr ""
|
2039 |
+
|
2040 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:33
|
2041 |
+
msgid "PHP Memory Limit"
|
2042 |
+
msgstr ""
|
2043 |
+
|
2044 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:38
|
2045 |
+
msgid "The memory limit a script is allowed to consume, set in php.ini."
|
2046 |
+
msgstr ""
|
2047 |
+
|
2048 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:44
|
2049 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:55
|
2050 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:66
|
2051 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:77
|
2052 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:88
|
2053 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:99
|
2054 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:110
|
2055 |
+
msgid "Number of rows in the %s table"
|
2056 |
+
msgstr ""
|
2057 |
+
|
2058 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:48
|
2059 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:59
|
2060 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:70
|
2061 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:81
|
2062 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:92
|
2063 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:103
|
2064 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:114
|
2065 |
+
msgid "Row"
|
2066 |
+
msgstr ""
|
2067 |
+
|
2068 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:49
|
2069 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:60
|
2070 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:71
|
2071 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:82
|
2072 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:93
|
2073 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:104
|
2074 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:115
|
2075 |
+
msgid "Number of rows"
|
2076 |
+
msgstr ""
|
2077 |
+
|
2078 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:120
|
2079 |
+
msgid "Version Info"
|
2080 |
+
msgstr ""
|
2081 |
+
|
2082 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:125
|
2083 |
+
msgid "WP Statistics Version"
|
2084 |
+
msgstr ""
|
2085 |
+
|
2086 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:130
|
2087 |
+
msgid "The WP Statistics version you are running."
|
2088 |
+
msgstr ""
|
2089 |
+
|
2090 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:136
|
2091 |
+
msgid "PHP Version"
|
2092 |
+
msgstr ""
|
2093 |
+
|
2094 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:141
|
2095 |
+
msgid "The PHP version you are running."
|
2096 |
+
msgstr ""
|
2097 |
+
|
2098 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:147
|
2099 |
+
msgid "PHP Safe Mode"
|
2100 |
+
msgstr ""
|
2101 |
+
|
2102 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:152
|
2103 |
+
msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
|
2104 |
+
msgstr ""
|
2105 |
+
|
2106 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:158
|
2107 |
+
msgid "jQuery Version"
|
2108 |
+
msgstr ""
|
2109 |
+
|
2110 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:163
|
2111 |
+
msgid "The jQuery version you are running."
|
2112 |
+
msgstr ""
|
2113 |
+
|
2114 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:169
|
2115 |
+
msgid "cURL Version"
|
2116 |
+
msgstr ""
|
2117 |
+
|
2118 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:173
|
2119 |
+
msgid "cURL not installed"
|
2120 |
+
msgstr ""
|
2121 |
+
|
2122 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:174
|
2123 |
+
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."
|
2124 |
+
msgstr ""
|
2125 |
+
|
2126 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:184
|
2127 |
+
msgid "Installed"
|
2128 |
+
msgstr ""
|
2129 |
+
|
2130 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:184
|
2131 |
+
msgid "Not installed"
|
2132 |
+
msgstr ""
|
2133 |
+
|
2134 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:190
|
2135 |
+
msgid "File Info"
|
2136 |
+
msgstr ""
|
2137 |
+
|
2138 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:195
|
2139 |
+
msgid "GeoIP Database"
|
2140 |
+
msgstr ""
|
2141 |
+
|
2142 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:204
|
2143 |
+
msgid "Database file does not exist."
|
2144 |
+
msgstr ""
|
2145 |
+
|
2146 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:206
|
2147 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:225
|
2148 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:244
|
2149 |
+
msgid ", created on "
|
2150 |
+
msgstr ""
|
2151 |
+
|
2152 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:208
|
2153 |
+
msgid "The file size and date of the GeoIP database."
|
2154 |
+
msgstr ""
|
2155 |
+
|
2156 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:214
|
2157 |
+
msgid "browscap.ini File"
|
2158 |
+
msgstr ""
|
2159 |
+
|
2160 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:223
|
2161 |
+
msgid "browscap.ini file does not exist."
|
2162 |
+
msgstr ""
|
2163 |
+
|
2164 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:227
|
2165 |
+
msgid "The file size and date of the browscap.ini file."
|
2166 |
+
msgstr ""
|
2167 |
+
|
2168 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:233
|
2169 |
+
msgid "browscap Cache File"
|
2170 |
+
msgstr ""
|
2171 |
+
|
2172 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:242
|
2173 |
+
msgid "browscap cache file does not exist."
|
2174 |
+
msgstr ""
|
2175 |
+
|
2176 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:246
|
2177 |
+
msgid "The file size and date of the browscap cache file."
|
2178 |
+
msgstr ""
|
2179 |
+
|
2180 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:251
|
2181 |
+
msgid "Client Info"
|
2182 |
+
msgstr ""
|
2183 |
+
|
2184 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:256
|
2185 |
+
msgid "Client IP"
|
2186 |
+
msgstr ""
|
2187 |
+
|
2188 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:261
|
2189 |
+
msgid "The client IP address."
|
2190 |
+
msgstr ""
|
2191 |
+
|
2192 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:267
|
2193 |
+
msgid "User Agent"
|
2194 |
+
msgstr ""
|
2195 |
+
|
2196 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:272
|
2197 |
+
msgid "The client user agent string."
|
2198 |
+
msgstr ""
|
2199 |
+
|
2200 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:278
|
2201 |
+
msgid "Browser"
|
2202 |
+
msgstr ""
|
2203 |
+
|
2204 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:285
|
2205 |
+
msgid "The detected client browser."
|
2206 |
+
msgstr ""
|
2207 |
+
|
2208 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:296
|
2209 |
+
msgid "The detected client browser version."
|
2210 |
+
msgstr ""
|
2211 |
+
|
2212 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:307
|
2213 |
+
msgid "The detected client platform."
|
2214 |
+
msgstr ""
|
2215 |
+
|
2216 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:4
|
2217 |
+
msgid "This will replace all IP addresses in the database with hash values and cannot be undo, are you sure?"
|
2218 |
+
msgstr ""
|
2219 |
+
|
2220 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:16
|
2221 |
+
msgid "GeoIP Options"
|
2222 |
+
msgstr ""
|
2223 |
+
|
2224 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:26
|
2225 |
+
msgid "Updates any unknown location data in the database, this may take a while"
|
2226 |
+
msgstr ""
|
2227 |
+
|
2228 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:31
|
2229 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:66
|
2230 |
+
msgid "IP Addresses"
|
2231 |
+
msgstr ""
|
2232 |
+
|
2233 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:36
|
2234 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:71
|
2235 |
+
msgid "Hash IP Addresses"
|
2236 |
+
msgstr ""
|
2237 |
+
|
2238 |
+
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:41
|
2239 |
+
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"
|
2240 |
+
msgstr ""
|
2241 |
+
|
2242 |
+
#: wp-statistics/includes/optimization/wps-optimization.php:43
|
2243 |
+
msgid "IP Addresses replaced with hash values."
|
2244 |
+
msgstr ""
|
2245 |
+
|
2246 |
+
#: wp-statistics/includes/optimization/wps-optimization.php:51
|
2247 |
+
msgid "Install routine complete."
|
2248 |
+
msgstr ""
|
2249 |
+
|
2250 |
+
#: wp-statistics/includes/optimization/wps-optimization.php:234
|
2251 |
+
msgid "Resources/Information"
|
2252 |
+
msgstr ""
|
2253 |
+
|
2254 |
+
#: wp-statistics/includes/optimization/wps-optimization.php:236
|
2255 |
+
msgid "Purging"
|
2256 |
+
msgstr ""
|
2257 |
+
|
2258 |
+
#: wp-statistics/includes/optimization/wps-optimization.php:237
|
2259 |
+
msgid "Database"
|
2260 |
+
msgstr ""
|
2261 |
+
|
2262 |
+
#: wp-statistics/includes/optimization/wps-optimization.php:238
|
2263 |
+
msgid "Updates"
|
2264 |
+
msgstr ""
|
2265 |
+
|
2266 |
+
#: wp-statistics/includes/optimization/wps-optimization.php:239
|
2267 |
+
msgid "Historical"
|
2268 |
+
msgstr ""
|
2269 |
+
|
2270 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:8
|
2271 |
+
msgid "WP Statistics V%s"
|
2272 |
+
msgstr ""
|
2273 |
+
|
2274 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:28
|
2275 |
+
msgid "Visit Us Online"
|
2276 |
+
msgstr ""
|
2277 |
+
|
2278 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:32
|
2279 |
+
msgid "Come visit our great new %s and keep up to date on the latest news about WP Statistics."
|
2280 |
+
msgstr ""
|
2281 |
+
|
2282 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:32
|
2283 |
+
msgid "website"
|
2284 |
+
msgstr ""
|
2285 |
+
|
2286 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:36
|
2287 |
+
msgid "Rate and Review at WordPress.org"
|
2288 |
+
msgstr ""
|
2289 |
+
|
2290 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:40
|
2291 |
+
msgid "Thanks for installing WP Statistics, we encourage you to submit a "
|
2292 |
+
msgstr ""
|
2293 |
+
|
2294 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:40
|
2295 |
+
msgid "rating and review"
|
2296 |
+
msgstr ""
|
2297 |
+
|
2298 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:40
|
2299 |
+
msgid "over at WordPress.org. Your feedback is greatly appreciated!"
|
2300 |
+
msgstr ""
|
2301 |
+
|
2302 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:44
|
2303 |
+
msgid "Translations"
|
2304 |
+
msgstr ""
|
2305 |
+
|
2306 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:48
|
2307 |
+
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."
|
2308 |
+
msgstr ""
|
2309 |
+
|
2310 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:48
|
2311 |
+
msgid "translation collaboration site"
|
2312 |
+
msgstr ""
|
2313 |
+
|
2314 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:48
|
2315 |
+
msgid "drop us a line"
|
2316 |
+
msgstr ""
|
2317 |
+
|
2318 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:52
|
2319 |
+
msgid "Support"
|
2320 |
+
msgstr ""
|
2321 |
+
|
2322 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:57
|
2323 |
+
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:"
|
2324 |
+
msgstr ""
|
2325 |
+
|
2326 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:60
|
2327 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:61
|
2328 |
+
msgid "Have you read the %s?"
|
2329 |
+
msgstr ""
|
2330 |
+
|
2331 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:60
|
2332 |
+
msgid "FAQs"
|
2333 |
+
msgstr ""
|
2334 |
+
|
2335 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:61
|
2336 |
+
msgid "manual"
|
2337 |
+
msgstr ""
|
2338 |
+
|
2339 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:62
|
2340 |
+
msgid "Have you search the %s for a similar issue?"
|
2341 |
+
msgstr ""
|
2342 |
+
|
2343 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:62
|
2344 |
+
msgid "support forum"
|
2345 |
+
msgstr ""
|
2346 |
+
|
2347 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:63
|
2348 |
+
msgid "Have you search the Internet for any error messages you are receiving?"
|
2349 |
+
msgstr ""
|
2350 |
+
|
2351 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:64
|
2352 |
+
msgid "Make sure you have access to your PHP error logs."
|
2353 |
+
msgstr ""
|
2354 |
+
|
2355 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:67
|
2356 |
+
msgid "And a few things to double-check:"
|
2357 |
+
msgstr ""
|
2358 |
+
|
2359 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:70
|
2360 |
+
msgid "How's your memory_limit in php.ini?"
|
2361 |
+
msgstr ""
|
2362 |
+
|
2363 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:71
|
2364 |
+
msgid "Have you tried disabling any other plugins you may have installed?"
|
2365 |
+
msgstr ""
|
2366 |
+
|
2367 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:72
|
2368 |
+
msgid "Have you tried using the default WordPress theme?"
|
2369 |
+
msgstr ""
|
2370 |
+
|
2371 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:73
|
2372 |
+
msgid "Have you double checked the plugin settings?"
|
2373 |
+
msgstr ""
|
2374 |
+
|
2375 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:74
|
2376 |
+
msgid "Do you have all the required PHP extensions installed?"
|
2377 |
+
msgstr ""
|
2378 |
+
|
2379 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:75
|
2380 |
+
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?"
|
2381 |
+
msgstr ""
|
2382 |
+
|
2383 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:76
|
2384 |
+
msgid "Have you checked your PHP and web server error logs?"
|
2385 |
+
msgstr ""
|
2386 |
+
|
2387 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:79
|
2388 |
+
msgid "Still not having any luck?"
|
2389 |
+
msgstr ""
|
2390 |
+
|
2391 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:79
|
2392 |
+
msgid "Then please open a new thread on the %s and we'll respond as soon as possible."
|
2393 |
+
msgstr ""
|
2394 |
+
|
2395 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:79
|
2396 |
+
msgid "WordPress.org support forum"
|
2397 |
+
msgstr ""
|
2398 |
+
|
2399 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:83
|
2400 |
+
msgid "Alternatively %s support is available as well."
|
2401 |
+
msgstr ""
|
2402 |
+
|
2403 |
+
#: wp-statistics/includes/settings/tabs/wps-about.php:83
|
2404 |
+
msgid "Farsi"
|
2405 |
+
msgstr ""
|
2406 |
+
|
2407 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:21
|
2408 |
+
msgid "WP Statistics Honey Pot Page"
|
2409 |
+
msgstr ""
|
2410 |
+
|
2411 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:22
|
2412 |
+
msgid "This is the honey pot for WP Statistics to use, do not delete."
|
2413 |
+
msgstr ""
|
2414 |
+
|
2415 |
+
#: wp-statistics/includes/settings/tabs/wps-access-level.php:23
|
2416 |
+
#: wp-statistics/includes/settings/wps-settings.php:103
|
2417 |
+
msgid "Access Levels"
|
2418 |
+
msgstr ""
|
2419 |
+
|
2420 |
+
#: wp-statistics/includes/settings/tabs/wps-access-level.php:52
|
2421 |
+
msgid "Required user level to view WP Statistics"
|
2422 |
+
msgstr ""
|
2423 |
+
|
2424 |
+
#: wp-statistics/includes/settings/tabs/wps-access-level.php:67
|
2425 |
+
msgid "Required user level to manage WP Statistics"
|
2426 |
+
msgstr ""
|
2427 |
+
|
2428 |
+
#: wp-statistics/includes/settings/tabs/wps-access-level.php:75
|
2429 |
+
msgid "See the %s for details on capability levels."
|
2430 |
+
msgstr ""
|
2431 |
+
|
2432 |
+
#: wp-statistics/includes/settings/tabs/wps-access-level.php:75
|
2433 |
+
msgid "WordPress Roles and Capabilities page"
|
2434 |
+
msgstr ""
|
2435 |
+
|
2436 |
+
#: wp-statistics/includes/settings/tabs/wps-access-level.php:76
|
2437 |
+
msgid "Hint: manage_network = Super Admin Network, manage_options = Administrator, edit_others_posts = Editor, publish_posts = Author, edit_posts = Contributor, read = Everyone."
|
2438 |
+
msgstr ""
|
2439 |
+
|
2440 |
+
#: wp-statistics/includes/settings/tabs/wps-access-level.php:77
|
2441 |
+
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."
|
2442 |
+
msgstr ""
|
2443 |
+
|
2444 |
+
#: wp-statistics/includes/settings/tabs/wps-access-level.php:78
|
2445 |
+
msgid "If you need a more robust solution to delegate access you might want to look at %s in the WordPress plugin directory."
|
2446 |
+
msgstr ""
|
2447 |
+
|
2448 |
+
#: wp-statistics/includes/log/exclusions.php:197
|
2449 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2450 |
+
#: wp-statistics/includes/settings/wps-settings.php:104
|
2451 |
+
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:529
|
2452 |
+
msgid "Exclusions"
|
2453 |
+
msgstr ""
|
2454 |
+
|
2455 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:50
|
2456 |
+
msgid "Record exclusions"
|
2457 |
+
msgstr ""
|
2458 |
+
|
2459 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:52
|
2460 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:106
|
2461 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:133
|
2462 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:150
|
2463 |
+
msgid "Enable"
|
2464 |
+
msgstr ""
|
2465 |
+
|
2466 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:53
|
2467 |
+
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."
|
2468 |
+
msgstr ""
|
2469 |
+
|
2470 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:58
|
2471 |
+
msgid "Exclude User Roles"
|
2472 |
+
msgstr ""
|
2473 |
+
|
2474 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:74
|
2475 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:196
|
2476 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:203
|
2477 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:210
|
2478 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:217
|
2479 |
+
msgid "Exclude"
|
2480 |
+
msgstr ""
|
2481 |
+
|
2482 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:75
|
2483 |
+
msgid "Exclude %s role from data collection."
|
2484 |
+
msgstr ""
|
2485 |
+
|
2486 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:81
|
2487 |
+
msgid "IP/Robot Exclusions"
|
2488 |
+
msgstr ""
|
2489 |
+
|
2490 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:85
|
2491 |
+
msgid "Robot list"
|
2492 |
+
msgstr ""
|
2493 |
+
|
2494 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:98
|
2495 |
+
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."
|
2496 |
+
msgstr ""
|
2497 |
+
|
2498 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:99
|
2499 |
+
msgid "Reset to Default"
|
2500 |
+
msgstr ""
|
2501 |
+
|
2502 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:104
|
2503 |
+
msgid "Force robot list update after upgrades"
|
2504 |
+
msgstr ""
|
2505 |
+
|
2506 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:107
|
2507 |
+
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."
|
2508 |
+
msgstr ""
|
2509 |
+
|
2510 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:112
|
2511 |
+
msgid "Robot visit threshold"
|
2512 |
+
msgstr ""
|
2513 |
+
|
2514 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:115
|
2515 |
+
msgid "Treat visitors with more than this number of visits per day as robots. 0 = disabled."
|
2516 |
+
msgstr ""
|
2517 |
+
|
2518 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:120
|
2519 |
+
msgid "Excluded IP address list"
|
2520 |
+
msgstr ""
|
2521 |
+
|
2522 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:123
|
2523 |
+
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."
|
2524 |
+
msgstr ""
|
2525 |
+
|
2526 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:124
|
2527 |
+
msgid "Add 10.0.0.0"
|
2528 |
+
msgstr ""
|
2529 |
+
|
2530 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:125
|
2531 |
+
msgid "Add 172.16.0.0"
|
2532 |
+
msgstr ""
|
2533 |
+
|
2534 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:126
|
2535 |
+
msgid "Add 192.168.0.0"
|
2536 |
+
msgstr ""
|
2537 |
+
|
2538 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:131
|
2539 |
+
msgid "Use honey pot"
|
2540 |
+
msgstr ""
|
2541 |
+
|
2542 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:134
|
2543 |
+
msgid "Use a honey pot page to identify robots."
|
2544 |
+
msgstr ""
|
2545 |
+
|
2546 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:139
|
2547 |
+
msgid "Honey pot post id"
|
2548 |
+
msgstr ""
|
2549 |
+
|
2550 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:142
|
2551 |
+
msgid "The post id to use for the honeypot page."
|
2552 |
+
msgstr ""
|
2553 |
+
|
2554 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:143
|
2555 |
+
msgid "Create a new honey pot page"
|
2556 |
+
msgstr ""
|
2557 |
+
|
2558 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:156
|
2559 |
+
msgid "GeoIP Exclusions"
|
2560 |
+
msgstr ""
|
2561 |
+
|
2562 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:160
|
2563 |
+
msgid "Excluded countries list"
|
2564 |
+
msgstr ""
|
2565 |
+
|
2566 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:163
|
2567 |
+
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."
|
2568 |
+
msgstr ""
|
2569 |
+
|
2570 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:168
|
2571 |
+
msgid "Included countries list"
|
2572 |
+
msgstr ""
|
2573 |
+
|
2574 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:171
|
2575 |
+
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."
|
2576 |
+
msgstr ""
|
2577 |
+
|
2578 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:176
|
2579 |
+
msgid "Host Exclusions"
|
2580 |
+
msgstr ""
|
2581 |
+
|
2582 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:180
|
2583 |
+
msgid "Excluded hosts list"
|
2584 |
+
msgstr ""
|
2585 |
+
|
2586 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:183
|
2587 |
+
msgid "A list of fully qualified host names (ie. server.example.com, one per line) to exclude from statistics collection."
|
2588 |
+
msgstr ""
|
2589 |
+
|
2590 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:185
|
2591 |
+
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."
|
2592 |
+
msgstr ""
|
2593 |
+
|
2594 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:190
|
2595 |
+
msgid "Site URL Exclusions"
|
2596 |
+
msgstr ""
|
2597 |
+
|
2598 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:194
|
2599 |
+
msgid "Excluded login page"
|
2600 |
+
msgstr ""
|
2601 |
+
|
2602 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:197
|
2603 |
+
msgid "Exclude the login page for registering as a hit."
|
2604 |
+
msgstr ""
|
2605 |
+
|
2606 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:201
|
2607 |
+
msgid "Excluded admin pages"
|
2608 |
+
msgstr ""
|
2609 |
+
|
2610 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:204
|
2611 |
+
msgid "Exclude the admin pages for registering as a hit."
|
2612 |
+
msgstr ""
|
2613 |
+
|
2614 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:208
|
2615 |
+
msgid "Excluded RSS feeds"
|
2616 |
+
msgstr ""
|
2617 |
+
|
2618 |
+
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:211
|
2619 |
+
msgid "Exclude the RSS feeds for registering as a hit."
|
2620 |
+
msgstr ""
|
2621 |
+
|
2622 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:162
|
2623 |
+
msgid "browscap settings"
|
2624 |
+
msgstr ""
|
2625 |
+
|
2626 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:167
|
2627 |
+
msgid "browscap usage"
|
2628 |
+
msgstr ""
|
2629 |
+
|
2630 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:52
|
2631 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:76
|
2632 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:109
|
2633 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:172
|
2634 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:196
|
2635 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:236
|
2636 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:260
|
2637 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:76
|
2638 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:92
|
2639 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:116
|
2640 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:132
|
2641 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:148
|
2642 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:160
|
2643 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:187
|
2644 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:199
|
2645 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:214
|
2646 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:228
|
2647 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:258
|
2648 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:270
|
2649 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:286
|
2650 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:325
|
2651 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:341
|
2652 |
+
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:40
|
2653 |
+
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:68
|
2654 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:69
|
2655 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:81
|
2656 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:93
|
2657 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:105
|
2658 |
+
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2659 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2660 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2661 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:74
|
2662 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:86
|
2663 |
+
msgid "Active"
|
2664 |
+
msgstr ""
|
2665 |
+
|
2666 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:173
|
2667 |
+
msgid "The browscap database will be downloaded and used to detect robots."
|
2668 |
+
msgstr ""
|
2669 |
+
|
2670 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:179
|
2671 |
+
msgid "Update browscap Info"
|
2672 |
+
msgstr ""
|
2673 |
+
|
2674 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:184
|
2675 |
+
msgid "Download browscap Database"
|
2676 |
+
msgstr ""
|
2677 |
+
|
2678 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:65
|
2679 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:185
|
2680 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:249
|
2681 |
+
msgid "Save changes on this page to download the update."
|
2682 |
+
msgstr ""
|
2683 |
+
|
2684 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:191
|
2685 |
+
msgid "Schedule weekly update of browscap DB"
|
2686 |
+
msgstr ""
|
2687 |
+
|
2688 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:79
|
2689 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:199
|
2690 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:263
|
2691 |
+
msgid "Next update will be"
|
2692 |
+
msgstr ""
|
2693 |
+
|
2694 |
+
#: wp-statistics/includes/settings/tabs/wps-externals.php:215
|
2695 |
+
msgid "Download of the browscap database will be scheduled for once a week."
|
2696 |
+
msgstr ""
|
2697 |
+
|
2698 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:50
|
2699 |
+
msgid "This will delete the manual when you save the settings, are you sure?"
|
2700 |
+
msgstr ""
|
2701 |
+
|
2702 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:77
|
2703 |
+
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."
|
2704 |
+
msgstr ""
|
2705 |
+
|
2706 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:82
|
2707 |
+
#: wp-statistics/shortcode.php:138
|
2708 |
+
msgid "Users Online"
|
2709 |
+
msgstr ""
|
2710 |
+
|
2711 |
+
#: wp-statistics/includes/settings/tabs/wps-general.php:87
|
2712 |
+
msgid "User online"
|
2713 |
+
msgstr ""
|
languages/wp_statistics-hu_HU.mo
CHANGED
Binary file
|
languages/wp_statistics-hu_HU.po
CHANGED
@@ -2,21 +2,22 @@
|
|
2 |
# This file is distributed under the same license as the WP Statistics package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"PO-Revision-Date:
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
-
"X-Generator: GlotPress/1.0
|
|
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#: wp-statistics/ajax.php:
|
14 |
msgid "No matching widget found!"
|
15 |
msgstr ""
|
16 |
|
17 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:180
|
18 |
msgid "Zlib gzopen()"
|
19 |
-
msgstr ""
|
20 |
|
21 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:185
|
22 |
msgid "If the gzopen() function is installed. gzopen() is required for the GeoIP database to be downloaded successfully."
|
@@ -32,38 +33,38 @@ msgstr ""
|
|
32 |
|
33 |
#: wp-statistics/wp-statistics.php:95
|
34 |
msgid "— You are running an unsupported version of PHP."
|
35 |
-
msgstr ""
|
36 |
|
37 |
#: wp-statistics/wp-statistics.php:95
|
38 |
msgid "WP Statistics Disabled"
|
39 |
-
msgstr ""
|
40 |
|
41 |
#: wp-statistics/wp-statistics.php:99
|
42 |
msgid "WP Statistics has detected PHP version %s which is unsupported, WP Statistics requires PHP Version %s or higher!"
|
43 |
-
msgstr ""
|
44 |
|
45 |
#: wp-statistics/wp-statistics.php:101
|
46 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
47 |
-
msgstr ""
|
48 |
|
49 |
-
#: wp-statistics/ajax.php:
|
50 |
msgid "ERROR: Widget not found!"
|
51 |
-
msgstr ""
|
52 |
|
53 |
-
#: wp-statistics/dashboard.php:
|
54 |
#: wp-statistics/includes/log/log.php:20
|
55 |
msgid "Loading..."
|
56 |
-
msgstr ""
|
57 |
|
58 |
-
#: wp-statistics/dashboard.php:
|
59 |
#: wp-statistics/includes/log/log.php:2
|
60 |
msgid "Reloading..."
|
61 |
-
msgstr ""
|
62 |
|
63 |
#: wp-statistics/includes/log/top-visitors.php:41
|
64 |
-
#: wp-statistics/wp-statistics.php:
|
65 |
msgid "Top Visitors"
|
66 |
-
msgstr ""
|
67 |
|
68 |
#: wp-statistics/wp-statistics.php:206
|
69 |
msgid "optimization page"
|
@@ -116,7 +117,7 @@ msgstr ""
|
|
116 |
|
117 |
#: wp-statistics/wp-statistics.php:180
|
118 |
msgid "visitor tracking"
|
119 |
-
msgstr ""
|
120 |
|
121 |
#: wp-statistics/wp-statistics.php:181
|
122 |
msgid "geoip collection"
|
@@ -144,7 +145,7 @@ msgstr "beállítások oldal"
|
|
144 |
|
145 |
#: wp-statistics/wp-statistics.php:184 wp-statistics/wp-statistics.php:206
|
146 |
msgid ","
|
147 |
-
msgstr ""
|
148 |
|
149 |
#: wp-statistics/wp-statistics.php:184
|
150 |
msgid "The following features are disabled, please go to %s and enable them: %s"
|
@@ -158,7 +159,7 @@ msgstr ""
|
|
158 |
msgid "online user tracking"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: wp-statistics/wp-statistics.php:
|
162 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
163 |
msgstr ""
|
164 |
|
@@ -622,7 +623,7 @@ msgstr "Egy azonosított felhasználó minden egyes találatának egységesíté
|
|
622 |
|
623 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
624 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
625 |
-
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:
|
626 |
msgid "Pages"
|
627 |
msgstr "Oldal"
|
628 |
|
@@ -892,7 +893,7 @@ msgstr "Bármilyen rövid kód (shortcode) támogatott a WordPress levél törzs
|
|
892 |
|
893 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
894 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
895 |
-
#: wp-statistics/wp-statistics.php:
|
896 |
msgid "User Online"
|
897 |
msgstr "Jelenlévő felhasználó"
|
898 |
|
@@ -964,40 +965,23 @@ msgstr "Bejegyzés/ oldal szerkesztő widget kikapcsolása"
|
|
964 |
msgid "Disable the page/post editor widget."
|
965 |
msgstr "Oldal / Hozzászólás-szerkesztő widget tiltása."
|
966 |
|
967 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
968 |
-
msgid "Map type"
|
969 |
-
msgstr "Típusa"
|
970 |
-
|
971 |
#: wp-statistics/includes/functions/functions.php:440
|
972 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
973 |
msgid "Google"
|
974 |
msgstr "Google"
|
975 |
|
976 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
977 |
-
msgid "JQVMap"
|
978 |
-
msgstr "JQVMap"
|
979 |
-
|
980 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:82
|
981 |
-
msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
|
982 |
-
msgstr "A \"Google\" beállítást fogja használni a Google leképezés szolgáltatás a legújabb látogatók ábrázolásához (hozzáférésre van szüksége a Google)."
|
983 |
-
|
984 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:83
|
985 |
-
msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
|
986 |
-
msgstr "A \"JQVMap\" beállítást fogja használni JQVMap javascript leképezés könyvtár ábrázolni a legújabb látogatók (megkövetel nem extenral szolgáltatások)."
|
987 |
-
|
988 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:89
|
989 |
msgid "Disable map"
|
990 |
msgstr "Térkép kikapcsolása"
|
991 |
|
992 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
993 |
msgid "Disable the map display"
|
994 |
msgstr "A térkép megjelenítésének kikapcsolása"
|
995 |
|
996 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
997 |
msgid "Get country location from Google"
|
998 |
msgstr "Ország lekérdezése a Google-tól"
|
999 |
|
1000 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1001 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
1002 |
msgstr "Ez a funkció teljesítménycsökkenést okozhat statisztika nézés közben és csak akkor érvényes, ha a térkép tipusa \"Google\""
|
1003 |
|
@@ -1051,7 +1035,7 @@ msgstr "Eltávolítás"
|
|
1051 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1052 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1053 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1054 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1055 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1056 |
msgid "Update"
|
1057 |
msgstr "Frissítés"
|
@@ -1069,7 +1053,7 @@ msgid "Once Every 4 Weeks"
|
|
1069 |
msgstr "4 hetente egyszer"
|
1070 |
|
1071 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1072 |
-
#: wp-statistics/wp-statistics.php:
|
1073 |
msgid "Statistics"
|
1074 |
msgstr "Statisztikák"
|
1075 |
|
@@ -1142,7 +1126,7 @@ msgstr "Név"
|
|
1142 |
msgid "Items"
|
1143 |
msgstr "Tételek"
|
1144 |
|
1145 |
-
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:
|
1146 |
msgid "Yesterday visit"
|
1147 |
msgstr "Tegnapi látogatás"
|
1148 |
|
@@ -1167,7 +1151,7 @@ msgid "Complete statistics for your WordPress site."
|
|
1167 |
msgstr "Teljes statisztikája a WordPress telek."
|
1168 |
|
1169 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1170 |
-
#: wp-statistics/wp-statistics.php:
|
1171 |
msgid "Settings"
|
1172 |
msgstr "Beállítások"
|
1173 |
|
@@ -1191,78 +1175,78 @@ msgstr "Bővítmény értékelése"
|
|
1191 |
msgid "WP Statistics - Hits"
|
1192 |
msgstr "WP Statisztika - találatok"
|
1193 |
|
1194 |
-
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:
|
1195 |
-
#: wp-statistics/wp-statistics.php:
|
1196 |
msgid "Overview"
|
1197 |
msgstr "Áttekintés"
|
1198 |
|
1199 |
-
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:
|
1200 |
msgid "Online"
|
1201 |
msgstr "Elérhető"
|
1202 |
|
1203 |
-
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:
|
1204 |
msgid "Referrers"
|
1205 |
msgstr "Hivatkozók"
|
1206 |
|
1207 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1208 |
-
#: wp-statistics/wp-statistics.php:
|
1209 |
msgid "Searches"
|
1210 |
msgstr "Keresések"
|
1211 |
|
1212 |
-
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:
|
1213 |
msgid "Search Words"
|
1214 |
msgstr "Kereső szavak"
|
1215 |
|
1216 |
-
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:
|
1217 |
msgid "Top Visitors Today"
|
1218 |
msgstr "Top mai látogatók"
|
1219 |
|
1220 |
-
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:
|
1221 |
msgid "Optimization"
|
1222 |
msgstr "Optimalizálás"
|
1223 |
|
1224 |
-
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:
|
1225 |
msgid "Manual"
|
1226 |
msgstr "Kézikönyv"
|
1227 |
|
1228 |
-
#: wp-statistics/wp-statistics.php:
|
1229 |
msgid "Site"
|
1230 |
msgstr "Oldal"
|
1231 |
|
1232 |
-
#: wp-statistics/wp-statistics.php:
|
1233 |
msgid "Options"
|
1234 |
msgstr "Opciók"
|
1235 |
|
1236 |
-
#: wp-statistics/wp-statistics.php:
|
1237 |
msgid "Today visitor"
|
1238 |
msgstr "Mai Látogató"
|
1239 |
|
1240 |
-
#: wp-statistics/wp-statistics.php:
|
1241 |
msgid "Today visit"
|
1242 |
msgstr "Mai látogatás"
|
1243 |
|
1244 |
-
#: wp-statistics/wp-statistics.php:
|
1245 |
msgid "Yesterday visitor"
|
1246 |
msgstr "Tegnapi látogató"
|
1247 |
|
1248 |
-
#: wp-statistics/wp-statistics.php:
|
1249 |
msgid "View Stats"
|
1250 |
msgstr "Statisztikák megtekintése"
|
1251 |
|
1252 |
-
#: wp-statistics/wp-statistics.php:
|
1253 |
msgid "Download ODF file"
|
1254 |
msgstr "ODF fájl letöltése"
|
1255 |
|
1256 |
-
#: wp-statistics/wp-statistics.php:
|
1257 |
msgid "Download HTML file"
|
1258 |
msgstr "HTML fájl letöltése"
|
1259 |
|
1260 |
-
#: wp-statistics/wp-statistics.php:
|
1261 |
msgid "Manual file not found."
|
1262 |
msgstr "Kézikönyv nem található."
|
1263 |
|
1264 |
-
#: wp-statistics/wp-statistics.php:
|
1265 |
-
#: wp-statistics/wp-statistics.php:
|
1266 |
msgid "You do not have sufficient permissions to access this page."
|
1267 |
msgstr "Nincs megfelelő jogosultság az oldal megtekintéséhez."
|
1268 |
|
@@ -1323,7 +1307,7 @@ msgstr "Gyors statisztikák"
|
|
1323 |
msgid "Top 10 Browsers"
|
1324 |
msgstr "Böngészők toplistája"
|
1325 |
|
1326 |
-
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:
|
1327 |
msgid "Top 10 Countries"
|
1328 |
msgstr "A 10 leggyakoribb ország"
|
1329 |
|
@@ -1337,36 +1321,36 @@ msgstr "Mai látogatói térkép"
|
|
1337 |
msgid "Hit Statistics"
|
1338 |
msgstr "Találatok statisztikái"
|
1339 |
|
1340 |
-
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:
|
1341 |
msgid "Top 10 Pages"
|
1342 |
msgstr "Top 10 oldal"
|
1343 |
|
1344 |
#: wp-statistics/dashboard.php:62
|
1345 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1346 |
-
#: wp-statistics/wp-statistics.php:
|
1347 |
msgid "Recent Visitors"
|
1348 |
msgstr "Előző Látogató"
|
1349 |
|
1350 |
#: wp-statistics/dashboard.php:63
|
1351 |
#: wp-statistics/includes/log/top-referring.php:59
|
1352 |
#: wp-statistics/includes/log/top-referring.php:81
|
1353 |
-
#: wp-statistics/wp-statistics.php:
|
1354 |
msgid "Top Referring Sites"
|
1355 |
msgstr "Top hivatkozó webhelyek"
|
1356 |
|
1357 |
#: wp-statistics/dashboard.php:64
|
1358 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1359 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1360 |
-
#: wp-statistics/wp-statistics.php:
|
1361 |
msgid "Search Engine Referrals"
|
1362 |
msgstr "Keresőmotor hivatkozás"
|
1363 |
|
1364 |
-
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:
|
1365 |
msgid "Summary"
|
1366 |
msgstr "Összefoglaló"
|
1367 |
|
1368 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1369 |
-
#: wp-statistics/wp-statistics.php:
|
1370 |
msgid "Latest Search Words"
|
1371 |
msgstr "Utolsó keresett szavak"
|
1372 |
|
@@ -1436,8 +1420,8 @@ msgid "Click to toggle"
|
|
1436 |
msgstr "Bővebben kikapcsolás/bekapcsolás"
|
1437 |
|
1438 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1439 |
-
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:
|
1440 |
-
#: wp-statistics/wp-statistics.php:
|
1441 |
msgid "Browsers"
|
1442 |
msgstr "Böngészők"
|
1443 |
|
@@ -1510,7 +1494,7 @@ msgstr "Kizárt találatok az utolsó"
|
|
1510 |
#: wp-statistics/includes/log/exclusions.php:95
|
1511 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1512 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1513 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1514 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1515 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1516 |
msgid "days"
|
@@ -1525,18 +1509,18 @@ msgid "Hits Statistics Chart"
|
|
1525 |
msgstr "Találatok statisztikák diagram"
|
1526 |
|
1527 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1528 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1529 |
msgid "Hits in the last"
|
1530 |
msgstr "Találatok száma az elmúlt"
|
1531 |
|
1532 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1533 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1534 |
msgid "Number of visits and visitors"
|
1535 |
msgstr "Látogatások és a látogatók száma"
|
1536 |
|
1537 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1538 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1539 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1540 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1541 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1542 |
msgid "Visit"
|
@@ -1544,7 +1528,7 @@ msgstr "Megtekintés"
|
|
1544 |
|
1545 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1546 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1547 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1548 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1549 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1550 |
msgid "Visitor"
|
@@ -1747,7 +1731,7 @@ msgstr "Ez a termék tartalmaz GeoLite2 adatokat, amit a MaxMind készített, el
|
|
1747 |
msgid "Other"
|
1748 |
msgstr "Egyéb"
|
1749 |
|
1750 |
-
#: wp-statistics/wp-statistics.php:
|
1751 |
msgid "Today Visitors Map"
|
1752 |
msgstr "Mai látogatók térképe"
|
1753 |
|
@@ -1802,7 +1786,7 @@ msgstr "Idő: %s"
|
|
1802 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1803 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1804 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1805 |
-
#: wp-statistics/wp-statistics.php:
|
1806 |
msgid "Hits"
|
1807 |
msgstr "Találatok"
|
1808 |
|
@@ -1821,7 +1805,7 @@ msgstr "Verzió"
|
|
1821 |
|
1822 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1823 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1824 |
-
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:
|
1825 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1826 |
msgid "Access denied!"
|
1827 |
msgstr "Hozzáférés megtagadva!"
|
@@ -1877,7 +1861,7 @@ msgstr "Adatbázis index"
|
|
1877 |
|
1878 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1879 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1880 |
-
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:
|
1881 |
msgid "Countries"
|
1882 |
msgstr "Országok"
|
1883 |
|
@@ -1962,7 +1946,7 @@ msgstr "Megjegyzés: mivel az imént tisztította meg az adatbázist, újra be k
|
|
1962 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1963 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1964 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1965 |
-
#: wp-statistics/wp-statistics.php:
|
1966 |
msgid "Visitors"
|
1967 |
msgstr "Megtekintések"
|
1968 |
|
@@ -2464,7 +2448,7 @@ msgstr "Ha szüksége van a meghatalmazást erőteljesebb megoldást érdemes n
|
|
2464 |
#: wp-statistics/includes/log/exclusions.php:197
|
2465 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2466 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2467 |
-
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:
|
2468 |
msgid "Exclusions"
|
2469 |
msgstr "Kizárások"
|
2470 |
|
@@ -2674,8 +2658,8 @@ msgstr "browscap használat"
|
|
2674 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2675 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2676 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2677 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2678 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2679 |
msgid "Active"
|
2680 |
msgstr "Aktív"
|
2681 |
|
2 |
# This file is distributed under the same license as the WP Statistics package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2016-04-03 17:00:56+0000\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
+
"X-Generator: GlotPress/2.1.0\n"
|
11 |
+
"Language: hu\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
14 |
+
#: wp-statistics/ajax.php:215
|
15 |
msgid "No matching widget found!"
|
16 |
msgstr ""
|
17 |
|
18 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:180
|
19 |
msgid "Zlib gzopen()"
|
20 |
+
msgstr "Zlib gzopen()"
|
21 |
|
22 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:185
|
23 |
msgid "If the gzopen() function is installed. gzopen() is required for the GeoIP database to be downloaded successfully."
|
33 |
|
34 |
#: wp-statistics/wp-statistics.php:95
|
35 |
msgid "— You are running an unsupported version of PHP."
|
36 |
+
msgstr "— - Nem támogatott PHP verziót használsz."
|
37 |
|
38 |
#: wp-statistics/wp-statistics.php:95
|
39 |
msgid "WP Statistics Disabled"
|
40 |
+
msgstr "WP Statisztika nem elérhető"
|
41 |
|
42 |
#: wp-statistics/wp-statistics.php:99
|
43 |
msgid "WP Statistics has detected PHP version %s which is unsupported, WP Statistics requires PHP Version %s or higher!"
|
44 |
+
msgstr "WP Statisztika szerint %s verziójú PHP-t használsz, amely nem támogatott. Kérlek frissítsd %s vagy magasabb verzióra a helyes működéshez!"
|
45 |
|
46 |
#: wp-statistics/wp-statistics.php:101
|
47 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
48 |
+
msgstr "Kérjük, forduljon a tárhelyszolgáltatójához, hogy frissítse a támogatott verzióra vagy tiltsa le a WP Statisztikát eltávolítva ezt az üzenetet."
|
49 |
|
50 |
+
#: wp-statistics/ajax.php:294
|
51 |
msgid "ERROR: Widget not found!"
|
52 |
+
msgstr "HIBA: Widget nem található!"
|
53 |
|
54 |
+
#: wp-statistics/dashboard.php:107 wp-statistics/editor.php:66
|
55 |
#: wp-statistics/includes/log/log.php:20
|
56 |
msgid "Loading..."
|
57 |
+
msgstr "Töltés..."
|
58 |
|
59 |
+
#: wp-statistics/dashboard.php:125 wp-statistics/editor.php:84
|
60 |
#: wp-statistics/includes/log/log.php:2
|
61 |
msgid "Reloading..."
|
62 |
+
msgstr "Újratöltés ..."
|
63 |
|
64 |
#: wp-statistics/includes/log/top-visitors.php:41
|
65 |
+
#: wp-statistics/wp-statistics.php:450
|
66 |
msgid "Top Visitors"
|
67 |
+
msgstr "Top látogatók"
|
68 |
|
69 |
#: wp-statistics/wp-statistics.php:206
|
70 |
msgid "optimization page"
|
117 |
|
118 |
#: wp-statistics/wp-statistics.php:180
|
119 |
msgid "visitor tracking"
|
120 |
+
msgstr "látogató-követés"
|
121 |
|
122 |
#: wp-statistics/wp-statistics.php:181
|
123 |
msgid "geoip collection"
|
145 |
|
146 |
#: wp-statistics/wp-statistics.php:184 wp-statistics/wp-statistics.php:206
|
147 |
msgid ","
|
148 |
+
msgstr ","
|
149 |
|
150 |
#: wp-statistics/wp-statistics.php:184
|
151 |
msgid "The following features are disabled, please go to %s and enable them: %s"
|
159 |
msgid "online user tracking"
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: wp-statistics/wp-statistics.php:791
|
163 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
164 |
msgstr ""
|
165 |
|
623 |
|
624 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
625 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
626 |
+
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:532
|
627 |
msgid "Pages"
|
628 |
msgstr "Oldal"
|
629 |
|
893 |
|
894 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
895 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
896 |
+
#: wp-statistics/wp-statistics.php:637
|
897 |
msgid "User Online"
|
898 |
msgstr "Jelenlévő felhasználó"
|
899 |
|
965 |
msgid "Disable the page/post editor widget."
|
966 |
msgstr "Oldal / Hozzászólás-szerkesztő widget tiltása."
|
967 |
|
|
|
|
|
|
|
|
|
968 |
#: wp-statistics/includes/functions/functions.php:440
|
|
|
969 |
msgid "Google"
|
970 |
msgstr "Google"
|
971 |
|
972 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
973 |
msgid "Disable map"
|
974 |
msgstr "Térkép kikapcsolása"
|
975 |
|
976 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
977 |
msgid "Disable the map display"
|
978 |
msgstr "A térkép megjelenítésének kikapcsolása"
|
979 |
|
980 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:81
|
981 |
msgid "Get country location from Google"
|
982 |
msgstr "Ország lekérdezése a Google-tól"
|
983 |
|
984 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:87
|
985 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
986 |
msgstr "Ez a funkció teljesítménycsökkenést okozhat statisztika nézés közben és csak akkor érvényes, ha a térkép tipusa \"Google\""
|
987 |
|
1035 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1036 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1037 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1038 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:96
|
1039 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1040 |
msgid "Update"
|
1041 |
msgstr "Frissítés"
|
1053 |
msgstr "4 hetente egyszer"
|
1054 |
|
1055 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1056 |
+
#: wp-statistics/wp-statistics.php:485
|
1057 |
msgid "Statistics"
|
1058 |
msgstr "Statisztikák"
|
1059 |
|
1126 |
msgid "Items"
|
1127 |
msgstr "Tételek"
|
1128 |
|
1129 |
+
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:662
|
1130 |
msgid "Yesterday visit"
|
1131 |
msgstr "Tegnapi látogatás"
|
1132 |
|
1151 |
msgstr "Teljes statisztikája a WordPress telek."
|
1152 |
|
1153 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1154 |
+
#: wp-statistics/wp-statistics.php:539
|
1155 |
msgid "Settings"
|
1156 |
msgstr "Beállítások"
|
1157 |
|
1175 |
msgid "WP Statistics - Hits"
|
1176 |
msgstr "WP Statisztika - találatok"
|
1177 |
|
1178 |
+
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:488
|
1179 |
+
#: wp-statistics/wp-statistics.php:526
|
1180 |
msgid "Overview"
|
1181 |
msgstr "Áttekintés"
|
1182 |
|
1183 |
+
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:531
|
1184 |
msgid "Online"
|
1185 |
msgstr "Elérhető"
|
1186 |
|
1187 |
+
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:533
|
1188 |
msgid "Referrers"
|
1189 |
msgstr "Hivatkozók"
|
1190 |
|
1191 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1192 |
+
#: wp-statistics/wp-statistics.php:534
|
1193 |
msgid "Searches"
|
1194 |
msgstr "Keresések"
|
1195 |
|
1196 |
+
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:535
|
1197 |
msgid "Search Words"
|
1198 |
msgstr "Kereső szavak"
|
1199 |
|
1200 |
+
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:536
|
1201 |
msgid "Top Visitors Today"
|
1202 |
msgstr "Top mai látogatók"
|
1203 |
|
1204 |
+
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:538
|
1205 |
msgid "Optimization"
|
1206 |
msgstr "Optimalizálás"
|
1207 |
|
1208 |
+
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:502
|
1209 |
msgid "Manual"
|
1210 |
msgstr "Kézikönyv"
|
1211 |
|
1212 |
+
#: wp-statistics/wp-statistics.php:517
|
1213 |
msgid "Site"
|
1214 |
msgstr "Oldal"
|
1215 |
|
1216 |
+
#: wp-statistics/wp-statistics.php:518
|
1217 |
msgid "Options"
|
1218 |
msgstr "Opciók"
|
1219 |
|
1220 |
+
#: wp-statistics/wp-statistics.php:644
|
1221 |
msgid "Today visitor"
|
1222 |
msgstr "Mai Látogató"
|
1223 |
|
1224 |
+
#: wp-statistics/wp-statistics.php:650
|
1225 |
msgid "Today visit"
|
1226 |
msgstr "Mai látogatás"
|
1227 |
|
1228 |
+
#: wp-statistics/wp-statistics.php:656
|
1229 |
msgid "Yesterday visitor"
|
1230 |
msgstr "Tegnapi látogató"
|
1231 |
|
1232 |
+
#: wp-statistics/wp-statistics.php:668
|
1233 |
msgid "View Stats"
|
1234 |
msgstr "Statisztikák megtekintése"
|
1235 |
|
1236 |
+
#: wp-statistics/wp-statistics.php:692
|
1237 |
msgid "Download ODF file"
|
1238 |
msgstr "ODF fájl letöltése"
|
1239 |
|
1240 |
+
#: wp-statistics/wp-statistics.php:693
|
1241 |
msgid "Download HTML file"
|
1242 |
msgstr "HTML fájl letöltése"
|
1243 |
|
1244 |
+
#: wp-statistics/wp-statistics.php:697
|
1245 |
msgid "Manual file not found."
|
1246 |
msgstr "Kézikönyv nem található."
|
1247 |
|
1248 |
+
#: wp-statistics/wp-statistics.php:764 wp-statistics/wp-statistics.php:891
|
1249 |
+
#: wp-statistics/wp-statistics.php:926
|
1250 |
msgid "You do not have sufficient permissions to access this page."
|
1251 |
msgstr "Nincs megfelelő jogosultság az oldal megtekintéséhez."
|
1252 |
|
1307 |
msgid "Top 10 Browsers"
|
1308 |
msgstr "Böngészők toplistája"
|
1309 |
|
1310 |
+
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:471
|
1311 |
msgid "Top 10 Countries"
|
1312 |
msgstr "A 10 leggyakoribb ország"
|
1313 |
|
1321 |
msgid "Hit Statistics"
|
1322 |
msgstr "Találatok statisztikái"
|
1323 |
|
1324 |
+
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:461
|
1325 |
msgid "Top 10 Pages"
|
1326 |
msgstr "Top 10 oldal"
|
1327 |
|
1328 |
#: wp-statistics/dashboard.php:62
|
1329 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1330 |
+
#: wp-statistics/wp-statistics.php:453
|
1331 |
msgid "Recent Visitors"
|
1332 |
msgstr "Előző Látogató"
|
1333 |
|
1334 |
#: wp-statistics/dashboard.php:63
|
1335 |
#: wp-statistics/includes/log/top-referring.php:59
|
1336 |
#: wp-statistics/includes/log/top-referring.php:81
|
1337 |
+
#: wp-statistics/wp-statistics.php:468
|
1338 |
msgid "Top Referring Sites"
|
1339 |
msgstr "Top hivatkozó webhelyek"
|
1340 |
|
1341 |
#: wp-statistics/dashboard.php:64
|
1342 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1343 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1344 |
+
#: wp-statistics/wp-statistics.php:451
|
1345 |
msgid "Search Engine Referrals"
|
1346 |
msgstr "Keresőmotor hivatkozás"
|
1347 |
|
1348 |
+
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:466
|
1349 |
msgid "Summary"
|
1350 |
msgstr "Összefoglaló"
|
1351 |
|
1352 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1353 |
+
#: wp-statistics/wp-statistics.php:452
|
1354 |
msgid "Latest Search Words"
|
1355 |
msgstr "Utolsó keresett szavak"
|
1356 |
|
1420 |
msgstr "Bővebben kikapcsolás/bekapcsolás"
|
1421 |
|
1422 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1423 |
+
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:467
|
1424 |
+
#: wp-statistics/wp-statistics.php:527
|
1425 |
msgid "Browsers"
|
1426 |
msgstr "Böngészők"
|
1427 |
|
1494 |
#: wp-statistics/includes/log/exclusions.php:95
|
1495 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1496 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1497 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1498 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1499 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1500 |
msgid "days"
|
1509 |
msgstr "Találatok statisztikák diagram"
|
1510 |
|
1511 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1512 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1513 |
msgid "Hits in the last"
|
1514 |
msgstr "Találatok száma az elmúlt"
|
1515 |
|
1516 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1517 |
+
#: wp-statistics/includes/log/widgets/hits.php:65
|
1518 |
msgid "Number of visits and visitors"
|
1519 |
msgstr "Látogatások és a látogatók száma"
|
1520 |
|
1521 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1522 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1523 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1524 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1525 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1526 |
msgid "Visit"
|
1528 |
|
1529 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1530 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1531 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1532 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1533 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1534 |
msgid "Visitor"
|
1731 |
msgid "Other"
|
1732 |
msgstr "Egyéb"
|
1733 |
|
1734 |
+
#: wp-statistics/wp-statistics.php:456
|
1735 |
msgid "Today Visitors Map"
|
1736 |
msgstr "Mai látogatók térképe"
|
1737 |
|
1786 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1787 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1788 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1789 |
+
#: wp-statistics/wp-statistics.php:530
|
1790 |
msgid "Hits"
|
1791 |
msgstr "Találatok"
|
1792 |
|
1805 |
|
1806 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1807 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1808 |
+
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:297
|
1809 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1810 |
msgid "Access denied!"
|
1811 |
msgstr "Hozzáférés megtagadva!"
|
1861 |
|
1862 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1863 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1864 |
+
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:528
|
1865 |
msgid "Countries"
|
1866 |
msgstr "Országok"
|
1867 |
|
1946 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1947 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1948 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1949 |
+
#: wp-statistics/wp-statistics.php:537
|
1950 |
msgid "Visitors"
|
1951 |
msgstr "Megtekintések"
|
1952 |
|
2448 |
#: wp-statistics/includes/log/exclusions.php:197
|
2449 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2450 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2451 |
+
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:529
|
2452 |
msgid "Exclusions"
|
2453 |
msgstr "Kizárások"
|
2454 |
|
2658 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2659 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2660 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2661 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:74
|
2662 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:86
|
2663 |
msgid "Active"
|
2664 |
msgstr "Aktív"
|
2665 |
|
languages/wp_statistics-id_ID.mo
CHANGED
Binary file
|
languages/wp_statistics-id_ID.po
CHANGED
@@ -7,10 +7,11 @@ msgstr ""
|
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
10 |
-
"X-Generator: GlotPress/1.0
|
|
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#: wp-statistics/ajax.php:
|
14 |
msgid "No matching widget found!"
|
15 |
msgstr ""
|
16 |
|
@@ -46,22 +47,22 @@ msgstr ""
|
|
46 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: wp-statistics/ajax.php:
|
50 |
msgid "ERROR: Widget not found!"
|
51 |
msgstr "ERROR: Widget tidak ditemukan!"
|
52 |
|
53 |
-
#: wp-statistics/dashboard.php:
|
54 |
#: wp-statistics/includes/log/log.php:20
|
55 |
msgid "Loading..."
|
56 |
msgstr "Memuat..."
|
57 |
|
58 |
-
#: wp-statistics/dashboard.php:
|
59 |
#: wp-statistics/includes/log/log.php:2
|
60 |
msgid "Reloading..."
|
61 |
msgstr "Memuat ulang ..."
|
62 |
|
63 |
#: wp-statistics/includes/log/top-visitors.php:41
|
64 |
-
#: wp-statistics/wp-statistics.php:
|
65 |
msgid "Top Visitors"
|
66 |
msgstr "Pengunjung Tertinggi"
|
67 |
|
@@ -158,7 +159,7 @@ msgstr ""
|
|
158 |
msgid "online user tracking"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: wp-statistics/wp-statistics.php:
|
162 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
163 |
msgstr ""
|
164 |
|
@@ -622,7 +623,7 @@ msgstr "Untuk setiap kunjungan untuk mendata beberapa hit. Saat ini %s."
|
|
622 |
|
623 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
624 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
625 |
-
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:
|
626 |
msgid "Pages"
|
627 |
msgstr "Halaman"
|
628 |
|
@@ -892,7 +893,7 @@ msgstr ""
|
|
892 |
|
893 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
894 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
895 |
-
#: wp-statistics/wp-statistics.php:
|
896 |
msgid "User Online"
|
897 |
msgstr "User sedang online"
|
898 |
|
@@ -964,40 +965,23 @@ msgstr ""
|
|
964 |
msgid "Disable the page/post editor widget."
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
968 |
-
msgid "Map type"
|
969 |
-
msgstr "Peta jenis"
|
970 |
-
|
971 |
#: wp-statistics/includes/functions/functions.php:440
|
972 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
973 |
msgid "Google"
|
974 |
msgstr "Google"
|
975 |
|
976 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
977 |
-
msgid "JQVMap"
|
978 |
-
msgstr "JQVMap"
|
979 |
-
|
980 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:82
|
981 |
-
msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
|
982 |
-
msgstr "\"Google\" pilihan akan menggunakan layanan pemetaan Google untuk plot pengunjung baru (memerlukan akses ke Google)."
|
983 |
-
|
984 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:83
|
985 |
-
msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
|
986 |
-
msgstr "\"JQVMap\" pilihan akan menggunakan JQVMap javascript Perpustakaan pemetaan untuk plot pengunjung baru (memerlukan tidak ada layanan extenral)."
|
987 |
-
|
988 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:89
|
989 |
msgid "Disable map"
|
990 |
msgstr "Menonaktifkan peta"
|
991 |
|
992 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
993 |
msgid "Disable the map display"
|
994 |
msgstr "Menonaktifkan tampilan peta"
|
995 |
|
996 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
997 |
msgid "Get country location from Google"
|
998 |
msgstr "Mendapatkan negara lokasi dari Google"
|
999 |
|
1000 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1001 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
1002 |
msgstr "Fitur ini dapat menyebabkan penurunan kinerja ketika melihat statistik dan ini hanya berlaku jika jenis peta diatur ke \"Google\"."
|
1003 |
|
@@ -1051,7 +1035,7 @@ msgstr ""
|
|
1051 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1052 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1053 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1054 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1055 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1056 |
msgid "Update"
|
1057 |
msgstr "Update"
|
@@ -1069,7 +1053,7 @@ msgid "Once Every 4 Weeks"
|
|
1069 |
msgstr "Setiap 4 minggu"
|
1070 |
|
1071 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1072 |
-
#: wp-statistics/wp-statistics.php:
|
1073 |
msgid "Statistics"
|
1074 |
msgstr "Statistik"
|
1075 |
|
@@ -1142,7 +1126,7 @@ msgstr "Nama"
|
|
1142 |
msgid "Items"
|
1143 |
msgstr "Butir"
|
1144 |
|
1145 |
-
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:
|
1146 |
msgid "Yesterday visit"
|
1147 |
msgstr "Pengunjung Kemarin"
|
1148 |
|
@@ -1167,7 +1151,7 @@ msgid "Complete statistics for your WordPress site."
|
|
1167 |
msgstr "Statistik lengkap untuk situs WordPress Anda."
|
1168 |
|
1169 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1170 |
-
#: wp-statistics/wp-statistics.php:
|
1171 |
msgid "Settings"
|
1172 |
msgstr "Pengaturan"
|
1173 |
|
@@ -1191,78 +1175,78 @@ msgstr "Menilai plugin ini"
|
|
1191 |
msgid "WP Statistics - Hits"
|
1192 |
msgstr "WP Statistics - Hits"
|
1193 |
|
1194 |
-
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:
|
1195 |
-
#: wp-statistics/wp-statistics.php:
|
1196 |
msgid "Overview"
|
1197 |
msgstr "Ikhtisar"
|
1198 |
|
1199 |
-
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:
|
1200 |
msgid "Online"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:
|
1204 |
msgid "Referrers"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1208 |
-
#: wp-statistics/wp-statistics.php:
|
1209 |
msgid "Searches"
|
1210 |
msgstr "Pencarian"
|
1211 |
|
1212 |
-
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:
|
1213 |
msgid "Search Words"
|
1214 |
msgstr "Kata-kata pencarian"
|
1215 |
|
1216 |
-
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:
|
1217 |
msgid "Top Visitors Today"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
-
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:
|
1221 |
msgid "Optimization"
|
1222 |
msgstr "Optimasi"
|
1223 |
|
1224 |
-
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:
|
1225 |
msgid "Manual"
|
1226 |
msgstr "Manual"
|
1227 |
|
1228 |
-
#: wp-statistics/wp-statistics.php:
|
1229 |
msgid "Site"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
-
#: wp-statistics/wp-statistics.php:
|
1233 |
msgid "Options"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
-
#: wp-statistics/wp-statistics.php:
|
1237 |
msgid "Today visitor"
|
1238 |
msgstr "Pengunjung hari ini"
|
1239 |
|
1240 |
-
#: wp-statistics/wp-statistics.php:
|
1241 |
msgid "Today visit"
|
1242 |
msgstr "Hari ini mengunjungi"
|
1243 |
|
1244 |
-
#: wp-statistics/wp-statistics.php:
|
1245 |
msgid "Yesterday visitor"
|
1246 |
msgstr "Pengunjung kemarin"
|
1247 |
|
1248 |
-
#: wp-statistics/wp-statistics.php:
|
1249 |
msgid "View Stats"
|
1250 |
msgstr "Lihat statistik"
|
1251 |
|
1252 |
-
#: wp-statistics/wp-statistics.php:
|
1253 |
msgid "Download ODF file"
|
1254 |
msgstr "Men-download ODF file"
|
1255 |
|
1256 |
-
#: wp-statistics/wp-statistics.php:
|
1257 |
msgid "Download HTML file"
|
1258 |
msgstr "Men-download HTML file"
|
1259 |
|
1260 |
-
#: wp-statistics/wp-statistics.php:
|
1261 |
msgid "Manual file not found."
|
1262 |
msgstr "Manual file tidak ditemukan."
|
1263 |
|
1264 |
-
#: wp-statistics/wp-statistics.php:
|
1265 |
-
#: wp-statistics/wp-statistics.php:
|
1266 |
msgid "You do not have sufficient permissions to access this page."
|
1267 |
msgstr "Anda tidak mempunyai akses yang cukup untuk halaman ini"
|
1268 |
|
@@ -1323,7 +1307,7 @@ msgstr ""
|
|
1323 |
msgid "Top 10 Browsers"
|
1324 |
msgstr "Top 10 browser"
|
1325 |
|
1326 |
-
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:
|
1327 |
msgid "Top 10 Countries"
|
1328 |
msgstr "Top 10 negara"
|
1329 |
|
@@ -1337,36 +1321,36 @@ msgstr ""
|
|
1337 |
msgid "Hit Statistics"
|
1338 |
msgstr "Statistik hit"
|
1339 |
|
1340 |
-
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:
|
1341 |
msgid "Top 10 Pages"
|
1342 |
msgstr "Top 10 halaman"
|
1343 |
|
1344 |
#: wp-statistics/dashboard.php:62
|
1345 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1346 |
-
#: wp-statistics/wp-statistics.php:
|
1347 |
msgid "Recent Visitors"
|
1348 |
msgstr "Pengunjung terkini"
|
1349 |
|
1350 |
#: wp-statistics/dashboard.php:63
|
1351 |
#: wp-statistics/includes/log/top-referring.php:59
|
1352 |
#: wp-statistics/includes/log/top-referring.php:81
|
1353 |
-
#: wp-statistics/wp-statistics.php:
|
1354 |
msgid "Top Referring Sites"
|
1355 |
msgstr "Top merujuk situs"
|
1356 |
|
1357 |
#: wp-statistics/dashboard.php:64
|
1358 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1359 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1360 |
-
#: wp-statistics/wp-statistics.php:
|
1361 |
msgid "Search Engine Referrals"
|
1362 |
msgstr "Cari mesin arahan"
|
1363 |
|
1364 |
-
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:
|
1365 |
msgid "Summary"
|
1366 |
msgstr "Ringkasan"
|
1367 |
|
1368 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1369 |
-
#: wp-statistics/wp-statistics.php:
|
1370 |
msgid "Latest Search Words"
|
1371 |
msgstr "Kata-kata pencarian terbaru"
|
1372 |
|
@@ -1436,8 +1420,8 @@ msgid "Click to toggle"
|
|
1436 |
msgstr "Klik untuk beralih"
|
1437 |
|
1438 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1439 |
-
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:
|
1440 |
-
#: wp-statistics/wp-statistics.php:
|
1441 |
msgid "Browsers"
|
1442 |
msgstr "Browser"
|
1443 |
|
@@ -1510,7 +1494,7 @@ msgstr "Dikecualikan hits di terakhir"
|
|
1510 |
#: wp-statistics/includes/log/exclusions.php:95
|
1511 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1512 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1513 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1514 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1515 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1516 |
msgid "days"
|
@@ -1525,18 +1509,18 @@ msgid "Hits Statistics Chart"
|
|
1525 |
msgstr "Grafik Statistik hits"
|
1526 |
|
1527 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1528 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1529 |
msgid "Hits in the last"
|
1530 |
msgstr "Hits di terakhir"
|
1531 |
|
1532 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1533 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1534 |
msgid "Number of visits and visitors"
|
1535 |
msgstr "Jumlah kunjungan dan pengunjung"
|
1536 |
|
1537 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1538 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1539 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1540 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1541 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1542 |
msgid "Visit"
|
@@ -1544,7 +1528,7 @@ msgstr "Kunjungi"
|
|
1544 |
|
1545 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1546 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1547 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1548 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1549 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1550 |
msgid "Visitor"
|
@@ -1747,7 +1731,7 @@ msgstr "Produk ini termasuk data GeoLite2 yang dibuat oleh MaxMind, tersedia dar
|
|
1747 |
msgid "Other"
|
1748 |
msgstr "Lainnya"
|
1749 |
|
1750 |
-
#: wp-statistics/wp-statistics.php:
|
1751 |
msgid "Today Visitors Map"
|
1752 |
msgstr "Hari peta pengunjung"
|
1753 |
|
@@ -1802,7 +1786,7 @@ msgstr "Waktu: %s"
|
|
1802 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1803 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1804 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1805 |
-
#: wp-statistics/wp-statistics.php:
|
1806 |
msgid "Hits"
|
1807 |
msgstr "Hits"
|
1808 |
|
@@ -1821,7 +1805,7 @@ msgstr ""
|
|
1821 |
|
1822 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1823 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1824 |
-
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:
|
1825 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1826 |
msgid "Access denied!"
|
1827 |
msgstr "Akses ditolak!"
|
@@ -1877,7 +1861,7 @@ msgstr "Indeks database"
|
|
1877 |
|
1878 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1879 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1880 |
-
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:
|
1881 |
msgid "Countries"
|
1882 |
msgstr "Negara"
|
1883 |
|
@@ -1962,7 +1946,7 @@ msgstr ""
|
|
1962 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1963 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1964 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1965 |
-
#: wp-statistics/wp-statistics.php:
|
1966 |
msgid "Visitors"
|
1967 |
msgstr "Pengunjung"
|
1968 |
|
@@ -2464,7 +2448,7 @@ msgstr "Jika Anda memerlukan solusi yang lebih kuat untuk mendelegasikan akses A
|
|
2464 |
#: wp-statistics/includes/log/exclusions.php:197
|
2465 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2466 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2467 |
-
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:
|
2468 |
msgid "Exclusions"
|
2469 |
msgstr "Pengecualian"
|
2470 |
|
@@ -2674,8 +2658,8 @@ msgstr "browscap penggunaan"
|
|
2674 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2675 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2676 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2677 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2678 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2679 |
msgid "Active"
|
2680 |
msgstr "Aktif"
|
2681 |
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
10 |
+
"X-Generator: GlotPress/2.1.0\n"
|
11 |
+
"Language: id\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
14 |
+
#: wp-statistics/ajax.php:215
|
15 |
msgid "No matching widget found!"
|
16 |
msgstr ""
|
17 |
|
47 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: wp-statistics/ajax.php:294
|
51 |
msgid "ERROR: Widget not found!"
|
52 |
msgstr "ERROR: Widget tidak ditemukan!"
|
53 |
|
54 |
+
#: wp-statistics/dashboard.php:107 wp-statistics/editor.php:66
|
55 |
#: wp-statistics/includes/log/log.php:20
|
56 |
msgid "Loading..."
|
57 |
msgstr "Memuat..."
|
58 |
|
59 |
+
#: wp-statistics/dashboard.php:125 wp-statistics/editor.php:84
|
60 |
#: wp-statistics/includes/log/log.php:2
|
61 |
msgid "Reloading..."
|
62 |
msgstr "Memuat ulang ..."
|
63 |
|
64 |
#: wp-statistics/includes/log/top-visitors.php:41
|
65 |
+
#: wp-statistics/wp-statistics.php:450
|
66 |
msgid "Top Visitors"
|
67 |
msgstr "Pengunjung Tertinggi"
|
68 |
|
159 |
msgid "online user tracking"
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: wp-statistics/wp-statistics.php:791
|
163 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
164 |
msgstr ""
|
165 |
|
623 |
|
624 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
625 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
626 |
+
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:532
|
627 |
msgid "Pages"
|
628 |
msgstr "Halaman"
|
629 |
|
893 |
|
894 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
895 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
896 |
+
#: wp-statistics/wp-statistics.php:637
|
897 |
msgid "User Online"
|
898 |
msgstr "User sedang online"
|
899 |
|
965 |
msgid "Disable the page/post editor widget."
|
966 |
msgstr ""
|
967 |
|
|
|
|
|
|
|
|
|
968 |
#: wp-statistics/includes/functions/functions.php:440
|
|
|
969 |
msgid "Google"
|
970 |
msgstr "Google"
|
971 |
|
972 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
973 |
msgid "Disable map"
|
974 |
msgstr "Menonaktifkan peta"
|
975 |
|
976 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
977 |
msgid "Disable the map display"
|
978 |
msgstr "Menonaktifkan tampilan peta"
|
979 |
|
980 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:81
|
981 |
msgid "Get country location from Google"
|
982 |
msgstr "Mendapatkan negara lokasi dari Google"
|
983 |
|
984 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:87
|
985 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
986 |
msgstr "Fitur ini dapat menyebabkan penurunan kinerja ketika melihat statistik dan ini hanya berlaku jika jenis peta diatur ke \"Google\"."
|
987 |
|
1035 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1036 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1037 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1038 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:96
|
1039 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1040 |
msgid "Update"
|
1041 |
msgstr "Update"
|
1053 |
msgstr "Setiap 4 minggu"
|
1054 |
|
1055 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1056 |
+
#: wp-statistics/wp-statistics.php:485
|
1057 |
msgid "Statistics"
|
1058 |
msgstr "Statistik"
|
1059 |
|
1126 |
msgid "Items"
|
1127 |
msgstr "Butir"
|
1128 |
|
1129 |
+
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:662
|
1130 |
msgid "Yesterday visit"
|
1131 |
msgstr "Pengunjung Kemarin"
|
1132 |
|
1151 |
msgstr "Statistik lengkap untuk situs WordPress Anda."
|
1152 |
|
1153 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1154 |
+
#: wp-statistics/wp-statistics.php:539
|
1155 |
msgid "Settings"
|
1156 |
msgstr "Pengaturan"
|
1157 |
|
1175 |
msgid "WP Statistics - Hits"
|
1176 |
msgstr "WP Statistics - Hits"
|
1177 |
|
1178 |
+
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:488
|
1179 |
+
#: wp-statistics/wp-statistics.php:526
|
1180 |
msgid "Overview"
|
1181 |
msgstr "Ikhtisar"
|
1182 |
|
1183 |
+
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:531
|
1184 |
msgid "Online"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:533
|
1188 |
msgid "Referrers"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1192 |
+
#: wp-statistics/wp-statistics.php:534
|
1193 |
msgid "Searches"
|
1194 |
msgstr "Pencarian"
|
1195 |
|
1196 |
+
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:535
|
1197 |
msgid "Search Words"
|
1198 |
msgstr "Kata-kata pencarian"
|
1199 |
|
1200 |
+
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:536
|
1201 |
msgid "Top Visitors Today"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
+
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:538
|
1205 |
msgid "Optimization"
|
1206 |
msgstr "Optimasi"
|
1207 |
|
1208 |
+
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:502
|
1209 |
msgid "Manual"
|
1210 |
msgstr "Manual"
|
1211 |
|
1212 |
+
#: wp-statistics/wp-statistics.php:517
|
1213 |
msgid "Site"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
+
#: wp-statistics/wp-statistics.php:518
|
1217 |
msgid "Options"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
+
#: wp-statistics/wp-statistics.php:644
|
1221 |
msgid "Today visitor"
|
1222 |
msgstr "Pengunjung hari ini"
|
1223 |
|
1224 |
+
#: wp-statistics/wp-statistics.php:650
|
1225 |
msgid "Today visit"
|
1226 |
msgstr "Hari ini mengunjungi"
|
1227 |
|
1228 |
+
#: wp-statistics/wp-statistics.php:656
|
1229 |
msgid "Yesterday visitor"
|
1230 |
msgstr "Pengunjung kemarin"
|
1231 |
|
1232 |
+
#: wp-statistics/wp-statistics.php:668
|
1233 |
msgid "View Stats"
|
1234 |
msgstr "Lihat statistik"
|
1235 |
|
1236 |
+
#: wp-statistics/wp-statistics.php:692
|
1237 |
msgid "Download ODF file"
|
1238 |
msgstr "Men-download ODF file"
|
1239 |
|
1240 |
+
#: wp-statistics/wp-statistics.php:693
|
1241 |
msgid "Download HTML file"
|
1242 |
msgstr "Men-download HTML file"
|
1243 |
|
1244 |
+
#: wp-statistics/wp-statistics.php:697
|
1245 |
msgid "Manual file not found."
|
1246 |
msgstr "Manual file tidak ditemukan."
|
1247 |
|
1248 |
+
#: wp-statistics/wp-statistics.php:764 wp-statistics/wp-statistics.php:891
|
1249 |
+
#: wp-statistics/wp-statistics.php:926
|
1250 |
msgid "You do not have sufficient permissions to access this page."
|
1251 |
msgstr "Anda tidak mempunyai akses yang cukup untuk halaman ini"
|
1252 |
|
1307 |
msgid "Top 10 Browsers"
|
1308 |
msgstr "Top 10 browser"
|
1309 |
|
1310 |
+
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:471
|
1311 |
msgid "Top 10 Countries"
|
1312 |
msgstr "Top 10 negara"
|
1313 |
|
1321 |
msgid "Hit Statistics"
|
1322 |
msgstr "Statistik hit"
|
1323 |
|
1324 |
+
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:461
|
1325 |
msgid "Top 10 Pages"
|
1326 |
msgstr "Top 10 halaman"
|
1327 |
|
1328 |
#: wp-statistics/dashboard.php:62
|
1329 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1330 |
+
#: wp-statistics/wp-statistics.php:453
|
1331 |
msgid "Recent Visitors"
|
1332 |
msgstr "Pengunjung terkini"
|
1333 |
|
1334 |
#: wp-statistics/dashboard.php:63
|
1335 |
#: wp-statistics/includes/log/top-referring.php:59
|
1336 |
#: wp-statistics/includes/log/top-referring.php:81
|
1337 |
+
#: wp-statistics/wp-statistics.php:468
|
1338 |
msgid "Top Referring Sites"
|
1339 |
msgstr "Top merujuk situs"
|
1340 |
|
1341 |
#: wp-statistics/dashboard.php:64
|
1342 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1343 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1344 |
+
#: wp-statistics/wp-statistics.php:451
|
1345 |
msgid "Search Engine Referrals"
|
1346 |
msgstr "Cari mesin arahan"
|
1347 |
|
1348 |
+
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:466
|
1349 |
msgid "Summary"
|
1350 |
msgstr "Ringkasan"
|
1351 |
|
1352 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1353 |
+
#: wp-statistics/wp-statistics.php:452
|
1354 |
msgid "Latest Search Words"
|
1355 |
msgstr "Kata-kata pencarian terbaru"
|
1356 |
|
1420 |
msgstr "Klik untuk beralih"
|
1421 |
|
1422 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1423 |
+
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:467
|
1424 |
+
#: wp-statistics/wp-statistics.php:527
|
1425 |
msgid "Browsers"
|
1426 |
msgstr "Browser"
|
1427 |
|
1494 |
#: wp-statistics/includes/log/exclusions.php:95
|
1495 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1496 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1497 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1498 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1499 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1500 |
msgid "days"
|
1509 |
msgstr "Grafik Statistik hits"
|
1510 |
|
1511 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1512 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1513 |
msgid "Hits in the last"
|
1514 |
msgstr "Hits di terakhir"
|
1515 |
|
1516 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1517 |
+
#: wp-statistics/includes/log/widgets/hits.php:65
|
1518 |
msgid "Number of visits and visitors"
|
1519 |
msgstr "Jumlah kunjungan dan pengunjung"
|
1520 |
|
1521 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1522 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1523 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1524 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1525 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1526 |
msgid "Visit"
|
1528 |
|
1529 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1530 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1531 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1532 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1533 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1534 |
msgid "Visitor"
|
1731 |
msgid "Other"
|
1732 |
msgstr "Lainnya"
|
1733 |
|
1734 |
+
#: wp-statistics/wp-statistics.php:456
|
1735 |
msgid "Today Visitors Map"
|
1736 |
msgstr "Hari peta pengunjung"
|
1737 |
|
1786 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1787 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1788 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1789 |
+
#: wp-statistics/wp-statistics.php:530
|
1790 |
msgid "Hits"
|
1791 |
msgstr "Hits"
|
1792 |
|
1805 |
|
1806 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1807 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1808 |
+
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:297
|
1809 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1810 |
msgid "Access denied!"
|
1811 |
msgstr "Akses ditolak!"
|
1861 |
|
1862 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1863 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1864 |
+
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:528
|
1865 |
msgid "Countries"
|
1866 |
msgstr "Negara"
|
1867 |
|
1946 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1947 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1948 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1949 |
+
#: wp-statistics/wp-statistics.php:537
|
1950 |
msgid "Visitors"
|
1951 |
msgstr "Pengunjung"
|
1952 |
|
2448 |
#: wp-statistics/includes/log/exclusions.php:197
|
2449 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2450 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2451 |
+
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:529
|
2452 |
msgid "Exclusions"
|
2453 |
msgstr "Pengecualian"
|
2454 |
|
2658 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2659 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2660 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2661 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:74
|
2662 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:86
|
2663 |
msgid "Active"
|
2664 |
msgstr "Aktif"
|
2665 |
|
languages/wp_statistics-it_IT.mo
CHANGED
Binary file
|
languages/wp_statistics-it_IT.po
CHANGED
@@ -7,10 +7,11 @@ msgstr ""
|
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
-
"X-Generator: GlotPress/1.0
|
|
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#: wp-statistics/ajax.php:
|
14 |
msgid "No matching widget found!"
|
15 |
msgstr ""
|
16 |
|
@@ -46,22 +47,22 @@ msgstr ""
|
|
46 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: wp-statistics/ajax.php:
|
50 |
msgid "ERROR: Widget not found!"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: wp-statistics/dashboard.php:
|
54 |
#: wp-statistics/includes/log/log.php:20
|
55 |
msgid "Loading..."
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: wp-statistics/dashboard.php:
|
59 |
#: wp-statistics/includes/log/log.php:2
|
60 |
msgid "Reloading..."
|
61 |
msgstr ""
|
62 |
|
63 |
#: wp-statistics/includes/log/top-visitors.php:41
|
64 |
-
#: wp-statistics/wp-statistics.php:
|
65 |
msgid "Top Visitors"
|
66 |
msgstr ""
|
67 |
|
@@ -158,7 +159,7 @@ msgstr ""
|
|
158 |
msgid "online user tracking"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: wp-statistics/wp-statistics.php:
|
162 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
163 |
msgstr ""
|
164 |
|
@@ -622,7 +623,7 @@ msgstr "Per ogni visita tenere conto di parecchi Hits. Attualmente %s."
|
|
622 |
|
623 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
624 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
625 |
-
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:
|
626 |
msgid "Pages"
|
627 |
msgstr "Pagine"
|
628 |
|
@@ -892,7 +893,7 @@ msgstr ""
|
|
892 |
|
893 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
894 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
895 |
-
#: wp-statistics/wp-statistics.php:
|
896 |
msgid "User Online"
|
897 |
msgstr "Utenti Online"
|
898 |
|
@@ -964,40 +965,23 @@ msgstr ""
|
|
964 |
msgid "Disable the page/post editor widget."
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
968 |
-
msgid "Map type"
|
969 |
-
msgstr "Tipo di mappa"
|
970 |
-
|
971 |
#: wp-statistics/includes/functions/functions.php:440
|
972 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
973 |
msgid "Google"
|
974 |
msgstr "Google"
|
975 |
|
976 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
977 |
-
msgid "JQVMap"
|
978 |
-
msgstr "JQVMap"
|
979 |
-
|
980 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:82
|
981 |
-
msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
|
982 |
-
msgstr "L'opzione \"Google\" utilizzerà il servizio di mappatura di Google per tracciare I visitatori (richiede l'accesso a Google)."
|
983 |
-
|
984 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:83
|
985 |
-
msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
|
986 |
-
msgstr "Il \"JQVMap\"opzione utilizzerà la libreria di mappatura JQVMap javascript per tracciare I visitatori recenti (non richiede nessun altro servizio)."
|
987 |
-
|
988 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:89
|
989 |
msgid "Disable map"
|
990 |
msgstr "Disabilita mappa"
|
991 |
|
992 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
993 |
msgid "Disable the map display"
|
994 |
msgstr "Disattivare la visualizzazione della mappa"
|
995 |
|
996 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
997 |
msgid "Get country location from Google"
|
998 |
msgstr "Prendi la localizzazione da Google"
|
999 |
|
1000 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1001 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
1002 |
msgstr "Questa caratteristica può causare un degrado delle prestazioni durante la visualizzazione di statistiche ed è valido solo se il tipo di mappa è impostato su \"Google\"."
|
1003 |
|
@@ -1051,7 +1035,7 @@ msgstr ""
|
|
1051 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1052 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1053 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1054 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1055 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1056 |
msgid "Update"
|
1057 |
msgstr "Aggiorna"
|
@@ -1069,7 +1053,7 @@ msgid "Once Every 4 Weeks"
|
|
1069 |
msgstr "Una volta ogni 4 settimane"
|
1070 |
|
1071 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1072 |
-
#: wp-statistics/wp-statistics.php:
|
1073 |
msgid "Statistics"
|
1074 |
msgstr "Statistiche"
|
1075 |
|
@@ -1142,7 +1126,7 @@ msgstr "Nome"
|
|
1142 |
msgid "Items"
|
1143 |
msgstr "Oggetti"
|
1144 |
|
1145 |
-
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:
|
1146 |
msgid "Yesterday visit"
|
1147 |
msgstr "Visite di ieri"
|
1148 |
|
@@ -1167,7 +1151,7 @@ msgid "Complete statistics for your WordPress site."
|
|
1167 |
msgstr "Statistiche complete per il tuo sito WordPress."
|
1168 |
|
1169 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1170 |
-
#: wp-statistics/wp-statistics.php:
|
1171 |
msgid "Settings"
|
1172 |
msgstr "Impostazioni"
|
1173 |
|
@@ -1191,78 +1175,78 @@ msgstr "Vota questo plugin"
|
|
1191 |
msgid "WP Statistics - Hits"
|
1192 |
msgstr "WP Statistics – Hits"
|
1193 |
|
1194 |
-
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:
|
1195 |
-
#: wp-statistics/wp-statistics.php:
|
1196 |
msgid "Overview"
|
1197 |
msgstr "Panoramica"
|
1198 |
|
1199 |
-
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:
|
1200 |
msgid "Online"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:
|
1204 |
msgid "Referrers"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1208 |
-
#: wp-statistics/wp-statistics.php:
|
1209 |
msgid "Searches"
|
1210 |
msgstr "Ricerche"
|
1211 |
|
1212 |
-
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:
|
1213 |
msgid "Search Words"
|
1214 |
msgstr "Parole di Ricerca"
|
1215 |
|
1216 |
-
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:
|
1217 |
msgid "Top Visitors Today"
|
1218 |
msgstr "Top Visite Odierne"
|
1219 |
|
1220 |
-
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:
|
1221 |
msgid "Optimization"
|
1222 |
msgstr "Ottimizzazione"
|
1223 |
|
1224 |
-
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:
|
1225 |
msgid "Manual"
|
1226 |
msgstr "Manuale"
|
1227 |
|
1228 |
-
#: wp-statistics/wp-statistics.php:
|
1229 |
msgid "Site"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
-
#: wp-statistics/wp-statistics.php:
|
1233 |
msgid "Options"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
-
#: wp-statistics/wp-statistics.php:
|
1237 |
msgid "Today visitor"
|
1238 |
msgstr "Visitatori di oggi"
|
1239 |
|
1240 |
-
#: wp-statistics/wp-statistics.php:
|
1241 |
msgid "Today visit"
|
1242 |
msgstr "Visite di oggi"
|
1243 |
|
1244 |
-
#: wp-statistics/wp-statistics.php:
|
1245 |
msgid "Yesterday visitor"
|
1246 |
msgstr "Visitatori di ieri"
|
1247 |
|
1248 |
-
#: wp-statistics/wp-statistics.php:
|
1249 |
msgid "View Stats"
|
1250 |
msgstr "Vedi Statistiche"
|
1251 |
|
1252 |
-
#: wp-statistics/wp-statistics.php:
|
1253 |
msgid "Download ODF file"
|
1254 |
msgstr "Scarica file ODF"
|
1255 |
|
1256 |
-
#: wp-statistics/wp-statistics.php:
|
1257 |
msgid "Download HTML file"
|
1258 |
msgstr "Scarica file HTML"
|
1259 |
|
1260 |
-
#: wp-statistics/wp-statistics.php:
|
1261 |
msgid "Manual file not found."
|
1262 |
msgstr "File con il manuale non trovato."
|
1263 |
|
1264 |
-
#: wp-statistics/wp-statistics.php:
|
1265 |
-
#: wp-statistics/wp-statistics.php:
|
1266 |
msgid "You do not have sufficient permissions to access this page."
|
1267 |
msgstr "Non si dispone delle autorizzazioni sufficienti per accedere a questa pagina."
|
1268 |
|
@@ -1323,7 +1307,7 @@ msgstr ""
|
|
1323 |
msgid "Top 10 Browsers"
|
1324 |
msgstr "Top 10 Browsers"
|
1325 |
|
1326 |
-
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:
|
1327 |
msgid "Top 10 Countries"
|
1328 |
msgstr "Top 10 Paesi"
|
1329 |
|
@@ -1337,36 +1321,36 @@ msgstr ""
|
|
1337 |
msgid "Hit Statistics"
|
1338 |
msgstr "Statistiche Hits"
|
1339 |
|
1340 |
-
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:
|
1341 |
msgid "Top 10 Pages"
|
1342 |
msgstr "Top 10 Pagine"
|
1343 |
|
1344 |
#: wp-statistics/dashboard.php:62
|
1345 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1346 |
-
#: wp-statistics/wp-statistics.php:
|
1347 |
msgid "Recent Visitors"
|
1348 |
msgstr "Visitatori Recenti"
|
1349 |
|
1350 |
#: wp-statistics/dashboard.php:63
|
1351 |
#: wp-statistics/includes/log/top-referring.php:59
|
1352 |
#: wp-statistics/includes/log/top-referring.php:81
|
1353 |
-
#: wp-statistics/wp-statistics.php:
|
1354 |
msgid "Top Referring Sites"
|
1355 |
msgstr "Top Siti Referrals"
|
1356 |
|
1357 |
#: wp-statistics/dashboard.php:64
|
1358 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1359 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1360 |
-
#: wp-statistics/wp-statistics.php:
|
1361 |
msgid "Search Engine Referrals"
|
1362 |
msgstr "Cerca tra i Referrals nei motori di ricerca:"
|
1363 |
|
1364 |
-
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:
|
1365 |
msgid "Summary"
|
1366 |
msgstr "Sommario"
|
1367 |
|
1368 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1369 |
-
#: wp-statistics/wp-statistics.php:
|
1370 |
msgid "Latest Search Words"
|
1371 |
msgstr "Ultime Parole di Ricerca"
|
1372 |
|
@@ -1436,8 +1420,8 @@ msgid "Click to toggle"
|
|
1436 |
msgstr "Fare clic per attivare"
|
1437 |
|
1438 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1439 |
-
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:
|
1440 |
-
#: wp-statistics/wp-statistics.php:
|
1441 |
msgid "Browsers"
|
1442 |
msgstr "Browsers"
|
1443 |
|
@@ -1510,7 +1494,7 @@ msgstr "Hits non conteggiati negli ultimi"
|
|
1510 |
#: wp-statistics/includes/log/exclusions.php:95
|
1511 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1512 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1513 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1514 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1515 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1516 |
msgid "days"
|
@@ -1525,18 +1509,18 @@ msgid "Hits Statistics Chart"
|
|
1525 |
msgstr "Grafico Statistiche Hits"
|
1526 |
|
1527 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1528 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1529 |
msgid "Hits in the last"
|
1530 |
msgstr "Hits negli ultimi"
|
1531 |
|
1532 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1533 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1534 |
msgid "Number of visits and visitors"
|
1535 |
msgstr "Numero di visite e visitatori"
|
1536 |
|
1537 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1538 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1539 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1540 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1541 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1542 |
msgid "Visit"
|
@@ -1544,7 +1528,7 @@ msgstr "Visita"
|
|
1544 |
|
1545 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1546 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1547 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1548 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1549 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1550 |
msgid "Visitor"
|
@@ -1747,7 +1731,7 @@ msgstr "Questo prodotto comprende I dati GeoLite2 creati da MaxMind, disponibili
|
|
1747 |
msgid "Other"
|
1748 |
msgstr "Altri"
|
1749 |
|
1750 |
-
#: wp-statistics/wp-statistics.php:
|
1751 |
msgid "Today Visitors Map"
|
1752 |
msgstr "Mappa Visitatori di Oggi"
|
1753 |
|
@@ -1802,7 +1786,7 @@ msgstr "Ora: %s"
|
|
1802 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1803 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1804 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1805 |
-
#: wp-statistics/wp-statistics.php:
|
1806 |
msgid "Hits"
|
1807 |
msgstr "Hits"
|
1808 |
|
@@ -1821,7 +1805,7 @@ msgstr ""
|
|
1821 |
|
1822 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1823 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1824 |
-
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:
|
1825 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1826 |
msgid "Access denied!"
|
1827 |
msgstr "Accesso negato!"
|
@@ -1877,7 +1861,7 @@ msgstr "Database Index"
|
|
1877 |
|
1878 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1879 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1880 |
-
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:
|
1881 |
msgid "Countries"
|
1882 |
msgstr "Paesi"
|
1883 |
|
@@ -1962,7 +1946,7 @@ msgstr ""
|
|
1962 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1963 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1964 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1965 |
-
#: wp-statistics/wp-statistics.php:
|
1966 |
msgid "Visitors"
|
1967 |
msgstr "Visitatori"
|
1968 |
|
@@ -2464,7 +2448,7 @@ msgstr "Se avete bisogno di una soluzione più sicura per delegare l'accesso, po
|
|
2464 |
#: wp-statistics/includes/log/exclusions.php:197
|
2465 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2466 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2467 |
-
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:
|
2468 |
msgid "Exclusions"
|
2469 |
msgstr "Esclusioni"
|
2470 |
|
@@ -2674,8 +2658,8 @@ msgstr "Utilizzo di browsca"
|
|
2674 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2675 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2676 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2677 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2678 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2679 |
msgid "Active"
|
2680 |
msgstr "Active"
|
2681 |
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
+
"X-Generator: GlotPress/2.1.0\n"
|
11 |
+
"Language: it\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
14 |
+
#: wp-statistics/ajax.php:215
|
15 |
msgid "No matching widget found!"
|
16 |
msgstr ""
|
17 |
|
47 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: wp-statistics/ajax.php:294
|
51 |
msgid "ERROR: Widget not found!"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: wp-statistics/dashboard.php:107 wp-statistics/editor.php:66
|
55 |
#: wp-statistics/includes/log/log.php:20
|
56 |
msgid "Loading..."
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: wp-statistics/dashboard.php:125 wp-statistics/editor.php:84
|
60 |
#: wp-statistics/includes/log/log.php:2
|
61 |
msgid "Reloading..."
|
62 |
msgstr ""
|
63 |
|
64 |
#: wp-statistics/includes/log/top-visitors.php:41
|
65 |
+
#: wp-statistics/wp-statistics.php:450
|
66 |
msgid "Top Visitors"
|
67 |
msgstr ""
|
68 |
|
159 |
msgid "online user tracking"
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: wp-statistics/wp-statistics.php:791
|
163 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
164 |
msgstr ""
|
165 |
|
623 |
|
624 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
625 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
626 |
+
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:532
|
627 |
msgid "Pages"
|
628 |
msgstr "Pagine"
|
629 |
|
893 |
|
894 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
895 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
896 |
+
#: wp-statistics/wp-statistics.php:637
|
897 |
msgid "User Online"
|
898 |
msgstr "Utenti Online"
|
899 |
|
965 |
msgid "Disable the page/post editor widget."
|
966 |
msgstr ""
|
967 |
|
|
|
|
|
|
|
|
|
968 |
#: wp-statistics/includes/functions/functions.php:440
|
|
|
969 |
msgid "Google"
|
970 |
msgstr "Google"
|
971 |
|
972 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
973 |
msgid "Disable map"
|
974 |
msgstr "Disabilita mappa"
|
975 |
|
976 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
977 |
msgid "Disable the map display"
|
978 |
msgstr "Disattivare la visualizzazione della mappa"
|
979 |
|
980 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:81
|
981 |
msgid "Get country location from Google"
|
982 |
msgstr "Prendi la localizzazione da Google"
|
983 |
|
984 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:87
|
985 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
986 |
msgstr "Questa caratteristica può causare un degrado delle prestazioni durante la visualizzazione di statistiche ed è valido solo se il tipo di mappa è impostato su \"Google\"."
|
987 |
|
1035 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1036 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1037 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1038 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:96
|
1039 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1040 |
msgid "Update"
|
1041 |
msgstr "Aggiorna"
|
1053 |
msgstr "Una volta ogni 4 settimane"
|
1054 |
|
1055 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1056 |
+
#: wp-statistics/wp-statistics.php:485
|
1057 |
msgid "Statistics"
|
1058 |
msgstr "Statistiche"
|
1059 |
|
1126 |
msgid "Items"
|
1127 |
msgstr "Oggetti"
|
1128 |
|
1129 |
+
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:662
|
1130 |
msgid "Yesterday visit"
|
1131 |
msgstr "Visite di ieri"
|
1132 |
|
1151 |
msgstr "Statistiche complete per il tuo sito WordPress."
|
1152 |
|
1153 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1154 |
+
#: wp-statistics/wp-statistics.php:539
|
1155 |
msgid "Settings"
|
1156 |
msgstr "Impostazioni"
|
1157 |
|
1175 |
msgid "WP Statistics - Hits"
|
1176 |
msgstr "WP Statistics – Hits"
|
1177 |
|
1178 |
+
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:488
|
1179 |
+
#: wp-statistics/wp-statistics.php:526
|
1180 |
msgid "Overview"
|
1181 |
msgstr "Panoramica"
|
1182 |
|
1183 |
+
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:531
|
1184 |
msgid "Online"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:533
|
1188 |
msgid "Referrers"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1192 |
+
#: wp-statistics/wp-statistics.php:534
|
1193 |
msgid "Searches"
|
1194 |
msgstr "Ricerche"
|
1195 |
|
1196 |
+
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:535
|
1197 |
msgid "Search Words"
|
1198 |
msgstr "Parole di Ricerca"
|
1199 |
|
1200 |
+
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:536
|
1201 |
msgid "Top Visitors Today"
|
1202 |
msgstr "Top Visite Odierne"
|
1203 |
|
1204 |
+
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:538
|
1205 |
msgid "Optimization"
|
1206 |
msgstr "Ottimizzazione"
|
1207 |
|
1208 |
+
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:502
|
1209 |
msgid "Manual"
|
1210 |
msgstr "Manuale"
|
1211 |
|
1212 |
+
#: wp-statistics/wp-statistics.php:517
|
1213 |
msgid "Site"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
+
#: wp-statistics/wp-statistics.php:518
|
1217 |
msgid "Options"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
+
#: wp-statistics/wp-statistics.php:644
|
1221 |
msgid "Today visitor"
|
1222 |
msgstr "Visitatori di oggi"
|
1223 |
|
1224 |
+
#: wp-statistics/wp-statistics.php:650
|
1225 |
msgid "Today visit"
|
1226 |
msgstr "Visite di oggi"
|
1227 |
|
1228 |
+
#: wp-statistics/wp-statistics.php:656
|
1229 |
msgid "Yesterday visitor"
|
1230 |
msgstr "Visitatori di ieri"
|
1231 |
|
1232 |
+
#: wp-statistics/wp-statistics.php:668
|
1233 |
msgid "View Stats"
|
1234 |
msgstr "Vedi Statistiche"
|
1235 |
|
1236 |
+
#: wp-statistics/wp-statistics.php:692
|
1237 |
msgid "Download ODF file"
|
1238 |
msgstr "Scarica file ODF"
|
1239 |
|
1240 |
+
#: wp-statistics/wp-statistics.php:693
|
1241 |
msgid "Download HTML file"
|
1242 |
msgstr "Scarica file HTML"
|
1243 |
|
1244 |
+
#: wp-statistics/wp-statistics.php:697
|
1245 |
msgid "Manual file not found."
|
1246 |
msgstr "File con il manuale non trovato."
|
1247 |
|
1248 |
+
#: wp-statistics/wp-statistics.php:764 wp-statistics/wp-statistics.php:891
|
1249 |
+
#: wp-statistics/wp-statistics.php:926
|
1250 |
msgid "You do not have sufficient permissions to access this page."
|
1251 |
msgstr "Non si dispone delle autorizzazioni sufficienti per accedere a questa pagina."
|
1252 |
|
1307 |
msgid "Top 10 Browsers"
|
1308 |
msgstr "Top 10 Browsers"
|
1309 |
|
1310 |
+
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:471
|
1311 |
msgid "Top 10 Countries"
|
1312 |
msgstr "Top 10 Paesi"
|
1313 |
|
1321 |
msgid "Hit Statistics"
|
1322 |
msgstr "Statistiche Hits"
|
1323 |
|
1324 |
+
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:461
|
1325 |
msgid "Top 10 Pages"
|
1326 |
msgstr "Top 10 Pagine"
|
1327 |
|
1328 |
#: wp-statistics/dashboard.php:62
|
1329 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1330 |
+
#: wp-statistics/wp-statistics.php:453
|
1331 |
msgid "Recent Visitors"
|
1332 |
msgstr "Visitatori Recenti"
|
1333 |
|
1334 |
#: wp-statistics/dashboard.php:63
|
1335 |
#: wp-statistics/includes/log/top-referring.php:59
|
1336 |
#: wp-statistics/includes/log/top-referring.php:81
|
1337 |
+
#: wp-statistics/wp-statistics.php:468
|
1338 |
msgid "Top Referring Sites"
|
1339 |
msgstr "Top Siti Referrals"
|
1340 |
|
1341 |
#: wp-statistics/dashboard.php:64
|
1342 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1343 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1344 |
+
#: wp-statistics/wp-statistics.php:451
|
1345 |
msgid "Search Engine Referrals"
|
1346 |
msgstr "Cerca tra i Referrals nei motori di ricerca:"
|
1347 |
|
1348 |
+
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:466
|
1349 |
msgid "Summary"
|
1350 |
msgstr "Sommario"
|
1351 |
|
1352 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1353 |
+
#: wp-statistics/wp-statistics.php:452
|
1354 |
msgid "Latest Search Words"
|
1355 |
msgstr "Ultime Parole di Ricerca"
|
1356 |
|
1420 |
msgstr "Fare clic per attivare"
|
1421 |
|
1422 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1423 |
+
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:467
|
1424 |
+
#: wp-statistics/wp-statistics.php:527
|
1425 |
msgid "Browsers"
|
1426 |
msgstr "Browsers"
|
1427 |
|
1494 |
#: wp-statistics/includes/log/exclusions.php:95
|
1495 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1496 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1497 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1498 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1499 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1500 |
msgid "days"
|
1509 |
msgstr "Grafico Statistiche Hits"
|
1510 |
|
1511 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1512 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1513 |
msgid "Hits in the last"
|
1514 |
msgstr "Hits negli ultimi"
|
1515 |
|
1516 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1517 |
+
#: wp-statistics/includes/log/widgets/hits.php:65
|
1518 |
msgid "Number of visits and visitors"
|
1519 |
msgstr "Numero di visite e visitatori"
|
1520 |
|
1521 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1522 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1523 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1524 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1525 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1526 |
msgid "Visit"
|
1528 |
|
1529 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1530 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1531 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1532 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1533 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1534 |
msgid "Visitor"
|
1731 |
msgid "Other"
|
1732 |
msgstr "Altri"
|
1733 |
|
1734 |
+
#: wp-statistics/wp-statistics.php:456
|
1735 |
msgid "Today Visitors Map"
|
1736 |
msgstr "Mappa Visitatori di Oggi"
|
1737 |
|
1786 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1787 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1788 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1789 |
+
#: wp-statistics/wp-statistics.php:530
|
1790 |
msgid "Hits"
|
1791 |
msgstr "Hits"
|
1792 |
|
1805 |
|
1806 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1807 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1808 |
+
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:297
|
1809 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1810 |
msgid "Access denied!"
|
1811 |
msgstr "Accesso negato!"
|
1861 |
|
1862 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1863 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1864 |
+
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:528
|
1865 |
msgid "Countries"
|
1866 |
msgstr "Paesi"
|
1867 |
|
1946 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1947 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1948 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1949 |
+
#: wp-statistics/wp-statistics.php:537
|
1950 |
msgid "Visitors"
|
1951 |
msgstr "Visitatori"
|
1952 |
|
2448 |
#: wp-statistics/includes/log/exclusions.php:197
|
2449 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2450 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2451 |
+
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:529
|
2452 |
msgid "Exclusions"
|
2453 |
msgstr "Esclusioni"
|
2454 |
|
2658 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2659 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2660 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2661 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:74
|
2662 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:86
|
2663 |
msgid "Active"
|
2664 |
msgstr "Active"
|
2665 |
|
languages/wp_statistics-ja.mo
CHANGED
Binary file
|
languages/wp_statistics-ja.po
CHANGED
@@ -7,10 +7,11 @@ msgstr ""
|
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
10 |
-
"X-Generator: GlotPress/1.0
|
|
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#: wp-statistics/ajax.php:
|
14 |
msgid "No matching widget found!"
|
15 |
msgstr ""
|
16 |
|
@@ -46,22 +47,22 @@ msgstr ""
|
|
46 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: wp-statistics/ajax.php:
|
50 |
msgid "ERROR: Widget not found!"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: wp-statistics/dashboard.php:
|
54 |
#: wp-statistics/includes/log/log.php:20
|
55 |
msgid "Loading..."
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: wp-statistics/dashboard.php:
|
59 |
#: wp-statistics/includes/log/log.php:2
|
60 |
msgid "Reloading..."
|
61 |
msgstr ""
|
62 |
|
63 |
#: wp-statistics/includes/log/top-visitors.php:41
|
64 |
-
#: wp-statistics/wp-statistics.php:
|
65 |
msgid "Top Visitors"
|
66 |
msgstr ""
|
67 |
|
@@ -158,7 +159,7 @@ msgstr "ヒットの追跡"
|
|
158 |
msgid "online user tracking"
|
159 |
msgstr "オンラインユーザ追跡"
|
160 |
|
161 |
-
#: wp-statistics/wp-statistics.php:
|
162 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
163 |
msgstr "次のプラグインテーブルがデータベースに存在しません. %sを再実行して%sをインストールしてください."
|
164 |
|
@@ -622,7 +623,7 @@ msgstr "それぞれの訪問について複数のヒットを考慮する。現
|
|
622 |
|
623 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
624 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
625 |
-
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:
|
626 |
msgid "Pages"
|
627 |
msgstr "ページ"
|
628 |
|
@@ -892,7 +893,7 @@ msgstr "WP Statisticsのためのショートコード(使用可能なコード
|
|
892 |
|
893 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
894 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
895 |
-
#: wp-statistics/wp-statistics.php:
|
896 |
msgid "User Online"
|
897 |
msgstr "オンラインユーザー"
|
898 |
|
@@ -964,40 +965,23 @@ msgstr "ページ/投稿エディタウィジェットを無効にします"
|
|
964 |
msgid "Disable the page/post editor widget."
|
965 |
msgstr "ページ/投稿エディタウィジェットを無効にします。"
|
966 |
|
967 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
968 |
-
msgid "Map type"
|
969 |
-
msgstr "マップタイプ"
|
970 |
-
|
971 |
#: wp-statistics/includes/functions/functions.php:440
|
972 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
973 |
msgid "Google"
|
974 |
msgstr "グーグル"
|
975 |
|
976 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
977 |
-
msgid "JQVMap"
|
978 |
-
msgstr "JQVMap"
|
979 |
-
|
980 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:82
|
981 |
-
msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
|
982 |
-
msgstr "\"Google\"オプションは最近の訪問者をプロットするためにGoogleの地図サービスを使用します(Googleにアクセスする必要があります)。"
|
983 |
-
|
984 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:83
|
985 |
-
msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
|
986 |
-
msgstr "\"JQVMap\"オプションは最近の訪問者をプロットするためにJavaScriptのマッピングライブラリJQVMapを使用します(外部サービスを必要としません)。"
|
987 |
-
|
988 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:89
|
989 |
msgid "Disable map"
|
990 |
msgstr "地図を無効にします"
|
991 |
|
992 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
993 |
msgid "Disable the map display"
|
994 |
msgstr "地図表示を無効にします"
|
995 |
|
996 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
997 |
msgid "Get country location from Google"
|
998 |
msgstr "国の位置をGoogleから取得"
|
999 |
|
1000 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1001 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
1002 |
msgstr "この機能は統計情報を表示する際にパフォーマンスの低下を引き起こす可能性があり, マップタイプが\"Google\"に設定されている場合にのみ有効です."
|
1003 |
|
@@ -1051,7 +1035,7 @@ msgstr "削除"
|
|
1051 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1052 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1053 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1054 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1055 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1056 |
msgid "Update"
|
1057 |
msgstr "更新"
|
@@ -1069,7 +1053,7 @@ msgid "Once Every 4 Weeks"
|
|
1069 |
msgstr "4週間毎に1回"
|
1070 |
|
1071 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1072 |
-
#: wp-statistics/wp-statistics.php:
|
1073 |
msgid "Statistics"
|
1074 |
msgstr "統計"
|
1075 |
|
@@ -1142,7 +1126,7 @@ msgstr "名"
|
|
1142 |
msgid "Items"
|
1143 |
msgstr "アイテム"
|
1144 |
|
1145 |
-
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:
|
1146 |
msgid "Yesterday visit"
|
1147 |
msgstr "昨日の訪問数"
|
1148 |
|
@@ -1167,7 +1151,7 @@ msgid "Complete statistics for your WordPress site."
|
|
1167 |
msgstr "Word Pressサイトのための完全な統計情報を表示します。"
|
1168 |
|
1169 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1170 |
-
#: wp-statistics/wp-statistics.php:
|
1171 |
msgid "Settings"
|
1172 |
msgstr "設定"
|
1173 |
|
@@ -1191,78 +1175,78 @@ msgstr "このプラグインを評価する"
|
|
1191 |
msgid "WP Statistics - Hits"
|
1192 |
msgstr "WP Statistics - ヒット"
|
1193 |
|
1194 |
-
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:
|
1195 |
-
#: wp-statistics/wp-statistics.php:
|
1196 |
msgid "Overview"
|
1197 |
msgstr "概要"
|
1198 |
|
1199 |
-
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:
|
1200 |
msgid "Online"
|
1201 |
msgstr "オンライン"
|
1202 |
|
1203 |
-
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:
|
1204 |
msgid "Referrers"
|
1205 |
msgstr "参照元"
|
1206 |
|
1207 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1208 |
-
#: wp-statistics/wp-statistics.php:
|
1209 |
msgid "Searches"
|
1210 |
msgstr "検索"
|
1211 |
|
1212 |
-
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:
|
1213 |
msgid "Search Words"
|
1214 |
msgstr "検索ワード"
|
1215 |
|
1216 |
-
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:
|
1217 |
msgid "Top Visitors Today"
|
1218 |
msgstr "今日のトップ訪問者"
|
1219 |
|
1220 |
-
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:
|
1221 |
msgid "Optimization"
|
1222 |
msgstr "最適化"
|
1223 |
|
1224 |
-
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:
|
1225 |
msgid "Manual"
|
1226 |
msgstr "マニュアル"
|
1227 |
|
1228 |
-
#: wp-statistics/wp-statistics.php:
|
1229 |
msgid "Site"
|
1230 |
msgstr "サイト"
|
1231 |
|
1232 |
-
#: wp-statistics/wp-statistics.php:
|
1233 |
msgid "Options"
|
1234 |
msgstr "オプション"
|
1235 |
|
1236 |
-
#: wp-statistics/wp-statistics.php:
|
1237 |
msgid "Today visitor"
|
1238 |
msgstr "今日の訪問者"
|
1239 |
|
1240 |
-
#: wp-statistics/wp-statistics.php:
|
1241 |
msgid "Today visit"
|
1242 |
msgstr "今日の訪問"
|
1243 |
|
1244 |
-
#: wp-statistics/wp-statistics.php:
|
1245 |
msgid "Yesterday visitor"
|
1246 |
msgstr "昨日の訪問者"
|
1247 |
|
1248 |
-
#: wp-statistics/wp-statistics.php:
|
1249 |
msgid "View Stats"
|
1250 |
msgstr "統計を見る"
|
1251 |
|
1252 |
-
#: wp-statistics/wp-statistics.php:
|
1253 |
msgid "Download ODF file"
|
1254 |
msgstr "ODFファイルをダウンロード"
|
1255 |
|
1256 |
-
#: wp-statistics/wp-statistics.php:
|
1257 |
msgid "Download HTML file"
|
1258 |
msgstr "HTMLファイルをダウンロード"
|
1259 |
|
1260 |
-
#: wp-statistics/wp-statistics.php:
|
1261 |
msgid "Manual file not found."
|
1262 |
msgstr "マニュアルファイルが見つかりません。"
|
1263 |
|
1264 |
-
#: wp-statistics/wp-statistics.php:
|
1265 |
-
#: wp-statistics/wp-statistics.php:
|
1266 |
msgid "You do not have sufficient permissions to access this page."
|
1267 |
msgstr "あなたがこのページにアクセスするための十分な権限がありません。"
|
1268 |
|
@@ -1323,7 +1307,7 @@ msgstr "クイック統計"
|
|
1323 |
msgid "Top 10 Browsers"
|
1324 |
msgstr "トップ10ブラウザ"
|
1325 |
|
1326 |
-
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:
|
1327 |
msgid "Top 10 Countries"
|
1328 |
msgstr "上位10カ国"
|
1329 |
|
@@ -1337,36 +1321,36 @@ msgstr "今日の訪問者マップ"
|
|
1337 |
msgid "Hit Statistics"
|
1338 |
msgstr "ヒット統計"
|
1339 |
|
1340 |
-
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:
|
1341 |
msgid "Top 10 Pages"
|
1342 |
msgstr "トップ10ページ"
|
1343 |
|
1344 |
#: wp-statistics/dashboard.php:62
|
1345 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1346 |
-
#: wp-statistics/wp-statistics.php:
|
1347 |
msgid "Recent Visitors"
|
1348 |
msgstr "最近の訪問者"
|
1349 |
|
1350 |
#: wp-statistics/dashboard.php:63
|
1351 |
#: wp-statistics/includes/log/top-referring.php:59
|
1352 |
#: wp-statistics/includes/log/top-referring.php:81
|
1353 |
-
#: wp-statistics/wp-statistics.php:
|
1354 |
msgid "Top Referring Sites"
|
1355 |
msgstr "トップ参照サイト"
|
1356 |
|
1357 |
#: wp-statistics/dashboard.php:64
|
1358 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1359 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1360 |
-
#: wp-statistics/wp-statistics.php:
|
1361 |
msgid "Search Engine Referrals"
|
1362 |
msgstr "参照元検索エンジン"
|
1363 |
|
1364 |
-
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:
|
1365 |
msgid "Summary"
|
1366 |
msgstr "概要"
|
1367 |
|
1368 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1369 |
-
#: wp-statistics/wp-statistics.php:
|
1370 |
msgid "Latest Search Words"
|
1371 |
msgstr "最新の検索ワード"
|
1372 |
|
@@ -1436,8 +1420,8 @@ msgid "Click to toggle"
|
|
1436 |
msgstr "クリックして切り替えます"
|
1437 |
|
1438 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1439 |
-
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:
|
1440 |
-
#: wp-statistics/wp-statistics.php:
|
1441 |
msgid "Browsers"
|
1442 |
msgstr "ブラウザ"
|
1443 |
|
@@ -1510,7 +1494,7 @@ msgstr "最近除外されたヒット"
|
|
1510 |
#: wp-statistics/includes/log/exclusions.php:95
|
1511 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1512 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1513 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1514 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1515 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1516 |
msgid "days"
|
@@ -1525,18 +1509,18 @@ msgid "Hits Statistics Chart"
|
|
1525 |
msgstr "ヒット数統計のチャート"
|
1526 |
|
1527 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1528 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1529 |
msgid "Hits in the last"
|
1530 |
msgstr "最近のヒット"
|
1531 |
|
1532 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1533 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1534 |
msgid "Number of visits and visitors"
|
1535 |
msgstr "訪問数と訪問者数"
|
1536 |
|
1537 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1538 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1539 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1540 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1541 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1542 |
msgid "Visit"
|
@@ -1544,7 +1528,7 @@ msgstr "訪問"
|
|
1544 |
|
1545 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1546 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1547 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1548 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1549 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1550 |
msgid "Visitor"
|
@@ -1747,7 +1731,7 @@ msgstr "この製品は、%sから入手できるMaxMindによって作成され
|
|
1747 |
msgid "Other"
|
1748 |
msgstr "その他"
|
1749 |
|
1750 |
-
#: wp-statistics/wp-statistics.php:
|
1751 |
msgid "Today Visitors Map"
|
1752 |
msgstr "今日の訪問者マップ"
|
1753 |
|
@@ -1802,7 +1786,7 @@ msgstr "時間: %sの"
|
|
1802 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1803 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1804 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1805 |
-
#: wp-statistics/wp-statistics.php:
|
1806 |
msgid "Hits"
|
1807 |
msgstr "ヒット数"
|
1808 |
|
@@ -1821,7 +1805,7 @@ msgstr "バージョン"
|
|
1821 |
|
1822 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1823 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1824 |
-
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:
|
1825 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1826 |
msgid "Access denied!"
|
1827 |
msgstr "アクセスが拒否されました!"
|
@@ -1877,7 +1861,7 @@ msgstr "データベースのインデックス"
|
|
1877 |
|
1878 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1879 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1880 |
-
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:
|
1881 |
msgid "Countries"
|
1882 |
msgstr "国"
|
1883 |
|
@@ -1962,7 +1946,7 @@ msgstr "注: データベースからパージしたばかりなので、番号
|
|
1962 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1963 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1964 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1965 |
-
#: wp-statistics/wp-statistics.php:
|
1966 |
msgid "Visitors"
|
1967 |
msgstr "訪問者"
|
1968 |
|
@@ -2464,7 +2448,7 @@ msgstr "あなたがアクセス権を委任するより堅牢なソリューシ
|
|
2464 |
#: wp-statistics/includes/log/exclusions.php:197
|
2465 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2466 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2467 |
-
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:
|
2468 |
msgid "Exclusions"
|
2469 |
msgstr "除外"
|
2470 |
|
@@ -2674,8 +2658,8 @@ msgstr "browscap利用"
|
|
2674 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2675 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2676 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2677 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2678 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2679 |
msgid "Active"
|
2680 |
msgstr "有効"
|
2681 |
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
10 |
+
"X-Generator: GlotPress/2.1.0\n"
|
11 |
+
"Language: ja_JP\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
14 |
+
#: wp-statistics/ajax.php:215
|
15 |
msgid "No matching widget found!"
|
16 |
msgstr ""
|
17 |
|
47 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: wp-statistics/ajax.php:294
|
51 |
msgid "ERROR: Widget not found!"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: wp-statistics/dashboard.php:107 wp-statistics/editor.php:66
|
55 |
#: wp-statistics/includes/log/log.php:20
|
56 |
msgid "Loading..."
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: wp-statistics/dashboard.php:125 wp-statistics/editor.php:84
|
60 |
#: wp-statistics/includes/log/log.php:2
|
61 |
msgid "Reloading..."
|
62 |
msgstr ""
|
63 |
|
64 |
#: wp-statistics/includes/log/top-visitors.php:41
|
65 |
+
#: wp-statistics/wp-statistics.php:450
|
66 |
msgid "Top Visitors"
|
67 |
msgstr ""
|
68 |
|
159 |
msgid "online user tracking"
|
160 |
msgstr "オンラインユーザ追跡"
|
161 |
|
162 |
+
#: wp-statistics/wp-statistics.php:791
|
163 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
164 |
msgstr "次のプラグインテーブルがデータベースに存在しません. %sを再実行して%sをインストールしてください."
|
165 |
|
623 |
|
624 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
625 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
626 |
+
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:532
|
627 |
msgid "Pages"
|
628 |
msgstr "ページ"
|
629 |
|
893 |
|
894 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
895 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
896 |
+
#: wp-statistics/wp-statistics.php:637
|
897 |
msgid "User Online"
|
898 |
msgstr "オンラインユーザー"
|
899 |
|
965 |
msgid "Disable the page/post editor widget."
|
966 |
msgstr "ページ/投稿エディタウィジェットを無効にします。"
|
967 |
|
|
|
|
|
|
|
|
|
968 |
#: wp-statistics/includes/functions/functions.php:440
|
|
|
969 |
msgid "Google"
|
970 |
msgstr "グーグル"
|
971 |
|
972 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
973 |
msgid "Disable map"
|
974 |
msgstr "地図を無効にします"
|
975 |
|
976 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
977 |
msgid "Disable the map display"
|
978 |
msgstr "地図表示を無効にします"
|
979 |
|
980 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:81
|
981 |
msgid "Get country location from Google"
|
982 |
msgstr "国の位置をGoogleから取得"
|
983 |
|
984 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:87
|
985 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
986 |
msgstr "この機能は統計情報を表示する際にパフォーマンスの低下を引き起こす可能性があり, マップタイプが\"Google\"に設定されている場合にのみ有効です."
|
987 |
|
1035 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1036 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1037 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1038 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:96
|
1039 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1040 |
msgid "Update"
|
1041 |
msgstr "更新"
|
1053 |
msgstr "4週間毎に1回"
|
1054 |
|
1055 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1056 |
+
#: wp-statistics/wp-statistics.php:485
|
1057 |
msgid "Statistics"
|
1058 |
msgstr "統計"
|
1059 |
|
1126 |
msgid "Items"
|
1127 |
msgstr "アイテム"
|
1128 |
|
1129 |
+
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:662
|
1130 |
msgid "Yesterday visit"
|
1131 |
msgstr "昨日の訪問数"
|
1132 |
|
1151 |
msgstr "Word Pressサイトのための完全な統計情報を表示します。"
|
1152 |
|
1153 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1154 |
+
#: wp-statistics/wp-statistics.php:539
|
1155 |
msgid "Settings"
|
1156 |
msgstr "設定"
|
1157 |
|
1175 |
msgid "WP Statistics - Hits"
|
1176 |
msgstr "WP Statistics - ヒット"
|
1177 |
|
1178 |
+
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:488
|
1179 |
+
#: wp-statistics/wp-statistics.php:526
|
1180 |
msgid "Overview"
|
1181 |
msgstr "概要"
|
1182 |
|
1183 |
+
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:531
|
1184 |
msgid "Online"
|
1185 |
msgstr "オンライン"
|
1186 |
|
1187 |
+
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:533
|
1188 |
msgid "Referrers"
|
1189 |
msgstr "参照元"
|
1190 |
|
1191 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1192 |
+
#: wp-statistics/wp-statistics.php:534
|
1193 |
msgid "Searches"
|
1194 |
msgstr "検索"
|
1195 |
|
1196 |
+
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:535
|
1197 |
msgid "Search Words"
|
1198 |
msgstr "検索ワード"
|
1199 |
|
1200 |
+
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:536
|
1201 |
msgid "Top Visitors Today"
|
1202 |
msgstr "今日のトップ訪問者"
|
1203 |
|
1204 |
+
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:538
|
1205 |
msgid "Optimization"
|
1206 |
msgstr "最適化"
|
1207 |
|
1208 |
+
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:502
|
1209 |
msgid "Manual"
|
1210 |
msgstr "マニュアル"
|
1211 |
|
1212 |
+
#: wp-statistics/wp-statistics.php:517
|
1213 |
msgid "Site"
|
1214 |
msgstr "サイト"
|
1215 |
|
1216 |
+
#: wp-statistics/wp-statistics.php:518
|
1217 |
msgid "Options"
|
1218 |
msgstr "オプション"
|
1219 |
|
1220 |
+
#: wp-statistics/wp-statistics.php:644
|
1221 |
msgid "Today visitor"
|
1222 |
msgstr "今日の訪問者"
|
1223 |
|
1224 |
+
#: wp-statistics/wp-statistics.php:650
|
1225 |
msgid "Today visit"
|
1226 |
msgstr "今日の訪問"
|
1227 |
|
1228 |
+
#: wp-statistics/wp-statistics.php:656
|
1229 |
msgid "Yesterday visitor"
|
1230 |
msgstr "昨日の訪問者"
|
1231 |
|
1232 |
+
#: wp-statistics/wp-statistics.php:668
|
1233 |
msgid "View Stats"
|
1234 |
msgstr "統計を見る"
|
1235 |
|
1236 |
+
#: wp-statistics/wp-statistics.php:692
|
1237 |
msgid "Download ODF file"
|
1238 |
msgstr "ODFファイルをダウンロード"
|
1239 |
|
1240 |
+
#: wp-statistics/wp-statistics.php:693
|
1241 |
msgid "Download HTML file"
|
1242 |
msgstr "HTMLファイルをダウンロード"
|
1243 |
|
1244 |
+
#: wp-statistics/wp-statistics.php:697
|
1245 |
msgid "Manual file not found."
|
1246 |
msgstr "マニュアルファイルが見つかりません。"
|
1247 |
|
1248 |
+
#: wp-statistics/wp-statistics.php:764 wp-statistics/wp-statistics.php:891
|
1249 |
+
#: wp-statistics/wp-statistics.php:926
|
1250 |
msgid "You do not have sufficient permissions to access this page."
|
1251 |
msgstr "あなたがこのページにアクセスするための十分な権限がありません。"
|
1252 |
|
1307 |
msgid "Top 10 Browsers"
|
1308 |
msgstr "トップ10ブラウザ"
|
1309 |
|
1310 |
+
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:471
|
1311 |
msgid "Top 10 Countries"
|
1312 |
msgstr "上位10カ国"
|
1313 |
|
1321 |
msgid "Hit Statistics"
|
1322 |
msgstr "ヒット統計"
|
1323 |
|
1324 |
+
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:461
|
1325 |
msgid "Top 10 Pages"
|
1326 |
msgstr "トップ10ページ"
|
1327 |
|
1328 |
#: wp-statistics/dashboard.php:62
|
1329 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1330 |
+
#: wp-statistics/wp-statistics.php:453
|
1331 |
msgid "Recent Visitors"
|
1332 |
msgstr "最近の訪問者"
|
1333 |
|
1334 |
#: wp-statistics/dashboard.php:63
|
1335 |
#: wp-statistics/includes/log/top-referring.php:59
|
1336 |
#: wp-statistics/includes/log/top-referring.php:81
|
1337 |
+
#: wp-statistics/wp-statistics.php:468
|
1338 |
msgid "Top Referring Sites"
|
1339 |
msgstr "トップ参照サイト"
|
1340 |
|
1341 |
#: wp-statistics/dashboard.php:64
|
1342 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1343 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1344 |
+
#: wp-statistics/wp-statistics.php:451
|
1345 |
msgid "Search Engine Referrals"
|
1346 |
msgstr "参照元検索エンジン"
|
1347 |
|
1348 |
+
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:466
|
1349 |
msgid "Summary"
|
1350 |
msgstr "概要"
|
1351 |
|
1352 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1353 |
+
#: wp-statistics/wp-statistics.php:452
|
1354 |
msgid "Latest Search Words"
|
1355 |
msgstr "最新の検索ワード"
|
1356 |
|
1420 |
msgstr "クリックして切り替えます"
|
1421 |
|
1422 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1423 |
+
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:467
|
1424 |
+
#: wp-statistics/wp-statistics.php:527
|
1425 |
msgid "Browsers"
|
1426 |
msgstr "ブラウザ"
|
1427 |
|
1494 |
#: wp-statistics/includes/log/exclusions.php:95
|
1495 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1496 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1497 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1498 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1499 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1500 |
msgid "days"
|
1509 |
msgstr "ヒット数統計のチャート"
|
1510 |
|
1511 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1512 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1513 |
msgid "Hits in the last"
|
1514 |
msgstr "最近のヒット"
|
1515 |
|
1516 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1517 |
+
#: wp-statistics/includes/log/widgets/hits.php:65
|
1518 |
msgid "Number of visits and visitors"
|
1519 |
msgstr "訪問数と訪問者数"
|
1520 |
|
1521 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1522 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1523 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1524 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1525 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1526 |
msgid "Visit"
|
1528 |
|
1529 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1530 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1531 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1532 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1533 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1534 |
msgid "Visitor"
|
1731 |
msgid "Other"
|
1732 |
msgstr "その他"
|
1733 |
|
1734 |
+
#: wp-statistics/wp-statistics.php:456
|
1735 |
msgid "Today Visitors Map"
|
1736 |
msgstr "今日の訪問者マップ"
|
1737 |
|
1786 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1787 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1788 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1789 |
+
#: wp-statistics/wp-statistics.php:530
|
1790 |
msgid "Hits"
|
1791 |
msgstr "ヒット数"
|
1792 |
|
1805 |
|
1806 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1807 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1808 |
+
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:297
|
1809 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1810 |
msgid "Access denied!"
|
1811 |
msgstr "アクセスが拒否されました!"
|
1861 |
|
1862 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1863 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1864 |
+
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:528
|
1865 |
msgid "Countries"
|
1866 |
msgstr "国"
|
1867 |
|
1946 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1947 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1948 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1949 |
+
#: wp-statistics/wp-statistics.php:537
|
1950 |
msgid "Visitors"
|
1951 |
msgstr "訪問者"
|
1952 |
|
2448 |
#: wp-statistics/includes/log/exclusions.php:197
|
2449 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2450 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2451 |
+
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:529
|
2452 |
msgid "Exclusions"
|
2453 |
msgstr "除外"
|
2454 |
|
2658 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2659 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2660 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2661 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:74
|
2662 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:86
|
2663 |
msgid "Active"
|
2664 |
msgstr "有効"
|
2665 |
|
languages/wp_statistics-nl_NL.mo
CHANGED
Binary file
|
languages/wp_statistics-nl_NL.po
CHANGED
@@ -7,10 +7,11 @@ msgstr ""
|
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
-
"X-Generator: GlotPress/1.0
|
|
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#: wp-statistics/ajax.php:
|
14 |
msgid "No matching widget found!"
|
15 |
msgstr "Geen overeenkomende widget gevonden!"
|
16 |
|
@@ -46,22 +47,22 @@ msgstr "WP Statistics heeft PHP-versie %s vastgesteld, die niet wordt ondersteun
|
|
46 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
47 |
msgstr "Neem contact op met uw hosting provider om naar een ondersteunde versie te upgraden of schakel WP Statistics uit om dit bericht te verwijderen."
|
48 |
|
49 |
-
#: wp-statistics/ajax.php:
|
50 |
msgid "ERROR: Widget not found!"
|
51 |
msgstr "FOUT: Widget niet gevonden!"
|
52 |
|
53 |
-
#: wp-statistics/dashboard.php:
|
54 |
#: wp-statistics/includes/log/log.php:20
|
55 |
msgid "Loading..."
|
56 |
msgstr "Laden ..."
|
57 |
|
58 |
-
#: wp-statistics/dashboard.php:
|
59 |
#: wp-statistics/includes/log/log.php:2
|
60 |
msgid "Reloading..."
|
61 |
msgstr "Herladen ..."
|
62 |
|
63 |
#: wp-statistics/includes/log/top-visitors.php:41
|
64 |
-
#: wp-statistics/wp-statistics.php:
|
65 |
msgid "Top Visitors"
|
66 |
msgstr "Top Bezoekers"
|
67 |
|
@@ -158,7 +159,7 @@ msgstr "hits volgen"
|
|
158 |
msgid "online user tracking"
|
159 |
msgstr "online gebruiker volgen"
|
160 |
|
161 |
-
#: wp-statistics/wp-statistics.php:
|
162 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
163 |
msgstr "De volgende plugin-tabel(len) bestaan niet in de database, voer opnieuw de %s installatieroutine %s uit:"
|
164 |
|
@@ -622,7 +623,7 @@ msgstr "Voor elk bezoek meerdere hits tellen. Momenteel %s."
|
|
622 |
|
623 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
624 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
625 |
-
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:
|
626 |
msgid "Pages"
|
627 |
msgstr "Pagina 's"
|
628 |
|
@@ -892,7 +893,7 @@ msgstr "Elke shortcode die ondersteund worden door uw WordPress-installatie, inc
|
|
892 |
|
893 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
894 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
895 |
-
#: wp-statistics/wp-statistics.php:
|
896 |
msgid "User Online"
|
897 |
msgstr "Gebruiker Online"
|
898 |
|
@@ -964,40 +965,23 @@ msgstr "Uitschakelen pagina/bericht-bewerker widget"
|
|
964 |
msgid "Disable the page/post editor widget."
|
965 |
msgstr "Uitschakelen van de pagina/bericht-bewerker widget."
|
966 |
|
967 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
968 |
-
msgid "Map type"
|
969 |
-
msgstr "Kaarttype"
|
970 |
-
|
971 |
#: wp-statistics/includes/functions/functions.php:440
|
972 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
973 |
msgid "Google"
|
974 |
msgstr "Google"
|
975 |
|
976 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
977 |
-
msgid "JQVMap"
|
978 |
-
msgstr "JQVMap"
|
979 |
-
|
980 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:82
|
981 |
-
msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
|
982 |
-
msgstr "De \"Google\" optie gebruikt Googles kaartservice om recente bezoekers weer te geven (vereist toegang tot Google)."
|
983 |
-
|
984 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:83
|
985 |
-
msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
|
986 |
-
msgstr "De \"JQVMap\" optie zal de JQVMap-javascriptbibliotheek gebruiken om de recente bezoekers weer te geven (vereist geen externe service)."
|
987 |
-
|
988 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:89
|
989 |
msgid "Disable map"
|
990 |
msgstr "Kaart uitschakelen"
|
991 |
|
992 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
993 |
msgid "Disable the map display"
|
994 |
msgstr "De kaartweergave uitschakelen"
|
995 |
|
996 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
997 |
msgid "Get country location from Google"
|
998 |
msgstr "Land locatie krijgt van Google"
|
999 |
|
1000 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1001 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
1002 |
msgstr "Deze functie kan leiden tot een afname van de prestaties bij het bekijken van statistieken en is alleen geldig als de kaarttype is ingesteld op \"Google\"."
|
1003 |
|
@@ -1051,7 +1035,7 @@ msgstr "Verwijdering"
|
|
1051 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1052 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1053 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1054 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1055 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1056 |
msgid "Update"
|
1057 |
msgstr "Opslaan"
|
@@ -1069,7 +1053,7 @@ msgid "Once Every 4 Weeks"
|
|
1069 |
msgstr "Eenmaal per 4 weken"
|
1070 |
|
1071 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1072 |
-
#: wp-statistics/wp-statistics.php:
|
1073 |
msgid "Statistics"
|
1074 |
msgstr "Statistieken"
|
1075 |
|
@@ -1142,7 +1126,7 @@ msgstr "Naam"
|
|
1142 |
msgid "Items"
|
1143 |
msgstr "Artikelen"
|
1144 |
|
1145 |
-
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:
|
1146 |
msgid "Yesterday visit"
|
1147 |
msgstr "Bezoek gisteren"
|
1148 |
|
@@ -1167,7 +1151,7 @@ msgid "Complete statistics for your WordPress site."
|
|
1167 |
msgstr "Volledige statistieken voor uw WordPress site."
|
1168 |
|
1169 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1170 |
-
#: wp-statistics/wp-statistics.php:
|
1171 |
msgid "Settings"
|
1172 |
msgstr "Instellingen"
|
1173 |
|
@@ -1191,78 +1175,78 @@ msgstr "Waardeer deze plug-in"
|
|
1191 |
msgid "WP Statistics - Hits"
|
1192 |
msgstr "WP statistiek - Hits"
|
1193 |
|
1194 |
-
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:
|
1195 |
-
#: wp-statistics/wp-statistics.php:
|
1196 |
msgid "Overview"
|
1197 |
msgstr "Overzicht"
|
1198 |
|
1199 |
-
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:
|
1200 |
msgid "Online"
|
1201 |
msgstr "Online"
|
1202 |
|
1203 |
-
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:
|
1204 |
msgid "Referrers"
|
1205 |
msgstr "Verwijzers"
|
1206 |
|
1207 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1208 |
-
#: wp-statistics/wp-statistics.php:
|
1209 |
msgid "Searches"
|
1210 |
msgstr "Zoekopdrachten"
|
1211 |
|
1212 |
-
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:
|
1213 |
msgid "Search Words"
|
1214 |
msgstr "Zoekwoorden"
|
1215 |
|
1216 |
-
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:
|
1217 |
msgid "Top Visitors Today"
|
1218 |
msgstr "Topbezoekers vandaag"
|
1219 |
|
1220 |
-
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:
|
1221 |
msgid "Optimization"
|
1222 |
msgstr "Optimalisatie"
|
1223 |
|
1224 |
-
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:
|
1225 |
msgid "Manual"
|
1226 |
msgstr "Handleiding"
|
1227 |
|
1228 |
-
#: wp-statistics/wp-statistics.php:
|
1229 |
msgid "Site"
|
1230 |
msgstr "Site"
|
1231 |
|
1232 |
-
#: wp-statistics/wp-statistics.php:
|
1233 |
msgid "Options"
|
1234 |
msgstr "Opties"
|
1235 |
|
1236 |
-
#: wp-statistics/wp-statistics.php:
|
1237 |
msgid "Today visitor"
|
1238 |
msgstr "Bezoeker vandaag"
|
1239 |
|
1240 |
-
#: wp-statistics/wp-statistics.php:
|
1241 |
msgid "Today visit"
|
1242 |
msgstr "Bezoek vandaag"
|
1243 |
|
1244 |
-
#: wp-statistics/wp-statistics.php:
|
1245 |
msgid "Yesterday visitor"
|
1246 |
msgstr "Bezoeker gisteren"
|
1247 |
|
1248 |
-
#: wp-statistics/wp-statistics.php:
|
1249 |
msgid "View Stats"
|
1250 |
msgstr "Weergave Statistieken"
|
1251 |
|
1252 |
-
#: wp-statistics/wp-statistics.php:
|
1253 |
msgid "Download ODF file"
|
1254 |
msgstr "ODF bestand downloaden"
|
1255 |
|
1256 |
-
#: wp-statistics/wp-statistics.php:
|
1257 |
msgid "Download HTML file"
|
1258 |
msgstr "Het HTML-bestand downloaden"
|
1259 |
|
1260 |
-
#: wp-statistics/wp-statistics.php:
|
1261 |
msgid "Manual file not found."
|
1262 |
msgstr "Handleiding-bestand niet gevonden."
|
1263 |
|
1264 |
-
#: wp-statistics/wp-statistics.php:
|
1265 |
-
#: wp-statistics/wp-statistics.php:
|
1266 |
msgid "You do not have sufficient permissions to access this page."
|
1267 |
msgstr "U hoeft niet voldoende rechten om deze pagina te openen."
|
1268 |
|
@@ -1323,7 +1307,7 @@ msgstr "Samenvatting statistieken"
|
|
1323 |
msgid "Top 10 Browsers"
|
1324 |
msgstr "Top 10-Browsers"
|
1325 |
|
1326 |
-
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:
|
1327 |
msgid "Top 10 Countries"
|
1328 |
msgstr "Top 10-landen"
|
1329 |
|
@@ -1337,36 +1321,36 @@ msgstr "Kaart bezoekers vandaag"
|
|
1337 |
msgid "Hit Statistics"
|
1338 |
msgstr "Hit statistieken"
|
1339 |
|
1340 |
-
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:
|
1341 |
msgid "Top 10 Pages"
|
1342 |
msgstr "Top 10-pagina 's"
|
1343 |
|
1344 |
#: wp-statistics/dashboard.php:62
|
1345 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1346 |
-
#: wp-statistics/wp-statistics.php:
|
1347 |
msgid "Recent Visitors"
|
1348 |
msgstr "Recente bezoekers"
|
1349 |
|
1350 |
#: wp-statistics/dashboard.php:63
|
1351 |
#: wp-statistics/includes/log/top-referring.php:59
|
1352 |
#: wp-statistics/includes/log/top-referring.php:81
|
1353 |
-
#: wp-statistics/wp-statistics.php:
|
1354 |
msgid "Top Referring Sites"
|
1355 |
msgstr "Top 10-verwijzende sites"
|
1356 |
|
1357 |
#: wp-statistics/dashboard.php:64
|
1358 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1359 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1360 |
-
#: wp-statistics/wp-statistics.php:
|
1361 |
msgid "Search Engine Referrals"
|
1362 |
msgstr "Zoekmachineverwijzingen"
|
1363 |
|
1364 |
-
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:
|
1365 |
msgid "Summary"
|
1366 |
msgstr "Samenvatting"
|
1367 |
|
1368 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1369 |
-
#: wp-statistics/wp-statistics.php:
|
1370 |
msgid "Latest Search Words"
|
1371 |
msgstr "Laatste zoektermen"
|
1372 |
|
@@ -1436,8 +1420,8 @@ msgid "Click to toggle"
|
|
1436 |
msgstr "Klik hierop om te schakelen"
|
1437 |
|
1438 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1439 |
-
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:
|
1440 |
-
#: wp-statistics/wp-statistics.php:
|
1441 |
msgid "Browsers"
|
1442 |
msgstr "Browsers"
|
1443 |
|
@@ -1510,7 +1494,7 @@ msgstr "Uitgesloten hits in de laatste"
|
|
1510 |
#: wp-statistics/includes/log/exclusions.php:95
|
1511 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1512 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1513 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1514 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1515 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1516 |
msgid "days"
|
@@ -1525,18 +1509,18 @@ msgid "Hits Statistics Chart"
|
|
1525 |
msgstr "Hits statistieken grafiek"
|
1526 |
|
1527 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1528 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1529 |
msgid "Hits in the last"
|
1530 |
msgstr "Hits in de laatste"
|
1531 |
|
1532 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1533 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1534 |
msgid "Number of visits and visitors"
|
1535 |
msgstr "Aantal bezoeken en bezoekers"
|
1536 |
|
1537 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1538 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1539 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1540 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1541 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1542 |
msgid "Visit"
|
@@ -1544,7 +1528,7 @@ msgstr "Bezoeken"
|
|
1544 |
|
1545 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1546 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1547 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1548 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1549 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1550 |
msgid "Visitor"
|
@@ -1747,7 +1731,7 @@ msgstr "Dit product bevat GeoLite2 gegevens gemaakt door MaxMind, zie %s."
|
|
1747 |
msgid "Other"
|
1748 |
msgstr "Andere"
|
1749 |
|
1750 |
-
#: wp-statistics/wp-statistics.php:
|
1751 |
msgid "Today Visitors Map"
|
1752 |
msgstr "Overzicht bezoekers vandaag"
|
1753 |
|
@@ -1802,7 +1786,7 @@ msgstr "Tijd: %s"
|
|
1802 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1803 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1804 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1805 |
-
#: wp-statistics/wp-statistics.php:
|
1806 |
msgid "Hits"
|
1807 |
msgstr "Hits"
|
1808 |
|
@@ -1821,7 +1805,7 @@ msgstr "Versie"
|
|
1821 |
|
1822 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1823 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1824 |
-
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:
|
1825 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1826 |
msgid "Access denied!"
|
1827 |
msgstr "Toegang geweigerd!"
|
@@ -1877,7 +1861,7 @@ msgstr "Database Index"
|
|
1877 |
|
1878 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1879 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1880 |
-
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:
|
1881 |
msgid "Countries"
|
1882 |
msgstr "Landen"
|
1883 |
|
@@ -1962,7 +1946,7 @@ msgstr "Opmerking: Omdat de database net opgeschoond is, moet u deze pagina herl
|
|
1962 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1963 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1964 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1965 |
-
#: wp-statistics/wp-statistics.php:
|
1966 |
msgid "Visitors"
|
1967 |
msgstr "Bezoekers"
|
1968 |
|
@@ -2464,7 +2448,7 @@ msgstr "Als u een robuustere oplossing voor gemachtigden-toegang wilt,kunt u kij
|
|
2464 |
#: wp-statistics/includes/log/exclusions.php:197
|
2465 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2466 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2467 |
-
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:
|
2468 |
msgid "Exclusions"
|
2469 |
msgstr "Uitsluitingen"
|
2470 |
|
@@ -2674,8 +2658,8 @@ msgstr "Browscap gebruik"
|
|
2674 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2675 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2676 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2677 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2678 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2679 |
msgid "Active"
|
2680 |
msgstr "Actief"
|
2681 |
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
+
"X-Generator: GlotPress/2.1.0\n"
|
11 |
+
"Language: nl\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
14 |
+
#: wp-statistics/ajax.php:215
|
15 |
msgid "No matching widget found!"
|
16 |
msgstr "Geen overeenkomende widget gevonden!"
|
17 |
|
47 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
48 |
msgstr "Neem contact op met uw hosting provider om naar een ondersteunde versie te upgraden of schakel WP Statistics uit om dit bericht te verwijderen."
|
49 |
|
50 |
+
#: wp-statistics/ajax.php:294
|
51 |
msgid "ERROR: Widget not found!"
|
52 |
msgstr "FOUT: Widget niet gevonden!"
|
53 |
|
54 |
+
#: wp-statistics/dashboard.php:107 wp-statistics/editor.php:66
|
55 |
#: wp-statistics/includes/log/log.php:20
|
56 |
msgid "Loading..."
|
57 |
msgstr "Laden ..."
|
58 |
|
59 |
+
#: wp-statistics/dashboard.php:125 wp-statistics/editor.php:84
|
60 |
#: wp-statistics/includes/log/log.php:2
|
61 |
msgid "Reloading..."
|
62 |
msgstr "Herladen ..."
|
63 |
|
64 |
#: wp-statistics/includes/log/top-visitors.php:41
|
65 |
+
#: wp-statistics/wp-statistics.php:450
|
66 |
msgid "Top Visitors"
|
67 |
msgstr "Top Bezoekers"
|
68 |
|
159 |
msgid "online user tracking"
|
160 |
msgstr "online gebruiker volgen"
|
161 |
|
162 |
+
#: wp-statistics/wp-statistics.php:791
|
163 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
164 |
msgstr "De volgende plugin-tabel(len) bestaan niet in de database, voer opnieuw de %s installatieroutine %s uit:"
|
165 |
|
623 |
|
624 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
625 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
626 |
+
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:532
|
627 |
msgid "Pages"
|
628 |
msgstr "Pagina 's"
|
629 |
|
893 |
|
894 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
895 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
896 |
+
#: wp-statistics/wp-statistics.php:637
|
897 |
msgid "User Online"
|
898 |
msgstr "Gebruiker Online"
|
899 |
|
965 |
msgid "Disable the page/post editor widget."
|
966 |
msgstr "Uitschakelen van de pagina/bericht-bewerker widget."
|
967 |
|
|
|
|
|
|
|
|
|
968 |
#: wp-statistics/includes/functions/functions.php:440
|
|
|
969 |
msgid "Google"
|
970 |
msgstr "Google"
|
971 |
|
972 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
973 |
msgid "Disable map"
|
974 |
msgstr "Kaart uitschakelen"
|
975 |
|
976 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
977 |
msgid "Disable the map display"
|
978 |
msgstr "De kaartweergave uitschakelen"
|
979 |
|
980 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:81
|
981 |
msgid "Get country location from Google"
|
982 |
msgstr "Land locatie krijgt van Google"
|
983 |
|
984 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:87
|
985 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
986 |
msgstr "Deze functie kan leiden tot een afname van de prestaties bij het bekijken van statistieken en is alleen geldig als de kaarttype is ingesteld op \"Google\"."
|
987 |
|
1035 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1036 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1037 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1038 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:96
|
1039 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1040 |
msgid "Update"
|
1041 |
msgstr "Opslaan"
|
1053 |
msgstr "Eenmaal per 4 weken"
|
1054 |
|
1055 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1056 |
+
#: wp-statistics/wp-statistics.php:485
|
1057 |
msgid "Statistics"
|
1058 |
msgstr "Statistieken"
|
1059 |
|
1126 |
msgid "Items"
|
1127 |
msgstr "Artikelen"
|
1128 |
|
1129 |
+
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:662
|
1130 |
msgid "Yesterday visit"
|
1131 |
msgstr "Bezoek gisteren"
|
1132 |
|
1151 |
msgstr "Volledige statistieken voor uw WordPress site."
|
1152 |
|
1153 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1154 |
+
#: wp-statistics/wp-statistics.php:539
|
1155 |
msgid "Settings"
|
1156 |
msgstr "Instellingen"
|
1157 |
|
1175 |
msgid "WP Statistics - Hits"
|
1176 |
msgstr "WP statistiek - Hits"
|
1177 |
|
1178 |
+
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:488
|
1179 |
+
#: wp-statistics/wp-statistics.php:526
|
1180 |
msgid "Overview"
|
1181 |
msgstr "Overzicht"
|
1182 |
|
1183 |
+
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:531
|
1184 |
msgid "Online"
|
1185 |
msgstr "Online"
|
1186 |
|
1187 |
+
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:533
|
1188 |
msgid "Referrers"
|
1189 |
msgstr "Verwijzers"
|
1190 |
|
1191 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1192 |
+
#: wp-statistics/wp-statistics.php:534
|
1193 |
msgid "Searches"
|
1194 |
msgstr "Zoekopdrachten"
|
1195 |
|
1196 |
+
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:535
|
1197 |
msgid "Search Words"
|
1198 |
msgstr "Zoekwoorden"
|
1199 |
|
1200 |
+
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:536
|
1201 |
msgid "Top Visitors Today"
|
1202 |
msgstr "Topbezoekers vandaag"
|
1203 |
|
1204 |
+
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:538
|
1205 |
msgid "Optimization"
|
1206 |
msgstr "Optimalisatie"
|
1207 |
|
1208 |
+
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:502
|
1209 |
msgid "Manual"
|
1210 |
msgstr "Handleiding"
|
1211 |
|
1212 |
+
#: wp-statistics/wp-statistics.php:517
|
1213 |
msgid "Site"
|
1214 |
msgstr "Site"
|
1215 |
|
1216 |
+
#: wp-statistics/wp-statistics.php:518
|
1217 |
msgid "Options"
|
1218 |
msgstr "Opties"
|
1219 |
|
1220 |
+
#: wp-statistics/wp-statistics.php:644
|
1221 |
msgid "Today visitor"
|
1222 |
msgstr "Bezoeker vandaag"
|
1223 |
|
1224 |
+
#: wp-statistics/wp-statistics.php:650
|
1225 |
msgid "Today visit"
|
1226 |
msgstr "Bezoek vandaag"
|
1227 |
|
1228 |
+
#: wp-statistics/wp-statistics.php:656
|
1229 |
msgid "Yesterday visitor"
|
1230 |
msgstr "Bezoeker gisteren"
|
1231 |
|
1232 |
+
#: wp-statistics/wp-statistics.php:668
|
1233 |
msgid "View Stats"
|
1234 |
msgstr "Weergave Statistieken"
|
1235 |
|
1236 |
+
#: wp-statistics/wp-statistics.php:692
|
1237 |
msgid "Download ODF file"
|
1238 |
msgstr "ODF bestand downloaden"
|
1239 |
|
1240 |
+
#: wp-statistics/wp-statistics.php:693
|
1241 |
msgid "Download HTML file"
|
1242 |
msgstr "Het HTML-bestand downloaden"
|
1243 |
|
1244 |
+
#: wp-statistics/wp-statistics.php:697
|
1245 |
msgid "Manual file not found."
|
1246 |
msgstr "Handleiding-bestand niet gevonden."
|
1247 |
|
1248 |
+
#: wp-statistics/wp-statistics.php:764 wp-statistics/wp-statistics.php:891
|
1249 |
+
#: wp-statistics/wp-statistics.php:926
|
1250 |
msgid "You do not have sufficient permissions to access this page."
|
1251 |
msgstr "U hoeft niet voldoende rechten om deze pagina te openen."
|
1252 |
|
1307 |
msgid "Top 10 Browsers"
|
1308 |
msgstr "Top 10-Browsers"
|
1309 |
|
1310 |
+
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:471
|
1311 |
msgid "Top 10 Countries"
|
1312 |
msgstr "Top 10-landen"
|
1313 |
|
1321 |
msgid "Hit Statistics"
|
1322 |
msgstr "Hit statistieken"
|
1323 |
|
1324 |
+
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:461
|
1325 |
msgid "Top 10 Pages"
|
1326 |
msgstr "Top 10-pagina 's"
|
1327 |
|
1328 |
#: wp-statistics/dashboard.php:62
|
1329 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1330 |
+
#: wp-statistics/wp-statistics.php:453
|
1331 |
msgid "Recent Visitors"
|
1332 |
msgstr "Recente bezoekers"
|
1333 |
|
1334 |
#: wp-statistics/dashboard.php:63
|
1335 |
#: wp-statistics/includes/log/top-referring.php:59
|
1336 |
#: wp-statistics/includes/log/top-referring.php:81
|
1337 |
+
#: wp-statistics/wp-statistics.php:468
|
1338 |
msgid "Top Referring Sites"
|
1339 |
msgstr "Top 10-verwijzende sites"
|
1340 |
|
1341 |
#: wp-statistics/dashboard.php:64
|
1342 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1343 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1344 |
+
#: wp-statistics/wp-statistics.php:451
|
1345 |
msgid "Search Engine Referrals"
|
1346 |
msgstr "Zoekmachineverwijzingen"
|
1347 |
|
1348 |
+
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:466
|
1349 |
msgid "Summary"
|
1350 |
msgstr "Samenvatting"
|
1351 |
|
1352 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1353 |
+
#: wp-statistics/wp-statistics.php:452
|
1354 |
msgid "Latest Search Words"
|
1355 |
msgstr "Laatste zoektermen"
|
1356 |
|
1420 |
msgstr "Klik hierop om te schakelen"
|
1421 |
|
1422 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1423 |
+
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:467
|
1424 |
+
#: wp-statistics/wp-statistics.php:527
|
1425 |
msgid "Browsers"
|
1426 |
msgstr "Browsers"
|
1427 |
|
1494 |
#: wp-statistics/includes/log/exclusions.php:95
|
1495 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1496 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1497 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1498 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1499 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1500 |
msgid "days"
|
1509 |
msgstr "Hits statistieken grafiek"
|
1510 |
|
1511 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1512 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1513 |
msgid "Hits in the last"
|
1514 |
msgstr "Hits in de laatste"
|
1515 |
|
1516 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1517 |
+
#: wp-statistics/includes/log/widgets/hits.php:65
|
1518 |
msgid "Number of visits and visitors"
|
1519 |
msgstr "Aantal bezoeken en bezoekers"
|
1520 |
|
1521 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1522 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1523 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1524 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1525 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1526 |
msgid "Visit"
|
1528 |
|
1529 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1530 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1531 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1532 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1533 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1534 |
msgid "Visitor"
|
1731 |
msgid "Other"
|
1732 |
msgstr "Andere"
|
1733 |
|
1734 |
+
#: wp-statistics/wp-statistics.php:456
|
1735 |
msgid "Today Visitors Map"
|
1736 |
msgstr "Overzicht bezoekers vandaag"
|
1737 |
|
1786 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1787 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1788 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1789 |
+
#: wp-statistics/wp-statistics.php:530
|
1790 |
msgid "Hits"
|
1791 |
msgstr "Hits"
|
1792 |
|
1805 |
|
1806 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1807 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1808 |
+
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:297
|
1809 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1810 |
msgid "Access denied!"
|
1811 |
msgstr "Toegang geweigerd!"
|
1861 |
|
1862 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1863 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1864 |
+
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:528
|
1865 |
msgid "Countries"
|
1866 |
msgstr "Landen"
|
1867 |
|
1946 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1947 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1948 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1949 |
+
#: wp-statistics/wp-statistics.php:537
|
1950 |
msgid "Visitors"
|
1951 |
msgstr "Bezoekers"
|
1952 |
|
2448 |
#: wp-statistics/includes/log/exclusions.php:197
|
2449 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2450 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2451 |
+
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:529
|
2452 |
msgid "Exclusions"
|
2453 |
msgstr "Uitsluitingen"
|
2454 |
|
2658 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2659 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2660 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2661 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:74
|
2662 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:86
|
2663 |
msgid "Active"
|
2664 |
msgstr "Actief"
|
2665 |
|
languages/wp_statistics-pl_PL.mo
CHANGED
Binary file
|
languages/wp_statistics-pl_PL.po
CHANGED
@@ -2,33 +2,34 @@
|
|
2 |
# This file is distributed under the same license as the WP Statistics package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"PO-Revision-Date: 2016-
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
10 |
-
"X-Generator: GlotPress/1.0
|
|
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#: wp-statistics/ajax.php:
|
14 |
msgid "No matching widget found!"
|
15 |
-
msgstr ""
|
16 |
|
17 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:180
|
18 |
msgid "Zlib gzopen()"
|
19 |
-
msgstr ""
|
20 |
|
21 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:185
|
22 |
msgid "If the gzopen() function is installed. gzopen() is required for the GeoIP database to be downloaded successfully."
|
23 |
-
msgstr ""
|
24 |
|
25 |
#: wp-statistics/wps-updates.php:16
|
26 |
msgid "Error the download_url() or gzopen() functions do not exist!"
|
27 |
-
msgstr ""
|
28 |
|
29 |
#: wp-statistics/wps-updates.php:45
|
30 |
msgid "Error setting permissions of the GeoIP database directory, make sure your web server has permissions to write to directories in : %s"
|
31 |
-
msgstr ""
|
32 |
|
33 |
#: wp-statistics/wp-statistics.php:95
|
34 |
msgid "— You are running an unsupported version of PHP."
|
@@ -46,22 +47,22 @@ msgstr "WP Statistics wykrył PHP w wersji %s, która jest niewspierana, WP Stat
|
|
46 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
47 |
msgstr "Skontaktuj się z dostawcą hostingu, żeby zaktualizować PHP albo wyłącz plugin WP Statistics, żeby usunąć tę wiadomość."
|
48 |
|
49 |
-
#: wp-statistics/ajax.php:
|
50 |
msgid "ERROR: Widget not found!"
|
51 |
msgstr "BŁĄD: Widget nie znaleziony!"
|
52 |
|
53 |
-
#: wp-statistics/dashboard.php:
|
54 |
#: wp-statistics/includes/log/log.php:20
|
55 |
msgid "Loading..."
|
56 |
msgstr "Ładowanie..."
|
57 |
|
58 |
-
#: wp-statistics/dashboard.php:
|
59 |
#: wp-statistics/includes/log/log.php:2
|
60 |
msgid "Reloading..."
|
61 |
msgstr "Przeładowanie..."
|
62 |
|
63 |
#: wp-statistics/includes/log/top-visitors.php:41
|
64 |
-
#: wp-statistics/wp-statistics.php:
|
65 |
msgid "Top Visitors"
|
66 |
msgstr "Najlepsi odwiedzający"
|
67 |
|
@@ -158,7 +159,7 @@ msgstr "śledzenie trafień"
|
|
158 |
msgid "online user tracking"
|
159 |
msgstr "śledzenie użytkowników online"
|
160 |
|
161 |
-
#: wp-statistics/wp-statistics.php:
|
162 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
163 |
msgstr "Następująca tabela wtyczki nie istnieje w bazie danych, należy ponownie uruchomić instalację %s z algorytmem %s:"
|
164 |
|
@@ -624,7 +625,7 @@ msgstr "Dla każdej odwiedziny z jednego konta. Aktualnie %s."
|
|
624 |
|
625 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
626 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
627 |
-
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:
|
628 |
msgid "Pages"
|
629 |
msgstr "Strony"
|
630 |
|
@@ -894,7 +895,7 @@ msgstr "Dowolny krótki kod obsługiwany przez Twoją instalację WordPressa, ob
|
|
894 |
|
895 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
896 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
897 |
-
#: wp-statistics/wp-statistics.php:
|
898 |
msgid "User Online"
|
899 |
msgstr "Osób online"
|
900 |
|
@@ -966,40 +967,23 @@ msgstr "Wyłącz widget edytora wpisu/strony"
|
|
966 |
msgid "Disable the page/post editor widget."
|
967 |
msgstr "Wyłącz widget edytora strony/wpisu."
|
968 |
|
969 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
970 |
-
msgid "Map type"
|
971 |
-
msgstr "Typ mapy"
|
972 |
-
|
973 |
#: wp-statistics/includes/functions/functions.php:440
|
974 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
975 |
msgid "Google"
|
976 |
msgstr "Google"
|
977 |
|
978 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
979 |
-
msgid "JQVMap"
|
980 |
-
msgstr "JQVMap"
|
981 |
-
|
982 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:82
|
983 |
-
msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
|
984 |
-
msgstr "Opcja \"Google\" będzie korzystać z usługi mapowania Google do wykreślenia ostatnich odwiedzających (wymaga dostępu do Google)."
|
985 |
-
|
986 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:83
|
987 |
-
msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
|
988 |
-
msgstr "Opcja \"JQVMap\" użyje mapowania biblioteki javascript JQVMap do wykreślenia ostatnich odwiedzających (nie wymaga zewnętrznych usług)."
|
989 |
-
|
990 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:89
|
991 |
msgid "Disable map"
|
992 |
msgstr "Wyłącz mapę"
|
993 |
|
994 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
995 |
msgid "Disable the map display"
|
996 |
msgstr "Wyłącz wyświetlanie mapy"
|
997 |
|
998 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
999 |
msgid "Get country location from Google"
|
1000 |
msgstr "Otrzymaj położenie kraju z Google"
|
1001 |
|
1002 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1003 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
1004 |
msgstr "Ta funkcja może spowodować pogorszenie wydajności podczas wyświetlania statystyk i jest ważna tylko wtedy, gdy typ mapy jest ustawiony na \"Google\"."
|
1005 |
|
@@ -1053,7 +1037,7 @@ msgstr "Usunięcie"
|
|
1053 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1054 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1055 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1056 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1057 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1058 |
msgid "Update"
|
1059 |
msgstr "Zaktualizuj"
|
@@ -1071,7 +1055,7 @@ msgid "Once Every 4 Weeks"
|
|
1071 |
msgstr "Raz na 4 tygodnie"
|
1072 |
|
1073 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1074 |
-
#: wp-statistics/wp-statistics.php:
|
1075 |
msgid "Statistics"
|
1076 |
msgstr "Statystyki"
|
1077 |
|
@@ -1144,7 +1128,7 @@ msgstr "Nazwa"
|
|
1144 |
msgid "Items"
|
1145 |
msgstr "Wpisów"
|
1146 |
|
1147 |
-
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:
|
1148 |
msgid "Yesterday visit"
|
1149 |
msgstr "Wczoraj odwiedzin"
|
1150 |
|
@@ -1169,7 +1153,7 @@ msgid "Complete statistics for your WordPress site."
|
|
1169 |
msgstr "Uzupełnij statystyki dla Twojej strony WordPress."
|
1170 |
|
1171 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1172 |
-
#: wp-statistics/wp-statistics.php:
|
1173 |
msgid "Settings"
|
1174 |
msgstr "Ustawienia"
|
1175 |
|
@@ -1193,78 +1177,78 @@ msgstr "Oceń tę wtyczkę"
|
|
1193 |
msgid "WP Statistics - Hits"
|
1194 |
msgstr "WP Statistics - Wejścia"
|
1195 |
|
1196 |
-
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:
|
1197 |
-
#: wp-statistics/wp-statistics.php:
|
1198 |
msgid "Overview"
|
1199 |
msgstr "Przegląd"
|
1200 |
|
1201 |
-
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:
|
1202 |
msgid "Online"
|
1203 |
msgstr "Dostępni użytkownicy"
|
1204 |
|
1205 |
-
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:
|
1206 |
msgid "Referrers"
|
1207 |
msgstr "Referenci"
|
1208 |
|
1209 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1210 |
-
#: wp-statistics/wp-statistics.php:
|
1211 |
msgid "Searches"
|
1212 |
msgstr "Wyszukiwarki"
|
1213 |
|
1214 |
-
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:
|
1215 |
msgid "Search Words"
|
1216 |
msgstr "Wyszukiwane frazy"
|
1217 |
|
1218 |
-
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:
|
1219 |
msgid "Top Visitors Today"
|
1220 |
msgstr "Najlepsi dzisiejsi odwiedzający"
|
1221 |
|
1222 |
-
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:
|
1223 |
msgid "Optimization"
|
1224 |
msgstr "Optymizacja"
|
1225 |
|
1226 |
-
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:
|
1227 |
msgid "Manual"
|
1228 |
msgstr "Podręcznik"
|
1229 |
|
1230 |
-
#: wp-statistics/wp-statistics.php:
|
1231 |
msgid "Site"
|
1232 |
msgstr "Teren"
|
1233 |
|
1234 |
-
#: wp-statistics/wp-statistics.php:
|
1235 |
msgid "Options"
|
1236 |
msgstr "Opcje"
|
1237 |
|
1238 |
-
#: wp-statistics/wp-statistics.php:
|
1239 |
msgid "Today visitor"
|
1240 |
msgstr "Dzisiaj odwiedziło"
|
1241 |
|
1242 |
-
#: wp-statistics/wp-statistics.php:
|
1243 |
msgid "Today visit"
|
1244 |
msgstr "Dzisiaj odwiedzin"
|
1245 |
|
1246 |
-
#: wp-statistics/wp-statistics.php:
|
1247 |
msgid "Yesterday visitor"
|
1248 |
msgstr "Wczoraj odwiedziło"
|
1249 |
|
1250 |
-
#: wp-statistics/wp-statistics.php:
|
1251 |
msgid "View Stats"
|
1252 |
msgstr "Zobacz statystyki"
|
1253 |
|
1254 |
-
#: wp-statistics/wp-statistics.php:
|
1255 |
msgid "Download ODF file"
|
1256 |
msgstr "Pobierz plik ODF"
|
1257 |
|
1258 |
-
#: wp-statistics/wp-statistics.php:
|
1259 |
msgid "Download HTML file"
|
1260 |
msgstr "Pobierz plik HTML"
|
1261 |
|
1262 |
-
#: wp-statistics/wp-statistics.php:
|
1263 |
msgid "Manual file not found."
|
1264 |
msgstr "Plik podręcznika nie znaleziony."
|
1265 |
|
1266 |
-
#: wp-statistics/wp-statistics.php:
|
1267 |
-
#: wp-statistics/wp-statistics.php:
|
1268 |
msgid "You do not have sufficient permissions to access this page."
|
1269 |
msgstr "Nie posiadasz wystarczających uprawnień by wyświetlić tę stronę."
|
1270 |
|
@@ -1325,7 +1309,7 @@ msgstr "Szybkie statystyki"
|
|
1325 |
msgid "Top 10 Browsers"
|
1326 |
msgstr "Najlepsza 10 przeglądarek"
|
1327 |
|
1328 |
-
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:
|
1329 |
msgid "Top 10 Countries"
|
1330 |
msgstr "Najlepszych 10 państw"
|
1331 |
|
@@ -1339,36 +1323,36 @@ msgstr "Mapa dzisiejszych odwiedzających"
|
|
1339 |
msgid "Hit Statistics"
|
1340 |
msgstr "Statystyki odsłon"
|
1341 |
|
1342 |
-
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:
|
1343 |
msgid "Top 10 Pages"
|
1344 |
msgstr "Najlepsza 10 stron"
|
1345 |
|
1346 |
#: wp-statistics/dashboard.php:62
|
1347 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1348 |
-
#: wp-statistics/wp-statistics.php:
|
1349 |
msgid "Recent Visitors"
|
1350 |
msgstr "Ostatni odwiedzający"
|
1351 |
|
1352 |
#: wp-statistics/dashboard.php:63
|
1353 |
#: wp-statistics/includes/log/top-referring.php:59
|
1354 |
#: wp-statistics/includes/log/top-referring.php:81
|
1355 |
-
#: wp-statistics/wp-statistics.php:
|
1356 |
msgid "Top Referring Sites"
|
1357 |
msgstr "Najlepsze odsłyłające strony"
|
1358 |
|
1359 |
#: wp-statistics/dashboard.php:64
|
1360 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1361 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1362 |
-
#: wp-statistics/wp-statistics.php:
|
1363 |
msgid "Search Engine Referrals"
|
1364 |
msgstr "Polecone w wyszukiwarkach"
|
1365 |
|
1366 |
-
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:
|
1367 |
msgid "Summary"
|
1368 |
msgstr "Podsumowanie"
|
1369 |
|
1370 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1371 |
-
#: wp-statistics/wp-statistics.php:
|
1372 |
msgid "Latest Search Words"
|
1373 |
msgstr "Najnowsze wyszukane frazy"
|
1374 |
|
@@ -1438,8 +1422,8 @@ msgid "Click to toggle"
|
|
1438 |
msgstr "Kliknij, aby przełączyć"
|
1439 |
|
1440 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1441 |
-
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:
|
1442 |
-
#: wp-statistics/wp-statistics.php:
|
1443 |
msgid "Browsers"
|
1444 |
msgstr "Przeglądarki"
|
1445 |
|
@@ -1512,7 +1496,7 @@ msgstr "Wykluczonych wejść w ostatnich"
|
|
1512 |
#: wp-statistics/includes/log/exclusions.php:95
|
1513 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1514 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1515 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1516 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1517 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1518 |
msgid "days"
|
@@ -1527,18 +1511,18 @@ msgid "Hits Statistics Chart"
|
|
1527 |
msgstr "Wykres statystyki odsłon"
|
1528 |
|
1529 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1530 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1531 |
msgid "Hits in the last"
|
1532 |
msgstr "Wejść w ostatnich"
|
1533 |
|
1534 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1535 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1536 |
msgid "Number of visits and visitors"
|
1537 |
msgstr "Liczba odwiedzin i odwiedzających"
|
1538 |
|
1539 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1540 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1541 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1542 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1543 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1544 |
msgid "Visit"
|
@@ -1546,7 +1530,7 @@ msgstr "Odwiedzin"
|
|
1546 |
|
1547 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1548 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1549 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1550 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1551 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1552 |
msgid "Visitor"
|
@@ -1749,7 +1733,7 @@ msgstr "Produkt ten zawiera dane GeoLite2 utworzone przez MediaWiki, dostępne z
|
|
1749 |
msgid "Other"
|
1750 |
msgstr "Inne"
|
1751 |
|
1752 |
-
#: wp-statistics/wp-statistics.php:
|
1753 |
msgid "Today Visitors Map"
|
1754 |
msgstr "Mapa dzisiejszych odwiedzających"
|
1755 |
|
@@ -1804,7 +1788,7 @@ msgstr "Czas: %s"
|
|
1804 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1805 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1806 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1807 |
-
#: wp-statistics/wp-statistics.php:
|
1808 |
msgid "Hits"
|
1809 |
msgstr "Wejścia"
|
1810 |
|
@@ -1823,7 +1807,7 @@ msgstr "Wersja"
|
|
1823 |
|
1824 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1825 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1826 |
-
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:
|
1827 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1828 |
msgid "Access denied!"
|
1829 |
msgstr "Dostęp zabroniony!"
|
@@ -1879,7 +1863,7 @@ msgstr "Indeks bazy danych"
|
|
1879 |
|
1880 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1881 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1882 |
-
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:
|
1883 |
msgid "Countries"
|
1884 |
msgstr "Kraje"
|
1885 |
|
@@ -1964,7 +1948,7 @@ msgstr "Uwaga: Ponieważ właśnie usunięto bazę danych, należy załadować t
|
|
1964 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1965 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1966 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1967 |
-
#: wp-statistics/wp-statistics.php:
|
1968 |
msgid "Visitors"
|
1969 |
msgstr "Odzwiedzający"
|
1970 |
|
@@ -2466,7 +2450,7 @@ msgstr "Jeśli potrzebujesz bardziej niezawodne rozwiązanie do delegowania dost
|
|
2466 |
#: wp-statistics/includes/log/exclusions.php:197
|
2467 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2468 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2469 |
-
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:
|
2470 |
msgid "Exclusions"
|
2471 |
msgstr "Wykluczenia"
|
2472 |
|
@@ -2676,8 +2660,8 @@ msgstr "Użycie browscap"
|
|
2676 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2677 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2678 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2679 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2680 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2681 |
msgid "Active"
|
2682 |
msgstr "Uaktywnij"
|
2683 |
|
2 |
# This file is distributed under the same license as the WP Statistics package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2016-04-04 09:34:41+0000\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
10 |
+
"X-Generator: GlotPress/2.1.0\n"
|
11 |
+
"Language: pl\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
14 |
+
#: wp-statistics/ajax.php:215
|
15 |
msgid "No matching widget found!"
|
16 |
+
msgstr "Nie znaleziono pasującego widgetu!"
|
17 |
|
18 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:180
|
19 |
msgid "Zlib gzopen()"
|
20 |
+
msgstr "Zlib gzopen()"
|
21 |
|
22 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:185
|
23 |
msgid "If the gzopen() function is installed. gzopen() is required for the GeoIP database to be downloaded successfully."
|
24 |
+
msgstr "Jeśli funkcja gzopen() jest zainstalowana. Gzopen() jest wymagana, by baza GeoIP mogła być pobrana."
|
25 |
|
26 |
#: wp-statistics/wps-updates.php:16
|
27 |
msgid "Error the download_url() or gzopen() functions do not exist!"
|
28 |
+
msgstr "Błąd:funkcja download_url() albo gzopen() nie istnieje!"
|
29 |
|
30 |
#: wp-statistics/wps-updates.php:45
|
31 |
msgid "Error setting permissions of the GeoIP database directory, make sure your web server has permissions to write to directories in : %s"
|
32 |
+
msgstr "Błąd ustawiania uprawnień dla folderu z bazą GeoIP, upewnij się, że serwer www ma prawa zapisu do folderów w: %s"
|
33 |
|
34 |
#: wp-statistics/wp-statistics.php:95
|
35 |
msgid "— You are running an unsupported version of PHP."
|
47 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
48 |
msgstr "Skontaktuj się z dostawcą hostingu, żeby zaktualizować PHP albo wyłącz plugin WP Statistics, żeby usunąć tę wiadomość."
|
49 |
|
50 |
+
#: wp-statistics/ajax.php:294
|
51 |
msgid "ERROR: Widget not found!"
|
52 |
msgstr "BŁĄD: Widget nie znaleziony!"
|
53 |
|
54 |
+
#: wp-statistics/dashboard.php:107 wp-statistics/editor.php:66
|
55 |
#: wp-statistics/includes/log/log.php:20
|
56 |
msgid "Loading..."
|
57 |
msgstr "Ładowanie..."
|
58 |
|
59 |
+
#: wp-statistics/dashboard.php:125 wp-statistics/editor.php:84
|
60 |
#: wp-statistics/includes/log/log.php:2
|
61 |
msgid "Reloading..."
|
62 |
msgstr "Przeładowanie..."
|
63 |
|
64 |
#: wp-statistics/includes/log/top-visitors.php:41
|
65 |
+
#: wp-statistics/wp-statistics.php:450
|
66 |
msgid "Top Visitors"
|
67 |
msgstr "Najlepsi odwiedzający"
|
68 |
|
159 |
msgid "online user tracking"
|
160 |
msgstr "śledzenie użytkowników online"
|
161 |
|
162 |
+
#: wp-statistics/wp-statistics.php:791
|
163 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
164 |
msgstr "Następująca tabela wtyczki nie istnieje w bazie danych, należy ponownie uruchomić instalację %s z algorytmem %s:"
|
165 |
|
625 |
|
626 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
627 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
628 |
+
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:532
|
629 |
msgid "Pages"
|
630 |
msgstr "Strony"
|
631 |
|
895 |
|
896 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
897 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
898 |
+
#: wp-statistics/wp-statistics.php:637
|
899 |
msgid "User Online"
|
900 |
msgstr "Osób online"
|
901 |
|
967 |
msgid "Disable the page/post editor widget."
|
968 |
msgstr "Wyłącz widget edytora strony/wpisu."
|
969 |
|
|
|
|
|
|
|
|
|
970 |
#: wp-statistics/includes/functions/functions.php:440
|
|
|
971 |
msgid "Google"
|
972 |
msgstr "Google"
|
973 |
|
974 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
975 |
msgid "Disable map"
|
976 |
msgstr "Wyłącz mapę"
|
977 |
|
978 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
979 |
msgid "Disable the map display"
|
980 |
msgstr "Wyłącz wyświetlanie mapy"
|
981 |
|
982 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:81
|
983 |
msgid "Get country location from Google"
|
984 |
msgstr "Otrzymaj położenie kraju z Google"
|
985 |
|
986 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:87
|
987 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
988 |
msgstr "Ta funkcja może spowodować pogorszenie wydajności podczas wyświetlania statystyk i jest ważna tylko wtedy, gdy typ mapy jest ustawiony na \"Google\"."
|
989 |
|
1037 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1038 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1039 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1040 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:96
|
1041 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1042 |
msgid "Update"
|
1043 |
msgstr "Zaktualizuj"
|
1055 |
msgstr "Raz na 4 tygodnie"
|
1056 |
|
1057 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1058 |
+
#: wp-statistics/wp-statistics.php:485
|
1059 |
msgid "Statistics"
|
1060 |
msgstr "Statystyki"
|
1061 |
|
1128 |
msgid "Items"
|
1129 |
msgstr "Wpisów"
|
1130 |
|
1131 |
+
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:662
|
1132 |
msgid "Yesterday visit"
|
1133 |
msgstr "Wczoraj odwiedzin"
|
1134 |
|
1153 |
msgstr "Uzupełnij statystyki dla Twojej strony WordPress."
|
1154 |
|
1155 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1156 |
+
#: wp-statistics/wp-statistics.php:539
|
1157 |
msgid "Settings"
|
1158 |
msgstr "Ustawienia"
|
1159 |
|
1177 |
msgid "WP Statistics - Hits"
|
1178 |
msgstr "WP Statistics - Wejścia"
|
1179 |
|
1180 |
+
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:488
|
1181 |
+
#: wp-statistics/wp-statistics.php:526
|
1182 |
msgid "Overview"
|
1183 |
msgstr "Przegląd"
|
1184 |
|
1185 |
+
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:531
|
1186 |
msgid "Online"
|
1187 |
msgstr "Dostępni użytkownicy"
|
1188 |
|
1189 |
+
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:533
|
1190 |
msgid "Referrers"
|
1191 |
msgstr "Referenci"
|
1192 |
|
1193 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1194 |
+
#: wp-statistics/wp-statistics.php:534
|
1195 |
msgid "Searches"
|
1196 |
msgstr "Wyszukiwarki"
|
1197 |
|
1198 |
+
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:535
|
1199 |
msgid "Search Words"
|
1200 |
msgstr "Wyszukiwane frazy"
|
1201 |
|
1202 |
+
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:536
|
1203 |
msgid "Top Visitors Today"
|
1204 |
msgstr "Najlepsi dzisiejsi odwiedzający"
|
1205 |
|
1206 |
+
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:538
|
1207 |
msgid "Optimization"
|
1208 |
msgstr "Optymizacja"
|
1209 |
|
1210 |
+
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:502
|
1211 |
msgid "Manual"
|
1212 |
msgstr "Podręcznik"
|
1213 |
|
1214 |
+
#: wp-statistics/wp-statistics.php:517
|
1215 |
msgid "Site"
|
1216 |
msgstr "Teren"
|
1217 |
|
1218 |
+
#: wp-statistics/wp-statistics.php:518
|
1219 |
msgid "Options"
|
1220 |
msgstr "Opcje"
|
1221 |
|
1222 |
+
#: wp-statistics/wp-statistics.php:644
|
1223 |
msgid "Today visitor"
|
1224 |
msgstr "Dzisiaj odwiedziło"
|
1225 |
|
1226 |
+
#: wp-statistics/wp-statistics.php:650
|
1227 |
msgid "Today visit"
|
1228 |
msgstr "Dzisiaj odwiedzin"
|
1229 |
|
1230 |
+
#: wp-statistics/wp-statistics.php:656
|
1231 |
msgid "Yesterday visitor"
|
1232 |
msgstr "Wczoraj odwiedziło"
|
1233 |
|
1234 |
+
#: wp-statistics/wp-statistics.php:668
|
1235 |
msgid "View Stats"
|
1236 |
msgstr "Zobacz statystyki"
|
1237 |
|
1238 |
+
#: wp-statistics/wp-statistics.php:692
|
1239 |
msgid "Download ODF file"
|
1240 |
msgstr "Pobierz plik ODF"
|
1241 |
|
1242 |
+
#: wp-statistics/wp-statistics.php:693
|
1243 |
msgid "Download HTML file"
|
1244 |
msgstr "Pobierz plik HTML"
|
1245 |
|
1246 |
+
#: wp-statistics/wp-statistics.php:697
|
1247 |
msgid "Manual file not found."
|
1248 |
msgstr "Plik podręcznika nie znaleziony."
|
1249 |
|
1250 |
+
#: wp-statistics/wp-statistics.php:764 wp-statistics/wp-statistics.php:891
|
1251 |
+
#: wp-statistics/wp-statistics.php:926
|
1252 |
msgid "You do not have sufficient permissions to access this page."
|
1253 |
msgstr "Nie posiadasz wystarczających uprawnień by wyświetlić tę stronę."
|
1254 |
|
1309 |
msgid "Top 10 Browsers"
|
1310 |
msgstr "Najlepsza 10 przeglądarek"
|
1311 |
|
1312 |
+
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:471
|
1313 |
msgid "Top 10 Countries"
|
1314 |
msgstr "Najlepszych 10 państw"
|
1315 |
|
1323 |
msgid "Hit Statistics"
|
1324 |
msgstr "Statystyki odsłon"
|
1325 |
|
1326 |
+
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:461
|
1327 |
msgid "Top 10 Pages"
|
1328 |
msgstr "Najlepsza 10 stron"
|
1329 |
|
1330 |
#: wp-statistics/dashboard.php:62
|
1331 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1332 |
+
#: wp-statistics/wp-statistics.php:453
|
1333 |
msgid "Recent Visitors"
|
1334 |
msgstr "Ostatni odwiedzający"
|
1335 |
|
1336 |
#: wp-statistics/dashboard.php:63
|
1337 |
#: wp-statistics/includes/log/top-referring.php:59
|
1338 |
#: wp-statistics/includes/log/top-referring.php:81
|
1339 |
+
#: wp-statistics/wp-statistics.php:468
|
1340 |
msgid "Top Referring Sites"
|
1341 |
msgstr "Najlepsze odsłyłające strony"
|
1342 |
|
1343 |
#: wp-statistics/dashboard.php:64
|
1344 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1345 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1346 |
+
#: wp-statistics/wp-statistics.php:451
|
1347 |
msgid "Search Engine Referrals"
|
1348 |
msgstr "Polecone w wyszukiwarkach"
|
1349 |
|
1350 |
+
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:466
|
1351 |
msgid "Summary"
|
1352 |
msgstr "Podsumowanie"
|
1353 |
|
1354 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1355 |
+
#: wp-statistics/wp-statistics.php:452
|
1356 |
msgid "Latest Search Words"
|
1357 |
msgstr "Najnowsze wyszukane frazy"
|
1358 |
|
1422 |
msgstr "Kliknij, aby przełączyć"
|
1423 |
|
1424 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1425 |
+
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:467
|
1426 |
+
#: wp-statistics/wp-statistics.php:527
|
1427 |
msgid "Browsers"
|
1428 |
msgstr "Przeglądarki"
|
1429 |
|
1496 |
#: wp-statistics/includes/log/exclusions.php:95
|
1497 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1498 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1499 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1500 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1501 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1502 |
msgid "days"
|
1511 |
msgstr "Wykres statystyki odsłon"
|
1512 |
|
1513 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1514 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1515 |
msgid "Hits in the last"
|
1516 |
msgstr "Wejść w ostatnich"
|
1517 |
|
1518 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1519 |
+
#: wp-statistics/includes/log/widgets/hits.php:65
|
1520 |
msgid "Number of visits and visitors"
|
1521 |
msgstr "Liczba odwiedzin i odwiedzających"
|
1522 |
|
1523 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1524 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1525 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1526 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1527 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1528 |
msgid "Visit"
|
1530 |
|
1531 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1532 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1533 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1534 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1535 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1536 |
msgid "Visitor"
|
1733 |
msgid "Other"
|
1734 |
msgstr "Inne"
|
1735 |
|
1736 |
+
#: wp-statistics/wp-statistics.php:456
|
1737 |
msgid "Today Visitors Map"
|
1738 |
msgstr "Mapa dzisiejszych odwiedzających"
|
1739 |
|
1788 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1789 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1790 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1791 |
+
#: wp-statistics/wp-statistics.php:530
|
1792 |
msgid "Hits"
|
1793 |
msgstr "Wejścia"
|
1794 |
|
1807 |
|
1808 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1809 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1810 |
+
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:297
|
1811 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1812 |
msgid "Access denied!"
|
1813 |
msgstr "Dostęp zabroniony!"
|
1863 |
|
1864 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1865 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1866 |
+
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:528
|
1867 |
msgid "Countries"
|
1868 |
msgstr "Kraje"
|
1869 |
|
1948 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1949 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1950 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1951 |
+
#: wp-statistics/wp-statistics.php:537
|
1952 |
msgid "Visitors"
|
1953 |
msgstr "Odzwiedzający"
|
1954 |
|
2450 |
#: wp-statistics/includes/log/exclusions.php:197
|
2451 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2452 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2453 |
+
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:529
|
2454 |
msgid "Exclusions"
|
2455 |
msgstr "Wykluczenia"
|
2456 |
|
2660 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2661 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2662 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2663 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:74
|
2664 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:86
|
2665 |
msgid "Active"
|
2666 |
msgstr "Uaktywnij"
|
2667 |
|
languages/wp_statistics-pt_BR.mo
CHANGED
Binary file
|
languages/wp_statistics-pt_BR.po
CHANGED
@@ -7,10 +7,11 @@ msgstr ""
|
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
10 |
-
"X-Generator: GlotPress/1.0
|
|
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#: wp-statistics/ajax.php:
|
14 |
msgid "No matching widget found!"
|
15 |
msgstr ""
|
16 |
|
@@ -46,22 +47,22 @@ msgstr ""
|
|
46 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: wp-statistics/ajax.php:
|
50 |
msgid "ERROR: Widget not found!"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: wp-statistics/dashboard.php:
|
54 |
#: wp-statistics/includes/log/log.php:20
|
55 |
msgid "Loading..."
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: wp-statistics/dashboard.php:
|
59 |
#: wp-statistics/includes/log/log.php:2
|
60 |
msgid "Reloading..."
|
61 |
msgstr ""
|
62 |
|
63 |
#: wp-statistics/includes/log/top-visitors.php:41
|
64 |
-
#: wp-statistics/wp-statistics.php:
|
65 |
msgid "Top Visitors"
|
66 |
msgstr ""
|
67 |
|
@@ -158,7 +159,7 @@ msgstr ""
|
|
158 |
msgid "online user tracking"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: wp-statistics/wp-statistics.php:
|
162 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
163 |
msgstr ""
|
164 |
|
@@ -622,7 +623,7 @@ msgstr "Para cada visita contabilizar vários hits. Atualmente a %s."
|
|
622 |
|
623 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
624 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
625 |
-
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:
|
626 |
msgid "Pages"
|
627 |
msgstr "Páginas"
|
628 |
|
@@ -892,7 +893,7 @@ msgstr ""
|
|
892 |
|
893 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
894 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
895 |
-
#: wp-statistics/wp-statistics.php:
|
896 |
msgid "User Online"
|
897 |
msgstr "Usuário on-line"
|
898 |
|
@@ -964,40 +965,23 @@ msgstr ""
|
|
964 |
msgid "Disable the page/post editor widget."
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
968 |
-
msgid "Map type"
|
969 |
-
msgstr "Tipo de mapa"
|
970 |
-
|
971 |
#: wp-statistics/includes/functions/functions.php:440
|
972 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
973 |
msgid "Google"
|
974 |
msgstr "Google"
|
975 |
|
976 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
977 |
-
msgid "JQVMap"
|
978 |
-
msgstr "JQVMap"
|
979 |
-
|
980 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:82
|
981 |
-
msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
|
982 |
-
msgstr "O \"Google\" opção usará o serviço de mapeamento do Google traçar os visitantes recentes (requer acesso ao Google)."
|
983 |
-
|
984 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:83
|
985 |
-
msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
|
986 |
-
msgstr "O \"JQVMap\" opção usará JQVMap biblioteca de mapeamento de javascript plotar os visitantes recentes (requer serviços não contidos)."
|
987 |
-
|
988 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:89
|
989 |
msgid "Disable map"
|
990 |
msgstr "Desativar mapa"
|
991 |
|
992 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
993 |
msgid "Disable the map display"
|
994 |
msgstr "Desativar a exibição de mapa"
|
995 |
|
996 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
997 |
msgid "Get country location from Google"
|
998 |
msgstr "Obter a localização do país do Google"
|
999 |
|
1000 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1001 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
1002 |
msgstr "Esse recurso pode causar uma degradação do desempenho quando Visualizar estatísticas e é válido somente se o tipo de mapa é definido como \"Google\"."
|
1003 |
|
@@ -1051,7 +1035,7 @@ msgstr ""
|
|
1051 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1052 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1053 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1054 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1055 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1056 |
msgid "Update"
|
1057 |
msgstr "Atualização"
|
@@ -1069,7 +1053,7 @@ msgid "Once Every 4 Weeks"
|
|
1069 |
msgstr "Uma vez a cada 4 semanas"
|
1070 |
|
1071 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1072 |
-
#: wp-statistics/wp-statistics.php:
|
1073 |
msgid "Statistics"
|
1074 |
msgstr "Estatísticas"
|
1075 |
|
@@ -1142,7 +1126,7 @@ msgstr "Nome"
|
|
1142 |
msgid "Items"
|
1143 |
msgstr "Itens"
|
1144 |
|
1145 |
-
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:
|
1146 |
msgid "Yesterday visit"
|
1147 |
msgstr "Visita de ontem"
|
1148 |
|
@@ -1167,7 +1151,7 @@ msgid "Complete statistics for your WordPress site."
|
|
1167 |
msgstr "Estatísticas completas para o seu site WordPress."
|
1168 |
|
1169 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1170 |
-
#: wp-statistics/wp-statistics.php:
|
1171 |
msgid "Settings"
|
1172 |
msgstr "Configurações"
|
1173 |
|
@@ -1191,78 +1175,78 @@ msgstr "Classifique este plugin"
|
|
1191 |
msgid "WP Statistics - Hits"
|
1192 |
msgstr "WP-Statistics - Hits"
|
1193 |
|
1194 |
-
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:
|
1195 |
-
#: wp-statistics/wp-statistics.php:
|
1196 |
msgid "Overview"
|
1197 |
msgstr "Visão geral"
|
1198 |
|
1199 |
-
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:
|
1200 |
msgid "Online"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:
|
1204 |
msgid "Referrers"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1208 |
-
#: wp-statistics/wp-statistics.php:
|
1209 |
msgid "Searches"
|
1210 |
msgstr "Pesquisas"
|
1211 |
|
1212 |
-
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:
|
1213 |
msgid "Search Words"
|
1214 |
msgstr "Palavras de pesquisa"
|
1215 |
|
1216 |
-
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:
|
1217 |
msgid "Top Visitors Today"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
-
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:
|
1221 |
msgid "Optimization"
|
1222 |
msgstr "Otimização"
|
1223 |
|
1224 |
-
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:
|
1225 |
msgid "Manual"
|
1226 |
msgstr "Manual"
|
1227 |
|
1228 |
-
#: wp-statistics/wp-statistics.php:
|
1229 |
msgid "Site"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
-
#: wp-statistics/wp-statistics.php:
|
1233 |
msgid "Options"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
-
#: wp-statistics/wp-statistics.php:
|
1237 |
msgid "Today visitor"
|
1238 |
msgstr "Visitantes hoje"
|
1239 |
|
1240 |
-
#: wp-statistics/wp-statistics.php:
|
1241 |
msgid "Today visit"
|
1242 |
msgstr "Hoje visitamos"
|
1243 |
|
1244 |
-
#: wp-statistics/wp-statistics.php:
|
1245 |
msgid "Yesterday visitor"
|
1246 |
msgstr "Ontem o visitante"
|
1247 |
|
1248 |
-
#: wp-statistics/wp-statistics.php:
|
1249 |
msgid "View Stats"
|
1250 |
msgstr "View Stats"
|
1251 |
|
1252 |
-
#: wp-statistics/wp-statistics.php:
|
1253 |
msgid "Download ODF file"
|
1254 |
msgstr "Baixar arquivo ODF"
|
1255 |
|
1256 |
-
#: wp-statistics/wp-statistics.php:
|
1257 |
msgid "Download HTML file"
|
1258 |
msgstr "Baixar arquivo HTML"
|
1259 |
|
1260 |
-
#: wp-statistics/wp-statistics.php:
|
1261 |
msgid "Manual file not found."
|
1262 |
msgstr "Manual arquivo não encontrado."
|
1263 |
|
1264 |
-
#: wp-statistics/wp-statistics.php:
|
1265 |
-
#: wp-statistics/wp-statistics.php:
|
1266 |
msgid "You do not have sufficient permissions to access this page."
|
1267 |
msgstr "Você não tem permissões suficientes para acessar esta página."
|
1268 |
|
@@ -1323,7 +1307,7 @@ msgstr ""
|
|
1323 |
msgid "Top 10 Browsers"
|
1324 |
msgstr "Top 10 navegadores"
|
1325 |
|
1326 |
-
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:
|
1327 |
msgid "Top 10 Countries"
|
1328 |
msgstr "Top 10 países"
|
1329 |
|
@@ -1337,36 +1321,36 @@ msgstr ""
|
|
1337 |
msgid "Hit Statistics"
|
1338 |
msgstr "Bater as estatísticas"
|
1339 |
|
1340 |
-
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:
|
1341 |
msgid "Top 10 Pages"
|
1342 |
msgstr "Top 10 páginas"
|
1343 |
|
1344 |
#: wp-statistics/dashboard.php:62
|
1345 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1346 |
-
#: wp-statistics/wp-statistics.php:
|
1347 |
msgid "Recent Visitors"
|
1348 |
msgstr "Visitantes recentes"
|
1349 |
|
1350 |
#: wp-statistics/dashboard.php:63
|
1351 |
#: wp-statistics/includes/log/top-referring.php:59
|
1352 |
#: wp-statistics/includes/log/top-referring.php:81
|
1353 |
-
#: wp-statistics/wp-statistics.php:
|
1354 |
msgid "Top Referring Sites"
|
1355 |
msgstr "Top Sites referentes"
|
1356 |
|
1357 |
#: wp-statistics/dashboard.php:64
|
1358 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1359 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1360 |
-
#: wp-statistics/wp-statistics.php:
|
1361 |
msgid "Search Engine Referrals"
|
1362 |
msgstr "Referências de motor de busca"
|
1363 |
|
1364 |
-
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:
|
1365 |
msgid "Summary"
|
1366 |
msgstr "Resumo"
|
1367 |
|
1368 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1369 |
-
#: wp-statistics/wp-statistics.php:
|
1370 |
msgid "Latest Search Words"
|
1371 |
msgstr "Últimas palavras de pesquisa"
|
1372 |
|
@@ -1436,8 +1420,8 @@ msgid "Click to toggle"
|
|
1436 |
msgstr "Clique para alternar entre"
|
1437 |
|
1438 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1439 |
-
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:
|
1440 |
-
#: wp-statistics/wp-statistics.php:
|
1441 |
msgid "Browsers"
|
1442 |
msgstr "Navegadores"
|
1443 |
|
@@ -1510,7 +1494,7 @@ msgstr "Excluídos os sucessos nos últimos"
|
|
1510 |
#: wp-statistics/includes/log/exclusions.php:95
|
1511 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1512 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1513 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1514 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1515 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1516 |
msgid "days"
|
@@ -1525,18 +1509,18 @@ msgid "Hits Statistics Chart"
|
|
1525 |
msgstr "Gráfico de estatísticas de acessos"
|
1526 |
|
1527 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1528 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1529 |
msgid "Hits in the last"
|
1530 |
msgstr "Sucessos nos últimos"
|
1531 |
|
1532 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1533 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1534 |
msgid "Number of visits and visitors"
|
1535 |
msgstr "Número de visitas e visitantes"
|
1536 |
|
1537 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1538 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1539 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1540 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1541 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1542 |
msgid "Visit"
|
@@ -1544,7 +1528,7 @@ msgstr "Visite"
|
|
1544 |
|
1545 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1546 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1547 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1548 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1549 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1550 |
msgid "Visitor"
|
@@ -1747,7 +1731,7 @@ msgstr "Este produto inclui dados de GeoLite2 criados por MaxMind, disponível a
|
|
1747 |
msgid "Other"
|
1748 |
msgstr "Outros"
|
1749 |
|
1750 |
-
#: wp-statistics/wp-statistics.php:
|
1751 |
msgid "Today Visitors Map"
|
1752 |
msgstr "Hoje os visitantes mapa"
|
1753 |
|
@@ -1802,7 +1786,7 @@ msgstr "Tempo: %s"
|
|
1802 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1803 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1804 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1805 |
-
#: wp-statistics/wp-statistics.php:
|
1806 |
msgid "Hits"
|
1807 |
msgstr "Hits"
|
1808 |
|
@@ -1821,7 +1805,7 @@ msgstr ""
|
|
1821 |
|
1822 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1823 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1824 |
-
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:
|
1825 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1826 |
msgid "Access denied!"
|
1827 |
msgstr "Acesso negado!"
|
@@ -1877,7 +1861,7 @@ msgstr "Índice de banco de dados"
|
|
1877 |
|
1878 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1879 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1880 |
-
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:
|
1881 |
msgid "Countries"
|
1882 |
msgstr "Países"
|
1883 |
|
@@ -1962,7 +1946,7 @@ msgstr ""
|
|
1962 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1963 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1964 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1965 |
-
#: wp-statistics/wp-statistics.php:
|
1966 |
msgid "Visitors"
|
1967 |
msgstr "Visitantes"
|
1968 |
|
@@ -2464,7 +2448,7 @@ msgstr "Se você precisa de uma solução mais robusta para delegar acesso, que
|
|
2464 |
#: wp-statistics/includes/log/exclusions.php:197
|
2465 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2466 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2467 |
-
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:
|
2468 |
msgid "Exclusions"
|
2469 |
msgstr "Exclusões"
|
2470 |
|
@@ -2674,8 +2658,8 @@ msgstr "uso browscap"
|
|
2674 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2675 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2676 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2677 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2678 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2679 |
msgid "Active"
|
2680 |
msgstr "Ativo"
|
2681 |
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
10 |
+
"X-Generator: GlotPress/2.1.0\n"
|
11 |
+
"Language: pt_BR\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
14 |
+
#: wp-statistics/ajax.php:215
|
15 |
msgid "No matching widget found!"
|
16 |
msgstr ""
|
17 |
|
47 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: wp-statistics/ajax.php:294
|
51 |
msgid "ERROR: Widget not found!"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: wp-statistics/dashboard.php:107 wp-statistics/editor.php:66
|
55 |
#: wp-statistics/includes/log/log.php:20
|
56 |
msgid "Loading..."
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: wp-statistics/dashboard.php:125 wp-statistics/editor.php:84
|
60 |
#: wp-statistics/includes/log/log.php:2
|
61 |
msgid "Reloading..."
|
62 |
msgstr ""
|
63 |
|
64 |
#: wp-statistics/includes/log/top-visitors.php:41
|
65 |
+
#: wp-statistics/wp-statistics.php:450
|
66 |
msgid "Top Visitors"
|
67 |
msgstr ""
|
68 |
|
159 |
msgid "online user tracking"
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: wp-statistics/wp-statistics.php:791
|
163 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
164 |
msgstr ""
|
165 |
|
623 |
|
624 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
625 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
626 |
+
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:532
|
627 |
msgid "Pages"
|
628 |
msgstr "Páginas"
|
629 |
|
893 |
|
894 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
895 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
896 |
+
#: wp-statistics/wp-statistics.php:637
|
897 |
msgid "User Online"
|
898 |
msgstr "Usuário on-line"
|
899 |
|
965 |
msgid "Disable the page/post editor widget."
|
966 |
msgstr ""
|
967 |
|
|
|
|
|
|
|
|
|
968 |
#: wp-statistics/includes/functions/functions.php:440
|
|
|
969 |
msgid "Google"
|
970 |
msgstr "Google"
|
971 |
|
972 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
973 |
msgid "Disable map"
|
974 |
msgstr "Desativar mapa"
|
975 |
|
976 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
977 |
msgid "Disable the map display"
|
978 |
msgstr "Desativar a exibição de mapa"
|
979 |
|
980 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:81
|
981 |
msgid "Get country location from Google"
|
982 |
msgstr "Obter a localização do país do Google"
|
983 |
|
984 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:87
|
985 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
986 |
msgstr "Esse recurso pode causar uma degradação do desempenho quando Visualizar estatísticas e é válido somente se o tipo de mapa é definido como \"Google\"."
|
987 |
|
1035 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1036 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1037 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1038 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:96
|
1039 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1040 |
msgid "Update"
|
1041 |
msgstr "Atualização"
|
1053 |
msgstr "Uma vez a cada 4 semanas"
|
1054 |
|
1055 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1056 |
+
#: wp-statistics/wp-statistics.php:485
|
1057 |
msgid "Statistics"
|
1058 |
msgstr "Estatísticas"
|
1059 |
|
1126 |
msgid "Items"
|
1127 |
msgstr "Itens"
|
1128 |
|
1129 |
+
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:662
|
1130 |
msgid "Yesterday visit"
|
1131 |
msgstr "Visita de ontem"
|
1132 |
|
1151 |
msgstr "Estatísticas completas para o seu site WordPress."
|
1152 |
|
1153 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1154 |
+
#: wp-statistics/wp-statistics.php:539
|
1155 |
msgid "Settings"
|
1156 |
msgstr "Configurações"
|
1157 |
|
1175 |
msgid "WP Statistics - Hits"
|
1176 |
msgstr "WP-Statistics - Hits"
|
1177 |
|
1178 |
+
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:488
|
1179 |
+
#: wp-statistics/wp-statistics.php:526
|
1180 |
msgid "Overview"
|
1181 |
msgstr "Visão geral"
|
1182 |
|
1183 |
+
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:531
|
1184 |
msgid "Online"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:533
|
1188 |
msgid "Referrers"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1192 |
+
#: wp-statistics/wp-statistics.php:534
|
1193 |
msgid "Searches"
|
1194 |
msgstr "Pesquisas"
|
1195 |
|
1196 |
+
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:535
|
1197 |
msgid "Search Words"
|
1198 |
msgstr "Palavras de pesquisa"
|
1199 |
|
1200 |
+
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:536
|
1201 |
msgid "Top Visitors Today"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
+
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:538
|
1205 |
msgid "Optimization"
|
1206 |
msgstr "Otimização"
|
1207 |
|
1208 |
+
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:502
|
1209 |
msgid "Manual"
|
1210 |
msgstr "Manual"
|
1211 |
|
1212 |
+
#: wp-statistics/wp-statistics.php:517
|
1213 |
msgid "Site"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
+
#: wp-statistics/wp-statistics.php:518
|
1217 |
msgid "Options"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
+
#: wp-statistics/wp-statistics.php:644
|
1221 |
msgid "Today visitor"
|
1222 |
msgstr "Visitantes hoje"
|
1223 |
|
1224 |
+
#: wp-statistics/wp-statistics.php:650
|
1225 |
msgid "Today visit"
|
1226 |
msgstr "Hoje visitamos"
|
1227 |
|
1228 |
+
#: wp-statistics/wp-statistics.php:656
|
1229 |
msgid "Yesterday visitor"
|
1230 |
msgstr "Ontem o visitante"
|
1231 |
|
1232 |
+
#: wp-statistics/wp-statistics.php:668
|
1233 |
msgid "View Stats"
|
1234 |
msgstr "View Stats"
|
1235 |
|
1236 |
+
#: wp-statistics/wp-statistics.php:692
|
1237 |
msgid "Download ODF file"
|
1238 |
msgstr "Baixar arquivo ODF"
|
1239 |
|
1240 |
+
#: wp-statistics/wp-statistics.php:693
|
1241 |
msgid "Download HTML file"
|
1242 |
msgstr "Baixar arquivo HTML"
|
1243 |
|
1244 |
+
#: wp-statistics/wp-statistics.php:697
|
1245 |
msgid "Manual file not found."
|
1246 |
msgstr "Manual arquivo não encontrado."
|
1247 |
|
1248 |
+
#: wp-statistics/wp-statistics.php:764 wp-statistics/wp-statistics.php:891
|
1249 |
+
#: wp-statistics/wp-statistics.php:926
|
1250 |
msgid "You do not have sufficient permissions to access this page."
|
1251 |
msgstr "Você não tem permissões suficientes para acessar esta página."
|
1252 |
|
1307 |
msgid "Top 10 Browsers"
|
1308 |
msgstr "Top 10 navegadores"
|
1309 |
|
1310 |
+
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:471
|
1311 |
msgid "Top 10 Countries"
|
1312 |
msgstr "Top 10 países"
|
1313 |
|
1321 |
msgid "Hit Statistics"
|
1322 |
msgstr "Bater as estatísticas"
|
1323 |
|
1324 |
+
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:461
|
1325 |
msgid "Top 10 Pages"
|
1326 |
msgstr "Top 10 páginas"
|
1327 |
|
1328 |
#: wp-statistics/dashboard.php:62
|
1329 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1330 |
+
#: wp-statistics/wp-statistics.php:453
|
1331 |
msgid "Recent Visitors"
|
1332 |
msgstr "Visitantes recentes"
|
1333 |
|
1334 |
#: wp-statistics/dashboard.php:63
|
1335 |
#: wp-statistics/includes/log/top-referring.php:59
|
1336 |
#: wp-statistics/includes/log/top-referring.php:81
|
1337 |
+
#: wp-statistics/wp-statistics.php:468
|
1338 |
msgid "Top Referring Sites"
|
1339 |
msgstr "Top Sites referentes"
|
1340 |
|
1341 |
#: wp-statistics/dashboard.php:64
|
1342 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1343 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1344 |
+
#: wp-statistics/wp-statistics.php:451
|
1345 |
msgid "Search Engine Referrals"
|
1346 |
msgstr "Referências de motor de busca"
|
1347 |
|
1348 |
+
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:466
|
1349 |
msgid "Summary"
|
1350 |
msgstr "Resumo"
|
1351 |
|
1352 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1353 |
+
#: wp-statistics/wp-statistics.php:452
|
1354 |
msgid "Latest Search Words"
|
1355 |
msgstr "Últimas palavras de pesquisa"
|
1356 |
|
1420 |
msgstr "Clique para alternar entre"
|
1421 |
|
1422 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1423 |
+
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:467
|
1424 |
+
#: wp-statistics/wp-statistics.php:527
|
1425 |
msgid "Browsers"
|
1426 |
msgstr "Navegadores"
|
1427 |
|
1494 |
#: wp-statistics/includes/log/exclusions.php:95
|
1495 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1496 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1497 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1498 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1499 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1500 |
msgid "days"
|
1509 |
msgstr "Gráfico de estatísticas de acessos"
|
1510 |
|
1511 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1512 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1513 |
msgid "Hits in the last"
|
1514 |
msgstr "Sucessos nos últimos"
|
1515 |
|
1516 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1517 |
+
#: wp-statistics/includes/log/widgets/hits.php:65
|
1518 |
msgid "Number of visits and visitors"
|
1519 |
msgstr "Número de visitas e visitantes"
|
1520 |
|
1521 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1522 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1523 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1524 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1525 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1526 |
msgid "Visit"
|
1528 |
|
1529 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1530 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1531 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1532 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1533 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1534 |
msgid "Visitor"
|
1731 |
msgid "Other"
|
1732 |
msgstr "Outros"
|
1733 |
|
1734 |
+
#: wp-statistics/wp-statistics.php:456
|
1735 |
msgid "Today Visitors Map"
|
1736 |
msgstr "Hoje os visitantes mapa"
|
1737 |
|
1786 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1787 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1788 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1789 |
+
#: wp-statistics/wp-statistics.php:530
|
1790 |
msgid "Hits"
|
1791 |
msgstr "Hits"
|
1792 |
|
1805 |
|
1806 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1807 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1808 |
+
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:297
|
1809 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1810 |
msgid "Access denied!"
|
1811 |
msgstr "Acesso negado!"
|
1861 |
|
1862 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1863 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1864 |
+
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:528
|
1865 |
msgid "Countries"
|
1866 |
msgstr "Países"
|
1867 |
|
1946 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1947 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1948 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1949 |
+
#: wp-statistics/wp-statistics.php:537
|
1950 |
msgid "Visitors"
|
1951 |
msgstr "Visitantes"
|
1952 |
|
2448 |
#: wp-statistics/includes/log/exclusions.php:197
|
2449 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2450 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2451 |
+
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:529
|
2452 |
msgid "Exclusions"
|
2453 |
msgstr "Exclusões"
|
2454 |
|
2658 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2659 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2660 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2661 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:74
|
2662 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:86
|
2663 |
msgid "Active"
|
2664 |
msgstr "Ativo"
|
2665 |
|
languages/wp_statistics-ro_RO.mo
CHANGED
Binary file
|
languages/wp_statistics-ro_RO.po
CHANGED
@@ -7,10 +7,11 @@ msgstr ""
|
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2);\n"
|
10 |
-
"X-Generator: GlotPress/1.0
|
|
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#: wp-statistics/ajax.php:
|
14 |
msgid "No matching widget found!"
|
15 |
msgstr ""
|
16 |
|
@@ -46,22 +47,22 @@ msgstr ""
|
|
46 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: wp-statistics/ajax.php:
|
50 |
msgid "ERROR: Widget not found!"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: wp-statistics/dashboard.php:
|
54 |
#: wp-statistics/includes/log/log.php:20
|
55 |
msgid "Loading..."
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: wp-statistics/dashboard.php:
|
59 |
#: wp-statistics/includes/log/log.php:2
|
60 |
msgid "Reloading..."
|
61 |
msgstr ""
|
62 |
|
63 |
#: wp-statistics/includes/log/top-visitors.php:41
|
64 |
-
#: wp-statistics/wp-statistics.php:
|
65 |
msgid "Top Visitors"
|
66 |
msgstr ""
|
67 |
|
@@ -158,7 +159,7 @@ msgstr ""
|
|
158 |
msgid "online user tracking"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: wp-statistics/wp-statistics.php:
|
162 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
163 |
msgstr ""
|
164 |
|
@@ -622,7 +623,7 @@ msgstr "Pentru fiecare vizita a ţine cont de mai multe hit-uri. În prezent %s.
|
|
622 |
|
623 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
624 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
625 |
-
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:
|
626 |
msgid "Pages"
|
627 |
msgstr "Pagini"
|
628 |
|
@@ -892,7 +893,7 @@ msgstr ""
|
|
892 |
|
893 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
894 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
895 |
-
#: wp-statistics/wp-statistics.php:
|
896 |
msgid "User Online"
|
897 |
msgstr "Useri online"
|
898 |
|
@@ -964,40 +965,23 @@ msgstr ""
|
|
964 |
msgid "Disable the page/post editor widget."
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
968 |
-
msgid "Map type"
|
969 |
-
msgstr "Tip hartă"
|
970 |
-
|
971 |
#: wp-statistics/includes/functions/functions.php:440
|
972 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
973 |
msgid "Google"
|
974 |
msgstr "Google"
|
975 |
|
976 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
977 |
-
msgid "JQVMap"
|
978 |
-
msgstr "JQVMap"
|
979 |
-
|
980 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:82
|
981 |
-
msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
|
982 |
-
msgstr "\"Google\" opţiune va folosi Google serviciu de cartografiere a parcelei vizitatori recente (necesită acces la Google)."
|
983 |
-
|
984 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:83
|
985 |
-
msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
|
986 |
-
msgstr "\"JQVMap\" opţiune va utiliza JQVMap javascript biblioteca de cartografiere a parcelei vizitatori recente (necesită extenral servicii)."
|
987 |
-
|
988 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:89
|
989 |
msgid "Disable map"
|
990 |
msgstr "Dezactivează harta"
|
991 |
|
992 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
993 |
msgid "Disable the map display"
|
994 |
msgstr "Nu fi de acord display-ului"
|
995 |
|
996 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
997 |
msgid "Get country location from Google"
|
998 |
msgstr "Obţine locatia tarii de la Google"
|
999 |
|
1000 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1001 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
1002 |
msgstr "Această caracteristică poate cauza o degradare de performanţă atunci când vizualizaţi statistici şi este valabil dacă tipul de asociere este setat să \"Google doar\"."
|
1003 |
|
@@ -1051,7 +1035,7 @@ msgstr ""
|
|
1051 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1052 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1053 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1054 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1055 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1056 |
msgid "Update"
|
1057 |
msgstr "Actualizare"
|
@@ -1069,7 +1053,7 @@ msgid "Once Every 4 Weeks"
|
|
1069 |
msgstr "O dată la 4 săptămâni"
|
1070 |
|
1071 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1072 |
-
#: wp-statistics/wp-statistics.php:
|
1073 |
msgid "Statistics"
|
1074 |
msgstr "Statistici"
|
1075 |
|
@@ -1142,7 +1126,7 @@ msgstr "Nume"
|
|
1142 |
msgid "Items"
|
1143 |
msgstr "Elemente"
|
1144 |
|
1145 |
-
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:
|
1146 |
msgid "Yesterday visit"
|
1147 |
msgstr "Vizite ieri"
|
1148 |
|
@@ -1167,7 +1151,7 @@ msgid "Complete statistics for your WordPress site."
|
|
1167 |
msgstr "Complet de statistici pentru site-ul WordPress."
|
1168 |
|
1169 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1170 |
-
#: wp-statistics/wp-statistics.php:
|
1171 |
msgid "Settings"
|
1172 |
msgstr "Setări"
|
1173 |
|
@@ -1191,78 +1175,78 @@ msgstr "Rata de acest plugin"
|
|
1191 |
msgid "WP Statistics - Hits"
|
1192 |
msgstr "WP Statistics - hit-uri"
|
1193 |
|
1194 |
-
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:
|
1195 |
-
#: wp-statistics/wp-statistics.php:
|
1196 |
msgid "Overview"
|
1197 |
msgstr "Privire de ansamblu"
|
1198 |
|
1199 |
-
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:
|
1200 |
msgid "Online"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:
|
1204 |
msgid "Referrers"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1208 |
-
#: wp-statistics/wp-statistics.php:
|
1209 |
msgid "Searches"
|
1210 |
msgstr "Căutări"
|
1211 |
|
1212 |
-
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:
|
1213 |
msgid "Search Words"
|
1214 |
msgstr "Căutare cuvinte"
|
1215 |
|
1216 |
-
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:
|
1217 |
msgid "Top Visitors Today"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
-
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:
|
1221 |
msgid "Optimization"
|
1222 |
msgstr "Optimizare"
|
1223 |
|
1224 |
-
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:
|
1225 |
msgid "Manual"
|
1226 |
msgstr "Manual de"
|
1227 |
|
1228 |
-
#: wp-statistics/wp-statistics.php:
|
1229 |
msgid "Site"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
-
#: wp-statistics/wp-statistics.php:
|
1233 |
msgid "Options"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
-
#: wp-statistics/wp-statistics.php:
|
1237 |
msgid "Today visitor"
|
1238 |
msgstr "Azi vizitatori"
|
1239 |
|
1240 |
-
#: wp-statistics/wp-statistics.php:
|
1241 |
msgid "Today visit"
|
1242 |
msgstr "Astăzi vizita"
|
1243 |
|
1244 |
-
#: wp-statistics/wp-statistics.php:
|
1245 |
msgid "Yesterday visitor"
|
1246 |
msgstr "Ieri vizitator"
|
1247 |
|
1248 |
-
#: wp-statistics/wp-statistics.php:
|
1249 |
msgid "View Stats"
|
1250 |
msgstr "Vezi statisticile"
|
1251 |
|
1252 |
-
#: wp-statistics/wp-statistics.php:
|
1253 |
msgid "Download ODF file"
|
1254 |
msgstr "Descarcă ODF"
|
1255 |
|
1256 |
-
#: wp-statistics/wp-statistics.php:
|
1257 |
msgid "Download HTML file"
|
1258 |
msgstr "Descărcaţi fişierul HTML"
|
1259 |
|
1260 |
-
#: wp-statistics/wp-statistics.php:
|
1261 |
msgid "Manual file not found."
|
1262 |
msgstr "Manualul fişier negăsit."
|
1263 |
|
1264 |
-
#: wp-statistics/wp-statistics.php:
|
1265 |
-
#: wp-statistics/wp-statistics.php:
|
1266 |
msgid "You do not have sufficient permissions to access this page."
|
1267 |
msgstr "Nu aveți suficiente permisiuni pentru a accesa această pagină."
|
1268 |
|
@@ -1323,7 +1307,7 @@ msgstr ""
|
|
1323 |
msgid "Top 10 Browsers"
|
1324 |
msgstr "Top 10 browsere"
|
1325 |
|
1326 |
-
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:
|
1327 |
msgid "Top 10 Countries"
|
1328 |
msgstr "Top 10 tari"
|
1329 |
|
@@ -1337,36 +1321,36 @@ msgstr ""
|
|
1337 |
msgid "Hit Statistics"
|
1338 |
msgstr "Lovit statistici"
|
1339 |
|
1340 |
-
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:
|
1341 |
msgid "Top 10 Pages"
|
1342 |
msgstr "Top 10 pagini"
|
1343 |
|
1344 |
#: wp-statistics/dashboard.php:62
|
1345 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1346 |
-
#: wp-statistics/wp-statistics.php:
|
1347 |
msgid "Recent Visitors"
|
1348 |
msgstr "Vizitatori recente"
|
1349 |
|
1350 |
#: wp-statistics/dashboard.php:63
|
1351 |
#: wp-statistics/includes/log/top-referring.php:59
|
1352 |
#: wp-statistics/includes/log/top-referring.php:81
|
1353 |
-
#: wp-statistics/wp-statistics.php:
|
1354 |
msgid "Top Referring Sites"
|
1355 |
msgstr "Top referindu-se site-uri"
|
1356 |
|
1357 |
#: wp-statistics/dashboard.php:64
|
1358 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1359 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1360 |
-
#: wp-statistics/wp-statistics.php:
|
1361 |
msgid "Search Engine Referrals"
|
1362 |
msgstr "Recomandări de motor de căutare"
|
1363 |
|
1364 |
-
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:
|
1365 |
msgid "Summary"
|
1366 |
msgstr "Rezumat"
|
1367 |
|
1368 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1369 |
-
#: wp-statistics/wp-statistics.php:
|
1370 |
msgid "Latest Search Words"
|
1371 |
msgstr "Ultimele cuvinte de căutare"
|
1372 |
|
@@ -1436,8 +1420,8 @@ msgid "Click to toggle"
|
|
1436 |
msgstr "Faceţi clic pentru a comuta"
|
1437 |
|
1438 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1439 |
-
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:
|
1440 |
-
#: wp-statistics/wp-statistics.php:
|
1441 |
msgid "Browsers"
|
1442 |
msgstr "Browsere"
|
1443 |
|
@@ -1510,7 +1494,7 @@ msgstr "Exclus hit-uri în ultima"
|
|
1510 |
#: wp-statistics/includes/log/exclusions.php:95
|
1511 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1512 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1513 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1514 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1515 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1516 |
msgid "days"
|
@@ -1525,18 +1509,18 @@ msgid "Hits Statistics Chart"
|
|
1525 |
msgstr "Graficul de statistici afisari"
|
1526 |
|
1527 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1528 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1529 |
msgid "Hits in the last"
|
1530 |
msgstr "Hit-uri în ultima"
|
1531 |
|
1532 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1533 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1534 |
msgid "Number of visits and visitors"
|
1535 |
msgstr "Numărul de vizite şi vizitatori"
|
1536 |
|
1537 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1538 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1539 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1540 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1541 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1542 |
msgid "Visit"
|
@@ -1544,7 +1528,7 @@ msgstr "Vizitaţi"
|
|
1544 |
|
1545 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1546 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1547 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1548 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1549 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1550 |
msgid "Visitor"
|
@@ -1747,7 +1731,7 @@ msgstr "Acest produs include date GeoLite2 creat de MaxMind, disponibil de la %s
|
|
1747 |
msgid "Other"
|
1748 |
msgstr "Alte"
|
1749 |
|
1750 |
-
#: wp-statistics/wp-statistics.php:
|
1751 |
msgid "Today Visitors Map"
|
1752 |
msgstr "Azi vizitatori hartă"
|
1753 |
|
@@ -1802,7 +1786,7 @@ msgstr "Timp: %s"
|
|
1802 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1803 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1804 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1805 |
-
#: wp-statistics/wp-statistics.php:
|
1806 |
msgid "Hits"
|
1807 |
msgstr "Hit-uri"
|
1808 |
|
@@ -1821,7 +1805,7 @@ msgstr ""
|
|
1821 |
|
1822 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1823 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1824 |
-
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:
|
1825 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1826 |
msgid "Access denied!"
|
1827 |
msgstr "Accent denied!"
|
@@ -1877,7 +1861,7 @@ msgstr "Indicele de baze de date"
|
|
1877 |
|
1878 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1879 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1880 |
-
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:
|
1881 |
msgid "Countries"
|
1882 |
msgstr "Ţări"
|
1883 |
|
@@ -1962,7 +1946,7 @@ msgstr ""
|
|
1962 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1963 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1964 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1965 |
-
#: wp-statistics/wp-statistics.php:
|
1966 |
msgid "Visitors"
|
1967 |
msgstr "Vizitatori"
|
1968 |
|
@@ -2464,7 +2448,7 @@ msgstr "Dacă aveţi nevoie de o soluţie mai robust pentru a delega acces aţi
|
|
2464 |
#: wp-statistics/includes/log/exclusions.php:197
|
2465 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2466 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2467 |
-
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:
|
2468 |
msgid "Exclusions"
|
2469 |
msgstr "Excluderi"
|
2470 |
|
@@ -2674,8 +2658,8 @@ msgstr "browscap de utilizare"
|
|
2674 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2675 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2676 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2677 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2678 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2679 |
msgid "Active"
|
2680 |
msgstr "Activ"
|
2681 |
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2);\n"
|
10 |
+
"X-Generator: GlotPress/2.1.0\n"
|
11 |
+
"Language: ro\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
14 |
+
#: wp-statistics/ajax.php:215
|
15 |
msgid "No matching widget found!"
|
16 |
msgstr ""
|
17 |
|
47 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: wp-statistics/ajax.php:294
|
51 |
msgid "ERROR: Widget not found!"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: wp-statistics/dashboard.php:107 wp-statistics/editor.php:66
|
55 |
#: wp-statistics/includes/log/log.php:20
|
56 |
msgid "Loading..."
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: wp-statistics/dashboard.php:125 wp-statistics/editor.php:84
|
60 |
#: wp-statistics/includes/log/log.php:2
|
61 |
msgid "Reloading..."
|
62 |
msgstr ""
|
63 |
|
64 |
#: wp-statistics/includes/log/top-visitors.php:41
|
65 |
+
#: wp-statistics/wp-statistics.php:450
|
66 |
msgid "Top Visitors"
|
67 |
msgstr ""
|
68 |
|
159 |
msgid "online user tracking"
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: wp-statistics/wp-statistics.php:791
|
163 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
164 |
msgstr ""
|
165 |
|
623 |
|
624 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
625 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
626 |
+
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:532
|
627 |
msgid "Pages"
|
628 |
msgstr "Pagini"
|
629 |
|
893 |
|
894 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
895 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
896 |
+
#: wp-statistics/wp-statistics.php:637
|
897 |
msgid "User Online"
|
898 |
msgstr "Useri online"
|
899 |
|
965 |
msgid "Disable the page/post editor widget."
|
966 |
msgstr ""
|
967 |
|
|
|
|
|
|
|
|
|
968 |
#: wp-statistics/includes/functions/functions.php:440
|
|
|
969 |
msgid "Google"
|
970 |
msgstr "Google"
|
971 |
|
972 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
973 |
msgid "Disable map"
|
974 |
msgstr "Dezactivează harta"
|
975 |
|
976 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
977 |
msgid "Disable the map display"
|
978 |
msgstr "Nu fi de acord display-ului"
|
979 |
|
980 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:81
|
981 |
msgid "Get country location from Google"
|
982 |
msgstr "Obţine locatia tarii de la Google"
|
983 |
|
984 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:87
|
985 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
986 |
msgstr "Această caracteristică poate cauza o degradare de performanţă atunci când vizualizaţi statistici şi este valabil dacă tipul de asociere este setat să \"Google doar\"."
|
987 |
|
1035 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1036 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1037 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1038 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:96
|
1039 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1040 |
msgid "Update"
|
1041 |
msgstr "Actualizare"
|
1053 |
msgstr "O dată la 4 săptămâni"
|
1054 |
|
1055 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1056 |
+
#: wp-statistics/wp-statistics.php:485
|
1057 |
msgid "Statistics"
|
1058 |
msgstr "Statistici"
|
1059 |
|
1126 |
msgid "Items"
|
1127 |
msgstr "Elemente"
|
1128 |
|
1129 |
+
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:662
|
1130 |
msgid "Yesterday visit"
|
1131 |
msgstr "Vizite ieri"
|
1132 |
|
1151 |
msgstr "Complet de statistici pentru site-ul WordPress."
|
1152 |
|
1153 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1154 |
+
#: wp-statistics/wp-statistics.php:539
|
1155 |
msgid "Settings"
|
1156 |
msgstr "Setări"
|
1157 |
|
1175 |
msgid "WP Statistics - Hits"
|
1176 |
msgstr "WP Statistics - hit-uri"
|
1177 |
|
1178 |
+
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:488
|
1179 |
+
#: wp-statistics/wp-statistics.php:526
|
1180 |
msgid "Overview"
|
1181 |
msgstr "Privire de ansamblu"
|
1182 |
|
1183 |
+
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:531
|
1184 |
msgid "Online"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:533
|
1188 |
msgid "Referrers"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1192 |
+
#: wp-statistics/wp-statistics.php:534
|
1193 |
msgid "Searches"
|
1194 |
msgstr "Căutări"
|
1195 |
|
1196 |
+
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:535
|
1197 |
msgid "Search Words"
|
1198 |
msgstr "Căutare cuvinte"
|
1199 |
|
1200 |
+
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:536
|
1201 |
msgid "Top Visitors Today"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
+
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:538
|
1205 |
msgid "Optimization"
|
1206 |
msgstr "Optimizare"
|
1207 |
|
1208 |
+
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:502
|
1209 |
msgid "Manual"
|
1210 |
msgstr "Manual de"
|
1211 |
|
1212 |
+
#: wp-statistics/wp-statistics.php:517
|
1213 |
msgid "Site"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
+
#: wp-statistics/wp-statistics.php:518
|
1217 |
msgid "Options"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
+
#: wp-statistics/wp-statistics.php:644
|
1221 |
msgid "Today visitor"
|
1222 |
msgstr "Azi vizitatori"
|
1223 |
|
1224 |
+
#: wp-statistics/wp-statistics.php:650
|
1225 |
msgid "Today visit"
|
1226 |
msgstr "Astăzi vizita"
|
1227 |
|
1228 |
+
#: wp-statistics/wp-statistics.php:656
|
1229 |
msgid "Yesterday visitor"
|
1230 |
msgstr "Ieri vizitator"
|
1231 |
|
1232 |
+
#: wp-statistics/wp-statistics.php:668
|
1233 |
msgid "View Stats"
|
1234 |
msgstr "Vezi statisticile"
|
1235 |
|
1236 |
+
#: wp-statistics/wp-statistics.php:692
|
1237 |
msgid "Download ODF file"
|
1238 |
msgstr "Descarcă ODF"
|
1239 |
|
1240 |
+
#: wp-statistics/wp-statistics.php:693
|
1241 |
msgid "Download HTML file"
|
1242 |
msgstr "Descărcaţi fişierul HTML"
|
1243 |
|
1244 |
+
#: wp-statistics/wp-statistics.php:697
|
1245 |
msgid "Manual file not found."
|
1246 |
msgstr "Manualul fişier negăsit."
|
1247 |
|
1248 |
+
#: wp-statistics/wp-statistics.php:764 wp-statistics/wp-statistics.php:891
|
1249 |
+
#: wp-statistics/wp-statistics.php:926
|
1250 |
msgid "You do not have sufficient permissions to access this page."
|
1251 |
msgstr "Nu aveți suficiente permisiuni pentru a accesa această pagină."
|
1252 |
|
1307 |
msgid "Top 10 Browsers"
|
1308 |
msgstr "Top 10 browsere"
|
1309 |
|
1310 |
+
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:471
|
1311 |
msgid "Top 10 Countries"
|
1312 |
msgstr "Top 10 tari"
|
1313 |
|
1321 |
msgid "Hit Statistics"
|
1322 |
msgstr "Lovit statistici"
|
1323 |
|
1324 |
+
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:461
|
1325 |
msgid "Top 10 Pages"
|
1326 |
msgstr "Top 10 pagini"
|
1327 |
|
1328 |
#: wp-statistics/dashboard.php:62
|
1329 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1330 |
+
#: wp-statistics/wp-statistics.php:453
|
1331 |
msgid "Recent Visitors"
|
1332 |
msgstr "Vizitatori recente"
|
1333 |
|
1334 |
#: wp-statistics/dashboard.php:63
|
1335 |
#: wp-statistics/includes/log/top-referring.php:59
|
1336 |
#: wp-statistics/includes/log/top-referring.php:81
|
1337 |
+
#: wp-statistics/wp-statistics.php:468
|
1338 |
msgid "Top Referring Sites"
|
1339 |
msgstr "Top referindu-se site-uri"
|
1340 |
|
1341 |
#: wp-statistics/dashboard.php:64
|
1342 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1343 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1344 |
+
#: wp-statistics/wp-statistics.php:451
|
1345 |
msgid "Search Engine Referrals"
|
1346 |
msgstr "Recomandări de motor de căutare"
|
1347 |
|
1348 |
+
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:466
|
1349 |
msgid "Summary"
|
1350 |
msgstr "Rezumat"
|
1351 |
|
1352 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1353 |
+
#: wp-statistics/wp-statistics.php:452
|
1354 |
msgid "Latest Search Words"
|
1355 |
msgstr "Ultimele cuvinte de căutare"
|
1356 |
|
1420 |
msgstr "Faceţi clic pentru a comuta"
|
1421 |
|
1422 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1423 |
+
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:467
|
1424 |
+
#: wp-statistics/wp-statistics.php:527
|
1425 |
msgid "Browsers"
|
1426 |
msgstr "Browsere"
|
1427 |
|
1494 |
#: wp-statistics/includes/log/exclusions.php:95
|
1495 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1496 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1497 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1498 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1499 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1500 |
msgid "days"
|
1509 |
msgstr "Graficul de statistici afisari"
|
1510 |
|
1511 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1512 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1513 |
msgid "Hits in the last"
|
1514 |
msgstr "Hit-uri în ultima"
|
1515 |
|
1516 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1517 |
+
#: wp-statistics/includes/log/widgets/hits.php:65
|
1518 |
msgid "Number of visits and visitors"
|
1519 |
msgstr "Numărul de vizite şi vizitatori"
|
1520 |
|
1521 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1522 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1523 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1524 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1525 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1526 |
msgid "Visit"
|
1528 |
|
1529 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1530 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1531 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1532 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1533 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1534 |
msgid "Visitor"
|
1731 |
msgid "Other"
|
1732 |
msgstr "Alte"
|
1733 |
|
1734 |
+
#: wp-statistics/wp-statistics.php:456
|
1735 |
msgid "Today Visitors Map"
|
1736 |
msgstr "Azi vizitatori hartă"
|
1737 |
|
1786 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1787 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1788 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1789 |
+
#: wp-statistics/wp-statistics.php:530
|
1790 |
msgid "Hits"
|
1791 |
msgstr "Hit-uri"
|
1792 |
|
1805 |
|
1806 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1807 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1808 |
+
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:297
|
1809 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1810 |
msgid "Access denied!"
|
1811 |
msgstr "Accent denied!"
|
1861 |
|
1862 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1863 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1864 |
+
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:528
|
1865 |
msgid "Countries"
|
1866 |
msgstr "Ţări"
|
1867 |
|
1946 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1947 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1948 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1949 |
+
#: wp-statistics/wp-statistics.php:537
|
1950 |
msgid "Visitors"
|
1951 |
msgstr "Vizitatori"
|
1952 |
|
2448 |
#: wp-statistics/includes/log/exclusions.php:197
|
2449 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2450 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2451 |
+
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:529
|
2452 |
msgid "Exclusions"
|
2453 |
msgstr "Excluderi"
|
2454 |
|
2658 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2659 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2660 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2661 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:74
|
2662 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:86
|
2663 |
msgid "Active"
|
2664 |
msgstr "Activ"
|
2665 |
|
languages/wp_statistics-ru_RU.mo
CHANGED
Binary file
|
languages/wp_statistics-ru_RU.po
CHANGED
@@ -7,10 +7,11 @@ msgstr ""
|
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
10 |
-
"X-Generator: GlotPress/1.0
|
|
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#: wp-statistics/ajax.php:
|
14 |
msgid "No matching widget found!"
|
15 |
msgstr "Соответствующий виджет не найден!"
|
16 |
|
@@ -46,22 +47,22 @@ msgstr "Вы пытаетесь запустить плагин WP Statistics н
|
|
46 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
47 |
msgstr "Пожалуйста, обратитесь к вашему хостинг-провайдеру с вопросом об обновлении на поддерживаемую версию или отключите плагин WP-Statistics."
|
48 |
|
49 |
-
#: wp-statistics/ajax.php:
|
50 |
msgid "ERROR: Widget not found!"
|
51 |
msgstr "ОШИБКА: Виджет не найден!"
|
52 |
|
53 |
-
#: wp-statistics/dashboard.php:
|
54 |
#: wp-statistics/includes/log/log.php:20
|
55 |
msgid "Loading..."
|
56 |
msgstr "Загрузка..."
|
57 |
|
58 |
-
#: wp-statistics/dashboard.php:
|
59 |
#: wp-statistics/includes/log/log.php:2
|
60 |
msgid "Reloading..."
|
61 |
msgstr "Перезагрузка..."
|
62 |
|
63 |
#: wp-statistics/includes/log/top-visitors.php:41
|
64 |
-
#: wp-statistics/wp-statistics.php:
|
65 |
msgid "Top Visitors"
|
66 |
msgstr "Топ посетителей"
|
67 |
|
@@ -158,7 +159,7 @@ msgstr "отслеживание переходов"
|
|
158 |
msgid "online user tracking"
|
159 |
msgstr "отслеживание пользователей на сайте"
|
160 |
|
161 |
-
#: wp-statistics/wp-statistics.php:
|
162 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
163 |
msgstr "Следующие таблицы плагина не существуют в базе данных, пожалуйста запустите снова установку %s по ссылке %s:"
|
164 |
|
@@ -624,7 +625,7 @@ msgstr "Для каждого посещения за несколько про
|
|
624 |
|
625 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
626 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
627 |
-
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:
|
628 |
msgid "Pages"
|
629 |
msgstr "Страницы"
|
630 |
|
@@ -894,7 +895,7 @@ msgstr "Любые шорткоды поддерживаемые вашей ве
|
|
894 |
|
895 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
896 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
897 |
-
#: wp-statistics/wp-statistics.php:
|
898 |
msgid "User Online"
|
899 |
msgstr "Посетителей онлайн"
|
900 |
|
@@ -966,40 +967,23 @@ msgstr "Отключить виджет в редакторе страниц/з
|
|
966 |
msgid "Disable the page/post editor widget."
|
967 |
msgstr "Отключить виджет в редакторе страниц/записей."
|
968 |
|
969 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
970 |
-
msgid "Map type"
|
971 |
-
msgstr "Тип карты"
|
972 |
-
|
973 |
#: wp-statistics/includes/functions/functions.php:440
|
974 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
975 |
msgid "Google"
|
976 |
msgstr "Google"
|
977 |
|
978 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
979 |
-
msgid "JQVMap"
|
980 |
-
msgstr "JQVMap"
|
981 |
-
|
982 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:82
|
983 |
-
msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
|
984 |
-
msgstr "При выборе \\\"Google\\\" будет использована карта Google для отображения последних посетителей (требуется доступ к Google)."
|
985 |
-
|
986 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:83
|
987 |
-
msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
|
988 |
-
msgstr "При выборе \\\"JQVMap\\\" будет использована карта библиотеку JQVMap для отображения последних посетителей (не требует внешних сервисов). "
|
989 |
-
|
990 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:89
|
991 |
msgid "Disable map"
|
992 |
msgstr "Отключить карту"
|
993 |
|
994 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
995 |
msgid "Disable the map display"
|
996 |
msgstr "Отключит отображение карты"
|
997 |
|
998 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
999 |
msgid "Get country location from Google"
|
1000 |
msgstr "Получить местоположение от Google"
|
1001 |
|
1002 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1003 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
1004 |
msgstr "Эта функция может вызвать снижение производительности при просмотре статистики и активна, только если тип карты установлен как \\\"Google\\\"."
|
1005 |
|
@@ -1053,7 +1037,7 @@ msgstr "Очистка"
|
|
1053 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1054 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1055 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1056 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1057 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1058 |
msgid "Update"
|
1059 |
msgstr "Обновить"
|
@@ -1071,7 +1055,7 @@ msgid "Once Every 4 Weeks"
|
|
1071 |
msgstr "Раз в 4 недели"
|
1072 |
|
1073 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1074 |
-
#: wp-statistics/wp-statistics.php:
|
1075 |
msgid "Statistics"
|
1076 |
msgstr "Статистика"
|
1077 |
|
@@ -1144,7 +1128,7 @@ msgstr "Название"
|
|
1144 |
msgid "Items"
|
1145 |
msgstr "Элементы"
|
1146 |
|
1147 |
-
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:
|
1148 |
msgid "Yesterday visit"
|
1149 |
msgstr "Посетителей за вчера"
|
1150 |
|
@@ -1169,7 +1153,7 @@ msgid "Complete statistics for your WordPress site."
|
|
1169 |
msgstr "Полная статистика для вашего WordPress сайта."
|
1170 |
|
1171 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1172 |
-
#: wp-statistics/wp-statistics.php:
|
1173 |
msgid "Settings"
|
1174 |
msgstr "Настройки"
|
1175 |
|
@@ -1193,78 +1177,78 @@ msgstr "Оценить плагин"
|
|
1193 |
msgid "WP Statistics - Hits"
|
1194 |
msgstr "WP Statistics - Переходы"
|
1195 |
|
1196 |
-
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:
|
1197 |
-
#: wp-statistics/wp-statistics.php:
|
1198 |
msgid "Overview"
|
1199 |
msgstr "Обзор"
|
1200 |
|
1201 |
-
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:
|
1202 |
msgid "Online"
|
1203 |
msgstr "Пользователи на сайте"
|
1204 |
|
1205 |
-
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:
|
1206 |
msgid "Referrers"
|
1207 |
msgstr "Источники переходов"
|
1208 |
|
1209 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1210 |
-
#: wp-statistics/wp-statistics.php:
|
1211 |
msgid "Searches"
|
1212 |
msgstr "Поисковых запросов"
|
1213 |
|
1214 |
-
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:
|
1215 |
msgid "Search Words"
|
1216 |
msgstr "Поисковые запросы"
|
1217 |
|
1218 |
-
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:
|
1219 |
msgid "Top Visitors Today"
|
1220 |
msgstr "Топ посетителей за сегодня"
|
1221 |
|
1222 |
-
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:
|
1223 |
msgid "Optimization"
|
1224 |
msgstr "Оптимизация"
|
1225 |
|
1226 |
-
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:
|
1227 |
msgid "Manual"
|
1228 |
msgstr "Руководство"
|
1229 |
|
1230 |
-
#: wp-statistics/wp-statistics.php:
|
1231 |
msgid "Site"
|
1232 |
msgstr "Сайт"
|
1233 |
|
1234 |
-
#: wp-statistics/wp-statistics.php:
|
1235 |
msgid "Options"
|
1236 |
msgstr "Опции"
|
1237 |
|
1238 |
-
#: wp-statistics/wp-statistics.php:
|
1239 |
msgid "Today visitor"
|
1240 |
msgstr "Посетителей за сегодня"
|
1241 |
|
1242 |
-
#: wp-statistics/wp-statistics.php:
|
1243 |
msgid "Today visit"
|
1244 |
msgstr "Посещений за сегодня"
|
1245 |
|
1246 |
-
#: wp-statistics/wp-statistics.php:
|
1247 |
msgid "Yesterday visitor"
|
1248 |
msgstr "Посетителей за вчера"
|
1249 |
|
1250 |
-
#: wp-statistics/wp-statistics.php:
|
1251 |
msgid "View Stats"
|
1252 |
msgstr "Статистика"
|
1253 |
|
1254 |
-
#: wp-statistics/wp-statistics.php:
|
1255 |
msgid "Download ODF file"
|
1256 |
msgstr "Скачать ODF файл"
|
1257 |
|
1258 |
-
#: wp-statistics/wp-statistics.php:
|
1259 |
msgid "Download HTML file"
|
1260 |
msgstr "Скачать HTML файл"
|
1261 |
|
1262 |
-
#: wp-statistics/wp-statistics.php:
|
1263 |
msgid "Manual file not found."
|
1264 |
msgstr "Файл руководства не найден."
|
1265 |
|
1266 |
-
#: wp-statistics/wp-statistics.php:
|
1267 |
-
#: wp-statistics/wp-statistics.php:
|
1268 |
msgid "You do not have sufficient permissions to access this page."
|
1269 |
msgstr "У вас недостаточно прав для доступа к этой странице."
|
1270 |
|
@@ -1325,7 +1309,7 @@ msgstr "Краткая статистика"
|
|
1325 |
msgid "Top 10 Browsers"
|
1326 |
msgstr "Топ 10 браузеров"
|
1327 |
|
1328 |
-
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:
|
1329 |
msgid "Top 10 Countries"
|
1330 |
msgstr "Топ 10 стран"
|
1331 |
|
@@ -1339,36 +1323,36 @@ msgstr "Карта посетителей за сегодня"
|
|
1339 |
msgid "Hit Statistics"
|
1340 |
msgstr "Статистика просмотров"
|
1341 |
|
1342 |
-
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:
|
1343 |
msgid "Top 10 Pages"
|
1344 |
msgstr "Топ 10 страниц"
|
1345 |
|
1346 |
#: wp-statistics/dashboard.php:62
|
1347 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1348 |
-
#: wp-statistics/wp-statistics.php:
|
1349 |
msgid "Recent Visitors"
|
1350 |
msgstr "Недавние посетители"
|
1351 |
|
1352 |
#: wp-statistics/dashboard.php:63
|
1353 |
#: wp-statistics/includes/log/top-referring.php:59
|
1354 |
#: wp-statistics/includes/log/top-referring.php:81
|
1355 |
-
#: wp-statistics/wp-statistics.php:
|
1356 |
msgid "Top Referring Sites"
|
1357 |
msgstr "Топ ссылающихся на вас сайтов"
|
1358 |
|
1359 |
#: wp-statistics/dashboard.php:64
|
1360 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1361 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1362 |
-
#: wp-statistics/wp-statistics.php:
|
1363 |
msgid "Search Engine Referrals"
|
1364 |
msgstr "Топ поисковых систем"
|
1365 |
|
1366 |
-
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:
|
1367 |
msgid "Summary"
|
1368 |
msgstr "Общие данные"
|
1369 |
|
1370 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1371 |
-
#: wp-statistics/wp-statistics.php:
|
1372 |
msgid "Latest Search Words"
|
1373 |
msgstr "Последние поисковые фразы"
|
1374 |
|
@@ -1438,8 +1422,8 @@ msgid "Click to toggle"
|
|
1438 |
msgstr "Нажмите для переключения"
|
1439 |
|
1440 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1441 |
-
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:
|
1442 |
-
#: wp-statistics/wp-statistics.php:
|
1443 |
msgid "Browsers"
|
1444 |
msgstr "Браузеры"
|
1445 |
|
@@ -1512,7 +1496,7 @@ msgstr "Исключенные просмотры за последние"
|
|
1512 |
#: wp-statistics/includes/log/exclusions.php:95
|
1513 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1514 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1515 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1516 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1517 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1518 |
msgid "days"
|
@@ -1527,18 +1511,18 @@ msgid "Hits Statistics Chart"
|
|
1527 |
msgstr "Диаграммы статистики просмотров"
|
1528 |
|
1529 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1530 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1531 |
msgid "Hits in the last"
|
1532 |
msgstr "Просмотры за последние"
|
1533 |
|
1534 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1535 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1536 |
msgid "Number of visits and visitors"
|
1537 |
msgstr "Количество посещений и посетителей"
|
1538 |
|
1539 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1540 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1541 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1542 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1543 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1544 |
msgid "Visit"
|
@@ -1546,7 +1530,7 @@ msgstr "Посещение"
|
|
1546 |
|
1547 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1548 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1549 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1550 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1551 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1552 |
msgid "Visitor"
|
@@ -1749,7 +1733,7 @@ msgstr "Используются данные GeoLite2, созданные MaxMi
|
|
1749 |
msgid "Other"
|
1750 |
msgstr "Другие"
|
1751 |
|
1752 |
-
#: wp-statistics/wp-statistics.php:
|
1753 |
msgid "Today Visitors Map"
|
1754 |
msgstr "Карта посетителей за сегодня"
|
1755 |
|
@@ -1804,7 +1788,7 @@ msgstr "Время: %s"
|
|
1804 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1805 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1806 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1807 |
-
#: wp-statistics/wp-statistics.php:
|
1808 |
msgid "Hits"
|
1809 |
msgstr "Просмотров"
|
1810 |
|
@@ -1823,7 +1807,7 @@ msgstr "Версия"
|
|
1823 |
|
1824 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1825 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1826 |
-
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:
|
1827 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1828 |
msgid "Access denied!"
|
1829 |
msgstr "Доступ запрещен!"
|
@@ -1879,7 +1863,7 @@ msgstr "Индекс базы данных"
|
|
1879 |
|
1880 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1881 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1882 |
-
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:
|
1883 |
msgid "Countries"
|
1884 |
msgstr "Страны"
|
1885 |
|
@@ -1964,7 +1948,7 @@ msgstr "Примечание: после очистки базы данных в
|
|
1964 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1965 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1966 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1967 |
-
#: wp-statistics/wp-statistics.php:
|
1968 |
msgid "Visitors"
|
1969 |
msgstr "Посетителей"
|
1970 |
|
@@ -2466,7 +2450,7 @@ msgstr "Если вам требуется более надежное реше
|
|
2466 |
#: wp-statistics/includes/log/exclusions.php:197
|
2467 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2468 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2469 |
-
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:
|
2470 |
msgid "Exclusions"
|
2471 |
msgstr "Исключения"
|
2472 |
|
@@ -2676,8 +2660,8 @@ msgstr "Использовать browscap"
|
|
2676 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2677 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2678 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2679 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2680 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2681 |
msgid "Active"
|
2682 |
msgstr "Активно"
|
2683 |
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
10 |
+
"X-Generator: GlotPress/2.1.0\n"
|
11 |
+
"Language: ru\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
14 |
+
#: wp-statistics/ajax.php:215
|
15 |
msgid "No matching widget found!"
|
16 |
msgstr "Соответствующий виджет не найден!"
|
17 |
|
47 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
48 |
msgstr "Пожалуйста, обратитесь к вашему хостинг-провайдеру с вопросом об обновлении на поддерживаемую версию или отключите плагин WP-Statistics."
|
49 |
|
50 |
+
#: wp-statistics/ajax.php:294
|
51 |
msgid "ERROR: Widget not found!"
|
52 |
msgstr "ОШИБКА: Виджет не найден!"
|
53 |
|
54 |
+
#: wp-statistics/dashboard.php:107 wp-statistics/editor.php:66
|
55 |
#: wp-statistics/includes/log/log.php:20
|
56 |
msgid "Loading..."
|
57 |
msgstr "Загрузка..."
|
58 |
|
59 |
+
#: wp-statistics/dashboard.php:125 wp-statistics/editor.php:84
|
60 |
#: wp-statistics/includes/log/log.php:2
|
61 |
msgid "Reloading..."
|
62 |
msgstr "Перезагрузка..."
|
63 |
|
64 |
#: wp-statistics/includes/log/top-visitors.php:41
|
65 |
+
#: wp-statistics/wp-statistics.php:450
|
66 |
msgid "Top Visitors"
|
67 |
msgstr "Топ посетителей"
|
68 |
|
159 |
msgid "online user tracking"
|
160 |
msgstr "отслеживание пользователей на сайте"
|
161 |
|
162 |
+
#: wp-statistics/wp-statistics.php:791
|
163 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
164 |
msgstr "Следующие таблицы плагина не существуют в базе данных, пожалуйста запустите снова установку %s по ссылке %s:"
|
165 |
|
625 |
|
626 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
627 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
628 |
+
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:532
|
629 |
msgid "Pages"
|
630 |
msgstr "Страницы"
|
631 |
|
895 |
|
896 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
897 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
898 |
+
#: wp-statistics/wp-statistics.php:637
|
899 |
msgid "User Online"
|
900 |
msgstr "Посетителей онлайн"
|
901 |
|
967 |
msgid "Disable the page/post editor widget."
|
968 |
msgstr "Отключить виджет в редакторе страниц/записей."
|
969 |
|
|
|
|
|
|
|
|
|
970 |
#: wp-statistics/includes/functions/functions.php:440
|
|
|
971 |
msgid "Google"
|
972 |
msgstr "Google"
|
973 |
|
974 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
975 |
msgid "Disable map"
|
976 |
msgstr "Отключить карту"
|
977 |
|
978 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
979 |
msgid "Disable the map display"
|
980 |
msgstr "Отключит отображение карты"
|
981 |
|
982 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:81
|
983 |
msgid "Get country location from Google"
|
984 |
msgstr "Получить местоположение от Google"
|
985 |
|
986 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:87
|
987 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
988 |
msgstr "Эта функция может вызвать снижение производительности при просмотре статистики и активна, только если тип карты установлен как \\\"Google\\\"."
|
989 |
|
1037 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1038 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1039 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1040 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:96
|
1041 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1042 |
msgid "Update"
|
1043 |
msgstr "Обновить"
|
1055 |
msgstr "Раз в 4 недели"
|
1056 |
|
1057 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1058 |
+
#: wp-statistics/wp-statistics.php:485
|
1059 |
msgid "Statistics"
|
1060 |
msgstr "Статистика"
|
1061 |
|
1128 |
msgid "Items"
|
1129 |
msgstr "Элементы"
|
1130 |
|
1131 |
+
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:662
|
1132 |
msgid "Yesterday visit"
|
1133 |
msgstr "Посетителей за вчера"
|
1134 |
|
1153 |
msgstr "Полная статистика для вашего WordPress сайта."
|
1154 |
|
1155 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1156 |
+
#: wp-statistics/wp-statistics.php:539
|
1157 |
msgid "Settings"
|
1158 |
msgstr "Настройки"
|
1159 |
|
1177 |
msgid "WP Statistics - Hits"
|
1178 |
msgstr "WP Statistics - Переходы"
|
1179 |
|
1180 |
+
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:488
|
1181 |
+
#: wp-statistics/wp-statistics.php:526
|
1182 |
msgid "Overview"
|
1183 |
msgstr "Обзор"
|
1184 |
|
1185 |
+
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:531
|
1186 |
msgid "Online"
|
1187 |
msgstr "Пользователи на сайте"
|
1188 |
|
1189 |
+
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:533
|
1190 |
msgid "Referrers"
|
1191 |
msgstr "Источники переходов"
|
1192 |
|
1193 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1194 |
+
#: wp-statistics/wp-statistics.php:534
|
1195 |
msgid "Searches"
|
1196 |
msgstr "Поисковых запросов"
|
1197 |
|
1198 |
+
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:535
|
1199 |
msgid "Search Words"
|
1200 |
msgstr "Поисковые запросы"
|
1201 |
|
1202 |
+
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:536
|
1203 |
msgid "Top Visitors Today"
|
1204 |
msgstr "Топ посетителей за сегодня"
|
1205 |
|
1206 |
+
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:538
|
1207 |
msgid "Optimization"
|
1208 |
msgstr "Оптимизация"
|
1209 |
|
1210 |
+
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:502
|
1211 |
msgid "Manual"
|
1212 |
msgstr "Руководство"
|
1213 |
|
1214 |
+
#: wp-statistics/wp-statistics.php:517
|
1215 |
msgid "Site"
|
1216 |
msgstr "Сайт"
|
1217 |
|
1218 |
+
#: wp-statistics/wp-statistics.php:518
|
1219 |
msgid "Options"
|
1220 |
msgstr "Опции"
|
1221 |
|
1222 |
+
#: wp-statistics/wp-statistics.php:644
|
1223 |
msgid "Today visitor"
|
1224 |
msgstr "Посетителей за сегодня"
|
1225 |
|
1226 |
+
#: wp-statistics/wp-statistics.php:650
|
1227 |
msgid "Today visit"
|
1228 |
msgstr "Посещений за сегодня"
|
1229 |
|
1230 |
+
#: wp-statistics/wp-statistics.php:656
|
1231 |
msgid "Yesterday visitor"
|
1232 |
msgstr "Посетителей за вчера"
|
1233 |
|
1234 |
+
#: wp-statistics/wp-statistics.php:668
|
1235 |
msgid "View Stats"
|
1236 |
msgstr "Статистика"
|
1237 |
|
1238 |
+
#: wp-statistics/wp-statistics.php:692
|
1239 |
msgid "Download ODF file"
|
1240 |
msgstr "Скачать ODF файл"
|
1241 |
|
1242 |
+
#: wp-statistics/wp-statistics.php:693
|
1243 |
msgid "Download HTML file"
|
1244 |
msgstr "Скачать HTML файл"
|
1245 |
|
1246 |
+
#: wp-statistics/wp-statistics.php:697
|
1247 |
msgid "Manual file not found."
|
1248 |
msgstr "Файл руководства не найден."
|
1249 |
|
1250 |
+
#: wp-statistics/wp-statistics.php:764 wp-statistics/wp-statistics.php:891
|
1251 |
+
#: wp-statistics/wp-statistics.php:926
|
1252 |
msgid "You do not have sufficient permissions to access this page."
|
1253 |
msgstr "У вас недостаточно прав для доступа к этой странице."
|
1254 |
|
1309 |
msgid "Top 10 Browsers"
|
1310 |
msgstr "Топ 10 браузеров"
|
1311 |
|
1312 |
+
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:471
|
1313 |
msgid "Top 10 Countries"
|
1314 |
msgstr "Топ 10 стран"
|
1315 |
|
1323 |
msgid "Hit Statistics"
|
1324 |
msgstr "Статистика просмотров"
|
1325 |
|
1326 |
+
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:461
|
1327 |
msgid "Top 10 Pages"
|
1328 |
msgstr "Топ 10 страниц"
|
1329 |
|
1330 |
#: wp-statistics/dashboard.php:62
|
1331 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1332 |
+
#: wp-statistics/wp-statistics.php:453
|
1333 |
msgid "Recent Visitors"
|
1334 |
msgstr "Недавние посетители"
|
1335 |
|
1336 |
#: wp-statistics/dashboard.php:63
|
1337 |
#: wp-statistics/includes/log/top-referring.php:59
|
1338 |
#: wp-statistics/includes/log/top-referring.php:81
|
1339 |
+
#: wp-statistics/wp-statistics.php:468
|
1340 |
msgid "Top Referring Sites"
|
1341 |
msgstr "Топ ссылающихся на вас сайтов"
|
1342 |
|
1343 |
#: wp-statistics/dashboard.php:64
|
1344 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1345 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1346 |
+
#: wp-statistics/wp-statistics.php:451
|
1347 |
msgid "Search Engine Referrals"
|
1348 |
msgstr "Топ поисковых систем"
|
1349 |
|
1350 |
+
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:466
|
1351 |
msgid "Summary"
|
1352 |
msgstr "Общие данные"
|
1353 |
|
1354 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1355 |
+
#: wp-statistics/wp-statistics.php:452
|
1356 |
msgid "Latest Search Words"
|
1357 |
msgstr "Последние поисковые фразы"
|
1358 |
|
1422 |
msgstr "Нажмите для переключения"
|
1423 |
|
1424 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1425 |
+
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:467
|
1426 |
+
#: wp-statistics/wp-statistics.php:527
|
1427 |
msgid "Browsers"
|
1428 |
msgstr "Браузеры"
|
1429 |
|
1496 |
#: wp-statistics/includes/log/exclusions.php:95
|
1497 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1498 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1499 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1500 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1501 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1502 |
msgid "days"
|
1511 |
msgstr "Диаграммы статистики просмотров"
|
1512 |
|
1513 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1514 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1515 |
msgid "Hits in the last"
|
1516 |
msgstr "Просмотры за последние"
|
1517 |
|
1518 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1519 |
+
#: wp-statistics/includes/log/widgets/hits.php:65
|
1520 |
msgid "Number of visits and visitors"
|
1521 |
msgstr "Количество посещений и посетителей"
|
1522 |
|
1523 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1524 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1525 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1526 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1527 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1528 |
msgid "Visit"
|
1530 |
|
1531 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1532 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1533 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1534 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1535 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1536 |
msgid "Visitor"
|
1733 |
msgid "Other"
|
1734 |
msgstr "Другие"
|
1735 |
|
1736 |
+
#: wp-statistics/wp-statistics.php:456
|
1737 |
msgid "Today Visitors Map"
|
1738 |
msgstr "Карта посетителей за сегодня"
|
1739 |
|
1788 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1789 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1790 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1791 |
+
#: wp-statistics/wp-statistics.php:530
|
1792 |
msgid "Hits"
|
1793 |
msgstr "Просмотров"
|
1794 |
|
1807 |
|
1808 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1809 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1810 |
+
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:297
|
1811 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1812 |
msgid "Access denied!"
|
1813 |
msgstr "Доступ запрещен!"
|
1863 |
|
1864 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1865 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1866 |
+
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:528
|
1867 |
msgid "Countries"
|
1868 |
msgstr "Страны"
|
1869 |
|
1948 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1949 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1950 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1951 |
+
#: wp-statistics/wp-statistics.php:537
|
1952 |
msgid "Visitors"
|
1953 |
msgstr "Посетителей"
|
1954 |
|
2450 |
#: wp-statistics/includes/log/exclusions.php:197
|
2451 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2452 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2453 |
+
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:529
|
2454 |
msgid "Exclusions"
|
2455 |
msgstr "Исключения"
|
2456 |
|
2660 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2661 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2662 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2663 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:74
|
2664 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:86
|
2665 |
msgid "Active"
|
2666 |
msgstr "Активно"
|
2667 |
|
languages/wp_statistics-sk_SK.mo
CHANGED
Binary file
|
languages/wp_statistics-sk_SK.po
CHANGED
@@ -7,10 +7,11 @@ msgstr ""
|
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
10 |
-
"X-Generator: GlotPress/1.0
|
|
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#: wp-statistics/ajax.php:
|
14 |
msgid "No matching widget found!"
|
15 |
msgstr ""
|
16 |
|
@@ -46,22 +47,22 @@ msgstr ""
|
|
46 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: wp-statistics/ajax.php:
|
50 |
msgid "ERROR: Widget not found!"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: wp-statistics/dashboard.php:
|
54 |
#: wp-statistics/includes/log/log.php:20
|
55 |
msgid "Loading..."
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: wp-statistics/dashboard.php:
|
59 |
#: wp-statistics/includes/log/log.php:2
|
60 |
msgid "Reloading..."
|
61 |
msgstr ""
|
62 |
|
63 |
#: wp-statistics/includes/log/top-visitors.php:41
|
64 |
-
#: wp-statistics/wp-statistics.php:
|
65 |
msgid "Top Visitors"
|
66 |
msgstr ""
|
67 |
|
@@ -158,7 +159,7 @@ msgstr "sledovanie zobrazení"
|
|
158 |
msgid "online user tracking"
|
159 |
msgstr "on-line sledovanie používateľov"
|
160 |
|
161 |
-
#: wp-statistics/wp-statistics.php:
|
162 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
163 |
msgstr "Nasledujúca tabuľka(ky) zásuvného modulu neexistuje v databáze, prosím, znova spustite inštaláčnú %s rutinu %s:"
|
164 |
|
@@ -622,7 +623,7 @@ msgstr "Za každú návštevu započítať niekoľko zobrazení. Momentálne %s.
|
|
622 |
|
623 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
624 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
625 |
-
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:
|
626 |
msgid "Pages"
|
627 |
msgstr "Stránky"
|
628 |
|
@@ -892,7 +893,7 @@ msgstr "Akýkoľvek skrátený kód (shortcode) podporovaný inštaláciou WordP
|
|
892 |
|
893 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
894 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
895 |
-
#: wp-statistics/wp-statistics.php:
|
896 |
msgid "User Online"
|
897 |
msgstr "Používateľ online"
|
898 |
|
@@ -964,40 +965,23 @@ msgstr "Zakázať Widget editora príspevku/stránky"
|
|
964 |
msgid "Disable the page/post editor widget."
|
965 |
msgstr "Zakázať widget editora stránky/príspevku."
|
966 |
|
967 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
968 |
-
msgid "Map type"
|
969 |
-
msgstr "Typ mapy"
|
970 |
-
|
971 |
#: wp-statistics/includes/functions/functions.php:440
|
972 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
973 |
msgid "Google"
|
974 |
msgstr "Google"
|
975 |
|
976 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
977 |
-
msgid "JQVMap"
|
978 |
-
msgstr "JQVMap"
|
979 |
-
|
980 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:82
|
981 |
-
msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
|
982 |
-
msgstr "Možnosť \"Google\" bude používať pre zobrazenie posledných návštevníkov služby máp od Google (vyžaduje sa prístup ku Google)."
|
983 |
-
|
984 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:83
|
985 |
-
msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
|
986 |
-
msgstr "Možnosť \"JQVMap\" bude pre zobrazenie posledných návštevníkov používať JQVMap javascript knižnicu mapovania (nevyžaduje žiadne externé služby)."
|
987 |
-
|
988 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:89
|
989 |
msgid "Disable map"
|
990 |
msgstr "Zakázať mapu"
|
991 |
|
992 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
993 |
msgid "Disable the map display"
|
994 |
msgstr "Vypnúť zobrazovanie máp"
|
995 |
|
996 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
997 |
msgid "Get country location from Google"
|
998 |
msgstr "Získajte lokáciu krajiny z Google"
|
999 |
|
1000 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1001 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
1002 |
msgstr "Táto funkcia môže spôsobiť pri prezeraní štatistík pokles výkonu a je platná len ak je nastavený typ mapy na \"Google\"."
|
1003 |
|
@@ -1051,7 +1035,7 @@ msgstr "Odstránenie"
|
|
1051 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1052 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1053 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1054 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1055 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1056 |
msgid "Update"
|
1057 |
msgstr "Aktualizácia"
|
@@ -1069,7 +1053,7 @@ msgid "Once Every 4 Weeks"
|
|
1069 |
msgstr "Raz za 4 týždne"
|
1070 |
|
1071 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1072 |
-
#: wp-statistics/wp-statistics.php:
|
1073 |
msgid "Statistics"
|
1074 |
msgstr "Štatistiky"
|
1075 |
|
@@ -1142,7 +1126,7 @@ msgstr "Meno"
|
|
1142 |
msgid "Items"
|
1143 |
msgstr "Položky"
|
1144 |
|
1145 |
-
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:
|
1146 |
msgid "Yesterday visit"
|
1147 |
msgstr "Včera návštev"
|
1148 |
|
@@ -1167,7 +1151,7 @@ msgid "Complete statistics for your WordPress site."
|
|
1167 |
msgstr "Kompletné štatistiky pre vaše WordPress stránky."
|
1168 |
|
1169 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1170 |
-
#: wp-statistics/wp-statistics.php:
|
1171 |
msgid "Settings"
|
1172 |
msgstr "Nastavenia"
|
1173 |
|
@@ -1191,78 +1175,78 @@ msgstr "Hodnotiť tento zásuvný modul (plugin)"
|
|
1191 |
msgid "WP Statistics - Hits"
|
1192 |
msgstr "WP Statistics - hity"
|
1193 |
|
1194 |
-
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:
|
1195 |
-
#: wp-statistics/wp-statistics.php:
|
1196 |
msgid "Overview"
|
1197 |
msgstr "Prehľad"
|
1198 |
|
1199 |
-
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:
|
1200 |
msgid "Online"
|
1201 |
msgstr "Online"
|
1202 |
|
1203 |
-
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:
|
1204 |
msgid "Referrers"
|
1205 |
msgstr "Odkazovače"
|
1206 |
|
1207 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1208 |
-
#: wp-statistics/wp-statistics.php:
|
1209 |
msgid "Searches"
|
1210 |
msgstr "Vyhľadávanie"
|
1211 |
|
1212 |
-
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:
|
1213 |
msgid "Search Words"
|
1214 |
msgstr "Hľadané slová"
|
1215 |
|
1216 |
-
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:
|
1217 |
msgid "Top Visitors Today"
|
1218 |
msgstr "Top návštevníci dnes"
|
1219 |
|
1220 |
-
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:
|
1221 |
msgid "Optimization"
|
1222 |
msgstr "Optimalizácia"
|
1223 |
|
1224 |
-
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:
|
1225 |
msgid "Manual"
|
1226 |
msgstr "Manuál"
|
1227 |
|
1228 |
-
#: wp-statistics/wp-statistics.php:
|
1229 |
msgid "Site"
|
1230 |
msgstr "Stránka"
|
1231 |
|
1232 |
-
#: wp-statistics/wp-statistics.php:
|
1233 |
msgid "Options"
|
1234 |
msgstr "Možnosti"
|
1235 |
|
1236 |
-
#: wp-statistics/wp-statistics.php:
|
1237 |
msgid "Today visitor"
|
1238 |
msgstr "Dnes návštevníkov"
|
1239 |
|
1240 |
-
#: wp-statistics/wp-statistics.php:
|
1241 |
msgid "Today visit"
|
1242 |
msgstr "Dnes navštíviť"
|
1243 |
|
1244 |
-
#: wp-statistics/wp-statistics.php:
|
1245 |
msgid "Yesterday visitor"
|
1246 |
msgstr "Včera návštevníkov"
|
1247 |
|
1248 |
-
#: wp-statistics/wp-statistics.php:
|
1249 |
msgid "View Stats"
|
1250 |
msgstr "Zobrazenie štatistiky"
|
1251 |
|
1252 |
-
#: wp-statistics/wp-statistics.php:
|
1253 |
msgid "Download ODF file"
|
1254 |
msgstr "Stiahnuť ODF súbor"
|
1255 |
|
1256 |
-
#: wp-statistics/wp-statistics.php:
|
1257 |
msgid "Download HTML file"
|
1258 |
msgstr "Stiahnuť súbor vo formáte HTML"
|
1259 |
|
1260 |
-
#: wp-statistics/wp-statistics.php:
|
1261 |
msgid "Manual file not found."
|
1262 |
msgstr "Súbor manuálu nebol nájdený."
|
1263 |
|
1264 |
-
#: wp-statistics/wp-statistics.php:
|
1265 |
-
#: wp-statistics/wp-statistics.php:
|
1266 |
msgid "You do not have sufficient permissions to access this page."
|
1267 |
msgstr "Nemáte dostatočné oprávnenia pre prístup k tejto stránke."
|
1268 |
|
@@ -1323,7 +1307,7 @@ msgstr "Rýchle štatistiky"
|
|
1323 |
msgid "Top 10 Browsers"
|
1324 |
msgstr "Top 10 prehliadačov"
|
1325 |
|
1326 |
-
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:
|
1327 |
msgid "Top 10 Countries"
|
1328 |
msgstr "Top 10 krajín"
|
1329 |
|
@@ -1337,36 +1321,36 @@ msgstr "Dnešná mapa návštevníkov"
|
|
1337 |
msgid "Hit Statistics"
|
1338 |
msgstr "Štatistiky zobrazenia"
|
1339 |
|
1340 |
-
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:
|
1341 |
msgid "Top 10 Pages"
|
1342 |
msgstr "Top 10 stránok"
|
1343 |
|
1344 |
#: wp-statistics/dashboard.php:62
|
1345 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1346 |
-
#: wp-statistics/wp-statistics.php:
|
1347 |
msgid "Recent Visitors"
|
1348 |
msgstr "Nedávni návštevníci"
|
1349 |
|
1350 |
#: wp-statistics/dashboard.php:63
|
1351 |
#: wp-statistics/includes/log/top-referring.php:59
|
1352 |
#: wp-statistics/includes/log/top-referring.php:81
|
1353 |
-
#: wp-statistics/wp-statistics.php:
|
1354 |
msgid "Top Referring Sites"
|
1355 |
msgstr "Top odkazujúce stránky"
|
1356 |
|
1357 |
#: wp-statistics/dashboard.php:64
|
1358 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1359 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1360 |
-
#: wp-statistics/wp-statistics.php:
|
1361 |
msgid "Search Engine Referrals"
|
1362 |
msgstr "Odkazovače vyhľadávača"
|
1363 |
|
1364 |
-
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:
|
1365 |
msgid "Summary"
|
1366 |
msgstr "Zhrnutie"
|
1367 |
|
1368 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1369 |
-
#: wp-statistics/wp-statistics.php:
|
1370 |
msgid "Latest Search Words"
|
1371 |
msgstr "Naposledy hľadané slová"
|
1372 |
|
@@ -1436,8 +1420,8 @@ msgid "Click to toggle"
|
|
1436 |
msgstr "Kliknutím prepnúť"
|
1437 |
|
1438 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1439 |
-
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:
|
1440 |
-
#: wp-statistics/wp-statistics.php:
|
1441 |
msgid "Browsers"
|
1442 |
msgstr "Prehliadače"
|
1443 |
|
@@ -1510,7 +1494,7 @@ msgstr "Vylúčené zobrazenia naposledy"
|
|
1510 |
#: wp-statistics/includes/log/exclusions.php:95
|
1511 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1512 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1513 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1514 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1515 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1516 |
msgid "days"
|
@@ -1525,18 +1509,18 @@ msgid "Hits Statistics Chart"
|
|
1525 |
msgstr "Graf štatistík zobrazení"
|
1526 |
|
1527 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1528 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1529 |
msgid "Hits in the last"
|
1530 |
msgstr "Zobrazenia posledých"
|
1531 |
|
1532 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1533 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1534 |
msgid "Number of visits and visitors"
|
1535 |
msgstr "Návštevy a návštevníci"
|
1536 |
|
1537 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1538 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1539 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1540 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1541 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1542 |
msgid "Visit"
|
@@ -1544,7 +1528,7 @@ msgstr "Návštev"
|
|
1544 |
|
1545 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1546 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1547 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1548 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1549 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1550 |
msgid "Visitor"
|
@@ -1747,7 +1731,7 @@ msgstr "Tento produkt obsahuje GeoLite2 údaje vytvorené MaxMind, dostupné z %
|
|
1747 |
msgid "Other"
|
1748 |
msgstr "Ostatné"
|
1749 |
|
1750 |
-
#: wp-statistics/wp-statistics.php:
|
1751 |
msgid "Today Visitors Map"
|
1752 |
msgstr "Dnešná mapa návštevníkov"
|
1753 |
|
@@ -1802,7 +1786,7 @@ msgstr "Čas: %s"
|
|
1802 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1803 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1804 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1805 |
-
#: wp-statistics/wp-statistics.php:
|
1806 |
msgid "Hits"
|
1807 |
msgstr "Zobrazenia"
|
1808 |
|
@@ -1821,7 +1805,7 @@ msgstr "Verzia"
|
|
1821 |
|
1822 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1823 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1824 |
-
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:
|
1825 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1826 |
msgid "Access denied!"
|
1827 |
msgstr "Prístup zamietnutý!"
|
@@ -1877,7 +1861,7 @@ msgstr "Index databázy"
|
|
1877 |
|
1878 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1879 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1880 |
-
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:
|
1881 |
msgid "Countries"
|
1882 |
msgstr "Krajiny"
|
1883 |
|
@@ -1962,7 +1946,7 @@ msgstr "Poznámka: Ako ste práve vyčistili databázu, musíte znova načítať
|
|
1962 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1963 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1964 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1965 |
-
#: wp-statistics/wp-statistics.php:
|
1966 |
msgid "Visitors"
|
1967 |
msgstr "Návštevníci"
|
1968 |
|
@@ -2464,7 +2448,7 @@ msgstr "Ak potrebujete viacej robustné riešenie na delegovanie prístupu, asi
|
|
2464 |
#: wp-statistics/includes/log/exclusions.php:197
|
2465 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2466 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2467 |
-
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:
|
2468 |
msgid "Exclusions"
|
2469 |
msgstr "Vylúčenia"
|
2470 |
|
@@ -2674,8 +2658,8 @@ msgstr "browscap použitie"
|
|
2674 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2675 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2676 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2677 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2678 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2679 |
msgid "Active"
|
2680 |
msgstr "Aktívne"
|
2681 |
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
10 |
+
"X-Generator: GlotPress/2.1.0\n"
|
11 |
+
"Language: sk\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
14 |
+
#: wp-statistics/ajax.php:215
|
15 |
msgid "No matching widget found!"
|
16 |
msgstr ""
|
17 |
|
47 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: wp-statistics/ajax.php:294
|
51 |
msgid "ERROR: Widget not found!"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: wp-statistics/dashboard.php:107 wp-statistics/editor.php:66
|
55 |
#: wp-statistics/includes/log/log.php:20
|
56 |
msgid "Loading..."
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: wp-statistics/dashboard.php:125 wp-statistics/editor.php:84
|
60 |
#: wp-statistics/includes/log/log.php:2
|
61 |
msgid "Reloading..."
|
62 |
msgstr ""
|
63 |
|
64 |
#: wp-statistics/includes/log/top-visitors.php:41
|
65 |
+
#: wp-statistics/wp-statistics.php:450
|
66 |
msgid "Top Visitors"
|
67 |
msgstr ""
|
68 |
|
159 |
msgid "online user tracking"
|
160 |
msgstr "on-line sledovanie používateľov"
|
161 |
|
162 |
+
#: wp-statistics/wp-statistics.php:791
|
163 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
164 |
msgstr "Nasledujúca tabuľka(ky) zásuvného modulu neexistuje v databáze, prosím, znova spustite inštaláčnú %s rutinu %s:"
|
165 |
|
623 |
|
624 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
625 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
626 |
+
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:532
|
627 |
msgid "Pages"
|
628 |
msgstr "Stránky"
|
629 |
|
893 |
|
894 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
895 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
896 |
+
#: wp-statistics/wp-statistics.php:637
|
897 |
msgid "User Online"
|
898 |
msgstr "Používateľ online"
|
899 |
|
965 |
msgid "Disable the page/post editor widget."
|
966 |
msgstr "Zakázať widget editora stránky/príspevku."
|
967 |
|
|
|
|
|
|
|
|
|
968 |
#: wp-statistics/includes/functions/functions.php:440
|
|
|
969 |
msgid "Google"
|
970 |
msgstr "Google"
|
971 |
|
972 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
973 |
msgid "Disable map"
|
974 |
msgstr "Zakázať mapu"
|
975 |
|
976 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
977 |
msgid "Disable the map display"
|
978 |
msgstr "Vypnúť zobrazovanie máp"
|
979 |
|
980 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:81
|
981 |
msgid "Get country location from Google"
|
982 |
msgstr "Získajte lokáciu krajiny z Google"
|
983 |
|
984 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:87
|
985 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
986 |
msgstr "Táto funkcia môže spôsobiť pri prezeraní štatistík pokles výkonu a je platná len ak je nastavený typ mapy na \"Google\"."
|
987 |
|
1035 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1036 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1037 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1038 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:96
|
1039 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1040 |
msgid "Update"
|
1041 |
msgstr "Aktualizácia"
|
1053 |
msgstr "Raz za 4 týždne"
|
1054 |
|
1055 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1056 |
+
#: wp-statistics/wp-statistics.php:485
|
1057 |
msgid "Statistics"
|
1058 |
msgstr "Štatistiky"
|
1059 |
|
1126 |
msgid "Items"
|
1127 |
msgstr "Položky"
|
1128 |
|
1129 |
+
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:662
|
1130 |
msgid "Yesterday visit"
|
1131 |
msgstr "Včera návštev"
|
1132 |
|
1151 |
msgstr "Kompletné štatistiky pre vaše WordPress stránky."
|
1152 |
|
1153 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1154 |
+
#: wp-statistics/wp-statistics.php:539
|
1155 |
msgid "Settings"
|
1156 |
msgstr "Nastavenia"
|
1157 |
|
1175 |
msgid "WP Statistics - Hits"
|
1176 |
msgstr "WP Statistics - hity"
|
1177 |
|
1178 |
+
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:488
|
1179 |
+
#: wp-statistics/wp-statistics.php:526
|
1180 |
msgid "Overview"
|
1181 |
msgstr "Prehľad"
|
1182 |
|
1183 |
+
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:531
|
1184 |
msgid "Online"
|
1185 |
msgstr "Online"
|
1186 |
|
1187 |
+
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:533
|
1188 |
msgid "Referrers"
|
1189 |
msgstr "Odkazovače"
|
1190 |
|
1191 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1192 |
+
#: wp-statistics/wp-statistics.php:534
|
1193 |
msgid "Searches"
|
1194 |
msgstr "Vyhľadávanie"
|
1195 |
|
1196 |
+
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:535
|
1197 |
msgid "Search Words"
|
1198 |
msgstr "Hľadané slová"
|
1199 |
|
1200 |
+
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:536
|
1201 |
msgid "Top Visitors Today"
|
1202 |
msgstr "Top návštevníci dnes"
|
1203 |
|
1204 |
+
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:538
|
1205 |
msgid "Optimization"
|
1206 |
msgstr "Optimalizácia"
|
1207 |
|
1208 |
+
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:502
|
1209 |
msgid "Manual"
|
1210 |
msgstr "Manuál"
|
1211 |
|
1212 |
+
#: wp-statistics/wp-statistics.php:517
|
1213 |
msgid "Site"
|
1214 |
msgstr "Stránka"
|
1215 |
|
1216 |
+
#: wp-statistics/wp-statistics.php:518
|
1217 |
msgid "Options"
|
1218 |
msgstr "Možnosti"
|
1219 |
|
1220 |
+
#: wp-statistics/wp-statistics.php:644
|
1221 |
msgid "Today visitor"
|
1222 |
msgstr "Dnes návštevníkov"
|
1223 |
|
1224 |
+
#: wp-statistics/wp-statistics.php:650
|
1225 |
msgid "Today visit"
|
1226 |
msgstr "Dnes navštíviť"
|
1227 |
|
1228 |
+
#: wp-statistics/wp-statistics.php:656
|
1229 |
msgid "Yesterday visitor"
|
1230 |
msgstr "Včera návštevníkov"
|
1231 |
|
1232 |
+
#: wp-statistics/wp-statistics.php:668
|
1233 |
msgid "View Stats"
|
1234 |
msgstr "Zobrazenie štatistiky"
|
1235 |
|
1236 |
+
#: wp-statistics/wp-statistics.php:692
|
1237 |
msgid "Download ODF file"
|
1238 |
msgstr "Stiahnuť ODF súbor"
|
1239 |
|
1240 |
+
#: wp-statistics/wp-statistics.php:693
|
1241 |
msgid "Download HTML file"
|
1242 |
msgstr "Stiahnuť súbor vo formáte HTML"
|
1243 |
|
1244 |
+
#: wp-statistics/wp-statistics.php:697
|
1245 |
msgid "Manual file not found."
|
1246 |
msgstr "Súbor manuálu nebol nájdený."
|
1247 |
|
1248 |
+
#: wp-statistics/wp-statistics.php:764 wp-statistics/wp-statistics.php:891
|
1249 |
+
#: wp-statistics/wp-statistics.php:926
|
1250 |
msgid "You do not have sufficient permissions to access this page."
|
1251 |
msgstr "Nemáte dostatočné oprávnenia pre prístup k tejto stránke."
|
1252 |
|
1307 |
msgid "Top 10 Browsers"
|
1308 |
msgstr "Top 10 prehliadačov"
|
1309 |
|
1310 |
+
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:471
|
1311 |
msgid "Top 10 Countries"
|
1312 |
msgstr "Top 10 krajín"
|
1313 |
|
1321 |
msgid "Hit Statistics"
|
1322 |
msgstr "Štatistiky zobrazenia"
|
1323 |
|
1324 |
+
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:461
|
1325 |
msgid "Top 10 Pages"
|
1326 |
msgstr "Top 10 stránok"
|
1327 |
|
1328 |
#: wp-statistics/dashboard.php:62
|
1329 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1330 |
+
#: wp-statistics/wp-statistics.php:453
|
1331 |
msgid "Recent Visitors"
|
1332 |
msgstr "Nedávni návštevníci"
|
1333 |
|
1334 |
#: wp-statistics/dashboard.php:63
|
1335 |
#: wp-statistics/includes/log/top-referring.php:59
|
1336 |
#: wp-statistics/includes/log/top-referring.php:81
|
1337 |
+
#: wp-statistics/wp-statistics.php:468
|
1338 |
msgid "Top Referring Sites"
|
1339 |
msgstr "Top odkazujúce stránky"
|
1340 |
|
1341 |
#: wp-statistics/dashboard.php:64
|
1342 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1343 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1344 |
+
#: wp-statistics/wp-statistics.php:451
|
1345 |
msgid "Search Engine Referrals"
|
1346 |
msgstr "Odkazovače vyhľadávača"
|
1347 |
|
1348 |
+
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:466
|
1349 |
msgid "Summary"
|
1350 |
msgstr "Zhrnutie"
|
1351 |
|
1352 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1353 |
+
#: wp-statistics/wp-statistics.php:452
|
1354 |
msgid "Latest Search Words"
|
1355 |
msgstr "Naposledy hľadané slová"
|
1356 |
|
1420 |
msgstr "Kliknutím prepnúť"
|
1421 |
|
1422 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1423 |
+
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:467
|
1424 |
+
#: wp-statistics/wp-statistics.php:527
|
1425 |
msgid "Browsers"
|
1426 |
msgstr "Prehliadače"
|
1427 |
|
1494 |
#: wp-statistics/includes/log/exclusions.php:95
|
1495 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1496 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1497 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1498 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1499 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1500 |
msgid "days"
|
1509 |
msgstr "Graf štatistík zobrazení"
|
1510 |
|
1511 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1512 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1513 |
msgid "Hits in the last"
|
1514 |
msgstr "Zobrazenia posledých"
|
1515 |
|
1516 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1517 |
+
#: wp-statistics/includes/log/widgets/hits.php:65
|
1518 |
msgid "Number of visits and visitors"
|
1519 |
msgstr "Návštevy a návštevníci"
|
1520 |
|
1521 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1522 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1523 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1524 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1525 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1526 |
msgid "Visit"
|
1528 |
|
1529 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1530 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1531 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1532 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1533 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1534 |
msgid "Visitor"
|
1731 |
msgid "Other"
|
1732 |
msgstr "Ostatné"
|
1733 |
|
1734 |
+
#: wp-statistics/wp-statistics.php:456
|
1735 |
msgid "Today Visitors Map"
|
1736 |
msgstr "Dnešná mapa návštevníkov"
|
1737 |
|
1786 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1787 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1788 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1789 |
+
#: wp-statistics/wp-statistics.php:530
|
1790 |
msgid "Hits"
|
1791 |
msgstr "Zobrazenia"
|
1792 |
|
1805 |
|
1806 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1807 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1808 |
+
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:297
|
1809 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1810 |
msgid "Access denied!"
|
1811 |
msgstr "Prístup zamietnutý!"
|
1861 |
|
1862 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1863 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1864 |
+
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:528
|
1865 |
msgid "Countries"
|
1866 |
msgstr "Krajiny"
|
1867 |
|
1946 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1947 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1948 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1949 |
+
#: wp-statistics/wp-statistics.php:537
|
1950 |
msgid "Visitors"
|
1951 |
msgstr "Návštevníci"
|
1952 |
|
2448 |
#: wp-statistics/includes/log/exclusions.php:197
|
2449 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2450 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2451 |
+
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:529
|
2452 |
msgid "Exclusions"
|
2453 |
msgstr "Vylúčenia"
|
2454 |
|
2658 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2659 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2660 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2661 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:74
|
2662 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:86
|
2663 |
msgid "Active"
|
2664 |
msgstr "Aktívne"
|
2665 |
|
languages/wp_statistics-sr_RS.mo
CHANGED
Binary file
|
languages/wp_statistics-sr_RS.po
CHANGED
@@ -7,10 +7,11 @@ msgstr ""
|
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
10 |
-
"X-Generator: GlotPress/1.0
|
|
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#: wp-statistics/ajax.php:
|
14 |
msgid "No matching widget found!"
|
15 |
msgstr ""
|
16 |
|
@@ -46,22 +47,22 @@ msgstr "Статистика је открила ПХП верзију %s кој
|
|
46 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
47 |
msgstr "Молимо контактирајте вашег хостинг провајдера за надоградњу на подржану верзију или онемогућите ВП Статистика како бисте уклонили ову поруку."
|
48 |
|
49 |
-
#: wp-statistics/ajax.php:
|
50 |
msgid "ERROR: Widget not found!"
|
51 |
msgstr "ГРЕШКА: Виџет није пронађен!"
|
52 |
|
53 |
-
#: wp-statistics/dashboard.php:
|
54 |
#: wp-statistics/includes/log/log.php:20
|
55 |
msgid "Loading..."
|
56 |
msgstr "Учитавање ..."
|
57 |
|
58 |
-
#: wp-statistics/dashboard.php:
|
59 |
#: wp-statistics/includes/log/log.php:2
|
60 |
msgid "Reloading..."
|
61 |
msgstr "Поновно учитавање..."
|
62 |
|
63 |
#: wp-statistics/includes/log/top-visitors.php:41
|
64 |
-
#: wp-statistics/wp-statistics.php:
|
65 |
msgid "Top Visitors"
|
66 |
msgstr "Топ Посетиоци"
|
67 |
|
@@ -158,7 +159,7 @@ msgstr "Праћење посета"
|
|
158 |
msgid "online user tracking"
|
159 |
msgstr "Праћење онлајн корисника"
|
160 |
|
161 |
-
#: wp-statistics/wp-statistics.php:
|
162 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
163 |
msgstr "Следећа табела/е додатака не постоји у бази података, поново покрените%s процес инсталације%s:"
|
164 |
|
@@ -622,7 +623,7 @@ msgstr "За сваког посетиоца броји се по неколик
|
|
622 |
|
623 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
624 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
625 |
-
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:
|
626 |
msgid "Pages"
|
627 |
msgstr "Странице"
|
628 |
|
@@ -892,7 +893,7 @@ msgstr ""
|
|
892 |
|
893 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
894 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
895 |
-
#: wp-statistics/wp-statistics.php:
|
896 |
msgid "User Online"
|
897 |
msgstr "Online korisnici"
|
898 |
|
@@ -964,40 +965,23 @@ msgstr ""
|
|
964 |
msgid "Disable the page/post editor widget."
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
968 |
-
msgid "Map type"
|
969 |
-
msgstr "Vrsta mape"
|
970 |
-
|
971 |
#: wp-statistics/includes/functions/functions.php:440
|
972 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
973 |
msgid "Google"
|
974 |
msgstr "Google"
|
975 |
|
976 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
977 |
-
msgid "JQVMap"
|
978 |
-
msgstr "JQVMap"
|
979 |
-
|
980 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:82
|
981 |
-
msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
|
982 |
-
msgstr "Opcija \"Google\" koristiće Google mape za prikazivanje nedavnih posetilaca (zahteva Google pristup). "
|
983 |
-
|
984 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:83
|
985 |
-
msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
|
986 |
-
msgstr "Opcija \"JQVMap\" koristiće JQVMap javascript mapiranje biblioteke za prikazivanje nedavnih posetilaca (ne zahteva eksterne servise)."
|
987 |
-
|
988 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:89
|
989 |
msgid "Disable map"
|
990 |
msgstr "Deaktiviraj mapu"
|
991 |
|
992 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
993 |
msgid "Disable the map display"
|
994 |
msgstr "Deaktiviraj prikaz mape"
|
995 |
|
996 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
997 |
msgid "Get country location from Google"
|
998 |
msgstr "Izlistaj lokaciju države sa Google mape"
|
999 |
|
1000 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1001 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
1002 |
msgstr "Ova funkcionalnost može izazvati pogoršanje performansi za vreme pregleda statistika. Validna je samo ako je vrsta mape podešena na \"Google\"."
|
1003 |
|
@@ -1051,7 +1035,7 @@ msgstr ""
|
|
1051 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1052 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1053 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1054 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1055 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1056 |
msgid "Update"
|
1057 |
msgstr "Ažuriraj"
|
@@ -1069,7 +1053,7 @@ msgid "Once Every 4 Weeks"
|
|
1069 |
msgstr "Jednom u 4 nedelje"
|
1070 |
|
1071 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1072 |
-
#: wp-statistics/wp-statistics.php:
|
1073 |
msgid "Statistics"
|
1074 |
msgstr "Statistike"
|
1075 |
|
@@ -1142,7 +1126,7 @@ msgstr "Naziv"
|
|
1142 |
msgid "Items"
|
1143 |
msgstr "Stavke"
|
1144 |
|
1145 |
-
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:
|
1146 |
msgid "Yesterday visit"
|
1147 |
msgstr "Jučerašnja poseta"
|
1148 |
|
@@ -1167,7 +1151,7 @@ msgid "Complete statistics for your WordPress site."
|
|
1167 |
msgstr "Kompletirajte statistiku za svoj WordPress site."
|
1168 |
|
1169 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1170 |
-
#: wp-statistics/wp-statistics.php:
|
1171 |
msgid "Settings"
|
1172 |
msgstr "Podešavanja"
|
1173 |
|
@@ -1191,78 +1175,78 @@ msgstr "Ocenite ovaj plugin"
|
|
1191 |
msgid "WP Statistics - Hits"
|
1192 |
msgstr "WP Statistics - Zahtevi"
|
1193 |
|
1194 |
-
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:
|
1195 |
-
#: wp-statistics/wp-statistics.php:
|
1196 |
msgid "Overview"
|
1197 |
msgstr "Pregled"
|
1198 |
|
1199 |
-
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:
|
1200 |
msgid "Online"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:
|
1204 |
msgid "Referrers"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1208 |
-
#: wp-statistics/wp-statistics.php:
|
1209 |
msgid "Searches"
|
1210 |
msgstr "Pretrage"
|
1211 |
|
1212 |
-
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:
|
1213 |
msgid "Search Words"
|
1214 |
msgstr "Reči za pretragu"
|
1215 |
|
1216 |
-
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:
|
1217 |
msgid "Top Visitors Today"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
-
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:
|
1221 |
msgid "Optimization"
|
1222 |
msgstr "Optimizacija"
|
1223 |
|
1224 |
-
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:
|
1225 |
msgid "Manual"
|
1226 |
msgstr "Uputstvo"
|
1227 |
|
1228 |
-
#: wp-statistics/wp-statistics.php:
|
1229 |
msgid "Site"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
-
#: wp-statistics/wp-statistics.php:
|
1233 |
msgid "Options"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
-
#: wp-statistics/wp-statistics.php:
|
1237 |
msgid "Today visitor"
|
1238 |
msgstr "Broj posetilaca danas"
|
1239 |
|
1240 |
-
#: wp-statistics/wp-statistics.php:
|
1241 |
msgid "Today visit"
|
1242 |
msgstr "Broj poseta danas"
|
1243 |
|
1244 |
-
#: wp-statistics/wp-statistics.php:
|
1245 |
msgid "Yesterday visitor"
|
1246 |
msgstr "Broj poseta juče"
|
1247 |
|
1248 |
-
#: wp-statistics/wp-statistics.php:
|
1249 |
msgid "View Stats"
|
1250 |
msgstr "Vidi statistiku"
|
1251 |
|
1252 |
-
#: wp-statistics/wp-statistics.php:
|
1253 |
msgid "Download ODF file"
|
1254 |
msgstr "Preuzmi ODF datoteku"
|
1255 |
|
1256 |
-
#: wp-statistics/wp-statistics.php:
|
1257 |
msgid "Download HTML file"
|
1258 |
msgstr "Preuzmi HTML datoteku"
|
1259 |
|
1260 |
-
#: wp-statistics/wp-statistics.php:
|
1261 |
msgid "Manual file not found."
|
1262 |
msgstr "Datoteka sa uputstvom nije pronađena"
|
1263 |
|
1264 |
-
#: wp-statistics/wp-statistics.php:
|
1265 |
-
#: wp-statistics/wp-statistics.php:
|
1266 |
msgid "You do not have sufficient permissions to access this page."
|
1267 |
msgstr "Nemate odgovarajuće dozvole za pristup ovoj stranici"
|
1268 |
|
@@ -1323,7 +1307,7 @@ msgstr ""
|
|
1323 |
msgid "Top 10 Browsers"
|
1324 |
msgstr "10 vrhunskih pretraživača"
|
1325 |
|
1326 |
-
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:
|
1327 |
msgid "Top 10 Countries"
|
1328 |
msgstr "Prvih 10 zemalja"
|
1329 |
|
@@ -1337,36 +1321,36 @@ msgstr ""
|
|
1337 |
msgid "Hit Statistics"
|
1338 |
msgstr "Statistika zahteva"
|
1339 |
|
1340 |
-
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:
|
1341 |
msgid "Top 10 Pages"
|
1342 |
msgstr "Prvih 10 stranica"
|
1343 |
|
1344 |
#: wp-statistics/dashboard.php:62
|
1345 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1346 |
-
#: wp-statistics/wp-statistics.php:
|
1347 |
msgid "Recent Visitors"
|
1348 |
msgstr "Nedavni posetioci"
|
1349 |
|
1350 |
#: wp-statistics/dashboard.php:63
|
1351 |
#: wp-statistics/includes/log/top-referring.php:59
|
1352 |
#: wp-statistics/includes/log/top-referring.php:81
|
1353 |
-
#: wp-statistics/wp-statistics.php:
|
1354 |
msgid "Top Referring Sites"
|
1355 |
msgstr "Site-ovi sa najvećim brojem uputa"
|
1356 |
|
1357 |
#: wp-statistics/dashboard.php:64
|
1358 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1359 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1360 |
-
#: wp-statistics/wp-statistics.php:
|
1361 |
msgid "Search Engine Referrals"
|
1362 |
msgstr "Uputi pretraživača"
|
1363 |
|
1364 |
-
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:
|
1365 |
msgid "Summary"
|
1366 |
msgstr "Kratak pregled"
|
1367 |
|
1368 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1369 |
-
#: wp-statistics/wp-statistics.php:
|
1370 |
msgid "Latest Search Words"
|
1371 |
msgstr "Poslednje reči u pretrazi"
|
1372 |
|
@@ -1436,8 +1420,8 @@ msgid "Click to toggle"
|
|
1436 |
msgstr "Klikni za aktiviranje/deaktiviranje"
|
1437 |
|
1438 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1439 |
-
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:
|
1440 |
-
#: wp-statistics/wp-statistics.php:
|
1441 |
msgid "Browsers"
|
1442 |
msgstr "Pretraživači"
|
1443 |
|
@@ -1510,7 +1494,7 @@ msgstr "Broj izuzetih zahteva u poslednjih:"
|
|
1510 |
#: wp-statistics/includes/log/exclusions.php:95
|
1511 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1512 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1513 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1514 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1515 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1516 |
msgid "days"
|
@@ -1525,18 +1509,18 @@ msgid "Hits Statistics Chart"
|
|
1525 |
msgstr "Statistička karta zahteva"
|
1526 |
|
1527 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1528 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1529 |
msgid "Hits in the last"
|
1530 |
msgstr "Broja zahteva u poslednjih"
|
1531 |
|
1532 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1533 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1534 |
msgid "Number of visits and visitors"
|
1535 |
msgstr "Broj poseta i posetilaca"
|
1536 |
|
1537 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1538 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1539 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1540 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1541 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1542 |
msgid "Visit"
|
@@ -1544,7 +1528,7 @@ msgstr "Poseta"
|
|
1544 |
|
1545 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1546 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1547 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1548 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1549 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1550 |
msgid "Visitor"
|
@@ -1747,7 +1731,7 @@ msgstr "Ovaj proizvod sadrži GeoLite2 podatke koje je kreirao MaxMind, raspolo
|
|
1747 |
msgid "Other"
|
1748 |
msgstr "Ostali"
|
1749 |
|
1750 |
-
#: wp-statistics/wp-statistics.php:
|
1751 |
msgid "Today Visitors Map"
|
1752 |
msgstr "Mapa današnjih posetilaca"
|
1753 |
|
@@ -1802,7 +1786,7 @@ msgstr "Тиме: %s подаци"
|
|
1802 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1803 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1804 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1805 |
-
#: wp-statistics/wp-statistics.php:
|
1806 |
msgid "Hits"
|
1807 |
msgstr "Zahtevi"
|
1808 |
|
@@ -1821,7 +1805,7 @@ msgstr ""
|
|
1821 |
|
1822 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1823 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1824 |
-
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:
|
1825 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1826 |
msgid "Access denied!"
|
1827 |
msgstr "Pristup odbijen"
|
@@ -1877,7 +1861,7 @@ msgstr "Indeks baze podataka"
|
|
1877 |
|
1878 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1879 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1880 |
-
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:
|
1881 |
msgid "Countries"
|
1882 |
msgstr "Države"
|
1883 |
|
@@ -1962,7 +1946,7 @@ msgstr ""
|
|
1962 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1963 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1964 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1965 |
-
#: wp-statistics/wp-statistics.php:
|
1966 |
msgid "Visitors"
|
1967 |
msgstr "Posetioci"
|
1968 |
|
@@ -2464,7 +2448,7 @@ msgstr "Ako vam je potrebno striktnije rešenje za raspodelu pristupa, možda ć
|
|
2464 |
#: wp-statistics/includes/log/exclusions.php:197
|
2465 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2466 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2467 |
-
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:
|
2468 |
msgid "Exclusions"
|
2469 |
msgstr "Izuzeci"
|
2470 |
|
@@ -2674,8 +2658,8 @@ msgstr "бровсцап Употреба"
|
|
2674 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2675 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2676 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2677 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2678 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2679 |
msgid "Active"
|
2680 |
msgstr "Aktivan"
|
2681 |
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
10 |
+
"X-Generator: GlotPress/2.1.0\n"
|
11 |
+
"Language: sr_RS\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
14 |
+
#: wp-statistics/ajax.php:215
|
15 |
msgid "No matching widget found!"
|
16 |
msgstr ""
|
17 |
|
47 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
48 |
msgstr "Молимо контактирајте вашег хостинг провајдера за надоградњу на подржану верзију или онемогућите ВП Статистика како бисте уклонили ову поруку."
|
49 |
|
50 |
+
#: wp-statistics/ajax.php:294
|
51 |
msgid "ERROR: Widget not found!"
|
52 |
msgstr "ГРЕШКА: Виџет није пронађен!"
|
53 |
|
54 |
+
#: wp-statistics/dashboard.php:107 wp-statistics/editor.php:66
|
55 |
#: wp-statistics/includes/log/log.php:20
|
56 |
msgid "Loading..."
|
57 |
msgstr "Учитавање ..."
|
58 |
|
59 |
+
#: wp-statistics/dashboard.php:125 wp-statistics/editor.php:84
|
60 |
#: wp-statistics/includes/log/log.php:2
|
61 |
msgid "Reloading..."
|
62 |
msgstr "Поновно учитавање..."
|
63 |
|
64 |
#: wp-statistics/includes/log/top-visitors.php:41
|
65 |
+
#: wp-statistics/wp-statistics.php:450
|
66 |
msgid "Top Visitors"
|
67 |
msgstr "Топ Посетиоци"
|
68 |
|
159 |
msgid "online user tracking"
|
160 |
msgstr "Праћење онлајн корисника"
|
161 |
|
162 |
+
#: wp-statistics/wp-statistics.php:791
|
163 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
164 |
msgstr "Следећа табела/е додатака не постоји у бази података, поново покрените%s процес инсталације%s:"
|
165 |
|
623 |
|
624 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
625 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
626 |
+
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:532
|
627 |
msgid "Pages"
|
628 |
msgstr "Странице"
|
629 |
|
893 |
|
894 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
895 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
896 |
+
#: wp-statistics/wp-statistics.php:637
|
897 |
msgid "User Online"
|
898 |
msgstr "Online korisnici"
|
899 |
|
965 |
msgid "Disable the page/post editor widget."
|
966 |
msgstr ""
|
967 |
|
|
|
|
|
|
|
|
|
968 |
#: wp-statistics/includes/functions/functions.php:440
|
|
|
969 |
msgid "Google"
|
970 |
msgstr "Google"
|
971 |
|
972 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
973 |
msgid "Disable map"
|
974 |
msgstr "Deaktiviraj mapu"
|
975 |
|
976 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
977 |
msgid "Disable the map display"
|
978 |
msgstr "Deaktiviraj prikaz mape"
|
979 |
|
980 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:81
|
981 |
msgid "Get country location from Google"
|
982 |
msgstr "Izlistaj lokaciju države sa Google mape"
|
983 |
|
984 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:87
|
985 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
986 |
msgstr "Ova funkcionalnost može izazvati pogoršanje performansi za vreme pregleda statistika. Validna je samo ako je vrsta mape podešena na \"Google\"."
|
987 |
|
1035 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1036 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1037 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1038 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:96
|
1039 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1040 |
msgid "Update"
|
1041 |
msgstr "Ažuriraj"
|
1053 |
msgstr "Jednom u 4 nedelje"
|
1054 |
|
1055 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1056 |
+
#: wp-statistics/wp-statistics.php:485
|
1057 |
msgid "Statistics"
|
1058 |
msgstr "Statistike"
|
1059 |
|
1126 |
msgid "Items"
|
1127 |
msgstr "Stavke"
|
1128 |
|
1129 |
+
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:662
|
1130 |
msgid "Yesterday visit"
|
1131 |
msgstr "Jučerašnja poseta"
|
1132 |
|
1151 |
msgstr "Kompletirajte statistiku za svoj WordPress site."
|
1152 |
|
1153 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1154 |
+
#: wp-statistics/wp-statistics.php:539
|
1155 |
msgid "Settings"
|
1156 |
msgstr "Podešavanja"
|
1157 |
|
1175 |
msgid "WP Statistics - Hits"
|
1176 |
msgstr "WP Statistics - Zahtevi"
|
1177 |
|
1178 |
+
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:488
|
1179 |
+
#: wp-statistics/wp-statistics.php:526
|
1180 |
msgid "Overview"
|
1181 |
msgstr "Pregled"
|
1182 |
|
1183 |
+
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:531
|
1184 |
msgid "Online"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:533
|
1188 |
msgid "Referrers"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1192 |
+
#: wp-statistics/wp-statistics.php:534
|
1193 |
msgid "Searches"
|
1194 |
msgstr "Pretrage"
|
1195 |
|
1196 |
+
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:535
|
1197 |
msgid "Search Words"
|
1198 |
msgstr "Reči za pretragu"
|
1199 |
|
1200 |
+
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:536
|
1201 |
msgid "Top Visitors Today"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
+
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:538
|
1205 |
msgid "Optimization"
|
1206 |
msgstr "Optimizacija"
|
1207 |
|
1208 |
+
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:502
|
1209 |
msgid "Manual"
|
1210 |
msgstr "Uputstvo"
|
1211 |
|
1212 |
+
#: wp-statistics/wp-statistics.php:517
|
1213 |
msgid "Site"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
+
#: wp-statistics/wp-statistics.php:518
|
1217 |
msgid "Options"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
+
#: wp-statistics/wp-statistics.php:644
|
1221 |
msgid "Today visitor"
|
1222 |
msgstr "Broj posetilaca danas"
|
1223 |
|
1224 |
+
#: wp-statistics/wp-statistics.php:650
|
1225 |
msgid "Today visit"
|
1226 |
msgstr "Broj poseta danas"
|
1227 |
|
1228 |
+
#: wp-statistics/wp-statistics.php:656
|
1229 |
msgid "Yesterday visitor"
|
1230 |
msgstr "Broj poseta juče"
|
1231 |
|
1232 |
+
#: wp-statistics/wp-statistics.php:668
|
1233 |
msgid "View Stats"
|
1234 |
msgstr "Vidi statistiku"
|
1235 |
|
1236 |
+
#: wp-statistics/wp-statistics.php:692
|
1237 |
msgid "Download ODF file"
|
1238 |
msgstr "Preuzmi ODF datoteku"
|
1239 |
|
1240 |
+
#: wp-statistics/wp-statistics.php:693
|
1241 |
msgid "Download HTML file"
|
1242 |
msgstr "Preuzmi HTML datoteku"
|
1243 |
|
1244 |
+
#: wp-statistics/wp-statistics.php:697
|
1245 |
msgid "Manual file not found."
|
1246 |
msgstr "Datoteka sa uputstvom nije pronađena"
|
1247 |
|
1248 |
+
#: wp-statistics/wp-statistics.php:764 wp-statistics/wp-statistics.php:891
|
1249 |
+
#: wp-statistics/wp-statistics.php:926
|
1250 |
msgid "You do not have sufficient permissions to access this page."
|
1251 |
msgstr "Nemate odgovarajuće dozvole za pristup ovoj stranici"
|
1252 |
|
1307 |
msgid "Top 10 Browsers"
|
1308 |
msgstr "10 vrhunskih pretraživača"
|
1309 |
|
1310 |
+
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:471
|
1311 |
msgid "Top 10 Countries"
|
1312 |
msgstr "Prvih 10 zemalja"
|
1313 |
|
1321 |
msgid "Hit Statistics"
|
1322 |
msgstr "Statistika zahteva"
|
1323 |
|
1324 |
+
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:461
|
1325 |
msgid "Top 10 Pages"
|
1326 |
msgstr "Prvih 10 stranica"
|
1327 |
|
1328 |
#: wp-statistics/dashboard.php:62
|
1329 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1330 |
+
#: wp-statistics/wp-statistics.php:453
|
1331 |
msgid "Recent Visitors"
|
1332 |
msgstr "Nedavni posetioci"
|
1333 |
|
1334 |
#: wp-statistics/dashboard.php:63
|
1335 |
#: wp-statistics/includes/log/top-referring.php:59
|
1336 |
#: wp-statistics/includes/log/top-referring.php:81
|
1337 |
+
#: wp-statistics/wp-statistics.php:468
|
1338 |
msgid "Top Referring Sites"
|
1339 |
msgstr "Site-ovi sa najvećim brojem uputa"
|
1340 |
|
1341 |
#: wp-statistics/dashboard.php:64
|
1342 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1343 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1344 |
+
#: wp-statistics/wp-statistics.php:451
|
1345 |
msgid "Search Engine Referrals"
|
1346 |
msgstr "Uputi pretraživača"
|
1347 |
|
1348 |
+
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:466
|
1349 |
msgid "Summary"
|
1350 |
msgstr "Kratak pregled"
|
1351 |
|
1352 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1353 |
+
#: wp-statistics/wp-statistics.php:452
|
1354 |
msgid "Latest Search Words"
|
1355 |
msgstr "Poslednje reči u pretrazi"
|
1356 |
|
1420 |
msgstr "Klikni za aktiviranje/deaktiviranje"
|
1421 |
|
1422 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1423 |
+
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:467
|
1424 |
+
#: wp-statistics/wp-statistics.php:527
|
1425 |
msgid "Browsers"
|
1426 |
msgstr "Pretraživači"
|
1427 |
|
1494 |
#: wp-statistics/includes/log/exclusions.php:95
|
1495 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1496 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1497 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1498 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1499 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1500 |
msgid "days"
|
1509 |
msgstr "Statistička karta zahteva"
|
1510 |
|
1511 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1512 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1513 |
msgid "Hits in the last"
|
1514 |
msgstr "Broja zahteva u poslednjih"
|
1515 |
|
1516 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1517 |
+
#: wp-statistics/includes/log/widgets/hits.php:65
|
1518 |
msgid "Number of visits and visitors"
|
1519 |
msgstr "Broj poseta i posetilaca"
|
1520 |
|
1521 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1522 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1523 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1524 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1525 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1526 |
msgid "Visit"
|
1528 |
|
1529 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1530 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1531 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1532 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1533 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1534 |
msgid "Visitor"
|
1731 |
msgid "Other"
|
1732 |
msgstr "Ostali"
|
1733 |
|
1734 |
+
#: wp-statistics/wp-statistics.php:456
|
1735 |
msgid "Today Visitors Map"
|
1736 |
msgstr "Mapa današnjih posetilaca"
|
1737 |
|
1786 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1787 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1788 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1789 |
+
#: wp-statistics/wp-statistics.php:530
|
1790 |
msgid "Hits"
|
1791 |
msgstr "Zahtevi"
|
1792 |
|
1805 |
|
1806 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1807 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1808 |
+
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:297
|
1809 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1810 |
msgid "Access denied!"
|
1811 |
msgstr "Pristup odbijen"
|
1861 |
|
1862 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1863 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1864 |
+
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:528
|
1865 |
msgid "Countries"
|
1866 |
msgstr "Države"
|
1867 |
|
1946 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1947 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1948 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1949 |
+
#: wp-statistics/wp-statistics.php:537
|
1950 |
msgid "Visitors"
|
1951 |
msgstr "Posetioci"
|
1952 |
|
2448 |
#: wp-statistics/includes/log/exclusions.php:197
|
2449 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2450 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2451 |
+
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:529
|
2452 |
msgid "Exclusions"
|
2453 |
msgstr "Izuzeci"
|
2454 |
|
2658 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2659 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2660 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2661 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:74
|
2662 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:86
|
2663 |
msgid "Active"
|
2664 |
msgstr "Aktivan"
|
2665 |
|
languages/wp_statistics-sv_SE.mo
CHANGED
Binary file
|
languages/wp_statistics-sv_SE.po
CHANGED
@@ -7,10 +7,11 @@ msgstr ""
|
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
-
"X-Generator: GlotPress/1.0
|
|
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#: wp-statistics/ajax.php:
|
14 |
msgid "No matching widget found!"
|
15 |
msgstr "Hittar ingen widget som pasar in!"
|
16 |
|
@@ -46,22 +47,22 @@ msgstr "WP Statistics har detekterat PHP-version %s, som inte stöds, förutsät
|
|
46 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
47 |
msgstr "Kontakta serverleverantören för uppgradering till en version som stöds eller inaktivera WP Statistics för att stänga av det här meddelandet."
|
48 |
|
49 |
-
#: wp-statistics/ajax.php:
|
50 |
msgid "ERROR: Widget not found!"
|
51 |
msgstr "FEL: Widget hittas inte!"
|
52 |
|
53 |
-
#: wp-statistics/dashboard.php:
|
54 |
#: wp-statistics/includes/log/log.php:20
|
55 |
msgid "Loading..."
|
56 |
msgstr "Laddar..."
|
57 |
|
58 |
-
#: wp-statistics/dashboard.php:
|
59 |
#: wp-statistics/includes/log/log.php:2
|
60 |
msgid "Reloading..."
|
61 |
msgstr "Ny laddning..."
|
62 |
|
63 |
#: wp-statistics/includes/log/top-visitors.php:41
|
64 |
-
#: wp-statistics/wp-statistics.php:
|
65 |
msgid "Top Visitors"
|
66 |
msgstr "Mest populära besökare"
|
67 |
|
@@ -158,7 +159,7 @@ msgstr "spårning av träff"
|
|
158 |
msgid "online user tracking"
|
159 |
msgstr "spårning av uppkopplade användare "
|
160 |
|
161 |
-
#: wp-statistics/wp-statistics.php:
|
162 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
163 |
msgstr "Följande tilläggstabell(er) saknas i databasen, vänligen kör %s installeringsrutin %s:"
|
164 |
|
@@ -622,7 +623,7 @@ msgstr "Faktor för varje besök vid flera träffar. För närvarande %s."
|
|
622 |
|
623 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
624 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
625 |
-
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:
|
626 |
msgid "Pages"
|
627 |
msgstr "Sidor"
|
628 |
|
@@ -892,7 +893,7 @@ msgstr "Använd \"shortcode\" som stöds i WordPress för att ange innehållet.
|
|
892 |
|
893 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
894 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
895 |
-
#: wp-statistics/wp-statistics.php:
|
896 |
msgid "User Online"
|
897 |
msgstr "Uppkopplade användare"
|
898 |
|
@@ -964,40 +965,23 @@ msgstr "Inga redigerings-widget"
|
|
964 |
msgid "Disable the page/post editor widget."
|
965 |
msgstr "Inaktivera eventuellt redigerings-widget."
|
966 |
|
967 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
968 |
-
msgid "Map type"
|
969 |
-
msgstr "Karttyp"
|
970 |
-
|
971 |
#: wp-statistics/includes/functions/functions.php:440
|
972 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
973 |
msgid "Google"
|
974 |
msgstr "Google"
|
975 |
|
976 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
977 |
-
msgid "JQVMap"
|
978 |
-
msgstr "JQVMap"
|
979 |
-
|
980 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:82
|
981 |
-
msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
|
982 |
-
msgstr "Google-alternativet använder Googles karttjänst för att lokalisera de senaste besökarna (förutsätter tillgång till Google)."
|
983 |
-
|
984 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:83
|
985 |
-
msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
|
986 |
-
msgstr "JQVMap-alternativet använder JQVMap-javascripts kartbibliotek för att lokalisera de senaste besökarna (förutsätter inga externa tjänster)."
|
987 |
-
|
988 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:89
|
989 |
msgid "Disable map"
|
990 |
msgstr "Ta bort karta"
|
991 |
|
992 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
993 |
msgid "Disable the map display"
|
994 |
msgstr "Inga kartor visas"
|
995 |
|
996 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
997 |
msgid "Get country location from Google"
|
998 |
msgstr "Lokalisera landet via Google"
|
999 |
|
1000 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1001 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
1002 |
msgstr "Denna funktion kan innebära långsammare visning av statistiken och fungerar bara om karttypen är inställd på Google-alternativet."
|
1003 |
|
@@ -1051,7 +1035,7 @@ msgstr "Radering"
|
|
1051 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1052 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1053 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1054 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1055 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1056 |
msgid "Update"
|
1057 |
msgstr "Uppdatering"
|
@@ -1069,7 +1053,7 @@ msgid "Once Every 4 Weeks"
|
|
1069 |
msgstr "Var fjärde vecka"
|
1070 |
|
1071 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1072 |
-
#: wp-statistics/wp-statistics.php:
|
1073 |
msgid "Statistics"
|
1074 |
msgstr "Statistik"
|
1075 |
|
@@ -1142,7 +1126,7 @@ msgstr "Namn"
|
|
1142 |
msgid "Items"
|
1143 |
msgstr "Enheter"
|
1144 |
|
1145 |
-
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:
|
1146 |
msgid "Yesterday visit"
|
1147 |
msgstr "Besök igår"
|
1148 |
|
@@ -1167,7 +1151,7 @@ msgid "Complete statistics for your WordPress site."
|
|
1167 |
msgstr "Komplett statistik för din Wordpress-sajt."
|
1168 |
|
1169 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1170 |
-
#: wp-statistics/wp-statistics.php:
|
1171 |
msgid "Settings"
|
1172 |
msgstr "Inställningar"
|
1173 |
|
@@ -1191,78 +1175,78 @@ msgstr "Betygsätt detta tillägg"
|
|
1191 |
msgid "WP Statistics - Hits"
|
1192 |
msgstr "WP Statistics - träffar"
|
1193 |
|
1194 |
-
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:
|
1195 |
-
#: wp-statistics/wp-statistics.php:
|
1196 |
msgid "Overview"
|
1197 |
msgstr "Översikt"
|
1198 |
|
1199 |
-
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:
|
1200 |
msgid "Online"
|
1201 |
msgstr "Uppkopplingar"
|
1202 |
|
1203 |
-
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:
|
1204 |
msgid "Referrers"
|
1205 |
msgstr "Länkreferenser"
|
1206 |
|
1207 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1208 |
-
#: wp-statistics/wp-statistics.php:
|
1209 |
msgid "Searches"
|
1210 |
msgstr "Sökningar"
|
1211 |
|
1212 |
-
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:
|
1213 |
msgid "Search Words"
|
1214 |
msgstr "Sökord"
|
1215 |
|
1216 |
-
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:
|
1217 |
msgid "Top Visitors Today"
|
1218 |
msgstr "Besökartopp idag"
|
1219 |
|
1220 |
-
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:
|
1221 |
msgid "Optimization"
|
1222 |
msgstr "Optimering"
|
1223 |
|
1224 |
-
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:
|
1225 |
msgid "Manual"
|
1226 |
msgstr "Manual"
|
1227 |
|
1228 |
-
#: wp-statistics/wp-statistics.php:
|
1229 |
msgid "Site"
|
1230 |
msgstr "Sajt"
|
1231 |
|
1232 |
-
#: wp-statistics/wp-statistics.php:
|
1233 |
msgid "Options"
|
1234 |
msgstr "Alternativ"
|
1235 |
|
1236 |
-
#: wp-statistics/wp-statistics.php:
|
1237 |
msgid "Today visitor"
|
1238 |
msgstr "Besökare idag"
|
1239 |
|
1240 |
-
#: wp-statistics/wp-statistics.php:
|
1241 |
msgid "Today visit"
|
1242 |
msgstr "Besök idag"
|
1243 |
|
1244 |
-
#: wp-statistics/wp-statistics.php:
|
1245 |
msgid "Yesterday visitor"
|
1246 |
msgstr "Besökare igår"
|
1247 |
|
1248 |
-
#: wp-statistics/wp-statistics.php:
|
1249 |
msgid "View Stats"
|
1250 |
msgstr "Visa statistik"
|
1251 |
|
1252 |
-
#: wp-statistics/wp-statistics.php:
|
1253 |
msgid "Download ODF file"
|
1254 |
msgstr "Hämta ODF-fil"
|
1255 |
|
1256 |
-
#: wp-statistics/wp-statistics.php:
|
1257 |
msgid "Download HTML file"
|
1258 |
msgstr "Hämta HTML-fil"
|
1259 |
|
1260 |
-
#: wp-statistics/wp-statistics.php:
|
1261 |
msgid "Manual file not found."
|
1262 |
msgstr "Manualfilen hittades inte."
|
1263 |
|
1264 |
-
#: wp-statistics/wp-statistics.php:
|
1265 |
-
#: wp-statistics/wp-statistics.php:
|
1266 |
msgid "You do not have sufficient permissions to access this page."
|
1267 |
msgstr "Du har inte behörighet för åtkomst till den här sidan."
|
1268 |
|
@@ -1323,7 +1307,7 @@ msgstr "Snabbstatistik"
|
|
1323 |
msgid "Top 10 Browsers"
|
1324 |
msgstr "Webbläsarnas 10 i topp"
|
1325 |
|
1326 |
-
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:
|
1327 |
msgid "Top 10 Countries"
|
1328 |
msgstr "Länders 10 i topp"
|
1329 |
|
@@ -1337,36 +1321,36 @@ msgstr "Dagens besökskarta"
|
|
1337 |
msgid "Hit Statistics"
|
1338 |
msgstr "Träffstatistik"
|
1339 |
|
1340 |
-
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:
|
1341 |
msgid "Top 10 Pages"
|
1342 |
msgstr "Mest besökta sidor"
|
1343 |
|
1344 |
#: wp-statistics/dashboard.php:62
|
1345 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1346 |
-
#: wp-statistics/wp-statistics.php:
|
1347 |
msgid "Recent Visitors"
|
1348 |
msgstr "Senaste besökarna"
|
1349 |
|
1350 |
#: wp-statistics/dashboard.php:63
|
1351 |
#: wp-statistics/includes/log/top-referring.php:59
|
1352 |
#: wp-statistics/includes/log/top-referring.php:81
|
1353 |
-
#: wp-statistics/wp-statistics.php:
|
1354 |
msgid "Top Referring Sites"
|
1355 |
msgstr "Länkkällornas 10 i topp"
|
1356 |
|
1357 |
#: wp-statistics/dashboard.php:64
|
1358 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1359 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1360 |
-
#: wp-statistics/wp-statistics.php:
|
1361 |
msgid "Search Engine Referrals"
|
1362 |
msgstr "Sökmotorlänkningar"
|
1363 |
|
1364 |
-
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:
|
1365 |
msgid "Summary"
|
1366 |
msgstr "Sammanfattning"
|
1367 |
|
1368 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1369 |
-
#: wp-statistics/wp-statistics.php:
|
1370 |
msgid "Latest Search Words"
|
1371 |
msgstr "Senaste sökorden"
|
1372 |
|
@@ -1436,8 +1420,8 @@ msgid "Click to toggle"
|
|
1436 |
msgstr "Klicka för att växla"
|
1437 |
|
1438 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1439 |
-
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:
|
1440 |
-
#: wp-statistics/wp-statistics.php:
|
1441 |
msgid "Browsers"
|
1442 |
msgstr "Webbläsare"
|
1443 |
|
@@ -1510,7 +1494,7 @@ msgstr "Uteslutna träffar under de senaste"
|
|
1510 |
#: wp-statistics/includes/log/exclusions.php:95
|
1511 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1512 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1513 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1514 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1515 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1516 |
msgid "days"
|
@@ -1525,18 +1509,18 @@ msgid "Hits Statistics Chart"
|
|
1525 |
msgstr "Statistik över träffar"
|
1526 |
|
1527 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1528 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1529 |
msgid "Hits in the last"
|
1530 |
msgstr "Träffar under de senaste"
|
1531 |
|
1532 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1533 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1534 |
msgid "Number of visits and visitors"
|
1535 |
msgstr "Antal besök och besökare"
|
1536 |
|
1537 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1538 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1539 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1540 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1541 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1542 |
msgid "Visit"
|
@@ -1544,7 +1528,7 @@ msgstr "Besök"
|
|
1544 |
|
1545 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1546 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1547 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1548 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1549 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1550 |
msgid "Visitor"
|
@@ -1747,7 +1731,7 @@ msgstr "Denna produkt använder data från GeoLite2 skapat av MaxMind, tillgäng
|
|
1747 |
msgid "Other"
|
1748 |
msgstr "Annat"
|
1749 |
|
1750 |
-
#: wp-statistics/wp-statistics.php:
|
1751 |
msgid "Today Visitors Map"
|
1752 |
msgstr "Karta över dagens besökare"
|
1753 |
|
@@ -1802,7 +1786,7 @@ msgstr "Tid:%s"
|
|
1802 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1803 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1804 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1805 |
-
#: wp-statistics/wp-statistics.php:
|
1806 |
msgid "Hits"
|
1807 |
msgstr "Träffar"
|
1808 |
|
@@ -1821,7 +1805,7 @@ msgstr "Version"
|
|
1821 |
|
1822 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1823 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1824 |
-
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:
|
1825 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1826 |
msgid "Access denied!"
|
1827 |
msgstr "Åtkomst nekad!"
|
@@ -1877,7 +1861,7 @@ msgstr "Databasindex"
|
|
1877 |
|
1878 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1879 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1880 |
-
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:
|
1881 |
msgid "Countries"
|
1882 |
msgstr "Länder"
|
1883 |
|
@@ -1962,7 +1946,7 @@ msgstr "Obs! Om du nyligen har städat i databasen måste du ladda om denna sida
|
|
1962 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1963 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1964 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1965 |
-
#: wp-statistics/wp-statistics.php:
|
1966 |
msgid "Visitors"
|
1967 |
msgstr "Besökare"
|
1968 |
|
@@ -2464,7 +2448,7 @@ msgstr "Om du behöver en mer genomgripande lösning för att delegera åtkomst
|
|
2464 |
#: wp-statistics/includes/log/exclusions.php:197
|
2465 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2466 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2467 |
-
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:
|
2468 |
msgid "Exclusions"
|
2469 |
msgstr "Uteslutningar"
|
2470 |
|
@@ -2674,8 +2658,8 @@ msgstr "Användning av browscap"
|
|
2674 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2675 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2676 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2677 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2678 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2679 |
msgid "Active"
|
2680 |
msgstr "Aktiv"
|
2681 |
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
+
"X-Generator: GlotPress/2.1.0\n"
|
11 |
+
"Language: sv_SE\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
14 |
+
#: wp-statistics/ajax.php:215
|
15 |
msgid "No matching widget found!"
|
16 |
msgstr "Hittar ingen widget som pasar in!"
|
17 |
|
47 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
48 |
msgstr "Kontakta serverleverantören för uppgradering till en version som stöds eller inaktivera WP Statistics för att stänga av det här meddelandet."
|
49 |
|
50 |
+
#: wp-statistics/ajax.php:294
|
51 |
msgid "ERROR: Widget not found!"
|
52 |
msgstr "FEL: Widget hittas inte!"
|
53 |
|
54 |
+
#: wp-statistics/dashboard.php:107 wp-statistics/editor.php:66
|
55 |
#: wp-statistics/includes/log/log.php:20
|
56 |
msgid "Loading..."
|
57 |
msgstr "Laddar..."
|
58 |
|
59 |
+
#: wp-statistics/dashboard.php:125 wp-statistics/editor.php:84
|
60 |
#: wp-statistics/includes/log/log.php:2
|
61 |
msgid "Reloading..."
|
62 |
msgstr "Ny laddning..."
|
63 |
|
64 |
#: wp-statistics/includes/log/top-visitors.php:41
|
65 |
+
#: wp-statistics/wp-statistics.php:450
|
66 |
msgid "Top Visitors"
|
67 |
msgstr "Mest populära besökare"
|
68 |
|
159 |
msgid "online user tracking"
|
160 |
msgstr "spårning av uppkopplade användare "
|
161 |
|
162 |
+
#: wp-statistics/wp-statistics.php:791
|
163 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
164 |
msgstr "Följande tilläggstabell(er) saknas i databasen, vänligen kör %s installeringsrutin %s:"
|
165 |
|
623 |
|
624 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
625 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
626 |
+
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:532
|
627 |
msgid "Pages"
|
628 |
msgstr "Sidor"
|
629 |
|
893 |
|
894 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
895 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
896 |
+
#: wp-statistics/wp-statistics.php:637
|
897 |
msgid "User Online"
|
898 |
msgstr "Uppkopplade användare"
|
899 |
|
965 |
msgid "Disable the page/post editor widget."
|
966 |
msgstr "Inaktivera eventuellt redigerings-widget."
|
967 |
|
|
|
|
|
|
|
|
|
968 |
#: wp-statistics/includes/functions/functions.php:440
|
|
|
969 |
msgid "Google"
|
970 |
msgstr "Google"
|
971 |
|
972 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
973 |
msgid "Disable map"
|
974 |
msgstr "Ta bort karta"
|
975 |
|
976 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
977 |
msgid "Disable the map display"
|
978 |
msgstr "Inga kartor visas"
|
979 |
|
980 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:81
|
981 |
msgid "Get country location from Google"
|
982 |
msgstr "Lokalisera landet via Google"
|
983 |
|
984 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:87
|
985 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
986 |
msgstr "Denna funktion kan innebära långsammare visning av statistiken och fungerar bara om karttypen är inställd på Google-alternativet."
|
987 |
|
1035 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1036 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1037 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1038 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:96
|
1039 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1040 |
msgid "Update"
|
1041 |
msgstr "Uppdatering"
|
1053 |
msgstr "Var fjärde vecka"
|
1054 |
|
1055 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1056 |
+
#: wp-statistics/wp-statistics.php:485
|
1057 |
msgid "Statistics"
|
1058 |
msgstr "Statistik"
|
1059 |
|
1126 |
msgid "Items"
|
1127 |
msgstr "Enheter"
|
1128 |
|
1129 |
+
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:662
|
1130 |
msgid "Yesterday visit"
|
1131 |
msgstr "Besök igår"
|
1132 |
|
1151 |
msgstr "Komplett statistik för din Wordpress-sajt."
|
1152 |
|
1153 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1154 |
+
#: wp-statistics/wp-statistics.php:539
|
1155 |
msgid "Settings"
|
1156 |
msgstr "Inställningar"
|
1157 |
|
1175 |
msgid "WP Statistics - Hits"
|
1176 |
msgstr "WP Statistics - träffar"
|
1177 |
|
1178 |
+
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:488
|
1179 |
+
#: wp-statistics/wp-statistics.php:526
|
1180 |
msgid "Overview"
|
1181 |
msgstr "Översikt"
|
1182 |
|
1183 |
+
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:531
|
1184 |
msgid "Online"
|
1185 |
msgstr "Uppkopplingar"
|
1186 |
|
1187 |
+
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:533
|
1188 |
msgid "Referrers"
|
1189 |
msgstr "Länkreferenser"
|
1190 |
|
1191 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1192 |
+
#: wp-statistics/wp-statistics.php:534
|
1193 |
msgid "Searches"
|
1194 |
msgstr "Sökningar"
|
1195 |
|
1196 |
+
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:535
|
1197 |
msgid "Search Words"
|
1198 |
msgstr "Sökord"
|
1199 |
|
1200 |
+
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:536
|
1201 |
msgid "Top Visitors Today"
|
1202 |
msgstr "Besökartopp idag"
|
1203 |
|
1204 |
+
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:538
|
1205 |
msgid "Optimization"
|
1206 |
msgstr "Optimering"
|
1207 |
|
1208 |
+
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:502
|
1209 |
msgid "Manual"
|
1210 |
msgstr "Manual"
|
1211 |
|
1212 |
+
#: wp-statistics/wp-statistics.php:517
|
1213 |
msgid "Site"
|
1214 |
msgstr "Sajt"
|
1215 |
|
1216 |
+
#: wp-statistics/wp-statistics.php:518
|
1217 |
msgid "Options"
|
1218 |
msgstr "Alternativ"
|
1219 |
|
1220 |
+
#: wp-statistics/wp-statistics.php:644
|
1221 |
msgid "Today visitor"
|
1222 |
msgstr "Besökare idag"
|
1223 |
|
1224 |
+
#: wp-statistics/wp-statistics.php:650
|
1225 |
msgid "Today visit"
|
1226 |
msgstr "Besök idag"
|
1227 |
|
1228 |
+
#: wp-statistics/wp-statistics.php:656
|
1229 |
msgid "Yesterday visitor"
|
1230 |
msgstr "Besökare igår"
|
1231 |
|
1232 |
+
#: wp-statistics/wp-statistics.php:668
|
1233 |
msgid "View Stats"
|
1234 |
msgstr "Visa statistik"
|
1235 |
|
1236 |
+
#: wp-statistics/wp-statistics.php:692
|
1237 |
msgid "Download ODF file"
|
1238 |
msgstr "Hämta ODF-fil"
|
1239 |
|
1240 |
+
#: wp-statistics/wp-statistics.php:693
|
1241 |
msgid "Download HTML file"
|
1242 |
msgstr "Hämta HTML-fil"
|
1243 |
|
1244 |
+
#: wp-statistics/wp-statistics.php:697
|
1245 |
msgid "Manual file not found."
|
1246 |
msgstr "Manualfilen hittades inte."
|
1247 |
|
1248 |
+
#: wp-statistics/wp-statistics.php:764 wp-statistics/wp-statistics.php:891
|
1249 |
+
#: wp-statistics/wp-statistics.php:926
|
1250 |
msgid "You do not have sufficient permissions to access this page."
|
1251 |
msgstr "Du har inte behörighet för åtkomst till den här sidan."
|
1252 |
|
1307 |
msgid "Top 10 Browsers"
|
1308 |
msgstr "Webbläsarnas 10 i topp"
|
1309 |
|
1310 |
+
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:471
|
1311 |
msgid "Top 10 Countries"
|
1312 |
msgstr "Länders 10 i topp"
|
1313 |
|
1321 |
msgid "Hit Statistics"
|
1322 |
msgstr "Träffstatistik"
|
1323 |
|
1324 |
+
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:461
|
1325 |
msgid "Top 10 Pages"
|
1326 |
msgstr "Mest besökta sidor"
|
1327 |
|
1328 |
#: wp-statistics/dashboard.php:62
|
1329 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1330 |
+
#: wp-statistics/wp-statistics.php:453
|
1331 |
msgid "Recent Visitors"
|
1332 |
msgstr "Senaste besökarna"
|
1333 |
|
1334 |
#: wp-statistics/dashboard.php:63
|
1335 |
#: wp-statistics/includes/log/top-referring.php:59
|
1336 |
#: wp-statistics/includes/log/top-referring.php:81
|
1337 |
+
#: wp-statistics/wp-statistics.php:468
|
1338 |
msgid "Top Referring Sites"
|
1339 |
msgstr "Länkkällornas 10 i topp"
|
1340 |
|
1341 |
#: wp-statistics/dashboard.php:64
|
1342 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1343 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1344 |
+
#: wp-statistics/wp-statistics.php:451
|
1345 |
msgid "Search Engine Referrals"
|
1346 |
msgstr "Sökmotorlänkningar"
|
1347 |
|
1348 |
+
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:466
|
1349 |
msgid "Summary"
|
1350 |
msgstr "Sammanfattning"
|
1351 |
|
1352 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1353 |
+
#: wp-statistics/wp-statistics.php:452
|
1354 |
msgid "Latest Search Words"
|
1355 |
msgstr "Senaste sökorden"
|
1356 |
|
1420 |
msgstr "Klicka för att växla"
|
1421 |
|
1422 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1423 |
+
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:467
|
1424 |
+
#: wp-statistics/wp-statistics.php:527
|
1425 |
msgid "Browsers"
|
1426 |
msgstr "Webbläsare"
|
1427 |
|
1494 |
#: wp-statistics/includes/log/exclusions.php:95
|
1495 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1496 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1497 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1498 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1499 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1500 |
msgid "days"
|
1509 |
msgstr "Statistik över träffar"
|
1510 |
|
1511 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1512 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1513 |
msgid "Hits in the last"
|
1514 |
msgstr "Träffar under de senaste"
|
1515 |
|
1516 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1517 |
+
#: wp-statistics/includes/log/widgets/hits.php:65
|
1518 |
msgid "Number of visits and visitors"
|
1519 |
msgstr "Antal besök och besökare"
|
1520 |
|
1521 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1522 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1523 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1524 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1525 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1526 |
msgid "Visit"
|
1528 |
|
1529 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1530 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1531 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1532 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1533 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1534 |
msgid "Visitor"
|
1731 |
msgid "Other"
|
1732 |
msgstr "Annat"
|
1733 |
|
1734 |
+
#: wp-statistics/wp-statistics.php:456
|
1735 |
msgid "Today Visitors Map"
|
1736 |
msgstr "Karta över dagens besökare"
|
1737 |
|
1786 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1787 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1788 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1789 |
+
#: wp-statistics/wp-statistics.php:530
|
1790 |
msgid "Hits"
|
1791 |
msgstr "Träffar"
|
1792 |
|
1805 |
|
1806 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1807 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1808 |
+
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:297
|
1809 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1810 |
msgid "Access denied!"
|
1811 |
msgstr "Åtkomst nekad!"
|
1861 |
|
1862 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1863 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1864 |
+
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:528
|
1865 |
msgid "Countries"
|
1866 |
msgstr "Länder"
|
1867 |
|
1946 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1947 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1948 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1949 |
+
#: wp-statistics/wp-statistics.php:537
|
1950 |
msgid "Visitors"
|
1951 |
msgstr "Besökare"
|
1952 |
|
2448 |
#: wp-statistics/includes/log/exclusions.php:197
|
2449 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2450 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2451 |
+
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:529
|
2452 |
msgid "Exclusions"
|
2453 |
msgstr "Uteslutningar"
|
2454 |
|
2658 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2659 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2660 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2661 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:74
|
2662 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:86
|
2663 |
msgid "Active"
|
2664 |
msgstr "Aktiv"
|
2665 |
|
languages/wp_statistics-tr_TR.mo
CHANGED
Binary file
|
languages/wp_statistics-tr_TR.po
CHANGED
@@ -7,10 +7,11 @@ msgstr ""
|
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
10 |
-
"X-Generator: GlotPress/1.0
|
|
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#: wp-statistics/ajax.php:
|
14 |
msgid "No matching widget found!"
|
15 |
msgstr ""
|
16 |
|
@@ -46,22 +47,22 @@ msgstr ""
|
|
46 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: wp-statistics/ajax.php:
|
50 |
msgid "ERROR: Widget not found!"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: wp-statistics/dashboard.php:
|
54 |
#: wp-statistics/includes/log/log.php:20
|
55 |
msgid "Loading..."
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: wp-statistics/dashboard.php:
|
59 |
#: wp-statistics/includes/log/log.php:2
|
60 |
msgid "Reloading..."
|
61 |
msgstr ""
|
62 |
|
63 |
#: wp-statistics/includes/log/top-visitors.php:41
|
64 |
-
#: wp-statistics/wp-statistics.php:
|
65 |
msgid "Top Visitors"
|
66 |
msgstr ""
|
67 |
|
@@ -158,7 +159,7 @@ msgstr ""
|
|
158 |
msgid "online user tracking"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: wp-statistics/wp-statistics.php:
|
162 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
163 |
msgstr ""
|
164 |
|
@@ -622,7 +623,7 @@ msgstr "Muhtelif ziyaretleri olan kayıtlı üyeler. ŞuAnda %s."
|
|
622 |
|
623 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
624 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
625 |
-
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:
|
626 |
msgid "Pages"
|
627 |
msgstr "Sayfalar"
|
628 |
|
@@ -892,7 +893,7 @@ msgstr "WordPress kurgunuz tarafından desteklenen kısakodlar ve WP İstatistik
|
|
892 |
|
893 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
894 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
895 |
-
#: wp-statistics/wp-statistics.php:
|
896 |
msgid "User Online"
|
897 |
msgstr "ŞuAnda Kullanıcı"
|
898 |
|
@@ -964,40 +965,23 @@ msgstr ""
|
|
964 |
msgid "Disable the page/post editor widget."
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
968 |
-
msgid "Map type"
|
969 |
-
msgstr "Harita türü"
|
970 |
-
|
971 |
#: wp-statistics/includes/functions/functions.php:440
|
972 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
973 |
msgid "Google"
|
974 |
msgstr "Google"
|
975 |
|
976 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
977 |
-
msgid "JQVMap"
|
978 |
-
msgstr "JQVMap"
|
979 |
-
|
980 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:82
|
981 |
-
msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
|
982 |
-
msgstr "\"Google\" seçeneği son ziyaretçiler arsa için (erişimi gerekir Google) Google'nın harita hizmeti kullanmak."
|
983 |
-
|
984 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:83
|
985 |
-
msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
|
986 |
-
msgstr "\"JQVMap\" seçeneği JQVMap eşleme Kütüphane javascript son ziyaretçiler Arsa (gerektirir herhangi bir extenral hizmet)."
|
987 |
-
|
988 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:89
|
989 |
msgid "Disable map"
|
990 |
msgstr "Harita Geçersiz"
|
991 |
|
992 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
993 |
msgid "Disable the map display"
|
994 |
msgstr "Harita Görüntülemesi Geçersiz"
|
995 |
|
996 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
997 |
msgid "Get country location from Google"
|
998 |
msgstr "Ülke bilgisini Google'dan al"
|
999 |
|
1000 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1001 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
1002 |
msgstr "Bu özellik istatistikleri görüntülenirken performans düşmesine neden olabilir ve yalnızca \"Google için harita türü ayarlanmışsa geçerlidir\"."
|
1003 |
|
@@ -1051,7 +1035,7 @@ msgstr "Kaldırma işlemi"
|
|
1051 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1052 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1053 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1054 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1055 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1056 |
msgid "Update"
|
1057 |
msgstr "Güncelle"
|
@@ -1069,7 +1053,7 @@ msgid "Once Every 4 Weeks"
|
|
1069 |
msgstr "4 haftada bir kez"
|
1070 |
|
1071 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1072 |
-
#: wp-statistics/wp-statistics.php:
|
1073 |
msgid "Statistics"
|
1074 |
msgstr "İstatistikler"
|
1075 |
|
@@ -1142,7 +1126,7 @@ msgstr "İsim"
|
|
1142 |
msgid "Items"
|
1143 |
msgstr "Ürünler"
|
1144 |
|
1145 |
-
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:
|
1146 |
msgid "Yesterday visit"
|
1147 |
msgstr "Dünkü Ziyaret"
|
1148 |
|
@@ -1167,7 +1151,7 @@ msgid "Complete statistics for your WordPress site."
|
|
1167 |
msgstr "WordPress site tam istatistikleri."
|
1168 |
|
1169 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1170 |
-
#: wp-statistics/wp-statistics.php:
|
1171 |
msgid "Settings"
|
1172 |
msgstr "Ayarlar"
|
1173 |
|
@@ -1191,78 +1175,78 @@ msgstr "Bu eklenti oranı"
|
|
1191 |
msgid "WP Statistics - Hits"
|
1192 |
msgstr "WP Statisticsleri - Hits"
|
1193 |
|
1194 |
-
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:
|
1195 |
-
#: wp-statistics/wp-statistics.php:
|
1196 |
msgid "Overview"
|
1197 |
msgstr "Genel Bakış"
|
1198 |
|
1199 |
-
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:
|
1200 |
msgid "Online"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:
|
1204 |
msgid "Referrers"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1208 |
-
#: wp-statistics/wp-statistics.php:
|
1209 |
msgid "Searches"
|
1210 |
msgstr "Aramalar"
|
1211 |
|
1212 |
-
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:
|
1213 |
msgid "Search Words"
|
1214 |
msgstr "Arama Kelimeleri"
|
1215 |
|
1216 |
-
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:
|
1217 |
msgid "Top Visitors Today"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
-
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:
|
1221 |
msgid "Optimization"
|
1222 |
msgstr "İyileştirme"
|
1223 |
|
1224 |
-
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:
|
1225 |
msgid "Manual"
|
1226 |
msgstr "Manuel"
|
1227 |
|
1228 |
-
#: wp-statistics/wp-statistics.php:
|
1229 |
msgid "Site"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
-
#: wp-statistics/wp-statistics.php:
|
1233 |
msgid "Options"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
-
#: wp-statistics/wp-statistics.php:
|
1237 |
msgid "Today visitor"
|
1238 |
msgstr "Bugünkü Ziyaretciler"
|
1239 |
|
1240 |
-
#: wp-statistics/wp-statistics.php:
|
1241 |
msgid "Today visit"
|
1242 |
msgstr "Bugünkü Ziyaretler"
|
1243 |
|
1244 |
-
#: wp-statistics/wp-statistics.php:
|
1245 |
msgid "Yesterday visitor"
|
1246 |
msgstr "Dünkü Ziyaretci"
|
1247 |
|
1248 |
-
#: wp-statistics/wp-statistics.php:
|
1249 |
msgid "View Stats"
|
1250 |
msgstr "İstatistiklere Bak"
|
1251 |
|
1252 |
-
#: wp-statistics/wp-statistics.php:
|
1253 |
msgid "Download ODF file"
|
1254 |
msgstr "ODF Dosyası indir"
|
1255 |
|
1256 |
-
#: wp-statistics/wp-statistics.php:
|
1257 |
msgid "Download HTML file"
|
1258 |
msgstr "HTML Dosyası indir"
|
1259 |
|
1260 |
-
#: wp-statistics/wp-statistics.php:
|
1261 |
msgid "Manual file not found."
|
1262 |
msgstr "Manuel Dosya bulunmadı."
|
1263 |
|
1264 |
-
#: wp-statistics/wp-statistics.php:
|
1265 |
-
#: wp-statistics/wp-statistics.php:
|
1266 |
msgid "You do not have sufficient permissions to access this page."
|
1267 |
msgstr "Bu sayfaya girme yetkiniz yok."
|
1268 |
|
@@ -1323,7 +1307,7 @@ msgstr ""
|
|
1323 |
msgid "Top 10 Browsers"
|
1324 |
msgstr "10 top tarayıcılar"
|
1325 |
|
1326 |
-
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:
|
1327 |
msgid "Top 10 Countries"
|
1328 |
msgstr "EnÇok 10 Ülke"
|
1329 |
|
@@ -1337,36 +1321,36 @@ msgstr ""
|
|
1337 |
msgid "Hit Statistics"
|
1338 |
msgstr "Sayfa Ziyaret İstatistikleri"
|
1339 |
|
1340 |
-
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:
|
1341 |
msgid "Top 10 Pages"
|
1342 |
msgstr "En iyi 10 sayfaları"
|
1343 |
|
1344 |
#: wp-statistics/dashboard.php:62
|
1345 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1346 |
-
#: wp-statistics/wp-statistics.php:
|
1347 |
msgid "Recent Visitors"
|
1348 |
msgstr "Son Ziyaretciler"
|
1349 |
|
1350 |
#: wp-statistics/dashboard.php:63
|
1351 |
#: wp-statistics/includes/log/top-referring.php:59
|
1352 |
#: wp-statistics/includes/log/top-referring.php:81
|
1353 |
-
#: wp-statistics/wp-statistics.php:
|
1354 |
msgid "Top Referring Sites"
|
1355 |
msgstr "Üst yönlendiren siteler"
|
1356 |
|
1357 |
#: wp-statistics/dashboard.php:64
|
1358 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1359 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1360 |
-
#: wp-statistics/wp-statistics.php:
|
1361 |
msgid "Search Engine Referrals"
|
1362 |
msgstr "Arama Motoru Referansları"
|
1363 |
|
1364 |
-
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:
|
1365 |
msgid "Summary"
|
1366 |
msgstr "Özet"
|
1367 |
|
1368 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1369 |
-
#: wp-statistics/wp-statistics.php:
|
1370 |
msgid "Latest Search Words"
|
1371 |
msgstr "En son arama kelimeleri"
|
1372 |
|
@@ -1436,8 +1420,8 @@ msgid "Click to toggle"
|
|
1436 |
msgstr "Geçiş yapmak için tıklayın"
|
1437 |
|
1438 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1439 |
-
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:
|
1440 |
-
#: wp-statistics/wp-statistics.php:
|
1441 |
msgid "Browsers"
|
1442 |
msgstr "Tarayıcılar"
|
1443 |
|
@@ -1510,7 +1494,7 @@ msgstr "Sayısı son hariç"
|
|
1510 |
#: wp-statistics/includes/log/exclusions.php:95
|
1511 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1512 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1513 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1514 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1515 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1516 |
msgid "days"
|
@@ -1525,18 +1509,18 @@ msgid "Hits Statistics Chart"
|
|
1525 |
msgstr "Sayısı istatistiklerini grafik"
|
1526 |
|
1527 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1528 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1529 |
msgid "Hits in the last"
|
1530 |
msgstr "Son hits"
|
1531 |
|
1532 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1533 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1534 |
msgid "Number of visits and visitors"
|
1535 |
msgstr "Ziyaret ve Ziyaretci Sayıları"
|
1536 |
|
1537 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1538 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1539 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1540 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1541 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1542 |
msgid "Visit"
|
@@ -1544,7 +1528,7 @@ msgstr "Ziyaretler"
|
|
1544 |
|
1545 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1546 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1547 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1548 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1549 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1550 |
msgid "Visitor"
|
@@ -1747,7 +1731,7 @@ msgstr "Bu ürün, MaxMind, %s üzerinden kullanılabilir tarafından oluşturul
|
|
1747 |
msgid "Other"
|
1748 |
msgstr "Diğer"
|
1749 |
|
1750 |
-
#: wp-statistics/wp-statistics.php:
|
1751 |
msgid "Today Visitors Map"
|
1752 |
msgstr "Bugün Ziyaretçi Haritası"
|
1753 |
|
@@ -1802,7 +1786,7 @@ msgstr "Süre: %s"
|
|
1802 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1803 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1804 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1805 |
-
#: wp-statistics/wp-statistics.php:
|
1806 |
msgid "Hits"
|
1807 |
msgstr "Ziyaretler"
|
1808 |
|
@@ -1821,7 +1805,7 @@ msgstr "Versiyon"
|
|
1821 |
|
1822 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1823 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1824 |
-
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:
|
1825 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1826 |
msgid "Access denied!"
|
1827 |
msgstr "Giriş Yasak!"
|
@@ -1877,7 +1861,7 @@ msgstr "Veritabanı dizini"
|
|
1877 |
|
1878 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1879 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1880 |
-
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:
|
1881 |
msgid "Countries"
|
1882 |
msgstr "Ülkeler"
|
1883 |
|
@@ -1962,7 +1946,7 @@ msgstr "Not: Data temizliğini yeni yaptınız, sayfayı yenilerseniz verileri d
|
|
1962 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1963 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1964 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1965 |
-
#: wp-statistics/wp-statistics.php:
|
1966 |
msgid "Visitors"
|
1967 |
msgstr "Ziyaretciler"
|
1968 |
|
@@ -2464,7 +2448,7 @@ msgstr "Daha Sağlıklı Bilgiler İçin Eklenti Dizinine Bakınız : %s "
|
|
2464 |
#: wp-statistics/includes/log/exclusions.php:197
|
2465 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2466 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2467 |
-
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:
|
2468 |
msgid "Exclusions"
|
2469 |
msgstr "İstisnalar"
|
2470 |
|
@@ -2674,8 +2658,8 @@ msgstr "Browscap kullanımı"
|
|
2674 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2675 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2676 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2677 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2678 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2679 |
msgid "Active"
|
2680 |
msgstr "Aktif"
|
2681 |
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
10 |
+
"X-Generator: GlotPress/2.1.0\n"
|
11 |
+
"Language: tr\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
14 |
+
#: wp-statistics/ajax.php:215
|
15 |
msgid "No matching widget found!"
|
16 |
msgstr ""
|
17 |
|
47 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: wp-statistics/ajax.php:294
|
51 |
msgid "ERROR: Widget not found!"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: wp-statistics/dashboard.php:107 wp-statistics/editor.php:66
|
55 |
#: wp-statistics/includes/log/log.php:20
|
56 |
msgid "Loading..."
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: wp-statistics/dashboard.php:125 wp-statistics/editor.php:84
|
60 |
#: wp-statistics/includes/log/log.php:2
|
61 |
msgid "Reloading..."
|
62 |
msgstr ""
|
63 |
|
64 |
#: wp-statistics/includes/log/top-visitors.php:41
|
65 |
+
#: wp-statistics/wp-statistics.php:450
|
66 |
msgid "Top Visitors"
|
67 |
msgstr ""
|
68 |
|
159 |
msgid "online user tracking"
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: wp-statistics/wp-statistics.php:791
|
163 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
164 |
msgstr ""
|
165 |
|
623 |
|
624 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
625 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
626 |
+
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:532
|
627 |
msgid "Pages"
|
628 |
msgstr "Sayfalar"
|
629 |
|
893 |
|
894 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
895 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
896 |
+
#: wp-statistics/wp-statistics.php:637
|
897 |
msgid "User Online"
|
898 |
msgstr "ŞuAnda Kullanıcı"
|
899 |
|
965 |
msgid "Disable the page/post editor widget."
|
966 |
msgstr ""
|
967 |
|
|
|
|
|
|
|
|
|
968 |
#: wp-statistics/includes/functions/functions.php:440
|
|
|
969 |
msgid "Google"
|
970 |
msgstr "Google"
|
971 |
|
972 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
973 |
msgid "Disable map"
|
974 |
msgstr "Harita Geçersiz"
|
975 |
|
976 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
977 |
msgid "Disable the map display"
|
978 |
msgstr "Harita Görüntülemesi Geçersiz"
|
979 |
|
980 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:81
|
981 |
msgid "Get country location from Google"
|
982 |
msgstr "Ülke bilgisini Google'dan al"
|
983 |
|
984 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:87
|
985 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
986 |
msgstr "Bu özellik istatistikleri görüntülenirken performans düşmesine neden olabilir ve yalnızca \"Google için harita türü ayarlanmışsa geçerlidir\"."
|
987 |
|
1035 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1036 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1037 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1038 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:96
|
1039 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1040 |
msgid "Update"
|
1041 |
msgstr "Güncelle"
|
1053 |
msgstr "4 haftada bir kez"
|
1054 |
|
1055 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1056 |
+
#: wp-statistics/wp-statistics.php:485
|
1057 |
msgid "Statistics"
|
1058 |
msgstr "İstatistikler"
|
1059 |
|
1126 |
msgid "Items"
|
1127 |
msgstr "Ürünler"
|
1128 |
|
1129 |
+
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:662
|
1130 |
msgid "Yesterday visit"
|
1131 |
msgstr "Dünkü Ziyaret"
|
1132 |
|
1151 |
msgstr "WordPress site tam istatistikleri."
|
1152 |
|
1153 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1154 |
+
#: wp-statistics/wp-statistics.php:539
|
1155 |
msgid "Settings"
|
1156 |
msgstr "Ayarlar"
|
1157 |
|
1175 |
msgid "WP Statistics - Hits"
|
1176 |
msgstr "WP Statisticsleri - Hits"
|
1177 |
|
1178 |
+
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:488
|
1179 |
+
#: wp-statistics/wp-statistics.php:526
|
1180 |
msgid "Overview"
|
1181 |
msgstr "Genel Bakış"
|
1182 |
|
1183 |
+
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:531
|
1184 |
msgid "Online"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:533
|
1188 |
msgid "Referrers"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1192 |
+
#: wp-statistics/wp-statistics.php:534
|
1193 |
msgid "Searches"
|
1194 |
msgstr "Aramalar"
|
1195 |
|
1196 |
+
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:535
|
1197 |
msgid "Search Words"
|
1198 |
msgstr "Arama Kelimeleri"
|
1199 |
|
1200 |
+
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:536
|
1201 |
msgid "Top Visitors Today"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
+
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:538
|
1205 |
msgid "Optimization"
|
1206 |
msgstr "İyileştirme"
|
1207 |
|
1208 |
+
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:502
|
1209 |
msgid "Manual"
|
1210 |
msgstr "Manuel"
|
1211 |
|
1212 |
+
#: wp-statistics/wp-statistics.php:517
|
1213 |
msgid "Site"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
+
#: wp-statistics/wp-statistics.php:518
|
1217 |
msgid "Options"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
+
#: wp-statistics/wp-statistics.php:644
|
1221 |
msgid "Today visitor"
|
1222 |
msgstr "Bugünkü Ziyaretciler"
|
1223 |
|
1224 |
+
#: wp-statistics/wp-statistics.php:650
|
1225 |
msgid "Today visit"
|
1226 |
msgstr "Bugünkü Ziyaretler"
|
1227 |
|
1228 |
+
#: wp-statistics/wp-statistics.php:656
|
1229 |
msgid "Yesterday visitor"
|
1230 |
msgstr "Dünkü Ziyaretci"
|
1231 |
|
1232 |
+
#: wp-statistics/wp-statistics.php:668
|
1233 |
msgid "View Stats"
|
1234 |
msgstr "İstatistiklere Bak"
|
1235 |
|
1236 |
+
#: wp-statistics/wp-statistics.php:692
|
1237 |
msgid "Download ODF file"
|
1238 |
msgstr "ODF Dosyası indir"
|
1239 |
|
1240 |
+
#: wp-statistics/wp-statistics.php:693
|
1241 |
msgid "Download HTML file"
|
1242 |
msgstr "HTML Dosyası indir"
|
1243 |
|
1244 |
+
#: wp-statistics/wp-statistics.php:697
|
1245 |
msgid "Manual file not found."
|
1246 |
msgstr "Manuel Dosya bulunmadı."
|
1247 |
|
1248 |
+
#: wp-statistics/wp-statistics.php:764 wp-statistics/wp-statistics.php:891
|
1249 |
+
#: wp-statistics/wp-statistics.php:926
|
1250 |
msgid "You do not have sufficient permissions to access this page."
|
1251 |
msgstr "Bu sayfaya girme yetkiniz yok."
|
1252 |
|
1307 |
msgid "Top 10 Browsers"
|
1308 |
msgstr "10 top tarayıcılar"
|
1309 |
|
1310 |
+
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:471
|
1311 |
msgid "Top 10 Countries"
|
1312 |
msgstr "EnÇok 10 Ülke"
|
1313 |
|
1321 |
msgid "Hit Statistics"
|
1322 |
msgstr "Sayfa Ziyaret İstatistikleri"
|
1323 |
|
1324 |
+
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:461
|
1325 |
msgid "Top 10 Pages"
|
1326 |
msgstr "En iyi 10 sayfaları"
|
1327 |
|
1328 |
#: wp-statistics/dashboard.php:62
|
1329 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1330 |
+
#: wp-statistics/wp-statistics.php:453
|
1331 |
msgid "Recent Visitors"
|
1332 |
msgstr "Son Ziyaretciler"
|
1333 |
|
1334 |
#: wp-statistics/dashboard.php:63
|
1335 |
#: wp-statistics/includes/log/top-referring.php:59
|
1336 |
#: wp-statistics/includes/log/top-referring.php:81
|
1337 |
+
#: wp-statistics/wp-statistics.php:468
|
1338 |
msgid "Top Referring Sites"
|
1339 |
msgstr "Üst yönlendiren siteler"
|
1340 |
|
1341 |
#: wp-statistics/dashboard.php:64
|
1342 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1343 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1344 |
+
#: wp-statistics/wp-statistics.php:451
|
1345 |
msgid "Search Engine Referrals"
|
1346 |
msgstr "Arama Motoru Referansları"
|
1347 |
|
1348 |
+
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:466
|
1349 |
msgid "Summary"
|
1350 |
msgstr "Özet"
|
1351 |
|
1352 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1353 |
+
#: wp-statistics/wp-statistics.php:452
|
1354 |
msgid "Latest Search Words"
|
1355 |
msgstr "En son arama kelimeleri"
|
1356 |
|
1420 |
msgstr "Geçiş yapmak için tıklayın"
|
1421 |
|
1422 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1423 |
+
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:467
|
1424 |
+
#: wp-statistics/wp-statistics.php:527
|
1425 |
msgid "Browsers"
|
1426 |
msgstr "Tarayıcılar"
|
1427 |
|
1494 |
#: wp-statistics/includes/log/exclusions.php:95
|
1495 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1496 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1497 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1498 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1499 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1500 |
msgid "days"
|
1509 |
msgstr "Sayısı istatistiklerini grafik"
|
1510 |
|
1511 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1512 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1513 |
msgid "Hits in the last"
|
1514 |
msgstr "Son hits"
|
1515 |
|
1516 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1517 |
+
#: wp-statistics/includes/log/widgets/hits.php:65
|
1518 |
msgid "Number of visits and visitors"
|
1519 |
msgstr "Ziyaret ve Ziyaretci Sayıları"
|
1520 |
|
1521 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1522 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1523 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1524 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1525 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1526 |
msgid "Visit"
|
1528 |
|
1529 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1530 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1531 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1532 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1533 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1534 |
msgid "Visitor"
|
1731 |
msgid "Other"
|
1732 |
msgstr "Diğer"
|
1733 |
|
1734 |
+
#: wp-statistics/wp-statistics.php:456
|
1735 |
msgid "Today Visitors Map"
|
1736 |
msgstr "Bugün Ziyaretçi Haritası"
|
1737 |
|
1786 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1787 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1788 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1789 |
+
#: wp-statistics/wp-statistics.php:530
|
1790 |
msgid "Hits"
|
1791 |
msgstr "Ziyaretler"
|
1792 |
|
1805 |
|
1806 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1807 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1808 |
+
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:297
|
1809 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1810 |
msgid "Access denied!"
|
1811 |
msgstr "Giriş Yasak!"
|
1861 |
|
1862 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1863 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1864 |
+
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:528
|
1865 |
msgid "Countries"
|
1866 |
msgstr "Ülkeler"
|
1867 |
|
1946 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1947 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1948 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1949 |
+
#: wp-statistics/wp-statistics.php:537
|
1950 |
msgid "Visitors"
|
1951 |
msgstr "Ziyaretciler"
|
1952 |
|
2448 |
#: wp-statistics/includes/log/exclusions.php:197
|
2449 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2450 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2451 |
+
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:529
|
2452 |
msgid "Exclusions"
|
2453 |
msgstr "İstisnalar"
|
2454 |
|
2658 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2659 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2660 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2661 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:74
|
2662 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:86
|
2663 |
msgid "Active"
|
2664 |
msgstr "Aktif"
|
2665 |
|
languages/wp_statistics-uk.mo
CHANGED
Binary file
|
languages/wp_statistics-uk.po
CHANGED
@@ -2,15 +2,16 @@
|
|
2 |
# This file is distributed under the same license as the WP Statistics package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"PO-Revision-Date:
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
10 |
-
"X-Generator: GlotPress/1.0
|
|
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#: wp-statistics/ajax.php:
|
14 |
msgid "No matching widget found!"
|
15 |
msgstr ""
|
16 |
|
@@ -46,22 +47,22 @@ msgstr ""
|
|
46 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: wp-statistics/ajax.php:
|
50 |
msgid "ERROR: Widget not found!"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: wp-statistics/dashboard.php:
|
54 |
#: wp-statistics/includes/log/log.php:20
|
55 |
msgid "Loading..."
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: wp-statistics/dashboard.php:
|
59 |
#: wp-statistics/includes/log/log.php:2
|
60 |
msgid "Reloading..."
|
61 |
msgstr ""
|
62 |
|
63 |
#: wp-statistics/includes/log/top-visitors.php:41
|
64 |
-
#: wp-statistics/wp-statistics.php:
|
65 |
msgid "Top Visitors"
|
66 |
msgstr ""
|
67 |
|
@@ -72,7 +73,7 @@ msgstr ""
|
|
72 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:35
|
73 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:63
|
74 |
msgid "Enabled"
|
75 |
-
msgstr ""
|
76 |
|
77 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:30
|
78 |
msgid "Purge Old Data Daily"
|
@@ -158,7 +159,7 @@ msgstr "Відстеження переглядів"
|
|
158 |
msgid "online user tracking"
|
159 |
msgstr "Відстеження користувачів онлайн"
|
160 |
|
161 |
-
#: wp-statistics/wp-statistics.php:
|
162 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
163 |
msgstr ""
|
164 |
|
@@ -622,7 +623,7 @@ msgstr "На кожен візит декілька переглядів. В д
|
|
622 |
|
623 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
624 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
625 |
-
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:
|
626 |
msgid "Pages"
|
627 |
msgstr "Сторінки"
|
628 |
|
@@ -892,7 +893,7 @@ msgstr "Будь-який шорткод, що підтримується ваш
|
|
892 |
|
893 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
894 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
895 |
-
#: wp-statistics/wp-statistics.php:
|
896 |
msgid "User Online"
|
897 |
msgstr "Користувач онлайн"
|
898 |
|
@@ -964,40 +965,23 @@ msgstr "Відключити віджет-редактор сторінки/пу
|
|
964 |
msgid "Disable the page/post editor widget."
|
965 |
msgstr "Відключити цей віджет-редактор сторінки/публікації"
|
966 |
|
967 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
968 |
-
msgid "Map type"
|
969 |
-
msgstr "Тип карти"
|
970 |
-
|
971 |
#: wp-statistics/includes/functions/functions.php:440
|
972 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
973 |
msgid "Google"
|
974 |
msgstr "Google"
|
975 |
|
976 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
977 |
-
msgid "JQVMap"
|
978 |
-
msgstr "Google"
|
979 |
-
|
980 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:82
|
981 |
-
msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
|
982 |
-
msgstr "Опція \"Google\" буде використовувати картографічний сервіс Google для побудови графіку недавніх відвідувачів (потрібен доступ до Google)."
|
983 |
-
|
984 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:83
|
985 |
-
msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
|
986 |
-
msgstr "Опція \"JQVMap\"\" буде використовувати картографічну бібліотеку JQVMap javascript для побудови графіку недавніх відвідувачів (не потребує зовнішніх служб)."
|
987 |
-
|
988 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:89
|
989 |
msgid "Disable map"
|
990 |
msgstr "Відключити карту"
|
991 |
|
992 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
993 |
msgid "Disable the map display"
|
994 |
msgstr "Відключити картове відображення"
|
995 |
|
996 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
997 |
msgid "Get country location from Google"
|
998 |
msgstr "Отримати розташування країни в Google"
|
999 |
|
1000 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1001 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
1002 |
msgstr "Ця функція може привести до зниження продуктивності при перегляді статистики і тільки якщо тип карти встановлено на «Google»."
|
1003 |
|
@@ -1051,7 +1035,7 @@ msgstr "Видалення"
|
|
1051 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1052 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1053 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1054 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1055 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1056 |
msgid "Update"
|
1057 |
msgstr "Оновлення"
|
@@ -1069,7 +1053,7 @@ msgid "Once Every 4 Weeks"
|
|
1069 |
msgstr "Один раз на 4 тижні"
|
1070 |
|
1071 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1072 |
-
#: wp-statistics/wp-statistics.php:
|
1073 |
msgid "Statistics"
|
1074 |
msgstr "Статистика"
|
1075 |
|
@@ -1142,7 +1126,7 @@ msgstr "Ім'я"
|
|
1142 |
msgid "Items"
|
1143 |
msgstr "Об'єкти"
|
1144 |
|
1145 |
-
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:
|
1146 |
msgid "Yesterday visit"
|
1147 |
msgstr "Вчорашнє відвідування"
|
1148 |
|
@@ -1167,7 +1151,7 @@ msgid "Complete statistics for your WordPress site."
|
|
1167 |
msgstr "Повна статистика для вашого сайту WordPress."
|
1168 |
|
1169 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1170 |
-
#: wp-statistics/wp-statistics.php:
|
1171 |
msgid "Settings"
|
1172 |
msgstr "Налаштування"
|
1173 |
|
@@ -1191,78 +1175,78 @@ msgstr "Оцінити цей плагін"
|
|
1191 |
msgid "WP Statistics - Hits"
|
1192 |
msgstr "WP Statistics - перегляди"
|
1193 |
|
1194 |
-
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:
|
1195 |
-
#: wp-statistics/wp-statistics.php:
|
1196 |
msgid "Overview"
|
1197 |
msgstr "Перегляд"
|
1198 |
|
1199 |
-
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:
|
1200 |
msgid "Online"
|
1201 |
msgstr "Онлайн"
|
1202 |
|
1203 |
-
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:
|
1204 |
msgid "Referrers"
|
1205 |
msgstr "Рефери"
|
1206 |
|
1207 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1208 |
-
#: wp-statistics/wp-statistics.php:
|
1209 |
msgid "Searches"
|
1210 |
msgstr "Пошуки"
|
1211 |
|
1212 |
-
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:
|
1213 |
msgid "Search Words"
|
1214 |
msgstr "Пошукові слова"
|
1215 |
|
1216 |
-
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:
|
1217 |
msgid "Top Visitors Today"
|
1218 |
msgstr "Топ відвідувачі за сьогодні"
|
1219 |
|
1220 |
-
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:
|
1221 |
msgid "Optimization"
|
1222 |
msgstr "Оптимізація"
|
1223 |
|
1224 |
-
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:
|
1225 |
msgid "Manual"
|
1226 |
msgstr "Інструкція"
|
1227 |
|
1228 |
-
#: wp-statistics/wp-statistics.php:
|
1229 |
msgid "Site"
|
1230 |
msgstr "Сайт"
|
1231 |
|
1232 |
-
#: wp-statistics/wp-statistics.php:
|
1233 |
msgid "Options"
|
1234 |
msgstr "Опції"
|
1235 |
|
1236 |
-
#: wp-statistics/wp-statistics.php:
|
1237 |
msgid "Today visitor"
|
1238 |
msgstr "Сьогодняшній відвідувач"
|
1239 |
|
1240 |
-
#: wp-statistics/wp-statistics.php:
|
1241 |
msgid "Today visit"
|
1242 |
msgstr "Сьогоднішнє відвідування"
|
1243 |
|
1244 |
-
#: wp-statistics/wp-statistics.php:
|
1245 |
msgid "Yesterday visitor"
|
1246 |
msgstr "Вчорашній відвідувач"
|
1247 |
|
1248 |
-
#: wp-statistics/wp-statistics.php:
|
1249 |
msgid "View Stats"
|
1250 |
msgstr "Переглянути статистику"
|
1251 |
|
1252 |
-
#: wp-statistics/wp-statistics.php:
|
1253 |
msgid "Download ODF file"
|
1254 |
msgstr "Завантажити файл ODF "
|
1255 |
|
1256 |
-
#: wp-statistics/wp-statistics.php:
|
1257 |
msgid "Download HTML file"
|
1258 |
msgstr "Завантажити файл HTML "
|
1259 |
|
1260 |
-
#: wp-statistics/wp-statistics.php:
|
1261 |
msgid "Manual file not found."
|
1262 |
msgstr "Інструкцію не знайдено."
|
1263 |
|
1264 |
-
#: wp-statistics/wp-statistics.php:
|
1265 |
-
#: wp-statistics/wp-statistics.php:
|
1266 |
msgid "You do not have sufficient permissions to access this page."
|
1267 |
msgstr "Ви не маєте достатніх прав для доступу до цієї сторінки."
|
1268 |
|
@@ -1323,7 +1307,7 @@ msgstr "Швидка статистика"
|
|
1323 |
msgid "Top 10 Browsers"
|
1324 |
msgstr "Топ 10 браузерів"
|
1325 |
|
1326 |
-
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:
|
1327 |
msgid "Top 10 Countries"
|
1328 |
msgstr "Топ 10 країн"
|
1329 |
|
@@ -1337,36 +1321,36 @@ msgstr "Карта сьогодняшніх відвідувачів"
|
|
1337 |
msgid "Hit Statistics"
|
1338 |
msgstr "Статистика переглядів"
|
1339 |
|
1340 |
-
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:
|
1341 |
msgid "Top 10 Pages"
|
1342 |
msgstr "Топ 10 сторінок"
|
1343 |
|
1344 |
#: wp-statistics/dashboard.php:62
|
1345 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1346 |
-
#: wp-statistics/wp-statistics.php:
|
1347 |
msgid "Recent Visitors"
|
1348 |
msgstr "Нещодавні відвідувачі"
|
1349 |
|
1350 |
#: wp-statistics/dashboard.php:63
|
1351 |
#: wp-statistics/includes/log/top-referring.php:59
|
1352 |
#: wp-statistics/includes/log/top-referring.php:81
|
1353 |
-
#: wp-statistics/wp-statistics.php:
|
1354 |
msgid "Top Referring Sites"
|
1355 |
msgstr "Топ реферних сайтів"
|
1356 |
|
1357 |
#: wp-statistics/dashboard.php:64
|
1358 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1359 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1360 |
-
#: wp-statistics/wp-statistics.php:
|
1361 |
msgid "Search Engine Referrals"
|
1362 |
msgstr "Пошукові реферали"
|
1363 |
|
1364 |
-
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:
|
1365 |
msgid "Summary"
|
1366 |
msgstr "Підсумок"
|
1367 |
|
1368 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1369 |
-
#: wp-statistics/wp-statistics.php:
|
1370 |
msgid "Latest Search Words"
|
1371 |
msgstr "Останні пошукові слова"
|
1372 |
|
@@ -1436,8 +1420,8 @@ msgid "Click to toggle"
|
|
1436 |
msgstr "Натисніть для переміщення"
|
1437 |
|
1438 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1439 |
-
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:
|
1440 |
-
#: wp-statistics/wp-statistics.php:
|
1441 |
msgid "Browsers"
|
1442 |
msgstr "Браузери"
|
1443 |
|
@@ -1510,7 +1494,7 @@ msgstr "Виключено переглядів за останні"
|
|
1510 |
#: wp-statistics/includes/log/exclusions.php:95
|
1511 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1512 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1513 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1514 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1515 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1516 |
msgid "days"
|
@@ -1525,18 +1509,18 @@ msgid "Hits Statistics Chart"
|
|
1525 |
msgstr "Графік переглядів"
|
1526 |
|
1527 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1528 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1529 |
msgid "Hits in the last"
|
1530 |
msgstr "Переглядів за останні"
|
1531 |
|
1532 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1533 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1534 |
msgid "Number of visits and visitors"
|
1535 |
msgstr "Кількість відвідувань та відвідувачів"
|
1536 |
|
1537 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1538 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1539 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1540 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1541 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1542 |
msgid "Visit"
|
@@ -1544,7 +1528,7 @@ msgstr "Відвідування"
|
|
1544 |
|
1545 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1546 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1547 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1548 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1549 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1550 |
msgid "Visitor"
|
@@ -1747,7 +1731,7 @@ msgstr "Цей продукт містить GeoLite2 дані, створені
|
|
1747 |
msgid "Other"
|
1748 |
msgstr "Інший"
|
1749 |
|
1750 |
-
#: wp-statistics/wp-statistics.php:
|
1751 |
msgid "Today Visitors Map"
|
1752 |
msgstr "Карта сьогодняшніх відвідувачів"
|
1753 |
|
@@ -1802,7 +1786,7 @@ msgstr "Час: %s"
|
|
1802 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1803 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1804 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1805 |
-
#: wp-statistics/wp-statistics.php:
|
1806 |
msgid "Hits"
|
1807 |
msgstr "Перегляди"
|
1808 |
|
@@ -1821,7 +1805,7 @@ msgstr "Версія"
|
|
1821 |
|
1822 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1823 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1824 |
-
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:
|
1825 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1826 |
msgid "Access denied!"
|
1827 |
msgstr "В доступі відмовлено!"
|
@@ -1877,7 +1861,7 @@ msgstr "Індекс бази даних"
|
|
1877 |
|
1878 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1879 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1880 |
-
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:
|
1881 |
msgid "Countries"
|
1882 |
msgstr "Країни"
|
1883 |
|
@@ -1962,7 +1946,7 @@ msgstr "Примітка: оскільки ви тільки що очистил
|
|
1962 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1963 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1964 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1965 |
-
#: wp-statistics/wp-statistics.php:
|
1966 |
msgid "Visitors"
|
1967 |
msgstr "Відвідувачі"
|
1968 |
|
@@ -2464,7 +2448,7 @@ msgstr "Якщо вам потрібне більш стійке рішення
|
|
2464 |
#: wp-statistics/includes/log/exclusions.php:197
|
2465 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2466 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2467 |
-
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:
|
2468 |
msgid "Exclusions"
|
2469 |
msgstr "Вилучення"
|
2470 |
|
@@ -2674,8 +2658,8 @@ msgstr "browscap використання"
|
|
2674 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2675 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2676 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2677 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2678 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2679 |
msgid "Active"
|
2680 |
msgstr "Активний"
|
2681 |
|
2 |
# This file is distributed under the same license as the WP Statistics package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2016-04-05 21:25:10+0000\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
10 |
+
"X-Generator: GlotPress/2.1.0\n"
|
11 |
+
"Language: uk_UA\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
14 |
+
#: wp-statistics/ajax.php:215
|
15 |
msgid "No matching widget found!"
|
16 |
msgstr ""
|
17 |
|
47 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: wp-statistics/ajax.php:294
|
51 |
msgid "ERROR: Widget not found!"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: wp-statistics/dashboard.php:107 wp-statistics/editor.php:66
|
55 |
#: wp-statistics/includes/log/log.php:20
|
56 |
msgid "Loading..."
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: wp-statistics/dashboard.php:125 wp-statistics/editor.php:84
|
60 |
#: wp-statistics/includes/log/log.php:2
|
61 |
msgid "Reloading..."
|
62 |
msgstr ""
|
63 |
|
64 |
#: wp-statistics/includes/log/top-visitors.php:41
|
65 |
+
#: wp-statistics/wp-statistics.php:450
|
66 |
msgid "Top Visitors"
|
67 |
msgstr ""
|
68 |
|
73 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:35
|
74 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:63
|
75 |
msgid "Enabled"
|
76 |
+
msgstr "Увімкнено"
|
77 |
|
78 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:30
|
79 |
msgid "Purge Old Data Daily"
|
159 |
msgid "online user tracking"
|
160 |
msgstr "Відстеження користувачів онлайн"
|
161 |
|
162 |
+
#: wp-statistics/wp-statistics.php:791
|
163 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
164 |
msgstr ""
|
165 |
|
623 |
|
624 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
625 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
626 |
+
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:532
|
627 |
msgid "Pages"
|
628 |
msgstr "Сторінки"
|
629 |
|
893 |
|
894 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
895 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
896 |
+
#: wp-statistics/wp-statistics.php:637
|
897 |
msgid "User Online"
|
898 |
msgstr "Користувач онлайн"
|
899 |
|
965 |
msgid "Disable the page/post editor widget."
|
966 |
msgstr "Відключити цей віджет-редактор сторінки/публікації"
|
967 |
|
|
|
|
|
|
|
|
|
968 |
#: wp-statistics/includes/functions/functions.php:440
|
|
|
969 |
msgid "Google"
|
970 |
msgstr "Google"
|
971 |
|
972 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
973 |
msgid "Disable map"
|
974 |
msgstr "Відключити карту"
|
975 |
|
976 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
977 |
msgid "Disable the map display"
|
978 |
msgstr "Відключити картове відображення"
|
979 |
|
980 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:81
|
981 |
msgid "Get country location from Google"
|
982 |
msgstr "Отримати розташування країни в Google"
|
983 |
|
984 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:87
|
985 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
986 |
msgstr "Ця функція може привести до зниження продуктивності при перегляді статистики і тільки якщо тип карти встановлено на «Google»."
|
987 |
|
1035 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1036 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1037 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1038 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:96
|
1039 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1040 |
msgid "Update"
|
1041 |
msgstr "Оновлення"
|
1053 |
msgstr "Один раз на 4 тижні"
|
1054 |
|
1055 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1056 |
+
#: wp-statistics/wp-statistics.php:485
|
1057 |
msgid "Statistics"
|
1058 |
msgstr "Статистика"
|
1059 |
|
1126 |
msgid "Items"
|
1127 |
msgstr "Об'єкти"
|
1128 |
|
1129 |
+
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:662
|
1130 |
msgid "Yesterday visit"
|
1131 |
msgstr "Вчорашнє відвідування"
|
1132 |
|
1151 |
msgstr "Повна статистика для вашого сайту WordPress."
|
1152 |
|
1153 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1154 |
+
#: wp-statistics/wp-statistics.php:539
|
1155 |
msgid "Settings"
|
1156 |
msgstr "Налаштування"
|
1157 |
|
1175 |
msgid "WP Statistics - Hits"
|
1176 |
msgstr "WP Statistics - перегляди"
|
1177 |
|
1178 |
+
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:488
|
1179 |
+
#: wp-statistics/wp-statistics.php:526
|
1180 |
msgid "Overview"
|
1181 |
msgstr "Перегляд"
|
1182 |
|
1183 |
+
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:531
|
1184 |
msgid "Online"
|
1185 |
msgstr "Онлайн"
|
1186 |
|
1187 |
+
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:533
|
1188 |
msgid "Referrers"
|
1189 |
msgstr "Рефери"
|
1190 |
|
1191 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1192 |
+
#: wp-statistics/wp-statistics.php:534
|
1193 |
msgid "Searches"
|
1194 |
msgstr "Пошуки"
|
1195 |
|
1196 |
+
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:535
|
1197 |
msgid "Search Words"
|
1198 |
msgstr "Пошукові слова"
|
1199 |
|
1200 |
+
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:536
|
1201 |
msgid "Top Visitors Today"
|
1202 |
msgstr "Топ відвідувачі за сьогодні"
|
1203 |
|
1204 |
+
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:538
|
1205 |
msgid "Optimization"
|
1206 |
msgstr "Оптимізація"
|
1207 |
|
1208 |
+
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:502
|
1209 |
msgid "Manual"
|
1210 |
msgstr "Інструкція"
|
1211 |
|
1212 |
+
#: wp-statistics/wp-statistics.php:517
|
1213 |
msgid "Site"
|
1214 |
msgstr "Сайт"
|
1215 |
|
1216 |
+
#: wp-statistics/wp-statistics.php:518
|
1217 |
msgid "Options"
|
1218 |
msgstr "Опції"
|
1219 |
|
1220 |
+
#: wp-statistics/wp-statistics.php:644
|
1221 |
msgid "Today visitor"
|
1222 |
msgstr "Сьогодняшній відвідувач"
|
1223 |
|
1224 |
+
#: wp-statistics/wp-statistics.php:650
|
1225 |
msgid "Today visit"
|
1226 |
msgstr "Сьогоднішнє відвідування"
|
1227 |
|
1228 |
+
#: wp-statistics/wp-statistics.php:656
|
1229 |
msgid "Yesterday visitor"
|
1230 |
msgstr "Вчорашній відвідувач"
|
1231 |
|
1232 |
+
#: wp-statistics/wp-statistics.php:668
|
1233 |
msgid "View Stats"
|
1234 |
msgstr "Переглянути статистику"
|
1235 |
|
1236 |
+
#: wp-statistics/wp-statistics.php:692
|
1237 |
msgid "Download ODF file"
|
1238 |
msgstr "Завантажити файл ODF "
|
1239 |
|
1240 |
+
#: wp-statistics/wp-statistics.php:693
|
1241 |
msgid "Download HTML file"
|
1242 |
msgstr "Завантажити файл HTML "
|
1243 |
|
1244 |
+
#: wp-statistics/wp-statistics.php:697
|
1245 |
msgid "Manual file not found."
|
1246 |
msgstr "Інструкцію не знайдено."
|
1247 |
|
1248 |
+
#: wp-statistics/wp-statistics.php:764 wp-statistics/wp-statistics.php:891
|
1249 |
+
#: wp-statistics/wp-statistics.php:926
|
1250 |
msgid "You do not have sufficient permissions to access this page."
|
1251 |
msgstr "Ви не маєте достатніх прав для доступу до цієї сторінки."
|
1252 |
|
1307 |
msgid "Top 10 Browsers"
|
1308 |
msgstr "Топ 10 браузерів"
|
1309 |
|
1310 |
+
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:471
|
1311 |
msgid "Top 10 Countries"
|
1312 |
msgstr "Топ 10 країн"
|
1313 |
|
1321 |
msgid "Hit Statistics"
|
1322 |
msgstr "Статистика переглядів"
|
1323 |
|
1324 |
+
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:461
|
1325 |
msgid "Top 10 Pages"
|
1326 |
msgstr "Топ 10 сторінок"
|
1327 |
|
1328 |
#: wp-statistics/dashboard.php:62
|
1329 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1330 |
+
#: wp-statistics/wp-statistics.php:453
|
1331 |
msgid "Recent Visitors"
|
1332 |
msgstr "Нещодавні відвідувачі"
|
1333 |
|
1334 |
#: wp-statistics/dashboard.php:63
|
1335 |
#: wp-statistics/includes/log/top-referring.php:59
|
1336 |
#: wp-statistics/includes/log/top-referring.php:81
|
1337 |
+
#: wp-statistics/wp-statistics.php:468
|
1338 |
msgid "Top Referring Sites"
|
1339 |
msgstr "Топ реферних сайтів"
|
1340 |
|
1341 |
#: wp-statistics/dashboard.php:64
|
1342 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1343 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1344 |
+
#: wp-statistics/wp-statistics.php:451
|
1345 |
msgid "Search Engine Referrals"
|
1346 |
msgstr "Пошукові реферали"
|
1347 |
|
1348 |
+
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:466
|
1349 |
msgid "Summary"
|
1350 |
msgstr "Підсумок"
|
1351 |
|
1352 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1353 |
+
#: wp-statistics/wp-statistics.php:452
|
1354 |
msgid "Latest Search Words"
|
1355 |
msgstr "Останні пошукові слова"
|
1356 |
|
1420 |
msgstr "Натисніть для переміщення"
|
1421 |
|
1422 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1423 |
+
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:467
|
1424 |
+
#: wp-statistics/wp-statistics.php:527
|
1425 |
msgid "Browsers"
|
1426 |
msgstr "Браузери"
|
1427 |
|
1494 |
#: wp-statistics/includes/log/exclusions.php:95
|
1495 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1496 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1497 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1498 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1499 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1500 |
msgid "days"
|
1509 |
msgstr "Графік переглядів"
|
1510 |
|
1511 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1512 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1513 |
msgid "Hits in the last"
|
1514 |
msgstr "Переглядів за останні"
|
1515 |
|
1516 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1517 |
+
#: wp-statistics/includes/log/widgets/hits.php:65
|
1518 |
msgid "Number of visits and visitors"
|
1519 |
msgstr "Кількість відвідувань та відвідувачів"
|
1520 |
|
1521 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1522 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1523 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1524 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1525 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1526 |
msgid "Visit"
|
1528 |
|
1529 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1530 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1531 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1532 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1533 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1534 |
msgid "Visitor"
|
1731 |
msgid "Other"
|
1732 |
msgstr "Інший"
|
1733 |
|
1734 |
+
#: wp-statistics/wp-statistics.php:456
|
1735 |
msgid "Today Visitors Map"
|
1736 |
msgstr "Карта сьогодняшніх відвідувачів"
|
1737 |
|
1786 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1787 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1788 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1789 |
+
#: wp-statistics/wp-statistics.php:530
|
1790 |
msgid "Hits"
|
1791 |
msgstr "Перегляди"
|
1792 |
|
1805 |
|
1806 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1807 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1808 |
+
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:297
|
1809 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1810 |
msgid "Access denied!"
|
1811 |
msgstr "В доступі відмовлено!"
|
1861 |
|
1862 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1863 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1864 |
+
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:528
|
1865 |
msgid "Countries"
|
1866 |
msgstr "Країни"
|
1867 |
|
1946 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1947 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1948 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1949 |
+
#: wp-statistics/wp-statistics.php:537
|
1950 |
msgid "Visitors"
|
1951 |
msgstr "Відвідувачі"
|
1952 |
|
2448 |
#: wp-statistics/includes/log/exclusions.php:197
|
2449 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2450 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2451 |
+
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:529
|
2452 |
msgid "Exclusions"
|
2453 |
msgstr "Вилучення"
|
2454 |
|
2658 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2659 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2660 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2661 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:74
|
2662 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:86
|
2663 |
msgid "Active"
|
2664 |
msgstr "Активний"
|
2665 |
|
languages/wp_statistics-vi.mo
CHANGED
Binary file
|
languages/wp_statistics-vi.po
CHANGED
@@ -7,10 +7,11 @@ msgstr ""
|
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
10 |
-
"X-Generator: GlotPress/1.0
|
|
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#: wp-statistics/ajax.php:
|
14 |
msgid "No matching widget found!"
|
15 |
msgstr ""
|
16 |
|
@@ -46,22 +47,22 @@ msgstr ""
|
|
46 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: wp-statistics/ajax.php:
|
50 |
msgid "ERROR: Widget not found!"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: wp-statistics/dashboard.php:
|
54 |
#: wp-statistics/includes/log/log.php:20
|
55 |
msgid "Loading..."
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: wp-statistics/dashboard.php:
|
59 |
#: wp-statistics/includes/log/log.php:2
|
60 |
msgid "Reloading..."
|
61 |
msgstr ""
|
62 |
|
63 |
#: wp-statistics/includes/log/top-visitors.php:41
|
64 |
-
#: wp-statistics/wp-statistics.php:
|
65 |
msgid "Top Visitors"
|
66 |
msgstr ""
|
67 |
|
@@ -158,7 +159,7 @@ msgstr ""
|
|
158 |
msgid "online user tracking"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: wp-statistics/wp-statistics.php:
|
162 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
163 |
msgstr ""
|
164 |
|
@@ -622,7 +623,7 @@ msgstr "Cho mỗi truy cập vào tài khoản cho một số lượt truy cập
|
|
622 |
|
623 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
624 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
625 |
-
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:
|
626 |
msgid "Pages"
|
627 |
msgstr "Trang"
|
628 |
|
@@ -892,7 +893,7 @@ msgstr ""
|
|
892 |
|
893 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
894 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
895 |
-
#: wp-statistics/wp-statistics.php:
|
896 |
msgid "User Online"
|
897 |
msgstr "Người online"
|
898 |
|
@@ -964,40 +965,23 @@ msgstr ""
|
|
964 |
msgid "Disable the page/post editor widget."
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
968 |
-
msgid "Map type"
|
969 |
-
msgstr "Loại bản đồ"
|
970 |
-
|
971 |
#: wp-statistics/includes/functions/functions.php:440
|
972 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
973 |
msgid "Google"
|
974 |
msgstr "Google"
|
975 |
|
976 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
977 |
-
msgid "JQVMap"
|
978 |
-
msgstr "JQVMap"
|
979 |
-
|
980 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:82
|
981 |
-
msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
|
982 |
-
msgstr "\"Google\" tùy chọn sẽ sử dụng dịch vụ lập bản đồ của Google để vẽ các du khách gần đây (yêu cầu quyền truy cập vào Google)."
|
983 |
-
|
984 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:83
|
985 |
-
msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
|
986 |
-
msgstr "\"JQVMap\" tùy chọn sẽ sử dụng JQVMap thư viện lập bản đồ javascript lô du khách gần đây (yêu cầu không có dịch vụ extenral)."
|
987 |
-
|
988 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:89
|
989 |
msgid "Disable map"
|
990 |
msgstr "Tắt bản đồ"
|
991 |
|
992 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
993 |
msgid "Disable the map display"
|
994 |
msgstr "Tắt hiển thị bản đồ"
|
995 |
|
996 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
997 |
msgid "Get country location from Google"
|
998 |
msgstr "Lấy vị tri trí các quốc gia từ Google"
|
999 |
|
1000 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1001 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
1002 |
msgstr "Tính năng này có thể gây ra một sự xuống cấp hiệu suất khi xem số liệu thống kê và chỉ là hợp lệ nếu loại bản đồ được thiết lập để \"Google\"."
|
1003 |
|
@@ -1051,7 +1035,7 @@ msgstr ""
|
|
1051 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1052 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1053 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1054 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1055 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1056 |
msgid "Update"
|
1057 |
msgstr "Cập nhật"
|
@@ -1069,7 +1053,7 @@ msgid "Once Every 4 Weeks"
|
|
1069 |
msgstr "Một lần mỗi tuần 4"
|
1070 |
|
1071 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1072 |
-
#: wp-statistics/wp-statistics.php:
|
1073 |
msgid "Statistics"
|
1074 |
msgstr "Thống kê"
|
1075 |
|
@@ -1142,7 +1126,7 @@ msgstr "Tên"
|
|
1142 |
msgid "Items"
|
1143 |
msgstr "Mục"
|
1144 |
|
1145 |
-
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:
|
1146 |
msgid "Yesterday visit"
|
1147 |
msgstr "Lượt truy cập hôm qua"
|
1148 |
|
@@ -1167,7 +1151,7 @@ msgid "Complete statistics for your WordPress site."
|
|
1167 |
msgstr "Hoàn thành các thống kê cho trang web WordPress của bạn."
|
1168 |
|
1169 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1170 |
-
#: wp-statistics/wp-statistics.php:
|
1171 |
msgid "Settings"
|
1172 |
msgstr "Cài đặt"
|
1173 |
|
@@ -1191,78 +1175,78 @@ msgstr "Tỷ lệ này plugin"
|
|
1191 |
msgid "WP Statistics - Hits"
|
1192 |
msgstr "Thống kê WP - lượt truy cập"
|
1193 |
|
1194 |
-
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:
|
1195 |
-
#: wp-statistics/wp-statistics.php:
|
1196 |
msgid "Overview"
|
1197 |
msgstr "Tổng quan"
|
1198 |
|
1199 |
-
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:
|
1200 |
msgid "Online"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:
|
1204 |
msgid "Referrers"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1208 |
-
#: wp-statistics/wp-statistics.php:
|
1209 |
msgid "Searches"
|
1210 |
msgstr "Lượt tìm kiếm"
|
1211 |
|
1212 |
-
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:
|
1213 |
msgid "Search Words"
|
1214 |
msgstr "Từ được tìm kiếm"
|
1215 |
|
1216 |
-
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:
|
1217 |
msgid "Top Visitors Today"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
-
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:
|
1221 |
msgid "Optimization"
|
1222 |
msgstr "Tối ưu hóa"
|
1223 |
|
1224 |
-
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:
|
1225 |
msgid "Manual"
|
1226 |
msgstr "Hướng dẫn sử dụng"
|
1227 |
|
1228 |
-
#: wp-statistics/wp-statistics.php:
|
1229 |
msgid "Site"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
-
#: wp-statistics/wp-statistics.php:
|
1233 |
msgid "Options"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
-
#: wp-statistics/wp-statistics.php:
|
1237 |
msgid "Today visitor"
|
1238 |
msgstr "Số người truy câp hôm nay"
|
1239 |
|
1240 |
-
#: wp-statistics/wp-statistics.php:
|
1241 |
msgid "Today visit"
|
1242 |
msgstr "Lượt truy cập hôm nay"
|
1243 |
|
1244 |
-
#: wp-statistics/wp-statistics.php:
|
1245 |
msgid "Yesterday visitor"
|
1246 |
msgstr "Số người truy cập hôm qua"
|
1247 |
|
1248 |
-
#: wp-statistics/wp-statistics.php:
|
1249 |
msgid "View Stats"
|
1250 |
msgstr "Xem số liệu thống kê"
|
1251 |
|
1252 |
-
#: wp-statistics/wp-statistics.php:
|
1253 |
msgid "Download ODF file"
|
1254 |
msgstr "Tải về tập tin ODF"
|
1255 |
|
1256 |
-
#: wp-statistics/wp-statistics.php:
|
1257 |
msgid "Download HTML file"
|
1258 |
msgstr "Tải xuống tệp HTML"
|
1259 |
|
1260 |
-
#: wp-statistics/wp-statistics.php:
|
1261 |
msgid "Manual file not found."
|
1262 |
msgstr "Hướng dẫn sử dụng tập tin không tìm thấy."
|
1263 |
|
1264 |
-
#: wp-statistics/wp-statistics.php:
|
1265 |
-
#: wp-statistics/wp-statistics.php:
|
1266 |
msgid "You do not have sufficient permissions to access this page."
|
1267 |
msgstr ".Bạn không có quyền truy cập trang này"
|
1268 |
|
@@ -1323,7 +1307,7 @@ msgstr ""
|
|
1323 |
msgid "Top 10 Browsers"
|
1324 |
msgstr "Top 10 trình duyệt"
|
1325 |
|
1326 |
-
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:
|
1327 |
msgid "Top 10 Countries"
|
1328 |
msgstr "Top 10 quốc gia"
|
1329 |
|
@@ -1337,36 +1321,36 @@ msgstr ""
|
|
1337 |
msgid "Hit Statistics"
|
1338 |
msgstr "Thống kê Lượt đếm"
|
1339 |
|
1340 |
-
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:
|
1341 |
msgid "Top 10 Pages"
|
1342 |
msgstr "Top 10 trang"
|
1343 |
|
1344 |
#: wp-statistics/dashboard.php:62
|
1345 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1346 |
-
#: wp-statistics/wp-statistics.php:
|
1347 |
msgid "Recent Visitors"
|
1348 |
msgstr "Số người truy cập gần đây nhất"
|
1349 |
|
1350 |
#: wp-statistics/dashboard.php:63
|
1351 |
#: wp-statistics/includes/log/top-referring.php:59
|
1352 |
#: wp-statistics/includes/log/top-referring.php:81
|
1353 |
-
#: wp-statistics/wp-statistics.php:
|
1354 |
msgid "Top Referring Sites"
|
1355 |
msgstr "Trang web giới thiệu hàng đầu"
|
1356 |
|
1357 |
#: wp-statistics/dashboard.php:64
|
1358 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1359 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1360 |
-
#: wp-statistics/wp-statistics.php:
|
1361 |
msgid "Search Engine Referrals"
|
1362 |
msgstr "Tìm kiếm giới thiệu"
|
1363 |
|
1364 |
-
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:
|
1365 |
msgid "Summary"
|
1366 |
msgstr "Tóm tắt"
|
1367 |
|
1368 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1369 |
-
#: wp-statistics/wp-statistics.php:
|
1370 |
msgid "Latest Search Words"
|
1371 |
msgstr "Từ tìm kiếm mới nhất"
|
1372 |
|
@@ -1436,8 +1420,8 @@ msgid "Click to toggle"
|
|
1436 |
msgstr "Nhấn vào đây để chuyển đổi"
|
1437 |
|
1438 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1439 |
-
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:
|
1440 |
-
#: wp-statistics/wp-statistics.php:
|
1441 |
msgid "Browsers"
|
1442 |
msgstr "Trình duyệt"
|
1443 |
|
@@ -1510,7 +1494,7 @@ msgstr "Loại trừ lượt truy cập trong"
|
|
1510 |
#: wp-statistics/includes/log/exclusions.php:95
|
1511 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1512 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1513 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1514 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1515 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1516 |
msgid "days"
|
@@ -1525,18 +1509,18 @@ msgid "Hits Statistics Chart"
|
|
1525 |
msgstr "Biểu đồ thống kê lượt truy cập"
|
1526 |
|
1527 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1528 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1529 |
msgid "Hits in the last"
|
1530 |
msgstr "Lượt truy cập trong"
|
1531 |
|
1532 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1533 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1534 |
msgid "Number of visits and visitors"
|
1535 |
msgstr "Số lượt truy cập và số người truy cập"
|
1536 |
|
1537 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1538 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1539 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1540 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1541 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1542 |
msgid "Visit"
|
@@ -1544,7 +1528,7 @@ msgstr "Lượt truy cập"
|
|
1544 |
|
1545 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1546 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1547 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1548 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1549 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1550 |
msgid "Visitor"
|
@@ -1747,7 +1731,7 @@ msgstr "Sản phẩm này bao gồm dữ liệu GeoLite2 tạo bởi MaxMind, c
|
|
1747 |
msgid "Other"
|
1748 |
msgstr "Khác"
|
1749 |
|
1750 |
-
#: wp-statistics/wp-statistics.php:
|
1751 |
msgid "Today Visitors Map"
|
1752 |
msgstr "Hôm nay truy cập bản đồ"
|
1753 |
|
@@ -1802,7 +1786,7 @@ msgstr "Thời gian: %s"
|
|
1802 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1803 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1804 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1805 |
-
#: wp-statistics/wp-statistics.php:
|
1806 |
msgid "Hits"
|
1807 |
msgstr "Lượt đếm"
|
1808 |
|
@@ -1821,7 +1805,7 @@ msgstr ""
|
|
1821 |
|
1822 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1823 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1824 |
-
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:
|
1825 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1826 |
msgid "Access denied!"
|
1827 |
msgstr "Truy nhập bị Cấm!"
|
@@ -1877,7 +1861,7 @@ msgstr "Cơ sở dữ liệu chỉ mục"
|
|
1877 |
|
1878 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1879 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1880 |
-
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:
|
1881 |
msgid "Countries"
|
1882 |
msgstr "Quốc gia"
|
1883 |
|
@@ -1962,7 +1946,7 @@ msgstr ""
|
|
1962 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1963 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1964 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1965 |
-
#: wp-statistics/wp-statistics.php:
|
1966 |
msgid "Visitors"
|
1967 |
msgstr "Lượng người truy cập"
|
1968 |
|
@@ -2464,7 +2448,7 @@ msgstr "Nếu bạn cần một giải pháp mạnh mẽ hơn để đại biể
|
|
2464 |
#: wp-statistics/includes/log/exclusions.php:197
|
2465 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2466 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2467 |
-
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:
|
2468 |
msgid "Exclusions"
|
2469 |
msgstr "Ngoại trừ"
|
2470 |
|
@@ -2674,8 +2658,8 @@ msgstr "sử dụng browscap"
|
|
2674 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2675 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2676 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2677 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2678 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2679 |
msgid "Active"
|
2680 |
msgstr "Hoạt động"
|
2681 |
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
10 |
+
"X-Generator: GlotPress/2.1.0\n"
|
11 |
+
"Language: vi_VN\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
14 |
+
#: wp-statistics/ajax.php:215
|
15 |
msgid "No matching widget found!"
|
16 |
msgstr ""
|
17 |
|
47 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: wp-statistics/ajax.php:294
|
51 |
msgid "ERROR: Widget not found!"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: wp-statistics/dashboard.php:107 wp-statistics/editor.php:66
|
55 |
#: wp-statistics/includes/log/log.php:20
|
56 |
msgid "Loading..."
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: wp-statistics/dashboard.php:125 wp-statistics/editor.php:84
|
60 |
#: wp-statistics/includes/log/log.php:2
|
61 |
msgid "Reloading..."
|
62 |
msgstr ""
|
63 |
|
64 |
#: wp-statistics/includes/log/top-visitors.php:41
|
65 |
+
#: wp-statistics/wp-statistics.php:450
|
66 |
msgid "Top Visitors"
|
67 |
msgstr ""
|
68 |
|
159 |
msgid "online user tracking"
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: wp-statistics/wp-statistics.php:791
|
163 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
164 |
msgstr ""
|
165 |
|
623 |
|
624 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
625 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
626 |
+
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:532
|
627 |
msgid "Pages"
|
628 |
msgstr "Trang"
|
629 |
|
893 |
|
894 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
895 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
896 |
+
#: wp-statistics/wp-statistics.php:637
|
897 |
msgid "User Online"
|
898 |
msgstr "Người online"
|
899 |
|
965 |
msgid "Disable the page/post editor widget."
|
966 |
msgstr ""
|
967 |
|
|
|
|
|
|
|
|
|
968 |
#: wp-statistics/includes/functions/functions.php:440
|
|
|
969 |
msgid "Google"
|
970 |
msgstr "Google"
|
971 |
|
972 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
973 |
msgid "Disable map"
|
974 |
msgstr "Tắt bản đồ"
|
975 |
|
976 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
977 |
msgid "Disable the map display"
|
978 |
msgstr "Tắt hiển thị bản đồ"
|
979 |
|
980 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:81
|
981 |
msgid "Get country location from Google"
|
982 |
msgstr "Lấy vị tri trí các quốc gia từ Google"
|
983 |
|
984 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:87
|
985 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
986 |
msgstr "Tính năng này có thể gây ra một sự xuống cấp hiệu suất khi xem số liệu thống kê và chỉ là hợp lệ nếu loại bản đồ được thiết lập để \"Google\"."
|
987 |
|
1035 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1036 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1037 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1038 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:96
|
1039 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1040 |
msgid "Update"
|
1041 |
msgstr "Cập nhật"
|
1053 |
msgstr "Một lần mỗi tuần 4"
|
1054 |
|
1055 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1056 |
+
#: wp-statistics/wp-statistics.php:485
|
1057 |
msgid "Statistics"
|
1058 |
msgstr "Thống kê"
|
1059 |
|
1126 |
msgid "Items"
|
1127 |
msgstr "Mục"
|
1128 |
|
1129 |
+
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:662
|
1130 |
msgid "Yesterday visit"
|
1131 |
msgstr "Lượt truy cập hôm qua"
|
1132 |
|
1151 |
msgstr "Hoàn thành các thống kê cho trang web WordPress của bạn."
|
1152 |
|
1153 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1154 |
+
#: wp-statistics/wp-statistics.php:539
|
1155 |
msgid "Settings"
|
1156 |
msgstr "Cài đặt"
|
1157 |
|
1175 |
msgid "WP Statistics - Hits"
|
1176 |
msgstr "Thống kê WP - lượt truy cập"
|
1177 |
|
1178 |
+
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:488
|
1179 |
+
#: wp-statistics/wp-statistics.php:526
|
1180 |
msgid "Overview"
|
1181 |
msgstr "Tổng quan"
|
1182 |
|
1183 |
+
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:531
|
1184 |
msgid "Online"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:533
|
1188 |
msgid "Referrers"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1192 |
+
#: wp-statistics/wp-statistics.php:534
|
1193 |
msgid "Searches"
|
1194 |
msgstr "Lượt tìm kiếm"
|
1195 |
|
1196 |
+
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:535
|
1197 |
msgid "Search Words"
|
1198 |
msgstr "Từ được tìm kiếm"
|
1199 |
|
1200 |
+
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:536
|
1201 |
msgid "Top Visitors Today"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
+
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:538
|
1205 |
msgid "Optimization"
|
1206 |
msgstr "Tối ưu hóa"
|
1207 |
|
1208 |
+
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:502
|
1209 |
msgid "Manual"
|
1210 |
msgstr "Hướng dẫn sử dụng"
|
1211 |
|
1212 |
+
#: wp-statistics/wp-statistics.php:517
|
1213 |
msgid "Site"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
+
#: wp-statistics/wp-statistics.php:518
|
1217 |
msgid "Options"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
+
#: wp-statistics/wp-statistics.php:644
|
1221 |
msgid "Today visitor"
|
1222 |
msgstr "Số người truy câp hôm nay"
|
1223 |
|
1224 |
+
#: wp-statistics/wp-statistics.php:650
|
1225 |
msgid "Today visit"
|
1226 |
msgstr "Lượt truy cập hôm nay"
|
1227 |
|
1228 |
+
#: wp-statistics/wp-statistics.php:656
|
1229 |
msgid "Yesterday visitor"
|
1230 |
msgstr "Số người truy cập hôm qua"
|
1231 |
|
1232 |
+
#: wp-statistics/wp-statistics.php:668
|
1233 |
msgid "View Stats"
|
1234 |
msgstr "Xem số liệu thống kê"
|
1235 |
|
1236 |
+
#: wp-statistics/wp-statistics.php:692
|
1237 |
msgid "Download ODF file"
|
1238 |
msgstr "Tải về tập tin ODF"
|
1239 |
|
1240 |
+
#: wp-statistics/wp-statistics.php:693
|
1241 |
msgid "Download HTML file"
|
1242 |
msgstr "Tải xuống tệp HTML"
|
1243 |
|
1244 |
+
#: wp-statistics/wp-statistics.php:697
|
1245 |
msgid "Manual file not found."
|
1246 |
msgstr "Hướng dẫn sử dụng tập tin không tìm thấy."
|
1247 |
|
1248 |
+
#: wp-statistics/wp-statistics.php:764 wp-statistics/wp-statistics.php:891
|
1249 |
+
#: wp-statistics/wp-statistics.php:926
|
1250 |
msgid "You do not have sufficient permissions to access this page."
|
1251 |
msgstr ".Bạn không có quyền truy cập trang này"
|
1252 |
|
1307 |
msgid "Top 10 Browsers"
|
1308 |
msgstr "Top 10 trình duyệt"
|
1309 |
|
1310 |
+
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:471
|
1311 |
msgid "Top 10 Countries"
|
1312 |
msgstr "Top 10 quốc gia"
|
1313 |
|
1321 |
msgid "Hit Statistics"
|
1322 |
msgstr "Thống kê Lượt đếm"
|
1323 |
|
1324 |
+
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:461
|
1325 |
msgid "Top 10 Pages"
|
1326 |
msgstr "Top 10 trang"
|
1327 |
|
1328 |
#: wp-statistics/dashboard.php:62
|
1329 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1330 |
+
#: wp-statistics/wp-statistics.php:453
|
1331 |
msgid "Recent Visitors"
|
1332 |
msgstr "Số người truy cập gần đây nhất"
|
1333 |
|
1334 |
#: wp-statistics/dashboard.php:63
|
1335 |
#: wp-statistics/includes/log/top-referring.php:59
|
1336 |
#: wp-statistics/includes/log/top-referring.php:81
|
1337 |
+
#: wp-statistics/wp-statistics.php:468
|
1338 |
msgid "Top Referring Sites"
|
1339 |
msgstr "Trang web giới thiệu hàng đầu"
|
1340 |
|
1341 |
#: wp-statistics/dashboard.php:64
|
1342 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1343 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1344 |
+
#: wp-statistics/wp-statistics.php:451
|
1345 |
msgid "Search Engine Referrals"
|
1346 |
msgstr "Tìm kiếm giới thiệu"
|
1347 |
|
1348 |
+
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:466
|
1349 |
msgid "Summary"
|
1350 |
msgstr "Tóm tắt"
|
1351 |
|
1352 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1353 |
+
#: wp-statistics/wp-statistics.php:452
|
1354 |
msgid "Latest Search Words"
|
1355 |
msgstr "Từ tìm kiếm mới nhất"
|
1356 |
|
1420 |
msgstr "Nhấn vào đây để chuyển đổi"
|
1421 |
|
1422 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1423 |
+
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:467
|
1424 |
+
#: wp-statistics/wp-statistics.php:527
|
1425 |
msgid "Browsers"
|
1426 |
msgstr "Trình duyệt"
|
1427 |
|
1494 |
#: wp-statistics/includes/log/exclusions.php:95
|
1495 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1496 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1497 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1498 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1499 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1500 |
msgid "days"
|
1509 |
msgstr "Biểu đồ thống kê lượt truy cập"
|
1510 |
|
1511 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1512 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1513 |
msgid "Hits in the last"
|
1514 |
msgstr "Lượt truy cập trong"
|
1515 |
|
1516 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1517 |
+
#: wp-statistics/includes/log/widgets/hits.php:65
|
1518 |
msgid "Number of visits and visitors"
|
1519 |
msgstr "Số lượt truy cập và số người truy cập"
|
1520 |
|
1521 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1522 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1523 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1524 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1525 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1526 |
msgid "Visit"
|
1528 |
|
1529 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1530 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1531 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1532 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1533 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1534 |
msgid "Visitor"
|
1731 |
msgid "Other"
|
1732 |
msgstr "Khác"
|
1733 |
|
1734 |
+
#: wp-statistics/wp-statistics.php:456
|
1735 |
msgid "Today Visitors Map"
|
1736 |
msgstr "Hôm nay truy cập bản đồ"
|
1737 |
|
1786 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1787 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1788 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1789 |
+
#: wp-statistics/wp-statistics.php:530
|
1790 |
msgid "Hits"
|
1791 |
msgstr "Lượt đếm"
|
1792 |
|
1805 |
|
1806 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1807 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1808 |
+
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:297
|
1809 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1810 |
msgid "Access denied!"
|
1811 |
msgstr "Truy nhập bị Cấm!"
|
1861 |
|
1862 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1863 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1864 |
+
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:528
|
1865 |
msgid "Countries"
|
1866 |
msgstr "Quốc gia"
|
1867 |
|
1946 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1947 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1948 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1949 |
+
#: wp-statistics/wp-statistics.php:537
|
1950 |
msgid "Visitors"
|
1951 |
msgstr "Lượng người truy cập"
|
1952 |
|
2448 |
#: wp-statistics/includes/log/exclusions.php:197
|
2449 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2450 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2451 |
+
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:529
|
2452 |
msgid "Exclusions"
|
2453 |
msgstr "Ngoại trừ"
|
2454 |
|
2658 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2659 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2660 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2661 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:74
|
2662 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:86
|
2663 |
msgid "Active"
|
2664 |
msgstr "Hoạt động"
|
2665 |
|
languages/wp_statistics-zh_CN.mo
CHANGED
Binary file
|
languages/wp_statistics-zh_CN.po
CHANGED
@@ -7,10 +7,11 @@ msgstr ""
|
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
10 |
-
"X-Generator: GlotPress/1.0
|
|
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#: wp-statistics/ajax.php:
|
14 |
msgid "No matching widget found!"
|
15 |
msgstr ""
|
16 |
|
@@ -46,22 +47,22 @@ msgstr ""
|
|
46 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: wp-statistics/ajax.php:
|
50 |
msgid "ERROR: Widget not found!"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: wp-statistics/dashboard.php:
|
54 |
#: wp-statistics/includes/log/log.php:20
|
55 |
msgid "Loading..."
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: wp-statistics/dashboard.php:
|
59 |
#: wp-statistics/includes/log/log.php:2
|
60 |
msgid "Reloading..."
|
61 |
msgstr ""
|
62 |
|
63 |
#: wp-statistics/includes/log/top-visitors.php:41
|
64 |
-
#: wp-statistics/wp-statistics.php:
|
65 |
msgid "Top Visitors"
|
66 |
msgstr ""
|
67 |
|
@@ -158,7 +159,7 @@ msgstr ""
|
|
158 |
msgid "online user tracking"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: wp-statistics/wp-statistics.php:
|
162 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
163 |
msgstr ""
|
164 |
|
@@ -622,7 +623,7 @@ msgstr "每一个访问计算多少位访客,现时 %s "
|
|
622 |
|
623 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
624 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
625 |
-
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:
|
626 |
msgid "Pages"
|
627 |
msgstr "页"
|
628 |
|
@@ -892,7 +893,7 @@ msgstr ""
|
|
892 |
|
893 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
894 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
895 |
-
#: wp-statistics/wp-statistics.php:
|
896 |
msgid "User Online"
|
897 |
msgstr "在线用户"
|
898 |
|
@@ -964,40 +965,23 @@ msgstr ""
|
|
964 |
msgid "Disable the page/post editor widget."
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
968 |
-
msgid "Map type"
|
969 |
-
msgstr "映射类型"
|
970 |
-
|
971 |
#: wp-statistics/includes/functions/functions.php:440
|
972 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
973 |
msgid "Google"
|
974 |
msgstr "谷歌 (Google)"
|
975 |
|
976 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
977 |
-
msgid "JQVMap"
|
978 |
-
msgstr "JQVMap"
|
979 |
-
|
980 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:82
|
981 |
-
msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
|
982 |
-
msgstr "\"Google\"选项将使用谷歌的地图服务密谋最近访客 (要求对谷歌的访问)。"
|
983 |
-
|
984 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:83
|
985 |
-
msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
|
986 |
-
msgstr "\"JQVMap\"选项将使用 JQVMap javascript 映射库密谋最近访客 (需要没有 extenral 服务)。"
|
987 |
-
|
988 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:89
|
989 |
msgid "Disable map"
|
990 |
msgstr "禁用map"
|
991 |
|
992 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
993 |
msgid "Disable the map display"
|
994 |
msgstr "禁用map显示"
|
995 |
|
996 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
997 |
msgid "Get country location from Google"
|
998 |
msgstr "从谷歌获得国家位置信息"
|
999 |
|
1000 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1001 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
1002 |
msgstr "此功能时查看统计信息可能会导致性能下降,只是有效的如果映射类型设置为 \"Google\"。"
|
1003 |
|
@@ -1051,7 +1035,7 @@ msgstr ""
|
|
1051 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1052 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1053 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1054 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1055 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1056 |
msgid "Update"
|
1057 |
msgstr "更新"
|
@@ -1069,7 +1053,7 @@ msgid "Once Every 4 Weeks"
|
|
1069 |
msgstr "每隔 4 周"
|
1070 |
|
1071 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1072 |
-
#: wp-statistics/wp-statistics.php:
|
1073 |
msgid "Statistics"
|
1074 |
msgstr "统计"
|
1075 |
|
@@ -1142,7 +1126,7 @@ msgstr "名称"
|
|
1142 |
msgid "Items"
|
1143 |
msgstr "条目"
|
1144 |
|
1145 |
-
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:
|
1146 |
msgid "Yesterday visit"
|
1147 |
msgstr "昨日访问"
|
1148 |
|
@@ -1167,7 +1151,7 @@ msgid "Complete statistics for your WordPress site."
|
|
1167 |
msgstr "完整的统计资料,为你的 WordPress 站点的。"
|
1168 |
|
1169 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1170 |
-
#: wp-statistics/wp-statistics.php:
|
1171 |
msgid "Settings"
|
1172 |
msgstr "设定"
|
1173 |
|
@@ -1191,78 +1175,78 @@ msgstr "率这个插件"
|
|
1191 |
msgid "WP Statistics - Hits"
|
1192 |
msgstr "WP 统计-命中"
|
1193 |
|
1194 |
-
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:
|
1195 |
-
#: wp-statistics/wp-statistics.php:
|
1196 |
msgid "Overview"
|
1197 |
msgstr "总览"
|
1198 |
|
1199 |
-
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:
|
1200 |
msgid "Online"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:
|
1204 |
msgid "Referrers"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1208 |
-
#: wp-statistics/wp-statistics.php:
|
1209 |
msgid "Searches"
|
1210 |
msgstr "搜索"
|
1211 |
|
1212 |
-
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:
|
1213 |
msgid "Search Words"
|
1214 |
msgstr "词语搜索"
|
1215 |
|
1216 |
-
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:
|
1217 |
msgid "Top Visitors Today"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
-
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:
|
1221 |
msgid "Optimization"
|
1222 |
msgstr "优化"
|
1223 |
|
1224 |
-
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:
|
1225 |
msgid "Manual"
|
1226 |
msgstr "手动"
|
1227 |
|
1228 |
-
#: wp-statistics/wp-statistics.php:
|
1229 |
msgid "Site"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
-
#: wp-statistics/wp-statistics.php:
|
1233 |
msgid "Options"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
-
#: wp-statistics/wp-statistics.php:
|
1237 |
msgid "Today visitor"
|
1238 |
msgstr "累计访客"
|
1239 |
|
1240 |
-
#: wp-statistics/wp-statistics.php:
|
1241 |
msgid "Today visit"
|
1242 |
msgstr "累计访问"
|
1243 |
|
1244 |
-
#: wp-statistics/wp-statistics.php:
|
1245 |
msgid "Yesterday visitor"
|
1246 |
msgstr "昨日访客"
|
1247 |
|
1248 |
-
#: wp-statistics/wp-statistics.php:
|
1249 |
msgid "View Stats"
|
1250 |
msgstr "检阅统计数据"
|
1251 |
|
1252 |
-
#: wp-statistics/wp-statistics.php:
|
1253 |
msgid "Download ODF file"
|
1254 |
msgstr "ODF 文件下载"
|
1255 |
|
1256 |
-
#: wp-statistics/wp-statistics.php:
|
1257 |
msgid "Download HTML file"
|
1258 |
msgstr "下载 HTML 文件"
|
1259 |
|
1260 |
-
#: wp-statistics/wp-statistics.php:
|
1261 |
msgid "Manual file not found."
|
1262 |
msgstr "手动文件找不到。"
|
1263 |
|
1264 |
-
#: wp-statistics/wp-statistics.php:
|
1265 |
-
#: wp-statistics/wp-statistics.php:
|
1266 |
msgid "You do not have sufficient permissions to access this page."
|
1267 |
msgstr "你没有足够权限访问此页"
|
1268 |
|
@@ -1323,7 +1307,7 @@ msgstr ""
|
|
1323 |
msgid "Top 10 Browsers"
|
1324 |
msgstr "排名前十的浏览器"
|
1325 |
|
1326 |
-
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:
|
1327 |
msgid "Top 10 Countries"
|
1328 |
msgstr "前十个国家"
|
1329 |
|
@@ -1337,36 +1321,36 @@ msgstr "今日访问者地图"
|
|
1337 |
msgid "Hit Statistics"
|
1338 |
msgstr "点击统计"
|
1339 |
|
1340 |
-
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:
|
1341 |
msgid "Top 10 Pages"
|
1342 |
msgstr "前 10 页"
|
1343 |
|
1344 |
#: wp-statistics/dashboard.php:62
|
1345 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1346 |
-
#: wp-statistics/wp-statistics.php:
|
1347 |
msgid "Recent Visitors"
|
1348 |
msgstr "最近访客"
|
1349 |
|
1350 |
#: wp-statistics/dashboard.php:63
|
1351 |
#: wp-statistics/includes/log/top-referring.php:59
|
1352 |
#: wp-statistics/includes/log/top-referring.php:81
|
1353 |
-
#: wp-statistics/wp-statistics.php:
|
1354 |
msgid "Top Referring Sites"
|
1355 |
msgstr "引用站点排名"
|
1356 |
|
1357 |
#: wp-statistics/dashboard.php:64
|
1358 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1359 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1360 |
-
#: wp-statistics/wp-statistics.php:
|
1361 |
msgid "Search Engine Referrals"
|
1362 |
msgstr "搜索引擎引用次数"
|
1363 |
|
1364 |
-
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:
|
1365 |
msgid "Summary"
|
1366 |
msgstr "摘要"
|
1367 |
|
1368 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1369 |
-
#: wp-statistics/wp-statistics.php:
|
1370 |
msgid "Latest Search Words"
|
1371 |
msgstr "最新的搜索词"
|
1372 |
|
@@ -1436,8 +1420,8 @@ msgid "Click to toggle"
|
|
1436 |
msgstr "点击切换"
|
1437 |
|
1438 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1439 |
-
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:
|
1440 |
-
#: wp-statistics/wp-statistics.php:
|
1441 |
msgid "Browsers"
|
1442 |
msgstr "浏览器"
|
1443 |
|
@@ -1510,7 +1494,7 @@ msgstr "排除在最后一击中"
|
|
1510 |
#: wp-statistics/includes/log/exclusions.php:95
|
1511 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1512 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1513 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1514 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1515 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1516 |
msgid "days"
|
@@ -1525,18 +1509,18 @@ msgid "Hits Statistics Chart"
|
|
1525 |
msgstr "点击率统计图表"
|
1526 |
|
1527 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1528 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1529 |
msgid "Hits in the last"
|
1530 |
msgstr "在最后一击中"
|
1531 |
|
1532 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1533 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1534 |
msgid "Number of visits and visitors"
|
1535 |
msgstr "访客或点击数量"
|
1536 |
|
1537 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1538 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1539 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1540 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1541 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1542 |
msgid "Visit"
|
@@ -1544,7 +1528,7 @@ msgstr "访问"
|
|
1544 |
|
1545 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1546 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1547 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1548 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1549 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1550 |
msgid "Visitor"
|
@@ -1747,7 +1731,7 @@ msgstr "本产品包含由 MaxMind,可从 %s 创建的 GeoLite2 数据。"
|
|
1747 |
msgid "Other"
|
1748 |
msgstr "其他"
|
1749 |
|
1750 |
-
#: wp-statistics/wp-statistics.php:
|
1751 |
msgid "Today Visitors Map"
|
1752 |
msgstr "今天访客地图"
|
1753 |
|
@@ -1802,7 +1786,7 @@ msgstr "时间: %s"
|
|
1802 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1803 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1804 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1805 |
-
#: wp-statistics/wp-statistics.php:
|
1806 |
msgid "Hits"
|
1807 |
msgstr "点击数"
|
1808 |
|
@@ -1821,7 +1805,7 @@ msgstr ""
|
|
1821 |
|
1822 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1823 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1824 |
-
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:
|
1825 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1826 |
msgid "Access denied!"
|
1827 |
msgstr "拒绝访问"
|
@@ -1877,7 +1861,7 @@ msgstr "数据库索引"
|
|
1877 |
|
1878 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1879 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1880 |
-
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:
|
1881 |
msgid "Countries"
|
1882 |
msgstr "国家"
|
1883 |
|
@@ -1962,7 +1946,7 @@ msgstr ""
|
|
1962 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1963 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1964 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1965 |
-
#: wp-statistics/wp-statistics.php:
|
1966 |
msgid "Visitors"
|
1967 |
msgstr "访客"
|
1968 |
|
@@ -2464,7 +2448,7 @@ msgstr "如果你需要一个更加稳妥的解决方案来优雅的访问,那
|
|
2464 |
#: wp-statistics/includes/log/exclusions.php:197
|
2465 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2466 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2467 |
-
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:
|
2468 |
msgid "Exclusions"
|
2469 |
msgstr "过滤"
|
2470 |
|
@@ -2674,8 +2658,8 @@ msgstr "browscap 使用"
|
|
2674 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2675 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2676 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2677 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2678 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2679 |
msgid "Active"
|
2680 |
msgstr "启动"
|
2681 |
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
10 |
+
"X-Generator: GlotPress/2.1.0\n"
|
11 |
+
"Language: zh_CN\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
14 |
+
#: wp-statistics/ajax.php:215
|
15 |
msgid "No matching widget found!"
|
16 |
msgstr ""
|
17 |
|
47 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: wp-statistics/ajax.php:294
|
51 |
msgid "ERROR: Widget not found!"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: wp-statistics/dashboard.php:107 wp-statistics/editor.php:66
|
55 |
#: wp-statistics/includes/log/log.php:20
|
56 |
msgid "Loading..."
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: wp-statistics/dashboard.php:125 wp-statistics/editor.php:84
|
60 |
#: wp-statistics/includes/log/log.php:2
|
61 |
msgid "Reloading..."
|
62 |
msgstr ""
|
63 |
|
64 |
#: wp-statistics/includes/log/top-visitors.php:41
|
65 |
+
#: wp-statistics/wp-statistics.php:450
|
66 |
msgid "Top Visitors"
|
67 |
msgstr ""
|
68 |
|
159 |
msgid "online user tracking"
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: wp-statistics/wp-statistics.php:791
|
163 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
164 |
msgstr ""
|
165 |
|
623 |
|
624 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
625 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
626 |
+
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:532
|
627 |
msgid "Pages"
|
628 |
msgstr "页"
|
629 |
|
893 |
|
894 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
895 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
896 |
+
#: wp-statistics/wp-statistics.php:637
|
897 |
msgid "User Online"
|
898 |
msgstr "在线用户"
|
899 |
|
965 |
msgid "Disable the page/post editor widget."
|
966 |
msgstr ""
|
967 |
|
|
|
|
|
|
|
|
|
968 |
#: wp-statistics/includes/functions/functions.php:440
|
|
|
969 |
msgid "Google"
|
970 |
msgstr "谷歌 (Google)"
|
971 |
|
972 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
973 |
msgid "Disable map"
|
974 |
msgstr "禁用map"
|
975 |
|
976 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
977 |
msgid "Disable the map display"
|
978 |
msgstr "禁用map显示"
|
979 |
|
980 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:81
|
981 |
msgid "Get country location from Google"
|
982 |
msgstr "从谷歌获得国家位置信息"
|
983 |
|
984 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:87
|
985 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
986 |
msgstr "此功能时查看统计信息可能会导致性能下降,只是有效的如果映射类型设置为 \"Google\"。"
|
987 |
|
1035 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1036 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1037 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1038 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:96
|
1039 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1040 |
msgid "Update"
|
1041 |
msgstr "更新"
|
1053 |
msgstr "每隔 4 周"
|
1054 |
|
1055 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1056 |
+
#: wp-statistics/wp-statistics.php:485
|
1057 |
msgid "Statistics"
|
1058 |
msgstr "统计"
|
1059 |
|
1126 |
msgid "Items"
|
1127 |
msgstr "条目"
|
1128 |
|
1129 |
+
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:662
|
1130 |
msgid "Yesterday visit"
|
1131 |
msgstr "昨日访问"
|
1132 |
|
1151 |
msgstr "完整的统计资料,为你的 WordPress 站点的。"
|
1152 |
|
1153 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1154 |
+
#: wp-statistics/wp-statistics.php:539
|
1155 |
msgid "Settings"
|
1156 |
msgstr "设定"
|
1157 |
|
1175 |
msgid "WP Statistics - Hits"
|
1176 |
msgstr "WP 统计-命中"
|
1177 |
|
1178 |
+
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:488
|
1179 |
+
#: wp-statistics/wp-statistics.php:526
|
1180 |
msgid "Overview"
|
1181 |
msgstr "总览"
|
1182 |
|
1183 |
+
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:531
|
1184 |
msgid "Online"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:533
|
1188 |
msgid "Referrers"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1192 |
+
#: wp-statistics/wp-statistics.php:534
|
1193 |
msgid "Searches"
|
1194 |
msgstr "搜索"
|
1195 |
|
1196 |
+
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:535
|
1197 |
msgid "Search Words"
|
1198 |
msgstr "词语搜索"
|
1199 |
|
1200 |
+
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:536
|
1201 |
msgid "Top Visitors Today"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
+
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:538
|
1205 |
msgid "Optimization"
|
1206 |
msgstr "优化"
|
1207 |
|
1208 |
+
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:502
|
1209 |
msgid "Manual"
|
1210 |
msgstr "手动"
|
1211 |
|
1212 |
+
#: wp-statistics/wp-statistics.php:517
|
1213 |
msgid "Site"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
+
#: wp-statistics/wp-statistics.php:518
|
1217 |
msgid "Options"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
+
#: wp-statistics/wp-statistics.php:644
|
1221 |
msgid "Today visitor"
|
1222 |
msgstr "累计访客"
|
1223 |
|
1224 |
+
#: wp-statistics/wp-statistics.php:650
|
1225 |
msgid "Today visit"
|
1226 |
msgstr "累计访问"
|
1227 |
|
1228 |
+
#: wp-statistics/wp-statistics.php:656
|
1229 |
msgid "Yesterday visitor"
|
1230 |
msgstr "昨日访客"
|
1231 |
|
1232 |
+
#: wp-statistics/wp-statistics.php:668
|
1233 |
msgid "View Stats"
|
1234 |
msgstr "检阅统计数据"
|
1235 |
|
1236 |
+
#: wp-statistics/wp-statistics.php:692
|
1237 |
msgid "Download ODF file"
|
1238 |
msgstr "ODF 文件下载"
|
1239 |
|
1240 |
+
#: wp-statistics/wp-statistics.php:693
|
1241 |
msgid "Download HTML file"
|
1242 |
msgstr "下载 HTML 文件"
|
1243 |
|
1244 |
+
#: wp-statistics/wp-statistics.php:697
|
1245 |
msgid "Manual file not found."
|
1246 |
msgstr "手动文件找不到。"
|
1247 |
|
1248 |
+
#: wp-statistics/wp-statistics.php:764 wp-statistics/wp-statistics.php:891
|
1249 |
+
#: wp-statistics/wp-statistics.php:926
|
1250 |
msgid "You do not have sufficient permissions to access this page."
|
1251 |
msgstr "你没有足够权限访问此页"
|
1252 |
|
1307 |
msgid "Top 10 Browsers"
|
1308 |
msgstr "排名前十的浏览器"
|
1309 |
|
1310 |
+
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:471
|
1311 |
msgid "Top 10 Countries"
|
1312 |
msgstr "前十个国家"
|
1313 |
|
1321 |
msgid "Hit Statistics"
|
1322 |
msgstr "点击统计"
|
1323 |
|
1324 |
+
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:461
|
1325 |
msgid "Top 10 Pages"
|
1326 |
msgstr "前 10 页"
|
1327 |
|
1328 |
#: wp-statistics/dashboard.php:62
|
1329 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1330 |
+
#: wp-statistics/wp-statistics.php:453
|
1331 |
msgid "Recent Visitors"
|
1332 |
msgstr "最近访客"
|
1333 |
|
1334 |
#: wp-statistics/dashboard.php:63
|
1335 |
#: wp-statistics/includes/log/top-referring.php:59
|
1336 |
#: wp-statistics/includes/log/top-referring.php:81
|
1337 |
+
#: wp-statistics/wp-statistics.php:468
|
1338 |
msgid "Top Referring Sites"
|
1339 |
msgstr "引用站点排名"
|
1340 |
|
1341 |
#: wp-statistics/dashboard.php:64
|
1342 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1343 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1344 |
+
#: wp-statistics/wp-statistics.php:451
|
1345 |
msgid "Search Engine Referrals"
|
1346 |
msgstr "搜索引擎引用次数"
|
1347 |
|
1348 |
+
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:466
|
1349 |
msgid "Summary"
|
1350 |
msgstr "摘要"
|
1351 |
|
1352 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1353 |
+
#: wp-statistics/wp-statistics.php:452
|
1354 |
msgid "Latest Search Words"
|
1355 |
msgstr "最新的搜索词"
|
1356 |
|
1420 |
msgstr "点击切换"
|
1421 |
|
1422 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1423 |
+
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:467
|
1424 |
+
#: wp-statistics/wp-statistics.php:527
|
1425 |
msgid "Browsers"
|
1426 |
msgstr "浏览器"
|
1427 |
|
1494 |
#: wp-statistics/includes/log/exclusions.php:95
|
1495 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1496 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1497 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1498 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1499 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1500 |
msgid "days"
|
1509 |
msgstr "点击率统计图表"
|
1510 |
|
1511 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1512 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1513 |
msgid "Hits in the last"
|
1514 |
msgstr "在最后一击中"
|
1515 |
|
1516 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1517 |
+
#: wp-statistics/includes/log/widgets/hits.php:65
|
1518 |
msgid "Number of visits and visitors"
|
1519 |
msgstr "访客或点击数量"
|
1520 |
|
1521 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1522 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1523 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1524 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1525 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1526 |
msgid "Visit"
|
1528 |
|
1529 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1530 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1531 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1532 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1533 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1534 |
msgid "Visitor"
|
1731 |
msgid "Other"
|
1732 |
msgstr "其他"
|
1733 |
|
1734 |
+
#: wp-statistics/wp-statistics.php:456
|
1735 |
msgid "Today Visitors Map"
|
1736 |
msgstr "今天访客地图"
|
1737 |
|
1786 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1787 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1788 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1789 |
+
#: wp-statistics/wp-statistics.php:530
|
1790 |
msgid "Hits"
|
1791 |
msgstr "点击数"
|
1792 |
|
1805 |
|
1806 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1807 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1808 |
+
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:297
|
1809 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1810 |
msgid "Access denied!"
|
1811 |
msgstr "拒绝访问"
|
1861 |
|
1862 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1863 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1864 |
+
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:528
|
1865 |
msgid "Countries"
|
1866 |
msgstr "国家"
|
1867 |
|
1946 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1947 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1948 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1949 |
+
#: wp-statistics/wp-statistics.php:537
|
1950 |
msgid "Visitors"
|
1951 |
msgstr "访客"
|
1952 |
|
2448 |
#: wp-statistics/includes/log/exclusions.php:197
|
2449 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2450 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2451 |
+
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:529
|
2452 |
msgid "Exclusions"
|
2453 |
msgstr "过滤"
|
2454 |
|
2658 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2659 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2660 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2661 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:74
|
2662 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:86
|
2663 |
msgid "Active"
|
2664 |
msgstr "启动"
|
2665 |
|
languages/wp_statistics-zh_TW.mo
CHANGED
Binary file
|
languages/wp_statistics-zh_TW.po
CHANGED
@@ -7,10 +7,11 @@ msgstr ""
|
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
10 |
-
"X-Generator: GlotPress/1.0
|
|
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#: wp-statistics/ajax.php:
|
14 |
msgid "No matching widget found!"
|
15 |
msgstr ""
|
16 |
|
@@ -46,22 +47,22 @@ msgstr ""
|
|
46 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: wp-statistics/ajax.php:
|
50 |
msgid "ERROR: Widget not found!"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: wp-statistics/dashboard.php:
|
54 |
#: wp-statistics/includes/log/log.php:20
|
55 |
msgid "Loading..."
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: wp-statistics/dashboard.php:
|
59 |
#: wp-statistics/includes/log/log.php:2
|
60 |
msgid "Reloading..."
|
61 |
msgstr ""
|
62 |
|
63 |
#: wp-statistics/includes/log/top-visitors.php:41
|
64 |
-
#: wp-statistics/wp-statistics.php:
|
65 |
msgid "Top Visitors"
|
66 |
msgstr ""
|
67 |
|
@@ -158,7 +159,7 @@ msgstr ""
|
|
158 |
msgid "online user tracking"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: wp-statistics/wp-statistics.php:
|
162 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
163 |
msgstr ""
|
164 |
|
@@ -622,7 +623,7 @@ msgstr "每一個訪問計算多少位訪客,現時 %s "
|
|
622 |
|
623 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
624 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
625 |
-
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:
|
626 |
msgid "Pages"
|
627 |
msgstr "頁"
|
628 |
|
@@ -892,7 +893,7 @@ msgstr ""
|
|
892 |
|
893 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
894 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
895 |
-
#: wp-statistics/wp-statistics.php:
|
896 |
msgid "User Online"
|
897 |
msgstr "在線用戶"
|
898 |
|
@@ -964,40 +965,23 @@ msgstr ""
|
|
964 |
msgid "Disable the page/post editor widget."
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
968 |
-
msgid "Map type"
|
969 |
-
msgstr "映射類型"
|
970 |
-
|
971 |
#: wp-statistics/includes/functions/functions.php:440
|
972 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
973 |
msgid "Google"
|
974 |
msgstr "谷歌 (Google)"
|
975 |
|
976 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
977 |
-
msgid "JQVMap"
|
978 |
-
msgstr "JQVMap"
|
979 |
-
|
980 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:82
|
981 |
-
msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
|
982 |
-
msgstr "\"Google\"選項將使用谷歌的地圖服務密謀最近訪客 (要求對谷歌的訪問)。"
|
983 |
-
|
984 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:83
|
985 |
-
msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
|
986 |
-
msgstr "\"JQVMap\"選項將使用 JQVMap javascript 映射庫密謀最近訪客 (需要沒有 extenral 服務)。"
|
987 |
-
|
988 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:89
|
989 |
msgid "Disable map"
|
990 |
msgstr "禁用地圖"
|
991 |
|
992 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
993 |
msgid "Disable the map display"
|
994 |
msgstr "禁用地圖顯示"
|
995 |
|
996 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
997 |
msgid "Get country location from Google"
|
998 |
msgstr "從谷歌獲得國家位置"
|
999 |
|
1000 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1001 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
1002 |
msgstr "此功能時查看統計資訊可能會導致性能下降,只是有效的如果映射類型設置為 \"Google\"。"
|
1003 |
|
@@ -1051,7 +1035,7 @@ msgstr ""
|
|
1051 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1052 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1053 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1054 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
1055 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1056 |
msgid "Update"
|
1057 |
msgstr "更新"
|
@@ -1069,7 +1053,7 @@ msgid "Once Every 4 Weeks"
|
|
1069 |
msgstr "每隔 4 周"
|
1070 |
|
1071 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1072 |
-
#: wp-statistics/wp-statistics.php:
|
1073 |
msgid "Statistics"
|
1074 |
msgstr "統計"
|
1075 |
|
@@ -1142,7 +1126,7 @@ msgstr "名稱"
|
|
1142 |
msgid "Items"
|
1143 |
msgstr "專案"
|
1144 |
|
1145 |
-
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:
|
1146 |
msgid "Yesterday visit"
|
1147 |
msgstr "昨日點擊"
|
1148 |
|
@@ -1167,7 +1151,7 @@ msgid "Complete statistics for your WordPress site."
|
|
1167 |
msgstr "完整的統計資料,為你的 WordPress 網站的。"
|
1168 |
|
1169 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1170 |
-
#: wp-statistics/wp-statistics.php:
|
1171 |
msgid "Settings"
|
1172 |
msgstr "設定"
|
1173 |
|
@@ -1191,78 +1175,78 @@ msgstr "率這個外掛程式"
|
|
1191 |
msgid "WP Statistics - Hits"
|
1192 |
msgstr "WP 統計-命中"
|
1193 |
|
1194 |
-
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:
|
1195 |
-
#: wp-statistics/wp-statistics.php:
|
1196 |
msgid "Overview"
|
1197 |
msgstr "概述"
|
1198 |
|
1199 |
-
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:
|
1200 |
msgid "Online"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:
|
1204 |
msgid "Referrers"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1208 |
-
#: wp-statistics/wp-statistics.php:
|
1209 |
msgid "Searches"
|
1210 |
msgstr "搜索"
|
1211 |
|
1212 |
-
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:
|
1213 |
msgid "Search Words"
|
1214 |
msgstr "搜索詞"
|
1215 |
|
1216 |
-
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:
|
1217 |
msgid "Top Visitors Today"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
-
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:
|
1221 |
msgid "Optimization"
|
1222 |
msgstr "優化"
|
1223 |
|
1224 |
-
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:
|
1225 |
msgid "Manual"
|
1226 |
msgstr "手動"
|
1227 |
|
1228 |
-
#: wp-statistics/wp-statistics.php:
|
1229 |
msgid "Site"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
-
#: wp-statistics/wp-statistics.php:
|
1233 |
msgid "Options"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
-
#: wp-statistics/wp-statistics.php:
|
1237 |
msgid "Today visitor"
|
1238 |
msgstr "累計訪客"
|
1239 |
|
1240 |
-
#: wp-statistics/wp-statistics.php:
|
1241 |
msgid "Today visit"
|
1242 |
msgstr "累計點擊"
|
1243 |
|
1244 |
-
#: wp-statistics/wp-statistics.php:
|
1245 |
msgid "Yesterday visitor"
|
1246 |
msgstr "昨日訪客"
|
1247 |
|
1248 |
-
#: wp-statistics/wp-statistics.php:
|
1249 |
msgid "View Stats"
|
1250 |
msgstr "檢閱統計數據"
|
1251 |
|
1252 |
-
#: wp-statistics/wp-statistics.php:
|
1253 |
msgid "Download ODF file"
|
1254 |
msgstr "ODF 檔下載"
|
1255 |
|
1256 |
-
#: wp-statistics/wp-statistics.php:
|
1257 |
msgid "Download HTML file"
|
1258 |
msgstr "下載 HTML 檔案"
|
1259 |
|
1260 |
-
#: wp-statistics/wp-statistics.php:
|
1261 |
msgid "Manual file not found."
|
1262 |
msgstr "手動檔找不到。"
|
1263 |
|
1264 |
-
#: wp-statistics/wp-statistics.php:
|
1265 |
-
#: wp-statistics/wp-statistics.php:
|
1266 |
msgid "You do not have sufficient permissions to access this page."
|
1267 |
msgstr "你沒有足夠權限訪問此頁"
|
1268 |
|
@@ -1323,7 +1307,7 @@ msgstr ""
|
|
1323 |
msgid "Top 10 Browsers"
|
1324 |
msgstr "排名前十的瀏覽器"
|
1325 |
|
1326 |
-
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:
|
1327 |
msgid "Top 10 Countries"
|
1328 |
msgstr "排名前十的國家"
|
1329 |
|
@@ -1337,36 +1321,36 @@ msgstr ""
|
|
1337 |
msgid "Hit Statistics"
|
1338 |
msgstr "命中統計"
|
1339 |
|
1340 |
-
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:
|
1341 |
msgid "Top 10 Pages"
|
1342 |
msgstr "前 10 頁"
|
1343 |
|
1344 |
#: wp-statistics/dashboard.php:62
|
1345 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1346 |
-
#: wp-statistics/wp-statistics.php:
|
1347 |
msgid "Recent Visitors"
|
1348 |
msgstr "最近訪客"
|
1349 |
|
1350 |
#: wp-statistics/dashboard.php:63
|
1351 |
#: wp-statistics/includes/log/top-referring.php:59
|
1352 |
#: wp-statistics/includes/log/top-referring.php:81
|
1353 |
-
#: wp-statistics/wp-statistics.php:
|
1354 |
msgid "Top Referring Sites"
|
1355 |
msgstr "引用網站排名"
|
1356 |
|
1357 |
#: wp-statistics/dashboard.php:64
|
1358 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1359 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1360 |
-
#: wp-statistics/wp-statistics.php:
|
1361 |
msgid "Search Engine Referrals"
|
1362 |
msgstr "搜尋引擎推薦"
|
1363 |
|
1364 |
-
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:
|
1365 |
msgid "Summary"
|
1366 |
msgstr "摘要"
|
1367 |
|
1368 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1369 |
-
#: wp-statistics/wp-statistics.php:
|
1370 |
msgid "Latest Search Words"
|
1371 |
msgstr "最新的搜索詞"
|
1372 |
|
@@ -1436,8 +1420,8 @@ msgid "Click to toggle"
|
|
1436 |
msgstr "按一下可切換"
|
1437 |
|
1438 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1439 |
-
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:
|
1440 |
-
#: wp-statistics/wp-statistics.php:
|
1441 |
msgid "Browsers"
|
1442 |
msgstr "瀏覽器"
|
1443 |
|
@@ -1510,7 +1494,7 @@ msgstr "排除在最後一擊中"
|
|
1510 |
#: wp-statistics/includes/log/exclusions.php:95
|
1511 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1512 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1513 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1514 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1515 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1516 |
msgid "days"
|
@@ -1525,18 +1509,18 @@ msgid "Hits Statistics Chart"
|
|
1525 |
msgstr "點擊率統計圖表"
|
1526 |
|
1527 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1528 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1529 |
msgid "Hits in the last"
|
1530 |
msgstr "在最後一擊中"
|
1531 |
|
1532 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1533 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1534 |
msgid "Number of visits and visitors"
|
1535 |
msgstr "訪客或點擊數量"
|
1536 |
|
1537 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1538 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1539 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1540 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1541 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1542 |
msgid "Visit"
|
@@ -1544,7 +1528,7 @@ msgstr "點擊"
|
|
1544 |
|
1545 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1546 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1547 |
-
#: wp-statistics/includes/log/widgets/hits.php:
|
1548 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1549 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1550 |
msgid "Visitor"
|
@@ -1747,7 +1731,7 @@ msgstr "本產品包含由 MaxMind,可從 %s 創建的 GeoLite2 資料。"
|
|
1747 |
msgid "Other"
|
1748 |
msgstr "其他"
|
1749 |
|
1750 |
-
#: wp-statistics/wp-statistics.php:
|
1751 |
msgid "Today Visitors Map"
|
1752 |
msgstr "今天訪客地圖"
|
1753 |
|
@@ -1802,7 +1786,7 @@ msgstr "時間: %s"
|
|
1802 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1803 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1804 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1805 |
-
#: wp-statistics/wp-statistics.php:
|
1806 |
msgid "Hits"
|
1807 |
msgstr "命中"
|
1808 |
|
@@ -1821,7 +1805,7 @@ msgstr ""
|
|
1821 |
|
1822 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1823 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1824 |
-
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:
|
1825 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1826 |
msgid "Access denied!"
|
1827 |
msgstr "訪問被拒絕 !"
|
@@ -1877,7 +1861,7 @@ msgstr "資料庫索引"
|
|
1877 |
|
1878 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1879 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1880 |
-
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:
|
1881 |
msgid "Countries"
|
1882 |
msgstr "國家"
|
1883 |
|
@@ -1962,7 +1946,7 @@ msgstr ""
|
|
1962 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1963 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1964 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1965 |
-
#: wp-statistics/wp-statistics.php:
|
1966 |
msgid "Visitors"
|
1967 |
msgstr "訪客"
|
1968 |
|
@@ -2464,7 +2448,7 @@ msgstr "如果你需要一個更加健壯的解決方案,委派你可能想看
|
|
2464 |
#: wp-statistics/includes/log/exclusions.php:197
|
2465 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2466 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2467 |
-
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:
|
2468 |
msgid "Exclusions"
|
2469 |
msgstr "排除"
|
2470 |
|
@@ -2674,8 +2658,8 @@ msgstr "browscap 使用"
|
|
2674 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2675 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2676 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2677 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2678 |
-
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:
|
2679 |
msgid "Active"
|
2680 |
msgstr "啟動"
|
2681 |
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
10 |
+
"X-Generator: GlotPress/2.1.0\n"
|
11 |
+
"Language: zh_TW\n"
|
12 |
"Project-Id-Version: WP Statistics\n"
|
13 |
|
14 |
+
#: wp-statistics/ajax.php:215
|
15 |
msgid "No matching widget found!"
|
16 |
msgstr ""
|
17 |
|
47 |
msgid "Please contact your hosting provider to upgrade to a supported version or disable WP Statistics to remove this message."
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: wp-statistics/ajax.php:294
|
51 |
msgid "ERROR: Widget not found!"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: wp-statistics/dashboard.php:107 wp-statistics/editor.php:66
|
55 |
#: wp-statistics/includes/log/log.php:20
|
56 |
msgid "Loading..."
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: wp-statistics/dashboard.php:125 wp-statistics/editor.php:84
|
60 |
#: wp-statistics/includes/log/log.php:2
|
61 |
msgid "Reloading..."
|
62 |
msgstr ""
|
63 |
|
64 |
#: wp-statistics/includes/log/top-visitors.php:41
|
65 |
+
#: wp-statistics/wp-statistics.php:450
|
66 |
msgid "Top Visitors"
|
67 |
msgstr ""
|
68 |
|
159 |
msgid "online user tracking"
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: wp-statistics/wp-statistics.php:791
|
163 |
msgid "The following plugin table(s) do not exist in the database, please re-run the %s install routine %s: "
|
164 |
msgstr ""
|
165 |
|
623 |
|
624 |
#: wp-statistics/includes/settings/tabs/wps-general.php:177
|
625 |
#: wp-statistics/includes/settings/tabs/wps-general.php:182
|
626 |
+
#: wp-statistics/wp-statistics.php:418 wp-statistics/wp-statistics.php:532
|
627 |
msgid "Pages"
|
628 |
msgstr "頁"
|
629 |
|
893 |
|
894 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
895 |
#: wp-statistics/widget.php:38 wp-statistics/widget.php:247
|
896 |
+
#: wp-statistics/wp-statistics.php:637
|
897 |
msgid "User Online"
|
898 |
msgstr "在線用戶"
|
899 |
|
965 |
msgid "Disable the page/post editor widget."
|
966 |
msgstr ""
|
967 |
|
|
|
|
|
|
|
|
|
968 |
#: wp-statistics/includes/functions/functions.php:440
|
|
|
969 |
msgid "Google"
|
970 |
msgstr "谷歌 (Google)"
|
971 |
|
972 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:69
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
973 |
msgid "Disable map"
|
974 |
msgstr "禁用地圖"
|
975 |
|
976 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
977 |
msgid "Disable the map display"
|
978 |
msgstr "禁用地圖顯示"
|
979 |
|
980 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:81
|
981 |
msgid "Get country location from Google"
|
982 |
msgstr "從谷歌獲得國家位置"
|
983 |
|
984 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:87
|
985 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
986 |
msgstr "此功能時查看統計資訊可能會導致性能下降,只是有效的如果映射類型設置為 \"Google\"。"
|
987 |
|
1035 |
#: wp-statistics/includes/settings/tabs/wps-general.php:349
|
1036 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:88
|
1037 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
1038 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:96
|
1039 |
#: wp-statistics/includes/settings/tabs/wps-removal.php:42
|
1040 |
msgid "Update"
|
1041 |
msgstr "更新"
|
1053 |
msgstr "每隔 4 周"
|
1054 |
|
1055 |
#: wp-statistics/widget.php:14 wp-statistics/wp-statistics.php:408
|
1056 |
+
#: wp-statistics/wp-statistics.php:485
|
1057 |
msgid "Statistics"
|
1058 |
msgstr "統計"
|
1059 |
|
1126 |
msgid "Items"
|
1127 |
msgstr "專案"
|
1128 |
|
1129 |
+
#: wp-statistics/widget.php:256 wp-statistics/wp-statistics.php:662
|
1130 |
msgid "Yesterday visit"
|
1131 |
msgstr "昨日點擊"
|
1132 |
|
1151 |
msgstr "完整的統計資料,為你的 WordPress 網站的。"
|
1152 |
|
1153 |
#: wp-statistics/wp-statistics.php:313 wp-statistics/wp-statistics.php:428
|
1154 |
+
#: wp-statistics/wp-statistics.php:539
|
1155 |
msgid "Settings"
|
1156 |
msgstr "設定"
|
1157 |
|
1175 |
msgid "WP Statistics - Hits"
|
1176 |
msgstr "WP 統計-命中"
|
1177 |
|
1178 |
+
#: wp-statistics/wp-statistics.php:411 wp-statistics/wp-statistics.php:488
|
1179 |
+
#: wp-statistics/wp-statistics.php:526
|
1180 |
msgid "Overview"
|
1181 |
msgstr "概述"
|
1182 |
|
1183 |
+
#: wp-statistics/wp-statistics.php:417 wp-statistics/wp-statistics.php:531
|
1184 |
msgid "Online"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: wp-statistics/wp-statistics.php:419 wp-statistics/wp-statistics.php:533
|
1188 |
msgid "Referrers"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
#: wp-statistics/shortcode.php:142 wp-statistics/wp-statistics.php:420
|
1192 |
+
#: wp-statistics/wp-statistics.php:534
|
1193 |
msgid "Searches"
|
1194 |
msgstr "搜索"
|
1195 |
|
1196 |
+
#: wp-statistics/wp-statistics.php:421 wp-statistics/wp-statistics.php:535
|
1197 |
msgid "Search Words"
|
1198 |
msgstr "搜索詞"
|
1199 |
|
1200 |
+
#: wp-statistics/wp-statistics.php:422 wp-statistics/wp-statistics.php:536
|
1201 |
msgid "Top Visitors Today"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
+
#: wp-statistics/wp-statistics.php:427 wp-statistics/wp-statistics.php:538
|
1205 |
msgid "Optimization"
|
1206 |
msgstr "優化"
|
1207 |
|
1208 |
+
#: wp-statistics/wp-statistics.php:433 wp-statistics/wp-statistics.php:502
|
1209 |
msgid "Manual"
|
1210 |
msgstr "手動"
|
1211 |
|
1212 |
+
#: wp-statistics/wp-statistics.php:517
|
1213 |
msgid "Site"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
+
#: wp-statistics/wp-statistics.php:518
|
1217 |
msgid "Options"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
+
#: wp-statistics/wp-statistics.php:644
|
1221 |
msgid "Today visitor"
|
1222 |
msgstr "累計訪客"
|
1223 |
|
1224 |
+
#: wp-statistics/wp-statistics.php:650
|
1225 |
msgid "Today visit"
|
1226 |
msgstr "累計點擊"
|
1227 |
|
1228 |
+
#: wp-statistics/wp-statistics.php:656
|
1229 |
msgid "Yesterday visitor"
|
1230 |
msgstr "昨日訪客"
|
1231 |
|
1232 |
+
#: wp-statistics/wp-statistics.php:668
|
1233 |
msgid "View Stats"
|
1234 |
msgstr "檢閱統計數據"
|
1235 |
|
1236 |
+
#: wp-statistics/wp-statistics.php:692
|
1237 |
msgid "Download ODF file"
|
1238 |
msgstr "ODF 檔下載"
|
1239 |
|
1240 |
+
#: wp-statistics/wp-statistics.php:693
|
1241 |
msgid "Download HTML file"
|
1242 |
msgstr "下載 HTML 檔案"
|
1243 |
|
1244 |
+
#: wp-statistics/wp-statistics.php:697
|
1245 |
msgid "Manual file not found."
|
1246 |
msgstr "手動檔找不到。"
|
1247 |
|
1248 |
+
#: wp-statistics/wp-statistics.php:764 wp-statistics/wp-statistics.php:891
|
1249 |
+
#: wp-statistics/wp-statistics.php:926
|
1250 |
msgid "You do not have sufficient permissions to access this page."
|
1251 |
msgstr "你沒有足夠權限訪問此頁"
|
1252 |
|
1307 |
msgid "Top 10 Browsers"
|
1308 |
msgstr "排名前十的瀏覽器"
|
1309 |
|
1310 |
+
#: wp-statistics/dashboard.php:58 wp-statistics/wp-statistics.php:471
|
1311 |
msgid "Top 10 Countries"
|
1312 |
msgstr "排名前十的國家"
|
1313 |
|
1321 |
msgid "Hit Statistics"
|
1322 |
msgstr "命中統計"
|
1323 |
|
1324 |
+
#: wp-statistics/dashboard.php:61 wp-statistics/wp-statistics.php:461
|
1325 |
msgid "Top 10 Pages"
|
1326 |
msgstr "前 10 頁"
|
1327 |
|
1328 |
#: wp-statistics/dashboard.php:62
|
1329 |
#: wp-statistics/includes/log/last-visitor.php:36
|
1330 |
+
#: wp-statistics/wp-statistics.php:453
|
1331 |
msgid "Recent Visitors"
|
1332 |
msgstr "最近訪客"
|
1333 |
|
1334 |
#: wp-statistics/dashboard.php:63
|
1335 |
#: wp-statistics/includes/log/top-referring.php:59
|
1336 |
#: wp-statistics/includes/log/top-referring.php:81
|
1337 |
+
#: wp-statistics/wp-statistics.php:468
|
1338 |
msgid "Top Referring Sites"
|
1339 |
msgstr "引用網站排名"
|
1340 |
|
1341 |
#: wp-statistics/dashboard.php:64
|
1342 |
#: wp-statistics/includes/log/widgets/quickstats.php:75
|
1343 |
#: wp-statistics/includes/log/widgets/summary.php:75
|
1344 |
+
#: wp-statistics/wp-statistics.php:451
|
1345 |
msgid "Search Engine Referrals"
|
1346 |
msgstr "搜尋引擎推薦"
|
1347 |
|
1348 |
+
#: wp-statistics/dashboard.php:65 wp-statistics/wp-statistics.php:466
|
1349 |
msgid "Summary"
|
1350 |
msgstr "摘要"
|
1351 |
|
1352 |
#: wp-statistics/dashboard.php:66 wp-statistics/includes/log/last-search.php:31
|
1353 |
+
#: wp-statistics/wp-statistics.php:452
|
1354 |
msgid "Latest Search Words"
|
1355 |
msgstr "最新的搜索詞"
|
1356 |
|
1420 |
msgstr "按一下可切換"
|
1421 |
|
1422 |
#: wp-statistics/includes/log/all-browsers.php:30
|
1423 |
+
#: wp-statistics/wp-statistics.php:413 wp-statistics/wp-statistics.php:467
|
1424 |
+
#: wp-statistics/wp-statistics.php:527
|
1425 |
msgid "Browsers"
|
1426 |
msgstr "瀏覽器"
|
1427 |
|
1494 |
#: wp-statistics/includes/log/exclusions.php:95
|
1495 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1496 |
#: wp-statistics/includes/log/search-statistics.php:69
|
1497 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1498 |
#: wp-statistics/includes/log/widgets/search.php:42
|
1499 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:208
|
1500 |
msgid "days"
|
1509 |
msgstr "點擊率統計圖表"
|
1510 |
|
1511 |
#: wp-statistics/includes/log/hit-statistics.php:66
|
1512 |
+
#: wp-statistics/includes/log/widgets/hits.php:44
|
1513 |
msgid "Hits in the last"
|
1514 |
msgstr "在最後一擊中"
|
1515 |
|
1516 |
#: wp-statistics/includes/log/hit-statistics.php:87
|
1517 |
+
#: wp-statistics/includes/log/widgets/hits.php:65
|
1518 |
msgid "Number of visits and visitors"
|
1519 |
msgstr "訪客或點擊數量"
|
1520 |
|
1521 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1522 |
#: wp-statistics/includes/log/hit-statistics.php:170
|
1523 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1524 |
#: wp-statistics/includes/log/widgets/quickstats.php:24
|
1525 |
#: wp-statistics/includes/log/widgets/summary.php:24
|
1526 |
msgid "Visit"
|
1528 |
|
1529 |
#: wp-statistics/includes/log/hit-statistics.php:101
|
1530 |
#: wp-statistics/includes/log/hit-statistics.php:171
|
1531 |
+
#: wp-statistics/includes/log/widgets/hits.php:79
|
1532 |
#: wp-statistics/includes/log/widgets/quickstats.php:23
|
1533 |
#: wp-statistics/includes/log/widgets/summary.php:23
|
1534 |
msgid "Visitor"
|
1731 |
msgid "Other"
|
1732 |
msgstr "其他"
|
1733 |
|
1734 |
+
#: wp-statistics/wp-statistics.php:456
|
1735 |
msgid "Today Visitors Map"
|
1736 |
msgstr "今天訪客地圖"
|
1737 |
|
1786 |
#: wp-statistics/includes/log/widgets/top.visitors.php:12
|
1787 |
#: wp-statistics/includes/settings/tabs/wps-maintenance.php:80
|
1788 |
#: wp-statistics/wp-statistics.php:337 wp-statistics/wp-statistics.php:416
|
1789 |
+
#: wp-statistics/wp-statistics.php:530
|
1790 |
msgid "Hits"
|
1791 |
msgstr "命中"
|
1792 |
|
1805 |
|
1806 |
#: wp-statistics/ajax.php:41 wp-statistics/ajax.php:71
|
1807 |
#: wp-statistics/ajax.php:129 wp-statistics/ajax.php:154
|
1808 |
+
#: wp-statistics/ajax.php:184 wp-statistics/ajax.php:297
|
1809 |
#: wp-statistics/includes/optimization/wps-optimization.php:6
|
1810 |
msgid "Access denied!"
|
1811 |
msgstr "訪問被拒絕 !"
|
1861 |
|
1862 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1863 |
#: wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1864 |
+
#: wp-statistics/wp-statistics.php:414 wp-statistics/wp-statistics.php:528
|
1865 |
msgid "Countries"
|
1866 |
msgstr "國家"
|
1867 |
|
1946 |
#: wp-statistics/includes/settings/tabs/wps-general.php:138
|
1947 |
#: wp-statistics/includes/settings/tabs/wps-general.php:143
|
1948 |
#: wp-statistics/shortcode.php:140 wp-statistics/wp-statistics.php:423
|
1949 |
+
#: wp-statistics/wp-statistics.php:537
|
1950 |
msgid "Visitors"
|
1951 |
msgstr "訪客"
|
1952 |
|
2448 |
#: wp-statistics/includes/log/exclusions.php:197
|
2449 |
#: wp-statistics/includes/settings/tabs/wps-exclusions.php:46
|
2450 |
#: wp-statistics/includes/settings/wps-settings.php:104
|
2451 |
+
#: wp-statistics/wp-statistics.php:415 wp-statistics/wp-statistics.php:529
|
2452 |
msgid "Exclusions"
|
2453 |
msgstr "排除"
|
2454 |
|
2658 |
#: wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2659 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2660 |
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:54
|
2661 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:74
|
2662 |
+
#: wp-statistics/includes/settings/tabs/wps-overview-display.php:86
|
2663 |
msgid "Active"
|
2664 |
msgstr "啟動"
|
2665 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://wp-statistics.com/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.5
|
7 |
-
Stable tag: 10.
|
8 |
License: GPL3
|
9 |
|
10 |
Complete statistics for your WordPress site.
|
@@ -221,6 +221,26 @@ At the end of the message will be a list of tables that are missing, you can use
|
|
221 |
|
222 |
If you still have issues open a new thread on the support forum and we'll try and resolve it for you.
|
223 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
224 |
== Screenshots ==
|
225 |
1. View stats page.
|
226 |
2. View latest search words.
|
@@ -234,10 +254,19 @@ If you still have issues open a new thread on the support forum and we'll try an
|
|
234 |
10. View latest search engine referrers Statistics page.
|
235 |
|
236 |
== Upgrade Notice ==
|
237 |
-
= 10.
|
238 |
-
This is primarily a maintenance release with updates to various libraries and bug fixes.
|
239 |
|
240 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
241 |
= 10.1 =
|
242 |
* Release Date: April 3, 2016
|
243 |
* Updated: Top pages page to list the stats for the selected date range in the page list.
|
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.5
|
7 |
+
Stable tag: 10.2
|
8 |
License: GPL3
|
9 |
|
10 |
Complete statistics for your WordPress site.
|
221 |
|
222 |
If you still have issues open a new thread on the support forum and we'll try and resolve it for you.
|
223 |
|
224 |
+
= I've changed the permissions for WP Statistics access and now I've lost access to it myself, how to I fix it? =
|
225 |
+
|
226 |
+
If you have access to phpMyAdmin (or similar tool) you can query the wp_options table:
|
227 |
+
|
228 |
+
SELECT * FROM wp_options WHERE option_name = 'wp_statistics';
|
229 |
+
|
230 |
+
Then edit the value, inside the string will be something like (note: "edit_plugins" will be whatever permission you selected):
|
231 |
+
|
232 |
+
s:15:"read_capability";s:12:"edit_plugins";s:17:"manage_capability";s:12:"edit_plugins";
|
233 |
+
|
234 |
+
Replace it with:
|
235 |
+
|
236 |
+
s:15:"read_capability";s:14:"manage_options";s:17:"manage_capability";s:14:"manage_options";
|
237 |
+
|
238 |
+
= I see error messages in my PHP log like "WordPress database error Duplicate entry 'YYYY-MM-DD' for key 'unique_date' for ..." =
|
239 |
+
|
240 |
+
This is caused by a race condition in the code, it's safe to ignore (it shouldn't be labeled as an error really, but that is part of WordPress that we can't control).
|
241 |
+
|
242 |
+
It happens when a new day starts and two visitors hit the site at nearly the same time for the first visit of the day. Both try and create a new row in the table to track the days visits, but only one of them success and the other throws this warning.
|
243 |
+
|
244 |
== Screenshots ==
|
245 |
1. View stats page.
|
246 |
2. View latest search words.
|
254 |
10. View latest search engine referrers Statistics page.
|
255 |
|
256 |
== Upgrade Notice ==
|
257 |
+
= 10.2 =
|
258 |
+
This is primarily a maintenance release with updates to various libraries and bug fixes, note that Google Maps is no longer supported.
|
259 |
|
260 |
== Changelog ==
|
261 |
+
= 10.2 =
|
262 |
+
* Release Date: August 2, 2016
|
263 |
+
* Added: Support for use page id in Get_Historical_Data function.
|
264 |
+
* Updated: jQuery CSS references.
|
265 |
+
* Fixed: Various WP_DEBUG warnings.
|
266 |
+
* Fixed: Incorrect URL in quick access widget for some of the totals.
|
267 |
+
* Fixed: Make sure to escape the post title in the widget otherwise the graph may not be displayed correctly.
|
268 |
+
* Removed: Google Maps support as Google no longer supports keyless access to the API (http://googlegeodevelopers.blogspot.com.es/2016/06/building-for-scale-updates-to-google.html).
|
269 |
+
|
270 |
= 10.1 =
|
271 |
* Release Date: April 3, 2016
|
272 |
* Updated: Top pages page to list the stats for the selected date range in the page list.
|
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: 10.
|
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', '10.
|
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);
|
@@ -870,14 +870,9 @@ License: GPL2
|
|
870 |
|
871 |
} else {
|
872 |
|
873 |
-
|
874 |
-
|
875 |
-
|
876 |
-
wp_enqueue_script('jquery-vmap', plugin_dir_url(__FILE__) . 'assets/jqvmap/jquery.vmap.min.js', true, '1.1');
|
877 |
-
wp_enqueue_script('jquery-vmap-world', plugin_dir_url(__FILE__) . 'assets/jqvmap/maps/jquery.vmap.world.js', true, '1.1');
|
878 |
-
} else {
|
879 |
-
wp_enqueue_script('google-maps', 'https://maps.google.com/maps/api/js');
|
880 |
-
}
|
881 |
|
882 |
// Load our custom widgets handling javascript.
|
883 |
wp_enqueue_script('wp_statistics_log', plugin_dir_url(__FILE__) . 'assets/js/log.js');
|
3 |
Plugin Name: WP Statistics
|
4 |
Plugin URI: http://wp-statistics.com/
|
5 |
Description: Complete statistics for your WordPress site.
|
6 |
+
Version: 10.2
|
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', '10.2');
|
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);
|
870 |
|
871 |
} else {
|
872 |
|
873 |
+
wp_enqueue_style('jqvmap-css', plugin_dir_url(__FILE__) . 'assets/jqvmap/jqvmap.css', true, '1.1');
|
874 |
+
wp_enqueue_script('jquery-vmap', plugin_dir_url(__FILE__) . 'assets/jqvmap/jquery.vmap.min.js', true, '1.1');
|
875 |
+
wp_enqueue_script('jquery-vmap-world', plugin_dir_url(__FILE__) . 'assets/jqvmap/maps/jquery.vmap.world.js', true, '1.1');
|
|
|
|
|
|
|
|
|
|
|
876 |
|
877 |
// Load our custom widgets handling javascript.
|
878 |
wp_enqueue_script('wp_statistics_log', plugin_dir_url(__FILE__) . 'assets/js/log.js');
|