Version Description
If upgrading from pre-9.0, please make sure to backup your database before installing. Once installed, please go to Statistics->Optimization->Database and add the visits index.
Download this release
Release Info
Developer | GregRoss |
Plugin | WP Statistics |
Version | 9.3 |
Comparing to | |
See all releases |
Code changes from version 9.2 to 9.3
- ajax.php +185 -0
- assets/css/log.css +7 -6
- assets/css/rtl.css +6 -0
- dashboard.php +11 -11
- includes/classes/hits.class.php +6 -1
- includes/classes/statistics.class.php +33 -10
- includes/functions/export.php +84 -0
- includes/functions/functions.php +17 -3
- includes/functions/manual.php +41 -0
- includes/functions/purge-hits.php +50 -0
- includes/log/exclusions.php +34 -3
- includes/log/hit-statistics.php +40 -0
- includes/log/log.php +21 -0
- includes/log/top-countries.php +17 -1
- includes/log/widgets/browsers.php +4 -0
- includes/log/widgets/countries.php +1 -1
- includes/log/widgets/google.map.php +1 -1
- includes/log/widgets/hits.php +28 -18
- includes/log/widgets/jqv.map.php +1 -1
- includes/log/widgets/page.php +2 -0
- includes/log/widgets/pages.php +4 -1
- includes/log/widgets/recent.php +4 -1
- includes/log/widgets/referring.php +6 -2
- includes/log/widgets/search.php +4 -0
- includes/log/widgets/summary.php +30 -17
- includes/log/widgets/top.visitors.php +3 -0
- includes/log/widgets/words.php +4 -0
- includes/optimization/delete-agents.php +0 -23
- includes/optimization/delete-platforms.php +0 -23
- includes/optimization/empty.php +0 -59
- includes/optimization/export.php +0 -82
- includes/optimization/purge-data.php +0 -17
- includes/optimization/tabs/wps-optimization-export.php +2 -1
- includes/optimization/tabs/wps-optimization-purging.php +100 -29
- includes/settings/tabs/wps-about.php +8 -0
- includes/settings/tabs/wps-access-level.php +2 -2
- includes/settings/tabs/wps-general.php +13 -1
- includes/settings/tabs/wps-geoip.php +1 -1
- includes/settings/tabs/wps-maintenance.php +26 -2
- languages/default.mo +0 -0
- languages/default.po +959 -957
- languages/wp_statistics-ar.mo +0 -0
- languages/wp_statistics-ar.po +918 -879
- languages/wp_statistics-bg_BG.mo +0 -0
- languages/wp_statistics-bg_BG.po +904 -865
- languages/wp_statistics-bn_BD.po +904 -865
- languages/wp_statistics-ckb.mo +0 -0
- languages/wp_statistics-ckb.po +904 -865
- languages/wp_statistics-cs.mo +0 -0
- languages/wp_statistics-cs.po +360 -221
ajax.php
ADDED
@@ -0,0 +1,185 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
// Setup an AJAX action to close the donation nag banner on the overview page.
|
4 |
+
function wp_statistics_close_donation_nag_action_callback() {
|
5 |
+
GLOBAL $WP_Statistics, $wpdb; // this is how you get access to the database
|
6 |
+
|
7 |
+
$manage_cap = wp_statistics_validate_capability( $WP_Statistics->get_option('manage_capability', 'manage_options') );
|
8 |
+
|
9 |
+
if( current_user_can( $manage_cap ) ) {
|
10 |
+
$WP_Statistics->update_option( 'disable_donation_nag', true );
|
11 |
+
}
|
12 |
+
|
13 |
+
wp_die(); // this is required to terminate immediately and return a proper response
|
14 |
+
}
|
15 |
+
add_action( 'wp_ajax_wp_statistics_close_donation_nag', 'wp_statistics_close_donation_nag_action_callback' );
|
16 |
+
|
17 |
+
// Setup an AJAX action to delete an agent in the optimization page.
|
18 |
+
function wp_statistics_delete_agents_action_callback() {
|
19 |
+
GLOBAL $WP_Statistics, $wpdb; // this is how you get access to the database
|
20 |
+
|
21 |
+
$manage_cap = wp_statistics_validate_capability( $WP_Statistics->get_option('manage_capability', 'manage_options') );
|
22 |
+
|
23 |
+
if( current_user_can( $manage_cap ) ) {
|
24 |
+
$agent = $_POST['agent-name'];
|
25 |
+
|
26 |
+
if( $agent ) {
|
27 |
+
|
28 |
+
$result = $wpdb->query($wpdb->prepare("DELETE FROM {$wpdb->prefix}statistics_visitor WHERE `agent` = %s", $agent ));
|
29 |
+
|
30 |
+
if($result) {
|
31 |
+
echo sprintf(__('%s agent data deleted successfully.', 'wp_statistics'), '<code>' . $agent . '</code>');
|
32 |
+
}
|
33 |
+
else {
|
34 |
+
_e('No agent data found to remove!', 'wp_statistics');
|
35 |
+
}
|
36 |
+
|
37 |
+
} else {
|
38 |
+
_e('Please select the desired items.', 'wp_statistics');
|
39 |
+
}
|
40 |
+
} else {
|
41 |
+
_e('Access denied!', 'wp_statistics');
|
42 |
+
}
|
43 |
+
|
44 |
+
wp_die(); // this is required to terminate immediately and return a proper response
|
45 |
+
}
|
46 |
+
add_action( 'wp_ajax_wp_statistics_delete_agents', 'wp_statistics_delete_agents_action_callback' );
|
47 |
+
|
48 |
+
// Setup an AJAX action to delete a platform in the optimization page.
|
49 |
+
function wp_statistics_delete_platforms_action_callback() {
|
50 |
+
GLOBAL $WP_Statistics, $wpdb; // this is how you get access to the database
|
51 |
+
|
52 |
+
$manage_cap = wp_statistics_validate_capability( $WP_Statistics->get_option('manage_capability', 'manage_options') );
|
53 |
+
|
54 |
+
if( current_user_can( $manage_cap ) ) {
|
55 |
+
$platform = $_POST['platform-name'];
|
56 |
+
|
57 |
+
if( $platform ) {
|
58 |
+
|
59 |
+
$result = $wpdb->query($wpdb->prepare("DELETE FROM {$wpdb->prefix}statistics_visitor WHERE `platform` = %s", $platform));
|
60 |
+
|
61 |
+
if($result) {
|
62 |
+
echo sprintf(__('%s platform data deleted successfully.', 'wp_statistics'), '<code>' . $platform . '</code>');
|
63 |
+
}
|
64 |
+
else {
|
65 |
+
_e('No platform data found to remove!', 'wp_statistics');
|
66 |
+
}
|
67 |
+
} else {
|
68 |
+
_e('Please select the desired items.', 'wp_statistics');
|
69 |
+
}
|
70 |
+
} else {
|
71 |
+
_e('Access denied!', 'wp_statistics');
|
72 |
+
}
|
73 |
+
|
74 |
+
wp_die(); // this is required to terminate immediately and return a proper response
|
75 |
+
}
|
76 |
+
add_action( 'wp_ajax_wp_statistics_delete_platforms', 'wp_statistics_delete_platforms_action_callback' );
|
77 |
+
|
78 |
+
// Setup an AJAX action to empty a table in the optimization page.
|
79 |
+
function wp_statistics_empty_table_action_callback() {
|
80 |
+
GLOBAL $WP_Statistics, $wpdb; // this is how you get access to the database
|
81 |
+
|
82 |
+
$manage_cap = wp_statistics_validate_capability( $WP_Statistics->get_option('manage_capability', 'manage_options') );
|
83 |
+
|
84 |
+
if( current_user_can( $manage_cap ) ) {
|
85 |
+
$table_name = $_POST['table-name'];
|
86 |
+
|
87 |
+
if($table_name) {
|
88 |
+
|
89 |
+
switch( $table_name ) {
|
90 |
+
case 'useronline':
|
91 |
+
echo wp_statitiscs_empty_table($wpdb->prefix . 'statistics_useronline');
|
92 |
+
break;
|
93 |
+
case 'visit':
|
94 |
+
echo wp_statitiscs_empty_table($wpdb->prefix . 'statistics_visit');
|
95 |
+
break;
|
96 |
+
case 'visitors':
|
97 |
+
echo wp_statitiscs_empty_table($wpdb->prefix . 'statistics_visitor');
|
98 |
+
break;
|
99 |
+
case 'exclusions':
|
100 |
+
echo wp_statitiscs_empty_table($wpdb->prefix . 'statistics_exclusions');
|
101 |
+
break;
|
102 |
+
case 'pages':
|
103 |
+
echo wp_statitiscs_empty_table($wpdb->prefix . 'statistics_pages');
|
104 |
+
break;
|
105 |
+
case 'all':
|
106 |
+
$result_string = wp_statitiscs_empty_table($wpdb->prefix . 'statistics_useronline');
|
107 |
+
$result_string .= '<br>' . wp_statitiscs_empty_table($wpdb->prefix . 'statistics_visit');
|
108 |
+
$result_string .= '<br>' . wp_statitiscs_empty_table($wpdb->prefix . 'statistics_visitor');
|
109 |
+
$result_string .= '<br>' . wp_statitiscs_empty_table($wpdb->prefix . 'statistics_exclusions');
|
110 |
+
$result_string .= '<br>' . wp_statitiscs_empty_table($wpdb->prefix . 'statistics_pages');
|
111 |
+
|
112 |
+
echo $result_string;
|
113 |
+
|
114 |
+
break;
|
115 |
+
default:
|
116 |
+
_e('Please select the desired items.', 'wp_statistics');
|
117 |
+
}
|
118 |
+
|
119 |
+
$WP_Statistics->Primary_Values();
|
120 |
+
|
121 |
+
} else {
|
122 |
+
_e('Please select the desired items.', 'wp_statistics');
|
123 |
+
}
|
124 |
+
} else {
|
125 |
+
_e('Access denied!', 'wp_statistics');
|
126 |
+
}
|
127 |
+
|
128 |
+
wp_die(); // this is required to terminate immediately and return a proper response
|
129 |
+
}
|
130 |
+
add_action( 'wp_ajax_wp_statistics_empty_table', 'wp_statistics_empty_table_action_callback' );
|
131 |
+
|
132 |
+
// Setup an AJAX action to purge old data in the optimization page.
|
133 |
+
function wp_statistics_purge_data_action_callback() {
|
134 |
+
GLOBAL $WP_Statistics, $wpdb; // this is how you get access to the database
|
135 |
+
|
136 |
+
require($WP_Statistics->plugin_dir . '/includes/functions/purge.php');
|
137 |
+
|
138 |
+
$manage_cap = wp_statistics_validate_capability( $WP_Statistics->get_option('manage_capability', 'manage_options') );
|
139 |
+
|
140 |
+
if( current_user_can( $manage_cap ) ) {
|
141 |
+
$purge_days = 0;
|
142 |
+
|
143 |
+
if( array_key_exists( 'purge-days', $_POST ) ) {
|
144 |
+
// Get the number of days to purge data before.
|
145 |
+
$purge_days = intval($_POST['purge-days']);
|
146 |
+
}
|
147 |
+
|
148 |
+
echo wp_statistics_purge_data( $purge_days );
|
149 |
+
} else {
|
150 |
+
_e('Access denied!', 'wp_statistics');
|
151 |
+
}
|
152 |
+
|
153 |
+
wp_die(); // this is required to terminate immediately and return a proper response
|
154 |
+
}
|
155 |
+
add_action( 'wp_ajax_wp_statistics_purge_data', 'wp_statistics_purge_data_action_callback' );
|
156 |
+
|
157 |
+
// Setup an AJAX action to purge visitors with more than a defined number of hits.
|
158 |
+
function wp_statistics_purge_visitor_hits_action_callback() {
|
159 |
+
GLOBAL $WP_Statistics, $wpdb; // this is how you get access to the database
|
160 |
+
|
161 |
+
require($WP_Statistics->plugin_dir . '/includes/functions/purge-hits.php');
|
162 |
+
|
163 |
+
$manage_cap = wp_statistics_validate_capability( $WP_Statistics->get_option('manage_capability', 'manage_options') );
|
164 |
+
|
165 |
+
if( current_user_can( $manage_cap ) ) {
|
166 |
+
$purge_hits = 10;
|
167 |
+
|
168 |
+
if( array_key_exists( 'purge-hits', $_POST ) ) {
|
169 |
+
// Get the number of days to purge data before.
|
170 |
+
$purge_hits = intval($_POST['purge-hits']);
|
171 |
+
}
|
172 |
+
|
173 |
+
if( $purge_hits < 10 ) {
|
174 |
+
_e('Number of hits must be greater than or equal to 10!', 'wp_statistics');
|
175 |
+
}
|
176 |
+
else {
|
177 |
+
echo wp_statistics_purge_visitor_hits( $purge_hits );
|
178 |
+
}
|
179 |
+
} else {
|
180 |
+
_e('Access denied!', 'wp_statistics');
|
181 |
+
}
|
182 |
+
|
183 |
+
wp_die(); // this is required to terminate immediately and return a proper response
|
184 |
+
}
|
185 |
+
add_action( 'wp_ajax_wp_statistics_purge_visitor_hits', 'wp_statistics_purge_visitor_hits_action_callback' );
|
assets/css/log.css
CHANGED
@@ -222,15 +222,16 @@
|
|
222 |
}
|
223 |
#about-links a {
|
224 |
}
|
225 |
-
#donate-button {
|
226 |
-
float: left;
|
227 |
-
padding: 7px 0 0;
|
228 |
-
text-align: center;
|
229 |
-
width: 100%;
|
230 |
-
}
|
231 |
.left-div {
|
232 |
float: left;
|
233 |
}
|
234 |
.right-div {
|
235 |
float: right;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
236 |
}
|
222 |
}
|
223 |
#about-links a {
|
224 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
225 |
.left-div {
|
226 |
float: left;
|
227 |
}
|
228 |
.right-div {
|
229 |
float: right;
|
230 |
+
}
|
231 |
+
#donate-text {
|
232 |
+
float: left;
|
233 |
+
}
|
234 |
+
#donate-button {
|
235 |
+
float: right;
|
236 |
+
margin: 12px 0 0;
|
237 |
}
|
assets/css/rtl.css
CHANGED
@@ -27,4 +27,10 @@
|
|
27 |
.jqplot-table-legend, .jqplot-highlighter-tooltip{
|
28 |
direction: rtl;
|
29 |
font-family: tahoma;
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
}
|
27 |
.jqplot-table-legend, .jqplot-highlighter-tooltip{
|
28 |
direction: rtl;
|
29 |
font-family: tahoma;
|
30 |
+
}
|
31 |
+
#donate-text {
|
32 |
+
float: right;
|
33 |
+
}
|
34 |
+
#donate-button {
|
35 |
+
float: left;
|
36 |
}
|
dashboard.php
CHANGED
@@ -53,17 +53,17 @@
|
|
53 |
// If the admin has disabled the widgets, don't display them.
|
54 |
if (!$WP_Statistics->get_option('disable_dashboard')) {
|
55 |
wp_add_dashboard_widget( 'wp-statistics-quickstats-widget', __('Quick Stats', 'wp_statistics'), 'wp_statistics_quickstats_widget', $control_callback = null );
|
56 |
-
wp_add_dashboard_widget( 'wp-statistics-browsers-widget', __('Top 10 Browsers', 'wp_statistics'), 'wp_statistics_browsers_widget', $control_callback = null );
|
57 |
-
wp_add_dashboard_widget( 'wp-statistics-countries-widget', __('Top 10 Countries', 'wp_statistics'), 'wp_statistics_countries_widget', $control_callback = null );
|
58 |
-
wp_add_dashboard_widget( 'wp-statistics-hitsmap-widget', __('Today\'s Visitor Map', 'wp_statistics'), 'wp_statistics_hitsmap_widget', $control_callback = null );
|
59 |
-
wp_add_dashboard_widget( 'wp-statistics-hits-widget', __('Hit Statistics', 'wp_statistics'), 'wp_statistics_hits_widget', $control_callback = null );
|
60 |
-
wp_add_dashboard_widget( 'wp-statistics-pages-widget', __('Top 10 Pages', 'wp_statistics'), 'wp_statistics_pages_widget', $control_callback = null );
|
61 |
-
wp_add_dashboard_widget( 'wp-statistics-recent-widget', __('Recent Visitors', 'wp_statistics'), 'wp_statistics_recent_widget', $control_callback = null );
|
62 |
-
wp_add_dashboard_widget( 'wp-statistics-referring-widget', __('Top Referring Sites', 'wp_statistics'), 'wp_statistics_referring_widget', $control_callback = null );
|
63 |
-
wp_add_dashboard_widget( 'wp-statistics-search-widget', __('Search Engine Referrals', 'wp_statistics'), 'wp_statistics_search_widget', $control_callback = null );
|
64 |
wp_add_dashboard_widget( 'wp-statistics-summary-widget', __('Summary', 'wp_statistics'), 'wp_statistics_summary_widget', $control_callback = null );
|
65 |
-
wp_add_dashboard_widget( 'wp-statistics-words-widget', __('Latest Search Words', 'wp_statistics'), 'wp_statistics_words_widget', $control_callback = null );
|
66 |
-
wp_add_dashboard_widget( 'wp-statistics-top-visitors-widget', __('Top 10 Visitors Today', 'wp_statistics'), 'wp_statistics_top_visitors_widget', $control_callback = null );
|
67 |
}
|
68 |
}
|
69 |
|
@@ -330,7 +330,7 @@
|
|
330 |
|
331 |
include_once( dirname( __FILE__ ) . "/includes/log/widgets/top.visitors.php");
|
332 |
|
333 |
-
wp_statistics_generate_top_visitors_postbox_content($
|
334 |
}
|
335 |
|
336 |
?>
|
53 |
// If the admin has disabled the widgets, don't display them.
|
54 |
if (!$WP_Statistics->get_option('disable_dashboard')) {
|
55 |
wp_add_dashboard_widget( 'wp-statistics-quickstats-widget', __('Quick Stats', 'wp_statistics'), 'wp_statistics_quickstats_widget', $control_callback = null );
|
56 |
+
if( $WP_Statistics->get_option('visitors') ) { wp_add_dashboard_widget( 'wp-statistics-browsers-widget', __('Top 10 Browsers', 'wp_statistics'), 'wp_statistics_browsers_widget', $control_callback = null ); }
|
57 |
+
if( $WP_Statistics->get_option('visitors') ) { wp_add_dashboard_widget( 'wp-statistics-countries-widget', __('Top 10 Countries', 'wp_statistics'), 'wp_statistics_countries_widget', $control_callback = null ); }
|
58 |
+
if( $WP_Statistics->get_option('visitors') ) { wp_add_dashboard_widget( 'wp-statistics-hitsmap-widget', __('Today\'s Visitor Map', 'wp_statistics'), 'wp_statistics_hitsmap_widget', $control_callback = null ); }
|
59 |
+
if( $WP_Statistics->get_option('visits') ) { wp_add_dashboard_widget( 'wp-statistics-hits-widget', __('Hit Statistics', 'wp_statistics'), 'wp_statistics_hits_widget', $control_callback = null ); }
|
60 |
+
if( $WP_Statistics->get_option('pages') ) { wp_add_dashboard_widget( 'wp-statistics-pages-widget', __('Top 10 Pages', 'wp_statistics'), 'wp_statistics_pages_widget', $control_callback = null ); }
|
61 |
+
if( $WP_Statistics->get_option('visitors') ) { wp_add_dashboard_widget( 'wp-statistics-recent-widget', __('Recent Visitors', 'wp_statistics'), 'wp_statistics_recent_widget', $control_callback = null ); }
|
62 |
+
if( $WP_Statistics->get_option('visitors') ) { wp_add_dashboard_widget( 'wp-statistics-referring-widget', __('Top Referring Sites', 'wp_statistics'), 'wp_statistics_referring_widget', $control_callback = null ); }
|
63 |
+
if( $WP_Statistics->get_option('visitors') ) { wp_add_dashboard_widget( 'wp-statistics-search-widget', __('Search Engine Referrals', 'wp_statistics'), 'wp_statistics_search_widget', $control_callback = null ); }
|
64 |
wp_add_dashboard_widget( 'wp-statistics-summary-widget', __('Summary', 'wp_statistics'), 'wp_statistics_summary_widget', $control_callback = null );
|
65 |
+
if( $WP_Statistics->get_option('visitors') ) { wp_add_dashboard_widget( 'wp-statistics-words-widget', __('Latest Search Words', 'wp_statistics'), 'wp_statistics_words_widget', $control_callback = null ); }
|
66 |
+
if( $WP_Statistics->get_option('visitors') ) { wp_add_dashboard_widget( 'wp-statistics-top-visitors-widget', __('Top 10 Visitors Today', 'wp_statistics'), 'wp_statistics_top_visitors_widget', $control_callback = null ); }
|
67 |
}
|
68 |
}
|
69 |
|
330 |
|
331 |
include_once( dirname( __FILE__ ) . "/includes/log/widgets/top.visitors.php");
|
332 |
|
333 |
+
wp_statistics_generate_top_visitors_postbox_content($ISOCountryCode, 'today', 10, true);
|
334 |
}
|
335 |
|
336 |
?>
|
includes/classes/hits.class.php
CHANGED
@@ -87,7 +87,12 @@
|
|
87 |
$bc->doAutoUpdate = false; // We don't want to auto update.
|
88 |
try {
|
89 |
$current_browser = $bc->getBrowser();
|
90 |
-
|
|
|
|
|
|
|
|
|
|
|
91 |
}
|
92 |
catch( Exception $e ) {
|
93 |
$crawler = false;
|
87 |
$bc->doAutoUpdate = false; // We don't want to auto update.
|
88 |
try {
|
89 |
$current_browser = $bc->getBrowser();
|
90 |
+
if( is_object( $current_browser ) ) {
|
91 |
+
$crawler = $current_browser->Crawler;
|
92 |
+
}
|
93 |
+
else {
|
94 |
+
$crawler = false;
|
95 |
+
}
|
96 |
}
|
97 |
catch( Exception $e ) {
|
98 |
$crawler = false;
|
includes/classes/statistics.class.php
CHANGED
@@ -20,6 +20,7 @@
|
|
20 |
private $is_feed = false;
|
21 |
private $tz_offset = 0;
|
22 |
private $country_codes = false;
|
|
|
23 |
|
24 |
public $coefficient = 1;
|
25 |
public $plugin_dir = '';
|
@@ -307,18 +308,40 @@
|
|
307 |
}
|
308 |
|
309 |
// This function will return the referrer link for the current user.
|
310 |
-
public function get_Referred($
|
311 |
-
|
312 |
-
$
|
|
|
|
|
313 |
|
314 |
-
if( isset($_SERVER['HTTP_REFERER']) ) { $
|
315 |
-
if( $
|
316 |
|
317 |
-
$
|
318 |
|
319 |
-
if( !$
|
320 |
|
321 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
322 |
}
|
323 |
|
324 |
// This function returns a date string in the desired format with a passed in timestamp.
|
@@ -416,7 +439,7 @@
|
|
416 |
|
417 |
// If no URL was passed in, get the current referrer for the session.
|
418 |
if(!$url) {
|
419 |
-
$url = isset($_SERVER['HTTP_REFERER']) ? $
|
420 |
}
|
421 |
|
422 |
// If there is no URL and no referrer, always return false.
|
@@ -450,7 +473,7 @@
|
|
450 |
$words = '';
|
451 |
}
|
452 |
|
453 |
-
// If no words were found, return a
|
454 |
if( $words == '' ) { $words = 'No search query found!'; }
|
455 |
return $words;
|
456 |
}
|
20 |
private $is_feed = false;
|
21 |
private $tz_offset = 0;
|
22 |
private $country_codes = false;
|
23 |
+
private $referrer = false;
|
24 |
|
25 |
public $coefficient = 1;
|
26 |
public $plugin_dir = '';
|
308 |
}
|
309 |
|
310 |
// This function will return the referrer link for the current user.
|
311 |
+
public function get_Referred($default_referrer = false) {
|
312 |
+
|
313 |
+
if( $this->referrer !== false ) { return $this->referrer; }
|
314 |
+
|
315 |
+
$this->referrer = '';
|
316 |
|
317 |
+
if( isset($_SERVER['HTTP_REFERER']) ) { $this->referrer = $_SERVER['HTTP_REFERER']; }
|
318 |
+
if( $default_referrer ) { $this->referrer = $default_referrer; }
|
319 |
|
320 |
+
$this->referrer = esc_sql(strip_tags($this->referrer) );
|
321 |
|
322 |
+
if( !$this->referrer ) { $this->referrer = get_bloginfo('url'); }
|
323 |
|
324 |
+
if( $this->get_option( 'addsearchwords', false ) ) {
|
325 |
+
// Check to see if this is a search engine referrer
|
326 |
+
$SEInfo = $this->Search_Engine_Info( $this->referrer );
|
327 |
+
|
328 |
+
if( is_array( $SEInfo ) ) {
|
329 |
+
// If we're a known SE, check the query string
|
330 |
+
if( $SEInfo['tag'] != '' ) {
|
331 |
+
$result = $this->Search_Engine_QueryString( $this->referrer );
|
332 |
+
|
333 |
+
// If there were no search words, let's add the page title
|
334 |
+
if( $result == '' || $result == 'No search query found!' ) {
|
335 |
+
$result = wp_title('', false);
|
336 |
+
if( $result != '' ) {
|
337 |
+
$this->referrer = esc_url( add_query_arg( $SEInfo['querykey'], urlencode( '~"' . $result . '"' ), $this->referrer ) );
|
338 |
+
}
|
339 |
+
}
|
340 |
+
}
|
341 |
+
}
|
342 |
+
}
|
343 |
+
|
344 |
+
return $this->referrer;
|
345 |
}
|
346 |
|
347 |
// This function returns a date string in the desired format with a passed in timestamp.
|
439 |
|
440 |
// If no URL was passed in, get the current referrer for the session.
|
441 |
if(!$url) {
|
442 |
+
$url = isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : false;
|
443 |
}
|
444 |
|
445 |
// If there is no URL and no referrer, always return false.
|
473 |
$words = '';
|
474 |
}
|
475 |
|
476 |
+
// If no words were found, return a pleasant default.
|
477 |
if( $words == '' ) { $words = 'No search query found!'; }
|
478 |
return $words;
|
479 |
}
|
includes/functions/export.php
ADDED
@@ -0,0 +1,84 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
function wp_statistics_export_data() {
|
3 |
+
GLOBAL $WP_Statistics, $wpdb; // this is how you get access to the database
|
4 |
+
|
5 |
+
$manage_cap = wp_statistics_validate_capability( $WP_Statistics->get_option('manage_capability', 'manage_options') );
|
6 |
+
|
7 |
+
if( current_user_can( $manage_cap ) ) {
|
8 |
+
$table = $_POST['table-to-export'];
|
9 |
+
$type = $_POST['export-file-type'];
|
10 |
+
$headers = $_POST['export-headers'];
|
11 |
+
|
12 |
+
// Validate the table name the user passed to us.
|
13 |
+
if( !( $table == "useronline" || $table == "visit" || $table == "visitor" || $table == "exclusions" || $table == "pages" ) ) { $table = FALSE; }
|
14 |
+
|
15 |
+
// Validate the file type the user passed to us.
|
16 |
+
if( !( $type == "excel" || $type == "xml" || $type == "csv" || $type == "tsv" ) ) { $table = FALSE; }
|
17 |
+
|
18 |
+
if($table && $type) {
|
19 |
+
|
20 |
+
require($WP_Statistics->plugin_dir . '/includes/classes/php-export-data.class.php');
|
21 |
+
|
22 |
+
$file_name = WPS_EXPORT_FILE_NAME . '-' . $WP_Statistics->Current_Date('Y-m-d-H-i');
|
23 |
+
|
24 |
+
switch($type) {
|
25 |
+
case 'excel':
|
26 |
+
$exporter = new ExportDataExcel('browser', "{$file_name}.xls");
|
27 |
+
break;
|
28 |
+
|
29 |
+
case 'xml':
|
30 |
+
$exporter = new ExportDataExcel('browser', "{$file_name}.xml");
|
31 |
+
break;
|
32 |
+
|
33 |
+
case 'csv':
|
34 |
+
$exporter = new ExportDataCSV('browser', "{$file_name}.csv");
|
35 |
+
break;
|
36 |
+
|
37 |
+
case 'tsv':
|
38 |
+
$exporter = new ExportDataTSV('browser', "{$file_name}.tsv");
|
39 |
+
break;
|
40 |
+
}
|
41 |
+
|
42 |
+
$exporter->initialize();
|
43 |
+
|
44 |
+
// We need to limit the number of results we retrieve to ensure we don't run out of memory
|
45 |
+
$query_base = "SELECT * FROM {$wpdb->prefix}statistics_{$table}";
|
46 |
+
$query = $query_base . ' LIMIT 0,1000';
|
47 |
+
|
48 |
+
$i = 1;
|
49 |
+
$more_results = true;
|
50 |
+
$result = $wpdb->get_results($query, ARRAY_A);
|
51 |
+
|
52 |
+
if( $headers ) {
|
53 |
+
foreach( $result[0] as $key => $col ) { $columns[] = $key; }
|
54 |
+
$exporter->addRow($columns);
|
55 |
+
}
|
56 |
+
|
57 |
+
|
58 |
+
while( $more_results ) {
|
59 |
+
foreach($result as $row) {
|
60 |
+
$exporter->addRow($row);
|
61 |
+
|
62 |
+
// Make sure we've flushed the output buffer so we don't run out of memory on large exports.
|
63 |
+
ob_flush();
|
64 |
+
flush();
|
65 |
+
}
|
66 |
+
|
67 |
+
unset( $result );
|
68 |
+
$wpdb->flush();
|
69 |
+
|
70 |
+
$query = $query_base . ' LIMIT ' . ($i * 1000) . ',1000';
|
71 |
+
$result = $wpdb->get_results($query, ARRAY_A);
|
72 |
+
|
73 |
+
if( count( $result ) == 0 ) { $more_results = false; }
|
74 |
+
|
75 |
+
$i++;
|
76 |
+
}
|
77 |
+
|
78 |
+
$exporter->finalize();
|
79 |
+
|
80 |
+
exit;
|
81 |
+
}
|
82 |
+
}
|
83 |
+
}
|
84 |
+
?>
|
includes/functions/functions.php
CHANGED
@@ -885,8 +885,8 @@
|
|
885 |
|
886 |
$rcount = count( $range );
|
887 |
|
888 |
-
$rangestart = '';
|
889 |
-
$rangeend = '';
|
890 |
|
891 |
$bold = true;
|
892 |
if( array_key_exists( 'rangestart', $_GET ) ) { $rangestart = $_GET['rangestart']; }
|
@@ -955,4 +955,18 @@
|
|
955 |
}
|
956 |
|
957 |
return array( $daysToDisplay, $rangestart_utime, $rangeend_utime );
|
958 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
885 |
|
886 |
$rcount = count( $range );
|
887 |
|
888 |
+
$rangestart = $WP_Statistics->Real_Current_Date('m/d/Y', '-' . $current);
|
889 |
+
$rangeend = $WP_Statistics->Real_Current_Date('m/d/Y');
|
890 |
|
891 |
$bold = true;
|
892 |
if( array_key_exists( 'rangestart', $_GET ) ) { $rangestart = $_GET['rangestart']; }
|
955 |
}
|
956 |
|
957 |
return array( $daysToDisplay, $rangestart_utime, $rangeend_utime );
|
958 |
+
}
|
959 |
+
|
960 |
+
function wp_statitiscs_empty_table( $table_name = FALSE ) {
|
961 |
+
global $wpdb;
|
962 |
+
|
963 |
+
if( $table_name ) {
|
964 |
+
$result = $wpdb->query('DELETE FROM ' . $table_name);
|
965 |
+
|
966 |
+
if($result) {
|
967 |
+
return sprintf(__('%s table data deleted successfully.', 'wp_statistics'), '<code>' . $table_name . '</code>');
|
968 |
+
}
|
969 |
+
}
|
970 |
+
|
971 |
+
return sprintf(__('Error, %s not emptied!', 'wp_statistics'), $table_name );
|
972 |
+
}
|
includes/functions/manual.php
ADDED
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
function wp_statistics_download_manual() {
|
3 |
+
GLOBAL $WP_Statistics, $wpdb; // this is how you get access to the database
|
4 |
+
|
5 |
+
$manage_cap = wp_statistics_validate_capability( $WP_Statistics->get_option( 'manage_capability', 'manage_options') );
|
6 |
+
|
7 |
+
if( current_user_can( $manage_cap ) ) {
|
8 |
+
|
9 |
+
$type = $_GET['type'];
|
10 |
+
|
11 |
+
if( $type == 'odt' || $type == 'html' ) {
|
12 |
+
|
13 |
+
$filepath = $WP_Statistics->plugin_dir . '/manual';
|
14 |
+
$filename = '';
|
15 |
+
$ext = '.' . $type;
|
16 |
+
|
17 |
+
// open this directory
|
18 |
+
$dir = opendir( $filepath );
|
19 |
+
|
20 |
+
// get each entry
|
21 |
+
while( $entry = readdir( $dir ) ) {
|
22 |
+
if( substr( $entry, -strlen( $ext ) ) == $ext ) {
|
23 |
+
$filename = $entry;
|
24 |
+
}
|
25 |
+
}
|
26 |
+
|
27 |
+
// close directory
|
28 |
+
closedir( $dir );
|
29 |
+
|
30 |
+
if( $filename != '' ) {
|
31 |
+
$filename = substr( $filename, 0, -strlen( $ext ) );
|
32 |
+
$filename .= ' V' . WP_STATISTICS_VERSION . $ext;
|
33 |
+
header('Content-Type: application/octet-stream;');
|
34 |
+
header('Content-Disposition: attachment; filename="' . $filename . '"');
|
35 |
+
|
36 |
+
readfile( $filepath . $filename );
|
37 |
+
}
|
38 |
+
}
|
39 |
+
}
|
40 |
+
}
|
41 |
+
?>
|
includes/functions/purge-hits.php
ADDED
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
function wp_statistics_purge_visitor_hits( $purge_hits ) {
|
3 |
+
GLOBAL $wpdb, $WP_Statistics;
|
4 |
+
|
5 |
+
// If it's less than 10 hits, don't do anything.
|
6 |
+
if( $purge_hits > 9 ) {
|
7 |
+
// Purge the visitor's with more than the defined hits.
|
8 |
+
$result = $wpdb->get_results('SELECT * FROM ' . $wpdb->prefix . 'statistics_visitor WHERE `hits` > \'' . $purge_hits . '\'');
|
9 |
+
|
10 |
+
$to_delete = array();
|
11 |
+
|
12 |
+
// Loop through the results and store the requried information in an array. We don't just process it now as deleting
|
13 |
+
// the rows from the visitor table will mess up the results from our first query.
|
14 |
+
foreach( $result as $row ) {
|
15 |
+
$to_delete[] = array( $row->ID, $row->last_counter, $row->hits );
|
16 |
+
}
|
17 |
+
if( count( $to_delete ) > 0 ) {
|
18 |
+
foreach( $to_delete as $item ) {
|
19 |
+
// First update the daily hit count.
|
20 |
+
$wpdb->query( "UPDATE {$wpdb->prefix}statistics_visit SET `visit` = `visit` - {$item[2]} WHERE `last_counter` = '{$item[1]}';" );
|
21 |
+
// Next remove the visitor. Note we can't do both in a single query, looks like $wpdb doesn't like executing them together.
|
22 |
+
$wpdb->query( "DELETE FROM {$wpdb->prefix}statistics_visitor WHERE `id` = '{$item[0]}';" );
|
23 |
+
}
|
24 |
+
|
25 |
+
$result_string = sprintf(__('%s records purged successfully.', 'wp_statistics'), '<code>' . count( $to_delete ) . '</code>');
|
26 |
+
}
|
27 |
+
else {
|
28 |
+
$result_string = __('No visitors found to purge.', 'wp_statistics' );
|
29 |
+
}
|
30 |
+
}
|
31 |
+
else {
|
32 |
+
$result_string = __('Number of hits must be greater than or equal to 10!', 'wp_statistics');
|
33 |
+
}
|
34 |
+
|
35 |
+
if( $WP_Statistics->get_option('prune_report') == true ) {
|
36 |
+
$blogname = get_bloginfo('name');
|
37 |
+
$blogemail = get_bloginfo('admin_email');
|
38 |
+
|
39 |
+
$headers[] = "From: $blogname <$blogemail>";
|
40 |
+
$headers[] = "MIME-Version: 1.0";
|
41 |
+
$headers[] = "Content-type: text/html; charset=utf-8";
|
42 |
+
|
43 |
+
if( $WP_Statistics->get_option('email_list') == '' ) { $WP_Statistics->update_option( 'email_list', $blogemail ); }
|
44 |
+
|
45 |
+
wp_mail( $WP_Statistics->get_option('email_list'), __('Database pruned on', 'wp_statistics') . ' ' . $blogname, $result_string, $headers );
|
46 |
+
}
|
47 |
+
|
48 |
+
return $result_string;
|
49 |
+
}
|
50 |
+
?>
|
includes/log/exclusions.php
CHANGED
@@ -54,6 +54,8 @@
|
|
54 |
}
|
55 |
}
|
56 |
|
|
|
|
|
57 |
// If the chart totals is enabled, cheat a little and just add another reason category to the list so it get's generated later.
|
58 |
if( $total_stats == 1 ) { $excluded_reasons[] = 'Total'; }
|
59 |
?>
|
@@ -63,9 +65,6 @@
|
|
63 |
|
64 |
<?php wp_statistics_date_range_selector( 'wps_exclusions_menu', $daysToDisplay ); ?>
|
65 |
|
66 |
-
<br><br>
|
67 |
-
<h3><?php echo sprintf(__('Total Exclusions: %s', 'wp_statistics'), $excluded_total); ?></h3>
|
68 |
-
|
69 |
<div class="postbox-container" style="width: 100%; float: left; margin-right:20px">
|
70 |
<div class="metabox-holder">
|
71 |
<div class="meta-box-sortables">
|
@@ -183,4 +182,36 @@
|
|
183 |
</div>
|
184 |
</div>
|
185 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
186 |
</div>
|
54 |
}
|
55 |
}
|
56 |
|
57 |
+
$excuded_all_time = $wpdb->get_var( "SELECT SUM(count) FROM {$wpdb->prefix}statistics_exclusions" );
|
58 |
+
|
59 |
// If the chart totals is enabled, cheat a little and just add another reason category to the list so it get's generated later.
|
60 |
if( $total_stats == 1 ) { $excluded_reasons[] = 'Total'; }
|
61 |
?>
|
65 |
|
66 |
<?php wp_statistics_date_range_selector( 'wps_exclusions_menu', $daysToDisplay ); ?>
|
67 |
|
|
|
|
|
|
|
68 |
<div class="postbox-container" style="width: 100%; float: left; margin-right:20px">
|
69 |
<div class="metabox-holder">
|
70 |
<div class="meta-box-sortables">
|
182 |
</div>
|
183 |
</div>
|
184 |
</div>
|
185 |
+
|
186 |
+
<div class="postbox-container" style="width: 100%; float: left; margin-right:20px">
|
187 |
+
<div class="metabox-holder">
|
188 |
+
<div class="meta-box-sortables">
|
189 |
+
<div class="postbox">
|
190 |
+
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
191 |
+
<h3 class="hndle"><span><?php _e('Hits Statistics Summary', 'wp_statistics'); ?></span></h3>
|
192 |
+
<div class="inside">
|
193 |
+
<table width="auto" class="widefat table-stats" id="summary-stats">
|
194 |
+
<tbody>
|
195 |
+
<tr>
|
196 |
+
<th></th>
|
197 |
+
<th class="th-center"><?php _e('Exclusions', 'wp_statistics'); ?></th>
|
198 |
+
</tr>
|
199 |
+
|
200 |
+
<tr>
|
201 |
+
<th><?php _e('Chart Total', 'wp_statistics'); ?>:</th>
|
202 |
+
<th class="th-center"><span><?php echo number_format_i18n($excluded_total); ?></span></th>
|
203 |
+
</tr>
|
204 |
+
|
205 |
+
<tr>
|
206 |
+
<th><?php _e('All Time Total', 'wp_statistics'); ?>:</th>
|
207 |
+
<th class="th-center"><span><?php echo number_format_i18n($excuded_all_time); ?></span></th>
|
208 |
+
</tr>
|
209 |
+
</tbody>
|
210 |
+
</table>
|
211 |
+
</div>
|
212 |
+
</div>
|
213 |
+
</div>
|
214 |
+
</div>
|
215 |
+
</div>
|
216 |
+
|
217 |
</div>
|
includes/log/hit-statistics.php
CHANGED
@@ -30,10 +30,14 @@
|
|
30 |
var visit_chart;
|
31 |
jQuery(document).ready(function() {
|
32 |
<?php
|
|
|
|
|
|
|
33 |
echo "var visit_data_line = [";
|
34 |
|
35 |
for( $i=$daysToDisplay; $i>=0; $i--) {
|
36 |
$stat = wp_statistics_visit('-'.$i, true);
|
|
|
37 |
|
38 |
echo "['" . $WP_Statistics->Real_Current_Date('Y-m-d', '-'.$i, $rangeend_utime) . "'," . $stat . "], ";
|
39 |
|
@@ -45,6 +49,7 @@
|
|
45 |
|
46 |
for( $i=$daysToDisplay; $i>=0; $i--) {
|
47 |
$stat = wp_statistics_visitor('-'.$i, true);
|
|
|
48 |
|
49 |
echo "['" . $WP_Statistics->Real_Current_Date('Y-m-d', '-'.$i, $rangeend_utime) . "'," . $stat . "], ";
|
50 |
|
@@ -149,4 +154,39 @@
|
|
149 |
</div>
|
150 |
</div>
|
151 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
152 |
</div>
|
30 |
var visit_chart;
|
31 |
jQuery(document).ready(function() {
|
32 |
<?php
|
33 |
+
$visit_total = 0;
|
34 |
+
$visitor_total = 0;
|
35 |
+
|
36 |
echo "var visit_data_line = [";
|
37 |
|
38 |
for( $i=$daysToDisplay; $i>=0; $i--) {
|
39 |
$stat = wp_statistics_visit('-'.$i, true);
|
40 |
+
$visit_total += $stat;
|
41 |
|
42 |
echo "['" . $WP_Statistics->Real_Current_Date('Y-m-d', '-'.$i, $rangeend_utime) . "'," . $stat . "], ";
|
43 |
|
49 |
|
50 |
for( $i=$daysToDisplay; $i>=0; $i--) {
|
51 |
$stat = wp_statistics_visitor('-'.$i, true);
|
52 |
+
$visitor_total += $stat;
|
53 |
|
54 |
echo "['" . $WP_Statistics->Real_Current_Date('Y-m-d', '-'.$i, $rangeend_utime) . "'," . $stat . "], ";
|
55 |
|
154 |
</div>
|
155 |
</div>
|
156 |
</div>
|
157 |
+
|
158 |
+
<div class="postbox-container" style="width: 100%; float: left; margin-right:20px">
|
159 |
+
<div class="metabox-holder">
|
160 |
+
<div class="meta-box-sortables">
|
161 |
+
<div class="postbox">
|
162 |
+
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
163 |
+
<h3 class="hndle"><span><?php _e('Hits Statistics Summary', 'wp_statistics'); ?></span></h3>
|
164 |
+
<div class="inside">
|
165 |
+
<table width="auto" class="widefat table-stats" id="summary-stats">
|
166 |
+
<tbody>
|
167 |
+
<tr>
|
168 |
+
<th></th>
|
169 |
+
<th class="th-center"><?php _e('Visit', 'wp_statistics'); ?></th>
|
170 |
+
<th class="th-center"><?php _e('Visitor', 'wp_statistics'); ?></th>
|
171 |
+
</tr>
|
172 |
+
|
173 |
+
<tr>
|
174 |
+
<th><?php _e('Chart Total', 'wp_statistics'); ?>:</th>
|
175 |
+
<th class="th-center"><span><?php echo number_format_i18n($visit_total); ?></span></th>
|
176 |
+
<th class="th-center"><span><?php echo number_format_i18n($visitor_total); ?></span></th>
|
177 |
+
</tr>
|
178 |
+
|
179 |
+
<tr>
|
180 |
+
<th><?php _e('All Time Total', 'wp_statistics'); ?>:</th>
|
181 |
+
<th class="th-center"><span><?php echo number_format_i18n(wp_statistics_visit('total')); ?></span></th>
|
182 |
+
<th class="th-center"><span><?php echo number_format_i18n(wp_statistics_visitor('total',null,true)); ?></span></th>
|
183 |
+
</tr>
|
184 |
+
</tbody>
|
185 |
+
</table>
|
186 |
+
</div>
|
187 |
+
</div>
|
188 |
+
</div>
|
189 |
+
</div>
|
190 |
+
</div>
|
191 |
+
|
192 |
</div>
|
includes/log/log.php
CHANGED
@@ -1,6 +1,22 @@
|
|
1 |
<script type="text/javascript">
|
2 |
jQuery(document).ready(function(){
|
3 |
postboxes.add_postbox_toggles(pagenow);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
});
|
5 |
</script>
|
6 |
<?php
|
@@ -36,8 +52,13 @@
|
|
36 |
$search_result[$key] = wp_statistics_searchengine($key,'total');
|
37 |
}
|
38 |
|
|
|
|
|
|
|
|
|
39 |
?>
|
40 |
<div class="wrap">
|
|
|
41 |
<?php screen_icon('options-general'); ?>
|
42 |
<h2><?php echo get_admin_page_title(); ?></h2>
|
43 |
<div class="postbox-container" id="right-log">
|
1 |
<script type="text/javascript">
|
2 |
jQuery(document).ready(function(){
|
3 |
postboxes.add_postbox_toggles(pagenow);
|
4 |
+
|
5 |
+
jQuery('#wps_close_nag').click( function(){
|
6 |
+
var data = {
|
7 |
+
'action': 'wp_statistics_close_donation_nag',
|
8 |
+
'query': '',
|
9 |
+
};
|
10 |
+
|
11 |
+
jQuery.ajax({ url: ajaxurl,
|
12 |
+
type: 'get',
|
13 |
+
data: data,
|
14 |
+
datatype: 'json',
|
15 |
+
});
|
16 |
+
|
17 |
+
jQuery('#wps_nag').hide();
|
18 |
+
});
|
19 |
+
|
20 |
});
|
21 |
</script>
|
22 |
<?php
|
52 |
$search_result[$key] = wp_statistics_searchengine($key,'total');
|
53 |
}
|
54 |
|
55 |
+
$nag_html = '';
|
56 |
+
if( ! $WP_Statistics->get_option( 'disable_donation_nag', false ) ) {
|
57 |
+
$nag_html = '<div id="wps_nag" class="update-nag" style="width: 90%;"><div id="donate-text"><p>' . __('Have you thought about donating to WP Statistics?', 'wp_statistics') . ' <a href="http://wp-statistics.com/donate/" target="_blank">'.__('Donate Now!', 'wp_statistics').'</a></p></div><div id="donate-button"><a class="button-primary" id="wps_close_nag">' . __('Close', 'wp_statistics') . '</a></div></div>';
|
58 |
+
}
|
59 |
?>
|
60 |
<div class="wrap">
|
61 |
+
<?php echo $nag_html; ?>
|
62 |
<?php screen_icon('options-general'); ?>
|
63 |
<h2><?php echo get_admin_page_title(); ?></h2>
|
64 |
<div class="postbox-container" id="right-log">
|
includes/log/top-countries.php
CHANGED
@@ -3,9 +3,22 @@
|
|
3 |
postboxes.add_postbox_toggles(pagenow);
|
4 |
});
|
5 |
</script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
<div class="wrap">
|
7 |
<?php screen_icon('options-general'); ?>
|
8 |
<h2><?php _e('Top Countries', 'wp_statistics'); ?></h2>
|
|
|
|
|
|
|
9 |
<div class="postbox-container" id="last-log" style="width: 100%;">
|
10 |
<div class="metabox-holder">
|
11 |
<div class="meta-box-sortables">
|
@@ -25,9 +38,12 @@
|
|
25 |
|
26 |
$result = $wpdb->get_results("SELECT DISTINCT `location` FROM `{$wpdb->prefix}statistics_visitor`");
|
27 |
|
|
|
|
|
|
|
28 |
foreach( $result as $item )
|
29 |
{
|
30 |
-
$Countries[$item->location] = $wpdb->get_var("SELECT count(location) FROM `{$wpdb->prefix}statistics_visitor` WHERE location='
|
31 |
}
|
32 |
|
33 |
arsort($Countries);
|
3 |
postboxes.add_postbox_toggles(pagenow);
|
4 |
});
|
5 |
</script>
|
6 |
+
<?php
|
7 |
+
$daysToDisplay = 20;
|
8 |
+
if( array_key_exists('hitdays',$_GET) ) { $daysToDisplay = intval($_GET['hitdays']); }
|
9 |
+
|
10 |
+
if( array_key_exists('rangestart', $_GET ) ) { $rangestart = $_GET['rangestart']; } else { $rangestart = ''; }
|
11 |
+
if( array_key_exists('rangeend', $_GET ) ) { $rangeend = $_GET['rangeend']; } else { $rangeend = ''; }
|
12 |
+
|
13 |
+
list( $daysToDisplay, $rangestart_utime, $rangeend_utime ) = wp_statistics_date_range_calculator( $daysToDisplay, $rangestart, $rangeend );
|
14 |
+
|
15 |
+
?>
|
16 |
<div class="wrap">
|
17 |
<?php screen_icon('options-general'); ?>
|
18 |
<h2><?php _e('Top Countries', 'wp_statistics'); ?></h2>
|
19 |
+
|
20 |
+
<?php wp_statistics_date_range_selector( 'wps_countries_menu', $daysToDisplay ); ?>
|
21 |
+
|
22 |
<div class="postbox-container" id="last-log" style="width: 100%;">
|
23 |
<div class="metabox-holder">
|
24 |
<div class="meta-box-sortables">
|
38 |
|
39 |
$result = $wpdb->get_results("SELECT DISTINCT `location` FROM `{$wpdb->prefix}statistics_visitor`");
|
40 |
|
41 |
+
$rangestartdate = $WP_Statistics->real_current_date('Y-m-d', '-0', $rangestart_utime );
|
42 |
+
$rangeenddate = $WP_Statistics->real_current_date('Y-m-d', '-0', $rangeend_utime );
|
43 |
+
|
44 |
foreach( $result as $item )
|
45 |
{
|
46 |
+
$Countries[$item->location] = $wpdb->get_var("SELECT count(location) FROM `{$wpdb->prefix}statistics_visitor` WHERE location='{$item->location}' AND `last_counter` BETWEEN '{$rangestartdate}' AND '{$rangeenddate}'" );
|
47 |
}
|
48 |
|
49 |
arsort($Countries);
|
includes/log/widgets/browsers.php
CHANGED
@@ -1,6 +1,9 @@
|
|
1 |
<?php
|
2 |
function wp_statistics_generate_browsers_postbox($ISOCountryCode, $search_engines) {
|
3 |
|
|
|
|
|
|
|
4 |
?>
|
5 |
<div class="postbox">
|
6 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
@@ -10,6 +13,7 @@
|
|
10 |
</div>
|
11 |
</div>
|
12 |
<?php
|
|
|
13 |
}
|
14 |
|
15 |
function wp_statistics_generate_browsers_postbox_content() {
|
1 |
<?php
|
2 |
function wp_statistics_generate_browsers_postbox($ISOCountryCode, $search_engines) {
|
3 |
|
4 |
+
global $wpdb, $WP_Statistics;
|
5 |
+
|
6 |
+
if( $WP_Statistics->get_option( 'visitors' ) ) {
|
7 |
?>
|
8 |
<div class="postbox">
|
9 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
13 |
</div>
|
14 |
</div>
|
15 |
<?php
|
16 |
+
}
|
17 |
}
|
18 |
|
19 |
function wp_statistics_generate_browsers_postbox_content() {
|
includes/log/widgets/countries.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
|
4 |
global $WP_Statistics;
|
5 |
|
6 |
-
if( $WP_Statistics->get_option('geoip') ) {
|
7 |
?>
|
8 |
<div class="postbox">
|
9 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
3 |
|
4 |
global $WP_Statistics;
|
5 |
|
6 |
+
if( $WP_Statistics->get_option('geoip') && $WP_Statistics->get_option( 'visitors' ) ) {
|
7 |
?>
|
8 |
<div class="postbox">
|
9 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
includes/log/widgets/google.map.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
|
4 |
global $WP_Statistics;
|
5 |
|
6 |
-
if($WP_Statistics->get_option('geoip') && !$WP_Statistics->get_option('disable_map') ) { ?>
|
7 |
<div class="postbox">
|
8 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
9 |
<h3 class="hndle"><span><?php _e('Today Visitors Map', 'wp_statistics'); ?></span></h3>
|
3 |
|
4 |
global $WP_Statistics;
|
5 |
|
6 |
+
if($WP_Statistics->get_option('geoip') && !$WP_Statistics->get_option('disable_map') && $WP_Statistics->get_option('visitos' )) { ?>
|
7 |
<div class="postbox">
|
8 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
9 |
<h3 class="hndle"><span><?php _e('Today Visitors Map', 'wp_statistics'); ?></span></h3>
|
includes/log/widgets/hits.php
CHANGED
@@ -2,6 +2,8 @@
|
|
2 |
function wp_statistics_generate_hits_postbox($ISOCountryCode, $search_engines) {
|
3 |
|
4 |
global $wpdb, $WP_Statistics;
|
|
|
|
|
5 |
?>
|
6 |
<div class="postbox">
|
7 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
@@ -13,6 +15,7 @@
|
|
13 |
</div>
|
14 |
</div>
|
15 |
<?php
|
|
|
16 |
}
|
17 |
|
18 |
function wp_statistics_generate_hits_postbox_content($size="300px", $days=20) {
|
@@ -22,31 +25,38 @@
|
|
22 |
<script type="text/javascript">
|
23 |
var visit_chart;
|
24 |
jQuery(document).ready(function() {
|
25 |
-
<?php
|
26 |
-
|
27 |
-
|
28 |
-
for( $i=$days; $i>=0; $i--) {
|
29 |
-
$stat = wp_statistics_visit('-'.$i, true);
|
30 |
|
31 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
|
|
|
33 |
}
|
34 |
|
35 |
-
|
36 |
-
|
37 |
-
echo "var visitor_data_line = [";
|
38 |
-
|
39 |
-
for( $i=$days; $i>=0; $i--) {
|
40 |
-
$stat = wp_statistics_visitor('-'.$i, true);
|
41 |
|
42 |
-
|
43 |
-
|
44 |
-
|
|
|
|
|
|
|
45 |
|
46 |
-
|
47 |
|
|
|
|
|
48 |
?>
|
49 |
-
visit_chart = jQuery.jqplot('visits-stats', [
|
50 |
title: {
|
51 |
text: '<b>' + <?php echo json_encode(__('Hits in the last', 'wp_statistics') . ' ' . $days . ' ' . __('days', 'wp_statistics')); ?> + '</b>',
|
52 |
fontSize: '12px',
|
@@ -83,7 +93,7 @@
|
|
83 |
show: true,
|
84 |
location: 's',
|
85 |
placement: 'outsideGrid',
|
86 |
-
labels: [
|
87 |
renderer: jQuery.jqplot.EnhancedLegendRenderer,
|
88 |
rendererOptions:
|
89 |
{
|
2 |
function wp_statistics_generate_hits_postbox($ISOCountryCode, $search_engines) {
|
3 |
|
4 |
global $wpdb, $WP_Statistics;
|
5 |
+
|
6 |
+
if( $WP_Statistics->get_option( 'visits' ) || $WP_Statistics->get_option( 'visitors') ) {
|
7 |
?>
|
8 |
<div class="postbox">
|
9 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
15 |
</div>
|
16 |
</div>
|
17 |
<?php
|
18 |
+
}
|
19 |
}
|
20 |
|
21 |
function wp_statistics_generate_hits_postbox_content($size="300px", $days=20) {
|
25 |
<script type="text/javascript">
|
26 |
var visit_chart;
|
27 |
jQuery(document).ready(function() {
|
28 |
+
<?php
|
29 |
+
if( $WP_Statistics->get_option( 'visits' ) ) {
|
30 |
+
echo "var visit_data_line = [";
|
|
|
|
|
31 |
|
32 |
+
for( $i=$days; $i>=0; $i--) {
|
33 |
+
$stat = wp_statistics_visit('-'.$i, true);
|
34 |
+
|
35 |
+
echo "['" . $WP_Statistics->Current_Date('Y-m-d', '-'.$i) . "'," . $stat . "], ";
|
36 |
+
|
37 |
+
}
|
38 |
+
|
39 |
+
echo "];\n";
|
40 |
|
41 |
+
$data_lines[] = 'visit_data_line';
|
42 |
}
|
43 |
|
44 |
+
if( $WP_Statistics->get_option( 'visitors' ) ) {
|
45 |
+
echo "var visitor_data_line = [";
|
|
|
|
|
|
|
|
|
46 |
|
47 |
+
for( $i=$days; $i>=0; $i--) {
|
48 |
+
$stat = wp_statistics_visitor('-'.$i, true);
|
49 |
+
|
50 |
+
echo "['" . $WP_Statistics->Current_Date('Y-m-d', '-'.$i) . "'," . $stat . "], ";
|
51 |
+
|
52 |
+
}
|
53 |
|
54 |
+
echo "];\n";
|
55 |
|
56 |
+
$data_lines[] = 'visitor_data_line';
|
57 |
+
}
|
58 |
?>
|
59 |
+
visit_chart = jQuery.jqplot('visits-stats', [<?php echo implode( ',', $data_lines)?>], {
|
60 |
title: {
|
61 |
text: '<b>' + <?php echo json_encode(__('Hits in the last', 'wp_statistics') . ' ' . $days . ' ' . __('days', 'wp_statistics')); ?> + '</b>',
|
62 |
fontSize: '12px',
|
93 |
show: true,
|
94 |
location: 's',
|
95 |
placement: 'outsideGrid',
|
96 |
+
labels: [<?php echo implode( ',', array( json_encode( __( 'Visit', 'wp_statistics' ) ), json_encode( __('Visitor', 'wp_statistics') ) ) ); ?>],
|
97 |
renderer: jQuery.jqplot.EnhancedLegendRenderer,
|
98 |
rendererOptions:
|
99 |
{
|
includes/log/widgets/jqv.map.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
|
4 |
global $wpdb, $WP_Statistics;
|
5 |
|
6 |
-
if($WP_Statistics->get_option('geoip') && !$WP_Statistics->get_option('disable_map') ) { ?>
|
7 |
<div class="postbox">
|
8 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
9 |
<h3 class="hndle"><span><?php _e('Today Visitors Map', 'wp_statistics'); ?></span></h3>
|
3 |
|
4 |
global $wpdb, $WP_Statistics;
|
5 |
|
6 |
+
if($WP_Statistics->get_option('geoip') && !$WP_Statistics->get_option('disable_map') && $WP_Statistics->get_option('visitos' ) ) { ?>
|
7 |
<div class="postbox">
|
8 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
9 |
<h3 class="hndle"><span><?php _e('Today Visitors Map', 'wp_statistics'); ?></span></h3>
|
includes/log/widgets/page.php
CHANGED
@@ -2,6 +2,8 @@
|
|
2 |
|
3 |
function wp_statistics_generate_page_postbox_content($pageuri, $pageid, $days = 20, $chart_title = null, $rangestart = '', $rangeend = '' ) {
|
4 |
GLOBAL $WP_Statistics;
|
|
|
|
|
5 |
|
6 |
if( $chart_title == null ) { $chart_title = __('Page Trending Stats', 'wp_statistics'); }
|
7 |
|
2 |
|
3 |
function wp_statistics_generate_page_postbox_content($pageuri, $pageid, $days = 20, $chart_title = null, $rangestart = '', $rangeend = '' ) {
|
4 |
GLOBAL $WP_Statistics;
|
5 |
+
|
6 |
+
if( ! $WP_Statistics->get_option('pages') ) { return; }
|
7 |
|
8 |
if( $chart_title == null ) { $chart_title = __('Page Trending Stats', 'wp_statistics'); }
|
9 |
|
includes/log/widgets/pages.php
CHANGED
@@ -1,6 +1,9 @@
|
|
1 |
<?php
|
2 |
function wp_statistics_generate_pages_postbox($ISOCountryCode, $search_engines) {
|
3 |
-
|
|
|
|
|
|
|
4 |
list( $total, $uris ) = wp_statistics_get_top_pages();
|
5 |
|
6 |
if( $total > 0 ) {
|
1 |
<?php
|
2 |
function wp_statistics_generate_pages_postbox($ISOCountryCode, $search_engines) {
|
3 |
+
GLOBAL $WP_Statistics;
|
4 |
+
|
5 |
+
if( ! $WP_Statistics->get_option('pages') ) { return; }
|
6 |
+
|
7 |
list( $total, $uris ) = wp_statistics_get_top_pages();
|
8 |
|
9 |
if( $total > 0 ) {
|
includes/log/widgets/recent.php
CHANGED
@@ -1,6 +1,8 @@
|
|
1 |
<?php
|
2 |
function wp_statistics_generate_recent_postbox($ISOCountryCode, $search_engines) {
|
3 |
-
|
|
|
|
|
4 |
?>
|
5 |
<div class="postbox">
|
6 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
@@ -13,6 +15,7 @@
|
|
13 |
</div>
|
14 |
</div>
|
15 |
<?php
|
|
|
16 |
}
|
17 |
|
18 |
function wp_statistics_generate_recent_postbox_content($ISOCountryCode, $count = 10) {
|
1 |
<?php
|
2 |
function wp_statistics_generate_recent_postbox($ISOCountryCode, $search_engines) {
|
3 |
+
GLOBAL $WP_Statistics;
|
4 |
+
|
5 |
+
if( $WP_Statistics->get_option( 'visitors' ) ) {
|
6 |
?>
|
7 |
<div class="postbox">
|
8 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
15 |
</div>
|
16 |
</div>
|
17 |
<?php
|
18 |
+
}
|
19 |
}
|
20 |
|
21 |
function wp_statistics_generate_recent_postbox_content($ISOCountryCode, $count = 10) {
|
includes/log/widgets/referring.php
CHANGED
@@ -3,9 +3,12 @@
|
|
3 |
|
4 |
global $wpdb, $WP_Statistics;
|
5 |
|
6 |
-
|
7 |
|
8 |
-
if(
|
|
|
|
|
|
|
9 |
?>
|
10 |
<div class="postbox">
|
11 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
@@ -19,6 +22,7 @@
|
|
19 |
</div>
|
20 |
</div>
|
21 |
<?php
|
|
|
22 |
}
|
23 |
}
|
24 |
|
3 |
|
4 |
global $wpdb, $WP_Statistics;
|
5 |
|
6 |
+
global $wpdb, $WP_Statistics;
|
7 |
|
8 |
+
if( $WP_Statistics->get_option( 'visitors' ) ) {
|
9 |
+
$result = $wpdb->get_results("SELECT `referred` FROM `{$wpdb->prefix}statistics_visitor` WHERE referred <> ''");
|
10 |
+
|
11 |
+
if( sizeof( $result ) > 0 ) {
|
12 |
?>
|
13 |
<div class="postbox">
|
14 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
22 |
</div>
|
23 |
</div>
|
24 |
<?php
|
25 |
+
}
|
26 |
}
|
27 |
}
|
28 |
|
includes/log/widgets/search.php
CHANGED
@@ -1,6 +1,9 @@
|
|
1 |
<?php
|
2 |
function wp_statistics_generate_search_postbox($ISOCountryCode, $search_engines) {
|
3 |
|
|
|
|
|
|
|
4 |
?>
|
5 |
<div class="postbox">
|
6 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
@@ -10,6 +13,7 @@
|
|
10 |
</div>
|
11 |
</div>
|
12 |
<?php
|
|
|
13 |
}
|
14 |
|
15 |
function wp_statistics_generate_search_postbox_content($search_engines, $size = "300px", $days = 20) {
|
1 |
<?php
|
2 |
function wp_statistics_generate_search_postbox($ISOCountryCode, $search_engines) {
|
3 |
|
4 |
+
global $wpdb, $WP_Statistics;
|
5 |
+
|
6 |
+
if( $WP_Statistics->get_option( 'visitors' ) ) {
|
7 |
?>
|
8 |
<div class="postbox">
|
9 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
13 |
</div>
|
14 |
</div>
|
15 |
<?php
|
16 |
+
}
|
17 |
}
|
18 |
|
19 |
function wp_statistics_generate_search_postbox_content($search_engines, $size = "300px", $days = 20) {
|
includes/log/widgets/summary.php
CHANGED
@@ -16,62 +16,75 @@
|
|
16 |
function wp_statistics_generate_summary_postbox_content($search_engines, $search = true, $time = true) {
|
17 |
|
18 |
global $wpdb, $WP_Statistics;
|
|
|
|
|
19 |
?>
|
20 |
<table width="100%" class="widefat table-stats" id="summary-stats">
|
21 |
<tbody>
|
|
|
22 |
<tr>
|
23 |
<th><?php _e('User(s) Online', 'wp_statistics'); ?>:</th>
|
24 |
<th colspan="2" id="th-colspan">
|
25 |
-
<span><a href="admin.php?page=wps_online_menu"><?php echo wp_statistics_useronline(); ?><a></span>
|
26 |
</th>
|
27 |
</tr>
|
28 |
-
|
|
|
|
|
|
|
29 |
<tr>
|
30 |
<th width="60%"></th>
|
31 |
-
<th class="th-center"><?php _e('Visitor', 'wp_statistics'); ?></th>
|
32 |
-
<th class="th-center"><?php _e('Visit', 'wp_statistics'); ?></th>
|
33 |
</tr>
|
34 |
|
35 |
<tr>
|
36 |
<th><?php _e('Today', 'wp_statistics'); ?>:</th>
|
37 |
-
<th class="th-center"
|
38 |
-
<th class="th-center"
|
39 |
</tr>
|
40 |
|
41 |
<tr>
|
42 |
<th><?php _e('Yesterday', 'wp_statistics'); ?>:</th>
|
43 |
-
<th class="th-center"
|
44 |
-
<th class="th-center"
|
45 |
</tr>
|
46 |
|
47 |
<tr>
|
48 |
<th><?php _e('Last 7 Days (Week)', 'wp_statistics'); ?>:</th>
|
49 |
-
<th class="th-center"
|
50 |
-
<th class="th-center"
|
51 |
</tr>
|
52 |
|
53 |
<tr>
|
54 |
<th><?php _e('Last 30 Days (Month)', 'wp_statistics'); ?>:</th>
|
55 |
-
<th class="th-center"
|
56 |
-
<th class="th-center"
|
57 |
</tr>
|
58 |
|
59 |
<tr>
|
60 |
<th><?php _e('Last 365 Days (Year)', 'wp_statistics'); ?>:</th>
|
61 |
-
<th class="th-center"
|
62 |
-
<th class="th-center"
|
63 |
</tr>
|
64 |
|
65 |
<tr>
|
66 |
<th><?php _e('Total', 'wp_statistics'); ?>:</th>
|
67 |
-
<th class="th-center"
|
68 |
-
<th class="th-center"
|
69 |
</tr>
|
70 |
|
71 |
-
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
72 |
<tr>
|
73 |
<th colspan="3"><br><hr></th>
|
74 |
</tr>
|
|
|
75 |
<tr>
|
76 |
<th colspan="3" style="text-align: center;"><?php _e('Search Engine Referrals', 'wp_statistics'); ?></th>
|
77 |
</tr>
|
16 |
function wp_statistics_generate_summary_postbox_content($search_engines, $search = true, $time = true) {
|
17 |
|
18 |
global $wpdb, $WP_Statistics;
|
19 |
+
|
20 |
+
$show_visitors = $WP_Statistics->get_option('visitor');
|
21 |
?>
|
22 |
<table width="100%" class="widefat table-stats" id="summary-stats">
|
23 |
<tbody>
|
24 |
+
<?php if( $WP_Statistics->get_option('useronline') ) {?>
|
25 |
<tr>
|
26 |
<th><?php _e('User(s) Online', 'wp_statistics'); ?>:</th>
|
27 |
<th colspan="2" id="th-colspan">
|
28 |
+
<span><a href="admin.php?page=wps_online_menu"><?php echo wp_statistics_useronline(); ?><a></span>
|
29 |
</th>
|
30 |
</tr>
|
31 |
+
<?php }
|
32 |
+
|
33 |
+
if( $WP_Statistics->get_option('visitors') || $WP_Statistics->get_option('visits') ) {
|
34 |
+
?>
|
35 |
<tr>
|
36 |
<th width="60%"></th>
|
37 |
+
<th class="th-center"><?php if( $WP_Statistics->get_option('visitors') ) { _e('Visitor', 'wp_statistics'); } else { echo ''; }?></th>
|
38 |
+
<th class="th-center"><?php if( $WP_Statistics->get_option('visits') ) { _e('Visit', 'wp_statistics'); } else { echo ''; }?></th>
|
39 |
</tr>
|
40 |
|
41 |
<tr>
|
42 |
<th><?php _e('Today', 'wp_statistics'); ?>:</th>
|
43 |
+
<th class="th-center"><?php if( $WP_Statistics->get_option('visitors') ) { echo '<a href="admin.php?page=wps_visitors_menu&hitdays=1"><span>' . number_format_i18n(wp_statistics_visitor('today',null,true)) . '</span></a>'; } else { echo ''; }?></th>
|
44 |
+
<th class="th-center"><?php if( $WP_Statistics->get_option('visits') ) { echo '<a href="admin.php?page=wps_hits_menu&hitdays=1"><span>' . number_format_i18n(wp_statistics_visit('today')) . '</span></a>'; } else { echo ''; }?></th>
|
45 |
</tr>
|
46 |
|
47 |
<tr>
|
48 |
<th><?php _e('Yesterday', 'wp_statistics'); ?>:</th>
|
49 |
+
<th class="th-center"><?php if( $WP_Statistics->get_option('visitors') ) { echo '<a href="admin.php?page=wps_visitors_menu&hitdays=1"><span>' . number_format_i18n(wp_statistics_visitor('yesterday',null,true)) . '</span></a>'; } else { echo ''; }?></th>
|
50 |
+
<th class="th-center"><?php if( $WP_Statistics->get_option('visits') ) { echo '<a href="admin.php?page=wps_hits_menu&hitdays=1"><span>' . number_format_i18n(wp_statistics_visit('yesterday')) . '</span></a>'; } else { echo ''; }?></th>
|
51 |
</tr>
|
52 |
|
53 |
<tr>
|
54 |
<th><?php _e('Last 7 Days (Week)', 'wp_statistics'); ?>:</th>
|
55 |
+
<th class="th-center"><?php if( $WP_Statistics->get_option('visitors') ) { echo '<a href="admin.php?page=wps_visitors_menu&hitdays=7"><span>' . number_format_i18n(wp_statistics_visitor('week',null,true)) . '</span></a>'; } else { echo ''; }?></th>
|
56 |
+
<th class="th-center"><?php if( $WP_Statistics->get_option('visits') ) { echo '<a href="admin.php?page=wps_hits_menu&hitdays=7"><span>' . number_format_i18n(wp_statistics_visit('week')) . '</span></a>'; } else { echo ''; }?></th>
|
57 |
</tr>
|
58 |
|
59 |
<tr>
|
60 |
<th><?php _e('Last 30 Days (Month)', 'wp_statistics'); ?>:</th>
|
61 |
+
<th class="th-center"><?php if( $WP_Statistics->get_option('visitors') ) { echo '<a href="admin.php?page=wps_visitors_menu&hitdays=30"><span>' . number_format_i18n(wp_statistics_visitor('month',null,true)) . '</span></a>'; } else { echo ''; }?></th>
|
62 |
+
<th class="th-center"><?php if( $WP_Statistics->get_option('visits') ) { echo '<a href="admin.php?page=wps_hits_menu&hitdays=30"><span>' . number_format_i18n(wp_statistics_visit('month')) . '</span></a>'; } else { echo ''; }?></th>
|
63 |
</tr>
|
64 |
|
65 |
<tr>
|
66 |
<th><?php _e('Last 365 Days (Year)', 'wp_statistics'); ?>:</th>
|
67 |
+
<th class="th-center"><?php if( $WP_Statistics->get_option('visitors') ) { echo '<a href="admin.php?page=wps_visitors_menu&hitdays=365"><span>' . number_format_i18n(wp_statistics_visitor('year',null,true)) . '</span></a>'; } else { echo ''; }?></th>
|
68 |
+
<th class="th-center"><?php if( $WP_Statistics->get_option('visits') ) { echo '<a href="admin.php?page=wps_hits_menu&hitdays=365"><span>' . number_format_i18n(wp_statistics_visit('year')) . '</span></a>'; } else { echo ''; }?></th>
|
69 |
</tr>
|
70 |
|
71 |
<tr>
|
72 |
<th><?php _e('Total', 'wp_statistics'); ?>:</th>
|
73 |
+
<th class="th-center"><?php if( $WP_Statistics->get_option('visitors') ) { echo '<a href="admin.php?page=wps_visitors_menu&hitdays=365"><span>' . number_format_i18n(wp_statistics_visitor('total',null,true)) . '</span></a>'; } else { echo ''; }?></th>
|
74 |
+
<th class="th-center"><?php if( $WP_Statistics->get_option('visits') ) { echo '<a href="admin.php?page=wps_hits_menu&hitdays=365"><span>' . number_format_i18n(wp_statistics_visit('total')) . '</span></a>'; } else { echo ''; }?></th>
|
75 |
</tr>
|
76 |
|
77 |
+
<?php
|
78 |
+
}
|
79 |
+
|
80 |
+
if( $search == true && $WP_Statistics->get_option('visitors' )) {
|
81 |
+
|
82 |
+
if( $WP_Statistics->get_option('visitors') || $WP_Statistics->get_option('visits') || $WP_Statistics->get_option('useronline') ) {
|
83 |
+
?>
|
84 |
<tr>
|
85 |
<th colspan="3"><br><hr></th>
|
86 |
</tr>
|
87 |
+
<?php }?>
|
88 |
<tr>
|
89 |
<th colspan="3" style="text-align: center;"><?php _e('Search Engine Referrals', 'wp_statistics'); ?></th>
|
90 |
</tr>
|
includes/log/widgets/top.visitors.php
CHANGED
@@ -2,6 +2,8 @@
|
|
2 |
function wp_statistics_generate_top_visitors_postbox($ISOCountryCode, $search_engines) {
|
3 |
|
4 |
global $wpdb, $WP_Statistics;
|
|
|
|
|
5 |
?>
|
6 |
<div class="postbox">
|
7 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
@@ -13,6 +15,7 @@
|
|
13 |
</div>
|
14 |
</div>
|
15 |
<?php
|
|
|
16 |
}
|
17 |
|
18 |
function wp_statistics_generate_top_visitors_postbox_content($ISOCountryCode, $day='today', $count=10, $compact=false) {
|
2 |
function wp_statistics_generate_top_visitors_postbox($ISOCountryCode, $search_engines) {
|
3 |
|
4 |
global $wpdb, $WP_Statistics;
|
5 |
+
|
6 |
+
if( $WP_Statistics->get_option( 'visitors' ) ) {
|
7 |
?>
|
8 |
<div class="postbox">
|
9 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
15 |
</div>
|
16 |
</div>
|
17 |
<?php
|
18 |
+
}
|
19 |
}
|
20 |
|
21 |
function wp_statistics_generate_top_visitors_postbox_content($ISOCountryCode, $day='today', $count=10, $compact=false) {
|
includes/log/widgets/words.php
CHANGED
@@ -1,6 +1,9 @@
|
|
1 |
<?php
|
2 |
function wp_statistics_generate_words_postbox($ISOCountryCode, $search_engines) {
|
3 |
|
|
|
|
|
|
|
4 |
?>
|
5 |
<div class="postbox">
|
6 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
@@ -12,6 +15,7 @@
|
|
12 |
</div>
|
13 |
</div>
|
14 |
<?php
|
|
|
15 |
}
|
16 |
|
17 |
function wp_statistics_generate_words_postbox_content($ISOCountryCode, $count = 10) {
|
1 |
<?php
|
2 |
function wp_statistics_generate_words_postbox($ISOCountryCode, $search_engines) {
|
3 |
|
4 |
+
global $wpdb, $WP_Statistics;
|
5 |
+
|
6 |
+
if( $WP_Statistics->get_option( 'visitors' ) ) {
|
7 |
?>
|
8 |
<div class="postbox">
|
9 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
15 |
</div>
|
16 |
</div>
|
17 |
<?php
|
18 |
+
}
|
19 |
}
|
20 |
|
21 |
function wp_statistics_generate_words_postbox_content($ISOCountryCode, $count = 10) {
|
includes/optimization/delete-agents.php
DELETED
@@ -1,23 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
require('../../../../../wp-blog-header.php');
|
3 |
-
|
4 |
-
if( !is_super_admin() )
|
5 |
-
wp_die(__('Access denied!', 'wp_statistics'));
|
6 |
-
|
7 |
-
$agent = $_POST['agent_name'];
|
8 |
-
|
9 |
-
if($agent) {
|
10 |
-
|
11 |
-
$result = $wpdb->query($wpdb->prepare("DELETE FROM {$wpdb->prefix}statistics_visitor WHERE `agent` = %s", $agent ));
|
12 |
-
|
13 |
-
if($result) {
|
14 |
-
echo sprintf(__('%s agent data deleted successfully.', 'wp_statistics'), '<code>' . $agent . '</code>');
|
15 |
-
}
|
16 |
-
else {
|
17 |
-
_e('No agent data found to remove!', 'wp_statistics');
|
18 |
-
}
|
19 |
-
|
20 |
-
} else {
|
21 |
-
_e('Please select the desired items.', 'wp_statistics');
|
22 |
-
}
|
23 |
-
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
includes/optimization/delete-platforms.php
DELETED
@@ -1,23 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
require('../../../../../wp-blog-header.php');
|
3 |
-
|
4 |
-
if( !is_super_admin() )
|
5 |
-
wp_die(__('Access denied!', 'wp_statistics'));
|
6 |
-
|
7 |
-
$platform = $_POST['platform_name'];
|
8 |
-
|
9 |
-
if($platform) {
|
10 |
-
|
11 |
-
$result = $wpdb->query($wpdb->prepare("DELETE FROM {$wpdb->prefix}statistics_visitor WHERE `platform` = %s", $platform));
|
12 |
-
|
13 |
-
if($result) {
|
14 |
-
echo sprintf(__('%s platform data deleted successfully.', 'wp_statistics'), '<code>' . $platform . '</code>');
|
15 |
-
}
|
16 |
-
else {
|
17 |
-
_e('No platform data found to remove!', 'wp_statistics');
|
18 |
-
}
|
19 |
-
|
20 |
-
} else {
|
21 |
-
_e('Please select the desired items.', 'wp_statistics');
|
22 |
-
}
|
23 |
-
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
includes/optimization/empty.php
DELETED
@@ -1,59 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
require('../../../../../wp-blog-header.php');
|
3 |
-
|
4 |
-
if( !is_super_admin() )
|
5 |
-
wp_die(__('Access denied!', 'wp_statistics'));
|
6 |
-
|
7 |
-
$table_name = $_POST['table_name'];
|
8 |
-
|
9 |
-
if($table_name) {
|
10 |
-
|
11 |
-
switch( $table_name ) {
|
12 |
-
case 'useronline':
|
13 |
-
echo wp_statitiscs_empty_table($wpdb->prefix . 'statistics_useronline');
|
14 |
-
break;
|
15 |
-
case 'visit':
|
16 |
-
echo wp_statitiscs_empty_table($wpdb->prefix . 'statistics_visit');
|
17 |
-
break;
|
18 |
-
case 'visitors':
|
19 |
-
echo wp_statitiscs_empty_table($wpdb->prefix . 'statistics_visitor');
|
20 |
-
break;
|
21 |
-
case 'exclusions':
|
22 |
-
echo wp_statitiscs_empty_table($wpdb->prefix . 'statistics_exclusions');
|
23 |
-
break;
|
24 |
-
case 'pages':
|
25 |
-
echo wp_statitiscs_empty_table($wpdb->prefix . 'statistics_pages');
|
26 |
-
break;
|
27 |
-
case 'all':
|
28 |
-
$result_string = wp_statitiscs_empty_table($wpdb->prefix . 'statistics_useronline');
|
29 |
-
$result_string .= '<br>' . wp_statitiscs_empty_table($wpdb->prefix . 'statistics_visit');
|
30 |
-
$result_string .= '<br>' . wp_statitiscs_empty_table($wpdb->prefix . 'statistics_visitor');
|
31 |
-
$result_string .= '<br>' . wp_statitiscs_empty_table($wpdb->prefix . 'statistics_exclusions');
|
32 |
-
$result_string .= '<br>' . wp_statitiscs_empty_table($wpdb->prefix . 'statistics_pages');
|
33 |
-
|
34 |
-
echo $result_string;
|
35 |
-
|
36 |
-
break;
|
37 |
-
}
|
38 |
-
|
39 |
-
$WP_Statistics->Primary_Values();
|
40 |
-
|
41 |
-
} else {
|
42 |
-
_e('Please select the desired items.', 'wp_statistics');
|
43 |
-
}
|
44 |
-
|
45 |
-
function wp_statitiscs_empty_table( $table_name = FALSE ) {
|
46 |
-
|
47 |
-
global $wpdb;
|
48 |
-
|
49 |
-
if( $table_name ) {
|
50 |
-
$result = $wpdb->query('DELETE FROM ' . $table_name);
|
51 |
-
|
52 |
-
if($result) {
|
53 |
-
return sprintf(__('%s table data deleted successfully.', 'wp_statistics'), '<code>' . $table_name . '</code>');
|
54 |
-
}
|
55 |
-
}
|
56 |
-
|
57 |
-
return sprintf(__('Error, %s not emptied!', 'wp_statistics'), $table_name );
|
58 |
-
}
|
59 |
-
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
includes/optimization/export.php
DELETED
@@ -1,82 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
require('../../../../../wp-load.php');
|
3 |
-
|
4 |
-
if( !is_super_admin() )
|
5 |
-
wp_die(__('Access denied!', 'wp_statistics'));
|
6 |
-
|
7 |
-
$table = $_POST['table-to-export'];
|
8 |
-
$type = $_POST['export-file-type'];
|
9 |
-
$headers = $_POST['export-headers'];
|
10 |
-
|
11 |
-
// Validate the table name the user passed to us.
|
12 |
-
if( !( $table == "useronline" || $table == "visit" || $table == "visitor" || $table == "exclusions" || $table == "pages" ) ) { $table = FALSE; }
|
13 |
-
|
14 |
-
// Validate the file type the user passed to us.
|
15 |
-
if( !( $type == "excel" || $type == "xml" || $type == "csv" || $type == "tsv" ) ) { $table = FALSE; }
|
16 |
-
|
17 |
-
if($table && $type) {
|
18 |
-
|
19 |
-
require('../classes/php-export-data.class.php');
|
20 |
-
|
21 |
-
$file_name = WPS_EXPORT_FILE_NAME . '-' . $WP_Statistics->Current_Date('Y-m-d-H-i');
|
22 |
-
|
23 |
-
switch($type) {
|
24 |
-
case 'excel':
|
25 |
-
$exporter = new ExportDataExcel('browser', "{$file_name}.xls");
|
26 |
-
break;
|
27 |
-
|
28 |
-
case 'xml':
|
29 |
-
$exporter = new ExportDataExcel('browser', "{$file_name}.xml");
|
30 |
-
break;
|
31 |
-
|
32 |
-
case 'csv':
|
33 |
-
$exporter = new ExportDataCSV('browser', "{$file_name}.csv");
|
34 |
-
break;
|
35 |
-
|
36 |
-
case 'tsv':
|
37 |
-
$exporter = new ExportDataTSV('browser', "{$file_name}.tsv");
|
38 |
-
break;
|
39 |
-
}
|
40 |
-
|
41 |
-
$exporter->initialize();
|
42 |
-
|
43 |
-
// We need to limit the number of results we retrieve to ensure we don't run out of memory
|
44 |
-
$query_base = "SELECT * FROM {$wpdb->prefix}statistics_{$table}";
|
45 |
-
$query = $query_base . ' LIMIT 0,1000';
|
46 |
-
|
47 |
-
$i = 1;
|
48 |
-
$more_results = true;
|
49 |
-
$result = $wpdb->get_results($query, ARRAY_A);
|
50 |
-
|
51 |
-
if( $headers ) {
|
52 |
-
foreach( $result[0] as $key => $col ) { $columns[] = $key; }
|
53 |
-
$exporter->addRow($columns);
|
54 |
-
}
|
55 |
-
|
56 |
-
|
57 |
-
while( $more_results ) {
|
58 |
-
foreach($result as $row) {
|
59 |
-
$exporter->addRow($row);
|
60 |
-
|
61 |
-
// Make sure we've flushed the output buffer so we don't run out of memory on large exports.
|
62 |
-
ob_flush();
|
63 |
-
flush();
|
64 |
-
}
|
65 |
-
|
66 |
-
unset( $result );
|
67 |
-
$wpdb->flush();
|
68 |
-
|
69 |
-
$query = $query_base . ' LIMIT ' . ($i * 1000) . ',1000';
|
70 |
-
$result = $wpdb->get_results($query, ARRAY_A);
|
71 |
-
|
72 |
-
if( count( $result ) == 0 ) { $more_results = false; }
|
73 |
-
|
74 |
-
$i++;
|
75 |
-
}
|
76 |
-
|
77 |
-
$exporter->finalize();
|
78 |
-
|
79 |
-
} else {
|
80 |
-
wp_die(__('Please select the desired items.', 'wp_statistics'), false, array('back_link' => true));
|
81 |
-
}
|
82 |
-
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
includes/optimization/purge-data.php
DELETED
@@ -1,17 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
require('../../../../../wp-blog-header.php');
|
3 |
-
require('../functions/purge.php');
|
4 |
-
|
5 |
-
if( !is_super_admin() )
|
6 |
-
wp_die(__('Access denied!', 'wp_statistics'));
|
7 |
-
|
8 |
-
$purge_days = 0;
|
9 |
-
|
10 |
-
if( array_key_exists( 'purge_days', $_POST ) ) {
|
11 |
-
// Get the number of days to purge data before.
|
12 |
-
$purge_days = intval($_POST['purge_days']);
|
13 |
-
}
|
14 |
-
|
15 |
-
echo wp_statistics_purge_data( $purge_days );
|
16 |
-
|
17 |
-
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
includes/optimization/tabs/wps-optimization-export.php
CHANGED
@@ -1,6 +1,7 @@
|
|
1 |
<div class="wrap">
|
2 |
|
3 |
-
<form method="post"
|
|
|
4 |
<table class="form-table">
|
5 |
<tbody>
|
6 |
<tr valign="top">
|
1 |
<div class="wrap">
|
2 |
|
3 |
+
<form method="post">
|
4 |
+
<input type="hidden" name="wps_export" value="true">
|
5 |
<table class="form-table">
|
6 |
<tbody>
|
7 |
<tr valign="top">
|
includes/optimization/tabs/wps-optimization-purging.php
CHANGED
@@ -12,18 +12,56 @@
|
|
12 |
if(!agree)
|
13 |
return false;
|
14 |
|
15 |
-
var data = new Array();
|
16 |
-
data['purge-days'] = action;
|
17 |
-
|
18 |
jQuery("#purge-data-submit").attr("disabled", "disabled");
|
19 |
jQuery("#purge-data-status").html("<img src='<?php echo plugins_url('wp-statistics'); ?>/assets/images/loading.gif'/>");
|
20 |
|
21 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
.always(function(result){
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
jQuery("#wps_historical_purge").show();
|
27 |
});
|
28 |
});
|
29 |
|
@@ -39,17 +77,23 @@
|
|
39 |
if(!agree)
|
40 |
return false;
|
41 |
|
42 |
-
var data = new Array();
|
43 |
-
data['table-name'] = jQuery("#empty-table").val();
|
44 |
-
|
45 |
jQuery("#empty-table-submit").attr("disabled", "disabled");
|
46 |
jQuery("#empty-status").html("<img src='<?php echo plugins_url('wp-statistics'); ?>/assets/images/loading.gif'/>");
|
47 |
|
48 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
.always(function(result){
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
});
|
54 |
});
|
55 |
|
@@ -65,16 +109,22 @@
|
|
65 |
if(!agree)
|
66 |
return false;
|
67 |
|
68 |
-
var data = new Array();
|
69 |
-
data['agent-name'] = jQuery("#delete-agent").val();
|
70 |
-
|
71 |
jQuery("#delete-agents-submit").attr("disabled", "disabled");
|
72 |
jQuery("#delete-agents-status").html("<img src='<?php echo plugins_url('wp-statistics'); ?>/assets/images/loading.gif'/>");
|
73 |
|
74 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
75 |
.always(function(result){
|
76 |
jQuery("#delete-agents-status").html("");
|
77 |
-
jQuery("#delete-agents-result").html(result
|
78 |
jQuery("#delete-agents-submit").removeAttr("disabled");
|
79 |
aid = data['agent-name'].replace(/[^a-zA-Z]/g, "");
|
80 |
jQuery("#agent-" + aid + "-id").remove();
|
@@ -93,19 +143,25 @@
|
|
93 |
if(!agree)
|
94 |
return false;
|
95 |
|
96 |
-
var data = new Array();
|
97 |
-
data['platform-name'] = jQuery("#delete-platform").val();
|
98 |
-
|
99 |
jQuery("#delete-platforms-submit").attr("disabled", "disabled");
|
100 |
jQuery("#delete-platforms-status").html("<img src='<?php echo plugins_url('wp-statistics'); ?>/assets/images/loading.gif'/>");
|
101 |
|
102 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
103 |
.always(function(result){
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
});
|
110 |
});
|
111 |
|
@@ -156,6 +212,21 @@
|
|
156 |
</td>
|
157 |
</tr>
|
158 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
159 |
<tr valign="top">
|
160 |
<th scope="row" colspan="2"><h3><?php _e('Delete User Agent Types', 'wp_statistics'); ?></h3></th>
|
161 |
</tr>
|
12 |
if(!agree)
|
13 |
return false;
|
14 |
|
|
|
|
|
|
|
15 |
jQuery("#purge-data-submit").attr("disabled", "disabled");
|
16 |
jQuery("#purge-data-status").html("<img src='<?php echo plugins_url('wp-statistics'); ?>/assets/images/loading.gif'/>");
|
17 |
|
18 |
+
var data = {
|
19 |
+
'action': 'wp_statistics_purge_data',
|
20 |
+
'purge-days': action,
|
21 |
+
};
|
22 |
+
|
23 |
+
jQuery.ajax({ url: ajaxurl,
|
24 |
+
type: 'post',
|
25 |
+
data: data,
|
26 |
+
datatype: 'json',
|
27 |
+
})
|
28 |
+
.always(function(result){
|
29 |
+
jQuery("#purge-data-status").html("");
|
30 |
+
jQuery("#purge-data-result").html(result);
|
31 |
+
jQuery("#purge-data-submit").removeAttr("disabled");
|
32 |
+
jQuery("#wps_historical_purge").show();
|
33 |
+
});
|
34 |
+
});
|
35 |
+
|
36 |
+
jQuery("#purge-visitor-hits-submit").click(function(){
|
37 |
+
|
38 |
+
var action = jQuery('#purge-visitor-hits').val();
|
39 |
+
|
40 |
+
if(action == 0)
|
41 |
+
return false;
|
42 |
+
|
43 |
+
var agree = confirm('<?php _e('Are you sure?', 'wp_statistics'); ?>');
|
44 |
+
|
45 |
+
if(!agree)
|
46 |
+
return false;
|
47 |
+
|
48 |
+
jQuery("#purge-visitor-hits-submit").attr("disabled", "disabled");
|
49 |
+
jQuery("#purge-visitor-hits-status").html("<img src='<?php echo plugins_url('wp-statistics'); ?>/assets/images/loading.gif'/>");
|
50 |
+
|
51 |
+
var data = {
|
52 |
+
'action': 'wp_statistics_purge_visitor_hits',
|
53 |
+
'purge-hits': action,
|
54 |
+
};
|
55 |
+
|
56 |
+
jQuery.ajax({ url: ajaxurl,
|
57 |
+
type: 'post',
|
58 |
+
data: data,
|
59 |
+
datatype: 'json',
|
60 |
+
})
|
61 |
.always(function(result){
|
62 |
+
jQuery("#purge-visitor-hits-status").html("");
|
63 |
+
jQuery("#purge-visitor-hits-result").html(result);
|
64 |
+
jQuery("#purge-visitor-hits-submit").removeAttr("disabled");
|
|
|
65 |
});
|
66 |
});
|
67 |
|
77 |
if(!agree)
|
78 |
return false;
|
79 |
|
|
|
|
|
|
|
80 |
jQuery("#empty-table-submit").attr("disabled", "disabled");
|
81 |
jQuery("#empty-status").html("<img src='<?php echo plugins_url('wp-statistics'); ?>/assets/images/loading.gif'/>");
|
82 |
|
83 |
+
var data = {
|
84 |
+
'action': 'wp_statistics_empty_table',
|
85 |
+
'table-name': action,
|
86 |
+
};
|
87 |
+
|
88 |
+
jQuery.ajax({ url: ajaxurl,
|
89 |
+
type: 'post',
|
90 |
+
data: data,
|
91 |
+
datatype: 'json',
|
92 |
+
})
|
93 |
.always(function(result){
|
94 |
+
jQuery("#empty-status").html("");
|
95 |
+
jQuery("#empty-result").html(result);
|
96 |
+
jQuery("#empty-table-submit").removeAttr("disabled");
|
97 |
});
|
98 |
});
|
99 |
|
109 |
if(!agree)
|
110 |
return false;
|
111 |
|
|
|
|
|
|
|
112 |
jQuery("#delete-agents-submit").attr("disabled", "disabled");
|
113 |
jQuery("#delete-agents-status").html("<img src='<?php echo plugins_url('wp-statistics'); ?>/assets/images/loading.gif'/>");
|
114 |
|
115 |
+
var data = {
|
116 |
+
'action': 'wp_statistics_delete_agents',
|
117 |
+
'agent-name': action,
|
118 |
+
};
|
119 |
+
|
120 |
+
jQuery.ajax({ url: ajaxurl,
|
121 |
+
type: 'post',
|
122 |
+
data: data,
|
123 |
+
datatype: 'json',
|
124 |
+
})
|
125 |
.always(function(result){
|
126 |
jQuery("#delete-agents-status").html("");
|
127 |
+
jQuery("#delete-agents-result").html(result);
|
128 |
jQuery("#delete-agents-submit").removeAttr("disabled");
|
129 |
aid = data['agent-name'].replace(/[^a-zA-Z]/g, "");
|
130 |
jQuery("#agent-" + aid + "-id").remove();
|
143 |
if(!agree)
|
144 |
return false;
|
145 |
|
|
|
|
|
|
|
146 |
jQuery("#delete-platforms-submit").attr("disabled", "disabled");
|
147 |
jQuery("#delete-platforms-status").html("<img src='<?php echo plugins_url('wp-statistics'); ?>/assets/images/loading.gif'/>");
|
148 |
|
149 |
+
var data = {
|
150 |
+
'action': 'wp_statistics_delete_platforms',
|
151 |
+
'platform-name': action,
|
152 |
+
};
|
153 |
+
|
154 |
+
jQuery.ajax({ url: ajaxurl,
|
155 |
+
type: 'post',
|
156 |
+
data: data,
|
157 |
+
datatype: 'json',
|
158 |
+
})
|
159 |
.always(function(result){
|
160 |
+
jQuery("#delete-platforms-status").html("");
|
161 |
+
jQuery("#delete-platforms-result").html(result);
|
162 |
+
jQuery("#delete-platforms-submit").removeAttr("disabled");
|
163 |
+
pid = data['platform-name'].replace(/[^a-zA-Z]/g, "");
|
164 |
+
jQuery("#platform-" + pid + "-id").remove();
|
165 |
});
|
166 |
});
|
167 |
|
212 |
</td>
|
213 |
</tr>
|
214 |
|
215 |
+
<tr>
|
216 |
+
<th scope="row">
|
217 |
+
<label for="purge-visitor-hits"><?php _e('Purge visitors with more than', 'wp_statistics'); ?>:</label>
|
218 |
+
</th>
|
219 |
+
|
220 |
+
<td>
|
221 |
+
<input type="text" class="small-text code" id="purge-visitor-hits" name="wps_purge_visitor_hits" value="10"/>
|
222 |
+
<label for="purge-visitor-hits"><?php _e('hits', 'wp_statistics'); ?></label>
|
223 |
+
<p class="description"><?php _e('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.', 'wp_statistics'); ?></p>
|
224 |
+
<input id="purge-visitor-hits-submit" class="button button-primary" type="submit" value="<?php _e('Purge now!', 'wp_statistics'); ?>" name="purge-visitor-hits-submit" Onclick="return false;"/>
|
225 |
+
<span id="purge-visitor-hits-status"></span>
|
226 |
+
<div id="purge-visitor-hits-result"></div>
|
227 |
+
</td>
|
228 |
+
</tr>
|
229 |
+
|
230 |
<tr valign="top">
|
231 |
<th scope="row" colspan="2"><h3><?php _e('Delete User Agent Types', 'wp_statistics'); ?></h3></th>
|
232 |
</tr>
|
includes/settings/tabs/wps-about.php
CHANGED
@@ -16,6 +16,14 @@
|
|
16 |
<td scope="row" align="center"><hr /></td>
|
17 |
</tr>
|
18 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
<tr valign="top">
|
20 |
<td scope="row" colspan="2"><h2><?php _e('Visit Us Online', 'wp_statistics'); ?></h2></td>
|
21 |
</tr>
|
16 |
<td scope="row" align="center"><hr /></td>
|
17 |
</tr>
|
18 |
|
19 |
+
<tr valign="top">
|
20 |
+
<td scope="row" colspan="2"><h2><?php _e('Donate', 'wp_statistics'); ?></h2></td>
|
21 |
+
</tr>
|
22 |
+
|
23 |
+
<tr valign="top">
|
24 |
+
<td scope="row" colspan="2"><?php echo sprintf( __('Fell like showing us how much you enjoy WP Statistics? Drop by our %s page and show us some love!', 'wp_statistics'), '<a href="http://wp-statistics.com/donate" target="_blank">' . __('donation', 'wp_statistics') . '</a>');?></td>
|
25 |
+
</tr>
|
26 |
+
|
27 |
<tr valign="top">
|
28 |
<td scope="row" colspan="2"><h2><?php _e('Visit Us Online', 'wp_statistics'); ?></h2></td>
|
29 |
</tr>
|
includes/settings/tabs/wps-access-level.php
CHANGED
@@ -148,7 +148,7 @@ if( $wps_nonce_valid ) {
|
|
148 |
|
149 |
include_once(dirname( __FILE__ ) . '/../../../robotslist.php');
|
150 |
|
151 |
-
if( $robotlist ==
|
152 |
$robotlist = $wps_robotlist;
|
153 |
update_option( 'wps_robotlist', $robotlist );
|
154 |
}
|
@@ -178,7 +178,7 @@ if( $wps_nonce_valid ) {
|
|
178 |
<tr valign="top">
|
179 |
<th scope="row"><?php _e('Excluded IP address list', 'wp_statistics'); ?>:</th>
|
180 |
<td>
|
181 |
-
<textarea id="wps_exclude_ip" name="wps_exclude_ip" rows="5" cols="60" class="code" dir="ltr"><?php echo htmlentities( $WP_Statistics->get_option('exclude_ip', ENT_QUOTES )
|
182 |
<p class="description"><?php echo __('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.', 'wp_statistics'); ?></p>
|
183 |
<a onclick="var wps_exclude_ip = getElementById('wps_exclude_ip'); if( wps_exclude_ip != null ) { wps_exclude_ip.value = jQuery.trim( wps_exclude_ip.value + '\n10.0.0.0/8' ); }" class="button"><?php _e('Add 10.0.0.0', 'wp_statistics');?></a>
|
184 |
<a onclick="var wps_exclude_ip = getElementById('wps_exclude_ip'); if( wps_exclude_ip != null ) { wps_exclude_ip.value = jQuery.trim( wps_exclude_ip.value + '\n172.16.0.0/12' ); }" class="button"><?php _e('Add 172.16.0.0', 'wp_statistics');?></a>
|
148 |
|
149 |
include_once(dirname( __FILE__ ) . '/../../../robotslist.php');
|
150 |
|
151 |
+
if( $robotlist == '' ) {
|
152 |
$robotlist = $wps_robotlist;
|
153 |
update_option( 'wps_robotlist', $robotlist );
|
154 |
}
|
178 |
<tr valign="top">
|
179 |
<th scope="row"><?php _e('Excluded IP address list', 'wp_statistics'); ?>:</th>
|
180 |
<td>
|
181 |
+
<textarea id="wps_exclude_ip" name="wps_exclude_ip" rows="5" cols="60" class="code" dir="ltr"><?php echo htmlentities( $WP_Statistics->get_option('exclude_ip'), ENT_QUOTES );?></textarea>
|
182 |
<p class="description"><?php echo __('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.', 'wp_statistics'); ?></p>
|
183 |
<a onclick="var wps_exclude_ip = getElementById('wps_exclude_ip'); if( wps_exclude_ip != null ) { wps_exclude_ip.value = jQuery.trim( wps_exclude_ip.value + '\n10.0.0.0/8' ); }" class="button"><?php _e('Add 10.0.0.0', 'wp_statistics');?></a>
|
184 |
<a onclick="var wps_exclude_ip = getElementById('wps_exclude_ip'); if( wps_exclude_ip != null ) { wps_exclude_ip.value = jQuery.trim( wps_exclude_ip.value + '\n172.16.0.0/12' ); }" class="button"><?php _e('Add 172.16.0.0', 'wp_statistics');?></a>
|
includes/settings/tabs/wps-general.php
CHANGED
@@ -17,7 +17,7 @@ if( $wps_nonce_valid ) {
|
|
17 |
$WP_Statistics->store_option($new_option, $value);
|
18 |
}
|
19 |
|
20 |
-
$wps_option_list = array('wps_useronline','wps_visits','wps_visitors','wps_pages','wps_track_all_pages','wps_disable_column','wps_check_online','wps_menu_bar','wps_coefficient','wps_chart_totals','wps_store_ua','wps_hide_notices','wps_delete_manual','wps_hash_ips', 'wps_all_online', 'wps_strip_uri_parameters', 'wps_override_language' );
|
21 |
|
22 |
// If the IP hash's are enabled, disable storing the complete user agent.
|
23 |
if( array_key_exists( 'wps_hash_ips', $_POST ) ) { $_POST['wps_store_ua'] = ''; }
|
@@ -276,6 +276,18 @@ if( $wps_nonce_valid ) {
|
|
276 |
<th scope="row" colspan="2"><h3><?php _e('Search Engines', 'wp_statistics'); ?></h3></th>
|
277 |
</tr>
|
278 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
279 |
<tr valign="top">
|
280 |
<th scope="row" colspan="2">
|
281 |
<p class="description"><?php _e('Disabling all search engines is not allowed, doing so will result in all search engines being active.', 'wp_statistics');?></p>
|
17 |
$WP_Statistics->store_option($new_option, $value);
|
18 |
}
|
19 |
|
20 |
+
$wps_option_list = array('wps_useronline','wps_visits','wps_visitors','wps_pages','wps_track_all_pages','wps_disable_column','wps_check_online','wps_menu_bar','wps_coefficient','wps_chart_totals','wps_store_ua','wps_hide_notices','wps_delete_manual','wps_hash_ips', 'wps_all_online', 'wps_strip_uri_parameters', 'wps_override_language','wps_addsearchwords' );
|
21 |
|
22 |
// If the IP hash's are enabled, disable storing the complete user agent.
|
23 |
if( array_key_exists( 'wps_hash_ips', $_POST ) ) { $_POST['wps_store_ua'] = ''; }
|
276 |
<th scope="row" colspan="2"><h3><?php _e('Search Engines', 'wp_statistics'); ?></h3></th>
|
277 |
</tr>
|
278 |
|
279 |
+
<tr valign="top">
|
280 |
+
<th scope="row">
|
281 |
+
<label for="hide_notices"><?php _e('Add page title to empty search words', 'wp_statistics'); ?>:</label>
|
282 |
+
</th>
|
283 |
+
|
284 |
+
<td>
|
285 |
+
<input id="addsearchwords" type="checkbox" value="1" name="wps_addsearchwords" <?php echo $WP_Statistics->get_option('addsearchwords')==true? "checked='checked'":'';?>>
|
286 |
+
<label for="addsearchwords"><?php _e('Active', 'wp_statistics'); ?></label>
|
287 |
+
<p class="description"><?php _e('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.', 'wp_statistics'); ?></p>
|
288 |
+
</td>
|
289 |
+
</tr>
|
290 |
+
|
291 |
<tr valign="top">
|
292 |
<th scope="row" colspan="2">
|
293 |
<p class="description"><?php _e('Disabling all search engines is not allowed, doing so will result in all search engines being active.', 'wp_statistics');?></p>
|
includes/settings/tabs/wps-geoip.php
CHANGED
@@ -112,7 +112,7 @@ if( $wps_nonce_valid ) {
|
|
112 |
</th>
|
113 |
|
114 |
<td>
|
115 |
-
<input type="text" size="3" id="geoip-private-country-code" name="wps_private_country_code" value="<?php echo htmlentities( $WP_Statistics->get_option('private_country_code', ENT_QUOTES )
|
116 |
<p class="description"><?php _e('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.', 'wp_statistics'); ?></p>
|
117 |
</td>
|
118 |
</tr>
|
112 |
</th>
|
113 |
|
114 |
<td>
|
115 |
+
<input type="text" size="3" id="geoip-private-country-code" name="wps_private_country_code" value="<?php echo htmlentities( $WP_Statistics->get_option('private_country_code', '000'), ENT_QUOTES );?>">
|
116 |
<p class="description"><?php _e('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.', 'wp_statistics'); ?></p>
|
117 |
</td>
|
118 |
</tr>
|
includes/settings/tabs/wps-maintenance.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
if( $wps_nonce_valid ) {
|
3 |
|
4 |
-
$wps_option_list = array(
|
5 |
|
6 |
foreach( $wps_option_list as $option ) {
|
7 |
$new_option = str_replace( "wps_", "", $option );
|
@@ -44,7 +44,7 @@ if( $wps_nonce_valid ) {
|
|
44 |
|
45 |
<tr valign="top">
|
46 |
<th scope="row">
|
47 |
-
<label for="
|
48 |
</th>
|
49 |
|
50 |
<td>
|
@@ -54,6 +54,30 @@ if( $wps_nonce_valid ) {
|
|
54 |
</td>
|
55 |
</tr>
|
56 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
</tbody>
|
58 |
</table>
|
59 |
|
1 |
<?php
|
2 |
if( $wps_nonce_valid ) {
|
3 |
|
4 |
+
$wps_option_list = array('wps_schedule_dbmaint', 'wps_schedule_dbmaint_days', 'wps_schedule_dbmaint_visitor', 'wps_schedule_dbmaint_visitor_hits');
|
5 |
|
6 |
foreach( $wps_option_list as $option ) {
|
7 |
$new_option = str_replace( "wps_", "", $option );
|
44 |
|
45 |
<tr valign="top">
|
46 |
<th scope="row">
|
47 |
+
<label for="wps_schedule_dbmaint_days"><?php _e('Prune data older than', 'wp_statistics'); ?>:</label>
|
48 |
</th>
|
49 |
|
50 |
<td>
|
54 |
</td>
|
55 |
</tr>
|
56 |
|
57 |
+
<tr valign="top">
|
58 |
+
<th scope="row">
|
59 |
+
<label for="wps_schedule_dbmaint_visitor"><?php _e('Run a daily WP Cron job to prune the databases', 'wp_statistics'); ?>:</label>
|
60 |
+
</th>
|
61 |
+
|
62 |
+
<td>
|
63 |
+
<input id="wps_schedule_dbmaint_visitor" type="checkbox" name="wps_schedule_dbmaint_visitor" <?php echo $WP_Statistics->get_option('schedule_dbmaint_visitor')==true? "checked='checked'":'';?> onclick='DBMaintWarning();'>
|
64 |
+
<label for="wps_schedule_dbmaint_visitor"><?php _e('Active', 'wp_statistics'); ?></label>
|
65 |
+
<p class="description"><?php _e('A WP Cron job will be run daily to prune any users statistics data where the user has more than the defined number of hits in a day (aka they are probably a bot).', 'wp_statistics'); ?></p>
|
66 |
+
</td>
|
67 |
+
</tr>
|
68 |
+
|
69 |
+
<tr valign="top">
|
70 |
+
<th scope="row">
|
71 |
+
<label for="wps_schedule_dbmaint_visitor_hits"><?php _e('Prune visitors with more than', 'wp_statistics'); ?>:</label>
|
72 |
+
</th>
|
73 |
+
|
74 |
+
<td>
|
75 |
+
<input type="text" class="small-text code" id="wps_schedule_dbmaint_visitor_hits" name="wps_schedule_dbmaint_visitor_hits" value="<?php echo htmlentities( $WP_Statistics->get_option('schedule_dbmaint_visitor_hits', '50'), ENT_QUOTES ); ?>"/>
|
76 |
+
<?php _e('Hits', 'wp_statistics'); ?>
|
77 |
+
<p class="description"><?php echo __('The number of hits required to delete the visitor. Invalid values will disable the daily maintenance (must be 10 or greater).', 'wp_statistics'); ?></p>
|
78 |
+
</td>
|
79 |
+
</tr>
|
80 |
+
|
81 |
</tbody>
|
82 |
</table>
|
83 |
|
languages/default.mo
CHANGED
Binary file
|
languages/default.po
CHANGED
@@ -2,800 +2,735 @@
|
|
2 |
# This file is distributed under the same license as the WP Statistics package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: WP Statistics 9.
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/wp-statistics\n"
|
7 |
-
"POT-Creation-Date: 2015-
|
8 |
-
"PO-Revision-Date: 2015-04-24 00:27+0330\n"
|
9 |
-
"Last-Translator: \n"
|
10 |
-
"Language-Team: \n"
|
11 |
-
"Language: en\n"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
-
"
|
16 |
-
"
|
17 |
-
"
|
18 |
-
"X-
|
19 |
-
|
20 |
-
|
21 |
-
"
|
22 |
-
|
23 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
msgid "Quick Stats"
|
25 |
msgstr ""
|
26 |
|
27 |
-
#:
|
28 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:54
|
29 |
msgid "Top 10 Browsers"
|
30 |
msgstr ""
|
31 |
|
32 |
-
#:
|
33 |
-
#:
|
34 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:27
|
35 |
msgid "Top 10 Countries"
|
36 |
msgstr ""
|
37 |
|
38 |
-
#:
|
39 |
msgid "Today's Visitor Map"
|
40 |
msgstr ""
|
41 |
|
42 |
-
#:
|
43 |
-
#:
|
44 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:8
|
45 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:8
|
46 |
msgid "Hit Statistics"
|
47 |
msgstr ""
|
48 |
|
49 |
-
#:
|
50 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:11
|
51 |
msgid "Top 10 Pages"
|
52 |
msgstr ""
|
53 |
|
54 |
-
#:
|
55 |
-
#:
|
56 |
-
#:
|
57 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:39
|
58 |
msgid "Recent Visitors"
|
59 |
msgstr ""
|
60 |
|
61 |
-
#:
|
62 |
-
#:
|
63 |
-
#:
|
64 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:13
|
65 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:26
|
66 |
msgid "Top Referring Sites"
|
67 |
msgstr ""
|
68 |
|
69 |
-
#:
|
70 |
-
#:
|
71 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:76
|
72 |
msgid "Search Engine Referrals"
|
73 |
msgstr ""
|
74 |
|
75 |
-
#:
|
76 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:8
|
77 |
msgid "Summary"
|
78 |
msgstr ""
|
79 |
|
80 |
-
#:
|
81 |
-
#:
|
82 |
-
#:
|
83 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:37
|
84 |
msgid "Latest Search Words"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#:
|
88 |
-
#:
|
89 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:35
|
90 |
msgid "Top 10 Visitors Today"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#:
|
94 |
msgid "Please reload the dashboard to display the content of this widget."
|
95 |
msgstr ""
|
96 |
|
97 |
-
#:
|
98 |
msgid "WP Statistics Overview"
|
99 |
msgstr ""
|
100 |
|
101 |
-
#:
|
102 |
msgid "This post is not yet published."
|
103 |
msgstr ""
|
104 |
|
105 |
-
#:
|
106 |
msgid "Hits in the last 20 days"
|
107 |
msgstr ""
|
108 |
|
109 |
-
#:
|
110 |
msgid "Baidu"
|
111 |
msgstr ""
|
112 |
|
113 |
-
#:
|
114 |
msgid "Bing"
|
115 |
msgstr ""
|
116 |
|
117 |
-
#:
|
118 |
msgid "clearch.org"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#:
|
122 |
msgid "DuckDuckGo"
|
123 |
msgstr ""
|
124 |
|
125 |
-
#:
|
126 |
-
#:
|
127 |
msgid "Google"
|
128 |
msgstr ""
|
129 |
|
130 |
-
#:
|
131 |
msgid "Yahoo!"
|
132 |
msgstr ""
|
133 |
|
134 |
-
#:
|
135 |
msgid "Yandex"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#:
|
139 |
msgid "10 Days"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#:
|
143 |
msgid "20 Days"
|
144 |
msgstr ""
|
145 |
|
146 |
-
#:
|
147 |
msgid "30 Days"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#:
|
151 |
msgid "2 Months"
|
152 |
msgstr ""
|
153 |
|
154 |
-
#:
|
155 |
msgid "3 Months"
|
156 |
msgstr ""
|
157 |
|
158 |
-
#:
|
159 |
msgid "6 Months"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#:
|
163 |
msgid "9 Months"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#:
|
167 |
msgid "1 Year"
|
168 |
msgstr ""
|
169 |
|
170 |
-
#:
|
171 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:925
|
172 |
msgid "Range"
|
173 |
msgstr ""
|
174 |
|
175 |
-
#:
|
176 |
msgid "MM/DD/YYYY"
|
177 |
msgstr ""
|
178 |
|
179 |
-
#:
|
180 |
msgid "to"
|
181 |
msgstr ""
|
182 |
|
183 |
-
#:
|
184 |
msgid "Go"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
188 |
msgid ""
|
189 |
"Unable to load the GeoIP database, make sure you have downloaded it in the "
|
190 |
"settings page."
|
191 |
msgstr ""
|
192 |
|
193 |
-
#:
|
194 |
-
#, php-format
|
195 |
msgid "Updated %s GeoIP records in the visitors database."
|
196 |
msgstr ""
|
197 |
|
198 |
-
#:
|
199 |
-
|
200 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:50
|
201 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:83
|
202 |
-
#, php-format
|
203 |
-
msgid "%s data older than %s days purged successfully."
|
204 |
msgstr ""
|
205 |
|
206 |
-
#:
|
207 |
-
|
208 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:52
|
209 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:85
|
210 |
-
#, php-format
|
211 |
-
msgid "No records found to purge from %s!"
|
212 |
msgstr ""
|
213 |
|
214 |
-
#:
|
215 |
msgid "Database pruned on"
|
216 |
msgstr ""
|
217 |
|
218 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
219 |
msgid "Please select a value over 30 days."
|
220 |
msgstr ""
|
221 |
|
222 |
-
#:
|
223 |
msgid "Browser Statistics"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#:
|
227 |
-
#:
|
228 |
-
#:
|
229 |
-
#:
|
230 |
-
#:
|
231 |
-
#:
|
232 |
-
#:
|
233 |
-
#:
|
234 |
-
#:
|
235 |
-
#:
|
236 |
-
#:
|
237 |
-
#:
|
238 |
-
#:
|
239 |
-
#:
|
240 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:6
|
241 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:9
|
242 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:8
|
243 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:7
|
244 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:8
|
245 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:9
|
246 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:6
|
247 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:11
|
248 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:6
|
249 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:7
|
250 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:7
|
251 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:6
|
252 |
msgid "Click to toggle"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#:
|
256 |
-
#:
|
257 |
-
#:
|
258 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:316
|
259 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:391
|
260 |
msgid "Browsers"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#:
|
264 |
msgid "Browsers by type"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#:
|
268 |
-
#:
|
269 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:302
|
270 |
msgid "Platform"
|
271 |
msgstr ""
|
272 |
|
273 |
-
#:
|
274 |
msgid "Browsers by platform"
|
275 |
msgstr ""
|
276 |
|
277 |
-
#:
|
278 |
-
#, php-format
|
279 |
msgid "%s Version"
|
280 |
msgstr ""
|
281 |
|
282 |
-
#:
|
283 |
msgid ""
|
284 |
"Attention: Exclusion are not currently set to be recorded, the results below "
|
285 |
"may not reflect current statistics!"
|
286 |
msgstr ""
|
287 |
|
288 |
-
#:
|
289 |
msgid "Robot"
|
290 |
msgstr ""
|
291 |
|
292 |
-
#:
|
293 |
-
#:
|
294 |
msgid "Browscap"
|
295 |
msgstr ""
|
296 |
|
297 |
-
#:
|
298 |
msgid "IP Match"
|
299 |
msgstr ""
|
300 |
|
301 |
-
#:
|
302 |
msgid "Self Referral"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#:
|
306 |
msgid "Login Page"
|
307 |
msgstr ""
|
308 |
|
309 |
-
#:
|
310 |
msgid "Admin Page"
|
311 |
msgstr ""
|
312 |
|
313 |
-
#:
|
314 |
msgid "User Role"
|
315 |
msgstr ""
|
316 |
|
317 |
-
#:
|
318 |
-
#:
|
319 |
-
#:
|
320 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:66
|
321 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:106
|
322 |
msgid "Total"
|
323 |
msgstr ""
|
324 |
|
325 |
-
#:
|
326 |
-
#:
|
327 |
-
#:
|
328 |
msgid "GeoIP"
|
329 |
msgstr ""
|
330 |
|
331 |
-
#:
|
332 |
msgid "Hostname"
|
333 |
msgstr ""
|
334 |
|
335 |
-
#:
|
336 |
msgid "Robot Threshold"
|
337 |
msgstr ""
|
338 |
|
339 |
-
#:
|
340 |
msgid "Honey Pot"
|
341 |
msgstr ""
|
342 |
|
343 |
-
#:
|
344 |
msgid "Feeds"
|
345 |
msgstr ""
|
346 |
|
347 |
-
#:
|
348 |
msgid "Excluded URL"
|
349 |
msgstr ""
|
350 |
|
351 |
-
#:
|
352 |
msgid "Exclusions Statistics"
|
353 |
msgstr ""
|
354 |
|
355 |
-
#:
|
356 |
-
#, php-format
|
357 |
-
msgid "Total Exclusions: %s"
|
358 |
-
msgstr ""
|
359 |
-
|
360 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:74
|
361 |
msgid "Exclusions Statistical Chart"
|
362 |
msgstr ""
|
363 |
|
364 |
-
#:
|
365 |
msgid "Excluded hits in the last"
|
366 |
msgstr ""
|
367 |
|
368 |
-
#:
|
369 |
-
#:
|
370 |
-
#:
|
371 |
-
#:
|
372 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:55
|
373 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:151
|
374 |
msgid "days"
|
375 |
msgstr ""
|
376 |
|
377 |
-
#:
|
378 |
msgid "Number of excluded hits"
|
379 |
msgstr ""
|
380 |
|
381 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
382 |
msgid "Hits Statistics Chart"
|
383 |
msgstr ""
|
384 |
|
385 |
-
#:
|
386 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:51
|
387 |
msgid "Hits in the last"
|
388 |
msgstr ""
|
389 |
|
390 |
-
#:
|
391 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:72
|
392 |
msgid "Number of visits and visitors"
|
393 |
msgstr ""
|
394 |
|
395 |
-
#:
|
396 |
-
#:
|
397 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:32
|
398 |
msgid "Visit"
|
399 |
msgstr ""
|
400 |
|
401 |
-
#:
|
402 |
-
#:
|
403 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:31
|
404 |
msgid "Visitor"
|
405 |
msgstr ""
|
406 |
|
407 |
-
#:
|
408 |
-
#:
|
409 |
-
#:
|
410 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:135
|
411 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:294
|
412 |
msgid "All"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#:
|
416 |
msgid "Latest Search Word Statistics"
|
417 |
msgstr ""
|
418 |
|
419 |
-
#:
|
420 |
-
#:
|
421 |
-
#:
|
422 |
-
#:
|
423 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:71
|
424 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:30
|
425 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:32
|
426 |
msgid "#hash#"
|
427 |
msgstr ""
|
428 |
|
429 |
-
#:
|
430 |
-
#:
|
431 |
-
#:
|
432 |
-
#:
|
433 |
-
#:
|
434 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:39
|
435 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:33
|
436 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:113
|
437 |
msgid "Map"
|
438 |
msgstr ""
|
439 |
|
440 |
-
#:
|
441 |
-
#:
|
442 |
-
#:
|
443 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:198
|
444 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
|
445 |
msgid "Page"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#:
|
449 |
-
#:
|
450 |
-
#:
|
451 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:198
|
452 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
|
453 |
msgid "From"
|
454 |
msgstr ""
|
455 |
|
456 |
-
#:
|
457 |
msgid "Recent Visitor Statistics"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#:
|
461 |
msgid "Filtered by"
|
462 |
msgstr ""
|
463 |
|
464 |
-
#:
|
465 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
466 |
msgid "Online Users"
|
467 |
msgstr ""
|
468 |
|
469 |
-
#:
|
470 |
msgid "Online for "
|
471 |
msgstr ""
|
472 |
|
473 |
-
#:
|
474 |
msgid "Currently there are no users online in the site."
|
475 |
msgstr ""
|
476 |
|
477 |
-
#:
|
478 |
msgid "Page Trend for Post ID"
|
479 |
msgstr ""
|
480 |
|
481 |
-
#:
|
482 |
msgid "Page Trend"
|
483 |
msgstr ""
|
484 |
|
485 |
-
#:
|
486 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:28
|
487 |
msgid "Search Engine Referral Statistics"
|
488 |
msgstr ""
|
489 |
|
490 |
-
#:
|
491 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:55
|
492 |
msgid "Search engine referrals in the last"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#:
|
496 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:76
|
497 |
msgid "Number of referrals"
|
498 |
msgstr ""
|
499 |
|
500 |
-
#:
|
501 |
msgid "Top Countries"
|
502 |
msgstr ""
|
503 |
|
504 |
-
#:
|
505 |
-
#:
|
506 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:27
|
507 |
msgid "Rank"
|
508 |
msgstr ""
|
509 |
|
510 |
-
#:
|
511 |
-
#:
|
512 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:29
|
513 |
msgid "Flag"
|
514 |
msgstr ""
|
515 |
|
516 |
-
#:
|
517 |
-
#:
|
518 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:30
|
519 |
msgid "Country"
|
520 |
msgstr ""
|
521 |
|
522 |
-
#:
|
523 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:33
|
524 |
msgid "Visitor Count"
|
525 |
msgstr ""
|
526 |
|
527 |
-
#:
|
528 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:149
|
529 |
msgid "Top Pages"
|
530 |
msgstr ""
|
531 |
|
532 |
-
#:
|
533 |
msgid "Top 5 Pages Trends"
|
534 |
msgstr ""
|
535 |
|
536 |
-
#:
|
537 |
msgid "Top 5 Page Trending Stats"
|
538 |
msgstr ""
|
539 |
|
540 |
-
#:
|
541 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/page.php:61
|
542 |
msgid "Number of Hits"
|
543 |
msgstr ""
|
544 |
|
545 |
-
#:
|
546 |
msgid "Rank #1"
|
547 |
msgstr ""
|
548 |
|
549 |
-
#:
|
550 |
msgid "Rank #2"
|
551 |
msgstr ""
|
552 |
|
553 |
-
#:
|
554 |
msgid "Rank #3"
|
555 |
msgstr ""
|
556 |
|
557 |
-
#:
|
558 |
msgid "Rank #4"
|
559 |
msgstr ""
|
560 |
|
561 |
-
#:
|
562 |
msgid "Rank #5"
|
563 |
msgstr ""
|
564 |
|
565 |
-
#:
|
566 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:32
|
567 |
msgid "No page title found"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#:
|
571 |
-
#:
|
572 |
-
#:
|
573 |
-
#:
|
574 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:127
|
575 |
msgid "Visits"
|
576 |
msgstr ""
|
577 |
|
578 |
-
#:
|
579 |
msgid "To be added soon"
|
580 |
msgstr ""
|
581 |
|
582 |
-
#:
|
583 |
msgid "Referring sites from"
|
584 |
msgstr ""
|
585 |
|
586 |
-
#:
|
587 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:30
|
588 |
msgid "References"
|
589 |
msgstr ""
|
590 |
|
591 |
-
#:
|
592 |
msgid "Top 100 Visitors Today"
|
593 |
msgstr ""
|
594 |
|
595 |
-
#:
|
596 |
-
#, php-format
|
597 |
msgid "About WP Statistics Version %s"
|
598 |
msgstr ""
|
599 |
|
600 |
-
#:
|
601 |
msgid "Website"
|
602 |
msgstr ""
|
603 |
|
604 |
-
#:
|
605 |
msgid "Rate and Review"
|
606 |
msgstr ""
|
607 |
|
608 |
-
#:
|
609 |
msgid "More Information"
|
610 |
msgstr ""
|
611 |
|
612 |
-
#:
|
613 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:12
|
614 |
-
#, php-format
|
615 |
msgid ""
|
616 |
"This product includes GeoLite2 data created by MaxMind, available from %s."
|
617 |
msgstr ""
|
618 |
|
619 |
-
#:
|
620 |
-
#:
|
621 |
-
#:
|
622 |
-
#:
|
623 |
-
#:
|
624 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:13
|
625 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:7
|
626 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:8
|
627 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:8
|
628 |
msgid "More"
|
629 |
msgstr ""
|
630 |
|
631 |
-
#:
|
632 |
msgid "Other"
|
633 |
msgstr ""
|
634 |
|
635 |
-
#:
|
636 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:9
|
637 |
msgid "Today Visitors Map"
|
638 |
msgstr ""
|
639 |
|
640 |
-
#:
|
641 |
msgid "Page Trending Stats"
|
642 |
msgstr ""
|
643 |
|
644 |
-
#:
|
645 |
msgid "Address"
|
646 |
msgstr ""
|
647 |
|
648 |
-
#:
|
649 |
msgid "User(s) Online"
|
650 |
msgstr ""
|
651 |
|
652 |
-
#:
|
653 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:81
|
654 |
msgid "Today"
|
655 |
msgstr ""
|
656 |
|
657 |
-
#:
|
658 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:82
|
659 |
msgid "Yesterday"
|
660 |
msgstr ""
|
661 |
|
662 |
-
#:
|
663 |
msgid "Last 7 Days (Week)"
|
664 |
msgstr ""
|
665 |
|
666 |
-
#:
|
667 |
msgid "Last 30 Days (Month)"
|
668 |
msgstr ""
|
669 |
|
670 |
-
#:
|
671 |
msgid "Last 365 Days (Year)"
|
672 |
msgstr ""
|
673 |
|
674 |
-
#:
|
675 |
msgid "Daily Total"
|
676 |
msgstr ""
|
677 |
|
678 |
-
#:
|
679 |
msgid "Current Time and Date"
|
680 |
msgstr ""
|
681 |
|
682 |
-
#:
|
683 |
msgid "(Adjustment)"
|
684 |
msgstr ""
|
685 |
|
686 |
-
#:
|
687 |
-
#, php-format
|
688 |
msgid "Date: %s"
|
689 |
msgstr ""
|
690 |
|
691 |
-
#:
|
692 |
-
#, php-format
|
693 |
msgid "Time: %s"
|
694 |
msgstr ""
|
695 |
|
696 |
-
#:
|
697 |
-
#:
|
698 |
-
#:
|
699 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:394
|
700 |
msgid "Hits"
|
701 |
msgstr ""
|
702 |
|
703 |
-
#:
|
704 |
msgid "IP"
|
705 |
msgstr ""
|
706 |
|
707 |
-
#:
|
708 |
msgid "Agent"
|
709 |
msgstr ""
|
710 |
|
711 |
-
#:
|
712 |
-
#:
|
713 |
msgid "Version"
|
714 |
msgstr ""
|
715 |
|
716 |
-
#:
|
717 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:5
|
718 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:5
|
719 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:5
|
720 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:6
|
721 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:6
|
722 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/manual/manual.php:5
|
723 |
-
msgid "Access denied!"
|
724 |
-
msgstr ""
|
725 |
-
|
726 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:14
|
727 |
-
#, php-format
|
728 |
-
msgid "%s agent data deleted successfully."
|
729 |
-
msgstr ""
|
730 |
-
|
731 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:17
|
732 |
-
msgid "No agent data found to remove!"
|
733 |
-
msgstr ""
|
734 |
-
|
735 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:21
|
736 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:21
|
737 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:42
|
738 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:80
|
739 |
-
msgid "Please select the desired items."
|
740 |
-
msgstr ""
|
741 |
-
|
742 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:14
|
743 |
-
#, php-format
|
744 |
-
msgid "%s platform data deleted successfully."
|
745 |
-
msgstr ""
|
746 |
-
|
747 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:17
|
748 |
-
msgid "No platform data found to remove!"
|
749 |
-
msgstr ""
|
750 |
-
|
751 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:53
|
752 |
-
#, php-format
|
753 |
-
msgid "%s table data deleted successfully."
|
754 |
-
msgstr ""
|
755 |
-
|
756 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:57
|
757 |
-
#, php-format
|
758 |
-
msgid "Error, %s not emptied!"
|
759 |
-
msgstr ""
|
760 |
-
|
761 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:5
|
762 |
msgid "Database Setup"
|
763 |
msgstr ""
|
764 |
|
765 |
-
#:
|
766 |
msgid "Re-run Install"
|
767 |
msgstr ""
|
768 |
|
769 |
-
#:
|
770 |
msgid "Install Now!"
|
771 |
msgstr ""
|
772 |
|
773 |
-
#:
|
774 |
msgid ""
|
775 |
"If for some reason your installation of WP Statistics is missing the "
|
776 |
"database tables or other core items, this will re-execute the install "
|
777 |
"process."
|
778 |
msgstr ""
|
779 |
|
780 |
-
#:
|
781 |
msgid "Database Index"
|
782 |
msgstr ""
|
783 |
|
784 |
-
#:
|
785 |
-
#:
|
786 |
-
#:
|
787 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:392
|
788 |
msgid "Countries"
|
789 |
msgstr ""
|
790 |
|
791 |
-
#:
|
792 |
-
#:
|
793 |
-
#:
|
794 |
-
#:
|
795 |
msgid "Update Now!"
|
796 |
msgstr ""
|
797 |
|
798 |
-
#:
|
799 |
msgid ""
|
800 |
"Older installs of WP Statistics allow for duplicate entries in the visitors "
|
801 |
"table in a corner case. Newer installs protect against this with a unique "
|
@@ -804,30 +739,30 @@ msgid ""
|
|
804 |
"vistitors table, delete duplicate entries and add the index."
|
805 |
msgstr ""
|
806 |
|
807 |
-
#:
|
808 |
msgid ""
|
809 |
"This operation could take a long time on installs with many rows in the "
|
810 |
"visitors table."
|
811 |
msgstr ""
|
812 |
|
813 |
-
#:
|
814 |
msgid ""
|
815 |
"Older installs of WP Statistics allow for duplicate entries in the visitors "
|
816 |
"table in a corner case. Newer installs protect against this with a unique "
|
817 |
"index on the table."
|
818 |
msgstr ""
|
819 |
|
820 |
-
#:
|
821 |
-
#:
|
822 |
msgid ""
|
823 |
"Congratulations, your installation is already up to date, nothing to do."
|
824 |
msgstr ""
|
825 |
|
826 |
-
#:
|
827 |
msgid "Visits Table"
|
828 |
msgstr ""
|
829 |
|
830 |
-
#:
|
831 |
msgid ""
|
832 |
"Older installs of WP Statistics allow for duplicate entries in the visits "
|
833 |
"table in a corner case. Newer installs protect against this with a unique "
|
@@ -836,648 +771,662 @@ msgid ""
|
|
836 |
"vistits table, delete duplicate entries and add the index."
|
837 |
msgstr ""
|
838 |
|
839 |
-
#:
|
840 |
msgid ""
|
841 |
"This operation could take a long time on installs with many rows in the "
|
842 |
"visits table."
|
843 |
msgstr ""
|
844 |
|
845 |
-
#:
|
846 |
msgid ""
|
847 |
"Older installs of WP Statistics allow for duplicate entries in the visits "
|
848 |
"table in a corner case. Newer installs protect against this with a unique "
|
849 |
"index on the table."
|
850 |
msgstr ""
|
851 |
|
852 |
-
#:
|
853 |
-
#:
|
854 |
msgid "Export"
|
855 |
msgstr ""
|
856 |
|
857 |
-
#:
|
858 |
msgid "Export from"
|
859 |
msgstr ""
|
860 |
|
861 |
-
#:
|
862 |
-
#:
|
863 |
-
#:
|
864 |
-
#:
|
865 |
-
#:
|
866 |
-
#:
|
867 |
-
#:
|
868 |
msgid "Please select"
|
869 |
msgstr ""
|
870 |
|
871 |
-
#:
|
872 |
msgid "Select the table for the output file."
|
873 |
msgstr ""
|
874 |
|
875 |
-
#:
|
876 |
msgid "Export To"
|
877 |
msgstr ""
|
878 |
|
879 |
-
#:
|
880 |
msgid "Select the output file type."
|
881 |
msgstr ""
|
882 |
|
883 |
-
#:
|
884 |
msgid "Include Header Row"
|
885 |
msgstr ""
|
886 |
|
887 |
-
#:
|
888 |
msgid "Include a header row as the first line of the exported file."
|
889 |
msgstr ""
|
890 |
|
891 |
-
#:
|
892 |
msgid "Start Now!"
|
893 |
msgstr ""
|
894 |
|
895 |
-
#:
|
896 |
msgid "Historical Values"
|
897 |
msgstr ""
|
898 |
|
899 |
-
#:
|
900 |
msgid ""
|
901 |
"Note: As you have just purged the database you must reload this page for "
|
902 |
"these numbers to be correct."
|
903 |
msgstr ""
|
904 |
|
905 |
-
#:
|
906 |
-
#:
|
907 |
-
#:
|
908 |
-
#:
|
909 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:401
|
910 |
msgid "Visitors"
|
911 |
msgstr ""
|
912 |
|
913 |
-
#:
|
914 |
-
#, php-format
|
915 |
msgid ""
|
916 |
"Number of historical number of visitors to the site (current value is %s)."
|
917 |
msgstr ""
|
918 |
|
919 |
-
#:
|
920 |
-
#, php-format
|
921 |
msgid ""
|
922 |
"Number of historical number of visits to the site (current value is %s)."
|
923 |
msgstr ""
|
924 |
|
925 |
-
#:
|
926 |
msgid "Update now!"
|
927 |
msgstr ""
|
928 |
|
929 |
-
#:
|
930 |
-
#:
|
931 |
-
#:
|
932 |
-
#:
|
|
|
933 |
msgid "Are you sure?"
|
934 |
msgstr ""
|
935 |
|
936 |
-
#:
|
937 |
msgid "Data"
|
938 |
msgstr ""
|
939 |
|
940 |
-
#:
|
941 |
msgid "Empty Table"
|
942 |
msgstr ""
|
943 |
|
944 |
-
#:
|
945 |
msgid "All data table will be lost."
|
946 |
msgstr ""
|
947 |
|
948 |
-
#:
|
949 |
msgid "Clear now!"
|
950 |
msgstr ""
|
951 |
|
952 |
-
#:
|
953 |
msgid "Purge records older than"
|
954 |
msgstr ""
|
955 |
|
956 |
-
#:
|
957 |
msgid ""
|
958 |
"Deleted user statistics data older than the selected number of days. "
|
959 |
"Minimum value is 30 days."
|
960 |
msgstr ""
|
961 |
|
962 |
-
#:
|
|
|
963 |
msgid "Purge now!"
|
964 |
msgstr ""
|
965 |
|
966 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
967 |
msgid "Delete User Agent Types"
|
968 |
msgstr ""
|
969 |
|
970 |
-
#:
|
971 |
msgid "Delete Agents"
|
972 |
msgstr ""
|
973 |
|
974 |
-
#:
|
975 |
msgid "All visitor data will be lost for this agent type."
|
976 |
msgstr ""
|
977 |
|
978 |
-
#:
|
979 |
-
#:
|
980 |
msgid "Delete now!"
|
981 |
msgstr ""
|
982 |
|
983 |
-
#:
|
984 |
msgid "Delete Platforms"
|
985 |
msgstr ""
|
986 |
|
987 |
-
#:
|
988 |
msgid "All visitor data will be lost for this platform type."
|
989 |
msgstr ""
|
990 |
|
991 |
-
#:
|
992 |
msgid "Resources"
|
993 |
msgstr ""
|
994 |
|
995 |
-
#:
|
996 |
-
#:
|
997 |
msgid "Memory usage in PHP"
|
998 |
msgstr ""
|
999 |
|
1000 |
-
#:
|
1001 |
-
#:
|
1002 |
msgid "Byte"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
-
#:
|
1006 |
msgid "Last Overview page memory usage"
|
1007 |
msgstr ""
|
1008 |
|
1009 |
-
#:
|
1010 |
msgid "Memory usage in the overview page"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
-
#:
|
1014 |
msgid "PHP Memory Limit"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
-
#:
|
1018 |
msgid "The memory limit a script is allowed to consume, set in php.ini."
|
1019 |
msgstr ""
|
1020 |
|
1021 |
-
#:
|
1022 |
-
#:
|
1023 |
-
#:
|
1024 |
-
#:
|
1025 |
-
#:
|
1026 |
-
#:
|
1027 |
-
#, php-format
|
1028 |
msgid "Number of rows in the %s table"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#:
|
1032 |
-
#:
|
1033 |
-
#:
|
1034 |
-
#:
|
1035 |
-
#:
|
1036 |
-
#:
|
1037 |
msgid "Row"
|
1038 |
msgstr ""
|
1039 |
|
1040 |
-
#:
|
1041 |
-
#:
|
1042 |
-
#:
|
1043 |
-
#:
|
1044 |
-
#:
|
1045 |
-
#:
|
1046 |
msgid "Number of rows"
|
1047 |
msgstr ""
|
1048 |
|
1049 |
-
#:
|
1050 |
msgid "Version Info"
|
1051 |
msgstr ""
|
1052 |
|
1053 |
-
#:
|
1054 |
msgid "WP Statistics Version"
|
1055 |
msgstr ""
|
1056 |
|
1057 |
-
#:
|
1058 |
msgid "The WP Statistics version you are running."
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#:
|
1062 |
msgid "PHP Version"
|
1063 |
msgstr ""
|
1064 |
|
1065 |
-
#:
|
1066 |
msgid "The PHP version you are running."
|
1067 |
msgstr ""
|
1068 |
|
1069 |
-
#:
|
1070 |
msgid "PHP Safe Mode"
|
1071 |
msgstr ""
|
1072 |
|
1073 |
-
#:
|
1074 |
msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
|
1075 |
msgstr ""
|
1076 |
|
1077 |
-
#:
|
1078 |
msgid "jQuery Version"
|
1079 |
msgstr ""
|
1080 |
|
1081 |
-
#:
|
1082 |
msgid "The jQuery version you are running."
|
1083 |
msgstr ""
|
1084 |
|
1085 |
-
#:
|
1086 |
msgid "cURL Version"
|
1087 |
msgstr ""
|
1088 |
|
1089 |
-
#:
|
1090 |
msgid "cURL not installed"
|
1091 |
msgstr ""
|
1092 |
|
1093 |
-
#:
|
1094 |
msgid ""
|
1095 |
"The PHP cURL Extension version you are running. cURL is required for the "
|
1096 |
"GeoIP code, if it is not installed GeoIP will be disabled."
|
1097 |
msgstr ""
|
1098 |
|
1099 |
-
#:
|
1100 |
msgid "BC Math"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
-
#:
|
1104 |
msgid "Installed"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
-
#:
|
1108 |
msgid "Not installed"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
-
#:
|
1112 |
msgid ""
|
1113 |
"If the PHP BC Math Extension is installed. BC Math is no longer required "
|
1114 |
"for the GeoIP code and is listed here only for historical reasons."
|
1115 |
msgstr ""
|
1116 |
|
1117 |
-
#:
|
1118 |
msgid "File Info"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
-
#:
|
1122 |
msgid "GeoIP Database"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
-
#:
|
1126 |
msgid "Database file does not exist."
|
1127 |
msgstr ""
|
1128 |
|
1129 |
-
#:
|
1130 |
-
#:
|
1131 |
-
#:
|
1132 |
msgid ", created on "
|
1133 |
msgstr ""
|
1134 |
|
1135 |
-
#:
|
1136 |
msgid "The file size and date of the GeoIP database."
|
1137 |
msgstr ""
|
1138 |
|
1139 |
-
#:
|
1140 |
msgid "browscap.ini File"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
-
#:
|
1144 |
msgid "browscap.ini file does not exist."
|
1145 |
msgstr ""
|
1146 |
|
1147 |
-
#:
|
1148 |
msgid "The file size and date of the browscap.ini file."
|
1149 |
msgstr ""
|
1150 |
|
1151 |
-
#:
|
1152 |
msgid "browscap Cache File"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
-
#:
|
1156 |
msgid "browscap cache file does not exist."
|
1157 |
msgstr ""
|
1158 |
|
1159 |
-
#:
|
1160 |
msgid "The file size and date of the browscap cache file."
|
1161 |
msgstr ""
|
1162 |
|
1163 |
-
#:
|
1164 |
msgid "Client Info"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
-
#:
|
1168 |
msgid "Client IP"
|
1169 |
msgstr ""
|
1170 |
|
1171 |
-
#:
|
1172 |
msgid "The client IP address."
|
1173 |
msgstr ""
|
1174 |
|
1175 |
-
#:
|
1176 |
msgid "User Agent"
|
1177 |
msgstr ""
|
1178 |
|
1179 |
-
#:
|
1180 |
msgid "The client user agent string."
|
1181 |
msgstr ""
|
1182 |
|
1183 |
-
#:
|
1184 |
msgid "Browser"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
-
#:
|
1188 |
msgid "The detected client browser."
|
1189 |
msgstr ""
|
1190 |
|
1191 |
-
#:
|
1192 |
msgid "The detected client browser version."
|
1193 |
msgstr ""
|
1194 |
|
1195 |
-
#:
|
1196 |
msgid "The detected client platform."
|
1197 |
msgstr ""
|
1198 |
|
1199 |
-
#:
|
1200 |
msgid ""
|
1201 |
"This will replace all IP addresses in the database with hash values and "
|
1202 |
"cannot be undo, are you sure?"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
-
#:
|
1206 |
msgid "GeoIP Options"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
-
#:
|
1210 |
msgid ""
|
1211 |
"Updates any unknown location data in the database, this may take a while"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
-
#:
|
1215 |
-
#:
|
1216 |
msgid "IP Addresses"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
-
#:
|
1220 |
-
#:
|
1221 |
msgid "Hash IP Addresses"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
-
#:
|
1225 |
msgid ""
|
1226 |
"Replace IP addresses in the database with hash values, you will not be able "
|
1227 |
"to recover the IP addresses in the future to populate location information "
|
1228 |
"afterwards and this may take a while"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
-
#:
|
1232 |
msgid "IP Addresses replaced with hash values."
|
1233 |
msgstr ""
|
1234 |
|
1235 |
-
#:
|
1236 |
msgid "Install routine complete."
|
1237 |
msgstr ""
|
1238 |
|
1239 |
-
#:
|
1240 |
msgid "Resources/Information"
|
1241 |
msgstr ""
|
1242 |
|
1243 |
-
#:
|
1244 |
msgid "Purging"
|
1245 |
msgstr ""
|
1246 |
|
1247 |
-
#:
|
1248 |
msgid "Database"
|
1249 |
msgstr ""
|
1250 |
|
1251 |
-
#:
|
1252 |
msgid "Updates"
|
1253 |
msgstr ""
|
1254 |
|
1255 |
-
#:
|
1256 |
msgid "Historical"
|
1257 |
msgstr ""
|
1258 |
|
1259 |
-
#:
|
1260 |
-
#, php-format
|
1261 |
msgid "WP Statistics V%s"
|
1262 |
msgstr ""
|
1263 |
|
1264 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1265 |
msgid "Visit Us Online"
|
1266 |
msgstr ""
|
1267 |
|
1268 |
-
#:
|
1269 |
-
#, php-format
|
1270 |
msgid ""
|
1271 |
"Come visit our great new %s and keep up to date on the latest news about WP "
|
1272 |
"Statistics."
|
1273 |
msgstr ""
|
1274 |
|
1275 |
-
#:
|
1276 |
msgid "website"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
-
#:
|
1280 |
msgid "Rate and Review at WordPress.org"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
-
#:
|
1284 |
msgid "Thanks for installing WP Statistics, we encourage you to submit a "
|
1285 |
msgstr ""
|
1286 |
|
1287 |
-
#:
|
1288 |
msgid "rating and review"
|
1289 |
msgstr ""
|
1290 |
|
1291 |
-
#:
|
1292 |
msgid "over at WordPress.org. Your feedback is greatly appreciated!"
|
1293 |
msgstr ""
|
1294 |
|
1295 |
-
#:
|
1296 |
msgid "Translations"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
-
#:
|
1300 |
-
#, php-format
|
1301 |
msgid ""
|
1302 |
"WP Statistics supports internationalization and we encourage our users to "
|
1303 |
"submit translations, please visit our %s to see the current status and %s if "
|
1304 |
"you would like to help."
|
1305 |
msgstr ""
|
1306 |
|
1307 |
-
#:
|
1308 |
msgid "translation collaboration site"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
-
#:
|
1312 |
msgid "drop us a line"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
-
#:
|
1316 |
msgid "Support"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
-
#:
|
1320 |
msgid ""
|
1321 |
"We're sorry you're having problem with WP Statistics and we're happy to help "
|
1322 |
"out. Here are a few things to do before contacting us:"
|
1323 |
msgstr ""
|
1324 |
|
1325 |
-
#:
|
1326 |
-
#:
|
1327 |
-
#, php-format
|
1328 |
msgid "Have you read the %s?"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
-
#:
|
1332 |
msgid "FAQs"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
-
#:
|
1336 |
msgid "manual"
|
1337 |
msgstr ""
|
1338 |
|
1339 |
-
#:
|
1340 |
-
#, php-format
|
1341 |
msgid "Have you search the %s for a similar issue?"
|
1342 |
msgstr ""
|
1343 |
|
1344 |
-
#:
|
1345 |
msgid "support forum"
|
1346 |
msgstr ""
|
1347 |
|
1348 |
-
#:
|
1349 |
msgid "Have you search the Internet for any error messages you are receiving?"
|
1350 |
msgstr ""
|
1351 |
|
1352 |
-
#:
|
1353 |
msgid "Make sure you have access to your PHP error logs."
|
1354 |
msgstr ""
|
1355 |
|
1356 |
-
#:
|
1357 |
msgid "And a few things to double-check:"
|
1358 |
msgstr ""
|
1359 |
|
1360 |
-
#:
|
1361 |
msgid "How's your memory_limit in php.ini?"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
-
#:
|
1365 |
msgid "Have you tried disabling any other plugins you may have installed?"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
-
#:
|
1369 |
msgid "Have you tried using the default WordPress theme?"
|
1370 |
msgstr ""
|
1371 |
|
1372 |
-
#:
|
1373 |
msgid "Have you double checked the plugin settings?"
|
1374 |
msgstr ""
|
1375 |
|
1376 |
-
#:
|
1377 |
msgid "Do you have all the required PHP extensions installed?"
|
1378 |
msgstr ""
|
1379 |
|
1380 |
-
#:
|
1381 |
msgid ""
|
1382 |
"Are you getting a blank or incomplete page displayed in your browser? Did "
|
1383 |
"you view the source for the page and check for any fatal errors?"
|
1384 |
msgstr ""
|
1385 |
|
1386 |
-
#:
|
1387 |
msgid "Have you checked your PHP and web server error logs?"
|
1388 |
msgstr ""
|
1389 |
|
1390 |
-
#:
|
1391 |
msgid "Still not having any luck?"
|
1392 |
msgstr ""
|
1393 |
|
1394 |
-
#:
|
1395 |
-
#, php-format
|
1396 |
msgid ""
|
1397 |
"Then please open a new thread on the %s and we'll respond as soon as "
|
1398 |
"possible."
|
1399 |
msgstr ""
|
1400 |
|
1401 |
-
#:
|
1402 |
msgid "WordPress.org support forum"
|
1403 |
msgstr ""
|
1404 |
|
1405 |
-
#:
|
1406 |
-
#, php-format
|
1407 |
msgid "Alternatively %s support is available as well."
|
1408 |
msgstr ""
|
1409 |
|
1410 |
-
#:
|
1411 |
msgid "Farsi"
|
1412 |
msgstr ""
|
1413 |
|
1414 |
-
#:
|
1415 |
msgid "WP Statistics Honey Pot Page"
|
1416 |
msgstr ""
|
1417 |
|
1418 |
-
#:
|
1419 |
msgid "This is the honey pot for WP Statistics to use, do not delete."
|
1420 |
msgstr ""
|
1421 |
|
1422 |
-
#:
|
1423 |
msgid "Access Levels"
|
1424 |
msgstr ""
|
1425 |
|
1426 |
-
#:
|
1427 |
msgid "Required user level to view WP Statistics"
|
1428 |
msgstr ""
|
1429 |
|
1430 |
-
#:
|
1431 |
msgid "Required user level to manage WP Statistics"
|
1432 |
msgstr ""
|
1433 |
|
1434 |
-
#:
|
1435 |
-
#, php-format
|
1436 |
msgid "See the %s for details on capability levels."
|
1437 |
msgstr ""
|
1438 |
|
1439 |
-
#:
|
1440 |
msgid "WordPress Roles and Capabilities page"
|
1441 |
msgstr ""
|
1442 |
|
1443 |
-
#:
|
1444 |
msgid ""
|
1445 |
"Hint: manage_network = Super Admin Network, manage_options = Administrator, "
|
1446 |
"edit_others_posts = Editor, publish_posts = Author, edit_posts = "
|
1447 |
"Contributor, read = Everyone."
|
1448 |
msgstr ""
|
1449 |
|
1450 |
-
#:
|
1451 |
msgid ""
|
1452 |
"Each of the above casscades the rights upwards in the default WordPress "
|
1453 |
"configuration. So for example selecting publish_posts grants the right to "
|
1454 |
"Authors, Editors, Admins and Super Admins."
|
1455 |
msgstr ""
|
1456 |
|
1457 |
-
#:
|
1458 |
-
#, php-format
|
1459 |
msgid ""
|
1460 |
"If you need a more robust solution to delegate access you might want to look "
|
1461 |
"at %s in the WordPress plugin directory."
|
1462 |
msgstr ""
|
1463 |
|
1464 |
-
#:
|
1465 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:320
|
1466 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:393
|
1467 |
-
msgid "Exclusions"
|
1468 |
-
msgstr ""
|
1469 |
-
|
1470 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:109
|
1471 |
msgid "Record exclusions"
|
1472 |
msgstr ""
|
1473 |
|
1474 |
-
#:
|
1475 |
-
#:
|
1476 |
-
#:
|
1477 |
msgid "Enable"
|
1478 |
msgstr ""
|
1479 |
|
1480 |
-
#:
|
1481 |
msgid ""
|
1482 |
"This will record all the excluded hits in a separate table with the reasons "
|
1483 |
"why it was excluded but no other information. This will generate a lot of "
|
@@ -1485,66 +1434,65 @@ msgid ""
|
|
1485 |
"gets, not just actual user visits."
|
1486 |
msgstr ""
|
1487 |
|
1488 |
-
#:
|
1489 |
msgid "Exclude User Roles"
|
1490 |
msgstr ""
|
1491 |
|
1492 |
-
#:
|
1493 |
-
#:
|
1494 |
-
#:
|
1495 |
-
#:
|
1496 |
msgid "Exclude"
|
1497 |
msgstr ""
|
1498 |
|
1499 |
-
#:
|
1500 |
-
#, php-format
|
1501 |
msgid "Exclude %s role from data collection."
|
1502 |
msgstr ""
|
1503 |
|
1504 |
-
#:
|
1505 |
msgid "IP/Robot Exclusions"
|
1506 |
msgstr ""
|
1507 |
|
1508 |
-
#:
|
1509 |
msgid "Robot list"
|
1510 |
msgstr ""
|
1511 |
|
1512 |
-
#:
|
1513 |
msgid ""
|
1514 |
"A list of words (one per line) to match against to detect robots. Entries "
|
1515 |
"must be at least 4 characters long or they will be ignored."
|
1516 |
msgstr ""
|
1517 |
|
1518 |
-
#:
|
1519 |
msgid "Reset to Default"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
-
#:
|
1523 |
msgid "Force robot list update after upgrades"
|
1524 |
msgstr ""
|
1525 |
|
1526 |
-
#:
|
1527 |
msgid ""
|
1528 |
"Force the robot list to be reset to the default after an update to WP "
|
1529 |
"Statistics takes place. Note if this option is enabled any custom robots "
|
1530 |
"you have added to the list will be lost."
|
1531 |
msgstr ""
|
1532 |
|
1533 |
-
#:
|
1534 |
msgid "Robot visit threshold"
|
1535 |
msgstr ""
|
1536 |
|
1537 |
-
#:
|
1538 |
msgid ""
|
1539 |
"Treat visitors with more than this number of visits per day as robots. 0 = "
|
1540 |
"disabled."
|
1541 |
msgstr ""
|
1542 |
|
1543 |
-
#:
|
1544 |
msgid "Excluded IP address list"
|
1545 |
msgstr ""
|
1546 |
|
1547 |
-
#:
|
1548 |
msgid ""
|
1549 |
"A list of IP addresses and subnet masks (one per line) to exclude from "
|
1550 |
"statistics collection (both 192.168.0.0/24 and 192.168.0.0/255.255.255.0 "
|
@@ -1552,58 +1500,58 @@ msgid ""
|
|
1552 |
"32 or 255.255.255.255."
|
1553 |
msgstr ""
|
1554 |
|
1555 |
-
#:
|
1556 |
msgid "Add 10.0.0.0"
|
1557 |
msgstr ""
|
1558 |
|
1559 |
-
#:
|
1560 |
msgid "Add 172.16.0.0"
|
1561 |
msgstr ""
|
1562 |
|
1563 |
-
#:
|
1564 |
msgid "Add 192.168.0.0"
|
1565 |
msgstr ""
|
1566 |
|
1567 |
-
#:
|
1568 |
msgid "Use honey pot"
|
1569 |
msgstr ""
|
1570 |
|
1571 |
-
#:
|
1572 |
msgid "Use a honey pot page to identify robots."
|
1573 |
msgstr ""
|
1574 |
|
1575 |
-
#:
|
1576 |
msgid "Honey pot post id"
|
1577 |
msgstr ""
|
1578 |
|
1579 |
-
#:
|
1580 |
msgid "The post id to use for the honeypot page."
|
1581 |
msgstr ""
|
1582 |
|
1583 |
-
#:
|
1584 |
msgid "Create a new honey pot page"
|
1585 |
msgstr ""
|
1586 |
|
1587 |
-
#:
|
1588 |
msgid "GeoIP Exclusions"
|
1589 |
msgstr ""
|
1590 |
|
1591 |
-
#:
|
1592 |
msgid "Excluded countries list"
|
1593 |
msgstr ""
|
1594 |
|
1595 |
-
#:
|
1596 |
msgid ""
|
1597 |
"A list of country codes (one per line, two letters each) to exclude from "
|
1598 |
"statistics collection. Use \"000\" (three zeros) to exclude unknown "
|
1599 |
"countries."
|
1600 |
msgstr ""
|
1601 |
|
1602 |
-
#:
|
1603 |
msgid "Included countries list"
|
1604 |
msgstr ""
|
1605 |
|
1606 |
-
#:
|
1607 |
msgid ""
|
1608 |
"A list of country codes (one per line, two letters each) to include in "
|
1609 |
"statistics collection, if this list is not empty, only visitors from the "
|
@@ -1611,21 +1559,21 @@ msgid ""
|
|
1611 |
"unknown countries."
|
1612 |
msgstr ""
|
1613 |
|
1614 |
-
#:
|
1615 |
msgid "Host Exclusions"
|
1616 |
msgstr ""
|
1617 |
|
1618 |
-
#:
|
1619 |
msgid "Excluded hosts list"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
-
#:
|
1623 |
msgid ""
|
1624 |
"A list of fully qualified host names (ie. server.example.com, one per line) "
|
1625 |
"to exclude from statistics collection."
|
1626 |
msgstr ""
|
1627 |
|
1628 |
-
#:
|
1629 |
msgid ""
|
1630 |
"Note: this option will NOT perform a reverse DNS lookup on each page load "
|
1631 |
"but instead cache the IP address for the provided hostnames for one hour. "
|
@@ -1634,136 +1582,138 @@ msgid ""
|
|
1634 |
"resulting in some hits recorded."
|
1635 |
msgstr ""
|
1636 |
|
1637 |
-
#:
|
1638 |
msgid "Site URL Exclusions"
|
1639 |
msgstr ""
|
1640 |
|
1641 |
-
#:
|
1642 |
msgid "Excluded login page"
|
1643 |
msgstr ""
|
1644 |
|
1645 |
-
#:
|
1646 |
msgid "Exclude the login page for registering as a hit."
|
1647 |
msgstr ""
|
1648 |
|
1649 |
-
#:
|
1650 |
msgid "Excluded admin pages"
|
1651 |
msgstr ""
|
1652 |
|
1653 |
-
#:
|
1654 |
msgid "Exclude the admin pages for registering as a hit."
|
1655 |
msgstr ""
|
1656 |
|
1657 |
-
#:
|
1658 |
msgid "Excluded RSS feeds"
|
1659 |
msgstr ""
|
1660 |
|
1661 |
-
#:
|
1662 |
msgid "Exclude the RSS feeds for registering as a hit."
|
1663 |
msgstr ""
|
1664 |
|
1665 |
-
#:
|
1666 |
msgid "Excluded URLs list"
|
1667 |
msgstr ""
|
1668 |
|
1669 |
-
#:
|
1670 |
msgid ""
|
1671 |
"A list of local urls (ie. /wordpress/about, one per line) to exclude from "
|
1672 |
"statistics collection."
|
1673 |
msgstr ""
|
1674 |
|
1675 |
-
#:
|
1676 |
msgid ""
|
1677 |
"Note: this option will NOT handle url parameters (anything after the ?), "
|
1678 |
"only to the script name. Entries less than two characters will be ignored."
|
1679 |
msgstr ""
|
1680 |
|
1681 |
-
#:
|
1682 |
-
#:
|
1683 |
-
#:
|
1684 |
-
#:
|
1685 |
-
#:
|
1686 |
-
#:
|
1687 |
-
#:
|
1688 |
-
#:
|
1689 |
msgid "Update"
|
1690 |
msgstr ""
|
1691 |
|
1692 |
-
#:
|
1693 |
msgid "browscap settings"
|
1694 |
msgstr ""
|
1695 |
|
1696 |
-
#:
|
1697 |
msgid "browscap usage"
|
1698 |
msgstr ""
|
1699 |
|
1700 |
-
#:
|
1701 |
-
#:
|
1702 |
-
#:
|
1703 |
-
#:
|
1704 |
-
#:
|
1705 |
-
#:
|
1706 |
-
#:
|
1707 |
-
#:
|
1708 |
-
#:
|
1709 |
-
#:
|
1710 |
-
#:
|
1711 |
-
#:
|
1712 |
-
#:
|
1713 |
-
#:
|
1714 |
-
#:
|
1715 |
-
#:
|
1716 |
-
#:
|
1717 |
-
#:
|
1718 |
-
#:
|
1719 |
-
#:
|
1720 |
-
#:
|
1721 |
-
#:
|
1722 |
-
#:
|
1723 |
-
#:
|
1724 |
-
#:
|
1725 |
-
#:
|
1726 |
-
#:
|
1727 |
-
#:
|
1728 |
-
#:
|
|
|
|
|
1729 |
msgid "Active"
|
1730 |
msgstr ""
|
1731 |
|
1732 |
-
#:
|
1733 |
msgid "The browscap database will be downloaded and used to detect robots."
|
1734 |
msgstr ""
|
1735 |
|
1736 |
-
#:
|
1737 |
msgid "Update browscap Info"
|
1738 |
msgstr ""
|
1739 |
|
1740 |
-
#:
|
1741 |
msgid "Download browscap Database"
|
1742 |
msgstr ""
|
1743 |
|
1744 |
-
#:
|
1745 |
-
#:
|
1746 |
msgid "Save changes on this page to download the update."
|
1747 |
msgstr ""
|
1748 |
|
1749 |
-
#:
|
1750 |
msgid "Schedule weekly update of browscap DB"
|
1751 |
msgstr ""
|
1752 |
|
1753 |
-
#:
|
1754 |
-
#:
|
1755 |
msgid "Next update will be"
|
1756 |
msgstr ""
|
1757 |
|
1758 |
-
#:
|
1759 |
msgid "Download of the browscap database will be scheduled for once a week."
|
1760 |
msgstr ""
|
1761 |
|
1762 |
-
#:
|
1763 |
msgid "This will delete the manual when you save the settings, are you sure?"
|
1764 |
msgstr ""
|
1765 |
|
1766 |
-
#:
|
1767 |
msgid ""
|
1768 |
"This feature will not store IP addresses in the database but instead used a "
|
1769 |
"unique hash. The \"Store entire user agent string\" setting will be "
|
@@ -1771,235 +1721,242 @@ msgid ""
|
|
1771 |
"addresses in the future to recover location information if this is enabled."
|
1772 |
msgstr ""
|
1773 |
|
1774 |
-
#:
|
1775 |
msgid "Users Online"
|
1776 |
msgstr ""
|
1777 |
|
1778 |
-
#:
|
1779 |
msgid "User online"
|
1780 |
msgstr ""
|
1781 |
|
1782 |
-
#:
|
1783 |
-
#:
|
1784 |
-
#:
|
1785 |
-
#:
|
1786 |
-
#:
|
1787 |
-
#:
|
1788 |
-
#:
|
1789 |
msgid "Enable or disable this feature"
|
1790 |
msgstr ""
|
1791 |
|
1792 |
-
#:
|
1793 |
msgid "Check for online users every"
|
1794 |
msgstr ""
|
1795 |
|
1796 |
-
#:
|
1797 |
msgid "Second"
|
1798 |
msgstr ""
|
1799 |
|
1800 |
-
#:
|
1801 |
-
#, php-format
|
1802 |
msgid "Time for the check accurate online user in the site. Now: %s Second"
|
1803 |
msgstr ""
|
1804 |
|
1805 |
-
#:
|
1806 |
msgid "Record all user"
|
1807 |
msgstr ""
|
1808 |
|
1809 |
-
#:
|
1810 |
msgid ""
|
1811 |
"Ignores the exclusion settings and records all users that are online "
|
1812 |
"(including self referrals and robots). Should only be used for "
|
1813 |
"troubleshooting."
|
1814 |
msgstr ""
|
1815 |
|
1816 |
-
#:
|
1817 |
msgid "Store entire user agent string"
|
1818 |
msgstr ""
|
1819 |
|
1820 |
-
#:
|
1821 |
msgid "Only enabled for debugging"
|
1822 |
msgstr ""
|
1823 |
|
1824 |
-
#:
|
1825 |
msgid "Coefficient per visitor"
|
1826 |
msgstr ""
|
1827 |
|
1828 |
-
#:
|
1829 |
-
#, php-format
|
1830 |
msgid "For each visit to account for several hits. Currently %s."
|
1831 |
msgstr ""
|
1832 |
|
1833 |
-
#:
|
1834 |
-
#:
|
1835 |
-
#:
|
1836 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:396
|
1837 |
msgid "Pages"
|
1838 |
msgstr ""
|
1839 |
|
1840 |
-
#:
|
1841 |
msgid "Track all pages"
|
1842 |
msgstr ""
|
1843 |
|
1844 |
-
#:
|
1845 |
msgid "Strip parameters from URI"
|
1846 |
msgstr ""
|
1847 |
|
1848 |
-
#:
|
1849 |
msgid "This will remove anything after the ? in a URL."
|
1850 |
msgstr ""
|
1851 |
|
1852 |
-
#:
|
1853 |
msgid "Disable hits column in post/pages list"
|
1854 |
msgstr ""
|
1855 |
|
1856 |
-
#:
|
1857 |
msgid "Miscellaneous"
|
1858 |
msgstr ""
|
1859 |
|
1860 |
-
#:
|
1861 |
msgid "Show stats in menu bar"
|
1862 |
msgstr ""
|
1863 |
|
1864 |
-
#:
|
1865 |
msgid "No"
|
1866 |
msgstr ""
|
1867 |
|
1868 |
-
#:
|
1869 |
msgid "Yes"
|
1870 |
msgstr ""
|
1871 |
|
1872 |
-
#:
|
1873 |
msgid "Show stats in admin menu bar"
|
1874 |
msgstr ""
|
1875 |
|
1876 |
-
#:
|
1877 |
msgid "Hide admin notices about non active features"
|
1878 |
msgstr ""
|
1879 |
|
1880 |
-
#:
|
1881 |
msgid ""
|
1882 |
"By default WP Statistics displays an alert if any of the core features are "
|
1883 |
"disabled on every admin page, this option will disable these notices."
|
1884 |
msgstr ""
|
1885 |
|
1886 |
-
#:
|
1887 |
msgid "Delete the manual"
|
1888 |
msgstr ""
|
1889 |
|
1890 |
-
#:
|
1891 |
msgid ""
|
1892 |
"By default WP Statistics stores the admin manual in the plugin directory (~5 "
|
1893 |
"meg), if this option is enabled it will be deleted now and during upgrades "
|
1894 |
"in the future."
|
1895 |
msgstr ""
|
1896 |
|
1897 |
-
#:
|
1898 |
msgid "Search Engines"
|
1899 |
msgstr ""
|
1900 |
|
1901 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1902 |
msgid ""
|
1903 |
"Disabling all search engines is not allowed, doing so will result in all "
|
1904 |
"search engines being active."
|
1905 |
msgstr ""
|
1906 |
|
1907 |
-
#:
|
1908 |
msgid "disable"
|
1909 |
msgstr ""
|
1910 |
|
1911 |
-
#:
|
1912 |
-
#, php-format
|
1913 |
msgid "Disable %s from data collection and reporting."
|
1914 |
msgstr ""
|
1915 |
|
1916 |
-
#:
|
1917 |
msgid "Charts"
|
1918 |
msgstr ""
|
1919 |
|
1920 |
-
#:
|
1921 |
msgid "Include totals"
|
1922 |
msgstr ""
|
1923 |
|
1924 |
-
#:
|
1925 |
msgid ""
|
1926 |
"Add a total line to charts with multiple values, like the search engine "
|
1927 |
"referrals"
|
1928 |
msgstr ""
|
1929 |
|
1930 |
-
#:
|
1931 |
msgid "Languages"
|
1932 |
msgstr ""
|
1933 |
|
1934 |
-
#:
|
1935 |
msgid "Force English"
|
1936 |
msgstr ""
|
1937 |
|
1938 |
-
#:
|
1939 |
msgid ""
|
1940 |
"Do not use the translations and instead use the English defaults for WP "
|
1941 |
"Statistics (requires two page loads)"
|
1942 |
msgstr ""
|
1943 |
|
1944 |
-
#:
|
1945 |
msgid "GeoIP settings"
|
1946 |
msgstr ""
|
1947 |
|
1948 |
-
#:
|
1949 |
-
#, php-format
|
1950 |
msgid ""
|
1951 |
"IP location services provided by GeoLite2 data created by MaxMind, available "
|
1952 |
"from %s."
|
1953 |
msgstr ""
|
1954 |
|
1955 |
-
#:
|
1956 |
msgid "GeoIP collection"
|
1957 |
msgstr ""
|
1958 |
|
1959 |
-
#:
|
1960 |
msgid ""
|
1961 |
"For get more information and location (country) from visitor, enable this "
|
1962 |
"feature."
|
1963 |
msgstr ""
|
1964 |
|
1965 |
-
#:
|
1966 |
msgid "Update GeoIP Info"
|
1967 |
msgstr ""
|
1968 |
|
1969 |
-
#:
|
1970 |
msgid "Download GeoIP Database"
|
1971 |
msgstr ""
|
1972 |
|
1973 |
-
#:
|
1974 |
msgid "Schedule monthly update of GeoIP DB"
|
1975 |
msgstr ""
|
1976 |
|
1977 |
-
#:
|
1978 |
msgid ""
|
1979 |
"Download of the GeoIP database will be scheduled for 2 days after the first "
|
1980 |
"Tuesday of the month."
|
1981 |
msgstr ""
|
1982 |
|
1983 |
-
#:
|
1984 |
msgid ""
|
1985 |
"This option will also download the database if the local filesize is less "
|
1986 |
"than 1k (which usually means the stub that comes with the plugin is still in "
|
1987 |
"place)."
|
1988 |
msgstr ""
|
1989 |
|
1990 |
-
#:
|
1991 |
msgid "Populate missing GeoIP after update of GeoIP DB"
|
1992 |
msgstr ""
|
1993 |
|
1994 |
-
#:
|
1995 |
msgid "Update any missing GeoIP data after downloading a new database."
|
1996 |
msgstr ""
|
1997 |
|
1998 |
-
#:
|
1999 |
msgid "Country code for private IP addresses"
|
2000 |
msgstr ""
|
2001 |
|
2002 |
-
#:
|
2003 |
msgid ""
|
2004 |
"The international standard two letter country code (ie. US = United States, "
|
2005 |
"CA = Canada, etc.) for private (non-routable) IP addresses (ie. 10.0.0.1, "
|
@@ -2007,766 +1964,811 @@ msgid ""
|
|
2007 |
"as the country code."
|
2008 |
msgstr ""
|
2009 |
|
2010 |
-
#:
|
2011 |
msgid "GeoIP collection is disabled due to the following reasons:"
|
2012 |
msgstr ""
|
2013 |
|
2014 |
-
#:
|
2015 |
-
#, php-format
|
2016 |
msgid ""
|
2017 |
"GeoIP collection requires PHP %s or above, it is currently disabled due to "
|
2018 |
"the installed PHP version being "
|
2019 |
msgstr ""
|
2020 |
|
2021 |
-
#:
|
2022 |
msgid ""
|
2023 |
"GeoIP collection requires the cURL PHP extension and it is not loaded on "
|
2024 |
"your version of PHP!"
|
2025 |
msgstr ""
|
2026 |
|
2027 |
-
#:
|
2028 |
msgid ""
|
2029 |
"GeoIP collection requires the BC Math PHP extension and it is not loaded on "
|
2030 |
"your version of PHP!"
|
2031 |
msgstr ""
|
2032 |
|
2033 |
-
#:
|
2034 |
msgid ""
|
2035 |
"PHP safe mode detected! GeoIP collection is not supported with PHP's safe "
|
2036 |
"mode enabled!"
|
2037 |
msgstr ""
|
2038 |
|
2039 |
-
#:
|
2040 |
msgid ""
|
2041 |
"This will permanently delete data from the database each day, are you sure "
|
2042 |
"you want to enable this option?"
|
2043 |
msgstr ""
|
2044 |
|
2045 |
-
#:
|
2046 |
msgid "Database Maintenance"
|
2047 |
msgstr ""
|
2048 |
|
2049 |
-
#:
|
|
|
2050 |
msgid "Run a daily WP Cron job to prune the databases"
|
2051 |
msgstr ""
|
2052 |
|
2053 |
-
#:
|
2054 |
msgid ""
|
2055 |
"A WP Cron job will be run daily to prune any data older than a set number of "
|
2056 |
"days."
|
2057 |
msgstr ""
|
2058 |
|
2059 |
-
#:
|
2060 |
msgid "Prune data older than"
|
2061 |
msgstr ""
|
2062 |
|
2063 |
-
#:
|
2064 |
msgid "Days"
|
2065 |
msgstr ""
|
2066 |
|
2067 |
-
#:
|
2068 |
msgid ""
|
2069 |
"The number of days to keep statistics for. Minimum value is 30 days. "
|
2070 |
"Invalid values will disable the daily maintenance."
|
2071 |
msgstr ""
|
2072 |
|
2073 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2074 |
msgid "Common Report Options"
|
2075 |
msgstr ""
|
2076 |
|
2077 |
-
#:
|
2078 |
msgid "E-mail addresses"
|
2079 |
msgstr ""
|
2080 |
|
2081 |
-
#:
|
2082 |
msgid "A comma separated list of e-mail addresses to send reports to."
|
2083 |
msgstr ""
|
2084 |
|
2085 |
-
#:
|
2086 |
msgid "Update Reports"
|
2087 |
msgstr ""
|
2088 |
|
2089 |
-
#:
|
2090 |
msgid "Send a report whenever the browscap.ini is updated."
|
2091 |
msgstr ""
|
2092 |
|
2093 |
-
#:
|
2094 |
msgid "Send a report whenever the GeoIP database is updated."
|
2095 |
msgstr ""
|
2096 |
|
2097 |
-
#:
|
2098 |
msgid "Pruning"
|
2099 |
msgstr ""
|
2100 |
|
2101 |
-
#:
|
2102 |
msgid "Send a report whenever the pruning of database is run."
|
2103 |
msgstr ""
|
2104 |
|
2105 |
-
#:
|
2106 |
msgid "Upgrade"
|
2107 |
msgstr ""
|
2108 |
|
2109 |
-
#:
|
2110 |
msgid "Send a report whenever the plugin is upgraded."
|
2111 |
msgstr ""
|
2112 |
|
2113 |
-
#:
|
2114 |
-
#:
|
2115 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:174
|
2116 |
msgid "Statistical reporting"
|
2117 |
msgstr ""
|
2118 |
|
2119 |
-
#:
|
2120 |
msgid "Schedule"
|
2121 |
msgstr ""
|
2122 |
|
2123 |
-
#:
|
2124 |
msgid "Select how often to receive statistical report."
|
2125 |
msgstr ""
|
2126 |
|
2127 |
-
#:
|
2128 |
msgid "Send reports via"
|
2129 |
msgstr ""
|
2130 |
|
2131 |
-
#:
|
2132 |
msgid "Email"
|
2133 |
msgstr ""
|
2134 |
|
2135 |
-
#:
|
2136 |
msgid "SMS"
|
2137 |
msgstr ""
|
2138 |
|
2139 |
-
#:
|
2140 |
msgid "Select delivery method for statistical report."
|
2141 |
msgstr ""
|
2142 |
|
2143 |
-
#:
|
2144 |
-
#, php-format
|
2145 |
msgid "Note: To send SMS text messages please install the %s plugin."
|
2146 |
msgstr ""
|
2147 |
|
2148 |
-
#:
|
2149 |
msgid "WordPress SMS"
|
2150 |
msgstr ""
|
2151 |
|
2152 |
-
#:
|
2153 |
msgid "Report body"
|
2154 |
msgstr ""
|
2155 |
|
2156 |
-
#:
|
2157 |
msgid "Enter the contents of the report."
|
2158 |
msgstr ""
|
2159 |
|
2160 |
-
#:
|
2161 |
msgid ""
|
2162 |
"Any shortcode supported by your installation of WordPress, include all "
|
2163 |
"shortcodes for WP Statistics (see the admin manual for a list of codes "
|
2164 |
"available) are supported in the body of the message. Here are some examples:"
|
2165 |
msgstr ""
|
2166 |
|
2167 |
-
#:
|
2168 |
-
#:
|
2169 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:245
|
2170 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:492
|
2171 |
msgid "User Online"
|
2172 |
msgstr ""
|
2173 |
|
2174 |
-
#:
|
2175 |
-
#:
|
2176 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:251
|
2177 |
msgid "Today Visitor"
|
2178 |
msgstr ""
|
2179 |
|
2180 |
-
#:
|
2181 |
-
#:
|
2182 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:248
|
2183 |
msgid "Today Visit"
|
2184 |
msgstr ""
|
2185 |
|
2186 |
-
#:
|
2187 |
-
#:
|
2188 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:257
|
2189 |
msgid "Yesterday Visitor"
|
2190 |
msgstr ""
|
2191 |
|
2192 |
-
#:
|
2193 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:59
|
2194 |
msgid "Yesterday Visit"
|
2195 |
msgstr ""
|
2196 |
|
2197 |
-
#:
|
2198 |
-
#:
|
2199 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:272
|
2200 |
msgid "Total Visitor"
|
2201 |
msgstr ""
|
2202 |
|
2203 |
-
#:
|
2204 |
-
#:
|
2205 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:269
|
2206 |
msgid "Total Visit"
|
2207 |
msgstr ""
|
2208 |
|
2209 |
-
#:
|
2210 |
-
#:
|
2211 |
msgid "None"
|
2212 |
msgstr ""
|
2213 |
|
2214 |
-
#:
|
2215 |
msgid "Summary Statistics"
|
2216 |
msgstr ""
|
2217 |
|
2218 |
-
#:
|
2219 |
-
#:
|
2220 |
msgid "About"
|
2221 |
msgstr ""
|
2222 |
|
2223 |
-
#:
|
2224 |
msgid "Hits Statistical Chart"
|
2225 |
msgstr ""
|
2226 |
|
2227 |
-
#:
|
2228 |
msgid "Search Engine Referrers Statistical Chart"
|
2229 |
msgstr ""
|
2230 |
|
2231 |
-
#:
|
2232 |
msgid "Top Pages Visited"
|
2233 |
msgstr ""
|
2234 |
|
2235 |
-
#:
|
2236 |
msgid "Dashboard"
|
2237 |
msgstr ""
|
2238 |
|
2239 |
-
#:
|
2240 |
-
#:
|
2241 |
-
#:
|
2242 |
msgid "The following items are global to all users."
|
2243 |
msgstr ""
|
2244 |
|
2245 |
-
#:
|
2246 |
msgid "Disable dashboard widgets"
|
2247 |
msgstr ""
|
2248 |
|
2249 |
-
#:
|
2250 |
msgid "Disable the dashboard widgets."
|
2251 |
msgstr ""
|
2252 |
|
2253 |
-
#:
|
2254 |
msgid "Page/Post Editor"
|
2255 |
msgstr ""
|
2256 |
|
2257 |
-
#:
|
2258 |
msgid "Disable post/page editor widget"
|
2259 |
msgstr ""
|
2260 |
|
2261 |
-
#:
|
2262 |
msgid "Disable the page/post editor widget."
|
2263 |
msgstr ""
|
2264 |
|
2265 |
-
#:
|
2266 |
msgid "Map type"
|
2267 |
msgstr ""
|
2268 |
|
2269 |
-
#:
|
2270 |
msgid "JQVMap"
|
2271 |
msgstr ""
|
2272 |
|
2273 |
-
#:
|
2274 |
msgid ""
|
2275 |
"The \"Google\" option will use Google's mapping service to plot the recent "
|
2276 |
"visitors (requires access to Google)."
|
2277 |
msgstr ""
|
2278 |
|
2279 |
-
#:
|
2280 |
msgid ""
|
2281 |
"The \"JQVMap\" option will use JQVMap javascript mapping library to plot the "
|
2282 |
"recent visitors (requires no extenral services)."
|
2283 |
msgstr ""
|
2284 |
|
2285 |
-
#:
|
2286 |
msgid "Disable map"
|
2287 |
msgstr ""
|
2288 |
|
2289 |
-
#:
|
2290 |
msgid "Disable the map display"
|
2291 |
msgstr ""
|
2292 |
|
2293 |
-
#:
|
2294 |
msgid "Get country location from Google"
|
2295 |
msgstr ""
|
2296 |
|
2297 |
-
#:
|
2298 |
msgid ""
|
2299 |
"This feature may cause a performance degradation when viewing statistics and "
|
2300 |
"is only valid if the map type is set to \"Google\"."
|
2301 |
msgstr ""
|
2302 |
|
2303 |
-
#:
|
2304 |
msgid "Overview Widgets to Display"
|
2305 |
msgstr ""
|
2306 |
|
2307 |
-
#:
|
2308 |
msgid ""
|
2309 |
"The following items are unique to each user. If you do not select the "
|
2310 |
"'About' widget it will automatically be displayed in the last positon of "
|
2311 |
"column A."
|
2312 |
msgstr ""
|
2313 |
|
2314 |
-
#:
|
2315 |
msgid "Slot"
|
2316 |
msgstr ""
|
2317 |
|
2318 |
-
#:
|
2319 |
msgid "Column A"
|
2320 |
msgstr ""
|
2321 |
|
2322 |
-
#:
|
2323 |
msgid "Column B"
|
2324 |
msgstr ""
|
2325 |
|
2326 |
-
#:
|
2327 |
msgid "Slot 1"
|
2328 |
msgstr ""
|
2329 |
|
2330 |
-
#:
|
2331 |
msgid "Slot 2"
|
2332 |
msgstr ""
|
2333 |
|
2334 |
-
#:
|
2335 |
msgid "Slot 3"
|
2336 |
msgstr ""
|
2337 |
|
2338 |
-
#:
|
2339 |
msgid "Slot 4"
|
2340 |
msgstr ""
|
2341 |
|
2342 |
-
#:
|
2343 |
msgid "Slot 5"
|
2344 |
msgstr ""
|
2345 |
|
2346 |
-
#:
|
2347 |
msgid "Slot 6"
|
2348 |
msgstr ""
|
2349 |
|
2350 |
-
#:
|
2351 |
-
#:
|
2352 |
msgid "N/A"
|
2353 |
msgstr ""
|
2354 |
|
2355 |
-
#:
|
2356 |
msgid "Slot 7"
|
2357 |
msgstr ""
|
2358 |
|
2359 |
-
#:
|
2360 |
msgid "WP Statisitcs Removal"
|
2361 |
msgstr ""
|
2362 |
|
2363 |
-
#:
|
2364 |
msgid ""
|
2365 |
"Uninstalling WP Statistics will not remove the data and settings, you can "
|
2366 |
"use this option to remove the WP Statistics data from your install before "
|
2367 |
"uninstalling the plugin."
|
2368 |
msgstr ""
|
2369 |
|
2370 |
-
#:
|
2371 |
msgid ""
|
2372 |
"Once you submit this form the settings will be deleted during the page load, "
|
2373 |
"however WP Statistics will still show up in your Admin menu until another "
|
2374 |
"page load is executed."
|
2375 |
msgstr ""
|
2376 |
|
2377 |
-
#:
|
2378 |
msgid "Remove data and settings"
|
2379 |
msgstr ""
|
2380 |
|
2381 |
-
#:
|
2382 |
msgid "Remove"
|
2383 |
msgstr ""
|
2384 |
|
2385 |
-
#:
|
2386 |
msgid "Remove data and settings, this action cannot be undone."
|
2387 |
msgstr ""
|
2388 |
|
2389 |
-
#:
|
2390 |
msgid "General"
|
2391 |
msgstr ""
|
2392 |
|
2393 |
-
#:
|
2394 |
msgid "Notifications"
|
2395 |
msgstr ""
|
2396 |
|
2397 |
-
#:
|
2398 |
msgid "Dashboard/Overview"
|
2399 |
msgstr ""
|
2400 |
|
2401 |
-
#:
|
2402 |
msgid "Access/Exclusions"
|
2403 |
msgstr ""
|
2404 |
|
2405 |
-
#:
|
2406 |
msgid "browscap"
|
2407 |
msgstr ""
|
2408 |
|
2409 |
-
#:
|
2410 |
msgid "Maintenance"
|
2411 |
msgstr ""
|
2412 |
|
2413 |
-
#:
|
2414 |
msgid "Removal"
|
2415 |
msgstr ""
|
2416 |
|
2417 |
-
#:
|
2418 |
-
|
2419 |
-
msgid "Manual not found: %s"
|
2420 |
msgstr ""
|
2421 |
|
2422 |
-
#:
|
2423 |
-
|
2424 |
-
msgid "Invalid file type selected: %s"
|
2425 |
msgstr ""
|
2426 |
|
2427 |
-
#:
|
2428 |
-
msgid "Once
|
2429 |
msgstr ""
|
2430 |
|
2431 |
-
#:
|
2432 |
-
msgid "
|
2433 |
msgstr ""
|
2434 |
|
2435 |
-
#:
|
2436 |
-
msgid "
|
2437 |
msgstr ""
|
2438 |
|
2439 |
-
#:
|
2440 |
-
|
2441 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2442 |
msgid "Statistics"
|
2443 |
msgstr ""
|
2444 |
|
2445 |
-
#:
|
2446 |
msgid "Show site stats in sidebar."
|
2447 |
msgstr ""
|
2448 |
|
2449 |
-
#:
|
2450 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:260
|
2451 |
msgid "Week Visit"
|
2452 |
msgstr ""
|
2453 |
|
2454 |
-
#:
|
2455 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:263
|
2456 |
msgid "Month Visit"
|
2457 |
msgstr ""
|
2458 |
|
2459 |
-
#:
|
2460 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:266
|
2461 |
msgid "Years Visit"
|
2462 |
msgstr ""
|
2463 |
|
2464 |
-
#:
|
2465 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:275
|
2466 |
msgid "Total Page Views"
|
2467 |
msgstr ""
|
2468 |
|
2469 |
-
#:
|
2470 |
msgid "Search Engine referred"
|
2471 |
msgstr ""
|
2472 |
|
2473 |
-
#:
|
2474 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:298
|
2475 |
msgid "Total Posts"
|
2476 |
msgstr ""
|
2477 |
|
2478 |
-
#:
|
2479 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:301
|
2480 |
msgid "Total Pages"
|
2481 |
msgstr ""
|
2482 |
|
2483 |
-
#:
|
2484 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:304
|
2485 |
msgid "Total Comments"
|
2486 |
msgstr ""
|
2487 |
|
2488 |
-
#:
|
2489 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:307
|
2490 |
msgid "Total Spams"
|
2491 |
msgstr ""
|
2492 |
|
2493 |
-
#:
|
2494 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:310
|
2495 |
msgid "Total Users"
|
2496 |
msgstr ""
|
2497 |
|
2498 |
-
#:
|
2499 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:313
|
2500 |
msgid "Average Posts"
|
2501 |
msgstr ""
|
2502 |
|
2503 |
-
#:
|
2504 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:316
|
2505 |
msgid "Average Comments"
|
2506 |
msgstr ""
|
2507 |
|
2508 |
-
#:
|
2509 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:319
|
2510 |
msgid "Average Users"
|
2511 |
msgstr ""
|
2512 |
|
2513 |
-
#:
|
2514 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:322
|
2515 |
-
msgid "Last Post Date"
|
2516 |
-
msgstr ""
|
2517 |
-
|
2518 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:238
|
2519 |
msgid "Name"
|
2520 |
msgstr ""
|
2521 |
|
2522 |
-
#:
|
2523 |
msgid "Items"
|
2524 |
msgstr ""
|
2525 |
|
2526 |
-
#:
|
2527 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:517
|
2528 |
msgid "Yesterday visit"
|
2529 |
msgstr ""
|
2530 |
|
2531 |
-
#:
|
2532 |
msgid "Search Engine Referred"
|
2533 |
msgstr ""
|
2534 |
|
2535 |
-
#:
|
2536 |
msgid "Select type of search engine"
|
2537 |
msgstr ""
|
2538 |
|
2539 |
-
|
|
|
2540 |
msgid "WP Statistics"
|
2541 |
msgstr ""
|
2542 |
|
2543 |
-
|
|
|
2544 |
msgid "Complete statistics for your WordPress site."
|
2545 |
msgstr ""
|
2546 |
|
2547 |
-
#:
|
2548 |
msgid ""
|
2549 |
"ERROR: WP Statistics has detected an unsupported version of PHP, WP "
|
2550 |
"Statistics will not function without PHP Version "
|
2551 |
msgstr ""
|
2552 |
|
2553 |
-
#:
|
2554 |
msgid " or higher!"
|
2555 |
msgstr ""
|
2556 |
|
2557 |
-
#:
|
2558 |
msgid "Your current PHP version is"
|
2559 |
msgstr ""
|
2560 |
|
2561 |
-
#:
|
2562 |
msgid "WP Statistics has been removed, please disable and delete it."
|
2563 |
msgstr ""
|
2564 |
|
2565 |
-
#:
|
2566 |
-
#, php-format
|
2567 |
msgid ""
|
2568 |
"Online user tracking in WP Statistics is not enabled, please go to %s and "
|
2569 |
"enable it."
|
2570 |
msgstr ""
|
2571 |
|
2572 |
-
#:
|
2573 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:112
|
2574 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:115
|
2575 |
msgid "setting page"
|
2576 |
msgstr ""
|
2577 |
|
2578 |
-
#:
|
2579 |
-
#, php-format
|
2580 |
msgid ""
|
2581 |
"Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
|
2582 |
msgstr ""
|
2583 |
|
2584 |
-
#:
|
2585 |
-
#, php-format
|
2586 |
msgid ""
|
2587 |
"Visitor tracking in WP Statistics is not enabled, please go to %s and enable "
|
2588 |
"it."
|
2589 |
msgstr ""
|
2590 |
|
2591 |
-
#:
|
2592 |
-
#, php-format
|
2593 |
msgid ""
|
2594 |
"GeoIP collection is not active, please go to %s and enable this feature."
|
2595 |
msgstr ""
|
2596 |
|
2597 |
-
#:
|
2598 |
msgid "Setting page > GeoIP"
|
2599 |
msgstr ""
|
2600 |
|
2601 |
-
#:
|
2602 |
-
#, php-format
|
2603 |
msgid "WP Statistics %s installed on"
|
2604 |
msgstr ""
|
2605 |
|
2606 |
-
#:
|
2607 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:331
|
2608 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:403
|
2609 |
msgid "Settings"
|
2610 |
msgstr ""
|
2611 |
|
2612 |
-
#:
|
2613 |
msgid "Click here to visit the plugin on WordPress.org"
|
2614 |
msgstr ""
|
2615 |
|
2616 |
-
#:
|
2617 |
msgid "Visit WordPress.org page"
|
2618 |
msgstr ""
|
2619 |
|
2620 |
-
#:
|
2621 |
msgid "Click here to rate and review this plugin on WordPress.org"
|
2622 |
msgstr ""
|
2623 |
|
2624 |
-
#:
|
2625 |
msgid "Rate this plugin"
|
2626 |
msgstr ""
|
2627 |
|
2628 |
-
#:
|
2629 |
msgid "WP Statistics - Hits"
|
2630 |
msgstr ""
|
2631 |
|
2632 |
-
#:
|
2633 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:352
|
2634 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:390
|
2635 |
msgid "Overview"
|
2636 |
msgstr ""
|
2637 |
|
2638 |
-
#:
|
2639 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:395
|
2640 |
msgid "Online"
|
2641 |
msgstr ""
|
2642 |
|
2643 |
-
#:
|
2644 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:397
|
2645 |
msgid "Referrers"
|
2646 |
msgstr ""
|
2647 |
|
2648 |
-
#:
|
2649 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:398
|
2650 |
-
msgid "Searches"
|
2651 |
-
msgstr ""
|
2652 |
-
|
2653 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:326
|
2654 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:399
|
2655 |
msgid "Search Words"
|
2656 |
msgstr ""
|
2657 |
|
2658 |
-
#:
|
2659 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:400
|
2660 |
msgid "Top Visitors Today"
|
2661 |
msgstr ""
|
2662 |
|
2663 |
-
#:
|
2664 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:402
|
2665 |
msgid "Optimization"
|
2666 |
msgstr ""
|
2667 |
|
2668 |
-
#:
|
2669 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:366
|
2670 |
msgid "Manual"
|
2671 |
msgstr ""
|
2672 |
|
2673 |
-
#:
|
2674 |
msgid "Site"
|
2675 |
msgstr ""
|
2676 |
|
2677 |
-
#:
|
2678 |
msgid "Options"
|
2679 |
msgstr ""
|
2680 |
|
2681 |
-
#:
|
2682 |
msgid "Today visitor"
|
2683 |
msgstr ""
|
2684 |
|
2685 |
-
#:
|
2686 |
msgid "Today visit"
|
2687 |
msgstr ""
|
2688 |
|
2689 |
-
#:
|
2690 |
msgid "Yesterday visitor"
|
2691 |
msgstr ""
|
2692 |
|
2693 |
-
#:
|
2694 |
msgid "View Stats"
|
2695 |
msgstr ""
|
2696 |
|
2697 |
-
#:
|
2698 |
msgid "Download ODF file"
|
2699 |
msgstr ""
|
2700 |
|
2701 |
-
#:
|
2702 |
msgid "Download HTML file"
|
2703 |
msgstr ""
|
2704 |
|
2705 |
-
#:
|
2706 |
msgid "Manual file not found."
|
2707 |
msgstr ""
|
2708 |
|
2709 |
-
#:
|
2710 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:730
|
2711 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:764
|
2712 |
msgid "You do not have sufficient permissions to access this page."
|
2713 |
msgstr ""
|
2714 |
|
2715 |
-
#:
|
2716 |
-
#, php-format
|
2717 |
msgid ""
|
2718 |
"Plugin tables do not exist in the database! Please re-run the %s install "
|
2719 |
"routine %s."
|
2720 |
msgstr ""
|
2721 |
|
2722 |
-
#:
|
2723 |
-
#, php-format
|
2724 |
msgid "Error downloading GeoIP database from: %s - %s"
|
2725 |
msgstr ""
|
2726 |
|
2727 |
-
#:
|
2728 |
-
#, php-format
|
2729 |
msgid "Error could not open downloaded GeoIP database for reading: %s"
|
2730 |
msgstr ""
|
2731 |
|
2732 |
-
#:
|
2733 |
-
#, php-format
|
2734 |
msgid "Error could not open destination GeoIP database for writing %s"
|
2735 |
msgstr ""
|
2736 |
|
2737 |
-
#:
|
2738 |
msgid "GeoIP Database updated successfully!"
|
2739 |
msgstr ""
|
2740 |
|
2741 |
-
#:
|
2742 |
msgid "GeoIP update on"
|
2743 |
msgstr ""
|
2744 |
|
2745 |
-
#:
|
2746 |
-
#, php-format
|
2747 |
msgid "Error downloading browscap database from: %s - %s"
|
2748 |
msgstr ""
|
2749 |
|
2750 |
-
#:
|
2751 |
msgid "browscap database updated successfully!"
|
2752 |
msgstr ""
|
2753 |
|
2754 |
-
#:
|
2755 |
msgid ""
|
2756 |
"browscap database updated failed! Cache file too large, reverting to "
|
2757 |
"previous browscap.ini."
|
2758 |
msgstr ""
|
2759 |
|
2760 |
-
#:
|
2761 |
msgid ""
|
2762 |
"browscap database updated failed! New browscap.ini is mis-identifing user "
|
2763 |
"agents as crawlers, reverting to previous browscap.ini."
|
2764 |
msgstr ""
|
2765 |
|
2766 |
-
#:
|
2767 |
msgid "browscap already at current version!"
|
2768 |
msgstr ""
|
2769 |
|
2770 |
-
#:
|
2771 |
msgid "Browscap.ini update on"
|
2772 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
# This file is distributed under the same license as the WP Statistics package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: WP Statistics 9.2\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/wp-statistics\n"
|
7 |
+
"POT-Creation-Date: 2015-05-11 20:45:40+00:00\n"
|
|
|
|
|
|
|
|
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"PO-Revision-Date: 2015-05-11 16:47-0500\n"
|
12 |
+
"Last-Translator: \n"
|
13 |
+
"Language-Team: \n"
|
14 |
+
"X-Generator: Poedit 1.7.5\n"
|
15 |
+
|
16 |
+
#: ajax.php:31
|
17 |
+
msgid "%s agent data deleted successfully."
|
18 |
+
msgstr ""
|
19 |
+
|
20 |
+
#: ajax.php:34
|
21 |
+
msgid "No agent data found to remove!"
|
22 |
+
msgstr ""
|
23 |
+
|
24 |
+
#: ajax.php:38 ajax.php:68 ajax.php:116 ajax.php:122
|
25 |
+
msgid "Please select the desired items."
|
26 |
+
msgstr ""
|
27 |
+
|
28 |
+
#: ajax.php:41 ajax.php:71 ajax.php:125 ajax.php:150 ajax.php:180
|
29 |
+
#: includes/optimization/wps-optimization.php:6
|
30 |
+
msgid "Access denied!"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: ajax.php:62
|
34 |
+
msgid "%s platform data deleted successfully."
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: ajax.php:65
|
38 |
+
msgid "No platform data found to remove!"
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: ajax.php:174 includes/functions/purge-hits.php:32
|
42 |
+
msgid "Number of hits must be greater than or equal to 10!"
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: dashboard.php:55
|
46 |
msgid "Quick Stats"
|
47 |
msgstr ""
|
48 |
|
49 |
+
#: dashboard.php:56 includes/log/widgets/browsers.php:58
|
|
|
50 |
msgid "Top 10 Browsers"
|
51 |
msgstr ""
|
52 |
|
53 |
+
#: dashboard.php:57 includes/log/widgets/countries.php:11
|
54 |
+
#: includes/settings/tabs/wps-overview-display.php:27
|
|
|
55 |
msgid "Top 10 Countries"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: dashboard.php:58
|
59 |
msgid "Today's Visitor Map"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: dashboard.php:59 editor.php:46 includes/log/hit-statistics.php:8
|
63 |
+
#: includes/log/widgets/hits.php:10
|
|
|
|
|
64 |
msgid "Hit Statistics"
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: dashboard.php:60 includes/log/widgets/pages.php:14
|
|
|
68 |
msgid "Top 10 Pages"
|
69 |
msgstr ""
|
70 |
|
71 |
+
#: dashboard.php:61 includes/log/last-visitor.php:36
|
72 |
+
#: includes/log/widgets/recent.php:10
|
73 |
+
#: includes/settings/tabs/wps-overview-display.php:39
|
|
|
74 |
msgid "Recent Visitors"
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: dashboard.php:62 includes/log/top-referring.php:27
|
78 |
+
#: includes/log/top-referring.php:42 includes/log/widgets/referring.php:16
|
79 |
+
#: includes/settings/tabs/wps-overview-display.php:26
|
|
|
|
|
80 |
msgid "Top Referring Sites"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: dashboard.php:63 includes/log/widgets/search.php:10
|
84 |
+
#: includes/log/widgets/summary.php:89
|
|
|
85 |
msgid "Search Engine Referrals"
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: dashboard.php:64 includes/log/widgets/summary.php:8
|
|
|
89 |
msgid "Summary"
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: dashboard.php:65 includes/log/last-search.php:31
|
93 |
+
#: includes/log/widgets/words.php:11
|
94 |
+
#: includes/settings/tabs/wps-overview-display.php:37
|
|
|
95 |
msgid "Latest Search Words"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: dashboard.php:66 includes/log/widgets/top.visitors.php:10
|
99 |
+
#: includes/settings/tabs/wps-overview-display.php:35
|
|
|
100 |
msgid "Top 10 Visitors Today"
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: dashboard.php:97
|
104 |
msgid "Please reload the dashboard to display the content of this widget."
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: dashboard.php:138
|
108 |
msgid "WP Statistics Overview"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: editor.php:63
|
112 |
msgid "This post is not yet published."
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: editor.php:69
|
116 |
msgid "Hits in the last 20 days"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: includes/functions/functions.php:398
|
120 |
msgid "Baidu"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: includes/functions/functions.php:399
|
124 |
msgid "Bing"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: includes/functions/functions.php:400
|
128 |
msgid "clearch.org"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: includes/functions/functions.php:401
|
132 |
msgid "DuckDuckGo"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: includes/functions/functions.php:402
|
136 |
+
#: includes/settings/tabs/wps-overview-display.php:128
|
137 |
msgid "Google"
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: includes/functions/functions.php:403
|
141 |
msgid "Yahoo!"
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: includes/functions/functions.php:404
|
145 |
msgid "Yandex"
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: includes/functions/functions.php:879
|
149 |
msgid "10 Days"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: includes/functions/functions.php:879
|
153 |
msgid "20 Days"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: includes/functions/functions.php:879
|
157 |
msgid "30 Days"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: includes/functions/functions.php:879
|
161 |
msgid "2 Months"
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: includes/functions/functions.php:879
|
165 |
msgid "3 Months"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: includes/functions/functions.php:879
|
169 |
msgid "6 Months"
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: includes/functions/functions.php:879
|
173 |
msgid "9 Months"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: includes/functions/functions.php:879
|
177 |
msgid "1 Year"
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: includes/functions/functions.php:922 includes/functions/functions.php:925
|
|
|
181 |
msgid "Range"
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: includes/functions/functions.php:929
|
185 |
msgid "MM/DD/YYYY"
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: includes/functions/functions.php:929
|
189 |
msgid "to"
|
190 |
msgstr ""
|
191 |
|
192 |
+
#: includes/functions/functions.php:929
|
193 |
msgid "Go"
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: includes/functions/functions.php:967
|
197 |
+
msgid "%s table data deleted successfully."
|
198 |
+
msgstr ""
|
199 |
+
|
200 |
+
#: includes/functions/functions.php:971
|
201 |
+
msgid "Error, %s not emptied!"
|
202 |
+
msgstr ""
|
203 |
+
|
204 |
+
#: includes/functions/geoip-populate.php:24
|
205 |
msgid ""
|
206 |
"Unable to load the GeoIP database, make sure you have downloaded it in the "
|
207 |
"settings page."
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: includes/functions/geoip-populate.php:48
|
|
|
211 |
msgid "Updated %s GeoIP records in the visitors database."
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: includes/functions/purge-hits.php:25
|
215 |
+
msgid "%s records purged successfully."
|
|
|
|
|
|
|
|
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: includes/functions/purge-hits.php:28
|
219 |
+
msgid "No visitors found to purge."
|
|
|
|
|
|
|
|
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: includes/functions/purge-hits.php:45 includes/functions/purge.php:98
|
223 |
msgid "Database pruned on"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: includes/functions/purge.php:21 includes/functions/purge.php:39
|
227 |
+
#: includes/functions/purge.php:50 includes/functions/purge.php:83
|
228 |
+
msgid "%s data older than %s days purged successfully."
|
229 |
+
msgstr ""
|
230 |
+
|
231 |
+
#: includes/functions/purge.php:23 includes/functions/purge.php:41
|
232 |
+
#: includes/functions/purge.php:52 includes/functions/purge.php:85
|
233 |
+
msgid "No records found to purge from %s!"
|
234 |
+
msgstr ""
|
235 |
+
|
236 |
+
#: includes/functions/purge.php:103
|
237 |
msgid "Please select a value over 30 days."
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: includes/log/all-browsers.php:8
|
241 |
msgid "Browser Statistics"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: includes/log/all-browsers.php:14 includes/log/all-browsers.php:98
|
245 |
+
#: includes/log/all-browsers.php:233 includes/log/exclusions.php:72
|
246 |
+
#: includes/log/exclusions.php:190 includes/log/hit-statistics.php:26
|
247 |
+
#: includes/log/hit-statistics.php:162 includes/log/last-search.php:64
|
248 |
+
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
249 |
+
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
250 |
+
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
251 |
+
#: includes/log/top-referring.php:38 includes/log/widgets/about.php:7
|
252 |
+
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
253 |
+
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
254 |
+
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
255 |
+
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:14
|
256 |
+
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
257 |
+
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
258 |
msgid "Click to toggle"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
|
262 |
+
#: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:339
|
263 |
+
#: wp-statistics.php:415
|
|
|
|
|
264 |
msgid "Browsers"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: includes/log/all-browsers.php:42
|
268 |
msgid "Browsers by type"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: includes/log/all-browsers.php:99 includes/log/widgets/top.visitors.php:37
|
272 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:302
|
|
|
273 |
msgid "Platform"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: includes/log/all-browsers.php:126
|
277 |
msgid "Browsers by platform"
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: includes/log/all-browsers.php:234
|
|
|
281 |
msgid "%s Version"
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: includes/log/exclusions.php:8
|
285 |
msgid ""
|
286 |
"Attention: Exclusion are not currently set to be recorded, the results below "
|
287 |
"may not reflect current statistics!"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: includes/log/exclusions.php:24
|
291 |
msgid "Robot"
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: includes/log/exclusions.php:24
|
295 |
+
#: includes/settings/tabs/wps-notifications.php:64
|
296 |
msgid "Browscap"
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: includes/log/exclusions.php:24
|
300 |
msgid "IP Match"
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: includes/log/exclusions.php:24
|
304 |
msgid "Self Referral"
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: includes/log/exclusions.php:24
|
308 |
msgid "Login Page"
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: includes/log/exclusions.php:24
|
312 |
msgid "Admin Page"
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: includes/log/exclusions.php:24
|
316 |
msgid "User Role"
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: includes/log/exclusions.php:24 includes/log/search-statistics.php:104
|
320 |
+
#: includes/log/widgets/search.php:94 includes/log/widgets/summary.php:72
|
321 |
+
#: includes/log/widgets/summary.php:119
|
|
|
|
|
322 |
msgid "Total"
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: includes/log/exclusions.php:24
|
326 |
+
#: includes/settings/tabs/wps-notifications.php:76
|
327 |
+
#: includes/settings/wps-settings.php:104
|
328 |
msgid "GeoIP"
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: includes/log/exclusions.php:24
|
332 |
msgid "Hostname"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: includes/log/exclusions.php:24
|
336 |
msgid "Robot Threshold"
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: includes/log/exclusions.php:24
|
340 |
msgid "Honey Pot"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: includes/log/exclusions.php:24
|
344 |
msgid "Feeds"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: includes/log/exclusions.php:24
|
348 |
msgid "Excluded URL"
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: includes/log/exclusions.php:64
|
352 |
msgid "Exclusions Statistics"
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: includes/log/exclusions.php:73
|
|
|
|
|
|
|
|
|
|
|
356 |
msgid "Exclusions Statistical Chart"
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: includes/log/exclusions.php:95
|
360 |
msgid "Excluded hits in the last"
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: includes/log/exclusions.php:95 includes/log/hit-statistics.php:65
|
364 |
+
#: includes/log/search-statistics.php:69 includes/log/widgets/hits.php:61
|
365 |
+
#: includes/log/widgets/search.php:59
|
366 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:207
|
|
|
|
|
367 |
msgid "days"
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: includes/log/exclusions.php:116
|
371 |
msgid "Number of excluded hits"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: includes/log/exclusions.php:191 includes/log/hit-statistics.php:163
|
375 |
+
msgid "Hits Statistics Summary"
|
376 |
+
msgstr ""
|
377 |
+
|
378 |
+
#: includes/log/exclusions.php:197
|
379 |
+
#: includes/settings/tabs/wps-access-level.php:105 wp-statistics.php:341
|
380 |
+
#: wp-statistics.php:417
|
381 |
+
msgid "Exclusions"
|
382 |
+
msgstr ""
|
383 |
+
|
384 |
+
#: includes/log/exclusions.php:201 includes/log/hit-statistics.php:174
|
385 |
+
msgid "Chart Total"
|
386 |
+
msgstr ""
|
387 |
+
|
388 |
+
#: includes/log/exclusions.php:206 includes/log/hit-statistics.php:180
|
389 |
+
msgid "All Time Total"
|
390 |
+
msgstr ""
|
391 |
+
|
392 |
+
#: includes/log/hit-statistics.php:27
|
393 |
msgid "Hits Statistics Chart"
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: includes/log/hit-statistics.php:65 includes/log/widgets/hits.php:61
|
|
|
397 |
msgid "Hits in the last"
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: includes/log/hit-statistics.php:86 includes/log/widgets/hits.php:82
|
|
|
401 |
msgid "Number of visits and visitors"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: includes/log/hit-statistics.php:100 includes/log/hit-statistics.php:169
|
405 |
+
#: includes/log/widgets/hits.php:96 includes/log/widgets/summary.php:38
|
|
|
406 |
msgid "Visit"
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: includes/log/hit-statistics.php:100 includes/log/hit-statistics.php:170
|
410 |
+
#: includes/log/widgets/hits.php:96 includes/log/widgets/summary.php:37
|
|
|
411 |
msgid "Visitor"
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
415 |
+
#: includes/log/top-referring.php:29
|
416 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
|
|
|
|
417 |
msgid "All"
|
418 |
msgstr ""
|
419 |
|
420 |
+
#: includes/log/last-search.php:65
|
421 |
msgid "Latest Search Word Statistics"
|
422 |
msgstr ""
|
423 |
|
424 |
+
#: includes/log/last-search.php:100 includes/log/last-visitor.php:101
|
425 |
+
#: includes/log/online.php:50 includes/log/widgets/google.map.php:84
|
426 |
+
#: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
|
427 |
+
#: includes/log/widgets/words.php:36
|
|
|
|
|
|
|
428 |
msgid "#hash#"
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: includes/log/last-search.php:105 includes/log/last-visitor.php:106
|
432 |
+
#: includes/log/online.php:55 includes/log/top-referring.php:71
|
433 |
+
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:43
|
434 |
+
#: includes/settings/tabs/wps-overview-display.php:33
|
435 |
+
#: includes/settings/tabs/wps-overview-display.php:113
|
|
|
|
|
|
|
436 |
msgid "Map"
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: includes/log/last-search.php:142 includes/log/last-visitor.php:139
|
440 |
+
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
441 |
+
#: includes/log/top-referring.php:125
|
|
|
|
|
442 |
msgid "Page"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: includes/log/last-search.php:142 includes/log/last-visitor.php:139
|
446 |
+
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
447 |
+
#: includes/log/top-referring.php:125
|
|
|
|
|
448 |
msgid "From"
|
449 |
msgstr ""
|
450 |
|
451 |
+
#: includes/log/last-visitor.php:68
|
452 |
msgid "Recent Visitor Statistics"
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: includes/log/last-visitor.php:68
|
456 |
msgid "Filtered by"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: includes/log/log.php:57
|
460 |
+
msgid "Have you thought about donating to WP Statistics?"
|
461 |
+
msgstr ""
|
462 |
+
|
463 |
+
#: includes/log/log.php:57
|
464 |
+
msgid "Donate Now!"
|
465 |
+
msgstr ""
|
466 |
+
|
467 |
+
#: includes/log/log.php:57
|
468 |
+
msgid "Close"
|
469 |
+
msgstr ""
|
470 |
+
|
471 |
+
#: includes/log/online.php:11 includes/log/online.php:18
|
472 |
msgid "Online Users"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: includes/log/online.php:75
|
476 |
msgid "Online for "
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: includes/log/online.php:100
|
480 |
msgid "Currently there are no users online in the site."
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: includes/log/page-statistics.php:26
|
484 |
msgid "Page Trend for Post ID"
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: includes/log/page-statistics.php:35
|
488 |
msgid "Page Trend"
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: includes/log/search-statistics.php:19 includes/log/search-statistics.php:28
|
|
|
492 |
msgid "Search Engine Referral Statistics"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: includes/log/search-statistics.php:69 includes/log/widgets/search.php:59
|
|
|
496 |
msgid "Search engine referrals in the last"
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: includes/log/search-statistics.php:90 includes/log/widgets/search.php:80
|
|
|
500 |
msgid "Number of referrals"
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: includes/log/top-countries.php:18
|
504 |
msgid "Top Countries"
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: includes/log/top-countries.php:30 includes/log/widgets/countries.php:30
|
508 |
+
#: includes/log/widgets/top.visitors.php:30
|
|
|
509 |
msgid "Rank"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: includes/log/top-countries.php:31 includes/log/widgets/countries.php:31
|
513 |
+
#: includes/log/widgets/top.visitors.php:32
|
|
|
514 |
msgid "Flag"
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: includes/log/top-countries.php:32 includes/log/widgets/countries.php:32
|
518 |
+
#: includes/log/widgets/top.visitors.php:33
|
|
|
519 |
msgid "Country"
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: includes/log/top-countries.php:33 includes/log/widgets/countries.php:33
|
|
|
523 |
msgid "Visitor Count"
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: includes/log/top-pages.php:19 includes/log/top-pages.php:149
|
|
|
527 |
msgid "Top Pages"
|
528 |
msgstr ""
|
529 |
|
530 |
+
#: includes/log/top-pages.php:29
|
531 |
msgid "Top 5 Pages Trends"
|
532 |
msgstr ""
|
533 |
|
534 |
+
#: includes/log/top-pages.php:60
|
535 |
msgid "Top 5 Page Trending Stats"
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: includes/log/top-pages.php:81 includes/log/widgets/page.php:63
|
|
|
539 |
msgid "Number of Hits"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: includes/log/top-pages.php:95
|
543 |
msgid "Rank #1"
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: includes/log/top-pages.php:95
|
547 |
msgid "Rank #2"
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: includes/log/top-pages.php:95
|
551 |
msgid "Rank #3"
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: includes/log/top-pages.php:95
|
555 |
msgid "Rank #4"
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: includes/log/top-pages.php:95
|
559 |
msgid "Rank #5"
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: includes/log/top-pages.php:177 includes/log/widgets/pages.php:35
|
|
|
563 |
msgid "No page title found"
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
567 |
+
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
568 |
+
#: includes/settings/tabs/wps-general.php:122
|
569 |
+
#: includes/settings/tabs/wps-general.php:127 shortcode.php:130
|
|
|
570 |
msgid "Visits"
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: includes/log/top-referring.php:4
|
574 |
msgid "To be added soon"
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: includes/log/top-referring.php:40
|
578 |
msgid "Referring sites from"
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: includes/log/top-referring.php:110 includes/log/widgets/referring.php:34
|
|
|
582 |
msgid "References"
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: includes/log/top-visitors.php:12
|
586 |
msgid "Top 100 Visitors Today"
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: includes/log/widgets/about.php:8
|
|
|
590 |
msgid "About WP Statistics Version %s"
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: includes/log/widgets/about.php:25
|
594 |
msgid "Website"
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: includes/log/widgets/about.php:26
|
598 |
msgid "Rate and Review"
|
599 |
msgstr ""
|
600 |
|
601 |
+
#: includes/log/widgets/about.php:30
|
602 |
msgid "More Information"
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: includes/log/widgets/about.php:39 includes/settings/tabs/wps-about.php:12
|
|
|
|
|
606 |
msgid ""
|
607 |
"This product includes GeoLite2 data created by MaxMind, available from %s."
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
611 |
+
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
612 |
+
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:16
|
613 |
+
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
614 |
+
#: includes/log/widgets/words.php:11
|
|
|
|
|
|
|
|
|
615 |
msgid "More"
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: includes/log/widgets/browsers.php:51
|
619 |
msgid "Other"
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: includes/log/widgets/google.map.php:9 includes/log/widgets/jqv.map.php:9
|
|
|
623 |
msgid "Today Visitors Map"
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: includes/log/widgets/page.php:8
|
627 |
msgid "Page Trending Stats"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: includes/log/widgets/referring.php:35
|
631 |
msgid "Address"
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: includes/log/widgets/summary.php:26
|
635 |
msgid "User(s) Online"
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: includes/log/widgets/summary.php:42 includes/log/widgets/summary.php:94
|
|
|
639 |
msgid "Today"
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: includes/log/widgets/summary.php:48 includes/log/widgets/summary.php:95
|
|
|
643 |
msgid "Yesterday"
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: includes/log/widgets/summary.php:54
|
647 |
msgid "Last 7 Days (Week)"
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: includes/log/widgets/summary.php:60
|
651 |
msgid "Last 30 Days (Month)"
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: includes/log/widgets/summary.php:66
|
655 |
msgid "Last 365 Days (Year)"
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: includes/log/widgets/summary.php:113
|
659 |
msgid "Daily Total"
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: includes/log/widgets/summary.php:132
|
663 |
msgid "Current Time and Date"
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: includes/log/widgets/summary.php:132
|
667 |
msgid "(Adjustment)"
|
668 |
msgstr ""
|
669 |
|
670 |
+
#: includes/log/widgets/summary.php:136
|
|
|
671 |
msgid "Date: %s"
|
672 |
msgstr ""
|
673 |
|
674 |
+
#: includes/log/widgets/summary.php:140
|
|
|
675 |
msgid "Time: %s"
|
676 |
msgstr ""
|
677 |
|
678 |
+
#: includes/log/widgets/top.visitors.php:31
|
679 |
+
#: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:266
|
680 |
+
#: wp-statistics.php:342 wp-statistics.php:418
|
|
|
681 |
msgid "Hits"
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: includes/log/widgets/top.visitors.php:34
|
685 |
msgid "IP"
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: includes/log/widgets/top.visitors.php:36
|
689 |
msgid "Agent"
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: includes/log/widgets/top.visitors.php:38
|
693 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:291
|
694 |
msgid "Version"
|
695 |
msgstr ""
|
696 |
|
697 |
+
#: includes/optimization/tabs/wps-optimization-database.php:5
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
698 |
msgid "Database Setup"
|
699 |
msgstr ""
|
700 |
|
701 |
+
#: includes/optimization/tabs/wps-optimization-database.php:10
|
702 |
msgid "Re-run Install"
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: includes/optimization/tabs/wps-optimization-database.php:14
|
706 |
msgid "Install Now!"
|
707 |
msgstr ""
|
708 |
|
709 |
+
#: includes/optimization/tabs/wps-optimization-database.php:15
|
710 |
msgid ""
|
711 |
"If for some reason your installation of WP Statistics is missing the "
|
712 |
"database tables or other core items, this will re-execute the install "
|
713 |
"process."
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: includes/optimization/tabs/wps-optimization-database.php:20
|
717 |
msgid "Database Index"
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: includes/optimization/tabs/wps-optimization-database.php:25
|
721 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:21
|
722 |
+
#: wp-statistics.php:340 wp-statistics.php:416
|
|
|
723 |
msgid "Countries"
|
724 |
msgstr ""
|
725 |
|
726 |
+
#: includes/optimization/tabs/wps-optimization-database.php:39
|
727 |
+
#: includes/optimization/tabs/wps-optimization-database.php:69
|
728 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:25
|
729 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:40
|
730 |
msgid "Update Now!"
|
731 |
msgstr ""
|
732 |
|
733 |
+
#: includes/optimization/tabs/wps-optimization-database.php:40
|
734 |
msgid ""
|
735 |
"Older installs of WP Statistics allow for duplicate entries in the visitors "
|
736 |
"table in a corner case. Newer installs protect against this with a unique "
|
739 |
"vistitors table, delete duplicate entries and add the index."
|
740 |
msgstr ""
|
741 |
|
742 |
+
#: includes/optimization/tabs/wps-optimization-database.php:41
|
743 |
msgid ""
|
744 |
"This operation could take a long time on installs with many rows in the "
|
745 |
"visitors table."
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: includes/optimization/tabs/wps-optimization-database.php:46
|
749 |
msgid ""
|
750 |
"Older installs of WP Statistics allow for duplicate entries in the visitors "
|
751 |
"table in a corner case. Newer installs protect against this with a unique "
|
752 |
"index on the table."
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: includes/optimization/tabs/wps-optimization-database.php:47
|
756 |
+
#: includes/optimization/tabs/wps-optimization-database.php:77
|
757 |
msgid ""
|
758 |
"Congratulations, your installation is already up to date, nothing to do."
|
759 |
msgstr ""
|
760 |
|
761 |
+
#: includes/optimization/tabs/wps-optimization-database.php:56
|
762 |
msgid "Visits Table"
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: includes/optimization/tabs/wps-optimization-database.php:70
|
766 |
msgid ""
|
767 |
"Older installs of WP Statistics allow for duplicate entries in the visits "
|
768 |
"table in a corner case. Newer installs protect against this with a unique "
|
771 |
"vistits table, delete duplicate entries and add the index."
|
772 |
msgstr ""
|
773 |
|
774 |
+
#: includes/optimization/tabs/wps-optimization-database.php:71
|
775 |
msgid ""
|
776 |
"This operation could take a long time on installs with many rows in the "
|
777 |
"visits table."
|
778 |
msgstr ""
|
779 |
|
780 |
+
#: includes/optimization/tabs/wps-optimization-database.php:76
|
781 |
msgid ""
|
782 |
"Older installs of WP Statistics allow for duplicate entries in the visits "
|
783 |
"table in a corner case. Newer installs protect against this with a unique "
|
784 |
"index on the table."
|
785 |
msgstr ""
|
786 |
|
787 |
+
#: includes/optimization/tabs/wps-optimization-export.php:8
|
788 |
+
#: includes/optimization/wps-optimization.php:183
|
789 |
msgid "Export"
|
790 |
msgstr ""
|
791 |
|
792 |
+
#: includes/optimization/tabs/wps-optimization-export.php:13
|
793 |
msgid "Export from"
|
794 |
msgstr ""
|
795 |
|
796 |
+
#: includes/optimization/tabs/wps-optimization-export.php:18
|
797 |
+
#: includes/optimization/tabs/wps-optimization-export.php:36
|
798 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:185
|
799 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:241
|
800 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:265
|
801 |
+
#: includes/settings/tabs/wps-notifications.php:134
|
802 |
+
#: includes/settings/tabs/wps-notifications.php:164
|
803 |
msgid "Please select"
|
804 |
msgstr ""
|
805 |
|
806 |
+
#: includes/optimization/tabs/wps-optimization-export.php:25
|
807 |
msgid "Select the table for the output file."
|
808 |
msgstr ""
|
809 |
|
810 |
+
#: includes/optimization/tabs/wps-optimization-export.php:31
|
811 |
msgid "Export To"
|
812 |
msgstr ""
|
813 |
|
814 |
+
#: includes/optimization/tabs/wps-optimization-export.php:42
|
815 |
msgid "Select the output file type."
|
816 |
msgstr ""
|
817 |
|
818 |
+
#: includes/optimization/tabs/wps-optimization-export.php:48
|
819 |
msgid "Include Header Row"
|
820 |
msgstr ""
|
821 |
|
822 |
+
#: includes/optimization/tabs/wps-optimization-export.php:53
|
823 |
msgid "Include a header row as the first line of the exported file."
|
824 |
msgstr ""
|
825 |
|
826 |
+
#: includes/optimization/tabs/wps-optimization-export.php:54
|
827 |
msgid "Start Now!"
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: includes/optimization/tabs/wps-optimization-historical.php:15
|
831 |
msgid "Historical Values"
|
832 |
msgstr ""
|
833 |
|
834 |
+
#: includes/optimization/tabs/wps-optimization-historical.php:20
|
835 |
msgid ""
|
836 |
"Note: As you have just purged the database you must reload this page for "
|
837 |
"these numbers to be correct."
|
838 |
msgstr ""
|
839 |
|
840 |
+
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
841 |
+
#: includes/settings/tabs/wps-general.php:138
|
842 |
+
#: includes/settings/tabs/wps-general.php:143 shortcode.php:131
|
843 |
+
#: wp-statistics.php:349 wp-statistics.php:425
|
|
|
844 |
msgid "Visitors"
|
845 |
msgstr ""
|
846 |
|
847 |
+
#: includes/optimization/tabs/wps-optimization-historical.php:31
|
|
|
848 |
msgid ""
|
849 |
"Number of historical number of visitors to the site (current value is %s)."
|
850 |
msgstr ""
|
851 |
|
852 |
+
#: includes/optimization/tabs/wps-optimization-historical.php:42
|
|
|
853 |
msgid ""
|
854 |
"Number of historical number of visits to the site (current value is %s)."
|
855 |
msgstr ""
|
856 |
|
857 |
+
#: includes/optimization/tabs/wps-optimization-historical.php:48
|
858 |
msgid "Update now!"
|
859 |
msgstr ""
|
860 |
|
861 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:10
|
862 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:43
|
863 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:75
|
864 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:107
|
865 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:141
|
866 |
msgid "Are you sure?"
|
867 |
msgstr ""
|
868 |
|
869 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:175
|
870 |
msgid "Data"
|
871 |
msgstr ""
|
872 |
|
873 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:180
|
874 |
msgid "Empty Table"
|
875 |
msgstr ""
|
876 |
|
877 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:193
|
878 |
msgid "All data table will be lost."
|
879 |
msgstr ""
|
880 |
|
881 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:194
|
882 |
msgid "Clear now!"
|
883 |
msgstr ""
|
884 |
|
885 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:202
|
886 |
msgid "Purge records older than"
|
887 |
msgstr ""
|
888 |
|
889 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:208
|
890 |
msgid ""
|
891 |
"Deleted user statistics data older than the selected number of days. "
|
892 |
"Minimum value is 30 days."
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:209
|
896 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:224
|
897 |
msgid "Purge now!"
|
898 |
msgstr ""
|
899 |
|
900 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:217
|
901 |
+
msgid "Purge visitors with more than"
|
902 |
+
msgstr ""
|
903 |
+
|
904 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:222
|
905 |
+
msgid "hits"
|
906 |
+
msgstr ""
|
907 |
+
|
908 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:223
|
909 |
+
msgid ""
|
910 |
+
"Deleted user statistics data where the user has more than the defined number "
|
911 |
+
"of hits in a day. This can be useful to clear up old data when your site "
|
912 |
+
"has been hit by a bot. This will remove the visitor and their hits to the "
|
913 |
+
"site, however it will not remove individual page hits as that data is not "
|
914 |
+
"recorded on a per use basis. Minimum value is 10 hits."
|
915 |
+
msgstr ""
|
916 |
+
|
917 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:231
|
918 |
msgid "Delete User Agent Types"
|
919 |
msgstr ""
|
920 |
|
921 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:236
|
922 |
msgid "Delete Agents"
|
923 |
msgstr ""
|
924 |
|
925 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:251
|
926 |
msgid "All visitor data will be lost for this agent type."
|
927 |
msgstr ""
|
928 |
|
929 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:252
|
930 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:276
|
931 |
msgid "Delete now!"
|
932 |
msgstr ""
|
933 |
|
934 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:260
|
935 |
msgid "Delete Platforms"
|
936 |
msgstr ""
|
937 |
|
938 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:275
|
939 |
msgid "All visitor data will be lost for this platform type."
|
940 |
msgstr ""
|
941 |
|
942 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:17
|
943 |
msgid "Resources"
|
944 |
msgstr ""
|
945 |
|
946 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:22
|
947 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:27
|
948 |
msgid "Memory usage in PHP"
|
949 |
msgstr ""
|
950 |
|
951 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:26
|
952 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:37
|
953 |
msgid "Byte"
|
954 |
msgstr ""
|
955 |
|
956 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:33
|
957 |
msgid "Last Overview page memory usage"
|
958 |
msgstr ""
|
959 |
|
960 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:38
|
961 |
msgid "Memory usage in the overview page"
|
962 |
msgstr ""
|
963 |
|
964 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:44
|
965 |
msgid "PHP Memory Limit"
|
966 |
msgstr ""
|
967 |
|
968 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:49
|
969 |
msgid "The memory limit a script is allowed to consume, set in php.ini."
|
970 |
msgstr ""
|
971 |
|
972 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:55
|
973 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:66
|
974 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:77
|
975 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:88
|
976 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:99
|
977 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:110
|
|
|
978 |
msgid "Number of rows in the %s table"
|
979 |
msgstr ""
|
980 |
|
981 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:59
|
982 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:70
|
983 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:81
|
984 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:92
|
985 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:103
|
986 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:114
|
987 |
msgid "Row"
|
988 |
msgstr ""
|
989 |
|
990 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:60
|
991 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:71
|
992 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:82
|
993 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:93
|
994 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:104
|
995 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:115
|
996 |
msgid "Number of rows"
|
997 |
msgstr ""
|
998 |
|
999 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:120
|
1000 |
msgid "Version Info"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:125
|
1004 |
msgid "WP Statistics Version"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:130
|
1008 |
msgid "The WP Statistics version you are running."
|
1009 |
msgstr ""
|
1010 |
|
1011 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:136
|
1012 |
msgid "PHP Version"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:141
|
1016 |
msgid "The PHP version you are running."
|
1017 |
msgstr ""
|
1018 |
|
1019 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:147
|
1020 |
msgid "PHP Safe Mode"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:152
|
1024 |
msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
|
1025 |
msgstr ""
|
1026 |
|
1027 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:158
|
1028 |
msgid "jQuery Version"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:163
|
1032 |
msgid "The jQuery version you are running."
|
1033 |
msgstr ""
|
1034 |
|
1035 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:169
|
1036 |
msgid "cURL Version"
|
1037 |
msgstr ""
|
1038 |
|
1039 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:173
|
1040 |
msgid "cURL not installed"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:174
|
1044 |
msgid ""
|
1045 |
"The PHP cURL Extension version you are running. cURL is required for the "
|
1046 |
"GeoIP code, if it is not installed GeoIP will be disabled."
|
1047 |
msgstr ""
|
1048 |
|
1049 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:180
|
1050 |
msgid "BC Math"
|
1051 |
msgstr ""
|
1052 |
|
1053 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:184
|
1054 |
msgid "Installed"
|
1055 |
msgstr ""
|
1056 |
|
1057 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:184
|
1058 |
msgid "Not installed"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:185
|
1062 |
msgid ""
|
1063 |
"If the PHP BC Math Extension is installed. BC Math is no longer required "
|
1064 |
"for the GeoIP code and is listed here only for historical reasons."
|
1065 |
msgstr ""
|
1066 |
|
1067 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:190
|
1068 |
msgid "File Info"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:195
|
1072 |
msgid "GeoIP Database"
|
1073 |
msgstr ""
|
1074 |
|
1075 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:204
|
1076 |
msgid "Database file does not exist."
|
1077 |
msgstr ""
|
1078 |
|
1079 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:206
|
1080 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:225
|
1081 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:244
|
1082 |
msgid ", created on "
|
1083 |
msgstr ""
|
1084 |
|
1085 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:208
|
1086 |
msgid "The file size and date of the GeoIP database."
|
1087 |
msgstr ""
|
1088 |
|
1089 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:214
|
1090 |
msgid "browscap.ini File"
|
1091 |
msgstr ""
|
1092 |
|
1093 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:223
|
1094 |
msgid "browscap.ini file does not exist."
|
1095 |
msgstr ""
|
1096 |
|
1097 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:227
|
1098 |
msgid "The file size and date of the browscap.ini file."
|
1099 |
msgstr ""
|
1100 |
|
1101 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:233
|
1102 |
msgid "browscap Cache File"
|
1103 |
msgstr ""
|
1104 |
|
1105 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:242
|
1106 |
msgid "browscap cache file does not exist."
|
1107 |
msgstr ""
|
1108 |
|
1109 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:246
|
1110 |
msgid "The file size and date of the browscap cache file."
|
1111 |
msgstr ""
|
1112 |
|
1113 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:251
|
1114 |
msgid "Client Info"
|
1115 |
msgstr ""
|
1116 |
|
1117 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:256
|
1118 |
msgid "Client IP"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:261
|
1122 |
msgid "The client IP address."
|
1123 |
msgstr ""
|
1124 |
|
1125 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:267
|
1126 |
msgid "User Agent"
|
1127 |
msgstr ""
|
1128 |
|
1129 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:272
|
1130 |
msgid "The client user agent string."
|
1131 |
msgstr ""
|
1132 |
|
1133 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:278
|
1134 |
msgid "Browser"
|
1135 |
msgstr ""
|
1136 |
|
1137 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:285
|
1138 |
msgid "The detected client browser."
|
1139 |
msgstr ""
|
1140 |
|
1141 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:296
|
1142 |
msgid "The detected client browser version."
|
1143 |
msgstr ""
|
1144 |
|
1145 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:307
|
1146 |
msgid "The detected client platform."
|
1147 |
msgstr ""
|
1148 |
|
1149 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:4
|
1150 |
msgid ""
|
1151 |
"This will replace all IP addresses in the database with hash values and "
|
1152 |
"cannot be undo, are you sure?"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:16
|
1156 |
msgid "GeoIP Options"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:26
|
1160 |
msgid ""
|
1161 |
"Updates any unknown location data in the database, this may take a while"
|
1162 |
msgstr ""
|
1163 |
|
1164 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:31
|
1165 |
+
#: includes/settings/tabs/wps-general.php:66
|
1166 |
msgid "IP Addresses"
|
1167 |
msgstr ""
|
1168 |
|
1169 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:36
|
1170 |
+
#: includes/settings/tabs/wps-general.php:71
|
1171 |
msgid "Hash IP Addresses"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:41
|
1175 |
msgid ""
|
1176 |
"Replace IP addresses in the database with hash values, you will not be able "
|
1177 |
"to recover the IP addresses in the future to populate location information "
|
1178 |
"afterwards and this may take a while"
|
1179 |
msgstr ""
|
1180 |
|
1181 |
+
#: includes/optimization/wps-optimization.php:43
|
1182 |
msgid "IP Addresses replaced with hash values."
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: includes/optimization/wps-optimization.php:51
|
1186 |
msgid "Install routine complete."
|
1187 |
msgstr ""
|
1188 |
|
1189 |
+
#: includes/optimization/wps-optimization.php:182
|
1190 |
msgid "Resources/Information"
|
1191 |
msgstr ""
|
1192 |
|
1193 |
+
#: includes/optimization/wps-optimization.php:184
|
1194 |
msgid "Purging"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
+
#: includes/optimization/wps-optimization.php:185
|
1198 |
msgid "Database"
|
1199 |
msgstr ""
|
1200 |
|
1201 |
+
#: includes/optimization/wps-optimization.php:186
|
1202 |
msgid "Updates"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
+
#: includes/optimization/wps-optimization.php:187
|
1206 |
msgid "Historical"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
+
#: includes/settings/tabs/wps-about.php:8
|
|
|
1210 |
msgid "WP Statistics V%s"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
+
#: includes/settings/tabs/wps-about.php:20 wp-statistics.php:355
|
1214 |
+
msgid "Donate"
|
1215 |
+
msgstr ""
|
1216 |
+
|
1217 |
+
#: includes/settings/tabs/wps-about.php:24
|
1218 |
+
msgid ""
|
1219 |
+
"Fell like showing us how much you enjoy WP Statistics? Drop by our %s page "
|
1220 |
+
"and show us some love!"
|
1221 |
+
msgstr ""
|
1222 |
+
|
1223 |
+
#: includes/settings/tabs/wps-about.php:24
|
1224 |
+
msgid "donation"
|
1225 |
+
msgstr ""
|
1226 |
+
|
1227 |
+
#: includes/settings/tabs/wps-about.php:28
|
1228 |
msgid "Visit Us Online"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
+
#: includes/settings/tabs/wps-about.php:32
|
|
|
1232 |
msgid ""
|
1233 |
"Come visit our great new %s and keep up to date on the latest news about WP "
|
1234 |
"Statistics."
|
1235 |
msgstr ""
|
1236 |
|
1237 |
+
#: includes/settings/tabs/wps-about.php:32
|
1238 |
msgid "website"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
+
#: includes/settings/tabs/wps-about.php:36
|
1242 |
msgid "Rate and Review at WordPress.org"
|
1243 |
msgstr ""
|
1244 |
|
1245 |
+
#: includes/settings/tabs/wps-about.php:40
|
1246 |
msgid "Thanks for installing WP Statistics, we encourage you to submit a "
|
1247 |
msgstr ""
|
1248 |
|
1249 |
+
#: includes/settings/tabs/wps-about.php:40
|
1250 |
msgid "rating and review"
|
1251 |
msgstr ""
|
1252 |
|
1253 |
+
#: includes/settings/tabs/wps-about.php:40
|
1254 |
msgid "over at WordPress.org. Your feedback is greatly appreciated!"
|
1255 |
msgstr ""
|
1256 |
|
1257 |
+
#: includes/settings/tabs/wps-about.php:44
|
1258 |
msgid "Translations"
|
1259 |
msgstr ""
|
1260 |
|
1261 |
+
#: includes/settings/tabs/wps-about.php:48
|
|
|
1262 |
msgid ""
|
1263 |
"WP Statistics supports internationalization and we encourage our users to "
|
1264 |
"submit translations, please visit our %s to see the current status and %s if "
|
1265 |
"you would like to help."
|
1266 |
msgstr ""
|
1267 |
|
1268 |
+
#: includes/settings/tabs/wps-about.php:48
|
1269 |
msgid "translation collaboration site"
|
1270 |
msgstr ""
|
1271 |
|
1272 |
+
#: includes/settings/tabs/wps-about.php:48
|
1273 |
msgid "drop us a line"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
+
#: includes/settings/tabs/wps-about.php:52
|
1277 |
msgid "Support"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
+
#: includes/settings/tabs/wps-about.php:57
|
1281 |
msgid ""
|
1282 |
"We're sorry you're having problem with WP Statistics and we're happy to help "
|
1283 |
"out. Here are a few things to do before contacting us:"
|
1284 |
msgstr ""
|
1285 |
|
1286 |
+
#: includes/settings/tabs/wps-about.php:60
|
1287 |
+
#: includes/settings/tabs/wps-about.php:61
|
|
|
1288 |
msgid "Have you read the %s?"
|
1289 |
msgstr ""
|
1290 |
|
1291 |
+
#: includes/settings/tabs/wps-about.php:60
|
1292 |
msgid "FAQs"
|
1293 |
msgstr ""
|
1294 |
|
1295 |
+
#: includes/settings/tabs/wps-about.php:61
|
1296 |
msgid "manual"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: includes/settings/tabs/wps-about.php:62
|
|
|
1300 |
msgid "Have you search the %s for a similar issue?"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
+
#: includes/settings/tabs/wps-about.php:62
|
1304 |
msgid "support forum"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
+
#: includes/settings/tabs/wps-about.php:63
|
1308 |
msgid "Have you search the Internet for any error messages you are receiving?"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
+
#: includes/settings/tabs/wps-about.php:64
|
1312 |
msgid "Make sure you have access to your PHP error logs."
|
1313 |
msgstr ""
|
1314 |
|
1315 |
+
#: includes/settings/tabs/wps-about.php:67
|
1316 |
msgid "And a few things to double-check:"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
+
#: includes/settings/tabs/wps-about.php:70
|
1320 |
msgid "How's your memory_limit in php.ini?"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
+
#: includes/settings/tabs/wps-about.php:71
|
1324 |
msgid "Have you tried disabling any other plugins you may have installed?"
|
1325 |
msgstr ""
|
1326 |
|
1327 |
+
#: includes/settings/tabs/wps-about.php:72
|
1328 |
msgid "Have you tried using the default WordPress theme?"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
+
#: includes/settings/tabs/wps-about.php:73
|
1332 |
msgid "Have you double checked the plugin settings?"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
+
#: includes/settings/tabs/wps-about.php:74
|
1336 |
msgid "Do you have all the required PHP extensions installed?"
|
1337 |
msgstr ""
|
1338 |
|
1339 |
+
#: includes/settings/tabs/wps-about.php:75
|
1340 |
msgid ""
|
1341 |
"Are you getting a blank or incomplete page displayed in your browser? Did "
|
1342 |
"you view the source for the page and check for any fatal errors?"
|
1343 |
msgstr ""
|
1344 |
|
1345 |
+
#: includes/settings/tabs/wps-about.php:76
|
1346 |
msgid "Have you checked your PHP and web server error logs?"
|
1347 |
msgstr ""
|
1348 |
|
1349 |
+
#: includes/settings/tabs/wps-about.php:79
|
1350 |
msgid "Still not having any luck?"
|
1351 |
msgstr ""
|
1352 |
|
1353 |
+
#: includes/settings/tabs/wps-about.php:79
|
|
|
1354 |
msgid ""
|
1355 |
"Then please open a new thread on the %s and we'll respond as soon as "
|
1356 |
"possible."
|
1357 |
msgstr ""
|
1358 |
|
1359 |
+
#: includes/settings/tabs/wps-about.php:79
|
1360 |
msgid "WordPress.org support forum"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
+
#: includes/settings/tabs/wps-about.php:83
|
|
|
1364 |
msgid "Alternatively %s support is available as well."
|
1365 |
msgstr ""
|
1366 |
|
1367 |
+
#: includes/settings/tabs/wps-about.php:83
|
1368 |
msgid "Farsi"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
+
#: includes/settings/tabs/wps-access-level.php:21
|
1372 |
msgid "WP Statistics Honey Pot Page"
|
1373 |
msgstr ""
|
1374 |
|
1375 |
+
#: includes/settings/tabs/wps-access-level.php:22
|
1376 |
msgid "This is the honey pot for WP Statistics to use, do not delete."
|
1377 |
msgstr ""
|
1378 |
|
1379 |
+
#: includes/settings/tabs/wps-access-level.php:45
|
1380 |
msgid "Access Levels"
|
1381 |
msgstr ""
|
1382 |
|
1383 |
+
#: includes/settings/tabs/wps-access-level.php:74
|
1384 |
msgid "Required user level to view WP Statistics"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
+
#: includes/settings/tabs/wps-access-level.php:89
|
1388 |
msgid "Required user level to manage WP Statistics"
|
1389 |
msgstr ""
|
1390 |
|
1391 |
+
#: includes/settings/tabs/wps-access-level.php:97
|
|
|
1392 |
msgid "See the %s for details on capability levels."
|
1393 |
msgstr ""
|
1394 |
|
1395 |
+
#: includes/settings/tabs/wps-access-level.php:97
|
1396 |
msgid "WordPress Roles and Capabilities page"
|
1397 |
msgstr ""
|
1398 |
|
1399 |
+
#: includes/settings/tabs/wps-access-level.php:98
|
1400 |
msgid ""
|
1401 |
"Hint: manage_network = Super Admin Network, manage_options = Administrator, "
|
1402 |
"edit_others_posts = Editor, publish_posts = Author, edit_posts = "
|
1403 |
"Contributor, read = Everyone."
|
1404 |
msgstr ""
|
1405 |
|
1406 |
+
#: includes/settings/tabs/wps-access-level.php:99
|
1407 |
msgid ""
|
1408 |
"Each of the above casscades the rights upwards in the default WordPress "
|
1409 |
"configuration. So for example selecting publish_posts grants the right to "
|
1410 |
"Authors, Editors, Admins and Super Admins."
|
1411 |
msgstr ""
|
1412 |
|
1413 |
+
#: includes/settings/tabs/wps-access-level.php:100
|
|
|
1414 |
msgid ""
|
1415 |
"If you need a more robust solution to delegate access you might want to look "
|
1416 |
"at %s in the WordPress plugin directory."
|
1417 |
msgstr ""
|
1418 |
|
1419 |
+
#: includes/settings/tabs/wps-access-level.php:109
|
|
|
|
|
|
|
|
|
|
|
|
|
1420 |
msgid "Record exclusions"
|
1421 |
msgstr ""
|
1422 |
|
1423 |
+
#: includes/settings/tabs/wps-access-level.php:111
|
1424 |
+
#: includes/settings/tabs/wps-access-level.php:165
|
1425 |
+
#: includes/settings/tabs/wps-access-level.php:192
|
1426 |
msgid "Enable"
|
1427 |
msgstr ""
|
1428 |
|
1429 |
+
#: includes/settings/tabs/wps-access-level.php:112
|
1430 |
msgid ""
|
1431 |
"This will record all the excluded hits in a separate table with the reasons "
|
1432 |
"why it was excluded but no other information. This will generate a lot of "
|
1434 |
"gets, not just actual user visits."
|
1435 |
msgstr ""
|
1436 |
|
1437 |
+
#: includes/settings/tabs/wps-access-level.php:117
|
1438 |
msgid "Exclude User Roles"
|
1439 |
msgstr ""
|
1440 |
|
1441 |
+
#: includes/settings/tabs/wps-access-level.php:133
|
1442 |
+
#: includes/settings/tabs/wps-access-level.php:247
|
1443 |
+
#: includes/settings/tabs/wps-access-level.php:254
|
1444 |
+
#: includes/settings/tabs/wps-access-level.php:261
|
1445 |
msgid "Exclude"
|
1446 |
msgstr ""
|
1447 |
|
1448 |
+
#: includes/settings/tabs/wps-access-level.php:134
|
|
|
1449 |
msgid "Exclude %s role from data collection."
|
1450 |
msgstr ""
|
1451 |
|
1452 |
+
#: includes/settings/tabs/wps-access-level.php:140
|
1453 |
msgid "IP/Robot Exclusions"
|
1454 |
msgstr ""
|
1455 |
|
1456 |
+
#: includes/settings/tabs/wps-access-level.php:144
|
1457 |
msgid "Robot list"
|
1458 |
msgstr ""
|
1459 |
|
1460 |
+
#: includes/settings/tabs/wps-access-level.php:157
|
1461 |
msgid ""
|
1462 |
"A list of words (one per line) to match against to detect robots. Entries "
|
1463 |
"must be at least 4 characters long or they will be ignored."
|
1464 |
msgstr ""
|
1465 |
|
1466 |
+
#: includes/settings/tabs/wps-access-level.php:158
|
1467 |
msgid "Reset to Default"
|
1468 |
msgstr ""
|
1469 |
|
1470 |
+
#: includes/settings/tabs/wps-access-level.php:163
|
1471 |
msgid "Force robot list update after upgrades"
|
1472 |
msgstr ""
|
1473 |
|
1474 |
+
#: includes/settings/tabs/wps-access-level.php:166
|
1475 |
msgid ""
|
1476 |
"Force the robot list to be reset to the default after an update to WP "
|
1477 |
"Statistics takes place. Note if this option is enabled any custom robots "
|
1478 |
"you have added to the list will be lost."
|
1479 |
msgstr ""
|
1480 |
|
1481 |
+
#: includes/settings/tabs/wps-access-level.php:171
|
1482 |
msgid "Robot visit threshold"
|
1483 |
msgstr ""
|
1484 |
|
1485 |
+
#: includes/settings/tabs/wps-access-level.php:174
|
1486 |
msgid ""
|
1487 |
"Treat visitors with more than this number of visits per day as robots. 0 = "
|
1488 |
"disabled."
|
1489 |
msgstr ""
|
1490 |
|
1491 |
+
#: includes/settings/tabs/wps-access-level.php:179
|
1492 |
msgid "Excluded IP address list"
|
1493 |
msgstr ""
|
1494 |
|
1495 |
+
#: includes/settings/tabs/wps-access-level.php:182
|
1496 |
msgid ""
|
1497 |
"A list of IP addresses and subnet masks (one per line) to exclude from "
|
1498 |
"statistics collection (both 192.168.0.0/24 and 192.168.0.0/255.255.255.0 "
|
1500 |
"32 or 255.255.255.255."
|
1501 |
msgstr ""
|
1502 |
|
1503 |
+
#: includes/settings/tabs/wps-access-level.php:183
|
1504 |
msgid "Add 10.0.0.0"
|
1505 |
msgstr ""
|
1506 |
|
1507 |
+
#: includes/settings/tabs/wps-access-level.php:184
|
1508 |
msgid "Add 172.16.0.0"
|
1509 |
msgstr ""
|
1510 |
|
1511 |
+
#: includes/settings/tabs/wps-access-level.php:185
|
1512 |
msgid "Add 192.168.0.0"
|
1513 |
msgstr ""
|
1514 |
|
1515 |
+
#: includes/settings/tabs/wps-access-level.php:190
|
1516 |
msgid "Use honey pot"
|
1517 |
msgstr ""
|
1518 |
|
1519 |
+
#: includes/settings/tabs/wps-access-level.php:193
|
1520 |
msgid "Use a honey pot page to identify robots."
|
1521 |
msgstr ""
|
1522 |
|
1523 |
+
#: includes/settings/tabs/wps-access-level.php:198
|
1524 |
msgid "Honey pot post id"
|
1525 |
msgstr ""
|
1526 |
|
1527 |
+
#: includes/settings/tabs/wps-access-level.php:201
|
1528 |
msgid "The post id to use for the honeypot page."
|
1529 |
msgstr ""
|
1530 |
|
1531 |
+
#: includes/settings/tabs/wps-access-level.php:202
|
1532 |
msgid "Create a new honey pot page"
|
1533 |
msgstr ""
|
1534 |
|
1535 |
+
#: includes/settings/tabs/wps-access-level.php:207
|
1536 |
msgid "GeoIP Exclusions"
|
1537 |
msgstr ""
|
1538 |
|
1539 |
+
#: includes/settings/tabs/wps-access-level.php:211
|
1540 |
msgid "Excluded countries list"
|
1541 |
msgstr ""
|
1542 |
|
1543 |
+
#: includes/settings/tabs/wps-access-level.php:214
|
1544 |
msgid ""
|
1545 |
"A list of country codes (one per line, two letters each) to exclude from "
|
1546 |
"statistics collection. Use \"000\" (three zeros) to exclude unknown "
|
1547 |
"countries."
|
1548 |
msgstr ""
|
1549 |
|
1550 |
+
#: includes/settings/tabs/wps-access-level.php:219
|
1551 |
msgid "Included countries list"
|
1552 |
msgstr ""
|
1553 |
|
1554 |
+
#: includes/settings/tabs/wps-access-level.php:222
|
1555 |
msgid ""
|
1556 |
"A list of country codes (one per line, two letters each) to include in "
|
1557 |
"statistics collection, if this list is not empty, only visitors from the "
|
1559 |
"unknown countries."
|
1560 |
msgstr ""
|
1561 |
|
1562 |
+
#: includes/settings/tabs/wps-access-level.php:227
|
1563 |
msgid "Host Exclusions"
|
1564 |
msgstr ""
|
1565 |
|
1566 |
+
#: includes/settings/tabs/wps-access-level.php:231
|
1567 |
msgid "Excluded hosts list"
|
1568 |
msgstr ""
|
1569 |
|
1570 |
+
#: includes/settings/tabs/wps-access-level.php:234
|
1571 |
msgid ""
|
1572 |
"A list of fully qualified host names (ie. server.example.com, one per line) "
|
1573 |
"to exclude from statistics collection."
|
1574 |
msgstr ""
|
1575 |
|
1576 |
+
#: includes/settings/tabs/wps-access-level.php:236
|
1577 |
msgid ""
|
1578 |
"Note: this option will NOT perform a reverse DNS lookup on each page load "
|
1579 |
"but instead cache the IP address for the provided hostnames for one hour. "
|
1582 |
"resulting in some hits recorded."
|
1583 |
msgstr ""
|
1584 |
|
1585 |
+
#: includes/settings/tabs/wps-access-level.php:241
|
1586 |
msgid "Site URL Exclusions"
|
1587 |
msgstr ""
|
1588 |
|
1589 |
+
#: includes/settings/tabs/wps-access-level.php:245
|
1590 |
msgid "Excluded login page"
|
1591 |
msgstr ""
|
1592 |
|
1593 |
+
#: includes/settings/tabs/wps-access-level.php:248
|
1594 |
msgid "Exclude the login page for registering as a hit."
|
1595 |
msgstr ""
|
1596 |
|
1597 |
+
#: includes/settings/tabs/wps-access-level.php:252
|
1598 |
msgid "Excluded admin pages"
|
1599 |
msgstr ""
|
1600 |
|
1601 |
+
#: includes/settings/tabs/wps-access-level.php:255
|
1602 |
msgid "Exclude the admin pages for registering as a hit."
|
1603 |
msgstr ""
|
1604 |
|
1605 |
+
#: includes/settings/tabs/wps-access-level.php:259
|
1606 |
msgid "Excluded RSS feeds"
|
1607 |
msgstr ""
|
1608 |
|
1609 |
+
#: includes/settings/tabs/wps-access-level.php:262
|
1610 |
msgid "Exclude the RSS feeds for registering as a hit."
|
1611 |
msgstr ""
|
1612 |
|
1613 |
+
#: includes/settings/tabs/wps-access-level.php:266
|
1614 |
msgid "Excluded URLs list"
|
1615 |
msgstr ""
|
1616 |
|
1617 |
+
#: includes/settings/tabs/wps-access-level.php:269
|
1618 |
msgid ""
|
1619 |
"A list of local urls (ie. /wordpress/about, one per line) to exclude from "
|
1620 |
"statistics collection."
|
1621 |
msgstr ""
|
1622 |
|
1623 |
+
#: includes/settings/tabs/wps-access-level.php:271
|
1624 |
msgid ""
|
1625 |
"Note: this option will NOT handle url parameters (anything after the ?), "
|
1626 |
"only to the script name. Entries less than two characters will be ignored."
|
1627 |
msgstr ""
|
1628 |
|
1629 |
+
#: includes/settings/tabs/wps-access-level.php:278
|
1630 |
+
#: includes/settings/tabs/wps-browscap.php:81
|
1631 |
+
#: includes/settings/tabs/wps-general.php:349
|
1632 |
+
#: includes/settings/tabs/wps-geoip.php:158
|
1633 |
+
#: includes/settings/tabs/wps-maintenance.php:84
|
1634 |
+
#: includes/settings/tabs/wps-notifications.php:201
|
1635 |
+
#: includes/settings/tabs/wps-overview-display.php:388
|
1636 |
+
#: includes/settings/tabs/wps-removal.php:42
|
1637 |
msgid "Update"
|
1638 |
msgstr ""
|
1639 |
|
1640 |
+
#: includes/settings/tabs/wps-browscap.php:22
|
1641 |
msgid "browscap settings"
|
1642 |
msgstr ""
|
1643 |
|
1644 |
+
#: includes/settings/tabs/wps-browscap.php:27
|
1645 |
msgid "browscap usage"
|
1646 |
msgstr ""
|
1647 |
|
1648 |
+
#: includes/settings/tabs/wps-browscap.php:32
|
1649 |
+
#: includes/settings/tabs/wps-browscap.php:56
|
1650 |
+
#: includes/settings/tabs/wps-general.php:76
|
1651 |
+
#: includes/settings/tabs/wps-general.php:92
|
1652 |
+
#: includes/settings/tabs/wps-general.php:116
|
1653 |
+
#: includes/settings/tabs/wps-general.php:132
|
1654 |
+
#: includes/settings/tabs/wps-general.php:148
|
1655 |
+
#: includes/settings/tabs/wps-general.php:160
|
1656 |
+
#: includes/settings/tabs/wps-general.php:187
|
1657 |
+
#: includes/settings/tabs/wps-general.php:199
|
1658 |
+
#: includes/settings/tabs/wps-general.php:214
|
1659 |
+
#: includes/settings/tabs/wps-general.php:228
|
1660 |
+
#: includes/settings/tabs/wps-general.php:258
|
1661 |
+
#: includes/settings/tabs/wps-general.php:270
|
1662 |
+
#: includes/settings/tabs/wps-general.php:286
|
1663 |
+
#: includes/settings/tabs/wps-general.php:325
|
1664 |
+
#: includes/settings/tabs/wps-general.php:341
|
1665 |
+
#: includes/settings/tabs/wps-geoip.php:47
|
1666 |
+
#: includes/settings/tabs/wps-geoip.php:71
|
1667 |
+
#: includes/settings/tabs/wps-geoip.php:104
|
1668 |
+
#: includes/settings/tabs/wps-maintenance.php:40
|
1669 |
+
#: includes/settings/tabs/wps-maintenance.php:64
|
1670 |
+
#: includes/settings/tabs/wps-notifications.php:69
|
1671 |
+
#: includes/settings/tabs/wps-notifications.php:81
|
1672 |
+
#: includes/settings/tabs/wps-notifications.php:93
|
1673 |
+
#: includes/settings/tabs/wps-notifications.php:105
|
1674 |
+
#: includes/settings/tabs/wps-notifications.php:121
|
1675 |
+
#: includes/settings/tabs/wps-overview-display.php:87
|
1676 |
+
#: includes/settings/tabs/wps-overview-display.php:107
|
1677 |
+
#: includes/settings/tabs/wps-overview-display.php:147
|
1678 |
+
#: includes/settings/tabs/wps-overview-display.php:159
|
1679 |
msgid "Active"
|
1680 |
msgstr ""
|
1681 |
|
1682 |
+
#: includes/settings/tabs/wps-browscap.php:33
|
1683 |
msgid "The browscap database will be downloaded and used to detect robots."
|
1684 |
msgstr ""
|
1685 |
|
1686 |
+
#: includes/settings/tabs/wps-browscap.php:39
|
1687 |
msgid "Update browscap Info"
|
1688 |
msgstr ""
|
1689 |
|
1690 |
+
#: includes/settings/tabs/wps-browscap.php:44
|
1691 |
msgid "Download browscap Database"
|
1692 |
msgstr ""
|
1693 |
|
1694 |
+
#: includes/settings/tabs/wps-browscap.php:45
|
1695 |
+
#: includes/settings/tabs/wps-geoip.php:60
|
1696 |
msgid "Save changes on this page to download the update."
|
1697 |
msgstr ""
|
1698 |
|
1699 |
+
#: includes/settings/tabs/wps-browscap.php:51
|
1700 |
msgid "Schedule weekly update of browscap DB"
|
1701 |
msgstr ""
|
1702 |
|
1703 |
+
#: includes/settings/tabs/wps-browscap.php:59
|
1704 |
+
#: includes/settings/tabs/wps-geoip.php:74
|
1705 |
msgid "Next update will be"
|
1706 |
msgstr ""
|
1707 |
|
1708 |
+
#: includes/settings/tabs/wps-browscap.php:74
|
1709 |
msgid "Download of the browscap database will be scheduled for once a week."
|
1710 |
msgstr ""
|
1711 |
|
1712 |
+
#: includes/settings/tabs/wps-general.php:50
|
1713 |
msgid "This will delete the manual when you save the settings, are you sure?"
|
1714 |
msgstr ""
|
1715 |
|
1716 |
+
#: includes/settings/tabs/wps-general.php:77
|
1717 |
msgid ""
|
1718 |
"This feature will not store IP addresses in the database but instead used a "
|
1719 |
"unique hash. The \"Store entire user agent string\" setting will be "
|
1721 |
"addresses in the future to recover location information if this is enabled."
|
1722 |
msgstr ""
|
1723 |
|
1724 |
+
#: includes/settings/tabs/wps-general.php:82 shortcode.php:129
|
1725 |
msgid "Users Online"
|
1726 |
msgstr ""
|
1727 |
|
1728 |
+
#: includes/settings/tabs/wps-general.php:87
|
1729 |
msgid "User online"
|
1730 |
msgstr ""
|
1731 |
|
1732 |
+
#: includes/settings/tabs/wps-general.php:93
|
1733 |
+
#: includes/settings/tabs/wps-general.php:133
|
1734 |
+
#: includes/settings/tabs/wps-general.php:149
|
1735 |
+
#: includes/settings/tabs/wps-general.php:188
|
1736 |
+
#: includes/settings/tabs/wps-general.php:200
|
1737 |
+
#: includes/settings/tabs/wps-general.php:229
|
1738 |
+
#: includes/settings/tabs/wps-notifications.php:122
|
1739 |
msgid "Enable or disable this feature"
|
1740 |
msgstr ""
|
1741 |
|
1742 |
+
#: includes/settings/tabs/wps-general.php:99
|
1743 |
msgid "Check for online users every"
|
1744 |
msgstr ""
|
1745 |
|
1746 |
+
#: includes/settings/tabs/wps-general.php:104
|
1747 |
msgid "Second"
|
1748 |
msgstr ""
|
1749 |
|
1750 |
+
#: includes/settings/tabs/wps-general.php:105
|
|
|
1751 |
msgid "Time for the check accurate online user in the site. Now: %s Second"
|
1752 |
msgstr ""
|
1753 |
|
1754 |
+
#: includes/settings/tabs/wps-general.php:111
|
1755 |
msgid "Record all user"
|
1756 |
msgstr ""
|
1757 |
|
1758 |
+
#: includes/settings/tabs/wps-general.php:117
|
1759 |
msgid ""
|
1760 |
"Ignores the exclusion settings and records all users that are online "
|
1761 |
"(including self referrals and robots). Should only be used for "
|
1762 |
"troubleshooting."
|
1763 |
msgstr ""
|
1764 |
|
1765 |
+
#: includes/settings/tabs/wps-general.php:155
|
1766 |
msgid "Store entire user agent string"
|
1767 |
msgstr ""
|
1768 |
|
1769 |
+
#: includes/settings/tabs/wps-general.php:161
|
1770 |
msgid "Only enabled for debugging"
|
1771 |
msgstr ""
|
1772 |
|
1773 |
+
#: includes/settings/tabs/wps-general.php:167
|
1774 |
msgid "Coefficient per visitor"
|
1775 |
msgstr ""
|
1776 |
|
1777 |
+
#: includes/settings/tabs/wps-general.php:172
|
|
|
1778 |
msgid "For each visit to account for several hits. Currently %s."
|
1779 |
msgstr ""
|
1780 |
|
1781 |
+
#: includes/settings/tabs/wps-general.php:177
|
1782 |
+
#: includes/settings/tabs/wps-general.php:182 wp-statistics.php:344
|
1783 |
+
#: wp-statistics.php:420
|
|
|
1784 |
msgid "Pages"
|
1785 |
msgstr ""
|
1786 |
|
1787 |
+
#: includes/settings/tabs/wps-general.php:194
|
1788 |
msgid "Track all pages"
|
1789 |
msgstr ""
|
1790 |
|
1791 |
+
#: includes/settings/tabs/wps-general.php:209
|
1792 |
msgid "Strip parameters from URI"
|
1793 |
msgstr ""
|
1794 |
|
1795 |
+
#: includes/settings/tabs/wps-general.php:215
|
1796 |
msgid "This will remove anything after the ? in a URL."
|
1797 |
msgstr ""
|
1798 |
|
1799 |
+
#: includes/settings/tabs/wps-general.php:223
|
1800 |
msgid "Disable hits column in post/pages list"
|
1801 |
msgstr ""
|
1802 |
|
1803 |
+
#: includes/settings/tabs/wps-general.php:234
|
1804 |
msgid "Miscellaneous"
|
1805 |
msgstr ""
|
1806 |
|
1807 |
+
#: includes/settings/tabs/wps-general.php:239
|
1808 |
msgid "Show stats in menu bar"
|
1809 |
msgstr ""
|
1810 |
|
1811 |
+
#: includes/settings/tabs/wps-general.php:244
|
1812 |
msgid "No"
|
1813 |
msgstr ""
|
1814 |
|
1815 |
+
#: includes/settings/tabs/wps-general.php:245
|
1816 |
msgid "Yes"
|
1817 |
msgstr ""
|
1818 |
|
1819 |
+
#: includes/settings/tabs/wps-general.php:247
|
1820 |
msgid "Show stats in admin menu bar"
|
1821 |
msgstr ""
|
1822 |
|
1823 |
+
#: includes/settings/tabs/wps-general.php:253
|
1824 |
msgid "Hide admin notices about non active features"
|
1825 |
msgstr ""
|
1826 |
|
1827 |
+
#: includes/settings/tabs/wps-general.php:259
|
1828 |
msgid ""
|
1829 |
"By default WP Statistics displays an alert if any of the core features are "
|
1830 |
"disabled on every admin page, this option will disable these notices."
|
1831 |
msgstr ""
|
1832 |
|
1833 |
+
#: includes/settings/tabs/wps-general.php:265
|
1834 |
msgid "Delete the manual"
|
1835 |
msgstr ""
|
1836 |
|
1837 |
+
#: includes/settings/tabs/wps-general.php:271
|
1838 |
msgid ""
|
1839 |
"By default WP Statistics stores the admin manual in the plugin directory (~5 "
|
1840 |
"meg), if this option is enabled it will be deleted now and during upgrades "
|
1841 |
"in the future."
|
1842 |
msgstr ""
|
1843 |
|
1844 |
+
#: includes/settings/tabs/wps-general.php:276
|
1845 |
msgid "Search Engines"
|
1846 |
msgstr ""
|
1847 |
|
1848 |
+
#: includes/settings/tabs/wps-general.php:281
|
1849 |
+
msgid "Add page title to empty search words"
|
1850 |
+
msgstr ""
|
1851 |
+
|
1852 |
+
#: includes/settings/tabs/wps-general.php:287
|
1853 |
+
msgid ""
|
1854 |
+
"If a search engine is identified as the referrer but it does not include the "
|
1855 |
+
"search query this option will substitute the page title in quotes preceded "
|
1856 |
+
"by \"~:\" as the search query to help identify what the user may have been "
|
1857 |
+
"searching for."
|
1858 |
+
msgstr ""
|
1859 |
+
|
1860 |
+
#: includes/settings/tabs/wps-general.php:293
|
1861 |
msgid ""
|
1862 |
"Disabling all search engines is not allowed, doing so will result in all "
|
1863 |
"search engines being active."
|
1864 |
msgstr ""
|
1865 |
|
1866 |
+
#: includes/settings/tabs/wps-general.php:308
|
1867 |
msgid "disable"
|
1868 |
msgstr ""
|
1869 |
|
1870 |
+
#: includes/settings/tabs/wps-general.php:309
|
|
|
1871 |
msgid "Disable %s from data collection and reporting."
|
1872 |
msgstr ""
|
1873 |
|
1874 |
+
#: includes/settings/tabs/wps-general.php:315
|
1875 |
msgid "Charts"
|
1876 |
msgstr ""
|
1877 |
|
1878 |
+
#: includes/settings/tabs/wps-general.php:320
|
1879 |
msgid "Include totals"
|
1880 |
msgstr ""
|
1881 |
|
1882 |
+
#: includes/settings/tabs/wps-general.php:326
|
1883 |
msgid ""
|
1884 |
"Add a total line to charts with multiple values, like the search engine "
|
1885 |
"referrals"
|
1886 |
msgstr ""
|
1887 |
|
1888 |
+
#: includes/settings/tabs/wps-general.php:331
|
1889 |
msgid "Languages"
|
1890 |
msgstr ""
|
1891 |
|
1892 |
+
#: includes/settings/tabs/wps-general.php:336
|
1893 |
msgid "Force English"
|
1894 |
msgstr ""
|
1895 |
|
1896 |
+
#: includes/settings/tabs/wps-general.php:342
|
1897 |
msgid ""
|
1898 |
"Do not use the translations and instead use the English defaults for WP "
|
1899 |
"Statistics (requires two page loads)"
|
1900 |
msgstr ""
|
1901 |
|
1902 |
+
#: includes/settings/tabs/wps-geoip.php:27
|
1903 |
msgid "GeoIP settings"
|
1904 |
msgstr ""
|
1905 |
|
1906 |
+
#: includes/settings/tabs/wps-geoip.php:32
|
|
|
1907 |
msgid ""
|
1908 |
"IP location services provided by GeoLite2 data created by MaxMind, available "
|
1909 |
"from %s."
|
1910 |
msgstr ""
|
1911 |
|
1912 |
+
#: includes/settings/tabs/wps-geoip.php:42
|
1913 |
msgid "GeoIP collection"
|
1914 |
msgstr ""
|
1915 |
|
1916 |
+
#: includes/settings/tabs/wps-geoip.php:48
|
1917 |
msgid ""
|
1918 |
"For get more information and location (country) from visitor, enable this "
|
1919 |
"feature."
|
1920 |
msgstr ""
|
1921 |
|
1922 |
+
#: includes/settings/tabs/wps-geoip.php:54
|
1923 |
msgid "Update GeoIP Info"
|
1924 |
msgstr ""
|
1925 |
|
1926 |
+
#: includes/settings/tabs/wps-geoip.php:59
|
1927 |
msgid "Download GeoIP Database"
|
1928 |
msgstr ""
|
1929 |
|
1930 |
+
#: includes/settings/tabs/wps-geoip.php:66
|
1931 |
msgid "Schedule monthly update of GeoIP DB"
|
1932 |
msgstr ""
|
1933 |
|
1934 |
+
#: includes/settings/tabs/wps-geoip.php:92
|
1935 |
msgid ""
|
1936 |
"Download of the GeoIP database will be scheduled for 2 days after the first "
|
1937 |
"Tuesday of the month."
|
1938 |
msgstr ""
|
1939 |
|
1940 |
+
#: includes/settings/tabs/wps-geoip.php:93
|
1941 |
msgid ""
|
1942 |
"This option will also download the database if the local filesize is less "
|
1943 |
"than 1k (which usually means the stub that comes with the plugin is still in "
|
1944 |
"place)."
|
1945 |
msgstr ""
|
1946 |
|
1947 |
+
#: includes/settings/tabs/wps-geoip.php:99
|
1948 |
msgid "Populate missing GeoIP after update of GeoIP DB"
|
1949 |
msgstr ""
|
1950 |
|
1951 |
+
#: includes/settings/tabs/wps-geoip.php:105
|
1952 |
msgid "Update any missing GeoIP data after downloading a new database."
|
1953 |
msgstr ""
|
1954 |
|
1955 |
+
#: includes/settings/tabs/wps-geoip.php:111
|
1956 |
msgid "Country code for private IP addresses"
|
1957 |
msgstr ""
|
1958 |
|
1959 |
+
#: includes/settings/tabs/wps-geoip.php:116
|
1960 |
msgid ""
|
1961 |
"The international standard two letter country code (ie. US = United States, "
|
1962 |
"CA = Canada, etc.) for private (non-routable) IP addresses (ie. 10.0.0.1, "
|
1964 |
"as the country code."
|
1965 |
msgstr ""
|
1966 |
|
1967 |
+
#: includes/settings/tabs/wps-geoip.php:127
|
1968 |
msgid "GeoIP collection is disabled due to the following reasons:"
|
1969 |
msgstr ""
|
1970 |
|
1971 |
+
#: includes/settings/tabs/wps-geoip.php:130
|
|
|
1972 |
msgid ""
|
1973 |
"GeoIP collection requires PHP %s or above, it is currently disabled due to "
|
1974 |
"the installed PHP version being "
|
1975 |
msgstr ""
|
1976 |
|
1977 |
+
#: includes/settings/tabs/wps-geoip.php:135
|
1978 |
msgid ""
|
1979 |
"GeoIP collection requires the cURL PHP extension and it is not loaded on "
|
1980 |
"your version of PHP!"
|
1981 |
msgstr ""
|
1982 |
|
1983 |
+
#: includes/settings/tabs/wps-geoip.php:141
|
1984 |
msgid ""
|
1985 |
"GeoIP collection requires the BC Math PHP extension and it is not loaded on "
|
1986 |
"your version of PHP!"
|
1987 |
msgstr ""
|
1988 |
|
1989 |
+
#: includes/settings/tabs/wps-geoip.php:147
|
1990 |
msgid ""
|
1991 |
"PHP safe mode detected! GeoIP collection is not supported with PHP's safe "
|
1992 |
"mode enabled!"
|
1993 |
msgstr ""
|
1994 |
|
1995 |
+
#: includes/settings/tabs/wps-maintenance.php:20
|
1996 |
msgid ""
|
1997 |
"This will permanently delete data from the database each day, are you sure "
|
1998 |
"you want to enable this option?"
|
1999 |
msgstr ""
|
2000 |
|
2001 |
+
#: includes/settings/tabs/wps-maintenance.php:30
|
2002 |
msgid "Database Maintenance"
|
2003 |
msgstr ""
|
2004 |
|
2005 |
+
#: includes/settings/tabs/wps-maintenance.php:35
|
2006 |
+
#: includes/settings/tabs/wps-maintenance.php:59
|
2007 |
msgid "Run a daily WP Cron job to prune the databases"
|
2008 |
msgstr ""
|
2009 |
|
2010 |
+
#: includes/settings/tabs/wps-maintenance.php:41
|
2011 |
msgid ""
|
2012 |
"A WP Cron job will be run daily to prune any data older than a set number of "
|
2013 |
"days."
|
2014 |
msgstr ""
|
2015 |
|
2016 |
+
#: includes/settings/tabs/wps-maintenance.php:47
|
2017 |
msgid "Prune data older than"
|
2018 |
msgstr ""
|
2019 |
|
2020 |
+
#: includes/settings/tabs/wps-maintenance.php:52
|
2021 |
msgid "Days"
|
2022 |
msgstr ""
|
2023 |
|
2024 |
+
#: includes/settings/tabs/wps-maintenance.php:53
|
2025 |
msgid ""
|
2026 |
"The number of days to keep statistics for. Minimum value is 30 days. "
|
2027 |
"Invalid values will disable the daily maintenance."
|
2028 |
msgstr ""
|
2029 |
|
2030 |
+
#: includes/settings/tabs/wps-maintenance.php:65
|
2031 |
+
msgid ""
|
2032 |
+
"A WP Cron job will be run daily to prune any users statistics data where the "
|
2033 |
+
"user has more than the defined number of hits in a day (aka they are "
|
2034 |
+
"probably a bot)."
|
2035 |
+
msgstr ""
|
2036 |
+
|
2037 |
+
#: includes/settings/tabs/wps-maintenance.php:71
|
2038 |
+
msgid "Prune visitors with more than"
|
2039 |
+
msgstr ""
|
2040 |
+
|
2041 |
+
#: includes/settings/tabs/wps-maintenance.php:77
|
2042 |
+
msgid ""
|
2043 |
+
"The number of hits required to delete the visitor. Invalid values will "
|
2044 |
+
"disable the daily maintenance (must be 10 or greater)."
|
2045 |
+
msgstr ""
|
2046 |
+
|
2047 |
+
#: includes/settings/tabs/wps-notifications.php:44
|
2048 |
msgid "Common Report Options"
|
2049 |
msgstr ""
|
2050 |
|
2051 |
+
#: includes/settings/tabs/wps-notifications.php:49
|
2052 |
msgid "E-mail addresses"
|
2053 |
msgstr ""
|
2054 |
|
2055 |
+
#: includes/settings/tabs/wps-notifications.php:54
|
2056 |
msgid "A comma separated list of e-mail addresses to send reports to."
|
2057 |
msgstr ""
|
2058 |
|
2059 |
+
#: includes/settings/tabs/wps-notifications.php:59
|
2060 |
msgid "Update Reports"
|
2061 |
msgstr ""
|
2062 |
|
2063 |
+
#: includes/settings/tabs/wps-notifications.php:70
|
2064 |
msgid "Send a report whenever the browscap.ini is updated."
|
2065 |
msgstr ""
|
2066 |
|
2067 |
+
#: includes/settings/tabs/wps-notifications.php:82
|
2068 |
msgid "Send a report whenever the GeoIP database is updated."
|
2069 |
msgstr ""
|
2070 |
|
2071 |
+
#: includes/settings/tabs/wps-notifications.php:88
|
2072 |
msgid "Pruning"
|
2073 |
msgstr ""
|
2074 |
|
2075 |
+
#: includes/settings/tabs/wps-notifications.php:94
|
2076 |
msgid "Send a report whenever the pruning of database is run."
|
2077 |
msgstr ""
|
2078 |
|
2079 |
+
#: includes/settings/tabs/wps-notifications.php:100
|
2080 |
msgid "Upgrade"
|
2081 |
msgstr ""
|
2082 |
|
2083 |
+
#: includes/settings/tabs/wps-notifications.php:106
|
2084 |
msgid "Send a report whenever the plugin is upgraded."
|
2085 |
msgstr ""
|
2086 |
|
2087 |
+
#: includes/settings/tabs/wps-notifications.php:111
|
2088 |
+
#: includes/settings/tabs/wps-notifications.php:116 schedule.php:199
|
|
|
2089 |
msgid "Statistical reporting"
|
2090 |
msgstr ""
|
2091 |
|
2092 |
+
#: includes/settings/tabs/wps-notifications.php:129
|
2093 |
msgid "Schedule"
|
2094 |
msgstr ""
|
2095 |
|
2096 |
+
#: includes/settings/tabs/wps-notifications.php:153
|
2097 |
msgid "Select how often to receive statistical report."
|
2098 |
msgstr ""
|
2099 |
|
2100 |
+
#: includes/settings/tabs/wps-notifications.php:159
|
2101 |
msgid "Send reports via"
|
2102 |
msgstr ""
|
2103 |
|
2104 |
+
#: includes/settings/tabs/wps-notifications.php:165
|
2105 |
msgid "Email"
|
2106 |
msgstr ""
|
2107 |
|
2108 |
+
#: includes/settings/tabs/wps-notifications.php:167
|
2109 |
msgid "SMS"
|
2110 |
msgstr ""
|
2111 |
|
2112 |
+
#: includes/settings/tabs/wps-notifications.php:170
|
2113 |
msgid "Select delivery method for statistical report."
|
2114 |
msgstr ""
|
2115 |
|
2116 |
+
#: includes/settings/tabs/wps-notifications.php:173
|
|
|
2117 |
msgid "Note: To send SMS text messages please install the %s plugin."
|
2118 |
msgstr ""
|
2119 |
|
2120 |
+
#: includes/settings/tabs/wps-notifications.php:173
|
2121 |
msgid "WordPress SMS"
|
2122 |
msgstr ""
|
2123 |
|
2124 |
+
#: includes/settings/tabs/wps-notifications.php:180
|
2125 |
msgid "Report body"
|
2126 |
msgstr ""
|
2127 |
|
2128 |
+
#: includes/settings/tabs/wps-notifications.php:185
|
2129 |
msgid "Enter the contents of the report."
|
2130 |
msgstr ""
|
2131 |
|
2132 |
+
#: includes/settings/tabs/wps-notifications.php:187
|
2133 |
msgid ""
|
2134 |
"Any shortcode supported by your installation of WordPress, include all "
|
2135 |
"shortcodes for WP Statistics (see the admin manual for a list of codes "
|
2136 |
"available) are supported in the body of the message. Here are some examples:"
|
2137 |
msgstr ""
|
2138 |
|
2139 |
+
#: includes/settings/tabs/wps-notifications.php:188 widget.php:38
|
2140 |
+
#: widget.php:245 wp-statistics.php:522
|
|
|
|
|
2141 |
msgid "User Online"
|
2142 |
msgstr ""
|
2143 |
|
2144 |
+
#: includes/settings/tabs/wps-notifications.php:189 widget.php:52
|
2145 |
+
#: widget.php:251
|
|
|
2146 |
msgid "Today Visitor"
|
2147 |
msgstr ""
|
2148 |
|
2149 |
+
#: includes/settings/tabs/wps-notifications.php:190 widget.php:45
|
2150 |
+
#: widget.php:248
|
|
|
2151 |
msgid "Today Visit"
|
2152 |
msgstr ""
|
2153 |
|
2154 |
+
#: includes/settings/tabs/wps-notifications.php:191 widget.php:66
|
2155 |
+
#: widget.php:257
|
|
|
2156 |
msgid "Yesterday Visitor"
|
2157 |
msgstr ""
|
2158 |
|
2159 |
+
#: includes/settings/tabs/wps-notifications.php:192 widget.php:59
|
|
|
2160 |
msgid "Yesterday Visit"
|
2161 |
msgstr ""
|
2162 |
|
2163 |
+
#: includes/settings/tabs/wps-notifications.php:193 widget.php:101
|
2164 |
+
#: widget.php:272
|
|
|
2165 |
msgid "Total Visitor"
|
2166 |
msgstr ""
|
2167 |
|
2168 |
+
#: includes/settings/tabs/wps-notifications.php:194 widget.php:94
|
2169 |
+
#: widget.php:269
|
|
|
2170 |
msgid "Total Visit"
|
2171 |
msgstr ""
|
2172 |
|
2173 |
+
#: includes/settings/tabs/wps-overview-display.php:23
|
2174 |
+
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:166
|
2175 |
msgid "None"
|
2176 |
msgstr ""
|
2177 |
|
2178 |
+
#: includes/settings/tabs/wps-overview-display.php:24
|
2179 |
msgid "Summary Statistics"
|
2180 |
msgstr ""
|
2181 |
|
2182 |
+
#: includes/settings/tabs/wps-overview-display.php:28
|
2183 |
+
#: includes/settings/wps-settings.php:108
|
2184 |
msgid "About"
|
2185 |
msgstr ""
|
2186 |
|
2187 |
+
#: includes/settings/tabs/wps-overview-display.php:34
|
2188 |
msgid "Hits Statistical Chart"
|
2189 |
msgstr ""
|
2190 |
|
2191 |
+
#: includes/settings/tabs/wps-overview-display.php:36
|
2192 |
msgid "Search Engine Referrers Statistical Chart"
|
2193 |
msgstr ""
|
2194 |
|
2195 |
+
#: includes/settings/tabs/wps-overview-display.php:38
|
2196 |
msgid "Top Pages Visited"
|
2197 |
msgstr ""
|
2198 |
|
2199 |
+
#: includes/settings/tabs/wps-overview-display.php:73
|
2200 |
msgid "Dashboard"
|
2201 |
msgstr ""
|
2202 |
|
2203 |
+
#: includes/settings/tabs/wps-overview-display.php:77
|
2204 |
+
#: includes/settings/tabs/wps-overview-display.php:97
|
2205 |
+
#: includes/settings/tabs/wps-overview-display.php:117
|
2206 |
msgid "The following items are global to all users."
|
2207 |
msgstr ""
|
2208 |
|
2209 |
+
#: includes/settings/tabs/wps-overview-display.php:82
|
2210 |
msgid "Disable dashboard widgets"
|
2211 |
msgstr ""
|
2212 |
|
2213 |
+
#: includes/settings/tabs/wps-overview-display.php:88
|
2214 |
msgid "Disable the dashboard widgets."
|
2215 |
msgstr ""
|
2216 |
|
2217 |
+
#: includes/settings/tabs/wps-overview-display.php:93
|
2218 |
msgid "Page/Post Editor"
|
2219 |
msgstr ""
|
2220 |
|
2221 |
+
#: includes/settings/tabs/wps-overview-display.php:102
|
2222 |
msgid "Disable post/page editor widget"
|
2223 |
msgstr ""
|
2224 |
|
2225 |
+
#: includes/settings/tabs/wps-overview-display.php:108
|
2226 |
msgid "Disable the page/post editor widget."
|
2227 |
msgstr ""
|
2228 |
|
2229 |
+
#: includes/settings/tabs/wps-overview-display.php:122
|
2230 |
msgid "Map type"
|
2231 |
msgstr ""
|
2232 |
|
2233 |
+
#: includes/settings/tabs/wps-overview-display.php:128
|
2234 |
msgid "JQVMap"
|
2235 |
msgstr ""
|
2236 |
|
2237 |
+
#: includes/settings/tabs/wps-overview-display.php:135
|
2238 |
msgid ""
|
2239 |
"The \"Google\" option will use Google's mapping service to plot the recent "
|
2240 |
"visitors (requires access to Google)."
|
2241 |
msgstr ""
|
2242 |
|
2243 |
+
#: includes/settings/tabs/wps-overview-display.php:136
|
2244 |
msgid ""
|
2245 |
"The \"JQVMap\" option will use JQVMap javascript mapping library to plot the "
|
2246 |
"recent visitors (requires no extenral services)."
|
2247 |
msgstr ""
|
2248 |
|
2249 |
+
#: includes/settings/tabs/wps-overview-display.php:142
|
2250 |
msgid "Disable map"
|
2251 |
msgstr ""
|
2252 |
|
2253 |
+
#: includes/settings/tabs/wps-overview-display.php:148
|
2254 |
msgid "Disable the map display"
|
2255 |
msgstr ""
|
2256 |
|
2257 |
+
#: includes/settings/tabs/wps-overview-display.php:154
|
2258 |
msgid "Get country location from Google"
|
2259 |
msgstr ""
|
2260 |
|
2261 |
+
#: includes/settings/tabs/wps-overview-display.php:160
|
2262 |
msgid ""
|
2263 |
"This feature may cause a performance degradation when viewing statistics and "
|
2264 |
"is only valid if the map type is set to \"Google\"."
|
2265 |
msgstr ""
|
2266 |
|
2267 |
+
#: includes/settings/tabs/wps-overview-display.php:171
|
2268 |
msgid "Overview Widgets to Display"
|
2269 |
msgstr ""
|
2270 |
|
2271 |
+
#: includes/settings/tabs/wps-overview-display.php:175
|
2272 |
msgid ""
|
2273 |
"The following items are unique to each user. If you do not select the "
|
2274 |
"'About' widget it will automatically be displayed in the last positon of "
|
2275 |
"column A."
|
2276 |
msgstr ""
|
2277 |
|
2278 |
+
#: includes/settings/tabs/wps-overview-display.php:180
|
2279 |
msgid "Slot"
|
2280 |
msgstr ""
|
2281 |
|
2282 |
+
#: includes/settings/tabs/wps-overview-display.php:184
|
2283 |
msgid "Column A"
|
2284 |
msgstr ""
|
2285 |
|
2286 |
+
#: includes/settings/tabs/wps-overview-display.php:188
|
2287 |
msgid "Column B"
|
2288 |
msgstr ""
|
2289 |
|
2290 |
+
#: includes/settings/tabs/wps-overview-display.php:194
|
2291 |
msgid "Slot 1"
|
2292 |
msgstr ""
|
2293 |
|
2294 |
+
#: includes/settings/tabs/wps-overview-display.php:224
|
2295 |
msgid "Slot 2"
|
2296 |
msgstr ""
|
2297 |
|
2298 |
+
#: includes/settings/tabs/wps-overview-display.php:254
|
2299 |
msgid "Slot 3"
|
2300 |
msgstr ""
|
2301 |
|
2302 |
+
#: includes/settings/tabs/wps-overview-display.php:284
|
2303 |
msgid "Slot 4"
|
2304 |
msgstr ""
|
2305 |
|
2306 |
+
#: includes/settings/tabs/wps-overview-display.php:314
|
2307 |
msgid "Slot 5"
|
2308 |
msgstr ""
|
2309 |
|
2310 |
+
#: includes/settings/tabs/wps-overview-display.php:344
|
2311 |
msgid "Slot 6"
|
2312 |
msgstr ""
|
2313 |
|
2314 |
+
#: includes/settings/tabs/wps-overview-display.php:348
|
2315 |
+
#: includes/settings/tabs/wps-overview-display.php:370
|
2316 |
msgid "N/A"
|
2317 |
msgstr ""
|
2318 |
|
2319 |
+
#: includes/settings/tabs/wps-overview-display.php:366
|
2320 |
msgid "Slot 7"
|
2321 |
msgstr ""
|
2322 |
|
2323 |
+
#: includes/settings/tabs/wps-removal.php:15
|
2324 |
msgid "WP Statisitcs Removal"
|
2325 |
msgstr ""
|
2326 |
|
2327 |
+
#: includes/settings/tabs/wps-removal.php:20
|
2328 |
msgid ""
|
2329 |
"Uninstalling WP Statistics will not remove the data and settings, you can "
|
2330 |
"use this option to remove the WP Statistics data from your install before "
|
2331 |
"uninstalling the plugin."
|
2332 |
msgstr ""
|
2333 |
|
2334 |
+
#: includes/settings/tabs/wps-removal.php:23
|
2335 |
msgid ""
|
2336 |
"Once you submit this form the settings will be deleted during the page load, "
|
2337 |
"however WP Statistics will still show up in your Admin menu until another "
|
2338 |
"page load is executed."
|
2339 |
msgstr ""
|
2340 |
|
2341 |
+
#: includes/settings/tabs/wps-removal.php:29
|
2342 |
msgid "Remove data and settings"
|
2343 |
msgstr ""
|
2344 |
|
2345 |
+
#: includes/settings/tabs/wps-removal.php:34
|
2346 |
msgid "Remove"
|
2347 |
msgstr ""
|
2348 |
|
2349 |
+
#: includes/settings/tabs/wps-removal.php:35
|
2350 |
msgid "Remove data and settings, this action cannot be undone."
|
2351 |
msgstr ""
|
2352 |
|
2353 |
+
#: includes/settings/wps-settings.php:100
|
2354 |
msgid "General"
|
2355 |
msgstr ""
|
2356 |
|
2357 |
+
#: includes/settings/wps-settings.php:101
|
2358 |
msgid "Notifications"
|
2359 |
msgstr ""
|
2360 |
|
2361 |
+
#: includes/settings/wps-settings.php:102
|
2362 |
msgid "Dashboard/Overview"
|
2363 |
msgstr ""
|
2364 |
|
2365 |
+
#: includes/settings/wps-settings.php:103
|
2366 |
msgid "Access/Exclusions"
|
2367 |
msgstr ""
|
2368 |
|
2369 |
+
#: includes/settings/wps-settings.php:105
|
2370 |
msgid "browscap"
|
2371 |
msgstr ""
|
2372 |
|
2373 |
+
#: includes/settings/wps-settings.php:106
|
2374 |
msgid "Maintenance"
|
2375 |
msgstr ""
|
2376 |
|
2377 |
+
#: includes/settings/wps-settings.php:107
|
2378 |
msgid "Removal"
|
2379 |
msgstr ""
|
2380 |
|
2381 |
+
#: schedule.php:10
|
2382 |
+
msgid "Once Weekly"
|
|
|
2383 |
msgstr ""
|
2384 |
|
2385 |
+
#: schedule.php:17
|
2386 |
+
msgid "Once Every 2 Weeks"
|
|
|
2387 |
msgstr ""
|
2388 |
|
2389 |
+
#: schedule.php:24
|
2390 |
+
msgid "Once Every 4 Weeks"
|
2391 |
msgstr ""
|
2392 |
|
2393 |
+
#: shortcode.php:123
|
2394 |
+
msgid "Statistic"
|
2395 |
msgstr ""
|
2396 |
|
2397 |
+
#: shortcode.php:126
|
2398 |
+
msgid "Select the statistic you wish to display."
|
2399 |
msgstr ""
|
2400 |
|
2401 |
+
#: shortcode.php:132
|
2402 |
+
msgid "Page Visits"
|
2403 |
+
msgstr ""
|
2404 |
+
|
2405 |
+
#: shortcode.php:133 wp-statistics.php:346 wp-statistics.php:422
|
2406 |
+
msgid "Searches"
|
2407 |
+
msgstr ""
|
2408 |
+
|
2409 |
+
#: shortcode.php:134
|
2410 |
+
msgid "Post Count"
|
2411 |
+
msgstr ""
|
2412 |
+
|
2413 |
+
#: shortcode.php:135
|
2414 |
+
msgid "Page Count"
|
2415 |
+
msgstr ""
|
2416 |
+
|
2417 |
+
#: shortcode.php:136
|
2418 |
+
msgid "Comment Count"
|
2419 |
+
msgstr ""
|
2420 |
+
|
2421 |
+
#: shortcode.php:137
|
2422 |
+
msgid "Spam Count"
|
2423 |
+
msgstr ""
|
2424 |
+
|
2425 |
+
#: shortcode.php:138
|
2426 |
+
msgid "User Count"
|
2427 |
+
msgstr ""
|
2428 |
+
|
2429 |
+
#: shortcode.php:139
|
2430 |
+
msgid "Post Average"
|
2431 |
+
msgstr ""
|
2432 |
+
|
2433 |
+
#: shortcode.php:140
|
2434 |
+
msgid "Comment Average"
|
2435 |
+
msgstr ""
|
2436 |
+
|
2437 |
+
#: shortcode.php:141
|
2438 |
+
msgid "User Average"
|
2439 |
+
msgstr ""
|
2440 |
+
|
2441 |
+
#: shortcode.php:142 widget.php:179 widget.php:322
|
2442 |
+
msgid "Last Post Date"
|
2443 |
+
msgstr ""
|
2444 |
+
|
2445 |
+
#: shortcode.php:146
|
2446 |
+
msgid "Time Frame"
|
2447 |
+
msgstr ""
|
2448 |
+
|
2449 |
+
#: shortcode.php:149
|
2450 |
+
msgid ""
|
2451 |
+
"The time frame to get the statistic for, strtotime() (http://php.net/manual/"
|
2452 |
+
"en/datetime.formats.php) will be used to calculate it."
|
2453 |
+
msgstr ""
|
2454 |
+
|
2455 |
+
#: shortcode.php:153
|
2456 |
+
msgid "Search Provider"
|
2457 |
+
msgstr ""
|
2458 |
+
|
2459 |
+
#: shortcode.php:156
|
2460 |
+
msgid "The search provider to get statistics on."
|
2461 |
+
msgstr ""
|
2462 |
+
|
2463 |
+
#: shortcode.php:160
|
2464 |
+
msgid "Number Format"
|
2465 |
+
msgstr ""
|
2466 |
+
|
2467 |
+
#: shortcode.php:163
|
2468 |
+
msgid "The format to display numbers in: i18n, english, none."
|
2469 |
+
msgstr ""
|
2470 |
+
|
2471 |
+
#: shortcode.php:167
|
2472 |
+
msgid "English"
|
2473 |
+
msgstr ""
|
2474 |
+
|
2475 |
+
#: shortcode.php:168
|
2476 |
+
msgid "International"
|
2477 |
+
msgstr ""
|
2478 |
+
|
2479 |
+
#: widget.php:14 wp-statistics.php:335 wp-statistics.php:373
|
2480 |
msgid "Statistics"
|
2481 |
msgstr ""
|
2482 |
|
2483 |
+
#: widget.php:15
|
2484 |
msgid "Show site stats in sidebar."
|
2485 |
msgstr ""
|
2486 |
|
2487 |
+
#: widget.php:73 widget.php:260
|
|
|
2488 |
msgid "Week Visit"
|
2489 |
msgstr ""
|
2490 |
|
2491 |
+
#: widget.php:80 widget.php:263
|
|
|
2492 |
msgid "Month Visit"
|
2493 |
msgstr ""
|
2494 |
|
2495 |
+
#: widget.php:87 widget.php:266
|
|
|
2496 |
msgid "Years Visit"
|
2497 |
msgstr ""
|
2498 |
|
2499 |
+
#: widget.php:108 widget.php:275
|
|
|
2500 |
msgid "Total Page Views"
|
2501 |
msgstr ""
|
2502 |
|
2503 |
+
#: widget.php:116
|
2504 |
msgid "Search Engine referred"
|
2505 |
msgstr ""
|
2506 |
|
2507 |
+
#: widget.php:123 widget.php:298
|
|
|
2508 |
msgid "Total Posts"
|
2509 |
msgstr ""
|
2510 |
|
2511 |
+
#: widget.php:130 widget.php:301
|
|
|
2512 |
msgid "Total Pages"
|
2513 |
msgstr ""
|
2514 |
|
2515 |
+
#: widget.php:137 widget.php:304
|
|
|
2516 |
msgid "Total Comments"
|
2517 |
msgstr ""
|
2518 |
|
2519 |
+
#: widget.php:144 widget.php:307
|
|
|
2520 |
msgid "Total Spams"
|
2521 |
msgstr ""
|
2522 |
|
2523 |
+
#: widget.php:151 widget.php:310
|
|
|
2524 |
msgid "Total Users"
|
2525 |
msgstr ""
|
2526 |
|
2527 |
+
#: widget.php:158 widget.php:313
|
|
|
2528 |
msgid "Average Posts"
|
2529 |
msgstr ""
|
2530 |
|
2531 |
+
#: widget.php:165 widget.php:316
|
|
|
2532 |
msgid "Average Comments"
|
2533 |
msgstr ""
|
2534 |
|
2535 |
+
#: widget.php:172 widget.php:319
|
|
|
2536 |
msgid "Average Users"
|
2537 |
msgstr ""
|
2538 |
|
2539 |
+
#: widget.php:238
|
|
|
|
|
|
|
|
|
|
|
2540 |
msgid "Name"
|
2541 |
msgstr ""
|
2542 |
|
2543 |
+
#: widget.php:242
|
2544 |
msgid "Items"
|
2545 |
msgstr ""
|
2546 |
|
2547 |
+
#: widget.php:254 wp-statistics.php:547
|
|
|
2548 |
msgid "Yesterday visit"
|
2549 |
msgstr ""
|
2550 |
|
2551 |
+
#: widget.php:278
|
2552 |
msgid "Search Engine Referred"
|
2553 |
msgstr ""
|
2554 |
|
2555 |
+
#: widget.php:281
|
2556 |
msgid "Select type of search engine"
|
2557 |
msgstr ""
|
2558 |
|
2559 |
+
#. Plugin Name of the plugin/theme
|
2560 |
+
#: wp-statistics.php:37
|
2561 |
msgid "WP Statistics"
|
2562 |
msgstr ""
|
2563 |
|
2564 |
+
#. Description of the plugin/theme
|
2565 |
+
#: wp-statistics.php:38
|
2566 |
msgid "Complete statistics for your WordPress site."
|
2567 |
msgstr ""
|
2568 |
|
2569 |
+
#: wp-statistics.php:63
|
2570 |
msgid ""
|
2571 |
"ERROR: WP Statistics has detected an unsupported version of PHP, WP "
|
2572 |
"Statistics will not function without PHP Version "
|
2573 |
msgstr ""
|
2574 |
|
2575 |
+
#: wp-statistics.php:63
|
2576 |
msgid " or higher!"
|
2577 |
msgstr ""
|
2578 |
|
2579 |
+
#: wp-statistics.php:63
|
2580 |
msgid "Your current PHP version is"
|
2581 |
msgstr ""
|
2582 |
|
2583 |
+
#: wp-statistics.php:79
|
2584 |
msgid "WP Statistics has been removed, please disable and delete it."
|
2585 |
msgstr ""
|
2586 |
|
2587 |
+
#: wp-statistics.php:130
|
|
|
2588 |
msgid ""
|
2589 |
"Online user tracking in WP Statistics is not enabled, please go to %s and "
|
2590 |
"enable it."
|
2591 |
msgstr ""
|
2592 |
|
2593 |
+
#: wp-statistics.php:130 wp-statistics.php:133 wp-statistics.php:136
|
|
|
|
|
2594 |
msgid "setting page"
|
2595 |
msgstr ""
|
2596 |
|
2597 |
+
#: wp-statistics.php:133
|
|
|
2598 |
msgid ""
|
2599 |
"Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
|
2600 |
msgstr ""
|
2601 |
|
2602 |
+
#: wp-statistics.php:136
|
|
|
2603 |
msgid ""
|
2604 |
"Visitor tracking in WP Statistics is not enabled, please go to %s and enable "
|
2605 |
"it."
|
2606 |
msgstr ""
|
2607 |
|
2608 |
+
#: wp-statistics.php:139
|
|
|
2609 |
msgid ""
|
2610 |
"GeoIP collection is not active, please go to %s and enable this feature."
|
2611 |
msgstr ""
|
2612 |
|
2613 |
+
#: wp-statistics.php:139
|
2614 |
msgid "Setting page > GeoIP"
|
2615 |
msgstr ""
|
2616 |
|
2617 |
+
#: wp-statistics.php:230
|
|
|
2618 |
msgid "WP Statistics %s installed on"
|
2619 |
msgstr ""
|
2620 |
|
2621 |
+
#: wp-statistics.php:242 wp-statistics.php:354 wp-statistics.php:427
|
|
|
|
|
2622 |
msgid "Settings"
|
2623 |
msgstr ""
|
2624 |
|
2625 |
+
#: wp-statistics.php:254
|
2626 |
msgid "Click here to visit the plugin on WordPress.org"
|
2627 |
msgstr ""
|
2628 |
|
2629 |
+
#: wp-statistics.php:254
|
2630 |
msgid "Visit WordPress.org page"
|
2631 |
msgstr ""
|
2632 |
|
2633 |
+
#: wp-statistics.php:257
|
2634 |
msgid "Click here to rate and review this plugin on WordPress.org"
|
2635 |
msgstr ""
|
2636 |
|
2637 |
+
#: wp-statistics.php:257
|
2638 |
msgid "Rate this plugin"
|
2639 |
msgstr ""
|
2640 |
|
2641 |
+
#: wp-statistics.php:301
|
2642 |
msgid "WP Statistics - Hits"
|
2643 |
msgstr ""
|
2644 |
|
2645 |
+
#: wp-statistics.php:338 wp-statistics.php:376 wp-statistics.php:414
|
|
|
|
|
2646 |
msgid "Overview"
|
2647 |
msgstr ""
|
2648 |
|
2649 |
+
#: wp-statistics.php:343 wp-statistics.php:419
|
|
|
2650 |
msgid "Online"
|
2651 |
msgstr ""
|
2652 |
|
2653 |
+
#: wp-statistics.php:345 wp-statistics.php:421
|
|
|
2654 |
msgid "Referrers"
|
2655 |
msgstr ""
|
2656 |
|
2657 |
+
#: wp-statistics.php:347 wp-statistics.php:423
|
|
|
|
|
|
|
|
|
|
|
|
|
2658 |
msgid "Search Words"
|
2659 |
msgstr ""
|
2660 |
|
2661 |
+
#: wp-statistics.php:348 wp-statistics.php:424
|
|
|
2662 |
msgid "Top Visitors Today"
|
2663 |
msgstr ""
|
2664 |
|
2665 |
+
#: wp-statistics.php:353 wp-statistics.php:426
|
|
|
2666 |
msgid "Optimization"
|
2667 |
msgstr ""
|
2668 |
|
2669 |
+
#: wp-statistics.php:359 wp-statistics.php:390
|
|
|
2670 |
msgid "Manual"
|
2671 |
msgstr ""
|
2672 |
|
2673 |
+
#: wp-statistics.php:405
|
2674 |
msgid "Site"
|
2675 |
msgstr ""
|
2676 |
|
2677 |
+
#: wp-statistics.php:406
|
2678 |
msgid "Options"
|
2679 |
msgstr ""
|
2680 |
|
2681 |
+
#: wp-statistics.php:529
|
2682 |
msgid "Today visitor"
|
2683 |
msgstr ""
|
2684 |
|
2685 |
+
#: wp-statistics.php:535
|
2686 |
msgid "Today visit"
|
2687 |
msgstr ""
|
2688 |
|
2689 |
+
#: wp-statistics.php:541
|
2690 |
msgid "Yesterday visitor"
|
2691 |
msgstr ""
|
2692 |
|
2693 |
+
#: wp-statistics.php:553
|
2694 |
msgid "View Stats"
|
2695 |
msgstr ""
|
2696 |
|
2697 |
+
#: wp-statistics.php:577
|
2698 |
msgid "Download ODF file"
|
2699 |
msgstr ""
|
2700 |
|
2701 |
+
#: wp-statistics.php:578
|
2702 |
msgid "Download HTML file"
|
2703 |
msgstr ""
|
2704 |
|
2705 |
+
#: wp-statistics.php:582
|
2706 |
msgid "Manual file not found."
|
2707 |
msgstr ""
|
2708 |
|
2709 |
+
#: wp-statistics.php:649 wp-statistics.php:760 wp-statistics.php:794
|
|
|
|
|
2710 |
msgid "You do not have sufficient permissions to access this page."
|
2711 |
msgstr ""
|
2712 |
|
2713 |
+
#: wp-statistics.php:662
|
|
|
2714 |
msgid ""
|
2715 |
"Plugin tables do not exist in the database! Please re-run the %s install "
|
2716 |
"routine %s."
|
2717 |
msgstr ""
|
2718 |
|
2719 |
+
#: wps-updates.php:34
|
|
|
2720 |
msgid "Error downloading GeoIP database from: %s - %s"
|
2721 |
msgstr ""
|
2722 |
|
2723 |
+
#: wps-updates.php:45
|
|
|
2724 |
msgid "Error could not open downloaded GeoIP database for reading: %s"
|
2725 |
msgstr ""
|
2726 |
|
2727 |
+
#: wps-updates.php:52
|
|
|
2728 |
msgid "Error could not open destination GeoIP database for writing %s"
|
2729 |
msgstr ""
|
2730 |
|
2731 |
+
#: wps-updates.php:68
|
2732 |
msgid "GeoIP Database updated successfully!"
|
2733 |
msgstr ""
|
2734 |
|
2735 |
+
#: wps-updates.php:93
|
2736 |
msgid "GeoIP update on"
|
2737 |
msgstr ""
|
2738 |
|
2739 |
+
#: wps-updates.php:160
|
|
|
2740 |
msgid "Error downloading browscap database from: %s - %s"
|
2741 |
msgstr ""
|
2742 |
|
2743 |
+
#: wps-updates.php:262
|
2744 |
msgid "browscap database updated successfully!"
|
2745 |
msgstr ""
|
2746 |
|
2747 |
+
#: wps-updates.php:273
|
2748 |
msgid ""
|
2749 |
"browscap database updated failed! Cache file too large, reverting to "
|
2750 |
"previous browscap.ini."
|
2751 |
msgstr ""
|
2752 |
|
2753 |
+
#: wps-updates.php:281
|
2754 |
msgid ""
|
2755 |
"browscap database updated failed! New browscap.ini is mis-identifing user "
|
2756 |
"agents as crawlers, reverting to previous browscap.ini."
|
2757 |
msgstr ""
|
2758 |
|
2759 |
+
#: wps-updates.php:303
|
2760 |
msgid "browscap already at current version!"
|
2761 |
msgstr ""
|
2762 |
|
2763 |
+
#: wps-updates.php:316
|
2764 |
msgid "Browscap.ini update on"
|
2765 |
msgstr ""
|
2766 |
+
|
2767 |
+
#. Plugin URI of the plugin/theme
|
2768 |
+
#. Author URI of the plugin/theme
|
2769 |
+
msgid "http://wp-statistics.com/"
|
2770 |
+
msgstr ""
|
2771 |
+
|
2772 |
+
#. Author of the plugin/theme
|
2773 |
+
msgid "Mostafa Soufi & Greg Ross"
|
2774 |
+
msgstr ""
|
languages/wp_statistics-ar.mo
CHANGED
Binary file
|
languages/wp_statistics-ar.po
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
# This file is distributed under the same license as the WP Statistics package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"PO-Revision-Date: 2015-04-
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -10,2535 +10,2574 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#:
|
14 |
-
msgid "to"
|
15 |
msgstr ""
|
16 |
|
17 |
-
#:
|
18 |
-
msgid "
|
19 |
msgstr ""
|
20 |
|
21 |
-
#:
|
22 |
-
msgid "
|
23 |
msgstr ""
|
24 |
|
25 |
-
#:
|
26 |
-
msgid "
|
27 |
msgstr ""
|
28 |
|
29 |
-
#:
|
30 |
-
msgid "
|
31 |
msgstr ""
|
32 |
|
33 |
-
#:
|
34 |
-
msgid "
|
35 |
msgstr ""
|
36 |
|
37 |
-
#:
|
38 |
-
msgid "
|
39 |
msgstr ""
|
40 |
|
41 |
-
#:
|
42 |
-
msgid "
|
43 |
msgstr ""
|
44 |
|
45 |
-
#:
|
46 |
-
msgid "
|
47 |
msgstr ""
|
48 |
|
49 |
-
#:
|
50 |
-
msgid "
|
51 |
msgstr ""
|
52 |
|
53 |
-
#:
|
54 |
-
msgid "
|
55 |
msgstr ""
|
56 |
|
57 |
-
#:
|
58 |
-
msgid "
|
59 |
msgstr ""
|
60 |
|
61 |
-
#:
|
62 |
-
|
63 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
64 |
msgstr ""
|
65 |
|
66 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
67 |
msgid "MM/DD/YYYY"
|
68 |
msgstr "MM/DD/YYYY"
|
69 |
|
70 |
-
#:
|
71 |
msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
|
72 |
msgstr "لا تستخدم الترجمات واستخدام بدلاً من ذلك الإعدادات الافتراضية الإنجليزية لإحصائيات ووردبريس (يتطلب تحميل صفحتين)"
|
73 |
|
74 |
-
#:
|
75 |
msgid "Force English"
|
76 |
msgstr "إجبار اللغة الإنجليزية"
|
77 |
|
78 |
-
#:
|
79 |
msgid "Languages"
|
80 |
msgstr "اللغات"
|
81 |
|
82 |
-
#:
|
83 |
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."
|
84 |
msgstr "ملاحظة: هذا الخيار لن يتعامل مع معايير عنوان URL، (أي شيء بعد علامة؟) إلا اسم البرنامج النصي . سيتم تجاهل إدخالات أقل من حرفين."
|
85 |
|
86 |
-
#:
|
87 |
msgid "A list of local urls (ie. /wordpress/about, one per line) to exclude from statistics collection."
|
88 |
msgstr "قائمة عناوين المواقع المحلية (اتصل بنا,حول, واحد في كل سطر) للإستبعاد من جمع الإحصائيات."
|
89 |
|
90 |
-
#:
|
91 |
msgid "Excluded URLs list"
|
92 |
msgstr "قائمة عناوين المواقع المستبعدة"
|
93 |
|
94 |
-
#:
|
95 |
msgid "Excluded URL"
|
96 |
msgstr "العناوين المستبعدة"
|
97 |
|
98 |
-
#:
|
99 |
msgid "Last 365 Days (Year)"
|
100 |
msgstr "مشاركة 365 يوم (السنة)"
|
101 |
|
102 |
-
#:
|
103 |
msgid "Last 30 Days (Month)"
|
104 |
msgstr "آخر 30 يوم (شهر)"
|
105 |
|
106 |
-
#:
|
107 |
msgid "Last 7 Days (Week)"
|
108 |
msgstr "آخر 7 أيام (أسبوع)"
|
109 |
|
110 |
-
#:
|
111 |
msgid "Yahoo!"
|
112 |
msgstr "ياهو!"
|
113 |
|
114 |
-
#:
|
115 |
msgid "Yandex"
|
116 |
msgstr "ياندكس"
|
117 |
|
118 |
-
#:
|
119 |
msgid "clearch.org"
|
120 |
msgstr "clearch.org"
|
121 |
|
122 |
-
#:
|
123 |
msgid "DuckDuckGo"
|
124 |
msgstr "دك دك غو"
|
125 |
|
126 |
-
#:
|
127 |
msgid "Bing"
|
128 |
msgstr "بينج"
|
129 |
|
130 |
-
#:
|
131 |
msgid "Baidu"
|
132 |
msgstr "بايدو"
|
133 |
|
134 |
-
#:
|
135 |
msgid "Hits in the last 20 days"
|
136 |
msgstr "النقرات في 20 يوما الماضية"
|
137 |
|
138 |
-
#:
|
139 |
msgid "Feeds"
|
140 |
msgstr "التغذيات"
|
141 |
|
142 |
-
#:
|
143 |
msgid "User Role"
|
144 |
msgstr "دور المستخدم"
|
145 |
|
146 |
-
#:
|
147 |
msgid "Login Page"
|
148 |
msgstr "صفحة تسجيل الدخول"
|
149 |
|
150 |
-
#:
|
151 |
msgid "Admin Page"
|
152 |
msgstr "صفحة الإدارة"
|
153 |
|
154 |
-
#:
|
155 |
msgid "Self Referral"
|
156 |
msgstr "الإحالة الذاتية"
|
157 |
|
158 |
-
#:
|
159 |
msgid "IP Match"
|
160 |
msgstr "المتطابق IP"
|
161 |
|
162 |
-
#:
|
163 |
msgid "Robot"
|
164 |
msgstr "روبوت"
|
165 |
|
166 |
-
#:
|
167 |
msgid "Currently there are no users online in the site."
|
168 |
msgstr "حالياً هناك مستخدمين متواجدين في الموقع."
|
169 |
|
170 |
-
#:
|
171 |
msgid "Robot Threshold"
|
172 |
msgstr "الحد من الروبوت"
|
173 |
|
174 |
-
#:
|
175 |
msgid "Honey Pot"
|
176 |
msgstr "وعاء العسل"
|
177 |
|
178 |
-
#:
|
179 |
msgid "Page Trending Stats"
|
180 |
msgstr "صفحة الإحصائيات الأكثر رواجاً"
|
181 |
|
182 |
-
#:
|
183 |
msgid "Hostname"
|
184 |
msgstr "اسم المضيف"
|
185 |
|
186 |
-
#:
|
187 |
-
#:
|
188 |
-
#:
|
189 |
-
#:
|
190 |
-
#:
|
191 |
-
#:
|
192 |
-
#:
|
193 |
msgid "Enable or disable this feature"
|
194 |
msgstr "تمكين أو تعطيل هذه الميزة"
|
195 |
|
196 |
-
#:
|
197 |
msgid "Check for online users every"
|
198 |
msgstr "تحقق من المتصلين في الموقع في كل"
|
199 |
|
200 |
-
#:
|
201 |
msgid "Second"
|
202 |
msgstr "ثانية"
|
203 |
|
204 |
-
#:
|
205 |
msgid "Time for the check accurate online user in the site. Now: %s Second"
|
206 |
msgstr "وقت التحقق من المستخدمين المتصلين في الموقع. الآن: %s ثانية"
|
207 |
|
208 |
-
#:
|
209 |
msgid "Record all user"
|
210 |
msgstr "تسجيل جميع المستخدمين"
|
211 |
|
212 |
-
#:
|
213 |
msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
|
214 |
msgstr "يتجاهل إعدادات الإقصاء ويسجل كل المستخدمين التي يتم على الانترنت (بما في ذلك الإحالة الذاتية والروبوتات). وينبغي أن تستخدم فقط لاستكشاف الأخطاء وإصلاحها."
|
215 |
|
216 |
-
#:
|
217 |
msgid "Store entire user agent string"
|
218 |
msgstr "تخزين كامل سلسلة عامل المستخدم"
|
219 |
|
220 |
-
#:
|
221 |
msgid "Only enabled for debugging"
|
222 |
msgstr "تمكين فقط من أجل التصحيح"
|
223 |
|
224 |
-
#:
|
225 |
msgid "Coefficient per visitor"
|
226 |
msgstr "درجة لكل زائر"
|
227 |
|
228 |
-
#:
|
229 |
msgid "For each visit to account for several hits. Currently %s."
|
230 |
msgstr "حساب توجيه النقرات لكل زائر. حالياً %s."
|
231 |
|
232 |
-
#:
|
233 |
-
#:
|
234 |
-
#:
|
235 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:396
|
236 |
msgid "Pages"
|
237 |
msgstr "الصفحات"
|
238 |
|
239 |
-
#:
|
240 |
msgid "Track all pages"
|
241 |
msgstr "تتبع جميع الصفحات"
|
242 |
|
243 |
-
#:
|
244 |
msgid "Strip parameters from URI"
|
245 |
msgstr "معايير الشريط من URI"
|
246 |
|
247 |
-
#:
|
248 |
msgid "This will remove anything after the ? in a URL."
|
249 |
msgstr "سيؤدي هذا إلى إزالة أي شيء بعد؟ في URL."
|
250 |
|
251 |
-
#:
|
252 |
msgid "Disable hits column in post/pages list"
|
253 |
msgstr "تعطيل عمود النقرات في قائمة المقال/الصفحات"
|
254 |
|
255 |
-
#:
|
256 |
msgid "Miscellaneous"
|
257 |
msgstr "متفرقات"
|
258 |
|
259 |
-
#:
|
260 |
msgid "Show stats in menu bar"
|
261 |
msgstr "إظهار الاحصائيات في شريط القوائم"
|
262 |
|
263 |
-
#:
|
264 |
msgid "No"
|
265 |
msgstr "لا"
|
266 |
|
267 |
-
#:
|
268 |
msgid "Yes"
|
269 |
msgstr "نعم"
|
270 |
|
271 |
-
#:
|
272 |
msgid "Show stats in admin menu bar"
|
273 |
msgstr "اظهار الاحصائيات في شريط القوائم الإداري"
|
274 |
|
275 |
-
#:
|
276 |
msgid "Hide admin notices about non active features"
|
277 |
msgstr "اخفاء إشعارات المشرف حول الميزات غير نشطة"
|
278 |
|
279 |
-
#:
|
280 |
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."
|
281 |
msgstr "افتراضيا احصائيات ووردبريس يعرض تنبيها إذا تم تعطيل أي من الميزات الأساسية في صفحة المشرف، وهذا الخيار لتعطيل هذه الإشعارات."
|
282 |
|
283 |
-
#:
|
284 |
msgid "Delete the manual"
|
285 |
msgstr "حذف الدليل"
|
286 |
|
287 |
-
#:
|
288 |
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."
|
289 |
msgstr "افتراضيا احصائيات ووردبريس يخزن دليل المشرف في الدليل المساعد (~ 5 ميج)، إذا تم تمكين هذا الخيار سيتم حذفه الآن، وخلال الترقيات في المستقبل."
|
290 |
|
291 |
-
#:
|
292 |
msgid "Search Engines"
|
293 |
msgstr "محركات البحث"
|
294 |
|
295 |
-
#:
|
296 |
msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
|
297 |
msgstr "تعطيل جميع محركات البحث غير مسموح, سيؤدي ذلك الى تنشيط جميع محركات البحث."
|
298 |
|
299 |
-
#:
|
300 |
msgid "disable"
|
301 |
msgstr "تعطيل"
|
302 |
|
303 |
-
#:
|
304 |
msgid "Disable %s from data collection and reporting."
|
305 |
msgstr "تعطيل %s من جمع البيانات وإعداد التقارير."
|
306 |
|
307 |
-
#:
|
308 |
msgid "Charts"
|
309 |
msgstr "الرسوم البيانية"
|
310 |
|
311 |
-
#:
|
312 |
msgid "Include totals"
|
313 |
msgstr "تتضمن الاجماليات"
|
314 |
|
315 |
-
#:
|
316 |
msgid "Add a total line to charts with multiple values, like the search engine referrals"
|
317 |
msgstr "إضافة سطر مجموع المخططات مع قيم متعددة، مثل إحالات محرك البحث"
|
318 |
|
319 |
-
#:
|
320 |
msgid "GeoIP settings"
|
321 |
msgstr "إعدادات GeoIP"
|
322 |
|
323 |
-
#:
|
324 |
msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
|
325 |
msgstr "خدمات الموقع IP المقدمة من البيانات GeoLite2 التي أنشأتها MaxMind، المتاحة من %s."
|
326 |
|
327 |
-
#:
|
328 |
msgid "GeoIP collection"
|
329 |
msgstr "مجموعة GeoIP"
|
330 |
|
331 |
-
#:
|
332 |
msgid "For get more information and location (country) from visitor, enable this feature."
|
333 |
msgstr "للحصول على مزيد من المعلومات، والمكان (البلد) من الزوار، تمكين هذه الميزة."
|
334 |
|
335 |
-
#:
|
336 |
msgid "Update GeoIP Info"
|
337 |
msgstr "تحديث معلومات GeoIP"
|
338 |
|
339 |
-
#:
|
340 |
msgid "Download GeoIP Database"
|
341 |
msgstr "تحميل قاعدة بيانات GeoIP"
|
342 |
|
343 |
-
#:
|
344 |
msgid "Schedule monthly update of GeoIP DB"
|
345 |
msgstr "جدولة التحديث الشهري لGeoIP DB"
|
346 |
|
347 |
-
#:
|
348 |
msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
|
349 |
msgstr "سيتم جدولة التحميل من قاعدة البيانات GeoIP لمدة 2 يوما بعد يوم الثلاثاء الأول من الشهر."
|
350 |
|
351 |
-
#:
|
352 |
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)."
|
353 |
msgstr "وهذا الخيار أيضا تحميل قاعدة البيانات إذا كان حجم الملف المحلي أقل من 1K (الذي يعني عادة أن طرف البرنامج التي تأتي مع البرنامج المساعد لا يزال في مكانه)."
|
354 |
|
355 |
-
#:
|
356 |
msgid "Populate missing GeoIP after update of GeoIP DB"
|
357 |
msgstr "تعبئة GeoIP في عداد المفقودين بعد التحديث من GeoIP DB"
|
358 |
|
359 |
-
#:
|
360 |
msgid "Update any missing GeoIP data after downloading a new database."
|
361 |
msgstr "تحديث أي بيانات GeoIP مفقودة بعد تحميل قاعدة البيانات الجديدة."
|
362 |
|
363 |
-
#:
|
364 |
msgid "Country code for private IP addresses"
|
365 |
msgstr "رمز البلد لعناوين IP خاصة"
|
366 |
|
367 |
-
#:
|
368 |
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."
|
369 |
msgstr "المعيار اثنين الرمز الدولي بلد إلكتروني (أي الولايات المتحدة = الولايات المتحدة الأمريكية، CA = كندا، الخ) ل(غير قابل للتوجيه) عناوين IP خاصة (أي. 10.0.0.1، 192.158.1.1، 127.0.0.1، وما إلى ذلك). استخدام \"000\" (ثلاثة أصفار) لاستخدام \"غير معروف\"، كما رمز البلد."
|
370 |
|
371 |
-
#:
|
372 |
msgid "GeoIP collection is disabled due to the following reasons:"
|
373 |
msgstr "تم تعطيل مجموعة GeoIP وذلك للأسباب التالية:"
|
374 |
|
375 |
-
#:
|
376 |
msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
|
377 |
msgstr "جمع GeoIP يتطلب PHP %s أو أعلى، يتم تعطيله حاليا نظرا لكونها نسخة PHP مثبتة"
|
378 |
|
379 |
-
#:
|
380 |
msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
|
381 |
msgstr "مجموعة GeoIP تتطلب الملحق cURL PHP و هو غير مفعل على إصدار الـ PHP!"
|
382 |
|
383 |
-
#:
|
384 |
msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
|
385 |
msgstr "مجموعة GeoIP تتطلب الملحق BC Math PHP و هو غير مفعل على إصدار الـ PHP!"
|
386 |
|
387 |
-
#:
|
388 |
msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
|
389 |
msgstr "تم الكشف عن الوضع الآمن في PHP! مجموعة GeoIP غير معتمدة عند تمكين الوضع الآمن في PHP!"
|
390 |
|
391 |
-
#:
|
392 |
msgid "This will permanently delete data from the database each day, are you sure you want to enable this option?"
|
393 |
msgstr "سيؤدي ذلك إلى حذف البيانات من قاعدة البيانات بشكل دائم كل يوم، هل أنت متأكد من أنك تريد تمكين هذا الخيار؟"
|
394 |
|
395 |
-
#:
|
396 |
msgid "Database Maintenance"
|
397 |
msgstr "صيانة قاعدة البيانات"
|
398 |
|
399 |
-
#:
|
|
|
400 |
msgid "Run a daily WP Cron job to prune the databases"
|
401 |
msgstr "تشغيل مهام ووردبريس يوميا للضخ في قاعدة البيانات"
|
402 |
|
403 |
-
#:
|
404 |
msgid "A WP Cron job will be run daily to prune any data older than a set number of days."
|
405 |
msgstr "سيتم تشغيل ألف وظيفة في مهام ووردبريس يوميا لضخ أي بيانات أقدم من العدد المحدد من الأيام."
|
406 |
|
407 |
-
#:
|
408 |
msgid "Prune data older than"
|
409 |
msgstr "ضخ البيانات الأقدم من"
|
410 |
|
411 |
-
#:
|
412 |
msgid "Days"
|
413 |
msgstr "أيام"
|
414 |
|
415 |
-
#:
|
416 |
msgid "The number of days to keep statistics for. Minimum value is 30 days. Invalid values will disable the daily maintenance."
|
417 |
msgstr "عدد الأيام للحفاظ على الإحصاءات المتعلقة. قيمة الحد الأدنى هو 30 يوما. سيتم تعطيل الصيانة اليومية في حال ادخال قيم غير صالحة."
|
418 |
|
419 |
-
#:
|
420 |
msgid "Common Report Options"
|
421 |
msgstr "خيارات تقرير المشترك"
|
422 |
|
423 |
-
#:
|
424 |
msgid "E-mail addresses"
|
425 |
msgstr "عناوين البريد الإلكتروني"
|
426 |
|
427 |
-
#:
|
428 |
msgid "A comma separated list of e-mail addresses to send reports to."
|
429 |
msgstr "أفصل قائمة عناوين البريد الإلكتروني بفاصلة لإرسال التقارير إلى."
|
430 |
|
431 |
-
#:
|
432 |
msgid "Update Reports"
|
433 |
msgstr "تقارير التحديث"
|
434 |
|
435 |
-
#:
|
436 |
-
#:
|
437 |
msgid "Browscap"
|
438 |
msgstr "Browscap"
|
439 |
|
440 |
-
#:
|
441 |
msgid "Send a report whenever the browscap.ini is updated."
|
442 |
msgstr "إرسال تقرير كلما يتم تحديث browscap.ini."
|
443 |
|
444 |
-
#:
|
445 |
-
#:
|
446 |
-
#:
|
447 |
msgid "GeoIP"
|
448 |
msgstr "GeoIP"
|
449 |
|
450 |
-
#:
|
451 |
msgid "Send a report whenever the GeoIP database is updated."
|
452 |
msgstr "إرسال تقرير كلما يتم تحديث قاعدة البيانات GeoIP."
|
453 |
|
454 |
-
#:
|
455 |
msgid "Pruning"
|
456 |
msgstr "تنقيح"
|
457 |
|
458 |
-
#:
|
459 |
msgid "Send a report whenever the pruning of database is run."
|
460 |
msgstr "إرسال تقرير كلما يتم تشغيل التنقيح في قاعدة البيانات."
|
461 |
|
462 |
-
#:
|
463 |
msgid "Upgrade"
|
464 |
msgstr "ترقية"
|
465 |
|
466 |
-
#:
|
467 |
msgid "Send a report whenever the plugin is upgraded."
|
468 |
msgstr "إرسال تقرير كلما تتم ترقية البرنامج المساعد."
|
469 |
|
470 |
-
#:
|
471 |
-
#:
|
472 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:174
|
473 |
msgid "Statistical reporting"
|
474 |
msgstr "تقارير الإحصائيات"
|
475 |
|
476 |
-
#:
|
477 |
msgid "Schedule"
|
478 |
msgstr "جدول"
|
479 |
|
480 |
-
#:
|
481 |
msgid "Select how often to receive statistical report."
|
482 |
msgstr "حدد عدد المرات لتلقي تقرير إحصائي."
|
483 |
|
484 |
-
#:
|
485 |
msgid "Send reports via"
|
486 |
msgstr "إرسال التقارير عن طريق"
|
487 |
|
488 |
-
#:
|
489 |
msgid "Email"
|
490 |
msgstr "البريد الإلكتروني"
|
491 |
|
492 |
-
#:
|
493 |
msgid "SMS"
|
494 |
msgstr "رسائل نصية"
|
495 |
|
496 |
-
#:
|
497 |
msgid "Select delivery method for statistical report."
|
498 |
msgstr "حدد طريقة التسليم للتقرير الإحصائي."
|
499 |
|
500 |
-
#:
|
501 |
msgid "Note: To send SMS text messages please install the %s plugin."
|
502 |
msgstr "ملاحظة: لإرسال رسائل نصية SMS الرجاء تثبيت إضافة %s."
|
503 |
|
504 |
-
#:
|
505 |
msgid "WordPress SMS"
|
506 |
msgstr "الرسائل النصية"
|
507 |
|
508 |
-
#:
|
509 |
msgid "Report body"
|
510 |
msgstr "تقرير الهيئة"
|
511 |
|
512 |
-
#:
|
513 |
msgid "Enter the contents of the report."
|
514 |
msgstr "أدخل محتويات التقرير."
|
515 |
|
516 |
-
#:
|
517 |
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:"
|
518 |
msgstr "أي رمز قصير بدعم من مثبت ووردبريس، وتشمل جميع الاكواد المختصرة لاحصائيات ووردبريس (انظر دليل المشرف للحصول على قائمة رموز المتاحة) معتمدة في نص الرسالة. وهنا بعض الأمثلة:"
|
519 |
|
520 |
-
#:
|
521 |
-
#:
|
522 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:245
|
523 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:492
|
524 |
msgid "User Online"
|
525 |
msgstr "المتواجدين الآن"
|
526 |
|
527 |
-
#:
|
528 |
-
#:
|
529 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:251
|
530 |
msgid "Today Visitor"
|
531 |
msgstr "زوار اليوم"
|
532 |
|
533 |
-
#:
|
534 |
-
#:
|
535 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:248
|
536 |
msgid "Today Visit"
|
537 |
msgstr "زيارات اليوم"
|
538 |
|
539 |
-
#:
|
540 |
-
#:
|
541 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:257
|
542 |
msgid "Yesterday Visitor"
|
543 |
msgstr "زوار الأمس"
|
544 |
|
545 |
-
#:
|
546 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:59
|
547 |
msgid "Yesterday Visit"
|
548 |
msgstr "زيارات الأمس"
|
549 |
|
550 |
-
#:
|
551 |
-
#:
|
552 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:272
|
553 |
msgid "Total Visitor"
|
554 |
msgstr "مجموع الزوار"
|
555 |
|
556 |
-
#:
|
557 |
-
#:
|
558 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:269
|
559 |
msgid "Total Visit"
|
560 |
msgstr "مجموع الزيارات"
|
561 |
|
562 |
-
#:
|
563 |
-
#:
|
564 |
msgid "None"
|
565 |
msgstr "لا شيء"
|
566 |
|
567 |
-
#:
|
568 |
msgid "Summary Statistics"
|
569 |
msgstr "ملخص الاحصائيات"
|
570 |
|
571 |
-
#:
|
572 |
-
#:
|
573 |
msgid "About"
|
574 |
msgstr "حول"
|
575 |
|
576 |
-
#:
|
577 |
msgid "Hits Statistical Chart"
|
578 |
msgstr "الرسم البياني لعدد النقرات"
|
579 |
|
580 |
-
#:
|
581 |
msgid "Search Engine Referrers Statistical Chart"
|
582 |
msgstr "الرسم البياني لمحركات البحث"
|
583 |
|
584 |
-
#:
|
585 |
msgid "Top Pages Visited"
|
586 |
msgstr "أعلى الصفحات زيارة"
|
587 |
|
588 |
-
#:
|
589 |
msgid "Dashboard"
|
590 |
msgstr "لوحة القيادة"
|
591 |
|
592 |
-
#:
|
593 |
-
#:
|
594 |
-
#:
|
595 |
msgid "The following items are global to all users."
|
596 |
msgstr "العناصر التالية هي عالمية لجميع المستخدمين."
|
597 |
|
598 |
-
#:
|
599 |
msgid "Disable dashboard widgets"
|
600 |
msgstr "تعطيل قطع لوحة القيادة"
|
601 |
|
602 |
-
#:
|
603 |
msgid "Disable the dashboard widgets."
|
604 |
msgstr "تعطيل القطع للوحة القيادة"
|
605 |
|
606 |
-
#:
|
607 |
msgid "Page/Post Editor"
|
608 |
msgstr "محرر الصفحة/المشاركة"
|
609 |
|
610 |
-
#:
|
611 |
msgid "Disable post/page editor widget"
|
612 |
msgstr "تعطيل قطعة محرر الصفحة/المشاركة"
|
613 |
|
614 |
-
#:
|
615 |
msgid "Disable the page/post editor widget."
|
616 |
msgstr "تعطيل القطع لمحرر الصفحة/المشاركة"
|
617 |
|
618 |
-
#:
|
619 |
msgid "Map type"
|
620 |
msgstr "نوع الخريطة"
|
621 |
|
622 |
-
#:
|
623 |
-
#:
|
624 |
msgid "Google"
|
625 |
msgstr "جوجل"
|
626 |
|
627 |
-
#:
|
628 |
msgid "JQVMap"
|
629 |
msgstr "JQVMap"
|
630 |
|
631 |
-
#:
|
632 |
msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
|
633 |
msgstr "خيار \"جوجل\" يتوجب استخدام خدمة الخرائط جوجل لرسم زوار مؤخرا. (يتطلب الوصول إلى Google)"
|
634 |
|
635 |
-
#:
|
636 |
msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
|
637 |
msgstr "خيار \"JQVMap\" استخدام مكتبة خرائط JQVMap جافا سكريبت لرسم الزوار مؤخرا. (لا يتطلب أي خدمات خارجية)."
|
638 |
|
639 |
-
#:
|
640 |
msgid "Disable map"
|
641 |
msgstr "تعطيل الخريطة"
|
642 |
|
643 |
-
#:
|
644 |
msgid "Disable the map display"
|
645 |
msgstr "تعطيل عرض الخريطة"
|
646 |
|
647 |
-
#:
|
648 |
msgid "Get country location from Google"
|
649 |
msgstr "الحصول على موقع البلد من جوجل"
|
650 |
|
651 |
-
#:
|
652 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
653 |
msgstr "قد تؤدي هذه الميزة تدهور الأداء عند عرض الإحصاءات وصالحة فقط إذا تم تعيين نوع الخريطة لـ \"جوجل\"."
|
654 |
|
655 |
-
#:
|
656 |
msgid "Overview Widgets to Display"
|
657 |
msgstr "نظرة عامة للقطع المعروضة"
|
658 |
|
659 |
-
#:
|
660 |
msgid "The following items are unique to each user. If you do not select the 'About' widget it will automatically be displayed in the last positon of column A."
|
661 |
msgstr "العناصر التالية هي فريدة من نوعها لكل مستخدم. إذا لم تقم بتحديد قطعة 'حول' سيتم تلقائيا إظهارها في العمود الأخير من A."
|
662 |
|
663 |
-
#:
|
664 |
msgid "Slot"
|
665 |
msgstr "شريحة"
|
666 |
|
667 |
-
#:
|
668 |
msgid "Column A"
|
669 |
msgstr "العمود A"
|
670 |
|
671 |
-
#:
|
672 |
msgid "Column B"
|
673 |
msgstr "العمود B"
|
674 |
|
675 |
-
#:
|
676 |
msgid "Slot 1"
|
677 |
msgstr "الشريحة 1"
|
678 |
|
679 |
-
#:
|
680 |
msgid "Slot 2"
|
681 |
msgstr "الشريحة 2"
|
682 |
|
683 |
-
#:
|
684 |
msgid "Slot 3"
|
685 |
msgstr "الشريحة 3"
|
686 |
|
687 |
-
#:
|
688 |
msgid "Slot 4"
|
689 |
msgstr "الشريحة 4"
|
690 |
|
691 |
-
#:
|
692 |
msgid "Slot 5"
|
693 |
msgstr "الشريحة 5"
|
694 |
|
695 |
-
#:
|
696 |
msgid "Slot 6"
|
697 |
msgstr "الشريحة 6"
|
698 |
|
699 |
-
#:
|
700 |
-
#:
|
701 |
msgid "N/A"
|
702 |
msgstr "N/A"
|
703 |
|
704 |
-
#:
|
705 |
msgid "Slot 7"
|
706 |
msgstr "الشريحة 7"
|
707 |
|
708 |
-
#:
|
709 |
msgid "WP Statisitcs Removal"
|
710 |
msgstr "إزالة احصائيات ووردبريس"
|
711 |
|
712 |
-
#:
|
713 |
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."
|
714 |
msgstr "إزالة احصائيات ووردبريس لن تقوم بإزالة البيانات والإعدادات، يمكنك استخدام هذا الخيار لإزالة البيانات الخاصة بك قبل إلغاء تثبيت البرنامج المساعد."
|
715 |
|
716 |
-
#:
|
717 |
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."
|
718 |
msgstr "بمجرد التقدم في هذا الخيار سيتم حذف الإعدادات أثناء تحميل صفحة هذا النموذج، ولكن سوف تزال تظهر احصائيات ووردبريس في قائمة المشرف الخاص بك حتى يتم تحميل الصفحة مرة أخرى."
|
719 |
|
720 |
-
#:
|
721 |
msgid "Remove data and settings"
|
722 |
msgstr "إزالة البيانات والإعدادات"
|
723 |
|
724 |
-
#:
|
725 |
msgid "Remove"
|
726 |
msgstr "إزالة"
|
727 |
|
728 |
-
#:
|
729 |
msgid "Remove data and settings, this action cannot be undone."
|
730 |
msgstr "إزالة البيانات والإعدادات، لا يمكنك التراجع مستقبلاً."
|
731 |
|
732 |
-
#:
|
733 |
msgid "General"
|
734 |
msgstr "عام"
|
735 |
|
736 |
-
#:
|
737 |
msgid "Notifications"
|
738 |
msgstr "الإشعارات"
|
739 |
|
740 |
-
#:
|
741 |
msgid "Dashboard/Overview"
|
742 |
msgstr "اللوحة/نظرة عامة"
|
743 |
|
744 |
-
#:
|
745 |
msgid "Access/Exclusions"
|
746 |
msgstr "وصول/استثناءات"
|
747 |
|
748 |
-
#:
|
749 |
msgid "browscap"
|
750 |
msgstr "browscap"
|
751 |
|
752 |
-
#:
|
753 |
msgid "Maintenance"
|
754 |
msgstr "صيانة"
|
755 |
|
756 |
-
#:
|
757 |
msgid "Removal"
|
758 |
msgstr "الإزالة"
|
759 |
|
760 |
-
#:
|
761 |
-
#:
|
762 |
-
#:
|
763 |
-
#:
|
764 |
-
#:
|
765 |
-
#:
|
766 |
-
#:
|
767 |
-
#:
|
768 |
msgid "Update"
|
769 |
msgstr "تحديث"
|
770 |
|
771 |
-
#:
|
772 |
-
msgid "Manual not found: %s"
|
773 |
-
msgstr "الدليل لم يعثر على: %s"
|
774 |
-
|
775 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/manual/manual.php:39
|
776 |
-
msgid "Invalid file type selected: %s"
|
777 |
-
msgstr "نوع الملف المختار غير صالح: %s"
|
778 |
-
|
779 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:10
|
780 |
msgid "Once Weekly"
|
781 |
msgstr "مرة كل أسبوع"
|
782 |
|
783 |
-
#:
|
784 |
msgid "Once Every 2 Weeks"
|
785 |
msgstr "مرة كل 2 أسابيع"
|
786 |
|
787 |
-
#:
|
788 |
msgid "Once Every 4 Weeks"
|
789 |
msgstr "مرة كل 4 أسابيع"
|
790 |
|
791 |
-
#:
|
792 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:312
|
793 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:349
|
794 |
msgid "Statistics"
|
795 |
msgstr "الاحصائيات"
|
796 |
|
797 |
-
#:
|
798 |
msgid "Show site stats in sidebar."
|
799 |
msgstr "عرض احصائيات الموقع في الشريط الجانبي."
|
800 |
|
801 |
-
#:
|
802 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:260
|
803 |
msgid "Week Visit"
|
804 |
msgstr "زيارات الأسبوع"
|
805 |
|
806 |
-
#:
|
807 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:263
|
808 |
msgid "Month Visit"
|
809 |
msgstr "زيارات الشهر"
|
810 |
|
811 |
-
#:
|
812 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:266
|
813 |
msgid "Years Visit"
|
814 |
msgstr "زيارات السنة"
|
815 |
|
816 |
-
#:
|
817 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:275
|
818 |
msgid "Total Page Views"
|
819 |
msgstr "مجموع مشاهدات الصفحة"
|
820 |
|
821 |
-
#:
|
822 |
msgid "Search Engine referred"
|
823 |
msgstr "محرك البحث المشار"
|
824 |
|
825 |
-
#:
|
826 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:298
|
827 |
msgid "Total Posts"
|
828 |
msgstr "إجمالي المشاركات"
|
829 |
|
830 |
-
#:
|
831 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:301
|
832 |
msgid "Total Pages"
|
833 |
msgstr "إجمالي الصفحات"
|
834 |
|
835 |
-
#:
|
836 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:304
|
837 |
msgid "Total Comments"
|
838 |
msgstr "إجمالي التعليقات"
|
839 |
|
840 |
-
#:
|
841 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:307
|
842 |
msgid "Total Spams"
|
843 |
msgstr "إجمالي السبام"
|
844 |
|
845 |
-
#:
|
846 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:310
|
847 |
msgid "Total Users"
|
848 |
msgstr "عدد الاعضاء"
|
849 |
|
850 |
-
#:
|
851 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:313
|
852 |
msgid "Average Posts"
|
853 |
msgstr "متوسط المشاركات"
|
854 |
|
855 |
-
#:
|
856 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:316
|
857 |
msgid "Average Comments"
|
858 |
msgstr "متوسط التعليقات"
|
859 |
|
860 |
-
#:
|
861 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:319
|
862 |
msgid "Average Users"
|
863 |
msgstr "متوسط الاعضاء"
|
864 |
|
865 |
-
#:
|
866 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:322
|
867 |
msgid "Last Post Date"
|
868 |
msgstr "تاريخ آخر مشاركة"
|
869 |
|
870 |
-
#:
|
871 |
msgid "Name"
|
872 |
msgstr "الأسم"
|
873 |
|
874 |
-
#:
|
875 |
msgid "Items"
|
876 |
msgstr "البنود"
|
877 |
|
878 |
-
#:
|
879 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:517
|
880 |
msgid "Yesterday visit"
|
881 |
msgstr "زيارات الأمس"
|
882 |
|
883 |
-
#:
|
884 |
msgid "Search Engine Referred"
|
885 |
msgstr "محرك بحث المشارين"
|
886 |
|
887 |
-
#:
|
888 |
msgid "Select type of search engine"
|
889 |
msgstr "حدد نوع من محرك البحث"
|
890 |
|
891 |
-
#:
|
892 |
msgid "ERROR: WP Statistics has detected an unsupported version of PHP, WP Statistics will not function without PHP Version "
|
893 |
msgstr "خطأ: كشف احصائيات ووردبريس أن إصدار PHP لديك غير معتمد، و احصائيات ووردبريس لن تعمل دون PHP النسخة"
|
894 |
|
895 |
-
#:
|
896 |
msgid " or higher!"
|
897 |
msgstr "أو أعلى!"
|
898 |
|
899 |
-
#:
|
900 |
msgid "Your current PHP version is"
|
901 |
msgstr "نسخة PHP الحالي هو"
|
902 |
|
903 |
-
#:
|
904 |
msgid "WP Statistics has been removed, please disable and delete it."
|
905 |
msgstr "تمت إزالة احصائيات ووردبريس، يرجى التعطيل والحذف."
|
906 |
|
907 |
-
|
|
|
|
|
908 |
msgid "WP Statistics"
|
909 |
msgstr "احصائيات ووردبريس"
|
910 |
|
911 |
-
|
|
|
|
|
912 |
msgid "Complete statistics for your WordPress site."
|
913 |
msgstr "إحصاءات كاملة لموقع ووردبريس الخاص بك."
|
914 |
|
915 |
-
#:
|
916 |
msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
|
917 |
msgstr "لم يتم تمكين تتبع المستخدم عبر الإنترنت في احصائيات ووردبريس، يرجى الذهاب إلى %s وتمكينه."
|
918 |
|
919 |
-
#:
|
920 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:112
|
921 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:115
|
922 |
msgid "setting page"
|
923 |
msgstr "صفحة الإعدادات"
|
924 |
|
925 |
-
#:
|
926 |
msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
|
927 |
msgstr "تتبع النقرات في احصائيات ووردبريس لم يتم تمكينه، يرجى الذهاب إلى %s وتمكينه."
|
928 |
|
929 |
-
#:
|
930 |
msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
|
931 |
msgstr "لم يتم تمكين تتبع الزائر في احصائيات ووردبريس، يرجى الذهاب إلى %s وتمكينه."
|
932 |
|
933 |
-
#:
|
934 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
935 |
msgstr "مجموعة GeoIP غير نشطه، يرجى الذهاب إلى %s وتمكين هذه الميزة."
|
936 |
|
937 |
-
#:
|
938 |
msgid "Setting page > GeoIP"
|
939 |
msgstr "صفحة الإعدادات > GeoIP"
|
940 |
|
941 |
-
#:
|
942 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:331
|
943 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:403
|
944 |
msgid "Settings"
|
945 |
msgstr "الإعدادات"
|
946 |
|
947 |
-
#:
|
948 |
msgid "Click here to visit the plugin on WordPress.org"
|
949 |
msgstr "انقر هنا لزيارة صفحة الإضافة على WordPress.org"
|
950 |
|
951 |
-
#:
|
952 |
msgid "Visit WordPress.org page"
|
953 |
msgstr "زيارة صفحة WordPress.org"
|
954 |
|
955 |
-
#:
|
956 |
msgid "Click here to rate and review this plugin on WordPress.org"
|
957 |
msgstr "أنقر هنا لمراجهة وتقييم الإضافة على WordPress.org"
|
958 |
|
959 |
-
#:
|
960 |
msgid "Rate this plugin"
|
961 |
msgstr "ضع تقييمك لهذه الاضافة"
|
962 |
|
963 |
-
#:
|
964 |
msgid "WP Statistics - Hits"
|
965 |
msgstr "احصائيات ووردبريس - الزيارات"
|
966 |
|
967 |
-
#:
|
968 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:352
|
969 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:390
|
970 |
msgid "Overview"
|
971 |
msgstr "نظرة عامة"
|
972 |
|
973 |
-
#:
|
974 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:395
|
975 |
msgid "Online"
|
976 |
msgstr "المتواجدون"
|
977 |
|
978 |
-
#:
|
979 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:397
|
980 |
msgid "Referrers"
|
981 |
msgstr "الدعوات"
|
982 |
|
983 |
-
#:
|
984 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:398
|
985 |
msgid "Searches"
|
986 |
msgstr "عمليات البحث"
|
987 |
|
988 |
-
#:
|
989 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:399
|
990 |
msgid "Search Words"
|
991 |
msgstr "كلمات البحث"
|
992 |
|
993 |
-
#:
|
994 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:400
|
995 |
msgid "Top Visitors Today"
|
996 |
msgstr "أعلى زوار اليوم"
|
997 |
|
998 |
-
#:
|
999 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:402
|
1000 |
msgid "Optimization"
|
1001 |
msgstr "التحسين"
|
1002 |
|
1003 |
-
#:
|
1004 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:366
|
1005 |
msgid "Manual"
|
1006 |
msgstr "الدليل"
|
1007 |
|
1008 |
-
#:
|
1009 |
msgid "Site"
|
1010 |
msgstr "موقع"
|
1011 |
|
1012 |
-
#:
|
1013 |
msgid "Options"
|
1014 |
msgstr "خيارات"
|
1015 |
|
1016 |
-
#:
|
1017 |
msgid "Today visitor"
|
1018 |
msgstr "زوار اليوم"
|
1019 |
|
1020 |
-
#:
|
1021 |
msgid "Today visit"
|
1022 |
msgstr "زيارات اليوم"
|
1023 |
|
1024 |
-
#:
|
1025 |
msgid "Yesterday visitor"
|
1026 |
msgstr "زيارات الأمس"
|
1027 |
|
1028 |
-
#:
|
1029 |
msgid "View Stats"
|
1030 |
msgstr "عرض الإحصائيات"
|
1031 |
|
1032 |
-
#:
|
1033 |
msgid "Download ODF file"
|
1034 |
msgstr "تحميل ملف ODF"
|
1035 |
|
1036 |
-
#:
|
1037 |
msgid "Download HTML file"
|
1038 |
msgstr "تحميل ملف HTML"
|
1039 |
|
1040 |
-
#:
|
1041 |
msgid "Manual file not found."
|
1042 |
msgstr "لم يتم العثور على ملف الدليل."
|
1043 |
|
1044 |
-
#:
|
1045 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:730
|
1046 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:764
|
1047 |
msgid "You do not have sufficient permissions to access this page."
|
1048 |
msgstr "ليس لديك الصلاحيات الكافية لدخول هذه الصفحة."
|
1049 |
|
1050 |
-
#:
|
1051 |
msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
|
1052 |
msgstr "جداول البرنامج المساعد لا وجود لها في قاعدة البيانات! يرجى إعادة تشغيل %s التثبيت الروتيني %s."
|
1053 |
|
1054 |
-
#:
|
1055 |
msgid "WP Statistics %s installed on"
|
1056 |
msgstr "احصائيات ووردبريس %s مثبتة على"
|
1057 |
|
1058 |
-
#:
|
1059 |
msgid "Error downloading GeoIP database from: %s - %s"
|
1060 |
msgstr "خطأ تحميل قاعدة بيانات GeoIP من: %s - %s"
|
1061 |
|
1062 |
-
#:
|
1063 |
msgid "Error could not open downloaded GeoIP database for reading: %s"
|
1064 |
msgstr "خطأ لا يمكن فتح قاعدة البيانات GeoIP التي تم تحميلها للقراءة: %s"
|
1065 |
|
1066 |
-
#:
|
1067 |
msgid "Error could not open destination GeoIP database for writing %s"
|
1068 |
msgstr "خطأ لا يمكن فتح قاعدة البيانات GeoIP لجهة الكتابة %s"
|
1069 |
|
1070 |
-
#:
|
1071 |
msgid "GeoIP Database updated successfully!"
|
1072 |
msgstr "تم تحديث قاعدة بيانات GeoIP بنجاح!"
|
1073 |
|
1074 |
-
#:
|
1075 |
msgid "GeoIP update on"
|
1076 |
msgstr "تحديث GeoIP على"
|
1077 |
|
1078 |
-
#:
|
1079 |
msgid "Error downloading browscap database from: %s - %s"
|
1080 |
msgstr "خطأ في قاعدة بيانات browscap تحميل من: %s - %s"
|
1081 |
|
1082 |
-
#:
|
1083 |
msgid "browscap database updated successfully!"
|
1084 |
msgstr "قاعدة بيانات browscap تم تحديثها بنجاح!"
|
1085 |
|
1086 |
-
#:
|
1087 |
msgid "browscap database updated failed! Cache file too large, reverting to previous browscap.ini."
|
1088 |
msgstr "تحديث قاعدة بيانات browscap فشل! ملف الكاش كبير جدا، تم الرجوع إلى browscap.ini السابق."
|
1089 |
|
1090 |
-
#:
|
1091 |
msgid "browscap database updated failed! New browscap.ini is mis-identifing user agents as crawlers, reverting to previous browscap.ini."
|
1092 |
msgstr "تحديث قاعدة بيانات browscap فشل! لم تتم تحديد هوية browscap.ini الجديدة لكلا من المستخدم والزواحف، وتم الرجوع إلى browscap.ini السابق."
|
1093 |
|
1094 |
-
#:
|
1095 |
msgid "browscap already at current version!"
|
1096 |
msgstr "browscap بالفعل في النسخة الحالية!"
|
1097 |
|
1098 |
-
#:
|
1099 |
msgid "Browscap.ini update on"
|
1100 |
msgstr "تحديث Browscap.ini على"
|
1101 |
|
1102 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1103 |
msgid "Quick Stats"
|
1104 |
msgstr "إحصائيات سريعة"
|
1105 |
|
1106 |
-
#:
|
1107 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:54
|
1108 |
msgid "Top 10 Browsers"
|
1109 |
msgstr "أفضل 10 متصفحات"
|
1110 |
|
1111 |
-
#:
|
1112 |
-
#:
|
1113 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:27
|
1114 |
msgid "Top 10 Countries"
|
1115 |
msgstr "أعلى 10 دول"
|
1116 |
|
1117 |
-
#:
|
1118 |
msgid "Today's Visitor Map"
|
1119 |
msgstr "خريطة زوار اليوم"
|
1120 |
|
1121 |
-
#:
|
1122 |
-
#:
|
1123 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:8
|
1124 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:8
|
1125 |
msgid "Hit Statistics"
|
1126 |
msgstr "احصائية النقرات"
|
1127 |
|
1128 |
-
#:
|
1129 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:11
|
1130 |
msgid "Top 10 Pages"
|
1131 |
msgstr "أفضل 10 صفحات"
|
1132 |
|
1133 |
-
#:
|
1134 |
-
#:
|
1135 |
-
#:
|
1136 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:39
|
1137 |
msgid "Recent Visitors"
|
1138 |
msgstr "الزيارات الأخيرة"
|
1139 |
|
1140 |
-
#:
|
1141 |
-
#:
|
1142 |
-
#:
|
1143 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:13
|
1144 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:26
|
1145 |
msgid "Top Referring Sites"
|
1146 |
msgstr "أعلى المواقع اشارة"
|
1147 |
|
1148 |
-
#:
|
1149 |
-
#:
|
1150 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:76
|
1151 |
msgid "Search Engine Referrals"
|
1152 |
msgstr "إحالات محرك البحث"
|
1153 |
|
1154 |
-
#:
|
1155 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:8
|
1156 |
msgid "Summary"
|
1157 |
msgstr "ملخص"
|
1158 |
|
1159 |
-
#:
|
1160 |
-
#:
|
1161 |
-
#:
|
1162 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:37
|
1163 |
msgid "Latest Search Words"
|
1164 |
msgstr "أحدث كلمات البحث"
|
1165 |
|
1166 |
-
#:
|
1167 |
-
#:
|
1168 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:35
|
1169 |
msgid "Top 10 Visitors Today"
|
1170 |
msgstr "أفضل 10 زوار اليوم"
|
1171 |
|
1172 |
-
#:
|
1173 |
msgid "Please reload the dashboard to display the content of this widget."
|
1174 |
msgstr "يرجى تحميل لوحة المعلومات لعرض محتوى هذه القطعة."
|
1175 |
|
1176 |
-
#:
|
1177 |
msgid "WP Statistics Overview"
|
1178 |
msgstr "نظرة عامة لإحصائيات ووردبريس"
|
1179 |
|
1180 |
-
#:
|
1181 |
msgid "This post is not yet published."
|
1182 |
msgstr "لم يتم نشر هذا المقال حتى الآن."
|
1183 |
|
1184 |
-
#:
|
1185 |
msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
|
1186 |
msgstr "غير قادر على تحميل قاعدة البيانات GeoIP، تأكد من أنك قمت بتنزيلها في صفحة الإعدادات."
|
1187 |
|
1188 |
-
#:
|
1189 |
msgid "Updated %s GeoIP records in the visitors database."
|
1190 |
msgstr "تحديث السجلات %s GeoIP في قاعدة بيانات الزوار."
|
1191 |
|
1192 |
-
#:
|
1193 |
-
#:
|
1194 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:50
|
1195 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:83
|
1196 |
msgid "%s data older than %s days purged successfully."
|
1197 |
msgstr "البيانات %s مضى عليها أكثر من %s أيام طهرت فيه بنجاح."
|
1198 |
|
1199 |
-
#:
|
1200 |
-
#:
|
1201 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:52
|
1202 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:85
|
1203 |
msgid "No records found to purge from %s!"
|
1204 |
msgstr "لا توجد سجلات للتخلص من %s!"
|
1205 |
|
1206 |
-
#:
|
1207 |
msgid "Database pruned on"
|
1208 |
msgstr "قاعدة بيانات مجردة على"
|
1209 |
|
1210 |
-
#:
|
1211 |
msgid "Please select a value over 30 days."
|
1212 |
msgstr "يرجى تحديد قيمة أكثر من 30 يوما."
|
1213 |
|
1214 |
-
#:
|
1215 |
msgid "Browser Statistics"
|
1216 |
msgstr "إحصائيات المتصفح"
|
1217 |
|
1218 |
-
#:
|
1219 |
-
#:
|
1220 |
-
#:
|
1221 |
-
#:
|
1222 |
-
#:
|
1223 |
-
#:
|
1224 |
-
#:
|
1225 |
-
#:
|
1226 |
-
#:
|
1227 |
-
#:
|
1228 |
-
#:
|
1229 |
-
#:
|
1230 |
-
#:
|
1231 |
-
#:
|
1232 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:6
|
1233 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:9
|
1234 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:8
|
1235 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:7
|
1236 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:8
|
1237 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:9
|
1238 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:6
|
1239 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:11
|
1240 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:6
|
1241 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:7
|
1242 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:7
|
1243 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:6
|
1244 |
msgid "Click to toggle"
|
1245 |
msgstr "انقر للتبديل"
|
1246 |
|
1247 |
-
#:
|
1248 |
-
#:
|
1249 |
-
#:
|
1250 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:316
|
1251 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:391
|
1252 |
msgid "Browsers"
|
1253 |
msgstr "المتصفحات"
|
1254 |
|
1255 |
-
#:
|
1256 |
msgid "Browsers by type"
|
1257 |
msgstr "حسب نوع المتصفحات"
|
1258 |
|
1259 |
-
#:
|
1260 |
-
#:
|
1261 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:302
|
1262 |
msgid "Platform"
|
1263 |
msgstr "المنصة"
|
1264 |
|
1265 |
-
#:
|
1266 |
msgid "Browsers by platform"
|
1267 |
msgstr "حسب نوع المنصة"
|
1268 |
|
1269 |
-
#:
|
1270 |
msgid "%s Version"
|
1271 |
msgstr "الإصدار %s"
|
1272 |
|
1273 |
-
#:
|
1274 |
msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
|
1275 |
msgstr "تنبيه: لم يتم تعيين الاستثناءات حاليا ليتم تسجيلها، قد لا تستطيع عكس نتائج الإحصائيات الحالية أدناه!"
|
1276 |
|
1277 |
-
#:
|
1278 |
msgid "Exclusions Statistics"
|
1279 |
msgstr "استثناءات الاحصائيات"
|
1280 |
|
1281 |
-
#:
|
1282 |
msgid "10 Days"
|
1283 |
msgstr "10 أيام"
|
1284 |
|
1285 |
-
#:
|
1286 |
msgid "20 Days"
|
1287 |
msgstr "20 يوم"
|
1288 |
|
1289 |
-
#:
|
1290 |
msgid "30 Days"
|
1291 |
msgstr "30 يو م"
|
1292 |
|
1293 |
-
#:
|
1294 |
msgid "2 Months"
|
1295 |
msgstr "شهرين"
|
1296 |
|
1297 |
-
#:
|
1298 |
msgid "3 Months"
|
1299 |
msgstr "3 أشهر"
|
1300 |
|
1301 |
-
#:
|
1302 |
msgid "6 Months"
|
1303 |
msgstr "6 أشهر"
|
1304 |
|
1305 |
-
#:
|
1306 |
msgid "9 Months"
|
1307 |
msgstr "9 أشهر"
|
1308 |
|
1309 |
-
#:
|
1310 |
msgid "1 Year"
|
1311 |
msgstr "سنة"
|
1312 |
|
1313 |
-
#:
|
1314 |
-
msgid "Total Exclusions: %s"
|
1315 |
-
msgstr "مجموع الاستثناءات: %s"
|
1316 |
-
|
1317 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:74
|
1318 |
msgid "Exclusions Statistical Chart"
|
1319 |
msgstr "الرسم البياني لإحصائيات الاستثناءات"
|
1320 |
|
1321 |
-
#:
|
1322 |
msgid "Excluded hits in the last"
|
1323 |
msgstr "استبعاد النقرات في الأخير"
|
1324 |
|
1325 |
-
#:
|
1326 |
-
#:
|
1327 |
-
#:
|
1328 |
-
#:
|
1329 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:55
|
1330 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:151
|
1331 |
msgid "days"
|
1332 |
msgstr "أيام"
|
1333 |
|
1334 |
-
#:
|
1335 |
msgid "Number of excluded hits"
|
1336 |
msgstr "عدد الزيارات المستبعدة"
|
1337 |
|
1338 |
-
#:
|
1339 |
msgid "Hits Statistics Chart"
|
1340 |
msgstr "الرسم البياني لاحصائيات النقرات"
|
1341 |
|
1342 |
-
#:
|
1343 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:51
|
1344 |
msgid "Hits in the last"
|
1345 |
msgstr "آخر النقرات"
|
1346 |
|
1347 |
-
#:
|
1348 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:72
|
1349 |
msgid "Number of visits and visitors"
|
1350 |
msgstr "عدد الزيارات والزوار"
|
1351 |
|
1352 |
-
#:
|
1353 |
-
#:
|
1354 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:32
|
1355 |
msgid "Visit"
|
1356 |
msgstr "زيارة"
|
1357 |
|
1358 |
-
#:
|
1359 |
-
#:
|
1360 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:31
|
1361 |
msgid "Visitor"
|
1362 |
msgstr "زائر"
|
1363 |
|
1364 |
-
#:
|
1365 |
msgid "Latest Search Word Statistics"
|
1366 |
msgstr "أحصائيات أحدث كلمات البحث"
|
1367 |
|
1368 |
-
#:
|
1369 |
-
#:
|
1370 |
-
#:
|
1371 |
-
#:
|
1372 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:71
|
1373 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:30
|
1374 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:32
|
1375 |
msgid "#hash#"
|
1376 |
msgstr "#hash#"
|
1377 |
|
1378 |
-
#:
|
1379 |
-
#:
|
1380 |
-
#:
|
1381 |
-
#:
|
1382 |
-
#:
|
1383 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:39
|
1384 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:33
|
1385 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:113
|
1386 |
msgid "Map"
|
1387 |
msgstr "خريطة"
|
1388 |
|
1389 |
-
#:
|
1390 |
-
#:
|
1391 |
-
#:
|
1392 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:198
|
1393 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
|
1394 |
msgid "Page"
|
1395 |
msgstr "صفحة"
|
1396 |
|
1397 |
-
#:
|
1398 |
-
#:
|
1399 |
-
#:
|
1400 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:198
|
1401 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
|
1402 |
msgid "From"
|
1403 |
msgstr "من"
|
1404 |
|
1405 |
-
#:
|
1406 |
-
#:
|
1407 |
-
#:
|
1408 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:135
|
1409 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:294
|
1410 |
msgid "All"
|
1411 |
msgstr "الكل"
|
1412 |
|
1413 |
-
#:
|
1414 |
msgid "Recent Visitor Statistics"
|
1415 |
msgstr "آخر إحصائيات الزوار"
|
1416 |
|
1417 |
-
#:
|
1418 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:18
|
1419 |
msgid "Online Users"
|
1420 |
msgstr "المستخدمين على الانترنت"
|
1421 |
|
1422 |
-
#:
|
1423 |
msgid "Online for "
|
1424 |
msgstr "متصل لـ"
|
1425 |
|
1426 |
-
#:
|
1427 |
msgid "Page Trend for Post ID"
|
1428 |
msgstr "صفحة الأكثر رواجاً بمعرف المشاركة"
|
1429 |
|
1430 |
-
#:
|
1431 |
msgid "Page Trend"
|
1432 |
msgstr "الصفحة الأكثر رواجاً"
|
1433 |
|
1434 |
-
#:
|
1435 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:28
|
1436 |
msgid "Search Engine Referral Statistics"
|
1437 |
msgstr "إحصائيات مرجعية محرك البحث"
|
1438 |
|
1439 |
-
#:
|
1440 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:55
|
1441 |
msgid "Search engine referrals in the last"
|
1442 |
msgstr "إحالات محرك البحث في الأخير"
|
1443 |
|
1444 |
-
#:
|
1445 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:76
|
1446 |
msgid "Number of referrals"
|
1447 |
msgstr "عدد الإحالات"
|
1448 |
|
1449 |
-
#:
|
1450 |
-
#:
|
1451 |
-
#:
|
1452 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:66
|
1453 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:106
|
1454 |
msgid "Total"
|
1455 |
msgstr "المجموع"
|
1456 |
|
1457 |
-
#:
|
1458 |
msgid "Top Countries"
|
1459 |
msgstr "أفضل الدول"
|
1460 |
|
1461 |
-
#:
|
1462 |
-
#:
|
1463 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:27
|
1464 |
msgid "Rank"
|
1465 |
msgstr "الترتيب"
|
1466 |
|
1467 |
-
#:
|
1468 |
-
#:
|
1469 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:29
|
1470 |
msgid "Flag"
|
1471 |
msgstr "العلم"
|
1472 |
|
1473 |
-
#:
|
1474 |
-
#:
|
1475 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:30
|
1476 |
msgid "Country"
|
1477 |
msgstr "الدولة"
|
1478 |
|
1479 |
-
#:
|
1480 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:33
|
1481 |
msgid "Visitor Count"
|
1482 |
msgstr "عدد الزوار"
|
1483 |
|
1484 |
-
#:
|
1485 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:149
|
1486 |
msgid "Top Pages"
|
1487 |
msgstr "أفضل الصفحات"
|
1488 |
|
1489 |
-
#:
|
1490 |
msgid "Top 5 Pages Trends"
|
1491 |
msgstr "الصفحات الـ5 الأكثر رواجاً"
|
1492 |
|
1493 |
-
#:
|
1494 |
msgid "Top 5 Page Trending Stats"
|
1495 |
msgstr "احصائيات الصفحات الـ5 الأكثر رواجاً"
|
1496 |
|
1497 |
-
#:
|
1498 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/page.php:61
|
1499 |
msgid "Number of Hits"
|
1500 |
msgstr "عدد الزيارات"
|
1501 |
|
1502 |
-
#:
|
1503 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:32
|
1504 |
msgid "No page title found"
|
1505 |
msgstr "لم يتم العثور على عنوان الصفحة"
|
1506 |
|
1507 |
-
#:
|
1508 |
-
#:
|
1509 |
-
#:
|
1510 |
-
#:
|
1511 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:127
|
1512 |
msgid "Visits"
|
1513 |
msgstr "الزيارات"
|
1514 |
|
1515 |
-
#:
|
1516 |
msgid "To be added soon"
|
1517 |
msgstr "تضاف قريبا"
|
1518 |
|
1519 |
-
#:
|
1520 |
msgid "Referring sites from"
|
1521 |
msgstr "مواقع اشارة من"
|
1522 |
|
1523 |
-
#:
|
1524 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:30
|
1525 |
msgid "References"
|
1526 |
msgstr "المراجع"
|
1527 |
|
1528 |
-
#:
|
1529 |
msgid "Top 100 Visitors Today"
|
1530 |
msgstr "أفضل 100 زائر اليوم"
|
1531 |
|
1532 |
-
#:
|
1533 |
msgid "About WP Statistics Version %s"
|
1534 |
msgstr "حول إصدار احصائيات ووردبريس %s"
|
1535 |
|
1536 |
-
#:
|
1537 |
msgid "Website"
|
1538 |
msgstr "الموقع"
|
1539 |
|
1540 |
-
#:
|
1541 |
msgid "Rate and Review"
|
1542 |
msgstr "التقييم والمراجعة"
|
1543 |
|
1544 |
-
#:
|
1545 |
msgid "More Information"
|
1546 |
msgstr "مزيد من المعلومات"
|
1547 |
|
1548 |
-
#:
|
1549 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:12
|
1550 |
msgid "This product includes GeoLite2 data created by MaxMind, available from %s."
|
1551 |
msgstr "يتضمن هذا المنتج البيانات GeoLite2 التي أنشأتها MaxMind، المتاحة من %s."
|
1552 |
|
1553 |
-
#:
|
1554 |
-
#:
|
1555 |
-
#:
|
1556 |
-
#:
|
1557 |
-
#:
|
1558 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:13
|
1559 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:7
|
1560 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:8
|
1561 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:8
|
1562 |
msgid "More"
|
1563 |
msgstr "المزيد"
|
1564 |
|
1565 |
-
#:
|
1566 |
msgid "Other"
|
1567 |
msgstr "أخرى"
|
1568 |
|
1569 |
-
#:
|
1570 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:9
|
1571 |
msgid "Today Visitors Map"
|
1572 |
msgstr "خريطة زوار اليوم"
|
1573 |
|
1574 |
-
#:
|
1575 |
msgid "Address"
|
1576 |
msgstr "العنوان"
|
1577 |
|
1578 |
-
#:
|
1579 |
msgid "User(s) Online"
|
1580 |
msgstr "المتصلين على الانترنت"
|
1581 |
|
1582 |
-
#:
|
1583 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:81
|
1584 |
msgid "Today"
|
1585 |
msgstr "اليوم"
|
1586 |
|
1587 |
-
#:
|
1588 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:82
|
1589 |
msgid "Yesterday"
|
1590 |
msgstr "الأمس"
|
1591 |
|
1592 |
-
#:
|
1593 |
msgid "Daily Total"
|
1594 |
msgstr "المجموع اليومي"
|
1595 |
|
1596 |
-
#:
|
1597 |
msgid "Current Time and Date"
|
1598 |
msgstr "التوقيت الحالي و التاريخ"
|
1599 |
|
1600 |
-
#:
|
1601 |
msgid "(Adjustment)"
|
1602 |
msgstr "(التوافق)"
|
1603 |
|
1604 |
-
#:
|
1605 |
msgid "Date: %s"
|
1606 |
msgstr "التاريخ: %s"
|
1607 |
|
1608 |
-
#:
|
1609 |
msgid "Time: %s"
|
1610 |
msgstr "التوقيت: %s"
|
1611 |
|
1612 |
-
#:
|
1613 |
-
#:
|
1614 |
-
#:
|
1615 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:394
|
1616 |
msgid "Hits"
|
1617 |
msgstr "نقرات"
|
1618 |
|
1619 |
-
#:
|
1620 |
msgid "IP"
|
1621 |
msgstr "IP"
|
1622 |
|
1623 |
-
#:
|
1624 |
msgid "Agent"
|
1625 |
msgstr "وكيل"
|
1626 |
|
1627 |
-
#:
|
1628 |
-
#:
|
1629 |
msgid "Version"
|
1630 |
msgstr "الإصدار"
|
1631 |
|
1632 |
-
#:
|
1633 |
-
#:
|
1634 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:5
|
1635 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:5
|
1636 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:6
|
1637 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:6
|
1638 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/manual/manual.php:5
|
1639 |
msgid "Access denied!"
|
1640 |
msgstr "تم رفض الوصول!"
|
1641 |
|
1642 |
-
#:
|
1643 |
msgid "%s agent data deleted successfully."
|
1644 |
msgstr "%s تم حذف بيانات الوكيل بنجاح."
|
1645 |
|
1646 |
-
#:
|
1647 |
msgid "No agent data found to remove!"
|
1648 |
msgstr "لا توجد بيانات وكيل لإزالتها!"
|
1649 |
|
1650 |
-
#:
|
1651 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:21
|
1652 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:42
|
1653 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:80
|
1654 |
msgid "Please select the desired items."
|
1655 |
msgstr "يرجى تحديد العناصر المطلوبة."
|
1656 |
|
1657 |
-
#:
|
1658 |
msgid "%s platform data deleted successfully."
|
1659 |
msgstr "%s تم حذف بيانات المنصة بنجاح."
|
1660 |
|
1661 |
-
#:
|
1662 |
msgid "No platform data found to remove!"
|
1663 |
msgstr "لا توجد بيانات منصة لإزالتها!"
|
1664 |
|
1665 |
-
#:
|
1666 |
msgid "%s table data deleted successfully."
|
1667 |
msgstr "%s تم حذف بيانات الجدول بنجاح."
|
1668 |
|
1669 |
-
#:
|
1670 |
msgid "Error, %s not emptied!"
|
1671 |
msgstr "خطأ, %s لم يتم التفريغ!"
|
1672 |
|
1673 |
-
#:
|
1674 |
msgid "Database Setup"
|
1675 |
msgstr "إعداد قاعدة البيانات"
|
1676 |
|
1677 |
-
#:
|
1678 |
msgid "Re-run Install"
|
1679 |
msgstr "إعادة تشغيل التثبيت"
|
1680 |
|
1681 |
-
#:
|
1682 |
msgid "Install Now!"
|
1683 |
msgstr "تثبيت الآن!"
|
1684 |
|
1685 |
-
#:
|
1686 |
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."
|
1687 |
msgstr "لسبب ما اذا فقدت بيانات في قاعدة البيانات أو احد العناصر الأساسية, هذا الأمر سيعيد تنفيذ العملية مرة أخرى."
|
1688 |
|
1689 |
-
#:
|
1690 |
msgid "Database Index"
|
1691 |
msgstr "فهرس قاعدة بيانات"
|
1692 |
|
1693 |
-
#:
|
1694 |
-
#:
|
1695 |
-
#:
|
1696 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:392
|
1697 |
msgid "Countries"
|
1698 |
msgstr "الدول"
|
1699 |
|
1700 |
-
#:
|
1701 |
-
#:
|
1702 |
-
#:
|
1703 |
-
#:
|
1704 |
msgid "Update Now!"
|
1705 |
msgstr "تحديث الآن!"
|
1706 |
|
1707 |
-
#:
|
1708 |
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."
|
1709 |
msgstr "المنصب القديم لإضافة احصائيات ووردبريس تسمح للإدخالات المتكررة في جداول الزوار في بعض الحالات. بتثبيت أحدث منتج يجب تواجد الفهرس في الجداول. لإنشاء فهرس لمنتج قديم يجب أن يتم حذف الإدخالات المكررة أولاً. أنقر على \"تحديث الآن\" وسيقوم تلقائيا بفحص جدول الزوار وحذف كافة الإدخالات المكررة وإضافة الفهرس."
|
1710 |
|
1711 |
-
#:
|
1712 |
msgid "This operation could take a long time on installs with many rows in the visitors table."
|
1713 |
msgstr "هذه العملية يمكن أن تستغرق وقتا طويلا على تثبيت مع العديد من الصفوف في جدول الزوار."
|
1714 |
|
1715 |
-
#:
|
1716 |
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."
|
1717 |
msgstr "الإصدارات القديمة من منتج احصائيات ووردبريس تسمح للإدخالات المكررة في جدول الزوار في بعض الحالات. عند تثبيت إصدارات أحدث من ذلك سيتم إضافة فهرس فريد على الجدول."
|
1718 |
|
1719 |
-
#:
|
1720 |
-
#:
|
1721 |
msgid "Congratulations, your installation is already up to date, nothing to do."
|
1722 |
msgstr "تهانينا، التثبيت موجود بالفعل حتى الآن، لا شيء للقيام به."
|
1723 |
|
1724 |
-
#:
|
1725 |
-
#:
|
1726 |
msgid "Export"
|
1727 |
msgstr "تصدير"
|
1728 |
|
1729 |
-
#:
|
1730 |
msgid "Export from"
|
1731 |
msgstr "التصدير من"
|
1732 |
|
1733 |
-
#:
|
1734 |
-
#:
|
1735 |
-
#:
|
1736 |
-
#:
|
1737 |
-
#:
|
1738 |
-
#:
|
1739 |
-
#:
|
1740 |
msgid "Please select"
|
1741 |
msgstr "الرجاء تحديد"
|
1742 |
|
1743 |
-
#:
|
1744 |
msgid "Select the table for the output file."
|
1745 |
msgstr "حدد الجدول لملف الإخراج."
|
1746 |
|
1747 |
-
#:
|
1748 |
msgid "Export To"
|
1749 |
msgstr "التصدير لـ"
|
1750 |
|
1751 |
-
#:
|
1752 |
msgid "Select the output file type."
|
1753 |
msgstr "حدد نوع ملف الإخراج."
|
1754 |
|
1755 |
-
#:
|
1756 |
msgid "Include Header Row"
|
1757 |
msgstr "تضمين رأس الصف"
|
1758 |
|
1759 |
-
#:
|
1760 |
msgid "Include a header row as the first line of the exported file."
|
1761 |
msgstr "تضمين صف الرأس كما في السطر الأول من الملف الذي تم تصديره."
|
1762 |
|
1763 |
-
#:
|
1764 |
msgid "Start Now!"
|
1765 |
msgstr "ابدأ الآن!"
|
1766 |
|
1767 |
-
#:
|
1768 |
msgid "Historical Values"
|
1769 |
msgstr "القيم التاريخية"
|
1770 |
|
1771 |
-
#:
|
1772 |
msgid "Note: As you have just purged the database you must reload this page for these numbers to be correct."
|
1773 |
msgstr "ملاحظة: كلما قمت بتطهير قاعدة البيانات يجب تحميل هذه الصفحة لتكون الأرقام صحيحة."
|
1774 |
|
1775 |
-
#:
|
1776 |
-
#:
|
1777 |
-
#:
|
1778 |
-
#:
|
1779 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:401
|
1780 |
msgid "Visitors"
|
1781 |
msgstr "الزوار"
|
1782 |
|
1783 |
-
#:
|
1784 |
msgid "Number of historical number of visitors to the site (current value is %s)."
|
1785 |
msgstr "العدد التاريخي لزوار الموقع (القيمة الحالية هي %s)."
|
1786 |
|
1787 |
-
#:
|
1788 |
msgid "Number of historical number of visits to the site (current value is %s)."
|
1789 |
msgstr "العدد التاريخي لزيارات الموقع (القيمة الحالية هي %s)."
|
1790 |
|
1791 |
-
#:
|
1792 |
msgid "Update now!"
|
1793 |
msgstr "تحديث الآن!"
|
1794 |
|
1795 |
-
#:
|
1796 |
-
#:
|
1797 |
-
#:
|
1798 |
-
#:
|
|
|
1799 |
msgid "Are you sure?"
|
1800 |
msgstr "هل أنت متأكد؟"
|
1801 |
|
1802 |
-
#:
|
1803 |
msgid "Data"
|
1804 |
msgstr "المعطيات"
|
1805 |
|
1806 |
-
#:
|
1807 |
msgid "Empty Table"
|
1808 |
msgstr "تفريغ الجدول"
|
1809 |
|
1810 |
-
#:
|
1811 |
msgid "All data table will be lost."
|
1812 |
msgstr "سيتم فقدان جميع البيانات الجدول."
|
1813 |
|
1814 |
-
#:
|
1815 |
msgid "Clear now!"
|
1816 |
msgstr "مسح الآن!"
|
1817 |
|
1818 |
-
#:
|
1819 |
msgid "Purge records older than"
|
1820 |
msgstr "سجلات الضخ أقدم من"
|
1821 |
|
1822 |
-
#:
|
1823 |
msgid "Deleted user statistics data older than the selected number of days. Minimum value is 30 days."
|
1824 |
msgstr "بيانات الاحصائيات المستخدم المحذوف أقدم من الرقم المحدد من الأيام. قيمة الحد الأدنى هو 30 يوما."
|
1825 |
|
1826 |
-
#:
|
|
|
1827 |
msgid "Purge now!"
|
1828 |
msgstr "ضخ الآن!"
|
1829 |
|
1830 |
-
#:
|
1831 |
msgid "Delete User Agent Types"
|
1832 |
msgstr "حذف أنواع وكيل العضو"
|
1833 |
|
1834 |
-
#:
|
1835 |
msgid "Delete Agents"
|
1836 |
msgstr "حذف الوكلاء"
|
1837 |
|
1838 |
-
#:
|
1839 |
msgid "All visitor data will be lost for this agent type."
|
1840 |
msgstr "سيتم فقد جميع البيانات الزائر لهذا النوع."
|
1841 |
|
1842 |
-
#:
|
1843 |
-
#:
|
1844 |
msgid "Delete now!"
|
1845 |
msgstr "حذف الآن!"
|
1846 |
|
1847 |
-
#:
|
1848 |
msgid "Delete Platforms"
|
1849 |
msgstr "حذف المنصات"
|
1850 |
|
1851 |
-
#:
|
1852 |
msgid "All visitor data will be lost for this platform type."
|
1853 |
msgstr "سيتم فقد جميع البيانات الزائر لنوع هذه المنصة."
|
1854 |
|
1855 |
-
#:
|
1856 |
msgid "Resources"
|
1857 |
msgstr "الموارد"
|
1858 |
|
1859 |
-
#:
|
1860 |
-
#:
|
1861 |
msgid "Memory usage in PHP"
|
1862 |
msgstr "استخدام الذاكرة في PHP"
|
1863 |
|
1864 |
-
#:
|
1865 |
-
#:
|
1866 |
msgid "Byte"
|
1867 |
msgstr "بايت"
|
1868 |
|
1869 |
-
#:
|
1870 |
msgid "Last Overview page memory usage"
|
1871 |
msgstr "آخر نظرة عامة على استخدام صفحة الذاكرة"
|
1872 |
|
1873 |
-
#:
|
1874 |
msgid "Memory usage in the overview page"
|
1875 |
msgstr "استخدام الذاكرة في صفحة نظرة عامة"
|
1876 |
|
1877 |
-
#:
|
1878 |
msgid "PHP Memory Limit"
|
1879 |
msgstr "حدود ذاكرة PHP"
|
1880 |
|
1881 |
-
#:
|
1882 |
msgid "The memory limit a script is allowed to consume, set in php.ini."
|
1883 |
msgstr "حدود الذاكرة تسمح للبرنامج النصي باستهلاك حد معين، قم بتعيين ملف php.ini."
|
1884 |
|
1885 |
-
#:
|
1886 |
-
#:
|
1887 |
-
#:
|
1888 |
-
#:
|
1889 |
-
#:
|
1890 |
-
#:
|
1891 |
msgid "Number of rows in the %s table"
|
1892 |
msgstr "عدد الصفوف في جدول %s"
|
1893 |
|
1894 |
-
#:
|
1895 |
-
#:
|
1896 |
-
#:
|
1897 |
-
#:
|
1898 |
-
#:
|
1899 |
-
#:
|
1900 |
msgid "Row"
|
1901 |
msgstr "صف"
|
1902 |
|
1903 |
-
#:
|
1904 |
-
#:
|
1905 |
-
#:
|
1906 |
-
#:
|
1907 |
-
#:
|
1908 |
-
#:
|
1909 |
msgid "Number of rows"
|
1910 |
msgstr "عدد الصفوف"
|
1911 |
|
1912 |
-
#:
|
1913 |
msgid "Version Info"
|
1914 |
msgstr "معلومات الإصدار"
|
1915 |
|
1916 |
-
#:
|
1917 |
msgid "WP Statistics Version"
|
1918 |
msgstr "نسخة WP Statistics"
|
1919 |
|
1920 |
-
#:
|
1921 |
msgid "The WP Statistics version you are running."
|
1922 |
msgstr "إصدار WP Statistics."
|
1923 |
|
1924 |
-
#:
|
1925 |
msgid "PHP Version"
|
1926 |
msgstr "نسخة PHP"
|
1927 |
|
1928 |
-
#:
|
1929 |
msgid "The PHP version you are running."
|
1930 |
msgstr "إصدار PHP."
|
1931 |
|
1932 |
-
#:
|
1933 |
msgid "PHP Safe Mode"
|
1934 |
msgstr "الوضع الآمن PHP"
|
1935 |
|
1936 |
-
#:
|
1937 |
msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
|
1938 |
msgstr "هل الوضع الآمن نشط. الكود GeoIP غير معتمد في الوضع الآمن."
|
1939 |
|
1940 |
-
#:
|
1941 |
msgid "jQuery Version"
|
1942 |
msgstr "نسخة jQuery"
|
1943 |
|
1944 |
-
#:
|
1945 |
msgid "The jQuery version you are running."
|
1946 |
msgstr "إصدار jQuery."
|
1947 |
|
1948 |
-
#:
|
1949 |
msgid "cURL Version"
|
1950 |
msgstr "إصدار cURL"
|
1951 |
|
1952 |
-
#:
|
1953 |
msgid "cURL not installed"
|
1954 |
msgstr "cURL غير مثبت"
|
1955 |
|
1956 |
-
#:
|
1957 |
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."
|
1958 |
msgstr "نسخة الملحق PHP cURL تعمل. الملحق cURL مطلوب لعمل كود GeoIP, وإذا لم يتم تثبيته يتم تعطيل GeoIP."
|
1959 |
|
1960 |
-
#:
|
1961 |
msgid "BC Math"
|
1962 |
msgstr "BC Math"
|
1963 |
|
1964 |
-
#:
|
1965 |
msgid "Installed"
|
1966 |
msgstr "مثبت"
|
1967 |
|
1968 |
-
#:
|
1969 |
msgid "Not installed"
|
1970 |
msgstr "غير مثبت"
|
1971 |
|
1972 |
-
#:
|
1973 |
msgid "If the PHP BC Math Extension is installed. BC Math is no longer required for the GeoIP code and is listed here only for historical reasons."
|
1974 |
msgstr "هل تم تثبيت PHP BC Math Extension مسبقاً. الآن ملحق BC Math لم يعد مطلوبا لكود GeoIP ويتم سرده هنا فقط لأسباب تاريخية."
|
1975 |
|
1976 |
-
#:
|
1977 |
msgid "File Info"
|
1978 |
msgstr "معلومات عن الملف"
|
1979 |
|
1980 |
-
#:
|
1981 |
msgid "GeoIP Database"
|
1982 |
msgstr "قاعدة بيانات GeoIP"
|
1983 |
|
1984 |
-
#:
|
1985 |
msgid "Database file does not exist."
|
1986 |
msgstr "لا وجود لملف قاعدة البيانات."
|
1987 |
|
1988 |
-
#:
|
1989 |
-
#:
|
1990 |
-
#:
|
1991 |
msgid ", created on "
|
1992 |
msgstr "، التي تم إنشاؤها على"
|
1993 |
|
1994 |
-
#:
|
1995 |
msgid "The file size and date of the GeoIP database."
|
1996 |
msgstr "حجم الملف والتاريخ من قاعدة بيانات GeoIP."
|
1997 |
|
1998 |
-
#:
|
1999 |
msgid "browscap.ini File"
|
2000 |
msgstr "ملف browscap.ini"
|
2001 |
|
2002 |
-
#:
|
2003 |
msgid "browscap.ini file does not exist."
|
2004 |
msgstr "لا وجود لملف browscap.ini."
|
2005 |
|
2006 |
-
#:
|
2007 |
msgid "The file size and date of the browscap.ini file."
|
2008 |
msgstr "حجم الملف وتاريخ الملف browscap.ini."
|
2009 |
|
2010 |
-
#:
|
2011 |
msgid "browscap Cache File"
|
2012 |
msgstr "browscap ملف ذاكرة التخزين المؤقت"
|
2013 |
|
2014 |
-
#:
|
2015 |
msgid "browscap cache file does not exist."
|
2016 |
msgstr "لا وجود لملف ذاكرة التخزين المؤقت browscap."
|
2017 |
|
2018 |
-
#:
|
2019 |
msgid "The file size and date of the browscap cache file."
|
2020 |
msgstr "حجم الملف وتاريخ الملف المؤقت browscap."
|
2021 |
|
2022 |
-
#:
|
2023 |
msgid "Client Info"
|
2024 |
msgstr "معلومات العميل"
|
2025 |
|
2026 |
-
#:
|
2027 |
msgid "Client IP"
|
2028 |
msgstr "IP العميل"
|
2029 |
|
2030 |
-
#:
|
2031 |
msgid "The client IP address."
|
2032 |
msgstr "عنوان IP للعميل."
|
2033 |
|
2034 |
-
#:
|
2035 |
msgid "User Agent"
|
2036 |
msgstr "وكيل المستخدم"
|
2037 |
|
2038 |
-
#:
|
2039 |
msgid "The client user agent string."
|
2040 |
msgstr "سلسلة عامل المستخدم العميل."
|
2041 |
|
2042 |
-
#:
|
2043 |
msgid "Browser"
|
2044 |
msgstr "المتصفح"
|
2045 |
|
2046 |
-
#:
|
2047 |
msgid "The detected client browser."
|
2048 |
msgstr "مستكشف مستعرض العميل."
|
2049 |
|
2050 |
-
#:
|
2051 |
msgid "The detected client browser version."
|
2052 |
msgstr "إصدار مستكشف مستعرض العميل."
|
2053 |
|
2054 |
-
#:
|
2055 |
msgid "The detected client platform."
|
2056 |
msgstr "مستكشف منصة العميل"
|
2057 |
|
2058 |
-
#:
|
2059 |
msgid "This will replace all IP addresses in the database with hash values and cannot be undo, are you sure?"
|
2060 |
msgstr "سيؤدي ذلك إلى استبدال جميع عناوين IP في قاعدة البيانات مع قيم التجزئة ولا يمكن التراجع، هل أنت متأكد؟"
|
2061 |
|
2062 |
-
#:
|
2063 |
msgid "GeoIP Options"
|
2064 |
msgstr "خيارات GeoIP"
|
2065 |
|
2066 |
-
#:
|
2067 |
msgid "Updates any unknown location data in the database, this may take a while"
|
2068 |
msgstr "تحديث أي بيانات الموقع غير معروفة في قاعدة البيانات, هذا قد يستغرق بعض الوقت"
|
2069 |
|
2070 |
-
#:
|
2071 |
-
#:
|
2072 |
msgid "IP Addresses"
|
2073 |
msgstr "عناوين IP"
|
2074 |
|
2075 |
-
#:
|
2076 |
-
#:
|
2077 |
msgid "Hash IP Addresses"
|
2078 |
msgstr "عناوين IP المجزئة"
|
2079 |
|
2080 |
-
#:
|
2081 |
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"
|
2082 |
msgstr "استبدال عناوين IP في قاعدة البيانات مع قيم التجزئة، فإنك لن تكون قادرا على استرداد عناوين IP في المستقبل لتجميع معلومات عن الموقع بعد ذلك وهذا قد يستغرق بعض الوقت"
|
2083 |
|
2084 |
-
#:
|
2085 |
msgid "IP Addresses replaced with hash values."
|
2086 |
msgstr "استبدال عناوين IP مع قيم التجزئة."
|
2087 |
|
2088 |
-
#:
|
2089 |
msgid "Install routine complete."
|
2090 |
msgstr "التثبيت الكامل الروتيني."
|
2091 |
|
2092 |
-
#:
|
2093 |
msgid "Resources/Information"
|
2094 |
msgstr "الموارد/معلومات"
|
2095 |
|
2096 |
-
#:
|
2097 |
msgid "Purging"
|
2098 |
msgstr "تطهير"
|
2099 |
|
2100 |
-
#:
|
2101 |
msgid "Database"
|
2102 |
msgstr "قاعدة البيانات"
|
2103 |
|
2104 |
-
#:
|
2105 |
msgid "Updates"
|
2106 |
msgstr "تحديثات"
|
2107 |
|
2108 |
-
#:
|
2109 |
msgid "Historical"
|
2110 |
msgstr "التاريخي"
|
2111 |
|
2112 |
-
#:
|
2113 |
msgid "WP Statistics V%s"
|
2114 |
msgstr "WP Statistics V%s"
|
2115 |
|
2116 |
-
#:
|
2117 |
msgid "Visit Us Online"
|
2118 |
msgstr "زورونا على الإنترنت"
|
2119 |
|
2120 |
-
#:
|
2121 |
msgid "Come visit our great new %s and keep up to date on the latest news about WP Statistics."
|
2122 |
msgstr "قم بزيارة موقعنا الجديد كلياً على %s وأبقى على إطلاع دائم حول أخبار احصائيات ووردبريس."
|
2123 |
|
2124 |
-
#:
|
2125 |
msgid "website"
|
2126 |
msgstr "الموقع"
|
2127 |
|
2128 |
-
#:
|
2129 |
msgid "Rate and Review at WordPress.org"
|
2130 |
msgstr "التقييم و المراجعة في WordPress.org"
|
2131 |
|
2132 |
-
#:
|
2133 |
msgid "Thanks for installing WP Statistics, we encourage you to submit a "
|
2134 |
msgstr "كل الشكر لتثبيت احصائيات ووردبريس، ونحن نشجعكم على تقديم"
|
2135 |
|
2136 |
-
#:
|
2137 |
msgid "rating and review"
|
2138 |
msgstr "التقييم و المراجعة"
|
2139 |
|
2140 |
-
#:
|
2141 |
msgid "over at WordPress.org. Your feedback is greatly appreciated!"
|
2142 |
msgstr "في WordPress.org. حيث أن ملاحظاتكم في موضع تقدير دائماً!"
|
2143 |
|
2144 |
-
#:
|
2145 |
msgid "Translations"
|
2146 |
msgstr "الترجمات"
|
2147 |
|
2148 |
-
#:
|
2149 |
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."
|
2150 |
msgstr "احصائيات ووردبريس تدعم التدويل ونحن نشجع مستخدمينا على تقديم الترجمات، يرجى زيارة موقعنا %s لرؤية الوضع الحالي و %s إذا كنت ترغب في المساعدة."
|
2151 |
|
2152 |
-
#:
|
2153 |
msgid "translation collaboration site"
|
2154 |
msgstr "الموقع التعاوني للترجمة"
|
2155 |
|
2156 |
-
#:
|
2157 |
msgid "drop us a line"
|
2158 |
msgstr "اترك لنا رسالة"
|
2159 |
|
2160 |
-
#:
|
2161 |
msgid "Support"
|
2162 |
msgstr "دعم"
|
2163 |
|
2164 |
-
#:
|
2165 |
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:"
|
2166 |
msgstr "نحن آسفون إن كنت تواجه مشكلة مع احصائيات ووردبريس ونحن سعداء للمساعدة. وهنا عدد قليل من الأشياء للقيام بها قبل الاتصال بنا:"
|
2167 |
|
2168 |
-
#:
|
2169 |
-
#:
|
2170 |
msgid "Have you read the %s?"
|
2171 |
msgstr "هل قرأت %s؟"
|
2172 |
|
2173 |
-
#:
|
2174 |
msgid "FAQs"
|
2175 |
msgstr "أسئلة وأجوبة"
|
2176 |
|
2177 |
-
#:
|
2178 |
msgid "manual"
|
2179 |
msgstr "الدليل"
|
2180 |
|
2181 |
-
#:
|
2182 |
msgid "Have you search the %s for a similar issue?"
|
2183 |
msgstr "هل بحثت في %s لمشكلة مشابهة؟"
|
2184 |
|
2185 |
-
#:
|
2186 |
msgid "support forum"
|
2187 |
msgstr "منتدى الدعم"
|
2188 |
|
2189 |
-
#:
|
2190 |
msgid "Have you search the Internet for any error messages you are receiving?"
|
2191 |
msgstr "هل بحثت في الإنترنت عن أي رسائل خطأ التي تظهر لك؟"
|
2192 |
|
2193 |
-
#:
|
2194 |
msgid "Make sure you have access to your PHP error logs."
|
2195 |
msgstr "تأكد أن لديك الوصول إلى سجلات الخطأ PHP الخاص بك."
|
2196 |
|
2197 |
-
#:
|
2198 |
msgid "And a few things to double-check:"
|
2199 |
msgstr "وعدد قليل من الأشياء الأخرى:"
|
2200 |
|
2201 |
-
#:
|
2202 |
msgid "How's your memory_limit in php.ini?"
|
2203 |
msgstr "كيف حال memory_limit الخاصة بك في ملف php.ini؟"
|
2204 |
|
2205 |
-
#:
|
2206 |
msgid "Have you tried disabling any other plugins you may have installed?"
|
2207 |
msgstr "هل حاولت تعطيل أي إضافات أخرى التي قد تم تثبيتها؟"
|
2208 |
|
2209 |
-
#:
|
2210 |
msgid "Have you tried using the default WordPress theme?"
|
2211 |
msgstr "هل حاولت استخدام المظهر الافتراضي للوردبريس؟"
|
2212 |
|
2213 |
-
#:
|
2214 |
msgid "Have you double checked the plugin settings?"
|
2215 |
msgstr "هل ضاعفت الفحص على إعدادات البرنامج المساعد؟"
|
2216 |
|
2217 |
-
#:
|
2218 |
msgid "Do you have all the required PHP extensions installed?"
|
2219 |
msgstr "هل قمت بتثبيت جميع ملحقات PHP المطلوبة؟"
|
2220 |
|
2221 |
-
#:
|
2222 |
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?"
|
2223 |
msgstr "أنت تحصل على صفحة فارغة أو غير مكتملة العرض في المستعرض الخاص بك؟ قم بعرض المصدر للصفحة وتحقق من وجود أية أخطاء قاتلة؟"
|
2224 |
|
2225 |
-
#:
|
2226 |
msgid "Have you checked your PHP and web server error logs?"
|
2227 |
msgstr "هل راجعت سجل أخطاء الـPHP الخاص بك؟"
|
2228 |
|
2229 |
-
#:
|
2230 |
msgid "Still not having any luck?"
|
2231 |
msgstr "لم يحالفك الحظ حتى الآن؟"
|
2232 |
|
2233 |
-
#:
|
2234 |
msgid "Then please open a new thread on the %s and we'll respond as soon as possible."
|
2235 |
msgstr "الرجاء فتح موضوع جديد في %s، وسنقوم بالرد في أقرب وقت ممكن."
|
2236 |
|
2237 |
-
#:
|
2238 |
msgid "WordPress.org support forum"
|
2239 |
msgstr "منتدى الدعم"
|
2240 |
|
2241 |
-
#:
|
2242 |
msgid "Alternatively %s support is available as well."
|
2243 |
msgstr "كما أنه يتوفر دعم للغة %s كذلك."
|
2244 |
|
2245 |
-
#:
|
2246 |
msgid "Farsi"
|
2247 |
msgstr "الفارسية"
|
2248 |
|
2249 |
-
#:
|
2250 |
msgid "WP Statistics Honey Pot Page"
|
2251 |
msgstr "الفسفور الابيض الاحصائيات عاء العسل الصفحة"
|
2252 |
|
2253 |
-
#:
|
2254 |
msgid "This is the honey pot for WP Statistics to use, do not delete."
|
2255 |
msgstr "هذا هو وعاء العسل لاحصائيات ووردبريس المستخدم, لا تحذف"
|
2256 |
|
2257 |
-
#:
|
2258 |
msgid "Access Levels"
|
2259 |
msgstr "مستويات الوصول"
|
2260 |
|
2261 |
-
#:
|
2262 |
msgid "Required user level to view WP Statistics"
|
2263 |
msgstr "مطلوب مستوى المستخدم لعرض الاحصائيات"
|
2264 |
|
2265 |
-
#:
|
2266 |
msgid "Required user level to manage WP Statistics"
|
2267 |
msgstr "مطلوب مستوى المستخدم لإدارة الاحصائيات"
|
2268 |
|
2269 |
-
#:
|
2270 |
msgid "See the %s for details on capability levels."
|
2271 |
msgstr "اطلع على %s لمزيد من التفاصيل على مستويات القدرة."
|
2272 |
|
2273 |
-
#:
|
2274 |
msgid "WordPress Roles and Capabilities page"
|
2275 |
msgstr "أدوار وقدرات صفحة ووردبريس"
|
2276 |
|
2277 |
-
#:
|
2278 |
msgid "Hint: manage_network = Super Admin Network, manage_options = Administrator, edit_others_posts = Editor, publish_posts = Author, edit_posts = Contributor, read = Everyone."
|
2279 |
msgstr "تلميح: manage_network = مسؤول, manage_options = مدير, edit_others_posts = محرر, publish_posts = كاتب, edit_posts = مساهم, read = الجميع"
|
2280 |
|
2281 |
-
#:
|
2282 |
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."
|
2283 |
msgstr "كل ما سبق من الكاسكيدز هي حقوق تكوين الووردبريس الافتراضي. على سبيل المثال عند اختيار publish_posts يمنح حقوق المؤلف,المحرر,المدير,المسؤول."
|
2284 |
|
2285 |
-
#:
|
2286 |
msgid "If you need a more robust solution to delegate access you might want to look at %s in the WordPress plugin directory."
|
2287 |
msgstr "إذا كنت في حاجة الى حل أكثر قوة لتفويض الوصول التي قد ترغب في النظر في %s الدليل المساعد لووردبريس."
|
2288 |
|
2289 |
-
#:
|
2290 |
-
#:
|
2291 |
-
#:
|
2292 |
msgid "Exclusions"
|
2293 |
msgstr "الاستثناءات"
|
2294 |
|
2295 |
-
#:
|
2296 |
msgid "Record exclusions"
|
2297 |
msgstr "سجل الاستثناءات"
|
2298 |
|
2299 |
-
#:
|
2300 |
-
#:
|
2301 |
-
#:
|
2302 |
msgid "Enable"
|
2303 |
msgstr "تمكين"
|
2304 |
|
2305 |
-
#:
|
2306 |
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."
|
2307 |
msgstr "يقوم هذا الخيار بتسجيل جميع النقرات المستبعدة في جدول منفصل مع أسباب الأستبعاد، ولكن بدون معلومات أخرى. وهذا قد يولد الكثير من البيانات ولكن هو مفيد إذا كنت تريد أن ترى العدد الكلي من المشاهدات التي يحصل عليها موقعك، وليس فقط المستخدم الفعلي للموقع."
|
2308 |
|
2309 |
-
#:
|
2310 |
msgid "Exclude User Roles"
|
2311 |
msgstr "استبعاد أدوار المستخدم"
|
2312 |
|
2313 |
-
#:
|
2314 |
-
#:
|
2315 |
-
#:
|
2316 |
-
#:
|
2317 |
msgid "Exclude"
|
2318 |
msgstr "منع"
|
2319 |
|
2320 |
-
#:
|
2321 |
msgid "Exclude %s role from data collection."
|
2322 |
msgstr "استبعاد دور %s من جمع البيانات."
|
2323 |
|
2324 |
-
#:
|
2325 |
msgid "IP/Robot Exclusions"
|
2326 |
msgstr "استثناءات IP/Robot"
|
2327 |
|
2328 |
-
#:
|
2329 |
msgid "Robot list"
|
2330 |
msgstr "قائمة الروبوت"
|
2331 |
|
2332 |
-
#:
|
2333 |
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."
|
2334 |
msgstr "قائمة من الكلمات (واحد في كل سطر) لمطابقة ضد للكشف عن الروبوتات. يجب أن تكون إدخالات 4 أحرف على الأقل أو أنها سيتم تجاهلها."
|
2335 |
|
2336 |
-
#:
|
2337 |
msgid "Reset to Default"
|
2338 |
msgstr "إعادة تعيين إلى الافتراضي"
|
2339 |
|
2340 |
-
#:
|
2341 |
msgid "Force robot list update after upgrades"
|
2342 |
msgstr "إجبار تحديث قائمة الربوت بعد الترقيات"
|
2343 |
|
2344 |
-
#:
|
2345 |
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."
|
2346 |
msgstr "إجبار قائمة الروبوت لإعادة تعيين إلى الافتراضي بعد تحديث احصائيات ووردبريس لتأخذ مكان. ملاحظة إذا تم تمكين هذا الخيار أي روبوتات تم تخصيصها في القائمة سوف تضيع."
|
2347 |
|
2348 |
-
#:
|
2349 |
msgid "Robot visit threshold"
|
2350 |
msgstr "الحد الأدنى بزيارة الروبوت"
|
2351 |
|
2352 |
-
#:
|
2353 |
msgid "Treat visitors with more than this number of visits per day as robots. 0 = disabled."
|
2354 |
msgstr "تعامل للزوار أكثر من هذا العدد من مرة في اليوم الواحد كما الروبوتات. 0 = تعطيل."
|
2355 |
|
2356 |
-
#:
|
2357 |
msgid "Excluded IP address list"
|
2358 |
msgstr "قائمة عناوين IP المستبعدة"
|
2359 |
|
2360 |
-
#:
|
2361 |
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."
|
2362 |
msgstr "قائمة عناوين IP وأقنعة الشبكة الفرعية (واحد في كل سطر) لاستبعاد من جميع الإحصائيات (وتقبل الأشكال كل من 192.168.0.0/24 و 192.168.0.0/255.255.255.0 ). لتحديد عنوان IP فقط، استخدم قيمة الشبكة الفرعية 32 أو 255.255.255.255.255."
|
2363 |
|
2364 |
-
#:
|
2365 |
msgid "Add 10.0.0.0"
|
2366 |
msgstr "إضافة 10.0.0.0"
|
2367 |
|
2368 |
-
#:
|
2369 |
msgid "Add 172.16.0.0"
|
2370 |
msgstr "إضافة 172.16.0.0"
|
2371 |
|
2372 |
-
#:
|
2373 |
msgid "Add 192.168.0.0"
|
2374 |
msgstr "إضافة 192.168.0.0"
|
2375 |
|
2376 |
-
#:
|
2377 |
msgid "Use honey pot"
|
2378 |
msgstr "استخدام وعاء العسل"
|
2379 |
|
2380 |
-
#:
|
2381 |
msgid "Use a honey pot page to identify robots."
|
2382 |
msgstr "استخدام صفحة وعاء العسل لتحديد الروبوتات."
|
2383 |
|
2384 |
-
#:
|
2385 |
msgid "Honey pot post id"
|
2386 |
msgstr "معرف مقال وعاء العسل"
|
2387 |
|
2388 |
-
#:
|
2389 |
msgid "The post id to use for the honeypot page."
|
2390 |
msgstr "رقم المشاركة لاستخدامها في صفحة المصيدة."
|
2391 |
|
2392 |
-
#:
|
2393 |
msgid "Create a new honey pot page"
|
2394 |
msgstr "إنشاء صفحة وعاء عسل جديدة"
|
2395 |
|
2396 |
-
#:
|
2397 |
msgid "GeoIP Exclusions"
|
2398 |
msgstr "استثناءات GeoIP"
|
2399 |
|
2400 |
-
#:
|
2401 |
msgid "Excluded countries list"
|
2402 |
msgstr "قائمة الدول المستثناة"
|
2403 |
|
2404 |
-
#:
|
2405 |
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."
|
2406 |
msgstr "قائمة رموز البلد (واحد في كل سطر، رسالتين لكل منهما) لاستبعاد من جمع الإحصاءات. استخدام \"000\" (ثلاثة أصفار) لاستبعاد بلدان غير معروفة."
|
2407 |
|
2408 |
-
#:
|
2409 |
msgid "Included countries list"
|
2410 |
msgstr "قائمة البلدان المدرجة"
|
2411 |
|
2412 |
-
#:
|
2413 |
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."
|
2414 |
msgstr "قائمة رموز البلد (واحد في كل سطر، رسالتين لكل منهما) لتشمل في جمع الإحصاءات، إذا كانت هذه القائمة ليست فارغة، سيتم تسجيل الزوار فقط من الدول المدرجة. استخدام \"000\" (ثلاثة أصفار) لاستبعاد بلدان غير معروفة."
|
2415 |
|
2416 |
-
#:
|
2417 |
msgid "Host Exclusions"
|
2418 |
msgstr "استثناءات المضيف"
|
2419 |
|
2420 |
-
#:
|
2421 |
msgid "Excluded hosts list"
|
2422 |
msgstr "قائمة المضيفين المستبعدين"
|
2423 |
|
2424 |
-
#:
|
2425 |
msgid "A list of fully qualified host names (ie. server.example.com, one per line) to exclude from statistics collection."
|
2426 |
msgstr "قائمة أسماء المضيف المؤهل بالكامل (أي. server.example.com، سطر واحد في المائة) لاستبعاد من جمع الإحصاءات."
|
2427 |
|
2428 |
-
#:
|
2429 |
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."
|
2430 |
msgstr "ملاحظة: هذا الخيار لإجراء بحث DNS عكسي على تحميل كل صفحة ولكن بدلا من ذلك بالتخزين المؤقت لعنوان الـIP لأسماء المضيفين المنصوص عليها هي ساعة واحدة. إذا كنت استبعدت المضيفين وقم بتعيين حيوي قد تجد بعض الدرجات من التداخل عندما يتغير عنوان IP للمضيف وذلك وعندما يتم تحديث ذاكرة التخزين المؤقت قد يؤدي في بعض الزيارات المسجلة."
|
2431 |
|
2432 |
-
#:
|
2433 |
msgid "Site URL Exclusions"
|
2434 |
msgstr "رابط الموقع المستثنى"
|
2435 |
|
2436 |
-
#:
|
2437 |
msgid "Excluded login page"
|
2438 |
msgstr "استبعاد صفحة تسجيل الدخول"
|
2439 |
|
2440 |
-
#:
|
2441 |
msgid "Exclude the login page for registering as a hit."
|
2442 |
msgstr "استبعاد صفحة الدخول للتسجيل كنقرة."
|
2443 |
|
2444 |
-
#:
|
2445 |
msgid "Excluded admin pages"
|
2446 |
msgstr "استبعاد الصفحات الإدارية"
|
2447 |
|
2448 |
-
#:
|
2449 |
msgid "Exclude the admin pages for registering as a hit."
|
2450 |
msgstr "استبعاد الصفحات الادارية للتسجيل كنقرة."
|
2451 |
|
2452 |
-
#:
|
2453 |
msgid "Excluded RSS feeds"
|
2454 |
msgstr "آر إس إس مستبعدة"
|
2455 |
|
2456 |
-
#:
|
2457 |
msgid "Exclude the RSS feeds for registering as a hit."
|
2458 |
msgstr "استبعاد آر إس إس لتسجيل كما ضرب."
|
2459 |
|
2460 |
-
#:
|
2461 |
msgid "browscap settings"
|
2462 |
msgstr "إعدادات browscap"
|
2463 |
|
2464 |
-
#:
|
2465 |
msgid "browscap usage"
|
2466 |
msgstr "استخدام browscap"
|
2467 |
|
2468 |
-
#:
|
2469 |
-
#:
|
2470 |
-
#:
|
2471 |
-
#:
|
2472 |
-
#:
|
2473 |
-
#:
|
2474 |
-
#:
|
2475 |
-
#:
|
2476 |
-
#:
|
2477 |
-
#:
|
2478 |
-
#:
|
2479 |
-
#:
|
2480 |
-
#:
|
2481 |
-
#:
|
2482 |
-
#:
|
2483 |
-
#:
|
2484 |
-
#:
|
2485 |
-
#:
|
2486 |
-
#:
|
2487 |
-
#:
|
2488 |
-
#:
|
2489 |
-
#:
|
2490 |
-
#:
|
2491 |
-
#:
|
2492 |
-
#:
|
2493 |
-
#:
|
2494 |
-
#:
|
2495 |
-
#:
|
2496 |
-
#:
|
|
|
|
|
2497 |
msgid "Active"
|
2498 |
msgstr "تفعيل"
|
2499 |
|
2500 |
-
#:
|
2501 |
msgid "The browscap database will be downloaded and used to detect robots."
|
2502 |
msgstr "سيتم تحميل قاعدة البيانات browscap وتستخدم للكشف عن الروبوتات."
|
2503 |
|
2504 |
-
#:
|
2505 |
msgid "Update browscap Info"
|
2506 |
msgstr "تحديث معلومات browscap"
|
2507 |
|
2508 |
-
#:
|
2509 |
msgid "Download browscap Database"
|
2510 |
msgstr "تحميل قاعدة بيانات browscap"
|
2511 |
|
2512 |
-
#:
|
2513 |
-
#:
|
2514 |
msgid "Save changes on this page to download the update."
|
2515 |
msgstr "حفظ التغييرات على هذه الصفحة لتحميل التحديث."
|
2516 |
|
2517 |
-
#:
|
2518 |
msgid "Schedule weekly update of browscap DB"
|
2519 |
msgstr "جدولة التحديث الأسبوعي لـ browscap DB"
|
2520 |
|
2521 |
-
#:
|
2522 |
-
#:
|
2523 |
msgid "Next update will be"
|
2524 |
msgstr "التحديث القادم سيكون في"
|
2525 |
|
2526 |
-
#:
|
2527 |
msgid "Download of the browscap database will be scheduled for once a week."
|
2528 |
msgstr "سيتم تحديد موعد تحميل قاعدة بيانات browscap لمرة واحدة في الأسبوع."
|
2529 |
|
2530 |
-
#:
|
2531 |
msgid "This will delete the manual when you save the settings, are you sure?"
|
2532 |
msgstr "سيؤدي ذلك إلى حذف الدليل عند حفظ الإعدادات، هل أنت متأكد؟"
|
2533 |
|
2534 |
-
#:
|
2535 |
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."
|
2536 |
msgstr "هذه الميزة لتخزين عناوين IP في قاعدة البيانات ولكن بدلا من ذلك تستخدم تجزئة فريدة من نوعها. سيتم تعطيل \"مخزن سلسلة عامل المستخدم بأكمله\" إذا تم تحديد هذا. أنت لن تكون قادر على استرداد عناوين IP في المستقبل لاسترداد معلومات الموقع إذا تم تمكين هذا."
|
2537 |
|
2538 |
-
#:
|
2539 |
msgid "Users Online"
|
2540 |
msgstr "الإعضاء المتواجدين"
|
2541 |
|
2542 |
-
#:
|
2543 |
msgid "User online"
|
2544 |
msgstr "المتواجدين الآن"
|
2 |
# This file is distributed under the same license as the WP Statistics package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2015-04-29 07:30:23+0000\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
+
#: includes/settings/tabs/wps-general.php:281
|
14 |
+
msgid "Add page title to empty search words"
|
15 |
msgstr ""
|
16 |
|
17 |
+
#: includes/settings/tabs/wps-general.php:287
|
18 |
+
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."
|
19 |
msgstr ""
|
20 |
|
21 |
+
#: includes/settings/tabs/wps-maintenance.php:77
|
22 |
+
msgid "The number of hits required to delete the visitor. Invalid values will disable the daily maintenance (must be 10 or greater)."
|
23 |
msgstr ""
|
24 |
|
25 |
+
#: includes/settings/tabs/wps-maintenance.php:71
|
26 |
+
msgid "Prune visitors with more than"
|
27 |
msgstr ""
|
28 |
|
29 |
+
#: includes/settings/tabs/wps-maintenance.php:65
|
30 |
+
msgid "A WP Cron job will be run daily to prune any users statistics data where the user has more than the defined number of hits in a day (aka they are probably a bot)."
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:217
|
34 |
+
msgid "Purge visitors with more than"
|
35 |
msgstr ""
|
36 |
|
37 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:222
|
38 |
+
msgid "hits"
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:223
|
42 |
+
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."
|
43 |
msgstr ""
|
44 |
|
45 |
+
#: includes/functions/purge-hits.php:28
|
46 |
+
msgid "No visitors found to purge."
|
47 |
msgstr ""
|
48 |
|
49 |
+
#: includes/functions/purge-hits.php:25
|
50 |
+
msgid "%s records purged successfully."
|
51 |
msgstr ""
|
52 |
|
53 |
+
#: ajax.php:174 includes/functions/purge-hits.php:32
|
54 |
+
msgid "Number of hits must be greater than or equal to 10!"
|
55 |
msgstr ""
|
56 |
|
57 |
+
#: shortcode.php:132
|
58 |
+
msgid "Page Visits"
|
59 |
msgstr ""
|
60 |
|
61 |
+
#: shortcode.php:135
|
62 |
+
msgid "Page Count"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: shortcode.php:136
|
66 |
+
msgid "Comment Count"
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: shortcode.php:137
|
70 |
+
msgid "Spam Count"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: shortcode.php:138
|
74 |
+
msgid "User Count"
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: shortcode.php:139
|
78 |
+
msgid "Post Average"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: shortcode.php:140
|
82 |
+
msgid "Comment Average"
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: shortcode.php:141
|
86 |
+
msgid "User Average"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: shortcode.php:149
|
90 |
+
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: shortcode.php:153
|
94 |
+
msgid "Search Provider"
|
95 |
+
msgstr ""
|
96 |
+
|
97 |
+
#: shortcode.php:156
|
98 |
+
msgid "The search provider to get statistics on."
|
99 |
+
msgstr ""
|
100 |
+
|
101 |
+
#: shortcode.php:160
|
102 |
+
msgid "Number Format"
|
103 |
+
msgstr ""
|
104 |
+
|
105 |
+
#: shortcode.php:163
|
106 |
+
msgid "The format to display numbers in: i18n, english, none."
|
107 |
+
msgstr ""
|
108 |
+
|
109 |
+
#: shortcode.php:167
|
110 |
+
msgid "English"
|
111 |
+
msgstr ""
|
112 |
+
|
113 |
+
#: shortcode.php:168
|
114 |
+
msgid "International"
|
115 |
+
msgstr ""
|
116 |
+
|
117 |
+
#: includes/log/exclusions.php:191 includes/log/hit-statistics.php:163
|
118 |
+
msgid "Hits Statistics Summary"
|
119 |
+
msgstr ""
|
120 |
+
|
121 |
+
#: includes/log/exclusions.php:201 includes/log/hit-statistics.php:174
|
122 |
+
msgid "Chart Total"
|
123 |
+
msgstr ""
|
124 |
+
|
125 |
+
#: includes/log/exclusions.php:206 includes/log/hit-statistics.php:180
|
126 |
+
msgid "All Time Total"
|
127 |
+
msgstr ""
|
128 |
+
|
129 |
+
#: includes/log/log.php:57
|
130 |
+
msgid "Have you thought about donating to WP Statistics?"
|
131 |
+
msgstr ""
|
132 |
+
|
133 |
+
#: includes/settings/tabs/wps-about.php:20 wp-statistics.php:355
|
134 |
+
msgid "Donate"
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: includes/settings/tabs/wps-about.php:24
|
138 |
+
msgid "Fell like showing us how much you enjoy WP Statistics? Drop by our %s page and show us some love!"
|
139 |
+
msgstr ""
|
140 |
+
|
141 |
+
#: includes/settings/tabs/wps-about.php:24
|
142 |
+
msgid "donation"
|
143 |
+
msgstr ""
|
144 |
+
|
145 |
+
#: includes/log/log.php:57
|
146 |
+
msgid "Donate Now!"
|
147 |
+
msgstr ""
|
148 |
+
|
149 |
+
#: includes/log/log.php:57
|
150 |
+
msgid "Close"
|
151 |
+
msgstr ""
|
152 |
+
|
153 |
+
#: shortcode.php:126
|
154 |
+
msgid "Select the statistic you wish to display."
|
155 |
+
msgstr ""
|
156 |
+
|
157 |
+
#: shortcode.php:123
|
158 |
+
msgid "Statistic"
|
159 |
+
msgstr ""
|
160 |
+
|
161 |
+
#: shortcode.php:134
|
162 |
+
msgid "Post Count"
|
163 |
+
msgstr ""
|
164 |
+
|
165 |
+
#: shortcode.php:146
|
166 |
+
msgid "Time Frame"
|
167 |
+
msgstr ""
|
168 |
+
|
169 |
+
#: includes/functions/functions.php:929
|
170 |
+
msgid "to"
|
171 |
+
msgstr "إلى"
|
172 |
+
|
173 |
+
#: includes/functions/functions.php:929
|
174 |
+
msgid "Go"
|
175 |
+
msgstr "إذهب"
|
176 |
+
|
177 |
+
#: includes/log/top-pages.php:95
|
178 |
+
msgid "Rank #5"
|
179 |
+
msgstr "المرتبة #5"
|
180 |
+
|
181 |
+
#: includes/log/top-pages.php:95
|
182 |
+
msgid "Rank #4"
|
183 |
+
msgstr "المرتبة #4"
|
184 |
+
|
185 |
+
#: includes/log/top-pages.php:95
|
186 |
+
msgid "Rank #3"
|
187 |
+
msgstr "المرتبة #3"
|
188 |
+
|
189 |
+
#: includes/log/top-pages.php:95
|
190 |
+
msgid "Rank #1"
|
191 |
+
msgstr "المرتبة #1"
|
192 |
+
|
193 |
+
#: includes/log/top-pages.php:95
|
194 |
+
msgid "Rank #2"
|
195 |
+
msgstr "المرتبة #2"
|
196 |
+
|
197 |
+
#: includes/optimization/tabs/wps-optimization-database.php:56
|
198 |
+
msgid "Visits Table"
|
199 |
+
msgstr "جدول الزيارات"
|
200 |
+
|
201 |
+
#: includes/optimization/tabs/wps-optimization-database.php:70
|
202 |
+
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."
|
203 |
+
msgstr "التثبيتات القديمة من احصائيات ووردبريس تسمح للإدخالات المكررة في جدول الزيارات في كل مرة. بتثبيت أحدث حماية مقابل هذا الفهرس الفريد على الجدول. و لإنشاء فهرس على الإصدارات القديمة المثبتة يجب أن يتم حذف الإدخالات المكررة أولا. أنقر على \"التحديث الآن\" لفحص جدول الزيارات، وحذف الإدخالات المكررة وإضافة الفهرس."
|
204 |
+
|
205 |
+
#: includes/optimization/tabs/wps-optimization-database.php:71
|
206 |
+
msgid "This operation could take a long time on installs with many rows in the visits table."
|
207 |
+
msgstr "هذه العملية يمكن أن تستغرق وقتا طويلا لتثبيت العديد من الصفوف في جدول الزيارات."
|
208 |
+
|
209 |
+
#: includes/optimization/tabs/wps-optimization-database.php:76
|
210 |
+
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."
|
211 |
+
msgstr "التثبيتات القديمة من احصائيات ووردبريس تسمح للإدخالات المكررة في جدول الزيارات. للحماية من ذلك ثبت الفهرس الفريد في الجدول."
|
212 |
+
|
213 |
+
#: includes/log/last-visitor.php:68
|
214 |
+
msgid "Filtered by"
|
215 |
+
msgstr "تمت تصفيتها من قبل"
|
216 |
+
|
217 |
+
#: includes/functions/functions.php:922 includes/functions/functions.php:925
|
218 |
+
msgid "Range"
|
219 |
+
msgstr "المدى"
|
220 |
+
|
221 |
+
#: includes/functions/functions.php:929
|
222 |
msgid "MM/DD/YYYY"
|
223 |
msgstr "MM/DD/YYYY"
|
224 |
|
225 |
+
#: includes/settings/tabs/wps-general.php:342
|
226 |
msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
|
227 |
msgstr "لا تستخدم الترجمات واستخدام بدلاً من ذلك الإعدادات الافتراضية الإنجليزية لإحصائيات ووردبريس (يتطلب تحميل صفحتين)"
|
228 |
|
229 |
+
#: includes/settings/tabs/wps-general.php:336
|
230 |
msgid "Force English"
|
231 |
msgstr "إجبار اللغة الإنجليزية"
|
232 |
|
233 |
+
#: includes/settings/tabs/wps-general.php:331
|
234 |
msgid "Languages"
|
235 |
msgstr "اللغات"
|
236 |
|
237 |
+
#: includes/settings/tabs/wps-access-level.php:271
|
238 |
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."
|
239 |
msgstr "ملاحظة: هذا الخيار لن يتعامل مع معايير عنوان URL، (أي شيء بعد علامة؟) إلا اسم البرنامج النصي . سيتم تجاهل إدخالات أقل من حرفين."
|
240 |
|
241 |
+
#: includes/settings/tabs/wps-access-level.php:269
|
242 |
msgid "A list of local urls (ie. /wordpress/about, one per line) to exclude from statistics collection."
|
243 |
msgstr "قائمة عناوين المواقع المحلية (اتصل بنا,حول, واحد في كل سطر) للإستبعاد من جمع الإحصائيات."
|
244 |
|
245 |
+
#: includes/settings/tabs/wps-access-level.php:266
|
246 |
msgid "Excluded URLs list"
|
247 |
msgstr "قائمة عناوين المواقع المستبعدة"
|
248 |
|
249 |
+
#: includes/log/exclusions.php:24
|
250 |
msgid "Excluded URL"
|
251 |
msgstr "العناوين المستبعدة"
|
252 |
|
253 |
+
#: includes/log/widgets/summary.php:66
|
254 |
msgid "Last 365 Days (Year)"
|
255 |
msgstr "مشاركة 365 يوم (السنة)"
|
256 |
|
257 |
+
#: includes/log/widgets/summary.php:60
|
258 |
msgid "Last 30 Days (Month)"
|
259 |
msgstr "آخر 30 يوم (شهر)"
|
260 |
|
261 |
+
#: includes/log/widgets/summary.php:54
|
262 |
msgid "Last 7 Days (Week)"
|
263 |
msgstr "آخر 7 أيام (أسبوع)"
|
264 |
|
265 |
+
#: includes/functions/functions.php:403
|
266 |
msgid "Yahoo!"
|
267 |
msgstr "ياهو!"
|
268 |
|
269 |
+
#: includes/functions/functions.php:404
|
270 |
msgid "Yandex"
|
271 |
msgstr "ياندكس"
|
272 |
|
273 |
+
#: includes/functions/functions.php:400
|
274 |
msgid "clearch.org"
|
275 |
msgstr "clearch.org"
|
276 |
|
277 |
+
#: includes/functions/functions.php:401
|
278 |
msgid "DuckDuckGo"
|
279 |
msgstr "دك دك غو"
|
280 |
|
281 |
+
#: includes/functions/functions.php:399
|
282 |
msgid "Bing"
|
283 |
msgstr "بينج"
|
284 |
|
285 |
+
#: includes/functions/functions.php:398
|
286 |
msgid "Baidu"
|
287 |
msgstr "بايدو"
|
288 |
|
289 |
+
#: editor.php:69
|
290 |
msgid "Hits in the last 20 days"
|
291 |
msgstr "النقرات في 20 يوما الماضية"
|
292 |
|
293 |
+
#: includes/log/exclusions.php:24
|
294 |
msgid "Feeds"
|
295 |
msgstr "التغذيات"
|
296 |
|
297 |
+
#: includes/log/exclusions.php:24
|
298 |
msgid "User Role"
|
299 |
msgstr "دور المستخدم"
|
300 |
|
301 |
+
#: includes/log/exclusions.php:24
|
302 |
msgid "Login Page"
|
303 |
msgstr "صفحة تسجيل الدخول"
|
304 |
|
305 |
+
#: includes/log/exclusions.php:24
|
306 |
msgid "Admin Page"
|
307 |
msgstr "صفحة الإدارة"
|
308 |
|
309 |
+
#: includes/log/exclusions.php:24
|
310 |
msgid "Self Referral"
|
311 |
msgstr "الإحالة الذاتية"
|
312 |
|
313 |
+
#: includes/log/exclusions.php:24
|
314 |
msgid "IP Match"
|
315 |
msgstr "المتطابق IP"
|
316 |
|
317 |
+
#: includes/log/exclusions.php:24
|
318 |
msgid "Robot"
|
319 |
msgstr "روبوت"
|
320 |
|
321 |
+
#: includes/log/online.php:100
|
322 |
msgid "Currently there are no users online in the site."
|
323 |
msgstr "حالياً هناك مستخدمين متواجدين في الموقع."
|
324 |
|
325 |
+
#: includes/log/exclusions.php:24
|
326 |
msgid "Robot Threshold"
|
327 |
msgstr "الحد من الروبوت"
|
328 |
|
329 |
+
#: includes/log/exclusions.php:24
|
330 |
msgid "Honey Pot"
|
331 |
msgstr "وعاء العسل"
|
332 |
|
333 |
+
#: includes/log/widgets/page.php:8
|
334 |
msgid "Page Trending Stats"
|
335 |
msgstr "صفحة الإحصائيات الأكثر رواجاً"
|
336 |
|
337 |
+
#: includes/log/exclusions.php:24
|
338 |
msgid "Hostname"
|
339 |
msgstr "اسم المضيف"
|
340 |
|
341 |
+
#: includes/settings/tabs/wps-general.php:93
|
342 |
+
#: includes/settings/tabs/wps-general.php:133
|
343 |
+
#: includes/settings/tabs/wps-general.php:149
|
344 |
+
#: includes/settings/tabs/wps-general.php:188
|
345 |
+
#: includes/settings/tabs/wps-general.php:200
|
346 |
+
#: includes/settings/tabs/wps-general.php:229
|
347 |
+
#: includes/settings/tabs/wps-notifications.php:122
|
348 |
msgid "Enable or disable this feature"
|
349 |
msgstr "تمكين أو تعطيل هذه الميزة"
|
350 |
|
351 |
+
#: includes/settings/tabs/wps-general.php:99
|
352 |
msgid "Check for online users every"
|
353 |
msgstr "تحقق من المتصلين في الموقع في كل"
|
354 |
|
355 |
+
#: includes/settings/tabs/wps-general.php:104
|
356 |
msgid "Second"
|
357 |
msgstr "ثانية"
|
358 |
|
359 |
+
#: includes/settings/tabs/wps-general.php:105
|
360 |
msgid "Time for the check accurate online user in the site. Now: %s Second"
|
361 |
msgstr "وقت التحقق من المستخدمين المتصلين في الموقع. الآن: %s ثانية"
|
362 |
|
363 |
+
#: includes/settings/tabs/wps-general.php:111
|
364 |
msgid "Record all user"
|
365 |
msgstr "تسجيل جميع المستخدمين"
|
366 |
|
367 |
+
#: includes/settings/tabs/wps-general.php:117
|
368 |
msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
|
369 |
msgstr "يتجاهل إعدادات الإقصاء ويسجل كل المستخدمين التي يتم على الانترنت (بما في ذلك الإحالة الذاتية والروبوتات). وينبغي أن تستخدم فقط لاستكشاف الأخطاء وإصلاحها."
|
370 |
|
371 |
+
#: includes/settings/tabs/wps-general.php:155
|
372 |
msgid "Store entire user agent string"
|
373 |
msgstr "تخزين كامل سلسلة عامل المستخدم"
|
374 |
|
375 |
+
#: includes/settings/tabs/wps-general.php:161
|
376 |
msgid "Only enabled for debugging"
|
377 |
msgstr "تمكين فقط من أجل التصحيح"
|
378 |
|
379 |
+
#: includes/settings/tabs/wps-general.php:167
|
380 |
msgid "Coefficient per visitor"
|
381 |
msgstr "درجة لكل زائر"
|
382 |
|
383 |
+
#: includes/settings/tabs/wps-general.php:172
|
384 |
msgid "For each visit to account for several hits. Currently %s."
|
385 |
msgstr "حساب توجيه النقرات لكل زائر. حالياً %s."
|
386 |
|
387 |
+
#: includes/settings/tabs/wps-general.php:177
|
388 |
+
#: includes/settings/tabs/wps-general.php:182 wp-statistics.php:344
|
389 |
+
#: wp-statistics.php:420
|
|
|
390 |
msgid "Pages"
|
391 |
msgstr "الصفحات"
|
392 |
|
393 |
+
#: includes/settings/tabs/wps-general.php:194
|
394 |
msgid "Track all pages"
|
395 |
msgstr "تتبع جميع الصفحات"
|
396 |
|
397 |
+
#: includes/settings/tabs/wps-general.php:209
|
398 |
msgid "Strip parameters from URI"
|
399 |
msgstr "معايير الشريط من URI"
|
400 |
|
401 |
+
#: includes/settings/tabs/wps-general.php:215
|
402 |
msgid "This will remove anything after the ? in a URL."
|
403 |
msgstr "سيؤدي هذا إلى إزالة أي شيء بعد؟ في URL."
|
404 |
|
405 |
+
#: includes/settings/tabs/wps-general.php:223
|
406 |
msgid "Disable hits column in post/pages list"
|
407 |
msgstr "تعطيل عمود النقرات في قائمة المقال/الصفحات"
|
408 |
|
409 |
+
#: includes/settings/tabs/wps-general.php:234
|
410 |
msgid "Miscellaneous"
|
411 |
msgstr "متفرقات"
|
412 |
|
413 |
+
#: includes/settings/tabs/wps-general.php:239
|
414 |
msgid "Show stats in menu bar"
|
415 |
msgstr "إظهار الاحصائيات في شريط القوائم"
|
416 |
|
417 |
+
#: includes/settings/tabs/wps-general.php:244
|
418 |
msgid "No"
|
419 |
msgstr "لا"
|
420 |
|
421 |
+
#: includes/settings/tabs/wps-general.php:245
|
422 |
msgid "Yes"
|
423 |
msgstr "نعم"
|
424 |
|
425 |
+
#: includes/settings/tabs/wps-general.php:247
|
426 |
msgid "Show stats in admin menu bar"
|
427 |
msgstr "اظهار الاحصائيات في شريط القوائم الإداري"
|
428 |
|
429 |
+
#: includes/settings/tabs/wps-general.php:253
|
430 |
msgid "Hide admin notices about non active features"
|
431 |
msgstr "اخفاء إشعارات المشرف حول الميزات غير نشطة"
|
432 |
|
433 |
+
#: includes/settings/tabs/wps-general.php:259
|
434 |
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."
|
435 |
msgstr "افتراضيا احصائيات ووردبريس يعرض تنبيها إذا تم تعطيل أي من الميزات الأساسية في صفحة المشرف، وهذا الخيار لتعطيل هذه الإشعارات."
|
436 |
|
437 |
+
#: includes/settings/tabs/wps-general.php:265
|
438 |
msgid "Delete the manual"
|
439 |
msgstr "حذف الدليل"
|
440 |
|
441 |
+
#: includes/settings/tabs/wps-general.php:271
|
442 |
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."
|
443 |
msgstr "افتراضيا احصائيات ووردبريس يخزن دليل المشرف في الدليل المساعد (~ 5 ميج)، إذا تم تمكين هذا الخيار سيتم حذفه الآن، وخلال الترقيات في المستقبل."
|
444 |
|
445 |
+
#: includes/settings/tabs/wps-general.php:276
|
446 |
msgid "Search Engines"
|
447 |
msgstr "محركات البحث"
|
448 |
|
449 |
+
#: includes/settings/tabs/wps-general.php:293
|
450 |
msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
|
451 |
msgstr "تعطيل جميع محركات البحث غير مسموح, سيؤدي ذلك الى تنشيط جميع محركات البحث."
|
452 |
|
453 |
+
#: includes/settings/tabs/wps-general.php:308
|
454 |
msgid "disable"
|
455 |
msgstr "تعطيل"
|
456 |
|
457 |
+
#: includes/settings/tabs/wps-general.php:309
|
458 |
msgid "Disable %s from data collection and reporting."
|
459 |
msgstr "تعطيل %s من جمع البيانات وإعداد التقارير."
|
460 |
|
461 |
+
#: includes/settings/tabs/wps-general.php:315
|
462 |
msgid "Charts"
|
463 |
msgstr "الرسوم البيانية"
|
464 |
|
465 |
+
#: includes/settings/tabs/wps-general.php:320
|
466 |
msgid "Include totals"
|
467 |
msgstr "تتضمن الاجماليات"
|
468 |
|
469 |
+
#: includes/settings/tabs/wps-general.php:326
|
470 |
msgid "Add a total line to charts with multiple values, like the search engine referrals"
|
471 |
msgstr "إضافة سطر مجموع المخططات مع قيم متعددة، مثل إحالات محرك البحث"
|
472 |
|
473 |
+
#: includes/settings/tabs/wps-geoip.php:27
|
474 |
msgid "GeoIP settings"
|
475 |
msgstr "إعدادات GeoIP"
|
476 |
|
477 |
+
#: includes/settings/tabs/wps-geoip.php:32
|
478 |
msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
|
479 |
msgstr "خدمات الموقع IP المقدمة من البيانات GeoLite2 التي أنشأتها MaxMind، المتاحة من %s."
|
480 |
|
481 |
+
#: includes/settings/tabs/wps-geoip.php:42
|
482 |
msgid "GeoIP collection"
|
483 |
msgstr "مجموعة GeoIP"
|
484 |
|
485 |
+
#: includes/settings/tabs/wps-geoip.php:48
|
486 |
msgid "For get more information and location (country) from visitor, enable this feature."
|
487 |
msgstr "للحصول على مزيد من المعلومات، والمكان (البلد) من الزوار، تمكين هذه الميزة."
|
488 |
|
489 |
+
#: includes/settings/tabs/wps-geoip.php:54
|
490 |
msgid "Update GeoIP Info"
|
491 |
msgstr "تحديث معلومات GeoIP"
|
492 |
|
493 |
+
#: includes/settings/tabs/wps-geoip.php:59
|
494 |
msgid "Download GeoIP Database"
|
495 |
msgstr "تحميل قاعدة بيانات GeoIP"
|
496 |
|
497 |
+
#: includes/settings/tabs/wps-geoip.php:66
|
498 |
msgid "Schedule monthly update of GeoIP DB"
|
499 |
msgstr "جدولة التحديث الشهري لGeoIP DB"
|
500 |
|
501 |
+
#: includes/settings/tabs/wps-geoip.php:92
|
502 |
msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
|
503 |
msgstr "سيتم جدولة التحميل من قاعدة البيانات GeoIP لمدة 2 يوما بعد يوم الثلاثاء الأول من الشهر."
|
504 |
|
505 |
+
#: includes/settings/tabs/wps-geoip.php:93
|
506 |
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)."
|
507 |
msgstr "وهذا الخيار أيضا تحميل قاعدة البيانات إذا كان حجم الملف المحلي أقل من 1K (الذي يعني عادة أن طرف البرنامج التي تأتي مع البرنامج المساعد لا يزال في مكانه)."
|
508 |
|
509 |
+
#: includes/settings/tabs/wps-geoip.php:99
|
510 |
msgid "Populate missing GeoIP after update of GeoIP DB"
|
511 |
msgstr "تعبئة GeoIP في عداد المفقودين بعد التحديث من GeoIP DB"
|
512 |
|
513 |
+
#: includes/settings/tabs/wps-geoip.php:105
|
514 |
msgid "Update any missing GeoIP data after downloading a new database."
|
515 |
msgstr "تحديث أي بيانات GeoIP مفقودة بعد تحميل قاعدة البيانات الجديدة."
|
516 |
|
517 |
+
#: includes/settings/tabs/wps-geoip.php:111
|
518 |
msgid "Country code for private IP addresses"
|
519 |
msgstr "رمز البلد لعناوين IP خاصة"
|
520 |
|
521 |
+
#: includes/settings/tabs/wps-geoip.php:116
|
522 |
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."
|
523 |
msgstr "المعيار اثنين الرمز الدولي بلد إلكتروني (أي الولايات المتحدة = الولايات المتحدة الأمريكية، CA = كندا، الخ) ل(غير قابل للتوجيه) عناوين IP خاصة (أي. 10.0.0.1، 192.158.1.1، 127.0.0.1، وما إلى ذلك). استخدام \"000\" (ثلاثة أصفار) لاستخدام \"غير معروف\"، كما رمز البلد."
|
524 |
|
525 |
+
#: includes/settings/tabs/wps-geoip.php:127
|
526 |
msgid "GeoIP collection is disabled due to the following reasons:"
|
527 |
msgstr "تم تعطيل مجموعة GeoIP وذلك للأسباب التالية:"
|
528 |
|
529 |
+
#: includes/settings/tabs/wps-geoip.php:130
|
530 |
msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
|
531 |
msgstr "جمع GeoIP يتطلب PHP %s أو أعلى، يتم تعطيله حاليا نظرا لكونها نسخة PHP مثبتة"
|
532 |
|
533 |
+
#: includes/settings/tabs/wps-geoip.php:135
|
534 |
msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
|
535 |
msgstr "مجموعة GeoIP تتطلب الملحق cURL PHP و هو غير مفعل على إصدار الـ PHP!"
|
536 |
|
537 |
+
#: includes/settings/tabs/wps-geoip.php:141
|
538 |
msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
|
539 |
msgstr "مجموعة GeoIP تتطلب الملحق BC Math PHP و هو غير مفعل على إصدار الـ PHP!"
|
540 |
|
541 |
+
#: includes/settings/tabs/wps-geoip.php:147
|
542 |
msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
|
543 |
msgstr "تم الكشف عن الوضع الآمن في PHP! مجموعة GeoIP غير معتمدة عند تمكين الوضع الآمن في PHP!"
|
544 |
|
545 |
+
#: includes/settings/tabs/wps-maintenance.php:20
|
546 |
msgid "This will permanently delete data from the database each day, are you sure you want to enable this option?"
|
547 |
msgstr "سيؤدي ذلك إلى حذف البيانات من قاعدة البيانات بشكل دائم كل يوم، هل أنت متأكد من أنك تريد تمكين هذا الخيار؟"
|
548 |
|
549 |
+
#: includes/settings/tabs/wps-maintenance.php:30
|
550 |
msgid "Database Maintenance"
|
551 |
msgstr "صيانة قاعدة البيانات"
|
552 |
|
553 |
+
#: includes/settings/tabs/wps-maintenance.php:35
|
554 |
+
#: includes/settings/tabs/wps-maintenance.php:59
|
555 |
msgid "Run a daily WP Cron job to prune the databases"
|
556 |
msgstr "تشغيل مهام ووردبريس يوميا للضخ في قاعدة البيانات"
|
557 |
|
558 |
+
#: includes/settings/tabs/wps-maintenance.php:41
|
559 |
msgid "A WP Cron job will be run daily to prune any data older than a set number of days."
|
560 |
msgstr "سيتم تشغيل ألف وظيفة في مهام ووردبريس يوميا لضخ أي بيانات أقدم من العدد المحدد من الأيام."
|
561 |
|
562 |
+
#: includes/settings/tabs/wps-maintenance.php:47
|
563 |
msgid "Prune data older than"
|
564 |
msgstr "ضخ البيانات الأقدم من"
|
565 |
|
566 |
+
#: includes/settings/tabs/wps-maintenance.php:52
|
567 |
msgid "Days"
|
568 |
msgstr "أيام"
|
569 |
|
570 |
+
#: includes/settings/tabs/wps-maintenance.php:53
|
571 |
msgid "The number of days to keep statistics for. Minimum value is 30 days. Invalid values will disable the daily maintenance."
|
572 |
msgstr "عدد الأيام للحفاظ على الإحصاءات المتعلقة. قيمة الحد الأدنى هو 30 يوما. سيتم تعطيل الصيانة اليومية في حال ادخال قيم غير صالحة."
|
573 |
|
574 |
+
#: includes/settings/tabs/wps-notifications.php:44
|
575 |
msgid "Common Report Options"
|
576 |
msgstr "خيارات تقرير المشترك"
|
577 |
|
578 |
+
#: includes/settings/tabs/wps-notifications.php:49
|
579 |
msgid "E-mail addresses"
|
580 |
msgstr "عناوين البريد الإلكتروني"
|
581 |
|
582 |
+
#: includes/settings/tabs/wps-notifications.php:54
|
583 |
msgid "A comma separated list of e-mail addresses to send reports to."
|
584 |
msgstr "أفصل قائمة عناوين البريد الإلكتروني بفاصلة لإرسال التقارير إلى."
|
585 |
|
586 |
+
#: includes/settings/tabs/wps-notifications.php:59
|
587 |
msgid "Update Reports"
|
588 |
msgstr "تقارير التحديث"
|
589 |
|
590 |
+
#: includes/log/exclusions.php:24
|
591 |
+
#: includes/settings/tabs/wps-notifications.php:64
|
592 |
msgid "Browscap"
|
593 |
msgstr "Browscap"
|
594 |
|
595 |
+
#: includes/settings/tabs/wps-notifications.php:70
|
596 |
msgid "Send a report whenever the browscap.ini is updated."
|
597 |
msgstr "إرسال تقرير كلما يتم تحديث browscap.ini."
|
598 |
|
599 |
+
#: includes/log/exclusions.php:24
|
600 |
+
#: includes/settings/tabs/wps-notifications.php:76
|
601 |
+
#: includes/settings/wps-settings.php:104
|
602 |
msgid "GeoIP"
|
603 |
msgstr "GeoIP"
|
604 |
|
605 |
+
#: includes/settings/tabs/wps-notifications.php:82
|
606 |
msgid "Send a report whenever the GeoIP database is updated."
|
607 |
msgstr "إرسال تقرير كلما يتم تحديث قاعدة البيانات GeoIP."
|
608 |
|
609 |
+
#: includes/settings/tabs/wps-notifications.php:88
|
610 |
msgid "Pruning"
|
611 |
msgstr "تنقيح"
|
612 |
|
613 |
+
#: includes/settings/tabs/wps-notifications.php:94
|
614 |
msgid "Send a report whenever the pruning of database is run."
|
615 |
msgstr "إرسال تقرير كلما يتم تشغيل التنقيح في قاعدة البيانات."
|
616 |
|
617 |
+
#: includes/settings/tabs/wps-notifications.php:100
|
618 |
msgid "Upgrade"
|
619 |
msgstr "ترقية"
|
620 |
|
621 |
+
#: includes/settings/tabs/wps-notifications.php:106
|
622 |
msgid "Send a report whenever the plugin is upgraded."
|
623 |
msgstr "إرسال تقرير كلما تتم ترقية البرنامج المساعد."
|
624 |
|
625 |
+
#: includes/settings/tabs/wps-notifications.php:111
|
626 |
+
#: includes/settings/tabs/wps-notifications.php:116 schedule.php:199
|
|
|
627 |
msgid "Statistical reporting"
|
628 |
msgstr "تقارير الإحصائيات"
|
629 |
|
630 |
+
#: includes/settings/tabs/wps-notifications.php:129
|
631 |
msgid "Schedule"
|
632 |
msgstr "جدول"
|
633 |
|
634 |
+
#: includes/settings/tabs/wps-notifications.php:153
|
635 |
msgid "Select how often to receive statistical report."
|
636 |
msgstr "حدد عدد المرات لتلقي تقرير إحصائي."
|
637 |
|
638 |
+
#: includes/settings/tabs/wps-notifications.php:159
|
639 |
msgid "Send reports via"
|
640 |
msgstr "إرسال التقارير عن طريق"
|
641 |
|
642 |
+
#: includes/settings/tabs/wps-notifications.php:165
|
643 |
msgid "Email"
|
644 |
msgstr "البريد الإلكتروني"
|
645 |
|
646 |
+
#: includes/settings/tabs/wps-notifications.php:167
|
647 |
msgid "SMS"
|
648 |
msgstr "رسائل نصية"
|
649 |
|
650 |
+
#: includes/settings/tabs/wps-notifications.php:170
|
651 |
msgid "Select delivery method for statistical report."
|
652 |
msgstr "حدد طريقة التسليم للتقرير الإحصائي."
|
653 |
|
654 |
+
#: includes/settings/tabs/wps-notifications.php:173
|
655 |
msgid "Note: To send SMS text messages please install the %s plugin."
|
656 |
msgstr "ملاحظة: لإرسال رسائل نصية SMS الرجاء تثبيت إضافة %s."
|
657 |
|
658 |
+
#: includes/settings/tabs/wps-notifications.php:173
|
659 |
msgid "WordPress SMS"
|
660 |
msgstr "الرسائل النصية"
|
661 |
|
662 |
+
#: includes/settings/tabs/wps-notifications.php:180
|
663 |
msgid "Report body"
|
664 |
msgstr "تقرير الهيئة"
|
665 |
|
666 |
+
#: includes/settings/tabs/wps-notifications.php:185
|
667 |
msgid "Enter the contents of the report."
|
668 |
msgstr "أدخل محتويات التقرير."
|
669 |
|
670 |
+
#: includes/settings/tabs/wps-notifications.php:187
|
671 |
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:"
|
672 |
msgstr "أي رمز قصير بدعم من مثبت ووردبريس، وتشمل جميع الاكواد المختصرة لاحصائيات ووردبريس (انظر دليل المشرف للحصول على قائمة رموز المتاحة) معتمدة في نص الرسالة. وهنا بعض الأمثلة:"
|
673 |
|
674 |
+
#: includes/settings/tabs/wps-notifications.php:188 widget.php:38
|
675 |
+
#: widget.php:245 wp-statistics.php:522
|
|
|
|
|
676 |
msgid "User Online"
|
677 |
msgstr "المتواجدين الآن"
|
678 |
|
679 |
+
#: includes/settings/tabs/wps-notifications.php:189 widget.php:52
|
680 |
+
#: widget.php:251
|
|
|
681 |
msgid "Today Visitor"
|
682 |
msgstr "زوار اليوم"
|
683 |
|
684 |
+
#: includes/settings/tabs/wps-notifications.php:190 widget.php:45
|
685 |
+
#: widget.php:248
|
|
|
686 |
msgid "Today Visit"
|
687 |
msgstr "زيارات اليوم"
|
688 |
|
689 |
+
#: includes/settings/tabs/wps-notifications.php:191 widget.php:66
|
690 |
+
#: widget.php:257
|
|
|
691 |
msgid "Yesterday Visitor"
|
692 |
msgstr "زوار الأمس"
|
693 |
|
694 |
+
#: includes/settings/tabs/wps-notifications.php:192 widget.php:59
|
|
|
695 |
msgid "Yesterday Visit"
|
696 |
msgstr "زيارات الأمس"
|
697 |
|
698 |
+
#: includes/settings/tabs/wps-notifications.php:193 widget.php:101
|
699 |
+
#: widget.php:272
|
|
|
700 |
msgid "Total Visitor"
|
701 |
msgstr "مجموع الزوار"
|
702 |
|
703 |
+
#: includes/settings/tabs/wps-notifications.php:194 widget.php:94
|
704 |
+
#: widget.php:269
|
|
|
705 |
msgid "Total Visit"
|
706 |
msgstr "مجموع الزيارات"
|
707 |
|
708 |
+
#: includes/settings/tabs/wps-overview-display.php:23
|
709 |
+
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:166
|
710 |
msgid "None"
|
711 |
msgstr "لا شيء"
|
712 |
|
713 |
+
#: includes/settings/tabs/wps-overview-display.php:24
|
714 |
msgid "Summary Statistics"
|
715 |
msgstr "ملخص الاحصائيات"
|
716 |
|
717 |
+
#: includes/settings/tabs/wps-overview-display.php:28
|
718 |
+
#: includes/settings/wps-settings.php:108
|
719 |
msgid "About"
|
720 |
msgstr "حول"
|
721 |
|
722 |
+
#: includes/settings/tabs/wps-overview-display.php:34
|
723 |
msgid "Hits Statistical Chart"
|
724 |
msgstr "الرسم البياني لعدد النقرات"
|
725 |
|
726 |
+
#: includes/settings/tabs/wps-overview-display.php:36
|
727 |
msgid "Search Engine Referrers Statistical Chart"
|
728 |
msgstr "الرسم البياني لمحركات البحث"
|
729 |
|
730 |
+
#: includes/settings/tabs/wps-overview-display.php:38
|
731 |
msgid "Top Pages Visited"
|
732 |
msgstr "أعلى الصفحات زيارة"
|
733 |
|
734 |
+
#: includes/settings/tabs/wps-overview-display.php:73
|
735 |
msgid "Dashboard"
|
736 |
msgstr "لوحة القيادة"
|
737 |
|
738 |
+
#: includes/settings/tabs/wps-overview-display.php:77
|
739 |
+
#: includes/settings/tabs/wps-overview-display.php:97
|
740 |
+
#: includes/settings/tabs/wps-overview-display.php:117
|
741 |
msgid "The following items are global to all users."
|
742 |
msgstr "العناصر التالية هي عالمية لجميع المستخدمين."
|
743 |
|
744 |
+
#: includes/settings/tabs/wps-overview-display.php:82
|
745 |
msgid "Disable dashboard widgets"
|
746 |
msgstr "تعطيل قطع لوحة القيادة"
|
747 |
|
748 |
+
#: includes/settings/tabs/wps-overview-display.php:88
|
749 |
msgid "Disable the dashboard widgets."
|
750 |
msgstr "تعطيل القطع للوحة القيادة"
|
751 |
|
752 |
+
#: includes/settings/tabs/wps-overview-display.php:93
|
753 |
msgid "Page/Post Editor"
|
754 |
msgstr "محرر الصفحة/المشاركة"
|
755 |
|
756 |
+
#: includes/settings/tabs/wps-overview-display.php:102
|
757 |
msgid "Disable post/page editor widget"
|
758 |
msgstr "تعطيل قطعة محرر الصفحة/المشاركة"
|
759 |
|
760 |
+
#: includes/settings/tabs/wps-overview-display.php:108
|
761 |
msgid "Disable the page/post editor widget."
|
762 |
msgstr "تعطيل القطع لمحرر الصفحة/المشاركة"
|
763 |
|
764 |
+
#: includes/settings/tabs/wps-overview-display.php:122
|
765 |
msgid "Map type"
|
766 |
msgstr "نوع الخريطة"
|
767 |
|
768 |
+
#: includes/functions/functions.php:402
|
769 |
+
#: includes/settings/tabs/wps-overview-display.php:128
|
770 |
msgid "Google"
|
771 |
msgstr "جوجل"
|
772 |
|
773 |
+
#: includes/settings/tabs/wps-overview-display.php:128
|
774 |
msgid "JQVMap"
|
775 |
msgstr "JQVMap"
|
776 |
|
777 |
+
#: includes/settings/tabs/wps-overview-display.php:135
|
778 |
msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
|
779 |
msgstr "خيار \"جوجل\" يتوجب استخدام خدمة الخرائط جوجل لرسم زوار مؤخرا. (يتطلب الوصول إلى Google)"
|
780 |
|
781 |
+
#: includes/settings/tabs/wps-overview-display.php:136
|
782 |
msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
|
783 |
msgstr "خيار \"JQVMap\" استخدام مكتبة خرائط JQVMap جافا سكريبت لرسم الزوار مؤخرا. (لا يتطلب أي خدمات خارجية)."
|
784 |
|
785 |
+
#: includes/settings/tabs/wps-overview-display.php:142
|
786 |
msgid "Disable map"
|
787 |
msgstr "تعطيل الخريطة"
|
788 |
|
789 |
+
#: includes/settings/tabs/wps-overview-display.php:148
|
790 |
msgid "Disable the map display"
|
791 |
msgstr "تعطيل عرض الخريطة"
|
792 |
|
793 |
+
#: includes/settings/tabs/wps-overview-display.php:154
|
794 |
msgid "Get country location from Google"
|
795 |
msgstr "الحصول على موقع البلد من جوجل"
|
796 |
|
797 |
+
#: includes/settings/tabs/wps-overview-display.php:160
|
798 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
799 |
msgstr "قد تؤدي هذه الميزة تدهور الأداء عند عرض الإحصاءات وصالحة فقط إذا تم تعيين نوع الخريطة لـ \"جوجل\"."
|
800 |
|
801 |
+
#: includes/settings/tabs/wps-overview-display.php:171
|
802 |
msgid "Overview Widgets to Display"
|
803 |
msgstr "نظرة عامة للقطع المعروضة"
|
804 |
|
805 |
+
#: includes/settings/tabs/wps-overview-display.php:175
|
806 |
msgid "The following items are unique to each user. If you do not select the 'About' widget it will automatically be displayed in the last positon of column A."
|
807 |
msgstr "العناصر التالية هي فريدة من نوعها لكل مستخدم. إذا لم تقم بتحديد قطعة 'حول' سيتم تلقائيا إظهارها في العمود الأخير من A."
|
808 |
|
809 |
+
#: includes/settings/tabs/wps-overview-display.php:180
|
810 |
msgid "Slot"
|
811 |
msgstr "شريحة"
|
812 |
|
813 |
+
#: includes/settings/tabs/wps-overview-display.php:184
|
814 |
msgid "Column A"
|
815 |
msgstr "العمود A"
|
816 |
|
817 |
+
#: includes/settings/tabs/wps-overview-display.php:188
|
818 |
msgid "Column B"
|
819 |
msgstr "العمود B"
|
820 |
|
821 |
+
#: includes/settings/tabs/wps-overview-display.php:194
|
822 |
msgid "Slot 1"
|
823 |
msgstr "الشريحة 1"
|
824 |
|
825 |
+
#: includes/settings/tabs/wps-overview-display.php:224
|
826 |
msgid "Slot 2"
|
827 |
msgstr "الشريحة 2"
|
828 |
|
829 |
+
#: includes/settings/tabs/wps-overview-display.php:254
|
830 |
msgid "Slot 3"
|
831 |
msgstr "الشريحة 3"
|
832 |
|
833 |
+
#: includes/settings/tabs/wps-overview-display.php:284
|
834 |
msgid "Slot 4"
|
835 |
msgstr "الشريحة 4"
|
836 |
|
837 |
+
#: includes/settings/tabs/wps-overview-display.php:314
|
838 |
msgid "Slot 5"
|
839 |
msgstr "الشريحة 5"
|
840 |
|
841 |
+
#: includes/settings/tabs/wps-overview-display.php:344
|
842 |
msgid "Slot 6"
|
843 |
msgstr "الشريحة 6"
|
844 |
|
845 |
+
#: includes/settings/tabs/wps-overview-display.php:348
|
846 |
+
#: includes/settings/tabs/wps-overview-display.php:370
|
847 |
msgid "N/A"
|
848 |
msgstr "N/A"
|
849 |
|
850 |
+
#: includes/settings/tabs/wps-overview-display.php:366
|
851 |
msgid "Slot 7"
|
852 |
msgstr "الشريحة 7"
|
853 |
|
854 |
+
#: includes/settings/tabs/wps-removal.php:15
|
855 |
msgid "WP Statisitcs Removal"
|
856 |
msgstr "إزالة احصائيات ووردبريس"
|
857 |
|
858 |
+
#: includes/settings/tabs/wps-removal.php:20
|
859 |
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."
|
860 |
msgstr "إزالة احصائيات ووردبريس لن تقوم بإزالة البيانات والإعدادات، يمكنك استخدام هذا الخيار لإزالة البيانات الخاصة بك قبل إلغاء تثبيت البرنامج المساعد."
|
861 |
|
862 |
+
#: includes/settings/tabs/wps-removal.php:23
|
863 |
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."
|
864 |
msgstr "بمجرد التقدم في هذا الخيار سيتم حذف الإعدادات أثناء تحميل صفحة هذا النموذج، ولكن سوف تزال تظهر احصائيات ووردبريس في قائمة المشرف الخاص بك حتى يتم تحميل الصفحة مرة أخرى."
|
865 |
|
866 |
+
#: includes/settings/tabs/wps-removal.php:29
|
867 |
msgid "Remove data and settings"
|
868 |
msgstr "إزالة البيانات والإعدادات"
|
869 |
|
870 |
+
#: includes/settings/tabs/wps-removal.php:34
|
871 |
msgid "Remove"
|
872 |
msgstr "إزالة"
|
873 |
|
874 |
+
#: includes/settings/tabs/wps-removal.php:35
|
875 |
msgid "Remove data and settings, this action cannot be undone."
|
876 |
msgstr "إزالة البيانات والإعدادات، لا يمكنك التراجع مستقبلاً."
|
877 |
|
878 |
+
#: includes/settings/wps-settings.php:100
|
879 |
msgid "General"
|
880 |
msgstr "عام"
|
881 |
|
882 |
+
#: includes/settings/wps-settings.php:101
|
883 |
msgid "Notifications"
|
884 |
msgstr "الإشعارات"
|
885 |
|
886 |
+
#: includes/settings/wps-settings.php:102
|
887 |
msgid "Dashboard/Overview"
|
888 |
msgstr "اللوحة/نظرة عامة"
|
889 |
|
890 |
+
#: includes/settings/wps-settings.php:103
|
891 |
msgid "Access/Exclusions"
|
892 |
msgstr "وصول/استثناءات"
|
893 |
|
894 |
+
#: includes/settings/wps-settings.php:105
|
895 |
msgid "browscap"
|
896 |
msgstr "browscap"
|
897 |
|
898 |
+
#: includes/settings/wps-settings.php:106
|
899 |
msgid "Maintenance"
|
900 |
msgstr "صيانة"
|
901 |
|
902 |
+
#: includes/settings/wps-settings.php:107
|
903 |
msgid "Removal"
|
904 |
msgstr "الإزالة"
|
905 |
|
906 |
+
#: includes/settings/tabs/wps-access-level.php:278
|
907 |
+
#: includes/settings/tabs/wps-browscap.php:81
|
908 |
+
#: includes/settings/tabs/wps-general.php:349
|
909 |
+
#: includes/settings/tabs/wps-geoip.php:158
|
910 |
+
#: includes/settings/tabs/wps-maintenance.php:84
|
911 |
+
#: includes/settings/tabs/wps-notifications.php:201
|
912 |
+
#: includes/settings/tabs/wps-overview-display.php:388
|
913 |
+
#: includes/settings/tabs/wps-removal.php:42
|
914 |
msgid "Update"
|
915 |
msgstr "تحديث"
|
916 |
|
917 |
+
#: schedule.php:10
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
918 |
msgid "Once Weekly"
|
919 |
msgstr "مرة كل أسبوع"
|
920 |
|
921 |
+
#: schedule.php:17
|
922 |
msgid "Once Every 2 Weeks"
|
923 |
msgstr "مرة كل 2 أسابيع"
|
924 |
|
925 |
+
#: schedule.php:24
|
926 |
msgid "Once Every 4 Weeks"
|
927 |
msgstr "مرة كل 4 أسابيع"
|
928 |
|
929 |
+
#: widget.php:14 wp-statistics.php:335 wp-statistics.php:373
|
|
|
|
|
930 |
msgid "Statistics"
|
931 |
msgstr "الاحصائيات"
|
932 |
|
933 |
+
#: widget.php:15
|
934 |
msgid "Show site stats in sidebar."
|
935 |
msgstr "عرض احصائيات الموقع في الشريط الجانبي."
|
936 |
|
937 |
+
#: widget.php:73 widget.php:260
|
|
|
938 |
msgid "Week Visit"
|
939 |
msgstr "زيارات الأسبوع"
|
940 |
|
941 |
+
#: widget.php:80 widget.php:263
|
|
|
942 |
msgid "Month Visit"
|
943 |
msgstr "زيارات الشهر"
|
944 |
|
945 |
+
#: widget.php:87 widget.php:266
|
|
|
946 |
msgid "Years Visit"
|
947 |
msgstr "زيارات السنة"
|
948 |
|
949 |
+
#: widget.php:108 widget.php:275
|
|
|
950 |
msgid "Total Page Views"
|
951 |
msgstr "مجموع مشاهدات الصفحة"
|
952 |
|
953 |
+
#: widget.php:116
|
954 |
msgid "Search Engine referred"
|
955 |
msgstr "محرك البحث المشار"
|
956 |
|
957 |
+
#: widget.php:123 widget.php:298
|
|
|
958 |
msgid "Total Posts"
|
959 |
msgstr "إجمالي المشاركات"
|
960 |
|
961 |
+
#: widget.php:130 widget.php:301
|
|
|
962 |
msgid "Total Pages"
|
963 |
msgstr "إجمالي الصفحات"
|
964 |
|
965 |
+
#: widget.php:137 widget.php:304
|
|
|
966 |
msgid "Total Comments"
|
967 |
msgstr "إجمالي التعليقات"
|
968 |
|
969 |
+
#: widget.php:144 widget.php:307
|
|
|
970 |
msgid "Total Spams"
|
971 |
msgstr "إجمالي السبام"
|
972 |
|
973 |
+
#: widget.php:151 widget.php:310
|
|
|
974 |
msgid "Total Users"
|
975 |
msgstr "عدد الاعضاء"
|
976 |
|
977 |
+
#: widget.php:158 widget.php:313
|
|
|
978 |
msgid "Average Posts"
|
979 |
msgstr "متوسط المشاركات"
|
980 |
|
981 |
+
#: widget.php:165 widget.php:316
|
|
|
982 |
msgid "Average Comments"
|
983 |
msgstr "متوسط التعليقات"
|
984 |
|
985 |
+
#: widget.php:172 widget.php:319
|
|
|
986 |
msgid "Average Users"
|
987 |
msgstr "متوسط الاعضاء"
|
988 |
|
989 |
+
#: shortcode.php:142 widget.php:179 widget.php:322
|
|
|
990 |
msgid "Last Post Date"
|
991 |
msgstr "تاريخ آخر مشاركة"
|
992 |
|
993 |
+
#: widget.php:238
|
994 |
msgid "Name"
|
995 |
msgstr "الأسم"
|
996 |
|
997 |
+
#: widget.php:242
|
998 |
msgid "Items"
|
999 |
msgstr "البنود"
|
1000 |
|
1001 |
+
#: widget.php:254 wp-statistics.php:547
|
|
|
1002 |
msgid "Yesterday visit"
|
1003 |
msgstr "زيارات الأمس"
|
1004 |
|
1005 |
+
#: widget.php:278
|
1006 |
msgid "Search Engine Referred"
|
1007 |
msgstr "محرك بحث المشارين"
|
1008 |
|
1009 |
+
#: widget.php:281
|
1010 |
msgid "Select type of search engine"
|
1011 |
msgstr "حدد نوع من محرك البحث"
|
1012 |
|
1013 |
+
#: wp-statistics.php:63
|
1014 |
msgid "ERROR: WP Statistics has detected an unsupported version of PHP, WP Statistics will not function without PHP Version "
|
1015 |
msgstr "خطأ: كشف احصائيات ووردبريس أن إصدار PHP لديك غير معتمد، و احصائيات ووردبريس لن تعمل دون PHP النسخة"
|
1016 |
|
1017 |
+
#: wp-statistics.php:63
|
1018 |
msgid " or higher!"
|
1019 |
msgstr "أو أعلى!"
|
1020 |
|
1021 |
+
#: wp-statistics.php:63
|
1022 |
msgid "Your current PHP version is"
|
1023 |
msgstr "نسخة PHP الحالي هو"
|
1024 |
|
1025 |
+
#: wp-statistics.php:79
|
1026 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1027 |
msgstr "تمت إزالة احصائيات ووردبريس، يرجى التعطيل والحذف."
|
1028 |
|
1029 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.2) #-#-#-#-#
|
1030 |
+
#. Plugin Name of the plugin/theme
|
1031 |
+
#: wp-statistics.php:37
|
1032 |
msgid "WP Statistics"
|
1033 |
msgstr "احصائيات ووردبريس"
|
1034 |
|
1035 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.2) #-#-#-#-#
|
1036 |
+
#. Description of the plugin/theme
|
1037 |
+
#: wp-statistics.php:38
|
1038 |
msgid "Complete statistics for your WordPress site."
|
1039 |
msgstr "إحصاءات كاملة لموقع ووردبريس الخاص بك."
|
1040 |
|
1041 |
+
#: wp-statistics.php:130
|
1042 |
msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
|
1043 |
msgstr "لم يتم تمكين تتبع المستخدم عبر الإنترنت في احصائيات ووردبريس، يرجى الذهاب إلى %s وتمكينه."
|
1044 |
|
1045 |
+
#: wp-statistics.php:130 wp-statistics.php:133 wp-statistics.php:136
|
|
|
|
|
1046 |
msgid "setting page"
|
1047 |
msgstr "صفحة الإعدادات"
|
1048 |
|
1049 |
+
#: wp-statistics.php:133
|
1050 |
msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
|
1051 |
msgstr "تتبع النقرات في احصائيات ووردبريس لم يتم تمكينه، يرجى الذهاب إلى %s وتمكينه."
|
1052 |
|
1053 |
+
#: wp-statistics.php:136
|
1054 |
msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
|
1055 |
msgstr "لم يتم تمكين تتبع الزائر في احصائيات ووردبريس، يرجى الذهاب إلى %s وتمكينه."
|
1056 |
|
1057 |
+
#: wp-statistics.php:139
|
1058 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1059 |
msgstr "مجموعة GeoIP غير نشطه، يرجى الذهاب إلى %s وتمكين هذه الميزة."
|
1060 |
|
1061 |
+
#: wp-statistics.php:139
|
1062 |
msgid "Setting page > GeoIP"
|
1063 |
msgstr "صفحة الإعدادات > GeoIP"
|
1064 |
|
1065 |
+
#: wp-statistics.php:242 wp-statistics.php:354 wp-statistics.php:427
|
|
|
|
|
1066 |
msgid "Settings"
|
1067 |
msgstr "الإعدادات"
|
1068 |
|
1069 |
+
#: wp-statistics.php:254
|
1070 |
msgid "Click here to visit the plugin on WordPress.org"
|
1071 |
msgstr "انقر هنا لزيارة صفحة الإضافة على WordPress.org"
|
1072 |
|
1073 |
+
#: wp-statistics.php:254
|
1074 |
msgid "Visit WordPress.org page"
|
1075 |
msgstr "زيارة صفحة WordPress.org"
|
1076 |
|
1077 |
+
#: wp-statistics.php:257
|
1078 |
msgid "Click here to rate and review this plugin on WordPress.org"
|
1079 |
msgstr "أنقر هنا لمراجهة وتقييم الإضافة على WordPress.org"
|
1080 |
|
1081 |
+
#: wp-statistics.php:257
|
1082 |
msgid "Rate this plugin"
|
1083 |
msgstr "ضع تقييمك لهذه الاضافة"
|
1084 |
|
1085 |
+
#: wp-statistics.php:301
|
1086 |
msgid "WP Statistics - Hits"
|
1087 |
msgstr "احصائيات ووردبريس - الزيارات"
|
1088 |
|
1089 |
+
#: wp-statistics.php:338 wp-statistics.php:376 wp-statistics.php:414
|
|
|
|
|
1090 |
msgid "Overview"
|
1091 |
msgstr "نظرة عامة"
|
1092 |
|
1093 |
+
#: wp-statistics.php:343 wp-statistics.php:419
|
|
|
1094 |
msgid "Online"
|
1095 |
msgstr "المتواجدون"
|
1096 |
|
1097 |
+
#: wp-statistics.php:345 wp-statistics.php:421
|
|
|
1098 |
msgid "Referrers"
|
1099 |
msgstr "الدعوات"
|
1100 |
|
1101 |
+
#: shortcode.php:133 wp-statistics.php:346 wp-statistics.php:422
|
|
|
1102 |
msgid "Searches"
|
1103 |
msgstr "عمليات البحث"
|
1104 |
|
1105 |
+
#: wp-statistics.php:347 wp-statistics.php:423
|
|
|
1106 |
msgid "Search Words"
|
1107 |
msgstr "كلمات البحث"
|
1108 |
|
1109 |
+
#: wp-statistics.php:348 wp-statistics.php:424
|
|
|
1110 |
msgid "Top Visitors Today"
|
1111 |
msgstr "أعلى زوار اليوم"
|
1112 |
|
1113 |
+
#: wp-statistics.php:353 wp-statistics.php:426
|
|
|
1114 |
msgid "Optimization"
|
1115 |
msgstr "التحسين"
|
1116 |
|
1117 |
+
#: wp-statistics.php:359 wp-statistics.php:390
|
|
|
1118 |
msgid "Manual"
|
1119 |
msgstr "الدليل"
|
1120 |
|
1121 |
+
#: wp-statistics.php:405
|
1122 |
msgid "Site"
|
1123 |
msgstr "موقع"
|
1124 |
|
1125 |
+
#: wp-statistics.php:406
|
1126 |
msgid "Options"
|
1127 |
msgstr "خيارات"
|
1128 |
|
1129 |
+
#: wp-statistics.php:529
|
1130 |
msgid "Today visitor"
|
1131 |
msgstr "زوار اليوم"
|
1132 |
|
1133 |
+
#: wp-statistics.php:535
|
1134 |
msgid "Today visit"
|
1135 |
msgstr "زيارات اليوم"
|
1136 |
|
1137 |
+
#: wp-statistics.php:541
|
1138 |
msgid "Yesterday visitor"
|
1139 |
msgstr "زيارات الأمس"
|
1140 |
|
1141 |
+
#: wp-statistics.php:553
|
1142 |
msgid "View Stats"
|
1143 |
msgstr "عرض الإحصائيات"
|
1144 |
|
1145 |
+
#: wp-statistics.php:577
|
1146 |
msgid "Download ODF file"
|
1147 |
msgstr "تحميل ملف ODF"
|
1148 |
|
1149 |
+
#: wp-statistics.php:578
|
1150 |
msgid "Download HTML file"
|
1151 |
msgstr "تحميل ملف HTML"
|
1152 |
|
1153 |
+
#: wp-statistics.php:582
|
1154 |
msgid "Manual file not found."
|
1155 |
msgstr "لم يتم العثور على ملف الدليل."
|
1156 |
|
1157 |
+
#: wp-statistics.php:649 wp-statistics.php:760 wp-statistics.php:794
|
|
|
|
|
1158 |
msgid "You do not have sufficient permissions to access this page."
|
1159 |
msgstr "ليس لديك الصلاحيات الكافية لدخول هذه الصفحة."
|
1160 |
|
1161 |
+
#: wp-statistics.php:662
|
1162 |
msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
|
1163 |
msgstr "جداول البرنامج المساعد لا وجود لها في قاعدة البيانات! يرجى إعادة تشغيل %s التثبيت الروتيني %s."
|
1164 |
|
1165 |
+
#: wp-statistics.php:230
|
1166 |
msgid "WP Statistics %s installed on"
|
1167 |
msgstr "احصائيات ووردبريس %s مثبتة على"
|
1168 |
|
1169 |
+
#: wps-updates.php:34
|
1170 |
msgid "Error downloading GeoIP database from: %s - %s"
|
1171 |
msgstr "خطأ تحميل قاعدة بيانات GeoIP من: %s - %s"
|
1172 |
|
1173 |
+
#: wps-updates.php:45
|
1174 |
msgid "Error could not open downloaded GeoIP database for reading: %s"
|
1175 |
msgstr "خطأ لا يمكن فتح قاعدة البيانات GeoIP التي تم تحميلها للقراءة: %s"
|
1176 |
|
1177 |
+
#: wps-updates.php:52
|
1178 |
msgid "Error could not open destination GeoIP database for writing %s"
|
1179 |
msgstr "خطأ لا يمكن فتح قاعدة البيانات GeoIP لجهة الكتابة %s"
|
1180 |
|
1181 |
+
#: wps-updates.php:68
|
1182 |
msgid "GeoIP Database updated successfully!"
|
1183 |
msgstr "تم تحديث قاعدة بيانات GeoIP بنجاح!"
|
1184 |
|
1185 |
+
#: wps-updates.php:93
|
1186 |
msgid "GeoIP update on"
|
1187 |
msgstr "تحديث GeoIP على"
|
1188 |
|
1189 |
+
#: wps-updates.php:160
|
1190 |
msgid "Error downloading browscap database from: %s - %s"
|
1191 |
msgstr "خطأ في قاعدة بيانات browscap تحميل من: %s - %s"
|
1192 |
|
1193 |
+
#: wps-updates.php:262
|
1194 |
msgid "browscap database updated successfully!"
|
1195 |
msgstr "قاعدة بيانات browscap تم تحديثها بنجاح!"
|
1196 |
|
1197 |
+
#: wps-updates.php:273
|
1198 |
msgid "browscap database updated failed! Cache file too large, reverting to previous browscap.ini."
|
1199 |
msgstr "تحديث قاعدة بيانات browscap فشل! ملف الكاش كبير جدا، تم الرجوع إلى browscap.ini السابق."
|
1200 |
|
1201 |
+
#: wps-updates.php:281
|
1202 |
msgid "browscap database updated failed! New browscap.ini is mis-identifing user agents as crawlers, reverting to previous browscap.ini."
|
1203 |
msgstr "تحديث قاعدة بيانات browscap فشل! لم تتم تحديد هوية browscap.ini الجديدة لكلا من المستخدم والزواحف، وتم الرجوع إلى browscap.ini السابق."
|
1204 |
|
1205 |
+
#: wps-updates.php:303
|
1206 |
msgid "browscap already at current version!"
|
1207 |
msgstr "browscap بالفعل في النسخة الحالية!"
|
1208 |
|
1209 |
+
#: wps-updates.php:316
|
1210 |
msgid "Browscap.ini update on"
|
1211 |
msgstr "تحديث Browscap.ini على"
|
1212 |
|
1213 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.2) #-#-#-#-#
|
1214 |
+
#. Plugin URI of the plugin/theme
|
1215 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.2) #-#-#-#-#
|
1216 |
+
#. Author URI of the plugin/theme
|
1217 |
+
msgid "http://wp-statistics.com/"
|
1218 |
+
msgstr ""
|
1219 |
+
|
1220 |
+
#. Author of the plugin/theme
|
1221 |
+
msgid "Mostafa Soufi & Greg Ross"
|
1222 |
+
msgstr ""
|
1223 |
+
|
1224 |
+
#: dashboard.php:55
|
1225 |
msgid "Quick Stats"
|
1226 |
msgstr "إحصائيات سريعة"
|
1227 |
|
1228 |
+
#: dashboard.php:56 includes/log/widgets/browsers.php:58
|
|
|
1229 |
msgid "Top 10 Browsers"
|
1230 |
msgstr "أفضل 10 متصفحات"
|
1231 |
|
1232 |
+
#: dashboard.php:57 includes/log/widgets/countries.php:11
|
1233 |
+
#: includes/settings/tabs/wps-overview-display.php:27
|
|
|
1234 |
msgid "Top 10 Countries"
|
1235 |
msgstr "أعلى 10 دول"
|
1236 |
|
1237 |
+
#: dashboard.php:58
|
1238 |
msgid "Today's Visitor Map"
|
1239 |
msgstr "خريطة زوار اليوم"
|
1240 |
|
1241 |
+
#: dashboard.php:59 editor.php:46 includes/log/hit-statistics.php:8
|
1242 |
+
#: includes/log/widgets/hits.php:10
|
|
|
|
|
1243 |
msgid "Hit Statistics"
|
1244 |
msgstr "احصائية النقرات"
|
1245 |
|
1246 |
+
#: dashboard.php:60 includes/log/widgets/pages.php:14
|
|
|
1247 |
msgid "Top 10 Pages"
|
1248 |
msgstr "أفضل 10 صفحات"
|
1249 |
|
1250 |
+
#: dashboard.php:61 includes/log/last-visitor.php:36
|
1251 |
+
#: includes/log/widgets/recent.php:10
|
1252 |
+
#: includes/settings/tabs/wps-overview-display.php:39
|
|
|
1253 |
msgid "Recent Visitors"
|
1254 |
msgstr "الزيارات الأخيرة"
|
1255 |
|
1256 |
+
#: dashboard.php:62 includes/log/top-referring.php:27
|
1257 |
+
#: includes/log/top-referring.php:42 includes/log/widgets/referring.php:16
|
1258 |
+
#: includes/settings/tabs/wps-overview-display.php:26
|
|
|
|
|
1259 |
msgid "Top Referring Sites"
|
1260 |
msgstr "أعلى المواقع اشارة"
|
1261 |
|
1262 |
+
#: dashboard.php:63 includes/log/widgets/search.php:10
|
1263 |
+
#: includes/log/widgets/summary.php:89
|
|
|
1264 |
msgid "Search Engine Referrals"
|
1265 |
msgstr "إحالات محرك البحث"
|
1266 |
|
1267 |
+
#: dashboard.php:64 includes/log/widgets/summary.php:8
|
|
|
1268 |
msgid "Summary"
|
1269 |
msgstr "ملخص"
|
1270 |
|
1271 |
+
#: dashboard.php:65 includes/log/last-search.php:31
|
1272 |
+
#: includes/log/widgets/words.php:11
|
1273 |
+
#: includes/settings/tabs/wps-overview-display.php:37
|
|
|
1274 |
msgid "Latest Search Words"
|
1275 |
msgstr "أحدث كلمات البحث"
|
1276 |
|
1277 |
+
#: dashboard.php:66 includes/log/widgets/top.visitors.php:10
|
1278 |
+
#: includes/settings/tabs/wps-overview-display.php:35
|
|
|
1279 |
msgid "Top 10 Visitors Today"
|
1280 |
msgstr "أفضل 10 زوار اليوم"
|
1281 |
|
1282 |
+
#: dashboard.php:97
|
1283 |
msgid "Please reload the dashboard to display the content of this widget."
|
1284 |
msgstr "يرجى تحميل لوحة المعلومات لعرض محتوى هذه القطعة."
|
1285 |
|
1286 |
+
#: dashboard.php:138
|
1287 |
msgid "WP Statistics Overview"
|
1288 |
msgstr "نظرة عامة لإحصائيات ووردبريس"
|
1289 |
|
1290 |
+
#: editor.php:63
|
1291 |
msgid "This post is not yet published."
|
1292 |
msgstr "لم يتم نشر هذا المقال حتى الآن."
|
1293 |
|
1294 |
+
#: includes/functions/geoip-populate.php:24
|
1295 |
msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
|
1296 |
msgstr "غير قادر على تحميل قاعدة البيانات GeoIP، تأكد من أنك قمت بتنزيلها في صفحة الإعدادات."
|
1297 |
|
1298 |
+
#: includes/functions/geoip-populate.php:48
|
1299 |
msgid "Updated %s GeoIP records in the visitors database."
|
1300 |
msgstr "تحديث السجلات %s GeoIP في قاعدة بيانات الزوار."
|
1301 |
|
1302 |
+
#: includes/functions/purge.php:21 includes/functions/purge.php:39
|
1303 |
+
#: includes/functions/purge.php:50 includes/functions/purge.php:83
|
|
|
|
|
1304 |
msgid "%s data older than %s days purged successfully."
|
1305 |
msgstr "البيانات %s مضى عليها أكثر من %s أيام طهرت فيه بنجاح."
|
1306 |
|
1307 |
+
#: includes/functions/purge.php:23 includes/functions/purge.php:41
|
1308 |
+
#: includes/functions/purge.php:52 includes/functions/purge.php:85
|
|
|
|
|
1309 |
msgid "No records found to purge from %s!"
|
1310 |
msgstr "لا توجد سجلات للتخلص من %s!"
|
1311 |
|
1312 |
+
#: includes/functions/purge-hits.php:45 includes/functions/purge.php:98
|
1313 |
msgid "Database pruned on"
|
1314 |
msgstr "قاعدة بيانات مجردة على"
|
1315 |
|
1316 |
+
#: includes/functions/purge.php:103
|
1317 |
msgid "Please select a value over 30 days."
|
1318 |
msgstr "يرجى تحديد قيمة أكثر من 30 يوما."
|
1319 |
|
1320 |
+
#: includes/log/all-browsers.php:8
|
1321 |
msgid "Browser Statistics"
|
1322 |
msgstr "إحصائيات المتصفح"
|
1323 |
|
1324 |
+
#: includes/log/all-browsers.php:14 includes/log/all-browsers.php:98
|
1325 |
+
#: includes/log/all-browsers.php:233 includes/log/exclusions.php:72
|
1326 |
+
#: includes/log/exclusions.php:190 includes/log/hit-statistics.php:26
|
1327 |
+
#: includes/log/hit-statistics.php:162 includes/log/last-search.php:64
|
1328 |
+
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1329 |
+
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1330 |
+
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1331 |
+
#: includes/log/top-referring.php:38 includes/log/widgets/about.php:7
|
1332 |
+
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1333 |
+
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1334 |
+
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1335 |
+
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:14
|
1336 |
+
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1337 |
+
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1338 |
msgid "Click to toggle"
|
1339 |
msgstr "انقر للتبديل"
|
1340 |
|
1341 |
+
#: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
|
1342 |
+
#: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:339
|
1343 |
+
#: wp-statistics.php:415
|
|
|
|
|
1344 |
msgid "Browsers"
|
1345 |
msgstr "المتصفحات"
|
1346 |
|
1347 |
+
#: includes/log/all-browsers.php:42
|
1348 |
msgid "Browsers by type"
|
1349 |
msgstr "حسب نوع المتصفحات"
|
1350 |
|
1351 |
+
#: includes/log/all-browsers.php:99 includes/log/widgets/top.visitors.php:37
|
1352 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:302
|
|
|
1353 |
msgid "Platform"
|
1354 |
msgstr "المنصة"
|
1355 |
|
1356 |
+
#: includes/log/all-browsers.php:126
|
1357 |
msgid "Browsers by platform"
|
1358 |
msgstr "حسب نوع المنصة"
|
1359 |
|
1360 |
+
#: includes/log/all-browsers.php:234
|
1361 |
msgid "%s Version"
|
1362 |
msgstr "الإصدار %s"
|
1363 |
|
1364 |
+
#: includes/log/exclusions.php:8
|
1365 |
msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
|
1366 |
msgstr "تنبيه: لم يتم تعيين الاستثناءات حاليا ليتم تسجيلها، قد لا تستطيع عكس نتائج الإحصائيات الحالية أدناه!"
|
1367 |
|
1368 |
+
#: includes/log/exclusions.php:64
|
1369 |
msgid "Exclusions Statistics"
|
1370 |
msgstr "استثناءات الاحصائيات"
|
1371 |
|
1372 |
+
#: includes/functions/functions.php:879
|
1373 |
msgid "10 Days"
|
1374 |
msgstr "10 أيام"
|
1375 |
|
1376 |
+
#: includes/functions/functions.php:879
|
1377 |
msgid "20 Days"
|
1378 |
msgstr "20 يوم"
|
1379 |
|
1380 |
+
#: includes/functions/functions.php:879
|
1381 |
msgid "30 Days"
|
1382 |
msgstr "30 يو م"
|
1383 |
|
1384 |
+
#: includes/functions/functions.php:879
|
1385 |
msgid "2 Months"
|
1386 |
msgstr "شهرين"
|
1387 |
|
1388 |
+
#: includes/functions/functions.php:879
|
1389 |
msgid "3 Months"
|
1390 |
msgstr "3 أشهر"
|
1391 |
|
1392 |
+
#: includes/functions/functions.php:879
|
1393 |
msgid "6 Months"
|
1394 |
msgstr "6 أشهر"
|
1395 |
|
1396 |
+
#: includes/functions/functions.php:879
|
1397 |
msgid "9 Months"
|
1398 |
msgstr "9 أشهر"
|
1399 |
|
1400 |
+
#: includes/functions/functions.php:879
|
1401 |
msgid "1 Year"
|
1402 |
msgstr "سنة"
|
1403 |
|
1404 |
+
#: includes/log/exclusions.php:73
|
|
|
|
|
|
|
|
|
1405 |
msgid "Exclusions Statistical Chart"
|
1406 |
msgstr "الرسم البياني لإحصائيات الاستثناءات"
|
1407 |
|
1408 |
+
#: includes/log/exclusions.php:95
|
1409 |
msgid "Excluded hits in the last"
|
1410 |
msgstr "استبعاد النقرات في الأخير"
|
1411 |
|
1412 |
+
#: includes/log/exclusions.php:95 includes/log/hit-statistics.php:65
|
1413 |
+
#: includes/log/search-statistics.php:69 includes/log/widgets/hits.php:61
|
1414 |
+
#: includes/log/widgets/search.php:59
|
1415 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:207
|
|
|
|
|
1416 |
msgid "days"
|
1417 |
msgstr "أيام"
|
1418 |
|
1419 |
+
#: includes/log/exclusions.php:116
|
1420 |
msgid "Number of excluded hits"
|
1421 |
msgstr "عدد الزيارات المستبعدة"
|
1422 |
|
1423 |
+
#: includes/log/hit-statistics.php:27
|
1424 |
msgid "Hits Statistics Chart"
|
1425 |
msgstr "الرسم البياني لاحصائيات النقرات"
|
1426 |
|
1427 |
+
#: includes/log/hit-statistics.php:65 includes/log/widgets/hits.php:61
|
|
|
1428 |
msgid "Hits in the last"
|
1429 |
msgstr "آخر النقرات"
|
1430 |
|
1431 |
+
#: includes/log/hit-statistics.php:86 includes/log/widgets/hits.php:82
|
|
|
1432 |
msgid "Number of visits and visitors"
|
1433 |
msgstr "عدد الزيارات والزوار"
|
1434 |
|
1435 |
+
#: includes/log/hit-statistics.php:100 includes/log/hit-statistics.php:169
|
1436 |
+
#: includes/log/widgets/hits.php:96 includes/log/widgets/summary.php:38
|
|
|
1437 |
msgid "Visit"
|
1438 |
msgstr "زيارة"
|
1439 |
|
1440 |
+
#: includes/log/hit-statistics.php:100 includes/log/hit-statistics.php:170
|
1441 |
+
#: includes/log/widgets/hits.php:96 includes/log/widgets/summary.php:37
|
|
|
1442 |
msgid "Visitor"
|
1443 |
msgstr "زائر"
|
1444 |
|
1445 |
+
#: includes/log/last-search.php:65
|
1446 |
msgid "Latest Search Word Statistics"
|
1447 |
msgstr "أحصائيات أحدث كلمات البحث"
|
1448 |
|
1449 |
+
#: includes/log/last-search.php:100 includes/log/last-visitor.php:101
|
1450 |
+
#: includes/log/online.php:50 includes/log/widgets/google.map.php:84
|
1451 |
+
#: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
|
1452 |
+
#: includes/log/widgets/words.php:36
|
|
|
|
|
|
|
1453 |
msgid "#hash#"
|
1454 |
msgstr "#hash#"
|
1455 |
|
1456 |
+
#: includes/log/last-search.php:105 includes/log/last-visitor.php:106
|
1457 |
+
#: includes/log/online.php:55 includes/log/top-referring.php:71
|
1458 |
+
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:43
|
1459 |
+
#: includes/settings/tabs/wps-overview-display.php:33
|
1460 |
+
#: includes/settings/tabs/wps-overview-display.php:113
|
|
|
|
|
|
|
1461 |
msgid "Map"
|
1462 |
msgstr "خريطة"
|
1463 |
|
1464 |
+
#: includes/log/last-search.php:142 includes/log/last-visitor.php:139
|
1465 |
+
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1466 |
+
#: includes/log/top-referring.php:125
|
|
|
|
|
1467 |
msgid "Page"
|
1468 |
msgstr "صفحة"
|
1469 |
|
1470 |
+
#: includes/log/last-search.php:142 includes/log/last-visitor.php:139
|
1471 |
+
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1472 |
+
#: includes/log/top-referring.php:125
|
|
|
|
|
1473 |
msgid "From"
|
1474 |
msgstr "من"
|
1475 |
|
1476 |
+
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1477 |
+
#: includes/log/top-referring.php:29
|
1478 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
|
|
|
|
1479 |
msgid "All"
|
1480 |
msgstr "الكل"
|
1481 |
|
1482 |
+
#: includes/log/last-visitor.php:68
|
1483 |
msgid "Recent Visitor Statistics"
|
1484 |
msgstr "آخر إحصائيات الزوار"
|
1485 |
|
1486 |
+
#: includes/log/online.php:11 includes/log/online.php:18
|
|
|
1487 |
msgid "Online Users"
|
1488 |
msgstr "المستخدمين على الانترنت"
|
1489 |
|
1490 |
+
#: includes/log/online.php:75
|
1491 |
msgid "Online for "
|
1492 |
msgstr "متصل لـ"
|
1493 |
|
1494 |
+
#: includes/log/page-statistics.php:26
|
1495 |
msgid "Page Trend for Post ID"
|
1496 |
msgstr "صفحة الأكثر رواجاً بمعرف المشاركة"
|
1497 |
|
1498 |
+
#: includes/log/page-statistics.php:35
|
1499 |
msgid "Page Trend"
|
1500 |
msgstr "الصفحة الأكثر رواجاً"
|
1501 |
|
1502 |
+
#: includes/log/search-statistics.php:19 includes/log/search-statistics.php:28
|
|
|
1503 |
msgid "Search Engine Referral Statistics"
|
1504 |
msgstr "إحصائيات مرجعية محرك البحث"
|
1505 |
|
1506 |
+
#: includes/log/search-statistics.php:69 includes/log/widgets/search.php:59
|
|
|
1507 |
msgid "Search engine referrals in the last"
|
1508 |
msgstr "إحالات محرك البحث في الأخير"
|
1509 |
|
1510 |
+
#: includes/log/search-statistics.php:90 includes/log/widgets/search.php:80
|
|
|
1511 |
msgid "Number of referrals"
|
1512 |
msgstr "عدد الإحالات"
|
1513 |
|
1514 |
+
#: includes/log/exclusions.php:24 includes/log/search-statistics.php:104
|
1515 |
+
#: includes/log/widgets/search.php:94 includes/log/widgets/summary.php:72
|
1516 |
+
#: includes/log/widgets/summary.php:119
|
|
|
|
|
1517 |
msgid "Total"
|
1518 |
msgstr "المجموع"
|
1519 |
|
1520 |
+
#: includes/log/top-countries.php:18
|
1521 |
msgid "Top Countries"
|
1522 |
msgstr "أفضل الدول"
|
1523 |
|
1524 |
+
#: includes/log/top-countries.php:30 includes/log/widgets/countries.php:30
|
1525 |
+
#: includes/log/widgets/top.visitors.php:30
|
|
|
1526 |
msgid "Rank"
|
1527 |
msgstr "الترتيب"
|
1528 |
|
1529 |
+
#: includes/log/top-countries.php:31 includes/log/widgets/countries.php:31
|
1530 |
+
#: includes/log/widgets/top.visitors.php:32
|
|
|
1531 |
msgid "Flag"
|
1532 |
msgstr "العلم"
|
1533 |
|
1534 |
+
#: includes/log/top-countries.php:32 includes/log/widgets/countries.php:32
|
1535 |
+
#: includes/log/widgets/top.visitors.php:33
|
|
|
1536 |
msgid "Country"
|
1537 |
msgstr "الدولة"
|
1538 |
|
1539 |
+
#: includes/log/top-countries.php:33 includes/log/widgets/countries.php:33
|
|
|
1540 |
msgid "Visitor Count"
|
1541 |
msgstr "عدد الزوار"
|
1542 |
|
1543 |
+
#: includes/log/top-pages.php:19 includes/log/top-pages.php:149
|
|
|
1544 |
msgid "Top Pages"
|
1545 |
msgstr "أفضل الصفحات"
|
1546 |
|
1547 |
+
#: includes/log/top-pages.php:29
|
1548 |
msgid "Top 5 Pages Trends"
|
1549 |
msgstr "الصفحات الـ5 الأكثر رواجاً"
|
1550 |
|
1551 |
+
#: includes/log/top-pages.php:60
|
1552 |
msgid "Top 5 Page Trending Stats"
|
1553 |
msgstr "احصائيات الصفحات الـ5 الأكثر رواجاً"
|
1554 |
|
1555 |
+
#: includes/log/top-pages.php:81 includes/log/widgets/page.php:63
|
|
|
1556 |
msgid "Number of Hits"
|
1557 |
msgstr "عدد الزيارات"
|
1558 |
|
1559 |
+
#: includes/log/top-pages.php:177 includes/log/widgets/pages.php:35
|
|
|
1560 |
msgid "No page title found"
|
1561 |
msgstr "لم يتم العثور على عنوان الصفحة"
|
1562 |
|
1563 |
+
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1564 |
+
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1565 |
+
#: includes/settings/tabs/wps-general.php:122
|
1566 |
+
#: includes/settings/tabs/wps-general.php:127 shortcode.php:130
|
|
|
1567 |
msgid "Visits"
|
1568 |
msgstr "الزيارات"
|
1569 |
|
1570 |
+
#: includes/log/top-referring.php:4
|
1571 |
msgid "To be added soon"
|
1572 |
msgstr "تضاف قريبا"
|
1573 |
|
1574 |
+
#: includes/log/top-referring.php:40
|
1575 |
msgid "Referring sites from"
|
1576 |
msgstr "مواقع اشارة من"
|
1577 |
|
1578 |
+
#: includes/log/top-referring.php:110 includes/log/widgets/referring.php:34
|
|
|
1579 |
msgid "References"
|
1580 |
msgstr "المراجع"
|
1581 |
|
1582 |
+
#: includes/log/top-visitors.php:12
|
1583 |
msgid "Top 100 Visitors Today"
|
1584 |
msgstr "أفضل 100 زائر اليوم"
|
1585 |
|
1586 |
+
#: includes/log/widgets/about.php:8
|
1587 |
msgid "About WP Statistics Version %s"
|
1588 |
msgstr "حول إصدار احصائيات ووردبريس %s"
|
1589 |
|
1590 |
+
#: includes/log/widgets/about.php:25
|
1591 |
msgid "Website"
|
1592 |
msgstr "الموقع"
|
1593 |
|
1594 |
+
#: includes/log/widgets/about.php:26
|
1595 |
msgid "Rate and Review"
|
1596 |
msgstr "التقييم والمراجعة"
|
1597 |
|
1598 |
+
#: includes/log/widgets/about.php:30
|
1599 |
msgid "More Information"
|
1600 |
msgstr "مزيد من المعلومات"
|
1601 |
|
1602 |
+
#: includes/log/widgets/about.php:39 includes/settings/tabs/wps-about.php:12
|
|
|
1603 |
msgid "This product includes GeoLite2 data created by MaxMind, available from %s."
|
1604 |
msgstr "يتضمن هذا المنتج البيانات GeoLite2 التي أنشأتها MaxMind، المتاحة من %s."
|
1605 |
|
1606 |
+
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1607 |
+
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1608 |
+
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:16
|
1609 |
+
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1610 |
+
#: includes/log/widgets/words.php:11
|
|
|
|
|
|
|
|
|
1611 |
msgid "More"
|
1612 |
msgstr "المزيد"
|
1613 |
|
1614 |
+
#: includes/log/widgets/browsers.php:51
|
1615 |
msgid "Other"
|
1616 |
msgstr "أخرى"
|
1617 |
|
1618 |
+
#: includes/log/widgets/google.map.php:9 includes/log/widgets/jqv.map.php:9
|
|
|
1619 |
msgid "Today Visitors Map"
|
1620 |
msgstr "خريطة زوار اليوم"
|
1621 |
|
1622 |
+
#: includes/log/widgets/referring.php:35
|
1623 |
msgid "Address"
|
1624 |
msgstr "العنوان"
|
1625 |
|
1626 |
+
#: includes/log/widgets/summary.php:26
|
1627 |
msgid "User(s) Online"
|
1628 |
msgstr "المتصلين على الانترنت"
|
1629 |
|
1630 |
+
#: includes/log/widgets/summary.php:42 includes/log/widgets/summary.php:94
|
|
|
1631 |
msgid "Today"
|
1632 |
msgstr "اليوم"
|
1633 |
|
1634 |
+
#: includes/log/widgets/summary.php:48 includes/log/widgets/summary.php:95
|
|
|
1635 |
msgid "Yesterday"
|
1636 |
msgstr "الأمس"
|
1637 |
|
1638 |
+
#: includes/log/widgets/summary.php:113
|
1639 |
msgid "Daily Total"
|
1640 |
msgstr "المجموع اليومي"
|
1641 |
|
1642 |
+
#: includes/log/widgets/summary.php:132
|
1643 |
msgid "Current Time and Date"
|
1644 |
msgstr "التوقيت الحالي و التاريخ"
|
1645 |
|
1646 |
+
#: includes/log/widgets/summary.php:132
|
1647 |
msgid "(Adjustment)"
|
1648 |
msgstr "(التوافق)"
|
1649 |
|
1650 |
+
#: includes/log/widgets/summary.php:136
|
1651 |
msgid "Date: %s"
|
1652 |
msgstr "التاريخ: %s"
|
1653 |
|
1654 |
+
#: includes/log/widgets/summary.php:140
|
1655 |
msgid "Time: %s"
|
1656 |
msgstr "التوقيت: %s"
|
1657 |
|
1658 |
+
#: includes/log/widgets/top.visitors.php:31
|
1659 |
+
#: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:266
|
1660 |
+
#: wp-statistics.php:342 wp-statistics.php:418
|
|
|
1661 |
msgid "Hits"
|
1662 |
msgstr "نقرات"
|
1663 |
|
1664 |
+
#: includes/log/widgets/top.visitors.php:34
|
1665 |
msgid "IP"
|
1666 |
msgstr "IP"
|
1667 |
|
1668 |
+
#: includes/log/widgets/top.visitors.php:36
|
1669 |
msgid "Agent"
|
1670 |
msgstr "وكيل"
|
1671 |
|
1672 |
+
#: includes/log/widgets/top.visitors.php:38
|
1673 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:291
|
1674 |
msgid "Version"
|
1675 |
msgstr "الإصدار"
|
1676 |
|
1677 |
+
#: ajax.php:41 ajax.php:71 ajax.php:125 ajax.php:150 ajax.php:180
|
1678 |
+
#: includes/optimization/wps-optimization.php:6
|
|
|
|
|
|
|
|
|
|
|
1679 |
msgid "Access denied!"
|
1680 |
msgstr "تم رفض الوصول!"
|
1681 |
|
1682 |
+
#: ajax.php:31
|
1683 |
msgid "%s agent data deleted successfully."
|
1684 |
msgstr "%s تم حذف بيانات الوكيل بنجاح."
|
1685 |
|
1686 |
+
#: ajax.php:34
|
1687 |
msgid "No agent data found to remove!"
|
1688 |
msgstr "لا توجد بيانات وكيل لإزالتها!"
|
1689 |
|
1690 |
+
#: ajax.php:38 ajax.php:68 ajax.php:116 ajax.php:122
|
|
|
|
|
|
|
1691 |
msgid "Please select the desired items."
|
1692 |
msgstr "يرجى تحديد العناصر المطلوبة."
|
1693 |
|
1694 |
+
#: ajax.php:62
|
1695 |
msgid "%s platform data deleted successfully."
|
1696 |
msgstr "%s تم حذف بيانات المنصة بنجاح."
|
1697 |
|
1698 |
+
#: ajax.php:65
|
1699 |
msgid "No platform data found to remove!"
|
1700 |
msgstr "لا توجد بيانات منصة لإزالتها!"
|
1701 |
|
1702 |
+
#: includes/functions/functions.php:967
|
1703 |
msgid "%s table data deleted successfully."
|
1704 |
msgstr "%s تم حذف بيانات الجدول بنجاح."
|
1705 |
|
1706 |
+
#: includes/functions/functions.php:971
|
1707 |
msgid "Error, %s not emptied!"
|
1708 |
msgstr "خطأ, %s لم يتم التفريغ!"
|
1709 |
|
1710 |
+
#: includes/optimization/tabs/wps-optimization-database.php:5
|
1711 |
msgid "Database Setup"
|
1712 |
msgstr "إعداد قاعدة البيانات"
|
1713 |
|
1714 |
+
#: includes/optimization/tabs/wps-optimization-database.php:10
|
1715 |
msgid "Re-run Install"
|
1716 |
msgstr "إعادة تشغيل التثبيت"
|
1717 |
|
1718 |
+
#: includes/optimization/tabs/wps-optimization-database.php:14
|
1719 |
msgid "Install Now!"
|
1720 |
msgstr "تثبيت الآن!"
|
1721 |
|
1722 |
+
#: includes/optimization/tabs/wps-optimization-database.php:15
|
1723 |
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."
|
1724 |
msgstr "لسبب ما اذا فقدت بيانات في قاعدة البيانات أو احد العناصر الأساسية, هذا الأمر سيعيد تنفيذ العملية مرة أخرى."
|
1725 |
|
1726 |
+
#: includes/optimization/tabs/wps-optimization-database.php:20
|
1727 |
msgid "Database Index"
|
1728 |
msgstr "فهرس قاعدة بيانات"
|
1729 |
|
1730 |
+
#: includes/optimization/tabs/wps-optimization-database.php:25
|
1731 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:21
|
1732 |
+
#: wp-statistics.php:340 wp-statistics.php:416
|
|
|
1733 |
msgid "Countries"
|
1734 |
msgstr "الدول"
|
1735 |
|
1736 |
+
#: includes/optimization/tabs/wps-optimization-database.php:39
|
1737 |
+
#: includes/optimization/tabs/wps-optimization-database.php:69
|
1738 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:25
|
1739 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:40
|
1740 |
msgid "Update Now!"
|
1741 |
msgstr "تحديث الآن!"
|
1742 |
|
1743 |
+
#: includes/optimization/tabs/wps-optimization-database.php:40
|
1744 |
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."
|
1745 |
msgstr "المنصب القديم لإضافة احصائيات ووردبريس تسمح للإدخالات المتكررة في جداول الزوار في بعض الحالات. بتثبيت أحدث منتج يجب تواجد الفهرس في الجداول. لإنشاء فهرس لمنتج قديم يجب أن يتم حذف الإدخالات المكررة أولاً. أنقر على \"تحديث الآن\" وسيقوم تلقائيا بفحص جدول الزوار وحذف كافة الإدخالات المكررة وإضافة الفهرس."
|
1746 |
|
1747 |
+
#: includes/optimization/tabs/wps-optimization-database.php:41
|
1748 |
msgid "This operation could take a long time on installs with many rows in the visitors table."
|
1749 |
msgstr "هذه العملية يمكن أن تستغرق وقتا طويلا على تثبيت مع العديد من الصفوف في جدول الزوار."
|
1750 |
|
1751 |
+
#: includes/optimization/tabs/wps-optimization-database.php:46
|
1752 |
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."
|
1753 |
msgstr "الإصدارات القديمة من منتج احصائيات ووردبريس تسمح للإدخالات المكررة في جدول الزوار في بعض الحالات. عند تثبيت إصدارات أحدث من ذلك سيتم إضافة فهرس فريد على الجدول."
|
1754 |
|
1755 |
+
#: includes/optimization/tabs/wps-optimization-database.php:47
|
1756 |
+
#: includes/optimization/tabs/wps-optimization-database.php:77
|
1757 |
msgid "Congratulations, your installation is already up to date, nothing to do."
|
1758 |
msgstr "تهانينا، التثبيت موجود بالفعل حتى الآن، لا شيء للقيام به."
|
1759 |
|
1760 |
+
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1761 |
+
#: includes/optimization/wps-optimization.php:183
|
1762 |
msgid "Export"
|
1763 |
msgstr "تصدير"
|
1764 |
|
1765 |
+
#: includes/optimization/tabs/wps-optimization-export.php:13
|
1766 |
msgid "Export from"
|
1767 |
msgstr "التصدير من"
|
1768 |
|
1769 |
+
#: includes/optimization/tabs/wps-optimization-export.php:18
|
1770 |
+
#: includes/optimization/tabs/wps-optimization-export.php:36
|
1771 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:185
|
1772 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:241
|
1773 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:265
|
1774 |
+
#: includes/settings/tabs/wps-notifications.php:134
|
1775 |
+
#: includes/settings/tabs/wps-notifications.php:164
|
1776 |
msgid "Please select"
|
1777 |
msgstr "الرجاء تحديد"
|
1778 |
|
1779 |
+
#: includes/optimization/tabs/wps-optimization-export.php:25
|
1780 |
msgid "Select the table for the output file."
|
1781 |
msgstr "حدد الجدول لملف الإخراج."
|
1782 |
|
1783 |
+
#: includes/optimization/tabs/wps-optimization-export.php:31
|
1784 |
msgid "Export To"
|
1785 |
msgstr "التصدير لـ"
|
1786 |
|
1787 |
+
#: includes/optimization/tabs/wps-optimization-export.php:42
|
1788 |
msgid "Select the output file type."
|
1789 |
msgstr "حدد نوع ملف الإخراج."
|
1790 |
|
1791 |
+
#: includes/optimization/tabs/wps-optimization-export.php:48
|
1792 |
msgid "Include Header Row"
|
1793 |
msgstr "تضمين رأس الصف"
|
1794 |
|
1795 |
+
#: includes/optimization/tabs/wps-optimization-export.php:53
|
1796 |
msgid "Include a header row as the first line of the exported file."
|
1797 |
msgstr "تضمين صف الرأس كما في السطر الأول من الملف الذي تم تصديره."
|
1798 |
|
1799 |
+
#: includes/optimization/tabs/wps-optimization-export.php:54
|
1800 |
msgid "Start Now!"
|
1801 |
msgstr "ابدأ الآن!"
|
1802 |
|
1803 |
+
#: includes/optimization/tabs/wps-optimization-historical.php:15
|
1804 |
msgid "Historical Values"
|
1805 |
msgstr "القيم التاريخية"
|
1806 |
|
1807 |
+
#: includes/optimization/tabs/wps-optimization-historical.php:20
|
1808 |
msgid "Note: As you have just purged the database you must reload this page for these numbers to be correct."
|
1809 |
msgstr "ملاحظة: كلما قمت بتطهير قاعدة البيانات يجب تحميل هذه الصفحة لتكون الأرقام صحيحة."
|
1810 |
|
1811 |
+
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1812 |
+
#: includes/settings/tabs/wps-general.php:138
|
1813 |
+
#: includes/settings/tabs/wps-general.php:143 shortcode.php:131
|
1814 |
+
#: wp-statistics.php:349 wp-statistics.php:425
|
|
|
1815 |
msgid "Visitors"
|
1816 |
msgstr "الزوار"
|
1817 |
|
1818 |
+
#: includes/optimization/tabs/wps-optimization-historical.php:31
|
1819 |
msgid "Number of historical number of visitors to the site (current value is %s)."
|
1820 |
msgstr "العدد التاريخي لزوار الموقع (القيمة الحالية هي %s)."
|
1821 |
|
1822 |
+
#: includes/optimization/tabs/wps-optimization-historical.php:42
|
1823 |
msgid "Number of historical number of visits to the site (current value is %s)."
|
1824 |
msgstr "العدد التاريخي لزيارات الموقع (القيمة الحالية هي %s)."
|
1825 |
|
1826 |
+
#: includes/optimization/tabs/wps-optimization-historical.php:48
|
1827 |
msgid "Update now!"
|
1828 |
msgstr "تحديث الآن!"
|
1829 |
|
1830 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:10
|
1831 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:43
|
1832 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:75
|
1833 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:107
|
1834 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:141
|
1835 |
msgid "Are you sure?"
|
1836 |
msgstr "هل أنت متأكد؟"
|
1837 |
|
1838 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:175
|
1839 |
msgid "Data"
|
1840 |
msgstr "المعطيات"
|
1841 |
|
1842 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:180
|
1843 |
msgid "Empty Table"
|
1844 |
msgstr "تفريغ الجدول"
|
1845 |
|
1846 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:193
|
1847 |
msgid "All data table will be lost."
|
1848 |
msgstr "سيتم فقدان جميع البيانات الجدول."
|
1849 |
|
1850 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:194
|
1851 |
msgid "Clear now!"
|
1852 |
msgstr "مسح الآن!"
|
1853 |
|
1854 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:202
|
1855 |
msgid "Purge records older than"
|
1856 |
msgstr "سجلات الضخ أقدم من"
|
1857 |
|
1858 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:208
|
1859 |
msgid "Deleted user statistics data older than the selected number of days. Minimum value is 30 days."
|
1860 |
msgstr "بيانات الاحصائيات المستخدم المحذوف أقدم من الرقم المحدد من الأيام. قيمة الحد الأدنى هو 30 يوما."
|
1861 |
|
1862 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:209
|
1863 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:224
|
1864 |
msgid "Purge now!"
|
1865 |
msgstr "ضخ الآن!"
|
1866 |
|
1867 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:231
|
1868 |
msgid "Delete User Agent Types"
|
1869 |
msgstr "حذف أنواع وكيل العضو"
|
1870 |
|
1871 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:236
|
1872 |
msgid "Delete Agents"
|
1873 |
msgstr "حذف الوكلاء"
|
1874 |
|
1875 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:251
|
1876 |
msgid "All visitor data will be lost for this agent type."
|
1877 |
msgstr "سيتم فقد جميع البيانات الزائر لهذا النوع."
|
1878 |
|
1879 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:252
|
1880 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:276
|
1881 |
msgid "Delete now!"
|
1882 |
msgstr "حذف الآن!"
|
1883 |
|
1884 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:260
|
1885 |
msgid "Delete Platforms"
|
1886 |
msgstr "حذف المنصات"
|
1887 |
|
1888 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:275
|
1889 |
msgid "All visitor data will be lost for this platform type."
|
1890 |
msgstr "سيتم فقد جميع البيانات الزائر لنوع هذه المنصة."
|
1891 |
|
1892 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:17
|
1893 |
msgid "Resources"
|
1894 |
msgstr "الموارد"
|
1895 |
|
1896 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:22
|
1897 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:27
|
1898 |
msgid "Memory usage in PHP"
|
1899 |
msgstr "استخدام الذاكرة في PHP"
|
1900 |
|
1901 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:26
|
1902 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:37
|
1903 |
msgid "Byte"
|
1904 |
msgstr "بايت"
|
1905 |
|
1906 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:33
|
1907 |
msgid "Last Overview page memory usage"
|
1908 |
msgstr "آخر نظرة عامة على استخدام صفحة الذاكرة"
|
1909 |
|
1910 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:38
|
1911 |
msgid "Memory usage in the overview page"
|
1912 |
msgstr "استخدام الذاكرة في صفحة نظرة عامة"
|
1913 |
|
1914 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:44
|
1915 |
msgid "PHP Memory Limit"
|
1916 |
msgstr "حدود ذاكرة PHP"
|
1917 |
|
1918 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:49
|
1919 |
msgid "The memory limit a script is allowed to consume, set in php.ini."
|
1920 |
msgstr "حدود الذاكرة تسمح للبرنامج النصي باستهلاك حد معين، قم بتعيين ملف php.ini."
|
1921 |
|
1922 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:55
|
1923 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:66
|
1924 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:77
|
1925 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:88
|
1926 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:99
|
1927 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:110
|
1928 |
msgid "Number of rows in the %s table"
|
1929 |
msgstr "عدد الصفوف في جدول %s"
|
1930 |
|
1931 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:59
|
1932 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:70
|
1933 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:81
|
1934 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:92
|
1935 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:103
|
1936 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:114
|
1937 |
msgid "Row"
|
1938 |
msgstr "صف"
|
1939 |
|
1940 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:60
|
1941 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:71
|
1942 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:82
|
1943 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:93
|
1944 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:104
|
1945 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:115
|
1946 |
msgid "Number of rows"
|
1947 |
msgstr "عدد الصفوف"
|
1948 |
|
1949 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:120
|
1950 |
msgid "Version Info"
|
1951 |
msgstr "معلومات الإصدار"
|
1952 |
|
1953 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:125
|
1954 |
msgid "WP Statistics Version"
|
1955 |
msgstr "نسخة WP Statistics"
|
1956 |
|
1957 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:130
|
1958 |
msgid "The WP Statistics version you are running."
|
1959 |
msgstr "إصدار WP Statistics."
|
1960 |
|
1961 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:136
|
1962 |
msgid "PHP Version"
|
1963 |
msgstr "نسخة PHP"
|
1964 |
|
1965 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:141
|
1966 |
msgid "The PHP version you are running."
|
1967 |
msgstr "إصدار PHP."
|
1968 |
|
1969 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:147
|
1970 |
msgid "PHP Safe Mode"
|
1971 |
msgstr "الوضع الآمن PHP"
|
1972 |
|
1973 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:152
|
1974 |
msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
|
1975 |
msgstr "هل الوضع الآمن نشط. الكود GeoIP غير معتمد في الوضع الآمن."
|
1976 |
|
1977 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:158
|
1978 |
msgid "jQuery Version"
|
1979 |
msgstr "نسخة jQuery"
|
1980 |
|
1981 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:163
|
1982 |
msgid "The jQuery version you are running."
|
1983 |
msgstr "إصدار jQuery."
|
1984 |
|
1985 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:169
|
1986 |
msgid "cURL Version"
|
1987 |
msgstr "إصدار cURL"
|
1988 |
|
1989 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:173
|
1990 |
msgid "cURL not installed"
|
1991 |
msgstr "cURL غير مثبت"
|
1992 |
|
1993 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:174
|
1994 |
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."
|
1995 |
msgstr "نسخة الملحق PHP cURL تعمل. الملحق cURL مطلوب لعمل كود GeoIP, وإذا لم يتم تثبيته يتم تعطيل GeoIP."
|
1996 |
|
1997 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:180
|
1998 |
msgid "BC Math"
|
1999 |
msgstr "BC Math"
|
2000 |
|
2001 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:184
|
2002 |
msgid "Installed"
|
2003 |
msgstr "مثبت"
|
2004 |
|
2005 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:184
|
2006 |
msgid "Not installed"
|
2007 |
msgstr "غير مثبت"
|
2008 |
|
2009 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:185
|
2010 |
msgid "If the PHP BC Math Extension is installed. BC Math is no longer required for the GeoIP code and is listed here only for historical reasons."
|
2011 |
msgstr "هل تم تثبيت PHP BC Math Extension مسبقاً. الآن ملحق BC Math لم يعد مطلوبا لكود GeoIP ويتم سرده هنا فقط لأسباب تاريخية."
|
2012 |
|
2013 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:190
|
2014 |
msgid "File Info"
|
2015 |
msgstr "معلومات عن الملف"
|
2016 |
|
2017 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:195
|
2018 |
msgid "GeoIP Database"
|
2019 |
msgstr "قاعدة بيانات GeoIP"
|
2020 |
|
2021 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:204
|
2022 |
msgid "Database file does not exist."
|
2023 |
msgstr "لا وجود لملف قاعدة البيانات."
|
2024 |
|
2025 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:206
|
2026 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:225
|
2027 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:244
|
2028 |
msgid ", created on "
|
2029 |
msgstr "، التي تم إنشاؤها على"
|
2030 |
|
2031 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:208
|
2032 |
msgid "The file size and date of the GeoIP database."
|
2033 |
msgstr "حجم الملف والتاريخ من قاعدة بيانات GeoIP."
|
2034 |
|
2035 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:214
|
2036 |
msgid "browscap.ini File"
|
2037 |
msgstr "ملف browscap.ini"
|
2038 |
|
2039 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:223
|
2040 |
msgid "browscap.ini file does not exist."
|
2041 |
msgstr "لا وجود لملف browscap.ini."
|
2042 |
|
2043 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:227
|
2044 |
msgid "The file size and date of the browscap.ini file."
|
2045 |
msgstr "حجم الملف وتاريخ الملف browscap.ini."
|
2046 |
|
2047 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:233
|
2048 |
msgid "browscap Cache File"
|
2049 |
msgstr "browscap ملف ذاكرة التخزين المؤقت"
|
2050 |
|
2051 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:242
|
2052 |
msgid "browscap cache file does not exist."
|
2053 |
msgstr "لا وجود لملف ذاكرة التخزين المؤقت browscap."
|
2054 |
|
2055 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:246
|
2056 |
msgid "The file size and date of the browscap cache file."
|
2057 |
msgstr "حجم الملف وتاريخ الملف المؤقت browscap."
|
2058 |
|
2059 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:251
|
2060 |
msgid "Client Info"
|
2061 |
msgstr "معلومات العميل"
|
2062 |
|
2063 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:256
|
2064 |
msgid "Client IP"
|
2065 |
msgstr "IP العميل"
|
2066 |
|
2067 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:261
|
2068 |
msgid "The client IP address."
|
2069 |
msgstr "عنوان IP للعميل."
|
2070 |
|
2071 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:267
|
2072 |
msgid "User Agent"
|
2073 |
msgstr "وكيل المستخدم"
|
2074 |
|
2075 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:272
|
2076 |
msgid "The client user agent string."
|
2077 |
msgstr "سلسلة عامل المستخدم العميل."
|
2078 |
|
2079 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:278
|
2080 |
msgid "Browser"
|
2081 |
msgstr "المتصفح"
|
2082 |
|
2083 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:285
|
2084 |
msgid "The detected client browser."
|
2085 |
msgstr "مستكشف مستعرض العميل."
|
2086 |
|
2087 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:296
|
2088 |
msgid "The detected client browser version."
|
2089 |
msgstr "إصدار مستكشف مستعرض العميل."
|
2090 |
|
2091 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:307
|
2092 |
msgid "The detected client platform."
|
2093 |
msgstr "مستكشف منصة العميل"
|
2094 |
|
2095 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:4
|
2096 |
msgid "This will replace all IP addresses in the database with hash values and cannot be undo, are you sure?"
|
2097 |
msgstr "سيؤدي ذلك إلى استبدال جميع عناوين IP في قاعدة البيانات مع قيم التجزئة ولا يمكن التراجع، هل أنت متأكد؟"
|
2098 |
|
2099 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:16
|
2100 |
msgid "GeoIP Options"
|
2101 |
msgstr "خيارات GeoIP"
|
2102 |
|
2103 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:26
|
2104 |
msgid "Updates any unknown location data in the database, this may take a while"
|
2105 |
msgstr "تحديث أي بيانات الموقع غير معروفة في قاعدة البيانات, هذا قد يستغرق بعض الوقت"
|
2106 |
|
2107 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:31
|
2108 |
+
#: includes/settings/tabs/wps-general.php:66
|
2109 |
msgid "IP Addresses"
|
2110 |
msgstr "عناوين IP"
|
2111 |
|
2112 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:36
|
2113 |
+
#: includes/settings/tabs/wps-general.php:71
|
2114 |
msgid "Hash IP Addresses"
|
2115 |
msgstr "عناوين IP المجزئة"
|
2116 |
|
2117 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:41
|
2118 |
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"
|
2119 |
msgstr "استبدال عناوين IP في قاعدة البيانات مع قيم التجزئة، فإنك لن تكون قادرا على استرداد عناوين IP في المستقبل لتجميع معلومات عن الموقع بعد ذلك وهذا قد يستغرق بعض الوقت"
|
2120 |
|
2121 |
+
#: includes/optimization/wps-optimization.php:43
|
2122 |
msgid "IP Addresses replaced with hash values."
|
2123 |
msgstr "استبدال عناوين IP مع قيم التجزئة."
|
2124 |
|
2125 |
+
#: includes/optimization/wps-optimization.php:51
|
2126 |
msgid "Install routine complete."
|
2127 |
msgstr "التثبيت الكامل الروتيني."
|
2128 |
|
2129 |
+
#: includes/optimization/wps-optimization.php:182
|
2130 |
msgid "Resources/Information"
|
2131 |
msgstr "الموارد/معلومات"
|
2132 |
|
2133 |
+
#: includes/optimization/wps-optimization.php:184
|
2134 |
msgid "Purging"
|
2135 |
msgstr "تطهير"
|
2136 |
|
2137 |
+
#: includes/optimization/wps-optimization.php:185
|
2138 |
msgid "Database"
|
2139 |
msgstr "قاعدة البيانات"
|
2140 |
|
2141 |
+
#: includes/optimization/wps-optimization.php:186
|
2142 |
msgid "Updates"
|
2143 |
msgstr "تحديثات"
|
2144 |
|
2145 |
+
#: includes/optimization/wps-optimization.php:187
|
2146 |
msgid "Historical"
|
2147 |
msgstr "التاريخي"
|
2148 |
|
2149 |
+
#: includes/settings/tabs/wps-about.php:8
|
2150 |
msgid "WP Statistics V%s"
|
2151 |
msgstr "WP Statistics V%s"
|
2152 |
|
2153 |
+
#: includes/settings/tabs/wps-about.php:28
|
2154 |
msgid "Visit Us Online"
|
2155 |
msgstr "زورونا على الإنترنت"
|
2156 |
|
2157 |
+
#: includes/settings/tabs/wps-about.php:32
|
2158 |
msgid "Come visit our great new %s and keep up to date on the latest news about WP Statistics."
|
2159 |
msgstr "قم بزيارة موقعنا الجديد كلياً على %s وأبقى على إطلاع دائم حول أخبار احصائيات ووردبريس."
|
2160 |
|
2161 |
+
#: includes/settings/tabs/wps-about.php:32
|
2162 |
msgid "website"
|
2163 |
msgstr "الموقع"
|
2164 |
|
2165 |
+
#: includes/settings/tabs/wps-about.php:36
|
2166 |
msgid "Rate and Review at WordPress.org"
|
2167 |
msgstr "التقييم و المراجعة في WordPress.org"
|
2168 |
|
2169 |
+
#: includes/settings/tabs/wps-about.php:40
|
2170 |
msgid "Thanks for installing WP Statistics, we encourage you to submit a "
|
2171 |
msgstr "كل الشكر لتثبيت احصائيات ووردبريس، ونحن نشجعكم على تقديم"
|
2172 |
|
2173 |
+
#: includes/settings/tabs/wps-about.php:40
|
2174 |
msgid "rating and review"
|
2175 |
msgstr "التقييم و المراجعة"
|
2176 |
|
2177 |
+
#: includes/settings/tabs/wps-about.php:40
|
2178 |
msgid "over at WordPress.org. Your feedback is greatly appreciated!"
|
2179 |
msgstr "في WordPress.org. حيث أن ملاحظاتكم في موضع تقدير دائماً!"
|
2180 |
|
2181 |
+
#: includes/settings/tabs/wps-about.php:44
|
2182 |
msgid "Translations"
|
2183 |
msgstr "الترجمات"
|
2184 |
|
2185 |
+
#: includes/settings/tabs/wps-about.php:48
|
2186 |
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."
|
2187 |
msgstr "احصائيات ووردبريس تدعم التدويل ونحن نشجع مستخدمينا على تقديم الترجمات، يرجى زيارة موقعنا %s لرؤية الوضع الحالي و %s إذا كنت ترغب في المساعدة."
|
2188 |
|
2189 |
+
#: includes/settings/tabs/wps-about.php:48
|
2190 |
msgid "translation collaboration site"
|
2191 |
msgstr "الموقع التعاوني للترجمة"
|
2192 |
|
2193 |
+
#: includes/settings/tabs/wps-about.php:48
|
2194 |
msgid "drop us a line"
|
2195 |
msgstr "اترك لنا رسالة"
|
2196 |
|
2197 |
+
#: includes/settings/tabs/wps-about.php:52
|
2198 |
msgid "Support"
|
2199 |
msgstr "دعم"
|
2200 |
|
2201 |
+
#: includes/settings/tabs/wps-about.php:57
|
2202 |
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:"
|
2203 |
msgstr "نحن آسفون إن كنت تواجه مشكلة مع احصائيات ووردبريس ونحن سعداء للمساعدة. وهنا عدد قليل من الأشياء للقيام بها قبل الاتصال بنا:"
|
2204 |
|
2205 |
+
#: includes/settings/tabs/wps-about.php:60
|
2206 |
+
#: includes/settings/tabs/wps-about.php:61
|
2207 |
msgid "Have you read the %s?"
|
2208 |
msgstr "هل قرأت %s؟"
|
2209 |
|
2210 |
+
#: includes/settings/tabs/wps-about.php:60
|
2211 |
msgid "FAQs"
|
2212 |
msgstr "أسئلة وأجوبة"
|
2213 |
|
2214 |
+
#: includes/settings/tabs/wps-about.php:61
|
2215 |
msgid "manual"
|
2216 |
msgstr "الدليل"
|
2217 |
|
2218 |
+
#: includes/settings/tabs/wps-about.php:62
|
2219 |
msgid "Have you search the %s for a similar issue?"
|
2220 |
msgstr "هل بحثت في %s لمشكلة مشابهة؟"
|
2221 |
|
2222 |
+
#: includes/settings/tabs/wps-about.php:62
|
2223 |
msgid "support forum"
|
2224 |
msgstr "منتدى الدعم"
|
2225 |
|
2226 |
+
#: includes/settings/tabs/wps-about.php:63
|
2227 |
msgid "Have you search the Internet for any error messages you are receiving?"
|
2228 |
msgstr "هل بحثت في الإنترنت عن أي رسائل خطأ التي تظهر لك؟"
|
2229 |
|
2230 |
+
#: includes/settings/tabs/wps-about.php:64
|
2231 |
msgid "Make sure you have access to your PHP error logs."
|
2232 |
msgstr "تأكد أن لديك الوصول إلى سجلات الخطأ PHP الخاص بك."
|
2233 |
|
2234 |
+
#: includes/settings/tabs/wps-about.php:67
|
2235 |
msgid "And a few things to double-check:"
|
2236 |
msgstr "وعدد قليل من الأشياء الأخرى:"
|
2237 |
|
2238 |
+
#: includes/settings/tabs/wps-about.php:70
|
2239 |
msgid "How's your memory_limit in php.ini?"
|
2240 |
msgstr "كيف حال memory_limit الخاصة بك في ملف php.ini؟"
|
2241 |
|
2242 |
+
#: includes/settings/tabs/wps-about.php:71
|
2243 |
msgid "Have you tried disabling any other plugins you may have installed?"
|
2244 |
msgstr "هل حاولت تعطيل أي إضافات أخرى التي قد تم تثبيتها؟"
|
2245 |
|
2246 |
+
#: includes/settings/tabs/wps-about.php:72
|
2247 |
msgid "Have you tried using the default WordPress theme?"
|
2248 |
msgstr "هل حاولت استخدام المظهر الافتراضي للوردبريس؟"
|
2249 |
|
2250 |
+
#: includes/settings/tabs/wps-about.php:73
|
2251 |
msgid "Have you double checked the plugin settings?"
|
2252 |
msgstr "هل ضاعفت الفحص على إعدادات البرنامج المساعد؟"
|
2253 |
|
2254 |
+
#: includes/settings/tabs/wps-about.php:74
|
2255 |
msgid "Do you have all the required PHP extensions installed?"
|
2256 |
msgstr "هل قمت بتثبيت جميع ملحقات PHP المطلوبة؟"
|
2257 |
|
2258 |
+
#: includes/settings/tabs/wps-about.php:75
|
2259 |
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?"
|
2260 |
msgstr "أنت تحصل على صفحة فارغة أو غير مكتملة العرض في المستعرض الخاص بك؟ قم بعرض المصدر للصفحة وتحقق من وجود أية أخطاء قاتلة؟"
|
2261 |
|
2262 |
+
#: includes/settings/tabs/wps-about.php:76
|
2263 |
msgid "Have you checked your PHP and web server error logs?"
|
2264 |
msgstr "هل راجعت سجل أخطاء الـPHP الخاص بك؟"
|
2265 |
|
2266 |
+
#: includes/settings/tabs/wps-about.php:79
|
2267 |
msgid "Still not having any luck?"
|
2268 |
msgstr "لم يحالفك الحظ حتى الآن؟"
|
2269 |
|
2270 |
+
#: includes/settings/tabs/wps-about.php:79
|
2271 |
msgid "Then please open a new thread on the %s and we'll respond as soon as possible."
|
2272 |
msgstr "الرجاء فتح موضوع جديد في %s، وسنقوم بالرد في أقرب وقت ممكن."
|
2273 |
|
2274 |
+
#: includes/settings/tabs/wps-about.php:79
|
2275 |
msgid "WordPress.org support forum"
|
2276 |
msgstr "منتدى الدعم"
|
2277 |
|
2278 |
+
#: includes/settings/tabs/wps-about.php:83
|
2279 |
msgid "Alternatively %s support is available as well."
|
2280 |
msgstr "كما أنه يتوفر دعم للغة %s كذلك."
|
2281 |
|
2282 |
+
#: includes/settings/tabs/wps-about.php:83
|
2283 |
msgid "Farsi"
|
2284 |
msgstr "الفارسية"
|
2285 |
|
2286 |
+
#: includes/settings/tabs/wps-access-level.php:21
|
2287 |
msgid "WP Statistics Honey Pot Page"
|
2288 |
msgstr "الفسفور الابيض الاحصائيات عاء العسل الصفحة"
|
2289 |
|
2290 |
+
#: includes/settings/tabs/wps-access-level.php:22
|
2291 |
msgid "This is the honey pot for WP Statistics to use, do not delete."
|
2292 |
msgstr "هذا هو وعاء العسل لاحصائيات ووردبريس المستخدم, لا تحذف"
|
2293 |
|
2294 |
+
#: includes/settings/tabs/wps-access-level.php:45
|
2295 |
msgid "Access Levels"
|
2296 |
msgstr "مستويات الوصول"
|
2297 |
|
2298 |
+
#: includes/settings/tabs/wps-access-level.php:74
|
2299 |
msgid "Required user level to view WP Statistics"
|
2300 |
msgstr "مطلوب مستوى المستخدم لعرض الاحصائيات"
|
2301 |
|
2302 |
+
#: includes/settings/tabs/wps-access-level.php:89
|
2303 |
msgid "Required user level to manage WP Statistics"
|
2304 |
msgstr "مطلوب مستوى المستخدم لإدارة الاحصائيات"
|
2305 |
|
2306 |
+
#: includes/settings/tabs/wps-access-level.php:97
|
2307 |
msgid "See the %s for details on capability levels."
|
2308 |
msgstr "اطلع على %s لمزيد من التفاصيل على مستويات القدرة."
|
2309 |
|
2310 |
+
#: includes/settings/tabs/wps-access-level.php:97
|
2311 |
msgid "WordPress Roles and Capabilities page"
|
2312 |
msgstr "أدوار وقدرات صفحة ووردبريس"
|
2313 |
|
2314 |
+
#: includes/settings/tabs/wps-access-level.php:98
|
2315 |
msgid "Hint: manage_network = Super Admin Network, manage_options = Administrator, edit_others_posts = Editor, publish_posts = Author, edit_posts = Contributor, read = Everyone."
|
2316 |
msgstr "تلميح: manage_network = مسؤول, manage_options = مدير, edit_others_posts = محرر, publish_posts = كاتب, edit_posts = مساهم, read = الجميع"
|
2317 |
|
2318 |
+
#: includes/settings/tabs/wps-access-level.php:99
|
2319 |
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."
|
2320 |
msgstr "كل ما سبق من الكاسكيدز هي حقوق تكوين الووردبريس الافتراضي. على سبيل المثال عند اختيار publish_posts يمنح حقوق المؤلف,المحرر,المدير,المسؤول."
|
2321 |
|
2322 |
+
#: includes/settings/tabs/wps-access-level.php:100
|
2323 |
msgid "If you need a more robust solution to delegate access you might want to look at %s in the WordPress plugin directory."
|
2324 |
msgstr "إذا كنت في حاجة الى حل أكثر قوة لتفويض الوصول التي قد ترغب في النظر في %s الدليل المساعد لووردبريس."
|
2325 |
|
2326 |
+
#: includes/log/exclusions.php:197
|
2327 |
+
#: includes/settings/tabs/wps-access-level.php:105 wp-statistics.php:341
|
2328 |
+
#: wp-statistics.php:417
|
2329 |
msgid "Exclusions"
|
2330 |
msgstr "الاستثناءات"
|
2331 |
|
2332 |
+
#: includes/settings/tabs/wps-access-level.php:109
|
2333 |
msgid "Record exclusions"
|
2334 |
msgstr "سجل الاستثناءات"
|
2335 |
|
2336 |
+
#: includes/settings/tabs/wps-access-level.php:111
|
2337 |
+
#: includes/settings/tabs/wps-access-level.php:165
|
2338 |
+
#: includes/settings/tabs/wps-access-level.php:192
|
2339 |
msgid "Enable"
|
2340 |
msgstr "تمكين"
|
2341 |
|
2342 |
+
#: includes/settings/tabs/wps-access-level.php:112
|
2343 |
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."
|
2344 |
msgstr "يقوم هذا الخيار بتسجيل جميع النقرات المستبعدة في جدول منفصل مع أسباب الأستبعاد، ولكن بدون معلومات أخرى. وهذا قد يولد الكثير من البيانات ولكن هو مفيد إذا كنت تريد أن ترى العدد الكلي من المشاهدات التي يحصل عليها موقعك، وليس فقط المستخدم الفعلي للموقع."
|
2345 |
|
2346 |
+
#: includes/settings/tabs/wps-access-level.php:117
|
2347 |
msgid "Exclude User Roles"
|
2348 |
msgstr "استبعاد أدوار المستخدم"
|
2349 |
|
2350 |
+
#: includes/settings/tabs/wps-access-level.php:133
|
2351 |
+
#: includes/settings/tabs/wps-access-level.php:247
|
2352 |
+
#: includes/settings/tabs/wps-access-level.php:254
|
2353 |
+
#: includes/settings/tabs/wps-access-level.php:261
|
2354 |
msgid "Exclude"
|
2355 |
msgstr "منع"
|
2356 |
|
2357 |
+
#: includes/settings/tabs/wps-access-level.php:134
|
2358 |
msgid "Exclude %s role from data collection."
|
2359 |
msgstr "استبعاد دور %s من جمع البيانات."
|
2360 |
|
2361 |
+
#: includes/settings/tabs/wps-access-level.php:140
|
2362 |
msgid "IP/Robot Exclusions"
|
2363 |
msgstr "استثناءات IP/Robot"
|
2364 |
|
2365 |
+
#: includes/settings/tabs/wps-access-level.php:144
|
2366 |
msgid "Robot list"
|
2367 |
msgstr "قائمة الروبوت"
|
2368 |
|
2369 |
+
#: includes/settings/tabs/wps-access-level.php:157
|
2370 |
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."
|
2371 |
msgstr "قائمة من الكلمات (واحد في كل سطر) لمطابقة ضد للكشف عن الروبوتات. يجب أن تكون إدخالات 4 أحرف على الأقل أو أنها سيتم تجاهلها."
|
2372 |
|
2373 |
+
#: includes/settings/tabs/wps-access-level.php:158
|
2374 |
msgid "Reset to Default"
|
2375 |
msgstr "إعادة تعيين إلى الافتراضي"
|
2376 |
|
2377 |
+
#: includes/settings/tabs/wps-access-level.php:163
|
2378 |
msgid "Force robot list update after upgrades"
|
2379 |
msgstr "إجبار تحديث قائمة الربوت بعد الترقيات"
|
2380 |
|
2381 |
+
#: includes/settings/tabs/wps-access-level.php:166
|
2382 |
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."
|
2383 |
msgstr "إجبار قائمة الروبوت لإعادة تعيين إلى الافتراضي بعد تحديث احصائيات ووردبريس لتأخذ مكان. ملاحظة إذا تم تمكين هذا الخيار أي روبوتات تم تخصيصها في القائمة سوف تضيع."
|
2384 |
|
2385 |
+
#: includes/settings/tabs/wps-access-level.php:171
|
2386 |
msgid "Robot visit threshold"
|
2387 |
msgstr "الحد الأدنى بزيارة الروبوت"
|
2388 |
|
2389 |
+
#: includes/settings/tabs/wps-access-level.php:174
|
2390 |
msgid "Treat visitors with more than this number of visits per day as robots. 0 = disabled."
|
2391 |
msgstr "تعامل للزوار أكثر من هذا العدد من مرة في اليوم الواحد كما الروبوتات. 0 = تعطيل."
|
2392 |
|
2393 |
+
#: includes/settings/tabs/wps-access-level.php:179
|
2394 |
msgid "Excluded IP address list"
|
2395 |
msgstr "قائمة عناوين IP المستبعدة"
|
2396 |
|
2397 |
+
#: includes/settings/tabs/wps-access-level.php:182
|
2398 |
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."
|
2399 |
msgstr "قائمة عناوين IP وأقنعة الشبكة الفرعية (واحد في كل سطر) لاستبعاد من جميع الإحصائيات (وتقبل الأشكال كل من 192.168.0.0/24 و 192.168.0.0/255.255.255.0 ). لتحديد عنوان IP فقط، استخدم قيمة الشبكة الفرعية 32 أو 255.255.255.255.255."
|
2400 |
|
2401 |
+
#: includes/settings/tabs/wps-access-level.php:183
|
2402 |
msgid "Add 10.0.0.0"
|
2403 |
msgstr "إضافة 10.0.0.0"
|
2404 |
|
2405 |
+
#: includes/settings/tabs/wps-access-level.php:184
|
2406 |
msgid "Add 172.16.0.0"
|
2407 |
msgstr "إضافة 172.16.0.0"
|
2408 |
|
2409 |
+
#: includes/settings/tabs/wps-access-level.php:185
|
2410 |
msgid "Add 192.168.0.0"
|
2411 |
msgstr "إضافة 192.168.0.0"
|
2412 |
|
2413 |
+
#: includes/settings/tabs/wps-access-level.php:190
|
2414 |
msgid "Use honey pot"
|
2415 |
msgstr "استخدام وعاء العسل"
|
2416 |
|
2417 |
+
#: includes/settings/tabs/wps-access-level.php:193
|
2418 |
msgid "Use a honey pot page to identify robots."
|
2419 |
msgstr "استخدام صفحة وعاء العسل لتحديد الروبوتات."
|
2420 |
|
2421 |
+
#: includes/settings/tabs/wps-access-level.php:198
|
2422 |
msgid "Honey pot post id"
|
2423 |
msgstr "معرف مقال وعاء العسل"
|
2424 |
|
2425 |
+
#: includes/settings/tabs/wps-access-level.php:201
|
2426 |
msgid "The post id to use for the honeypot page."
|
2427 |
msgstr "رقم المشاركة لاستخدامها في صفحة المصيدة."
|
2428 |
|
2429 |
+
#: includes/settings/tabs/wps-access-level.php:202
|
2430 |
msgid "Create a new honey pot page"
|
2431 |
msgstr "إنشاء صفحة وعاء عسل جديدة"
|
2432 |
|
2433 |
+
#: includes/settings/tabs/wps-access-level.php:207
|
2434 |
msgid "GeoIP Exclusions"
|
2435 |
msgstr "استثناءات GeoIP"
|
2436 |
|
2437 |
+
#: includes/settings/tabs/wps-access-level.php:211
|
2438 |
msgid "Excluded countries list"
|
2439 |
msgstr "قائمة الدول المستثناة"
|
2440 |
|
2441 |
+
#: includes/settings/tabs/wps-access-level.php:214
|
2442 |
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."
|
2443 |
msgstr "قائمة رموز البلد (واحد في كل سطر، رسالتين لكل منهما) لاستبعاد من جمع الإحصاءات. استخدام \"000\" (ثلاثة أصفار) لاستبعاد بلدان غير معروفة."
|
2444 |
|
2445 |
+
#: includes/settings/tabs/wps-access-level.php:219
|
2446 |
msgid "Included countries list"
|
2447 |
msgstr "قائمة البلدان المدرجة"
|
2448 |
|
2449 |
+
#: includes/settings/tabs/wps-access-level.php:222
|
2450 |
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."
|
2451 |
msgstr "قائمة رموز البلد (واحد في كل سطر، رسالتين لكل منهما) لتشمل في جمع الإحصاءات، إذا كانت هذه القائمة ليست فارغة، سيتم تسجيل الزوار فقط من الدول المدرجة. استخدام \"000\" (ثلاثة أصفار) لاستبعاد بلدان غير معروفة."
|
2452 |
|
2453 |
+
#: includes/settings/tabs/wps-access-level.php:227
|
2454 |
msgid "Host Exclusions"
|
2455 |
msgstr "استثناءات المضيف"
|
2456 |
|
2457 |
+
#: includes/settings/tabs/wps-access-level.php:231
|
2458 |
msgid "Excluded hosts list"
|
2459 |
msgstr "قائمة المضيفين المستبعدين"
|
2460 |
|
2461 |
+
#: includes/settings/tabs/wps-access-level.php:234
|
2462 |
msgid "A list of fully qualified host names (ie. server.example.com, one per line) to exclude from statistics collection."
|
2463 |
msgstr "قائمة أسماء المضيف المؤهل بالكامل (أي. server.example.com، سطر واحد في المائة) لاستبعاد من جمع الإحصاءات."
|
2464 |
|
2465 |
+
#: includes/settings/tabs/wps-access-level.php:236
|
2466 |
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."
|
2467 |
msgstr "ملاحظة: هذا الخيار لإجراء بحث DNS عكسي على تحميل كل صفحة ولكن بدلا من ذلك بالتخزين المؤقت لعنوان الـIP لأسماء المضيفين المنصوص عليها هي ساعة واحدة. إذا كنت استبعدت المضيفين وقم بتعيين حيوي قد تجد بعض الدرجات من التداخل عندما يتغير عنوان IP للمضيف وذلك وعندما يتم تحديث ذاكرة التخزين المؤقت قد يؤدي في بعض الزيارات المسجلة."
|
2468 |
|
2469 |
+
#: includes/settings/tabs/wps-access-level.php:241
|
2470 |
msgid "Site URL Exclusions"
|
2471 |
msgstr "رابط الموقع المستثنى"
|
2472 |
|
2473 |
+
#: includes/settings/tabs/wps-access-level.php:245
|
2474 |
msgid "Excluded login page"
|
2475 |
msgstr "استبعاد صفحة تسجيل الدخول"
|
2476 |
|
2477 |
+
#: includes/settings/tabs/wps-access-level.php:248
|
2478 |
msgid "Exclude the login page for registering as a hit."
|
2479 |
msgstr "استبعاد صفحة الدخول للتسجيل كنقرة."
|
2480 |
|
2481 |
+
#: includes/settings/tabs/wps-access-level.php:252
|
2482 |
msgid "Excluded admin pages"
|
2483 |
msgstr "استبعاد الصفحات الإدارية"
|
2484 |
|
2485 |
+
#: includes/settings/tabs/wps-access-level.php:255
|
2486 |
msgid "Exclude the admin pages for registering as a hit."
|
2487 |
msgstr "استبعاد الصفحات الادارية للتسجيل كنقرة."
|
2488 |
|
2489 |
+
#: includes/settings/tabs/wps-access-level.php:259
|
2490 |
msgid "Excluded RSS feeds"
|
2491 |
msgstr "آر إس إس مستبعدة"
|
2492 |
|
2493 |
+
#: includes/settings/tabs/wps-access-level.php:262
|
2494 |
msgid "Exclude the RSS feeds for registering as a hit."
|
2495 |
msgstr "استبعاد آر إس إس لتسجيل كما ضرب."
|
2496 |
|
2497 |
+
#: includes/settings/tabs/wps-browscap.php:22
|
2498 |
msgid "browscap settings"
|
2499 |
msgstr "إعدادات browscap"
|
2500 |
|
2501 |
+
#: includes/settings/tabs/wps-browscap.php:27
|
2502 |
msgid "browscap usage"
|
2503 |
msgstr "استخدام browscap"
|
2504 |
|
2505 |
+
#: includes/settings/tabs/wps-browscap.php:32
|
2506 |
+
#: includes/settings/tabs/wps-browscap.php:56
|
2507 |
+
#: includes/settings/tabs/wps-general.php:76
|
2508 |
+
#: includes/settings/tabs/wps-general.php:92
|
2509 |
+
#: includes/settings/tabs/wps-general.php:116
|
2510 |
+
#: includes/settings/tabs/wps-general.php:132
|
2511 |
+
#: includes/settings/tabs/wps-general.php:148
|
2512 |
+
#: includes/settings/tabs/wps-general.php:160
|
2513 |
+
#: includes/settings/tabs/wps-general.php:187
|
2514 |
+
#: includes/settings/tabs/wps-general.php:199
|
2515 |
+
#: includes/settings/tabs/wps-general.php:214
|
2516 |
+
#: includes/settings/tabs/wps-general.php:228
|
2517 |
+
#: includes/settings/tabs/wps-general.php:258
|
2518 |
+
#: includes/settings/tabs/wps-general.php:270
|
2519 |
+
#: includes/settings/tabs/wps-general.php:286
|
2520 |
+
#: includes/settings/tabs/wps-general.php:325
|
2521 |
+
#: includes/settings/tabs/wps-general.php:341
|
2522 |
+
#: includes/settings/tabs/wps-geoip.php:47
|
2523 |
+
#: includes/settings/tabs/wps-geoip.php:71
|
2524 |
+
#: includes/settings/tabs/wps-geoip.php:104
|
2525 |
+
#: includes/settings/tabs/wps-maintenance.php:40
|
2526 |
+
#: includes/settings/tabs/wps-maintenance.php:64
|
2527 |
+
#: includes/settings/tabs/wps-notifications.php:69
|
2528 |
+
#: includes/settings/tabs/wps-notifications.php:81
|
2529 |
+
#: includes/settings/tabs/wps-notifications.php:93
|
2530 |
+
#: includes/settings/tabs/wps-notifications.php:105
|
2531 |
+
#: includes/settings/tabs/wps-notifications.php:121
|
2532 |
+
#: includes/settings/tabs/wps-overview-display.php:87
|
2533 |
+
#: includes/settings/tabs/wps-overview-display.php:107
|
2534 |
+
#: includes/settings/tabs/wps-overview-display.php:147
|
2535 |
+
#: includes/settings/tabs/wps-overview-display.php:159
|
2536 |
msgid "Active"
|
2537 |
msgstr "تفعيل"
|
2538 |
|
2539 |
+
#: includes/settings/tabs/wps-browscap.php:33
|
2540 |
msgid "The browscap database will be downloaded and used to detect robots."
|
2541 |
msgstr "سيتم تحميل قاعدة البيانات browscap وتستخدم للكشف عن الروبوتات."
|
2542 |
|
2543 |
+
#: includes/settings/tabs/wps-browscap.php:39
|
2544 |
msgid "Update browscap Info"
|
2545 |
msgstr "تحديث معلومات browscap"
|
2546 |
|
2547 |
+
#: includes/settings/tabs/wps-browscap.php:44
|
2548 |
msgid "Download browscap Database"
|
2549 |
msgstr "تحميل قاعدة بيانات browscap"
|
2550 |
|
2551 |
+
#: includes/settings/tabs/wps-browscap.php:45
|
2552 |
+
#: includes/settings/tabs/wps-geoip.php:60
|
2553 |
msgid "Save changes on this page to download the update."
|
2554 |
msgstr "حفظ التغييرات على هذه الصفحة لتحميل التحديث."
|
2555 |
|
2556 |
+
#: includes/settings/tabs/wps-browscap.php:51
|
2557 |
msgid "Schedule weekly update of browscap DB"
|
2558 |
msgstr "جدولة التحديث الأسبوعي لـ browscap DB"
|
2559 |
|
2560 |
+
#: includes/settings/tabs/wps-browscap.php:59
|
2561 |
+
#: includes/settings/tabs/wps-geoip.php:74
|
2562 |
msgid "Next update will be"
|
2563 |
msgstr "التحديث القادم سيكون في"
|
2564 |
|
2565 |
+
#: includes/settings/tabs/wps-browscap.php:74
|
2566 |
msgid "Download of the browscap database will be scheduled for once a week."
|
2567 |
msgstr "سيتم تحديد موعد تحميل قاعدة بيانات browscap لمرة واحدة في الأسبوع."
|
2568 |
|
2569 |
+
#: includes/settings/tabs/wps-general.php:50
|
2570 |
msgid "This will delete the manual when you save the settings, are you sure?"
|
2571 |
msgstr "سيؤدي ذلك إلى حذف الدليل عند حفظ الإعدادات، هل أنت متأكد؟"
|
2572 |
|
2573 |
+
#: includes/settings/tabs/wps-general.php:77
|
2574 |
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."
|
2575 |
msgstr "هذه الميزة لتخزين عناوين IP في قاعدة البيانات ولكن بدلا من ذلك تستخدم تجزئة فريدة من نوعها. سيتم تعطيل \"مخزن سلسلة عامل المستخدم بأكمله\" إذا تم تحديد هذا. أنت لن تكون قادر على استرداد عناوين IP في المستقبل لاسترداد معلومات الموقع إذا تم تمكين هذا."
|
2576 |
|
2577 |
+
#: includes/settings/tabs/wps-general.php:82 shortcode.php:129
|
2578 |
msgid "Users Online"
|
2579 |
msgstr "الإعضاء المتواجدين"
|
2580 |
|
2581 |
+
#: includes/settings/tabs/wps-general.php:87
|
2582 |
msgid "User online"
|
2583 |
msgstr "المتواجدين الآن"
|
languages/wp_statistics-bg_BG.mo
CHANGED
Binary file
|
languages/wp_statistics-bg_BG.po
CHANGED
@@ -10,2535 +10,2574 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
msgid "to"
|
15 |
msgstr ""
|
16 |
|
17 |
-
#:
|
18 |
msgid "Go"
|
19 |
msgstr ""
|
20 |
|
21 |
-
#:
|
22 |
msgid "Rank #5"
|
23 |
msgstr ""
|
24 |
|
25 |
-
#:
|
26 |
msgid "Rank #4"
|
27 |
msgstr ""
|
28 |
|
29 |
-
#:
|
30 |
msgid "Rank #3"
|
31 |
msgstr ""
|
32 |
|
33 |
-
#:
|
34 |
msgid "Rank #1"
|
35 |
msgstr ""
|
36 |
|
37 |
-
#:
|
38 |
msgid "Rank #2"
|
39 |
msgstr ""
|
40 |
|
41 |
-
#:
|
42 |
msgid "Visits Table"
|
43 |
msgstr ""
|
44 |
|
45 |
-
#:
|
46 |
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."
|
47 |
msgstr ""
|
48 |
|
49 |
-
#:
|
50 |
msgid "This operation could take a long time on installs with many rows in the visits table."
|
51 |
msgstr ""
|
52 |
|
53 |
-
#:
|
54 |
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."
|
55 |
msgstr ""
|
56 |
|
57 |
-
#:
|
58 |
msgid "Filtered by"
|
59 |
msgstr ""
|
60 |
|
61 |
-
#:
|
62 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:925
|
63 |
msgid "Range"
|
64 |
msgstr ""
|
65 |
|
66 |
-
#:
|
67 |
msgid "MM/DD/YYYY"
|
68 |
msgstr "MM/DD/YYYY"
|
69 |
|
70 |
-
#:
|
71 |
msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
|
72 |
msgstr ""
|
73 |
|
74 |
-
#:
|
75 |
msgid "Force English"
|
76 |
msgstr ""
|
77 |
|
78 |
-
#:
|
79 |
msgid "Languages"
|
80 |
msgstr ""
|
81 |
|
82 |
-
#:
|
83 |
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."
|
84 |
msgstr ""
|
85 |
|
86 |
-
#:
|
87 |
msgid "A list of local urls (ie. /wordpress/about, one per line) to exclude from statistics collection."
|
88 |
msgstr ""
|
89 |
|
90 |
-
#:
|
91 |
msgid "Excluded URLs list"
|
92 |
msgstr ""
|
93 |
|
94 |
-
#:
|
95 |
msgid "Excluded URL"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#:
|
99 |
msgid "Last 365 Days (Year)"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#:
|
103 |
msgid "Last 30 Days (Month)"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#:
|
107 |
msgid "Last 7 Days (Week)"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#:
|
111 |
msgid "Yahoo!"
|
112 |
msgstr ""
|
113 |
|
114 |
-
#:
|
115 |
msgid "Yandex"
|
116 |
msgstr ""
|
117 |
|
118 |
-
#:
|
119 |
msgid "clearch.org"
|
120 |
msgstr ""
|
121 |
|
122 |
-
#:
|
123 |
msgid "DuckDuckGo"
|
124 |
msgstr ""
|
125 |
|
126 |
-
#:
|
127 |
msgid "Bing"
|
128 |
msgstr ""
|
129 |
|
130 |
-
#:
|
131 |
msgid "Baidu"
|
132 |
msgstr ""
|
133 |
|
134 |
-
#:
|
135 |
msgid "Hits in the last 20 days"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#:
|
139 |
msgid "Feeds"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#:
|
143 |
msgid "User Role"
|
144 |
msgstr ""
|
145 |
|
146 |
-
#:
|
147 |
msgid "Login Page"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#:
|
151 |
msgid "Admin Page"
|
152 |
msgstr ""
|
153 |
|
154 |
-
#:
|
155 |
msgid "Self Referral"
|
156 |
msgstr ""
|
157 |
|
158 |
-
#:
|
159 |
msgid "IP Match"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#:
|
163 |
msgid "Robot"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#:
|
167 |
msgid "Currently there are no users online in the site."
|
168 |
msgstr ""
|
169 |
|
170 |
-
#:
|
171 |
msgid "Robot Threshold"
|
172 |
msgstr ""
|
173 |
|
174 |
-
#:
|
175 |
msgid "Honey Pot"
|
176 |
msgstr ""
|
177 |
|
178 |
-
#:
|
179 |
msgid "Page Trending Stats"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#:
|
183 |
msgid "Hostname"
|
184 |
msgstr ""
|
185 |
|
186 |
-
#:
|
187 |
-
#:
|
188 |
-
#:
|
189 |
-
#:
|
190 |
-
#:
|
191 |
-
#:
|
192 |
-
#:
|
193 |
msgid "Enable or disable this feature"
|
194 |
msgstr "Разрешаване или забраняване на тази функция"
|
195 |
|
196 |
-
#:
|
197 |
msgid "Check for online users every"
|
198 |
msgstr "Проверявай за онлайн потребители на всеки"
|
199 |
|
200 |
-
#:
|
201 |
msgid "Second"
|
202 |
msgstr "Секунда"
|
203 |
|
204 |
-
#:
|
205 |
msgid "Time for the check accurate online user in the site. Now: %s Second"
|
206 |
msgstr "Времето за точна проверка онлайн потребителя в сайта. Сега: %s втори"
|
207 |
|
208 |
-
#:
|
209 |
msgid "Record all user"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#:
|
213 |
msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
|
214 |
msgstr ""
|
215 |
|
216 |
-
#:
|
217 |
msgid "Store entire user agent string"
|
218 |
msgstr "Съхранява цялата потребител фактор канап"
|
219 |
|
220 |
-
#:
|
221 |
msgid "Only enabled for debugging"
|
222 |
msgstr "Разрешена за отстраняване на грешки"
|
223 |
|
224 |
-
#:
|
225 |
msgid "Coefficient per visitor"
|
226 |
msgstr "Коефициент за потребител"
|
227 |
|
228 |
-
#:
|
229 |
msgid "For each visit to account for several hits. Currently %s."
|
230 |
msgstr "За всяко посещение на сметка за няколко хитове. В момента %s."
|
231 |
|
232 |
-
#:
|
233 |
-
#:
|
234 |
-
#:
|
235 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:396
|
236 |
msgid "Pages"
|
237 |
msgstr "Страници"
|
238 |
|
239 |
-
#:
|
240 |
msgid "Track all pages"
|
241 |
msgstr "Проследяване на всички страници"
|
242 |
|
243 |
-
#:
|
244 |
msgid "Strip parameters from URI"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#:
|
248 |
msgid "This will remove anything after the ? in a URL."
|
249 |
msgstr ""
|
250 |
|
251 |
-
#:
|
252 |
msgid "Disable hits column in post/pages list"
|
253 |
msgstr "Забрани хитове колона пост/страници списък"
|
254 |
|
255 |
-
#:
|
256 |
msgid "Miscellaneous"
|
257 |
msgstr "Разни"
|
258 |
|
259 |
-
#:
|
260 |
msgid "Show stats in menu bar"
|
261 |
msgstr "Покажи статистиките в менюто"
|
262 |
|
263 |
-
#:
|
264 |
msgid "No"
|
265 |
msgstr "Не"
|
266 |
|
267 |
-
#:
|
268 |
msgid "Yes"
|
269 |
msgstr "Да"
|
270 |
|
271 |
-
#:
|
272 |
msgid "Show stats in admin menu bar"
|
273 |
msgstr "Покажи статистиките в админ менюто"
|
274 |
|
275 |
-
#:
|
276 |
msgid "Hide admin notices about non active features"
|
277 |
msgstr "Скрий администратор обявления за не са активни функции"
|
278 |
|
279 |
-
#:
|
280 |
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."
|
281 |
msgstr "По подразбиране WP Statistics показва предупреждение, ако някой от основните функции са забранени на всяка страница, Админ, тази опция ще забраните тези съобщения."
|
282 |
|
283 |
-
#:
|
284 |
msgid "Delete the manual"
|
285 |
msgstr "Изтриване на наръчника"
|
286 |
|
287 |
-
#:
|
288 |
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."
|
289 |
msgstr "По подразбиране WP Statistics съхранява администратор ръководство в плъгин директорията (~ 5 Мег), ако тази опция е включена тя ще бъде изтрита сега и по време на ъпгрейд в бъдеще."
|
290 |
|
291 |
-
#:
|
292 |
msgid "Search Engines"
|
293 |
msgstr ""
|
294 |
|
295 |
-
#:
|
296 |
msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
|
297 |
msgstr "Деактивирането на всички търсещи машини не е позволено, това ще доведе до всички търсещи машини са активни."
|
298 |
|
299 |
-
#:
|
300 |
msgid "disable"
|
301 |
msgstr "забрани"
|
302 |
|
303 |
-
#:
|
304 |
msgid "Disable %s from data collection and reporting."
|
305 |
msgstr "Изключете %s от събирането на данни и докладване."
|
306 |
|
307 |
-
#:
|
308 |
msgid "Charts"
|
309 |
msgstr "Диаграми"
|
310 |
|
311 |
-
#:
|
312 |
msgid "Include totals"
|
313 |
msgstr "Включва общи суми"
|
314 |
|
315 |
-
#:
|
316 |
msgid "Add a total line to charts with multiple values, like the search engine referrals"
|
317 |
msgstr "Добавяне на обща линия за диаграми с множество стойности, като търсене двигател референции"
|
318 |
|
319 |
-
#:
|
320 |
msgid "GeoIP settings"
|
321 |
msgstr "GeoIP настройки"
|
322 |
|
323 |
-
#:
|
324 |
msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
|
325 |
msgstr "IP местоположение услуги, предоставяни от GeoLite2 данни, създадени от MaxMind, достъпни от %s."
|
326 |
|
327 |
-
#:
|
328 |
msgid "GeoIP collection"
|
329 |
msgstr "GeoIP колекция"
|
330 |
|
331 |
-
#:
|
332 |
msgid "For get more information and location (country) from visitor, enable this feature."
|
333 |
msgstr "За да получите повече информация и местоположението (страната) от посетител, активирате тази функция."
|
334 |
|
335 |
-
#:
|
336 |
msgid "Update GeoIP Info"
|
337 |
msgstr "GeoIP информация актуализация"
|
338 |
|
339 |
-
#:
|
340 |
msgid "Download GeoIP Database"
|
341 |
msgstr "Изтегли GeoIP база данни"
|
342 |
|
343 |
-
#:
|
344 |
msgid "Schedule monthly update of GeoIP DB"
|
345 |
msgstr "Месечна актуализация график на GeoIP DB"
|
346 |
|
347 |
-
#:
|
348 |
msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
|
349 |
msgstr "Изтегляне на GeoIP базата данни ще бъде насрочено за 2 дни след първия вторник на месеца."
|
350 |
|
351 |
-
#:
|
352 |
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)."
|
353 |
msgstr "Тази опция ще изтеглите базата данни ако местните големина е по-малко от 1k, (което обикновено означава пън, която идва с приставката е все още на място)."
|
354 |
|
355 |
-
#:
|
356 |
msgid "Populate missing GeoIP after update of GeoIP DB"
|
357 |
msgstr "Попълни липсващите GeoIP след актуализация на GeoIP DB"
|
358 |
|
359 |
-
#:
|
360 |
msgid "Update any missing GeoIP data after downloading a new database."
|
361 |
msgstr "Липсващи GeoIP данни се актуализира след свалянето на нова база данни."
|
362 |
|
363 |
-
#:
|
364 |
msgid "Country code for private IP addresses"
|
365 |
msgstr ""
|
366 |
|
367 |
-
#:
|
368 |
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."
|
369 |
msgstr ""
|
370 |
|
371 |
-
#:
|
372 |
msgid "GeoIP collection is disabled due to the following reasons:"
|
373 |
msgstr "GeoIP колекция е забранена поради следните причини:"
|
374 |
|
375 |
-
#:
|
376 |
msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
|
377 |
msgstr "GeoIP колекция изисква PHP %s или по-горе, в момента е забранен поради инсталирани PHP версия са "
|
378 |
|
379 |
-
#:
|
380 |
msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
|
381 |
msgstr "GeoIP колекция изисква разширение на PHP къдря и тя не е заредена на вашата версия на PHP!"
|
382 |
|
383 |
-
#:
|
384 |
msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
|
385 |
msgstr "GeoIP колекция изисква ПР.н.е математика PHP продължаване и то не е заредена на вашата версия на PHP!"
|
386 |
|
387 |
-
#:
|
388 |
msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
|
389 |
msgstr "Безопасен режим PHP открити! GeoIP колекция не се поддържа на PHP защитен режим!"
|
390 |
|
391 |
-
#:
|
392 |
msgid "This will permanently delete data from the database each day, are you sure you want to enable this option?"
|
393 |
msgstr "Това ще изтрие данни от базата данни всеки ден, наистина ли искате да разрешите тази опция?"
|
394 |
|
395 |
-
#:
|
396 |
msgid "Database Maintenance"
|
397 |
msgstr "Поддръжка на база данни"
|
398 |
|
399 |
-
#:
|
|
|
400 |
msgid "Run a daily WP Cron job to prune the databases"
|
401 |
msgstr "Изпълни ежедневно WP Cron работа да режеш на бази данни"
|
402 |
|
403 |
-
#:
|
404 |
msgid "A WP Cron job will be run daily to prune any data older than a set number of days."
|
405 |
msgstr "WP Cron работни места ще се изпълнява ежедневно да се режат всякакви данни, по-стари от определен брой дни."
|
406 |
|
407 |
-
#:
|
408 |
msgid "Prune data older than"
|
409 |
msgstr "Премахване на данните по-стари от"
|
410 |
|
411 |
-
#:
|
412 |
msgid "Days"
|
413 |
msgstr "Дни"
|
414 |
|
415 |
-
#:
|
416 |
msgid "The number of days to keep statistics for. Minimum value is 30 days. Invalid values will disable the daily maintenance."
|
417 |
msgstr "Броят на дните за запазване на статистика за. Минималната стойност е 30 дни. Невалидни стойности ще забрани ежедневна поддръжка."
|
418 |
|
419 |
-
#:
|
420 |
msgid "Common Report Options"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#:
|
424 |
msgid "E-mail addresses"
|
425 |
msgstr "Имейл адреси"
|
426 |
|
427 |
-
#:
|
428 |
msgid "A comma separated list of e-mail addresses to send reports to."
|
429 |
msgstr ""
|
430 |
|
431 |
-
#:
|
432 |
msgid "Update Reports"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#:
|
436 |
-
#:
|
437 |
msgid "Browscap"
|
438 |
msgstr ""
|
439 |
|
440 |
-
#:
|
441 |
msgid "Send a report whenever the browscap.ini is updated."
|
442 |
msgstr ""
|
443 |
|
444 |
-
#:
|
445 |
-
#:
|
446 |
-
#:
|
447 |
msgid "GeoIP"
|
448 |
msgstr "GeoIP"
|
449 |
|
450 |
-
#:
|
451 |
msgid "Send a report whenever the GeoIP database is updated."
|
452 |
msgstr ""
|
453 |
|
454 |
-
#:
|
455 |
msgid "Pruning"
|
456 |
msgstr ""
|
457 |
|
458 |
-
#:
|
459 |
msgid "Send a report whenever the pruning of database is run."
|
460 |
msgstr ""
|
461 |
|
462 |
-
#:
|
463 |
msgid "Upgrade"
|
464 |
msgstr ""
|
465 |
|
466 |
-
#:
|
467 |
msgid "Send a report whenever the plugin is upgraded."
|
468 |
msgstr ""
|
469 |
|
470 |
-
#:
|
471 |
-
#:
|
472 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:174
|
473 |
msgid "Statistical reporting"
|
474 |
msgstr "Статистическата отчетност"
|
475 |
|
476 |
-
#:
|
477 |
msgid "Schedule"
|
478 |
msgstr "График"
|
479 |
|
480 |
-
#:
|
481 |
msgid "Select how often to receive statistical report."
|
482 |
msgstr ""
|
483 |
|
484 |
-
#:
|
485 |
msgid "Send reports via"
|
486 |
msgstr "Изпрати отчетите чрез"
|
487 |
|
488 |
-
#:
|
489 |
msgid "Email"
|
490 |
msgstr "Имейл"
|
491 |
|
492 |
-
#:
|
493 |
msgid "SMS"
|
494 |
msgstr "SMS"
|
495 |
|
496 |
-
#:
|
497 |
msgid "Select delivery method for statistical report."
|
498 |
msgstr ""
|
499 |
|
500 |
-
#:
|
501 |
msgid "Note: To send SMS text messages please install the %s plugin."
|
502 |
msgstr "Забележка: За да изпратите SMS текстови съобщения моля инсталирайте %s плъгин."
|
503 |
|
504 |
-
#:
|
505 |
msgid "WordPress SMS"
|
506 |
msgstr "WordPress SMS"
|
507 |
|
508 |
-
#:
|
509 |
msgid "Report body"
|
510 |
msgstr "Тялото на доклада"
|
511 |
|
512 |
-
#:
|
513 |
msgid "Enter the contents of the report."
|
514 |
msgstr ""
|
515 |
|
516 |
-
#:
|
517 |
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:"
|
518 |
msgstr ""
|
519 |
|
520 |
-
#:
|
521 |
-
#:
|
522 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:245
|
523 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:492
|
524 |
msgid "User Online"
|
525 |
msgstr "Онлайн потребители"
|
526 |
|
527 |
-
#:
|
528 |
-
#:
|
529 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:251
|
530 |
msgid "Today Visitor"
|
531 |
msgstr "Днес посетителите"
|
532 |
|
533 |
-
#:
|
534 |
-
#:
|
535 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:248
|
536 |
msgid "Today Visit"
|
537 |
msgstr "Посещения от днес"
|
538 |
|
539 |
-
#:
|
540 |
-
#:
|
541 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:257
|
542 |
msgid "Yesterday Visitor"
|
543 |
msgstr "Вчера посетител"
|
544 |
|
545 |
-
#:
|
546 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:59
|
547 |
msgid "Yesterday Visit"
|
548 |
msgstr "Вчерашни посещения"
|
549 |
|
550 |
-
#:
|
551 |
-
#:
|
552 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:272
|
553 |
msgid "Total Visitor"
|
554 |
msgstr "Общо посетител"
|
555 |
|
556 |
-
#:
|
557 |
-
#:
|
558 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:269
|
559 |
msgid "Total Visit"
|
560 |
msgstr "Общо посещения"
|
561 |
|
562 |
-
#:
|
563 |
-
#:
|
564 |
msgid "None"
|
565 |
msgstr "Няма"
|
566 |
|
567 |
-
#:
|
568 |
msgid "Summary Statistics"
|
569 |
msgstr "Обобщена статистика"
|
570 |
|
571 |
-
#:
|
572 |
-
#:
|
573 |
msgid "About"
|
574 |
msgstr "За"
|
575 |
|
576 |
-
#:
|
577 |
msgid "Hits Statistical Chart"
|
578 |
msgstr "Статистически диаграма хитове"
|
579 |
|
580 |
-
#:
|
581 |
msgid "Search Engine Referrers Statistical Chart"
|
582 |
msgstr "Търсене двигател референтите статистически диаграма"
|
583 |
|
584 |
-
#:
|
585 |
msgid "Top Pages Visited"
|
586 |
msgstr "Най-посещаваните страници"
|
587 |
|
588 |
-
#:
|
589 |
msgid "Dashboard"
|
590 |
msgstr ""
|
591 |
|
592 |
-
#:
|
593 |
-
#:
|
594 |
-
#:
|
595 |
msgid "The following items are global to all users."
|
596 |
msgstr ""
|
597 |
|
598 |
-
#:
|
599 |
msgid "Disable dashboard widgets"
|
600 |
msgstr ""
|
601 |
|
602 |
-
#:
|
603 |
msgid "Disable the dashboard widgets."
|
604 |
msgstr ""
|
605 |
|
606 |
-
#:
|
607 |
msgid "Page/Post Editor"
|
608 |
msgstr ""
|
609 |
|
610 |
-
#:
|
611 |
msgid "Disable post/page editor widget"
|
612 |
msgstr ""
|
613 |
|
614 |
-
#:
|
615 |
msgid "Disable the page/post editor widget."
|
616 |
msgstr ""
|
617 |
|
618 |
-
#:
|
619 |
msgid "Map type"
|
620 |
msgstr "Тип карта"
|
621 |
|
622 |
-
#:
|
623 |
-
#:
|
624 |
msgid "Google"
|
625 |
msgstr "Google"
|
626 |
|
627 |
-
#:
|
628 |
msgid "JQVMap"
|
629 |
msgstr "JQVMap"
|
630 |
|
631 |
-
#:
|
632 |
msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
|
633 |
msgstr "\"Google\" опция ще използва на Google картографска услуга да начертаете последните посетители (изисква достъп до Google)."
|
634 |
|
635 |
-
#:
|
636 |
msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
|
637 |
msgstr "\"JQVMap\" опция ще използва JQVMap библиотека javascript картографиране да начертаете последните посетители (изисква extenral услуги)."
|
638 |
|
639 |
-
#:
|
640 |
msgid "Disable map"
|
641 |
msgstr "Забраняване на картата"
|
642 |
|
643 |
-
#:
|
644 |
msgid "Disable the map display"
|
645 |
msgstr "Забраняване на показването на картите"
|
646 |
|
647 |
-
#:
|
648 |
msgid "Get country location from Google"
|
649 |
msgstr "Се страна местоположение от Google"
|
650 |
|
651 |
-
#:
|
652 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
653 |
msgstr "Тази функция може да доведе до намаляване на производителността, когато разглеждате статистиката и е валидно, ако типът на картата е настроено на \"Google само\"."
|
654 |
|
655 |
-
#:
|
656 |
msgid "Overview Widgets to Display"
|
657 |
msgstr ""
|
658 |
|
659 |
-
#:
|
660 |
msgid "The following items are unique to each user. If you do not select the 'About' widget it will automatically be displayed in the last positon of column A."
|
661 |
msgstr "Следните елементи са уникални за всеки потребител. Ако не изберете \"За\" джаджа автоматично ще бъдат показани в на последните позицията на колоната A."
|
662 |
|
663 |
-
#:
|
664 |
msgid "Slot"
|
665 |
msgstr "Слот"
|
666 |
|
667 |
-
#:
|
668 |
msgid "Column A"
|
669 |
msgstr "Колона А"
|
670 |
|
671 |
-
#:
|
672 |
msgid "Column B"
|
673 |
msgstr "Колона B"
|
674 |
|
675 |
-
#:
|
676 |
msgid "Slot 1"
|
677 |
msgstr "Слот 1"
|
678 |
|
679 |
-
#:
|
680 |
msgid "Slot 2"
|
681 |
msgstr "Слот 2"
|
682 |
|
683 |
-
#:
|
684 |
msgid "Slot 3"
|
685 |
msgstr "Слот 3"
|
686 |
|
687 |
-
#:
|
688 |
msgid "Slot 4"
|
689 |
msgstr "Слот 4"
|
690 |
|
691 |
-
#:
|
692 |
msgid "Slot 5"
|
693 |
msgstr "Слот 5"
|
694 |
|
695 |
-
#:
|
696 |
msgid "Slot 6"
|
697 |
msgstr "Слот за 6"
|
698 |
|
699 |
-
#:
|
700 |
-
#:
|
701 |
msgid "N/A"
|
702 |
msgstr "N/A"
|
703 |
|
704 |
-
#:
|
705 |
msgid "Slot 7"
|
706 |
msgstr ""
|
707 |
|
708 |
-
#:
|
709 |
msgid "WP Statisitcs Removal"
|
710 |
msgstr ""
|
711 |
|
712 |
-
#:
|
713 |
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."
|
714 |
msgstr ""
|
715 |
|
716 |
-
#:
|
717 |
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."
|
718 |
msgstr ""
|
719 |
|
720 |
-
#:
|
721 |
msgid "Remove data and settings"
|
722 |
msgstr ""
|
723 |
|
724 |
-
#:
|
725 |
msgid "Remove"
|
726 |
msgstr ""
|
727 |
|
728 |
-
#:
|
729 |
msgid "Remove data and settings, this action cannot be undone."
|
730 |
msgstr ""
|
731 |
|
732 |
-
#:
|
733 |
msgid "General"
|
734 |
msgstr "Общи"
|
735 |
|
736 |
-
#:
|
737 |
msgid "Notifications"
|
738 |
msgstr ""
|
739 |
|
740 |
-
#:
|
741 |
msgid "Dashboard/Overview"
|
742 |
msgstr ""
|
743 |
|
744 |
-
#:
|
745 |
msgid "Access/Exclusions"
|
746 |
msgstr "Достъп/изключвания"
|
747 |
|
748 |
-
#:
|
749 |
msgid "browscap"
|
750 |
msgstr "browscap"
|
751 |
|
752 |
-
#:
|
753 |
msgid "Maintenance"
|
754 |
msgstr "Поддръжка"
|
755 |
|
756 |
-
#:
|
757 |
msgid "Removal"
|
758 |
msgstr ""
|
759 |
|
760 |
-
#:
|
761 |
-
#:
|
762 |
-
#:
|
763 |
-
#:
|
764 |
-
#:
|
765 |
-
#:
|
766 |
-
#:
|
767 |
-
#:
|
768 |
msgid "Update"
|
769 |
msgstr "Актуализация"
|
770 |
|
771 |
-
#:
|
772 |
-
msgid "Manual not found: %s"
|
773 |
-
msgstr "Ръководството не е намерен: %s"
|
774 |
-
|
775 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/manual/manual.php:39
|
776 |
-
msgid "Invalid file type selected: %s"
|
777 |
-
msgstr "Невалиден тип файл избран: %s"
|
778 |
-
|
779 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:10
|
780 |
msgid "Once Weekly"
|
781 |
msgstr "Веднъж седмично"
|
782 |
|
783 |
-
#:
|
784 |
msgid "Once Every 2 Weeks"
|
785 |
msgstr "Веднъж на всеки 2 седмици"
|
786 |
|
787 |
-
#:
|
788 |
msgid "Once Every 4 Weeks"
|
789 |
msgstr "Веднъж на всеки 4 седмици"
|
790 |
|
791 |
-
#:
|
792 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:312
|
793 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:349
|
794 |
msgid "Statistics"
|
795 |
msgstr "Статистики"
|
796 |
|
797 |
-
#:
|
798 |
msgid "Show site stats in sidebar."
|
799 |
msgstr "Показване на статистика на сайт в страничната лента."
|
800 |
|
801 |
-
#:
|
802 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:260
|
803 |
msgid "Week Visit"
|
804 |
msgstr "Седмични посещения"
|
805 |
|
806 |
-
#:
|
807 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:263
|
808 |
msgid "Month Visit"
|
809 |
msgstr "Месечни посещения"
|
810 |
|
811 |
-
#:
|
812 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:266
|
813 |
msgid "Years Visit"
|
814 |
msgstr "Годишни посещения"
|
815 |
|
816 |
-
#:
|
817 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:275
|
818 |
msgid "Total Page Views"
|
819 |
msgstr "Общо изгледи на страница"
|
820 |
|
821 |
-
#:
|
822 |
msgid "Search Engine referred"
|
823 |
msgstr "Търсачката по"
|
824 |
|
825 |
-
#:
|
826 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:298
|
827 |
msgid "Total Posts"
|
828 |
msgstr "Общо публикации"
|
829 |
|
830 |
-
#:
|
831 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:301
|
832 |
msgid "Total Pages"
|
833 |
msgstr "Общо страници"
|
834 |
|
835 |
-
#:
|
836 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:304
|
837 |
msgid "Total Comments"
|
838 |
msgstr "Общо коментари"
|
839 |
|
840 |
-
#:
|
841 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:307
|
842 |
msgid "Total Spams"
|
843 |
msgstr "Общо спам"
|
844 |
|
845 |
-
#:
|
846 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:310
|
847 |
msgid "Total Users"
|
848 |
msgstr "Общо потребители"
|
849 |
|
850 |
-
#:
|
851 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:313
|
852 |
msgid "Average Posts"
|
853 |
msgstr "Средно публикации"
|
854 |
|
855 |
-
#:
|
856 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:316
|
857 |
msgid "Average Comments"
|
858 |
msgstr "Средно коментари"
|
859 |
|
860 |
-
#:
|
861 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:319
|
862 |
msgid "Average Users"
|
863 |
msgstr "Средно потребители"
|
864 |
|
865 |
-
#:
|
866 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:322
|
867 |
msgid "Last Post Date"
|
868 |
msgstr "Последно добавена публикация"
|
869 |
|
870 |
-
#:
|
871 |
msgid "Name"
|
872 |
msgstr "Име"
|
873 |
|
874 |
-
#:
|
875 |
msgid "Items"
|
876 |
msgstr "Броя"
|
877 |
|
878 |
-
#:
|
879 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:517
|
880 |
msgid "Yesterday visit"
|
881 |
msgstr "Вчерашни посещения"
|
882 |
|
883 |
-
#:
|
884 |
msgid "Search Engine Referred"
|
885 |
msgstr "Търсачката по"
|
886 |
|
887 |
-
#:
|
888 |
msgid "Select type of search engine"
|
889 |
msgstr "Изберете тип търсачка"
|
890 |
|
891 |
-
#:
|
892 |
msgid "ERROR: WP Statistics has detected an unsupported version of PHP, WP Statistics will not function without PHP Version "
|
893 |
msgstr "ГРЕШКА: WP Statistics откри неподдържана версия на PHP, WP Statistics няма да функционира без PHP версия "
|
894 |
|
895 |
-
#:
|
896 |
msgid " or higher!"
|
897 |
msgstr "или по-висока!"
|
898 |
|
899 |
-
#:
|
900 |
msgid "Your current PHP version is"
|
901 |
msgstr ""
|
902 |
|
903 |
-
#:
|
904 |
msgid "WP Statistics has been removed, please disable and delete it."
|
905 |
msgstr ""
|
906 |
|
907 |
-
|
|
|
|
|
908 |
msgid "WP Statistics"
|
909 |
msgstr "WP Statistics"
|
910 |
|
911 |
-
|
|
|
|
|
912 |
msgid "Complete statistics for your WordPress site."
|
913 |
msgstr "Пълна статистика за вашия сайт WordPress."
|
914 |
|
915 |
-
#:
|
916 |
msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
|
917 |
msgstr "Онлайн потребител, проследяване в WP Statistics не е разрешен, моля отидете на %s и го активирате."
|
918 |
|
919 |
-
#:
|
920 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:112
|
921 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:115
|
922 |
msgid "setting page"
|
923 |
msgstr "определянето страница"
|
924 |
|
925 |
-
#:
|
926 |
msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
|
927 |
msgstr "Хита проследяващия в WP Statistics не е разрешен, моля отидете на %s и го активирате."
|
928 |
|
929 |
-
#:
|
930 |
msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
|
931 |
msgstr "Посетител проследяване в WP Statistics не е разрешен, моля отидете на %s и го активирате."
|
932 |
|
933 |
-
#:
|
934 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
935 |
msgstr "GeoIP колекция не е активен, моля отидете на %s и активирате тази функция."
|
936 |
|
937 |
-
#:
|
938 |
msgid "Setting page > GeoIP"
|
939 |
msgstr "Определянето страница > GeoIP"
|
940 |
|
941 |
-
#:
|
942 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:331
|
943 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:403
|
944 |
msgid "Settings"
|
945 |
msgstr "Настройки"
|
946 |
|
947 |
-
#:
|
948 |
msgid "Click here to visit the plugin on WordPress.org"
|
949 |
msgstr "Щракнете тук, за да посетите плъгин от WordPress.org"
|
950 |
|
951 |
-
#:
|
952 |
msgid "Visit WordPress.org page"
|
953 |
msgstr "Посетете страницата на WordPress.org"
|
954 |
|
955 |
-
#:
|
956 |
msgid "Click here to rate and review this plugin on WordPress.org"
|
957 |
msgstr "Щракнете тук, за да оцените и да преразгледа този плъгин от WordPress.org"
|
958 |
|
959 |
-
#:
|
960 |
msgid "Rate this plugin"
|
961 |
msgstr "Оцени този плъгин"
|
962 |
|
963 |
-
#:
|
964 |
msgid "WP Statistics - Hits"
|
965 |
msgstr "WP-статистика - хитове"
|
966 |
|
967 |
-
#:
|
968 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:352
|
969 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:390
|
970 |
msgid "Overview"
|
971 |
msgstr "Общ преглед"
|
972 |
|
973 |
-
#:
|
974 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:395
|
975 |
msgid "Online"
|
976 |
msgstr ""
|
977 |
|
978 |
-
#:
|
979 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:397
|
980 |
msgid "Referrers"
|
981 |
msgstr ""
|
982 |
|
983 |
-
#:
|
984 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:398
|
985 |
msgid "Searches"
|
986 |
msgstr "Търсения"
|
987 |
|
988 |
-
#:
|
989 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:399
|
990 |
msgid "Search Words"
|
991 |
msgstr "Думи за търсене"
|
992 |
|
993 |
-
#:
|
994 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:400
|
995 |
msgid "Top Visitors Today"
|
996 |
msgstr ""
|
997 |
|
998 |
-
#:
|
999 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:402
|
1000 |
msgid "Optimization"
|
1001 |
msgstr "Оптимизация"
|
1002 |
|
1003 |
-
#:
|
1004 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:366
|
1005 |
msgid "Manual"
|
1006 |
msgstr "Ръководство"
|
1007 |
|
1008 |
-
#:
|
1009 |
msgid "Site"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
-
#:
|
1013 |
msgid "Options"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
-
#:
|
1017 |
msgid "Today visitor"
|
1018 |
msgstr "Днес посетителите"
|
1019 |
|
1020 |
-
#:
|
1021 |
msgid "Today visit"
|
1022 |
msgstr "Днес, посетете"
|
1023 |
|
1024 |
-
#:
|
1025 |
msgid "Yesterday visitor"
|
1026 |
msgstr "Вчера посетител"
|
1027 |
|
1028 |
-
#:
|
1029 |
msgid "View Stats"
|
1030 |
msgstr "Преглед на статистиките"
|
1031 |
|
1032 |
-
#:
|
1033 |
msgid "Download ODF file"
|
1034 |
msgstr "Изтегляне на ODF файл"
|
1035 |
|
1036 |
-
#:
|
1037 |
msgid "Download HTML file"
|
1038 |
msgstr "Изтегли HTML файл"
|
1039 |
|
1040 |
-
#:
|
1041 |
msgid "Manual file not found."
|
1042 |
msgstr "Ръчно файлът не е намерен."
|
1043 |
|
1044 |
-
#:
|
1045 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:730
|
1046 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:764
|
1047 |
msgid "You do not have sufficient permissions to access this page."
|
1048 |
msgstr "Нямате права за тази страница"
|
1049 |
|
1050 |
-
#:
|
1051 |
msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
|
1052 |
msgstr ""
|
1053 |
|
1054 |
-
#:
|
1055 |
msgid "WP Statistics %s installed on"
|
1056 |
msgstr ""
|
1057 |
|
1058 |
-
#:
|
1059 |
msgid "Error downloading GeoIP database from: %s - %s"
|
1060 |
msgstr "Грешка при изтегляне на базата от данни от GeoIP: %s - %s"
|
1061 |
|
1062 |
-
#:
|
1063 |
msgid "Error could not open downloaded GeoIP database for reading: %s"
|
1064 |
msgstr "Грешка не може да отвори изтегления GeoIP база данни за четене: %s"
|
1065 |
|
1066 |
-
#:
|
1067 |
msgid "Error could not open destination GeoIP database for writing %s"
|
1068 |
msgstr "Грешка не може да отвори GeoIP база данни местоназначение за писане на %s"
|
1069 |
|
1070 |
-
#:
|
1071 |
msgid "GeoIP Database updated successfully!"
|
1072 |
msgstr "GeoIP базата данни се актуализира успешно!"
|
1073 |
|
1074 |
-
#:
|
1075 |
msgid "GeoIP update on"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
-
#:
|
1079 |
msgid "Error downloading browscap database from: %s - %s"
|
1080 |
msgstr "Грешка при изтегляне на browscap база данни от: %s - %s"
|
1081 |
|
1082 |
-
#:
|
1083 |
msgid "browscap database updated successfully!"
|
1084 |
msgstr "browscap база данни, актуализирани успешно!"
|
1085 |
|
1086 |
-
#:
|
1087 |
msgid "browscap database updated failed! Cache file too large, reverting to previous browscap.ini."
|
1088 |
msgstr ""
|
1089 |
|
1090 |
-
#:
|
1091 |
msgid "browscap database updated failed! New browscap.ini is mis-identifing user agents as crawlers, reverting to previous browscap.ini."
|
1092 |
msgstr ""
|
1093 |
|
1094 |
-
#:
|
1095 |
msgid "browscap already at current version!"
|
1096 |
msgstr "browscap вече в текущата версия!"
|
1097 |
|
1098 |
-
#:
|
1099 |
msgid "Browscap.ini update on"
|
1100 |
msgstr ""
|
1101 |
|
1102 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1103 |
msgid "Quick Stats"
|
1104 |
msgstr ""
|
1105 |
|
1106 |
-
#:
|
1107 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:54
|
1108 |
msgid "Top 10 Browsers"
|
1109 |
msgstr "Топ 10 браузъри"
|
1110 |
|
1111 |
-
#:
|
1112 |
-
#:
|
1113 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:27
|
1114 |
msgid "Top 10 Countries"
|
1115 |
msgstr "Топ 10 страни"
|
1116 |
|
1117 |
-
#:
|
1118 |
msgid "Today's Visitor Map"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
-
#:
|
1122 |
-
#:
|
1123 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:8
|
1124 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:8
|
1125 |
msgid "Hit Statistics"
|
1126 |
msgstr "Удари статистика"
|
1127 |
|
1128 |
-
#:
|
1129 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:11
|
1130 |
msgid "Top 10 Pages"
|
1131 |
msgstr "Топ 10 страници"
|
1132 |
|
1133 |
-
#:
|
1134 |
-
#:
|
1135 |
-
#:
|
1136 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:39
|
1137 |
msgid "Recent Visitors"
|
1138 |
msgstr "Последните посетители"
|
1139 |
|
1140 |
-
#:
|
1141 |
-
#:
|
1142 |
-
#:
|
1143 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:13
|
1144 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:26
|
1145 |
msgid "Top Referring Sites"
|
1146 |
msgstr "Топ Препращащи сайтове"
|
1147 |
|
1148 |
-
#:
|
1149 |
-
#:
|
1150 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:76
|
1151 |
msgid "Search Engine Referrals"
|
1152 |
msgstr "Търсене двигател референции"
|
1153 |
|
1154 |
-
#:
|
1155 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:8
|
1156 |
msgid "Summary"
|
1157 |
msgstr "Резюме"
|
1158 |
|
1159 |
-
#:
|
1160 |
-
#:
|
1161 |
-
#:
|
1162 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:37
|
1163 |
msgid "Latest Search Words"
|
1164 |
msgstr "Последни думи за търсене"
|
1165 |
|
1166 |
-
#:
|
1167 |
-
#:
|
1168 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:35
|
1169 |
msgid "Top 10 Visitors Today"
|
1170 |
msgstr ""
|
1171 |
|
1172 |
-
#:
|
1173 |
msgid "Please reload the dashboard to display the content of this widget."
|
1174 |
msgstr ""
|
1175 |
|
1176 |
-
#:
|
1177 |
msgid "WP Statistics Overview"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
-
#:
|
1181 |
msgid "This post is not yet published."
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#:
|
1185 |
msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
|
1186 |
msgstr "Не може да зареди GeoIP базата данни, се уверете, че сте го изтеглили в страницата Настройки."
|
1187 |
|
1188 |
-
#:
|
1189 |
msgid "Updated %s GeoIP records in the visitors database."
|
1190 |
msgstr "Актуализиран %s GeoIP записи в базата данни на посетителите."
|
1191 |
|
1192 |
-
#:
|
1193 |
-
#:
|
1194 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:50
|
1195 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:83
|
1196 |
msgid "%s data older than %s days purged successfully."
|
1197 |
msgstr "%s данни по-стари от %s дни, прочистват успешно."
|
1198 |
|
1199 |
-
#:
|
1200 |
-
#:
|
1201 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:52
|
1202 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:85
|
1203 |
msgid "No records found to purge from %s!"
|
1204 |
msgstr "Няма намерени за продухване от %s записи!"
|
1205 |
|
1206 |
-
#:
|
1207 |
msgid "Database pruned on"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
-
#:
|
1211 |
msgid "Please select a value over 30 days."
|
1212 |
msgstr "Моля изберете стойност над 30 дни."
|
1213 |
|
1214 |
-
#:
|
1215 |
msgid "Browser Statistics"
|
1216 |
msgstr "Браузър статистика"
|
1217 |
|
1218 |
-
#:
|
1219 |
-
#:
|
1220 |
-
#:
|
1221 |
-
#:
|
1222 |
-
#:
|
1223 |
-
#:
|
1224 |
-
#:
|
1225 |
-
#:
|
1226 |
-
#:
|
1227 |
-
#:
|
1228 |
-
#:
|
1229 |
-
#:
|
1230 |
-
#:
|
1231 |
-
#:
|
1232 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:6
|
1233 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:9
|
1234 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:8
|
1235 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:7
|
1236 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:8
|
1237 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:9
|
1238 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:6
|
1239 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:11
|
1240 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:6
|
1241 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:7
|
1242 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:7
|
1243 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:6
|
1244 |
msgid "Click to toggle"
|
1245 |
msgstr "Щракнете за превключване"
|
1246 |
|
1247 |
-
#:
|
1248 |
-
#:
|
1249 |
-
#:
|
1250 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:316
|
1251 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:391
|
1252 |
msgid "Browsers"
|
1253 |
msgstr "Браузъри"
|
1254 |
|
1255 |
-
#:
|
1256 |
msgid "Browsers by type"
|
1257 |
msgstr "Браузъри по вид"
|
1258 |
|
1259 |
-
#:
|
1260 |
-
#:
|
1261 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:302
|
1262 |
msgid "Platform"
|
1263 |
msgstr "Платформа"
|
1264 |
|
1265 |
-
#:
|
1266 |
msgid "Browsers by platform"
|
1267 |
msgstr "Браузъри по платформа"
|
1268 |
|
1269 |
-
#:
|
1270 |
msgid "%s Version"
|
1271 |
msgstr "версия на %s"
|
1272 |
|
1273 |
-
#:
|
1274 |
msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
|
1275 |
msgstr "Внимание: Изключване не са в момента зададени да се отчита, по-долу резултатите може да не отразява текущата статистика!"
|
1276 |
|
1277 |
-
#:
|
1278 |
msgid "Exclusions Statistics"
|
1279 |
msgstr "Изключения статистика"
|
1280 |
|
1281 |
-
#:
|
1282 |
msgid "10 Days"
|
1283 |
msgstr "10 дни"
|
1284 |
|
1285 |
-
#:
|
1286 |
msgid "20 Days"
|
1287 |
msgstr "20 дни"
|
1288 |
|
1289 |
-
#:
|
1290 |
msgid "30 Days"
|
1291 |
msgstr "30 дни"
|
1292 |
|
1293 |
-
#:
|
1294 |
msgid "2 Months"
|
1295 |
msgstr "2 месеца"
|
1296 |
|
1297 |
-
#:
|
1298 |
msgid "3 Months"
|
1299 |
msgstr "3 месеца"
|
1300 |
|
1301 |
-
#:
|
1302 |
msgid "6 Months"
|
1303 |
msgstr "6 месеца"
|
1304 |
|
1305 |
-
#:
|
1306 |
msgid "9 Months"
|
1307 |
msgstr "9 месеца"
|
1308 |
|
1309 |
-
#:
|
1310 |
msgid "1 Year"
|
1311 |
msgstr "1 година"
|
1312 |
|
1313 |
-
#:
|
1314 |
-
msgid "Total Exclusions: %s"
|
1315 |
-
msgstr "Общо изключения: %s"
|
1316 |
-
|
1317 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:74
|
1318 |
msgid "Exclusions Statistical Chart"
|
1319 |
msgstr "Изключения статистически диаграма"
|
1320 |
|
1321 |
-
#:
|
1322 |
msgid "Excluded hits in the last"
|
1323 |
msgstr "Изключени хитове през последните"
|
1324 |
|
1325 |
-
#:
|
1326 |
-
#:
|
1327 |
-
#:
|
1328 |
-
#:
|
1329 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:55
|
1330 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:151
|
1331 |
msgid "days"
|
1332 |
msgstr "дни"
|
1333 |
|
1334 |
-
#:
|
1335 |
msgid "Number of excluded hits"
|
1336 |
msgstr "Броя на изключените хитове"
|
1337 |
|
1338 |
-
#:
|
1339 |
msgid "Hits Statistics Chart"
|
1340 |
msgstr "Хитове статистика диаграма"
|
1341 |
|
1342 |
-
#:
|
1343 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:51
|
1344 |
msgid "Hits in the last"
|
1345 |
msgstr "Хитове през последните"
|
1346 |
|
1347 |
-
#:
|
1348 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:72
|
1349 |
msgid "Number of visits and visitors"
|
1350 |
msgstr "Броят на посещенията и посетителите"
|
1351 |
|
1352 |
-
#:
|
1353 |
-
#:
|
1354 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:32
|
1355 |
msgid "Visit"
|
1356 |
msgstr "Посетете"
|
1357 |
|
1358 |
-
#:
|
1359 |
-
#:
|
1360 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:31
|
1361 |
msgid "Visitor"
|
1362 |
msgstr "Посетител"
|
1363 |
|
1364 |
-
#:
|
1365 |
msgid "Latest Search Word Statistics"
|
1366 |
msgstr "Последни Търсене дума статистика"
|
1367 |
|
1368 |
-
#:
|
1369 |
-
#:
|
1370 |
-
#:
|
1371 |
-
#:
|
1372 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:71
|
1373 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:30
|
1374 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:32
|
1375 |
msgid "#hash#"
|
1376 |
msgstr "#hash #"
|
1377 |
|
1378 |
-
#:
|
1379 |
-
#:
|
1380 |
-
#:
|
1381 |
-
#:
|
1382 |
-
#:
|
1383 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:39
|
1384 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:33
|
1385 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:113
|
1386 |
msgid "Map"
|
1387 |
msgstr "Карта"
|
1388 |
|
1389 |
-
#:
|
1390 |
-
#:
|
1391 |
-
#:
|
1392 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:198
|
1393 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
|
1394 |
msgid "Page"
|
1395 |
msgstr "Страница"
|
1396 |
|
1397 |
-
#:
|
1398 |
-
#:
|
1399 |
-
#:
|
1400 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:198
|
1401 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
|
1402 |
msgid "From"
|
1403 |
msgstr "От"
|
1404 |
|
1405 |
-
#:
|
1406 |
-
#:
|
1407 |
-
#:
|
1408 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:135
|
1409 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:294
|
1410 |
msgid "All"
|
1411 |
msgstr "Всички"
|
1412 |
|
1413 |
-
#:
|
1414 |
msgid "Recent Visitor Statistics"
|
1415 |
msgstr "Последните посетител статистика"
|
1416 |
|
1417 |
-
#:
|
1418 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:18
|
1419 |
msgid "Online Users"
|
1420 |
msgstr ""
|
1421 |
|
1422 |
-
#:
|
1423 |
msgid "Online for "
|
1424 |
msgstr ""
|
1425 |
|
1426 |
-
#:
|
1427 |
msgid "Page Trend for Post ID"
|
1428 |
msgstr "Страница тенденция за пост номер"
|
1429 |
|
1430 |
-
#:
|
1431 |
msgid "Page Trend"
|
1432 |
msgstr "Страница тенденция"
|
1433 |
|
1434 |
-
#:
|
1435 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:28
|
1436 |
msgid "Search Engine Referral Statistics"
|
1437 |
msgstr "Търсене двигател сезиране статистика"
|
1438 |
|
1439 |
-
#:
|
1440 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:55
|
1441 |
msgid "Search engine referrals in the last"
|
1442 |
msgstr "Търсене двигател референции в последните"
|
1443 |
|
1444 |
-
#:
|
1445 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:76
|
1446 |
msgid "Number of referrals"
|
1447 |
msgstr "Брой препращания"
|
1448 |
|
1449 |
-
#:
|
1450 |
-
#:
|
1451 |
-
#:
|
1452 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:66
|
1453 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:106
|
1454 |
msgid "Total"
|
1455 |
msgstr "Общо"
|
1456 |
|
1457 |
-
#:
|
1458 |
msgid "Top Countries"
|
1459 |
msgstr "Топ страни"
|
1460 |
|
1461 |
-
#:
|
1462 |
-
#:
|
1463 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:27
|
1464 |
msgid "Rank"
|
1465 |
msgstr "Ранг"
|
1466 |
|
1467 |
-
#:
|
1468 |
-
#:
|
1469 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:29
|
1470 |
msgid "Flag"
|
1471 |
msgstr "Флаг"
|
1472 |
|
1473 |
-
#:
|
1474 |
-
#:
|
1475 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:30
|
1476 |
msgid "Country"
|
1477 |
msgstr "Страна"
|
1478 |
|
1479 |
-
#:
|
1480 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:33
|
1481 |
msgid "Visitor Count"
|
1482 |
msgstr "Посетител брой"
|
1483 |
|
1484 |
-
#:
|
1485 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:149
|
1486 |
msgid "Top Pages"
|
1487 |
msgstr "Топ страници"
|
1488 |
|
1489 |
-
#:
|
1490 |
msgid "Top 5 Pages Trends"
|
1491 |
msgstr "Топ 5 страници тенденции"
|
1492 |
|
1493 |
-
#:
|
1494 |
msgid "Top 5 Page Trending Stats"
|
1495 |
msgstr "Топ 5 страница тенденция статистика"
|
1496 |
|
1497 |
-
#:
|
1498 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/page.php:61
|
1499 |
msgid "Number of Hits"
|
1500 |
msgstr "Брой посещения"
|
1501 |
|
1502 |
-
#:
|
1503 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:32
|
1504 |
msgid "No page title found"
|
1505 |
msgstr "Няма намерени заглавието на страницата"
|
1506 |
|
1507 |
-
#:
|
1508 |
-
#:
|
1509 |
-
#:
|
1510 |
-
#:
|
1511 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:127
|
1512 |
msgid "Visits"
|
1513 |
msgstr "Посещения"
|
1514 |
|
1515 |
-
#:
|
1516 |
msgid "To be added soon"
|
1517 |
msgstr "Да бъде добавена скоро"
|
1518 |
|
1519 |
-
#:
|
1520 |
msgid "Referring sites from"
|
1521 |
msgstr "Препращащи сайтове от"
|
1522 |
|
1523 |
-
#:
|
1524 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:30
|
1525 |
msgid "References"
|
1526 |
msgstr "Препратки"
|
1527 |
|
1528 |
-
#:
|
1529 |
msgid "Top 100 Visitors Today"
|
1530 |
msgstr ""
|
1531 |
|
1532 |
-
#:
|
1533 |
msgid "About WP Statistics Version %s"
|
1534 |
msgstr "За WP Statistics версия %s"
|
1535 |
|
1536 |
-
#:
|
1537 |
msgid "Website"
|
1538 |
msgstr "Уебсайт"
|
1539 |
|
1540 |
-
#:
|
1541 |
msgid "Rate and Review"
|
1542 |
msgstr "И преглед"
|
1543 |
|
1544 |
-
#:
|
1545 |
msgid "More Information"
|
1546 |
msgstr "Повече информация"
|
1547 |
|
1548 |
-
#:
|
1549 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:12
|
1550 |
msgid "This product includes GeoLite2 data created by MaxMind, available from %s."
|
1551 |
msgstr "Този продукт съдържа GeoLite2 данни, създадени от MaxMind, достъпни от %s."
|
1552 |
|
1553 |
-
#:
|
1554 |
-
#:
|
1555 |
-
#:
|
1556 |
-
#:
|
1557 |
-
#:
|
1558 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:13
|
1559 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:7
|
1560 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:8
|
1561 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:8
|
1562 |
msgid "More"
|
1563 |
msgstr "Повече"
|
1564 |
|
1565 |
-
#:
|
1566 |
msgid "Other"
|
1567 |
msgstr "Други"
|
1568 |
|
1569 |
-
#:
|
1570 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:9
|
1571 |
msgid "Today Visitors Map"
|
1572 |
msgstr "Днес посетителите карта"
|
1573 |
|
1574 |
-
#:
|
1575 |
msgid "Address"
|
1576 |
msgstr "Адрес"
|
1577 |
|
1578 |
-
#:
|
1579 |
msgid "User(s) Online"
|
1580 |
msgstr "Потребител(и) онлайн"
|
1581 |
|
1582 |
-
#:
|
1583 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:81
|
1584 |
msgid "Today"
|
1585 |
msgstr "Днес"
|
1586 |
|
1587 |
-
#:
|
1588 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:82
|
1589 |
msgid "Yesterday"
|
1590 |
msgstr "Вчера"
|
1591 |
|
1592 |
-
#:
|
1593 |
msgid "Daily Total"
|
1594 |
msgstr "Ежедневно общо"
|
1595 |
|
1596 |
-
#:
|
1597 |
msgid "Current Time and Date"
|
1598 |
msgstr "Текущия час и дата"
|
1599 |
|
1600 |
-
#:
|
1601 |
msgid "(Adjustment)"
|
1602 |
msgstr "(Корекция)"
|
1603 |
|
1604 |
-
#:
|
1605 |
msgid "Date: %s"
|
1606 |
msgstr "Дата: %s"
|
1607 |
|
1608 |
-
#:
|
1609 |
msgid "Time: %s"
|
1610 |
msgstr "Време: %s"
|
1611 |
|
1612 |
-
#:
|
1613 |
-
#:
|
1614 |
-
#:
|
1615 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:394
|
1616 |
msgid "Hits"
|
1617 |
msgstr "Посещения"
|
1618 |
|
1619 |
-
#:
|
1620 |
msgid "IP"
|
1621 |
msgstr ""
|
1622 |
|
1623 |
-
#:
|
1624 |
msgid "Agent"
|
1625 |
msgstr ""
|
1626 |
|
1627 |
-
#:
|
1628 |
-
#:
|
1629 |
msgid "Version"
|
1630 |
msgstr ""
|
1631 |
|
1632 |
-
#:
|
1633 |
-
#:
|
1634 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:5
|
1635 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:5
|
1636 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:6
|
1637 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:6
|
1638 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/manual/manual.php:5
|
1639 |
msgid "Access denied!"
|
1640 |
msgstr "Отказан достъп!"
|
1641 |
|
1642 |
-
#:
|
1643 |
msgid "%s agent data deleted successfully."
|
1644 |
msgstr "%s агент данни изтрито успешно."
|
1645 |
|
1646 |
-
#:
|
1647 |
msgid "No agent data found to remove!"
|
1648 |
msgstr ""
|
1649 |
|
1650 |
-
#:
|
1651 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:21
|
1652 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:42
|
1653 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:80
|
1654 |
msgid "Please select the desired items."
|
1655 |
msgstr "Моля изберете желаните елементи."
|
1656 |
|
1657 |
-
#:
|
1658 |
msgid "%s platform data deleted successfully."
|
1659 |
msgstr "%s платформа данни изтрито успешно."
|
1660 |
|
1661 |
-
#:
|
1662 |
msgid "No platform data found to remove!"
|
1663 |
msgstr ""
|
1664 |
|
1665 |
-
#:
|
1666 |
msgid "%s table data deleted successfully."
|
1667 |
msgstr "%s таблични данни изтрито успешно."
|
1668 |
|
1669 |
-
#:
|
1670 |
msgid "Error, %s not emptied!"
|
1671 |
msgstr "Грешка, %s не се изпразва!"
|
1672 |
|
1673 |
-
#:
|
1674 |
msgid "Database Setup"
|
1675 |
msgstr "Настройка на база данни"
|
1676 |
|
1677 |
-
#:
|
1678 |
msgid "Re-run Install"
|
1679 |
msgstr "Изпълнете отново инсталиране"
|
1680 |
|
1681 |
-
#:
|
1682 |
msgid "Install Now!"
|
1683 |
msgstr "Инсталирай сега!"
|
1684 |
|
1685 |
-
#:
|
1686 |
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."
|
1687 |
msgstr "Ако по някаква причина вашата инсталация на WP Statistics липсва таблиците в базата данни или други основни елементи, това отново ще изпълни процеса на инсталиране."
|
1688 |
|
1689 |
-
#:
|
1690 |
msgid "Database Index"
|
1691 |
msgstr "Индекс на база данни"
|
1692 |
|
1693 |
-
#:
|
1694 |
-
#:
|
1695 |
-
#:
|
1696 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:392
|
1697 |
msgid "Countries"
|
1698 |
msgstr "Страни"
|
1699 |
|
1700 |
-
#:
|
1701 |
-
#:
|
1702 |
-
#:
|
1703 |
-
#:
|
1704 |
msgid "Update Now!"
|
1705 |
msgstr "Актуализирай сега!"
|
1706 |
|
1707 |
-
#:
|
1708 |
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."
|
1709 |
msgstr "По-старите инсталации на WP Statistics позволяват дублиране на записи в таблицата на посетителите в ъгъла случай. По-новите инсталира защита срещу това с уникален индекс на масата. За да създадете индекса на на по-старите инсталира дублираните записи трябва да бъдат изтрити първи. Щракнете върху \"Update Now\" ще сканира таблицата vistitors, изтриване на дублиращи се записи и да добавите към индекса."
|
1710 |
|
1711 |
-
#:
|
1712 |
msgid "This operation could take a long time on installs with many rows in the visitors table."
|
1713 |
msgstr "Тази операция може да отнеме много време на настанявам с много редове в таблицата на посетителите."
|
1714 |
|
1715 |
-
#:
|
1716 |
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."
|
1717 |
msgstr "По-старите инсталации на WP Statistics позволяват дублиране на записи в таблицата на посетителите в ъгъла случай. По-новите инсталира защита срещу това с уникален индекс на масата."
|
1718 |
|
1719 |
-
#:
|
1720 |
-
#:
|
1721 |
msgid "Congratulations, your installation is already up to date, nothing to do."
|
1722 |
msgstr "Поздравления вашата инсталация е вече до дата, нищо общо."
|
1723 |
|
1724 |
-
#:
|
1725 |
-
#:
|
1726 |
msgid "Export"
|
1727 |
msgstr "Износ"
|
1728 |
|
1729 |
-
#:
|
1730 |
msgid "Export from"
|
1731 |
msgstr "Износ от"
|
1732 |
|
1733 |
-
#:
|
1734 |
-
#:
|
1735 |
-
#:
|
1736 |
-
#:
|
1737 |
-
#:
|
1738 |
-
#:
|
1739 |
-
#:
|
1740 |
msgid "Please select"
|
1741 |
msgstr "Моля изберете"
|
1742 |
|
1743 |
-
#:
|
1744 |
msgid "Select the table for the output file."
|
1745 |
msgstr "Изберете таблицата за изходния файл."
|
1746 |
|
1747 |
-
#:
|
1748 |
msgid "Export To"
|
1749 |
msgstr "Експортиране в"
|
1750 |
|
1751 |
-
#:
|
1752 |
msgid "Select the output file type."
|
1753 |
msgstr "Изберете типа на изходния файл."
|
1754 |
|
1755 |
-
#:
|
1756 |
msgid "Include Header Row"
|
1757 |
msgstr "Включва заглавен ред"
|
1758 |
|
1759 |
-
#:
|
1760 |
msgid "Include a header row as the first line of the exported file."
|
1761 |
msgstr "Включва заглавен ред на първия ред от експортирания файл."
|
1762 |
|
1763 |
-
#:
|
1764 |
msgid "Start Now!"
|
1765 |
msgstr "Започнете сега!"
|
1766 |
|
1767 |
-
#:
|
1768 |
msgid "Historical Values"
|
1769 |
msgstr ""
|
1770 |
|
1771 |
-
#:
|
1772 |
msgid "Note: As you have just purged the database you must reload this page for these numbers to be correct."
|
1773 |
msgstr ""
|
1774 |
|
1775 |
-
#:
|
1776 |
-
#:
|
1777 |
-
#:
|
1778 |
-
#:
|
1779 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:401
|
1780 |
msgid "Visitors"
|
1781 |
msgstr "Посетители"
|
1782 |
|
1783 |
-
#:
|
1784 |
msgid "Number of historical number of visitors to the site (current value is %s)."
|
1785 |
msgstr ""
|
1786 |
|
1787 |
-
#:
|
1788 |
msgid "Number of historical number of visits to the site (current value is %s)."
|
1789 |
msgstr ""
|
1790 |
|
1791 |
-
#:
|
1792 |
msgid "Update now!"
|
1793 |
msgstr ""
|
1794 |
|
1795 |
-
#:
|
1796 |
-
#:
|
1797 |
-
#:
|
1798 |
-
#:
|
|
|
1799 |
msgid "Are you sure?"
|
1800 |
msgstr "Сигурни ли сте?"
|
1801 |
|
1802 |
-
#:
|
1803 |
msgid "Data"
|
1804 |
msgstr "Данни"
|
1805 |
|
1806 |
-
#:
|
1807 |
msgid "Empty Table"
|
1808 |
msgstr "Празна таблица"
|
1809 |
|
1810 |
-
#:
|
1811 |
msgid "All data table will be lost."
|
1812 |
msgstr "Таблица с всички данни ще бъдат загубени."
|
1813 |
|
1814 |
-
#:
|
1815 |
msgid "Clear now!"
|
1816 |
msgstr "Изчистване сега!"
|
1817 |
|
1818 |
-
#:
|
1819 |
msgid "Purge records older than"
|
1820 |
msgstr "Изтриване на записи по-стари от"
|
1821 |
|
1822 |
-
#:
|
1823 |
msgid "Deleted user statistics data older than the selected number of days. Minimum value is 30 days."
|
1824 |
msgstr "Изтрит потребител статистика данни по-стари от определен брой дни. Минималната стойност е 30 дни."
|
1825 |
|
1826 |
-
#:
|
|
|
1827 |
msgid "Purge now!"
|
1828 |
msgstr "Чистка сега!"
|
1829 |
|
1830 |
-
#:
|
1831 |
msgid "Delete User Agent Types"
|
1832 |
msgstr "Изтриване на потребителски агент типове"
|
1833 |
|
1834 |
-
#:
|
1835 |
msgid "Delete Agents"
|
1836 |
msgstr "Изтриване на агенти"
|
1837 |
|
1838 |
-
#:
|
1839 |
msgid "All visitor data will be lost for this agent type."
|
1840 |
msgstr "Всички посетител данни ще бъдат загубени за този агент тип."
|
1841 |
|
1842 |
-
#:
|
1843 |
-
#:
|
1844 |
msgid "Delete now!"
|
1845 |
msgstr "Изтриване сега!"
|
1846 |
|
1847 |
-
#:
|
1848 |
msgid "Delete Platforms"
|
1849 |
msgstr "Изтриване на платформи"
|
1850 |
|
1851 |
-
#:
|
1852 |
msgid "All visitor data will be lost for this platform type."
|
1853 |
msgstr "Всички посетител данни ще бъдат загубени за тази платформа тип."
|
1854 |
|
1855 |
-
#:
|
1856 |
msgid "Resources"
|
1857 |
msgstr "Ресурси"
|
1858 |
|
1859 |
-
#:
|
1860 |
-
#:
|
1861 |
msgid "Memory usage in PHP"
|
1862 |
msgstr "Памет отнасяне в PHP"
|
1863 |
|
1864 |
-
#:
|
1865 |
-
#:
|
1866 |
msgid "Byte"
|
1867 |
msgstr "Байт"
|
1868 |
|
1869 |
-
#:
|
1870 |
msgid "Last Overview page memory usage"
|
1871 |
msgstr ""
|
1872 |
|
1873 |
-
#:
|
1874 |
msgid "Memory usage in the overview page"
|
1875 |
msgstr ""
|
1876 |
|
1877 |
-
#:
|
1878 |
msgid "PHP Memory Limit"
|
1879 |
msgstr "PHP памет граница"
|
1880 |
|
1881 |
-
#:
|
1882 |
msgid "The memory limit a script is allowed to consume, set in php.ini."
|
1883 |
msgstr "Памет граница скрипт е разрешено да се консумират, определени в php.ini."
|
1884 |
|
1885 |
-
#:
|
1886 |
-
#:
|
1887 |
-
#:
|
1888 |
-
#:
|
1889 |
-
#:
|
1890 |
-
#:
|
1891 |
msgid "Number of rows in the %s table"
|
1892 |
msgstr "Брой редове в таблицата на %s"
|
1893 |
|
1894 |
-
#:
|
1895 |
-
#:
|
1896 |
-
#:
|
1897 |
-
#:
|
1898 |
-
#:
|
1899 |
-
#:
|
1900 |
msgid "Row"
|
1901 |
msgstr "Ред"
|
1902 |
|
1903 |
-
#:
|
1904 |
-
#:
|
1905 |
-
#:
|
1906 |
-
#:
|
1907 |
-
#:
|
1908 |
-
#:
|
1909 |
msgid "Number of rows"
|
1910 |
msgstr "Брой редове"
|
1911 |
|
1912 |
-
#:
|
1913 |
msgid "Version Info"
|
1914 |
msgstr "Информация за версията"
|
1915 |
|
1916 |
-
#:
|
1917 |
msgid "WP Statistics Version"
|
1918 |
msgstr "Статистика на WP версия"
|
1919 |
|
1920 |
-
#:
|
1921 |
msgid "The WP Statistics version you are running."
|
1922 |
msgstr "Версията на WP Statistics, която изпълнявате."
|
1923 |
|
1924 |
-
#:
|
1925 |
msgid "PHP Version"
|
1926 |
msgstr "PHP версия"
|
1927 |
|
1928 |
-
#:
|
1929 |
msgid "The PHP version you are running."
|
1930 |
msgstr "Версията на PHP, която изпълнявате."
|
1931 |
|
1932 |
-
#:
|
1933 |
msgid "PHP Safe Mode"
|
1934 |
msgstr "PHP безопасен режим"
|
1935 |
|
1936 |
-
#:
|
1937 |
msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
|
1938 |
msgstr "Се сигурния режим на PHP активни. GeoIP код не се поддържа в безопасен режим."
|
1939 |
|
1940 |
-
#:
|
1941 |
msgid "jQuery Version"
|
1942 |
msgstr "jQuery версия"
|
1943 |
|
1944 |
-
#:
|
1945 |
msgid "The jQuery version you are running."
|
1946 |
msgstr "JQuery версия, която изпълнявате."
|
1947 |
|
1948 |
-
#:
|
1949 |
msgid "cURL Version"
|
1950 |
msgstr "Навийте версия"
|
1951 |
|
1952 |
-
#:
|
1953 |
msgid "cURL not installed"
|
1954 |
msgstr "Навийте не е инсталиран"
|
1955 |
|
1956 |
-
#:
|
1957 |
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."
|
1958 |
msgstr "PHP къдря версия на разширение, която изпълнявате. Навийте се изисква за GeoIP код, ако не е инсталиран GeoIP ще бъде забранена."
|
1959 |
|
1960 |
-
#:
|
1961 |
msgid "BC Math"
|
1962 |
msgstr "Математика ПР.н.е."
|
1963 |
|
1964 |
-
#:
|
1965 |
msgid "Installed"
|
1966 |
msgstr "Инсталирани"
|
1967 |
|
1968 |
-
#:
|
1969 |
msgid "Not installed"
|
1970 |
msgstr "Не е инсталиран"
|
1971 |
|
1972 |
-
#:
|
1973 |
msgid "If the PHP BC Math Extension is installed. BC Math is no longer required for the GeoIP code and is listed here only for historical reasons."
|
1974 |
msgstr "Ако PHP ПР.н.е математика разширението е инсталирано. ПР.н.е математика вече не е необходима за GeoIP код и е изброени тук само с исторически причини."
|
1975 |
|
1976 |
-
#:
|
1977 |
msgid "File Info"
|
1978 |
msgstr "Инфо за файла"
|
1979 |
|
1980 |
-
#:
|
1981 |
msgid "GeoIP Database"
|
1982 |
msgstr "GeoIP база данни"
|
1983 |
|
1984 |
-
#:
|
1985 |
msgid "Database file does not exist."
|
1986 |
msgstr "Файл от база данни не съществува."
|
1987 |
|
1988 |
-
#:
|
1989 |
-
#:
|
1990 |
-
#:
|
1991 |
msgid ", created on "
|
1992 |
msgstr ", създаден на "
|
1993 |
|
1994 |
-
#:
|
1995 |
msgid "The file size and date of the GeoIP database."
|
1996 |
msgstr "Размера на файла и датата на GeoIP базата данни."
|
1997 |
|
1998 |
-
#:
|
1999 |
msgid "browscap.ini File"
|
2000 |
msgstr "browscap.ini файл"
|
2001 |
|
2002 |
-
#:
|
2003 |
msgid "browscap.ini file does not exist."
|
2004 |
msgstr "browscap.ini файл не съществува."
|
2005 |
|
2006 |
-
#:
|
2007 |
msgid "The file size and date of the browscap.ini file."
|
2008 |
msgstr "Размера на файла и датата на файла browscap.ini."
|
2009 |
|
2010 |
-
#:
|
2011 |
msgid "browscap Cache File"
|
2012 |
msgstr "browscap кеш файл"
|
2013 |
|
2014 |
-
#:
|
2015 |
msgid "browscap cache file does not exist."
|
2016 |
msgstr "browscap кеш файл не съществува."
|
2017 |
|
2018 |
-
#:
|
2019 |
msgid "The file size and date of the browscap cache file."
|
2020 |
msgstr "Размера на файла и датата на кеш файла на browscap."
|
2021 |
|
2022 |
-
#:
|
2023 |
msgid "Client Info"
|
2024 |
msgstr "Информация за клиента"
|
2025 |
|
2026 |
-
#:
|
2027 |
msgid "Client IP"
|
2028 |
msgstr "Клиент IP"
|
2029 |
|
2030 |
-
#:
|
2031 |
msgid "The client IP address."
|
2032 |
msgstr "IP адреса на клиента."
|
2033 |
|
2034 |
-
#:
|
2035 |
msgid "User Agent"
|
2036 |
msgstr "Потребителски агент"
|
2037 |
|
2038 |
-
#:
|
2039 |
msgid "The client user agent string."
|
2040 |
msgstr "Клиент потребител фактор канап."
|
2041 |
|
2042 |
-
#:
|
2043 |
msgid "Browser"
|
2044 |
msgstr ""
|
2045 |
|
2046 |
-
#:
|
2047 |
msgid "The detected client browser."
|
2048 |
msgstr ""
|
2049 |
|
2050 |
-
#:
|
2051 |
msgid "The detected client browser version."
|
2052 |
msgstr ""
|
2053 |
|
2054 |
-
#:
|
2055 |
msgid "The detected client platform."
|
2056 |
msgstr ""
|
2057 |
|
2058 |
-
#:
|
2059 |
msgid "This will replace all IP addresses in the database with hash values and cannot be undo, are you sure?"
|
2060 |
msgstr "Това ще замести всички IP адреси в базата данни с хашиш стойности и не може да се отмени, сигурен ли сте?"
|
2061 |
|
2062 |
-
#:
|
2063 |
msgid "GeoIP Options"
|
2064 |
msgstr "GeoIP опции"
|
2065 |
|
2066 |
-
#:
|
2067 |
msgid "Updates any unknown location data in the database, this may take a while"
|
2068 |
msgstr "Актуализира неизвестно местоположение данни в базата данни, това може да отнеме известно време"
|
2069 |
|
2070 |
-
#:
|
2071 |
-
#:
|
2072 |
msgid "IP Addresses"
|
2073 |
msgstr "IP адреси"
|
2074 |
|
2075 |
-
#:
|
2076 |
-
#:
|
2077 |
msgid "Hash IP Addresses"
|
2078 |
msgstr "Хеш IP адреси"
|
2079 |
|
2080 |
-
#:
|
2081 |
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"
|
2082 |
msgstr "Замени IP адреси в базата данни с хашиш стойности, вие няма да можете да възстановите IP адресите в бъдеще да попълните местоположението информация след това и това може да отнеме известно време"
|
2083 |
|
2084 |
-
#:
|
2085 |
msgid "IP Addresses replaced with hash values."
|
2086 |
msgstr "IP адреси се заменят с хеш стойности."
|
2087 |
|
2088 |
-
#:
|
2089 |
msgid "Install routine complete."
|
2090 |
msgstr "Инсталиране на ежедневието пълна."
|
2091 |
|
2092 |
-
#:
|
2093 |
msgid "Resources/Information"
|
2094 |
msgstr "Ресурси/информация"
|
2095 |
|
2096 |
-
#:
|
2097 |
msgid "Purging"
|
2098 |
msgstr "Прочистване"
|
2099 |
|
2100 |
-
#:
|
2101 |
msgid "Database"
|
2102 |
msgstr "База данни"
|
2103 |
|
2104 |
-
#:
|
2105 |
msgid "Updates"
|
2106 |
msgstr "Актуализации"
|
2107 |
|
2108 |
-
#:
|
2109 |
msgid "Historical"
|
2110 |
msgstr ""
|
2111 |
|
2112 |
-
#:
|
2113 |
msgid "WP Statistics V%s"
|
2114 |
msgstr "WP Statistics V %s"
|
2115 |
|
2116 |
-
#:
|
2117 |
msgid "Visit Us Online"
|
2118 |
msgstr "Посетете ни онлайн"
|
2119 |
|
2120 |
-
#:
|
2121 |
msgid "Come visit our great new %s and keep up to date on the latest news about WP Statistics."
|
2122 |
msgstr "Елате ни голям нов %s и поддържа актуална с последните новини за WP Statistics."
|
2123 |
|
2124 |
-
#:
|
2125 |
msgid "website"
|
2126 |
msgstr "уебсайт"
|
2127 |
|
2128 |
-
#:
|
2129 |
msgid "Rate and Review at WordPress.org"
|
2130 |
msgstr "И преглед в WordPress.org"
|
2131 |
|
2132 |
-
#:
|
2133 |
msgid "Thanks for installing WP Statistics, we encourage you to submit a "
|
2134 |
msgstr "Благодаря за инсталиране на WP Statistics, ние ви препоръчваме да изпратите "
|
2135 |
|
2136 |
-
#:
|
2137 |
msgid "rating and review"
|
2138 |
msgstr "Оценка и преглед"
|
2139 |
|
2140 |
-
#:
|
2141 |
msgid "over at WordPress.org. Your feedback is greatly appreciated!"
|
2142 |
msgstr "над в WordPress.org. Вашето мнение е много оценявам!"
|
2143 |
|
2144 |
-
#:
|
2145 |
msgid "Translations"
|
2146 |
msgstr "Преводи"
|
2147 |
|
2148 |
-
#:
|
2149 |
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."
|
2150 |
msgstr "WP Statistics подкрепя интернационализацията и ние насърчаваме потребителите да представят преводи, моля посетете нашия %s да видите текущото състояние и %s, ако искате да помогне."
|
2151 |
|
2152 |
-
#:
|
2153 |
msgid "translation collaboration site"
|
2154 |
msgstr "сайт за съвместна работа на превод"
|
2155 |
|
2156 |
-
#:
|
2157 |
msgid "drop us a line"
|
2158 |
msgstr "пишете ни линия"
|
2159 |
|
2160 |
-
#:
|
2161 |
msgid "Support"
|
2162 |
msgstr "Поддръжка"
|
2163 |
|
2164 |
-
#:
|
2165 |
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:"
|
2166 |
msgstr "Ние сме съжалявам, имате проблем с WP Statistics и ние сме щастливи да помогне. Ето няколко неща, за да направите преди да се свържете с нас:"
|
2167 |
|
2168 |
-
#:
|
2169 |
-
#:
|
2170 |
msgid "Have you read the %s?"
|
2171 |
msgstr "Чели ли сте на %s?"
|
2172 |
|
2173 |
-
#:
|
2174 |
msgid "FAQs"
|
2175 |
msgstr "Често задавани въпроси"
|
2176 |
|
2177 |
-
#:
|
2178 |
msgid "manual"
|
2179 |
msgstr "ръководство"
|
2180 |
|
2181 |
-
#:
|
2182 |
msgid "Have you search the %s for a similar issue?"
|
2183 |
msgstr "Имате ли търси %s за подобен проблем?"
|
2184 |
|
2185 |
-
#:
|
2186 |
msgid "support forum"
|
2187 |
msgstr "подкрепа форум"
|
2188 |
|
2189 |
-
#:
|
2190 |
msgid "Have you search the Internet for any error messages you are receiving?"
|
2191 |
msgstr "Има ли търсене в интернет за всички съобщения за грешка, получавате?"
|
2192 |
|
2193 |
-
#:
|
2194 |
msgid "Make sure you have access to your PHP error logs."
|
2195 |
msgstr ""
|
2196 |
|
2197 |
-
#:
|
2198 |
msgid "And a few things to double-check:"
|
2199 |
msgstr "И няколко неща, за да проверете отново:"
|
2200 |
|
2201 |
-
#:
|
2202 |
msgid "How's your memory_limit in php.ini?"
|
2203 |
msgstr "Как е вашата memory_limit в php.ini?"
|
2204 |
|
2205 |
-
#:
|
2206 |
msgid "Have you tried disabling any other plugins you may have installed?"
|
2207 |
msgstr "Били ли сте опитвали Деактивирането на всички други плъгини, които сте инсталирали?"
|
2208 |
|
2209 |
-
#:
|
2210 |
msgid "Have you tried using the default WordPress theme?"
|
2211 |
msgstr "Били ли сте опитвали използване на подразбиране WordPress тема?"
|
2212 |
|
2213 |
-
#:
|
2214 |
msgid "Have you double checked the plugin settings?"
|
2215 |
msgstr "Имате ли двойно проверени настройките на плъгин?"
|
2216 |
|
2217 |
-
#:
|
2218 |
msgid "Do you have all the required PHP extensions installed?"
|
2219 |
msgstr "Имате ли всички необходими PHP разширения инсталирани?"
|
2220 |
|
2221 |
-
#:
|
2222 |
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?"
|
2223 |
msgstr "Получавате ли празни или непълни страница показва в браузъра си? Видя ли преглед на източника на страницата и проверете за фатални грешки?"
|
2224 |
|
2225 |
-
#:
|
2226 |
msgid "Have you checked your PHP and web server error logs?"
|
2227 |
msgstr "Проверихте ли вашия PHP и уеб сървър грешка логове?"
|
2228 |
|
2229 |
-
#:
|
2230 |
msgid "Still not having any luck?"
|
2231 |
msgstr "Все още не е късм?"
|
2232 |
|
2233 |
-
#:
|
2234 |
msgid "Then please open a new thread on the %s and we'll respond as soon as possible."
|
2235 |
msgstr "След това отворете нова тема на %s и ние ще отговорим възможно най-скоро."
|
2236 |
|
2237 |
-
#:
|
2238 |
msgid "WordPress.org support forum"
|
2239 |
msgstr "WordPress.org подкрепа форум"
|
2240 |
|
2241 |
-
#:
|
2242 |
msgid "Alternatively %s support is available as well."
|
2243 |
msgstr "Алтернативно %s поддръжка е наличен."
|
2244 |
|
2245 |
-
#:
|
2246 |
msgid "Farsi"
|
2247 |
msgstr "Фарси"
|
2248 |
|
2249 |
-
#:
|
2250 |
msgid "WP Statistics Honey Pot Page"
|
2251 |
msgstr ""
|
2252 |
|
2253 |
-
#:
|
2254 |
msgid "This is the honey pot for WP Statistics to use, do not delete."
|
2255 |
msgstr ""
|
2256 |
|
2257 |
-
#:
|
2258 |
msgid "Access Levels"
|
2259 |
msgstr "Нива на достъп"
|
2260 |
|
2261 |
-
#:
|
2262 |
msgid "Required user level to view WP Statistics"
|
2263 |
msgstr "Изисква ниво на потребител за да видите статистика за WP"
|
2264 |
|
2265 |
-
#:
|
2266 |
msgid "Required user level to manage WP Statistics"
|
2267 |
msgstr "Изисква потребителско ниво, за да управлявате WP Statistics"
|
2268 |
|
2269 |
-
#:
|
2270 |
msgid "See the %s for details on capability levels."
|
2271 |
msgstr "Вижте %s за повече информация на способности."
|
2272 |
|
2273 |
-
#:
|
2274 |
msgid "WordPress Roles and Capabilities page"
|
2275 |
msgstr "Страница WordPress роли и възможности"
|
2276 |
|
2277 |
-
#:
|
2278 |
msgid "Hint: manage_network = Super Admin Network, manage_options = Administrator, edit_others_posts = Editor, publish_posts = Author, edit_posts = Contributor, read = Everyone."
|
2279 |
msgstr "Съвет: manage_network = супер администратор мрежа, manage_options = администратор, edit_others_posts = редактор, publish_posts = автор, edit_posts = сътрудник, прочетете = всеки."
|
2280 |
|
2281 |
-
#:
|
2282 |
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."
|
2283 |
msgstr "Всяка една от горните casscades правата нагоре в конфигурацията по подразбиране на WordPress. Така например избора на publish_posts предоставя правото на автори, редактори, администратори и супер администратори."
|
2284 |
|
2285 |
-
#:
|
2286 |
msgid "If you need a more robust solution to delegate access you might want to look at %s in the WordPress plugin directory."
|
2287 |
msgstr "Ако имате нужда от по-силен решение за делегиране на достъп, може да искате да погледнете %s в WordPress плъгин директорията."
|
2288 |
|
2289 |
-
#:
|
2290 |
-
#:
|
2291 |
-
#:
|
2292 |
msgid "Exclusions"
|
2293 |
msgstr "Изключения"
|
2294 |
|
2295 |
-
#:
|
2296 |
msgid "Record exclusions"
|
2297 |
msgstr "Запис изключения"
|
2298 |
|
2299 |
-
#:
|
2300 |
-
#:
|
2301 |
-
#:
|
2302 |
msgid "Enable"
|
2303 |
msgstr "Разреши"
|
2304 |
|
2305 |
-
#:
|
2306 |
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."
|
2307 |
msgstr "Това ще запише всички изключени хитове в отделна таблица с причините, защо е изключен, но никаква друга информация. Това ще генерира много данни, но е полезно, ако искате да видите общия брой на посещения вашия сайт получава, не само действителен потребител посещения."
|
2308 |
|
2309 |
-
#:
|
2310 |
msgid "Exclude User Roles"
|
2311 |
msgstr "Изключване на потребителски роли"
|
2312 |
|
2313 |
-
#:
|
2314 |
-
#:
|
2315 |
-
#:
|
2316 |
-
#:
|
2317 |
msgid "Exclude"
|
2318 |
msgstr "Изключи"
|
2319 |
|
2320 |
-
#:
|
2321 |
msgid "Exclude %s role from data collection."
|
2322 |
msgstr "%S роля да изключат от събирането на данни."
|
2323 |
|
2324 |
-
#:
|
2325 |
msgid "IP/Robot Exclusions"
|
2326 |
msgstr "IP/робот изключвания"
|
2327 |
|
2328 |
-
#:
|
2329 |
msgid "Robot list"
|
2330 |
msgstr "Робот списък"
|
2331 |
|
2332 |
-
#:
|
2333 |
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."
|
2334 |
msgstr "Списък на думи, (по един на ред) за мач срещу за откриване на роботи. Записите трябва да бъдат най-малко 4 символа или те ще бъдат игнорирани."
|
2335 |
|
2336 |
-
#:
|
2337 |
msgid "Reset to Default"
|
2338 |
msgstr "Възстанови по подразбиране"
|
2339 |
|
2340 |
-
#:
|
2341 |
msgid "Force robot list update after upgrades"
|
2342 |
msgstr "Сила робот списък актуализация след ъпгрейд"
|
2343 |
|
2344 |
-
#:
|
2345 |
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."
|
2346 |
msgstr "Сила списъка на робот, за да се възстанови по подразбиране след актуализация на WP Statistics се провежда. Забележка Ако тази опция е разрешена по потребителски роботи, вие сте добавили към списъка ще бъдат загубени."
|
2347 |
|
2348 |
-
#:
|
2349 |
msgid "Robot visit threshold"
|
2350 |
msgstr ""
|
2351 |
|
2352 |
-
#:
|
2353 |
msgid "Treat visitors with more than this number of visits per day as robots. 0 = disabled."
|
2354 |
msgstr ""
|
2355 |
|
2356 |
-
#:
|
2357 |
msgid "Excluded IP address list"
|
2358 |
msgstr "Изключените IP адресен списък"
|
2359 |
|
2360 |
-
#:
|
2361 |
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."
|
2362 |
msgstr "Списък на IP адреси и подмрежа маски (по един на ред) да се изключат от статистиката колекция (192.168.0.0/24 и 192.168.0.0/255.255.255.0 формати се приемат). За да зададете IP адрес само, използвайте подмрежа стойност на 32 или 255.255.255.255."
|
2363 |
|
2364 |
-
#:
|
2365 |
msgid "Add 10.0.0.0"
|
2366 |
msgstr "Добави 10.0.0.0"
|
2367 |
|
2368 |
-
#:
|
2369 |
msgid "Add 172.16.0.0"
|
2370 |
msgstr "Добави 172.16.0.0"
|
2371 |
|
2372 |
-
#:
|
2373 |
msgid "Add 192.168.0.0"
|
2374 |
msgstr "Добави 192.168.0.0"
|
2375 |
|
2376 |
-
#:
|
2377 |
msgid "Use honey pot"
|
2378 |
msgstr ""
|
2379 |
|
2380 |
-
#:
|
2381 |
msgid "Use a honey pot page to identify robots."
|
2382 |
msgstr ""
|
2383 |
|
2384 |
-
#:
|
2385 |
msgid "Honey pot post id"
|
2386 |
msgstr ""
|
2387 |
|
2388 |
-
#:
|
2389 |
msgid "The post id to use for the honeypot page."
|
2390 |
msgstr ""
|
2391 |
|
2392 |
-
#:
|
2393 |
msgid "Create a new honey pot page"
|
2394 |
msgstr ""
|
2395 |
|
2396 |
-
#:
|
2397 |
msgid "GeoIP Exclusions"
|
2398 |
msgstr ""
|
2399 |
|
2400 |
-
#:
|
2401 |
msgid "Excluded countries list"
|
2402 |
msgstr ""
|
2403 |
|
2404 |
-
#:
|
2405 |
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."
|
2406 |
msgstr ""
|
2407 |
|
2408 |
-
#:
|
2409 |
msgid "Included countries list"
|
2410 |
msgstr ""
|
2411 |
|
2412 |
-
#:
|
2413 |
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."
|
2414 |
msgstr ""
|
2415 |
|
2416 |
-
#:
|
2417 |
msgid "Host Exclusions"
|
2418 |
msgstr ""
|
2419 |
|
2420 |
-
#:
|
2421 |
msgid "Excluded hosts list"
|
2422 |
msgstr ""
|
2423 |
|
2424 |
-
#:
|
2425 |
msgid "A list of fully qualified host names (ie. server.example.com, one per line) to exclude from statistics collection."
|
2426 |
msgstr ""
|
2427 |
|
2428 |
-
#:
|
2429 |
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."
|
2430 |
msgstr ""
|
2431 |
|
2432 |
-
#:
|
2433 |
msgid "Site URL Exclusions"
|
2434 |
msgstr "Сайт URL изключения"
|
2435 |
|
2436 |
-
#:
|
2437 |
msgid "Excluded login page"
|
2438 |
msgstr "Изключените вход страница"
|
2439 |
|
2440 |
-
#:
|
2441 |
msgid "Exclude the login page for registering as a hit."
|
2442 |
msgstr "Изключване на страницата за вход за регистриране като хит."
|
2443 |
|
2444 |
-
#:
|
2445 |
msgid "Excluded admin pages"
|
2446 |
msgstr "Изключените администратор страници"
|
2447 |
|
2448 |
-
#:
|
2449 |
msgid "Exclude the admin pages for registering as a hit."
|
2450 |
msgstr "Изключи администратор страници за регистриране като хит."
|
2451 |
|
2452 |
-
#:
|
2453 |
msgid "Excluded RSS feeds"
|
2454 |
msgstr ""
|
2455 |
|
2456 |
-
#:
|
2457 |
msgid "Exclude the RSS feeds for registering as a hit."
|
2458 |
msgstr ""
|
2459 |
|
2460 |
-
#:
|
2461 |
msgid "browscap settings"
|
2462 |
msgstr "browscap настройки"
|
2463 |
|
2464 |
-
#:
|
2465 |
msgid "browscap usage"
|
2466 |
msgstr "използване на browscap"
|
2467 |
|
2468 |
-
#:
|
2469 |
-
#:
|
2470 |
-
#:
|
2471 |
-
#:
|
2472 |
-
#:
|
2473 |
-
#:
|
2474 |
-
#:
|
2475 |
-
#:
|
2476 |
-
#:
|
2477 |
-
#:
|
2478 |
-
#:
|
2479 |
-
#:
|
2480 |
-
#:
|
2481 |
-
#:
|
2482 |
-
#:
|
2483 |
-
#:
|
2484 |
-
#:
|
2485 |
-
#:
|
2486 |
-
#:
|
2487 |
-
#:
|
2488 |
-
#:
|
2489 |
-
#:
|
2490 |
-
#:
|
2491 |
-
#:
|
2492 |
-
#:
|
2493 |
-
#:
|
2494 |
-
#:
|
2495 |
-
#:
|
2496 |
-
#:
|
|
|
|
|
2497 |
msgid "Active"
|
2498 |
msgstr "Активен"
|
2499 |
|
2500 |
-
#:
|
2501 |
msgid "The browscap database will be downloaded and used to detect robots."
|
2502 |
msgstr "Базата данни на browscap ще бъдат изтеглени и използвани за откриване на роботи."
|
2503 |
|
2504 |
-
#:
|
2505 |
msgid "Update browscap Info"
|
2506 |
msgstr "Актуализиране на browscap информация"
|
2507 |
|
2508 |
-
#:
|
2509 |
msgid "Download browscap Database"
|
2510 |
msgstr "Изтегли browscap база данни"
|
2511 |
|
2512 |
-
#:
|
2513 |
-
#:
|
2514 |
msgid "Save changes on this page to download the update."
|
2515 |
msgstr "Запишете промените на тази страница, за да изтеглите актуализацията."
|
2516 |
|
2517 |
-
#:
|
2518 |
msgid "Schedule weekly update of browscap DB"
|
2519 |
msgstr "Планиране на седмична актуализация на browscap DB"
|
2520 |
|
2521 |
-
#:
|
2522 |
-
#:
|
2523 |
msgid "Next update will be"
|
2524 |
msgstr "Следващата актуализация ще бъде"
|
2525 |
|
2526 |
-
#:
|
2527 |
msgid "Download of the browscap database will be scheduled for once a week."
|
2528 |
msgstr "Изтегляне на базата данни на browscap ще бъде насрочено за един път седмично."
|
2529 |
|
2530 |
-
#:
|
2531 |
msgid "This will delete the manual when you save the settings, are you sure?"
|
2532 |
msgstr "Това ще изтрие ръчно, когато запишете настройките, сигурен ли сте?"
|
2533 |
|
2534 |
-
#:
|
2535 |
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."
|
2536 |
msgstr "Тази функция няма да съхранява IP адреси в базата данни, но вместо това използва уникален хашиш. \"Store целия потребителски агент string\" настройка ще бъде забранена, ако тази опция е избрана. Вие няма да можете да възстановите IP адресите в бъдеще да се възстанови информацията за местоположението, ако това е разрешено."
|
2537 |
|
2538 |
-
#:
|
2539 |
msgid "Users Online"
|
2540 |
msgstr "Потребители онлайн"
|
2541 |
|
2542 |
-
#:
|
2543 |
msgid "User online"
|
2544 |
msgstr "Потребител онлайн"
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
+
#: includes/settings/tabs/wps-general.php:281
|
14 |
+
msgid "Add page title to empty search words"
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: includes/settings/tabs/wps-general.php:287
|
18 |
+
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."
|
19 |
+
msgstr ""
|
20 |
+
|
21 |
+
#: includes/settings/tabs/wps-maintenance.php:77
|
22 |
+
msgid "The number of hits required to delete the visitor. Invalid values will disable the daily maintenance (must be 10 or greater)."
|
23 |
+
msgstr ""
|
24 |
+
|
25 |
+
#: includes/settings/tabs/wps-maintenance.php:71
|
26 |
+
msgid "Prune visitors with more than"
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: includes/settings/tabs/wps-maintenance.php:65
|
30 |
+
msgid "A WP Cron job will be run daily to prune any users statistics data where the user has more than the defined number of hits in a day (aka they are probably a bot)."
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:217
|
34 |
+
msgid "Purge visitors with more than"
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:222
|
38 |
+
msgid "hits"
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:223
|
42 |
+
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."
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: includes/functions/purge-hits.php:28
|
46 |
+
msgid "No visitors found to purge."
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: includes/functions/purge-hits.php:25
|
50 |
+
msgid "%s records purged successfully."
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: ajax.php:174 includes/functions/purge-hits.php:32
|
54 |
+
msgid "Number of hits must be greater than or equal to 10!"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: shortcode.php:132
|
58 |
+
msgid "Page Visits"
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: shortcode.php:135
|
62 |
+
msgid "Page Count"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: shortcode.php:136
|
66 |
+
msgid "Comment Count"
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: shortcode.php:137
|
70 |
+
msgid "Spam Count"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: shortcode.php:138
|
74 |
+
msgid "User Count"
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: shortcode.php:139
|
78 |
+
msgid "Post Average"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: shortcode.php:140
|
82 |
+
msgid "Comment Average"
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: shortcode.php:141
|
86 |
+
msgid "User Average"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: shortcode.php:149
|
90 |
+
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: shortcode.php:153
|
94 |
+
msgid "Search Provider"
|
95 |
+
msgstr ""
|
96 |
+
|
97 |
+
#: shortcode.php:156
|
98 |
+
msgid "The search provider to get statistics on."
|
99 |
+
msgstr ""
|
100 |
+
|
101 |
+
#: shortcode.php:160
|
102 |
+
msgid "Number Format"
|
103 |
+
msgstr ""
|
104 |
+
|
105 |
+
#: shortcode.php:163
|
106 |
+
msgid "The format to display numbers in: i18n, english, none."
|
107 |
+
msgstr ""
|
108 |
+
|
109 |
+
#: shortcode.php:167
|
110 |
+
msgid "English"
|
111 |
+
msgstr ""
|
112 |
+
|
113 |
+
#: shortcode.php:168
|
114 |
+
msgid "International"
|
115 |
+
msgstr ""
|
116 |
+
|
117 |
+
#: includes/log/exclusions.php:191 includes/log/hit-statistics.php:163
|
118 |
+
msgid "Hits Statistics Summary"
|
119 |
+
msgstr ""
|
120 |
+
|
121 |
+
#: includes/log/exclusions.php:201 includes/log/hit-statistics.php:174
|
122 |
+
msgid "Chart Total"
|
123 |
+
msgstr ""
|
124 |
+
|
125 |
+
#: includes/log/exclusions.php:206 includes/log/hit-statistics.php:180
|
126 |
+
msgid "All Time Total"
|
127 |
+
msgstr ""
|
128 |
+
|
129 |
+
#: includes/log/log.php:57
|
130 |
+
msgid "Have you thought about donating to WP Statistics?"
|
131 |
+
msgstr ""
|
132 |
+
|
133 |
+
#: includes/settings/tabs/wps-about.php:20 wp-statistics.php:355
|
134 |
+
msgid "Donate"
|
135 |
+
msgstr ""
|
136 |
+
|
137 |
+
#: includes/settings/tabs/wps-about.php:24
|
138 |
+
msgid "Fell like showing us how much you enjoy WP Statistics? Drop by our %s page and show us some love!"
|
139 |
+
msgstr ""
|
140 |
+
|
141 |
+
#: includes/settings/tabs/wps-about.php:24
|
142 |
+
msgid "donation"
|
143 |
+
msgstr ""
|
144 |
+
|
145 |
+
#: includes/log/log.php:57
|
146 |
+
msgid "Donate Now!"
|
147 |
+
msgstr ""
|
148 |
+
|
149 |
+
#: includes/log/log.php:57
|
150 |
+
msgid "Close"
|
151 |
+
msgstr ""
|
152 |
+
|
153 |
+
#: shortcode.php:126
|
154 |
+
msgid "Select the statistic you wish to display."
|
155 |
+
msgstr ""
|
156 |
+
|
157 |
+
#: shortcode.php:123
|
158 |
+
msgid "Statistic"
|
159 |
+
msgstr ""
|
160 |
+
|
161 |
+
#: shortcode.php:134
|
162 |
+
msgid "Post Count"
|
163 |
+
msgstr ""
|
164 |
+
|
165 |
+
#: shortcode.php:146
|
166 |
+
msgid "Time Frame"
|
167 |
+
msgstr ""
|
168 |
+
|
169 |
+
#: includes/functions/functions.php:929
|
170 |
msgid "to"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: includes/functions/functions.php:929
|
174 |
msgid "Go"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: includes/log/top-pages.php:95
|
178 |
msgid "Rank #5"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: includes/log/top-pages.php:95
|
182 |
msgid "Rank #4"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: includes/log/top-pages.php:95
|
186 |
msgid "Rank #3"
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: includes/log/top-pages.php:95
|
190 |
msgid "Rank #1"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: includes/log/top-pages.php:95
|
194 |
msgid "Rank #2"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: includes/optimization/tabs/wps-optimization-database.php:56
|
198 |
msgid "Visits Table"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: includes/optimization/tabs/wps-optimization-database.php:70
|
202 |
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."
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: includes/optimization/tabs/wps-optimization-database.php:71
|
206 |
msgid "This operation could take a long time on installs with many rows in the visits table."
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: includes/optimization/tabs/wps-optimization-database.php:76
|
210 |
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."
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: includes/log/last-visitor.php:68
|
214 |
msgid "Filtered by"
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: includes/functions/functions.php:922 includes/functions/functions.php:925
|
|
|
218 |
msgid "Range"
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: includes/functions/functions.php:929
|
222 |
msgid "MM/DD/YYYY"
|
223 |
msgstr "MM/DD/YYYY"
|
224 |
|
225 |
+
#: includes/settings/tabs/wps-general.php:342
|
226 |
msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: includes/settings/tabs/wps-general.php:336
|
230 |
msgid "Force English"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: includes/settings/tabs/wps-general.php:331
|
234 |
msgid "Languages"
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: includes/settings/tabs/wps-access-level.php:271
|
238 |
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."
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: includes/settings/tabs/wps-access-level.php:269
|
242 |
msgid "A list of local urls (ie. /wordpress/about, one per line) to exclude from statistics collection."
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: includes/settings/tabs/wps-access-level.php:266
|
246 |
msgid "Excluded URLs list"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: includes/log/exclusions.php:24
|
250 |
msgid "Excluded URL"
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: includes/log/widgets/summary.php:66
|
254 |
msgid "Last 365 Days (Year)"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: includes/log/widgets/summary.php:60
|
258 |
msgid "Last 30 Days (Month)"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: includes/log/widgets/summary.php:54
|
262 |
msgid "Last 7 Days (Week)"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: includes/functions/functions.php:403
|
266 |
msgid "Yahoo!"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: includes/functions/functions.php:404
|
270 |
msgid "Yandex"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: includes/functions/functions.php:400
|
274 |
msgid "clearch.org"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: includes/functions/functions.php:401
|
278 |
msgid "DuckDuckGo"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: includes/functions/functions.php:399
|
282 |
msgid "Bing"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: includes/functions/functions.php:398
|
286 |
msgid "Baidu"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: editor.php:69
|
290 |
msgid "Hits in the last 20 days"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: includes/log/exclusions.php:24
|
294 |
msgid "Feeds"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: includes/log/exclusions.php:24
|
298 |
msgid "User Role"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: includes/log/exclusions.php:24
|
302 |
msgid "Login Page"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: includes/log/exclusions.php:24
|
306 |
msgid "Admin Page"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: includes/log/exclusions.php:24
|
310 |
msgid "Self Referral"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: includes/log/exclusions.php:24
|
314 |
msgid "IP Match"
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: includes/log/exclusions.php:24
|
318 |
msgid "Robot"
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: includes/log/online.php:100
|
322 |
msgid "Currently there are no users online in the site."
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: includes/log/exclusions.php:24
|
326 |
msgid "Robot Threshold"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: includes/log/exclusions.php:24
|
330 |
msgid "Honey Pot"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: includes/log/widgets/page.php:8
|
334 |
msgid "Page Trending Stats"
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: includes/log/exclusions.php:24
|
338 |
msgid "Hostname"
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: includes/settings/tabs/wps-general.php:93
|
342 |
+
#: includes/settings/tabs/wps-general.php:133
|
343 |
+
#: includes/settings/tabs/wps-general.php:149
|
344 |
+
#: includes/settings/tabs/wps-general.php:188
|
345 |
+
#: includes/settings/tabs/wps-general.php:200
|
346 |
+
#: includes/settings/tabs/wps-general.php:229
|
347 |
+
#: includes/settings/tabs/wps-notifications.php:122
|
348 |
msgid "Enable or disable this feature"
|
349 |
msgstr "Разрешаване или забраняване на тази функция"
|
350 |
|
351 |
+
#: includes/settings/tabs/wps-general.php:99
|
352 |
msgid "Check for online users every"
|
353 |
msgstr "Проверявай за онлайн потребители на всеки"
|
354 |
|
355 |
+
#: includes/settings/tabs/wps-general.php:104
|
356 |
msgid "Second"
|
357 |
msgstr "Секунда"
|
358 |
|
359 |
+
#: includes/settings/tabs/wps-general.php:105
|
360 |
msgid "Time for the check accurate online user in the site. Now: %s Second"
|
361 |
msgstr "Времето за точна проверка онлайн потребителя в сайта. Сега: %s втори"
|
362 |
|
363 |
+
#: includes/settings/tabs/wps-general.php:111
|
364 |
msgid "Record all user"
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: includes/settings/tabs/wps-general.php:117
|
368 |
msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: includes/settings/tabs/wps-general.php:155
|
372 |
msgid "Store entire user agent string"
|
373 |
msgstr "Съхранява цялата потребител фактор канап"
|
374 |
|
375 |
+
#: includes/settings/tabs/wps-general.php:161
|
376 |
msgid "Only enabled for debugging"
|
377 |
msgstr "Разрешена за отстраняване на грешки"
|
378 |
|
379 |
+
#: includes/settings/tabs/wps-general.php:167
|
380 |
msgid "Coefficient per visitor"
|
381 |
msgstr "Коефициент за потребител"
|
382 |
|
383 |
+
#: includes/settings/tabs/wps-general.php:172
|
384 |
msgid "For each visit to account for several hits. Currently %s."
|
385 |
msgstr "За всяко посещение на сметка за няколко хитове. В момента %s."
|
386 |
|
387 |
+
#: includes/settings/tabs/wps-general.php:177
|
388 |
+
#: includes/settings/tabs/wps-general.php:182 wp-statistics.php:344
|
389 |
+
#: wp-statistics.php:420
|
|
|
390 |
msgid "Pages"
|
391 |
msgstr "Страници"
|
392 |
|
393 |
+
#: includes/settings/tabs/wps-general.php:194
|
394 |
msgid "Track all pages"
|
395 |
msgstr "Проследяване на всички страници"
|
396 |
|
397 |
+
#: includes/settings/tabs/wps-general.php:209
|
398 |
msgid "Strip parameters from URI"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: includes/settings/tabs/wps-general.php:215
|
402 |
msgid "This will remove anything after the ? in a URL."
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: includes/settings/tabs/wps-general.php:223
|
406 |
msgid "Disable hits column in post/pages list"
|
407 |
msgstr "Забрани хитове колона пост/страници списък"
|
408 |
|
409 |
+
#: includes/settings/tabs/wps-general.php:234
|
410 |
msgid "Miscellaneous"
|
411 |
msgstr "Разни"
|
412 |
|
413 |
+
#: includes/settings/tabs/wps-general.php:239
|
414 |
msgid "Show stats in menu bar"
|
415 |
msgstr "Покажи статистиките в менюто"
|
416 |
|
417 |
+
#: includes/settings/tabs/wps-general.php:244
|
418 |
msgid "No"
|
419 |
msgstr "Не"
|
420 |
|
421 |
+
#: includes/settings/tabs/wps-general.php:245
|
422 |
msgid "Yes"
|
423 |
msgstr "Да"
|
424 |
|
425 |
+
#: includes/settings/tabs/wps-general.php:247
|
426 |
msgid "Show stats in admin menu bar"
|
427 |
msgstr "Покажи статистиките в админ менюто"
|
428 |
|
429 |
+
#: includes/settings/tabs/wps-general.php:253
|
430 |
msgid "Hide admin notices about non active features"
|
431 |
msgstr "Скрий администратор обявления за не са активни функции"
|
432 |
|
433 |
+
#: includes/settings/tabs/wps-general.php:259
|
434 |
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."
|
435 |
msgstr "По подразбиране WP Statistics показва предупреждение, ако някой от основните функции са забранени на всяка страница, Админ, тази опция ще забраните тези съобщения."
|
436 |
|
437 |
+
#: includes/settings/tabs/wps-general.php:265
|
438 |
msgid "Delete the manual"
|
439 |
msgstr "Изтриване на наръчника"
|
440 |
|
441 |
+
#: includes/settings/tabs/wps-general.php:271
|
442 |
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."
|
443 |
msgstr "По подразбиране WP Statistics съхранява администратор ръководство в плъгин директорията (~ 5 Мег), ако тази опция е включена тя ще бъде изтрита сега и по време на ъпгрейд в бъдеще."
|
444 |
|
445 |
+
#: includes/settings/tabs/wps-general.php:276
|
446 |
msgid "Search Engines"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: includes/settings/tabs/wps-general.php:293
|
450 |
msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
|
451 |
msgstr "Деактивирането на всички търсещи машини не е позволено, това ще доведе до всички търсещи машини са активни."
|
452 |
|
453 |
+
#: includes/settings/tabs/wps-general.php:308
|
454 |
msgid "disable"
|
455 |
msgstr "забрани"
|
456 |
|
457 |
+
#: includes/settings/tabs/wps-general.php:309
|
458 |
msgid "Disable %s from data collection and reporting."
|
459 |
msgstr "Изключете %s от събирането на данни и докладване."
|
460 |
|
461 |
+
#: includes/settings/tabs/wps-general.php:315
|
462 |
msgid "Charts"
|
463 |
msgstr "Диаграми"
|
464 |
|
465 |
+
#: includes/settings/tabs/wps-general.php:320
|
466 |
msgid "Include totals"
|
467 |
msgstr "Включва общи суми"
|
468 |
|
469 |
+
#: includes/settings/tabs/wps-general.php:326
|
470 |
msgid "Add a total line to charts with multiple values, like the search engine referrals"
|
471 |
msgstr "Добавяне на обща линия за диаграми с множество стойности, като търсене двигател референции"
|
472 |
|
473 |
+
#: includes/settings/tabs/wps-geoip.php:27
|
474 |
msgid "GeoIP settings"
|
475 |
msgstr "GeoIP настройки"
|
476 |
|
477 |
+
#: includes/settings/tabs/wps-geoip.php:32
|
478 |
msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
|
479 |
msgstr "IP местоположение услуги, предоставяни от GeoLite2 данни, създадени от MaxMind, достъпни от %s."
|
480 |
|
481 |
+
#: includes/settings/tabs/wps-geoip.php:42
|
482 |
msgid "GeoIP collection"
|
483 |
msgstr "GeoIP колекция"
|
484 |
|
485 |
+
#: includes/settings/tabs/wps-geoip.php:48
|
486 |
msgid "For get more information and location (country) from visitor, enable this feature."
|
487 |
msgstr "За да получите повече информация и местоположението (страната) от посетител, активирате тази функция."
|
488 |
|
489 |
+
#: includes/settings/tabs/wps-geoip.php:54
|
490 |
msgid "Update GeoIP Info"
|
491 |
msgstr "GeoIP информация актуализация"
|
492 |
|
493 |
+
#: includes/settings/tabs/wps-geoip.php:59
|
494 |
msgid "Download GeoIP Database"
|
495 |
msgstr "Изтегли GeoIP база данни"
|
496 |
|
497 |
+
#: includes/settings/tabs/wps-geoip.php:66
|
498 |
msgid "Schedule monthly update of GeoIP DB"
|
499 |
msgstr "Месечна актуализация график на GeoIP DB"
|
500 |
|
501 |
+
#: includes/settings/tabs/wps-geoip.php:92
|
502 |
msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
|
503 |
msgstr "Изтегляне на GeoIP базата данни ще бъде насрочено за 2 дни след първия вторник на месеца."
|
504 |
|
505 |
+
#: includes/settings/tabs/wps-geoip.php:93
|
506 |
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)."
|
507 |
msgstr "Тази опция ще изтеглите базата данни ако местните големина е по-малко от 1k, (което обикновено означава пън, която идва с приставката е все още на място)."
|
508 |
|
509 |
+
#: includes/settings/tabs/wps-geoip.php:99
|
510 |
msgid "Populate missing GeoIP after update of GeoIP DB"
|
511 |
msgstr "Попълни липсващите GeoIP след актуализация на GeoIP DB"
|
512 |
|
513 |
+
#: includes/settings/tabs/wps-geoip.php:105
|
514 |
msgid "Update any missing GeoIP data after downloading a new database."
|
515 |
msgstr "Липсващи GeoIP данни се актуализира след свалянето на нова база данни."
|
516 |
|
517 |
+
#: includes/settings/tabs/wps-geoip.php:111
|
518 |
msgid "Country code for private IP addresses"
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: includes/settings/tabs/wps-geoip.php:116
|
522 |
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."
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: includes/settings/tabs/wps-geoip.php:127
|
526 |
msgid "GeoIP collection is disabled due to the following reasons:"
|
527 |
msgstr "GeoIP колекция е забранена поради следните причини:"
|
528 |
|
529 |
+
#: includes/settings/tabs/wps-geoip.php:130
|
530 |
msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
|
531 |
msgstr "GeoIP колекция изисква PHP %s или по-горе, в момента е забранен поради инсталирани PHP версия са "
|
532 |
|
533 |
+
#: includes/settings/tabs/wps-geoip.php:135
|
534 |
msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
|
535 |
msgstr "GeoIP колекция изисква разширение на PHP къдря и тя не е заредена на вашата версия на PHP!"
|
536 |
|
537 |
+
#: includes/settings/tabs/wps-geoip.php:141
|
538 |
msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
|
539 |
msgstr "GeoIP колекция изисква ПР.н.е математика PHP продължаване и то не е заредена на вашата версия на PHP!"
|
540 |
|
541 |
+
#: includes/settings/tabs/wps-geoip.php:147
|
542 |
msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
|
543 |
msgstr "Безопасен режим PHP открити! GeoIP колекция не се поддържа на PHP защитен режим!"
|
544 |
|
545 |
+
#: includes/settings/tabs/wps-maintenance.php:20
|
546 |
msgid "This will permanently delete data from the database each day, are you sure you want to enable this option?"
|
547 |
msgstr "Това ще изтрие данни от базата данни всеки ден, наистина ли искате да разрешите тази опция?"
|
548 |
|
549 |
+
#: includes/settings/tabs/wps-maintenance.php:30
|
550 |
msgid "Database Maintenance"
|
551 |
msgstr "Поддръжка на база данни"
|
552 |
|
553 |
+
#: includes/settings/tabs/wps-maintenance.php:35
|
554 |
+
#: includes/settings/tabs/wps-maintenance.php:59
|
555 |
msgid "Run a daily WP Cron job to prune the databases"
|
556 |
msgstr "Изпълни ежедневно WP Cron работа да режеш на бази данни"
|
557 |
|
558 |
+
#: includes/settings/tabs/wps-maintenance.php:41
|
559 |
msgid "A WP Cron job will be run daily to prune any data older than a set number of days."
|
560 |
msgstr "WP Cron работни места ще се изпълнява ежедневно да се режат всякакви данни, по-стари от определен брой дни."
|
561 |
|
562 |
+
#: includes/settings/tabs/wps-maintenance.php:47
|
563 |
msgid "Prune data older than"
|
564 |
msgstr "Премахване на данните по-стари от"
|
565 |
|
566 |
+
#: includes/settings/tabs/wps-maintenance.php:52
|
567 |
msgid "Days"
|
568 |
msgstr "Дни"
|
569 |
|
570 |
+
#: includes/settings/tabs/wps-maintenance.php:53
|
571 |
msgid "The number of days to keep statistics for. Minimum value is 30 days. Invalid values will disable the daily maintenance."
|
572 |
msgstr "Броят на дните за запазване на статистика за. Минималната стойност е 30 дни. Невалидни стойности ще забрани ежедневна поддръжка."
|
573 |
|
574 |
+
#: includes/settings/tabs/wps-notifications.php:44
|
575 |
msgid "Common Report Options"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: includes/settings/tabs/wps-notifications.php:49
|
579 |
msgid "E-mail addresses"
|
580 |
msgstr "Имейл адреси"
|
581 |
|
582 |
+
#: includes/settings/tabs/wps-notifications.php:54
|
583 |
msgid "A comma separated list of e-mail addresses to send reports to."
|
584 |
msgstr ""
|
585 |
|
586 |
+
#: includes/settings/tabs/wps-notifications.php:59
|
587 |
msgid "Update Reports"
|
588 |
msgstr ""
|
589 |
|
590 |
+
#: includes/log/exclusions.php:24
|
591 |
+
#: includes/settings/tabs/wps-notifications.php:64
|
592 |
msgid "Browscap"
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: includes/settings/tabs/wps-notifications.php:70
|
596 |
msgid "Send a report whenever the browscap.ini is updated."
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: includes/log/exclusions.php:24
|
600 |
+
#: includes/settings/tabs/wps-notifications.php:76
|
601 |
+
#: includes/settings/wps-settings.php:104
|
602 |
msgid "GeoIP"
|
603 |
msgstr "GeoIP"
|
604 |
|
605 |
+
#: includes/settings/tabs/wps-notifications.php:82
|
606 |
msgid "Send a report whenever the GeoIP database is updated."
|
607 |
msgstr ""
|
608 |
|
609 |
+
#: includes/settings/tabs/wps-notifications.php:88
|
610 |
msgid "Pruning"
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: includes/settings/tabs/wps-notifications.php:94
|
614 |
msgid "Send a report whenever the pruning of database is run."
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: includes/settings/tabs/wps-notifications.php:100
|
618 |
msgid "Upgrade"
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: includes/settings/tabs/wps-notifications.php:106
|
622 |
msgid "Send a report whenever the plugin is upgraded."
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: includes/settings/tabs/wps-notifications.php:111
|
626 |
+
#: includes/settings/tabs/wps-notifications.php:116 schedule.php:199
|
|
|
627 |
msgid "Statistical reporting"
|
628 |
msgstr "Статистическата отчетност"
|
629 |
|
630 |
+
#: includes/settings/tabs/wps-notifications.php:129
|
631 |
msgid "Schedule"
|
632 |
msgstr "График"
|
633 |
|
634 |
+
#: includes/settings/tabs/wps-notifications.php:153
|
635 |
msgid "Select how often to receive statistical report."
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: includes/settings/tabs/wps-notifications.php:159
|
639 |
msgid "Send reports via"
|
640 |
msgstr "Изпрати отчетите чрез"
|
641 |
|
642 |
+
#: includes/settings/tabs/wps-notifications.php:165
|
643 |
msgid "Email"
|
644 |
msgstr "Имейл"
|
645 |
|
646 |
+
#: includes/settings/tabs/wps-notifications.php:167
|
647 |
msgid "SMS"
|
648 |
msgstr "SMS"
|
649 |
|
650 |
+
#: includes/settings/tabs/wps-notifications.php:170
|
651 |
msgid "Select delivery method for statistical report."
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: includes/settings/tabs/wps-notifications.php:173
|
655 |
msgid "Note: To send SMS text messages please install the %s plugin."
|
656 |
msgstr "Забележка: За да изпратите SMS текстови съобщения моля инсталирайте %s плъгин."
|
657 |
|
658 |
+
#: includes/settings/tabs/wps-notifications.php:173
|
659 |
msgid "WordPress SMS"
|
660 |
msgstr "WordPress SMS"
|
661 |
|
662 |
+
#: includes/settings/tabs/wps-notifications.php:180
|
663 |
msgid "Report body"
|
664 |
msgstr "Тялото на доклада"
|
665 |
|
666 |
+
#: includes/settings/tabs/wps-notifications.php:185
|
667 |
msgid "Enter the contents of the report."
|
668 |
msgstr ""
|
669 |
|
670 |
+
#: includes/settings/tabs/wps-notifications.php:187
|
671 |
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:"
|
672 |
msgstr ""
|
673 |
|
674 |
+
#: includes/settings/tabs/wps-notifications.php:188 widget.php:38
|
675 |
+
#: widget.php:245 wp-statistics.php:522
|
|
|
|
|
676 |
msgid "User Online"
|
677 |
msgstr "Онлайн потребители"
|
678 |
|
679 |
+
#: includes/settings/tabs/wps-notifications.php:189 widget.php:52
|
680 |
+
#: widget.php:251
|
|
|
681 |
msgid "Today Visitor"
|
682 |
msgstr "Днес посетителите"
|
683 |
|
684 |
+
#: includes/settings/tabs/wps-notifications.php:190 widget.php:45
|
685 |
+
#: widget.php:248
|
|
|
686 |
msgid "Today Visit"
|
687 |
msgstr "Посещения от днес"
|
688 |
|
689 |
+
#: includes/settings/tabs/wps-notifications.php:191 widget.php:66
|
690 |
+
#: widget.php:257
|
|
|
691 |
msgid "Yesterday Visitor"
|
692 |
msgstr "Вчера посетител"
|
693 |
|
694 |
+
#: includes/settings/tabs/wps-notifications.php:192 widget.php:59
|
|
|
695 |
msgid "Yesterday Visit"
|
696 |
msgstr "Вчерашни посещения"
|
697 |
|
698 |
+
#: includes/settings/tabs/wps-notifications.php:193 widget.php:101
|
699 |
+
#: widget.php:272
|
|
|
700 |
msgid "Total Visitor"
|
701 |
msgstr "Общо посетител"
|
702 |
|
703 |
+
#: includes/settings/tabs/wps-notifications.php:194 widget.php:94
|
704 |
+
#: widget.php:269
|
|
|
705 |
msgid "Total Visit"
|
706 |
msgstr "Общо посещения"
|
707 |
|
708 |
+
#: includes/settings/tabs/wps-overview-display.php:23
|
709 |
+
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:166
|
710 |
msgid "None"
|
711 |
msgstr "Няма"
|
712 |
|
713 |
+
#: includes/settings/tabs/wps-overview-display.php:24
|
714 |
msgid "Summary Statistics"
|
715 |
msgstr "Обобщена статистика"
|
716 |
|
717 |
+
#: includes/settings/tabs/wps-overview-display.php:28
|
718 |
+
#: includes/settings/wps-settings.php:108
|
719 |
msgid "About"
|
720 |
msgstr "За"
|
721 |
|
722 |
+
#: includes/settings/tabs/wps-overview-display.php:34
|
723 |
msgid "Hits Statistical Chart"
|
724 |
msgstr "Статистически диаграма хитове"
|
725 |
|
726 |
+
#: includes/settings/tabs/wps-overview-display.php:36
|
727 |
msgid "Search Engine Referrers Statistical Chart"
|
728 |
msgstr "Търсене двигател референтите статистически диаграма"
|
729 |
|
730 |
+
#: includes/settings/tabs/wps-overview-display.php:38
|
731 |
msgid "Top Pages Visited"
|
732 |
msgstr "Най-посещаваните страници"
|
733 |
|
734 |
+
#: includes/settings/tabs/wps-overview-display.php:73
|
735 |
msgid "Dashboard"
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: includes/settings/tabs/wps-overview-display.php:77
|
739 |
+
#: includes/settings/tabs/wps-overview-display.php:97
|
740 |
+
#: includes/settings/tabs/wps-overview-display.php:117
|
741 |
msgid "The following items are global to all users."
|
742 |
msgstr ""
|
743 |
|
744 |
+
#: includes/settings/tabs/wps-overview-display.php:82
|
745 |
msgid "Disable dashboard widgets"
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: includes/settings/tabs/wps-overview-display.php:88
|
749 |
msgid "Disable the dashboard widgets."
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: includes/settings/tabs/wps-overview-display.php:93
|
753 |
msgid "Page/Post Editor"
|
754 |
msgstr ""
|
755 |
|
756 |
+
#: includes/settings/tabs/wps-overview-display.php:102
|
757 |
msgid "Disable post/page editor widget"
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: includes/settings/tabs/wps-overview-display.php:108
|
761 |
msgid "Disable the page/post editor widget."
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: includes/settings/tabs/wps-overview-display.php:122
|
765 |
msgid "Map type"
|
766 |
msgstr "Тип карта"
|
767 |
|
768 |
+
#: includes/functions/functions.php:402
|
769 |
+
#: includes/settings/tabs/wps-overview-display.php:128
|
770 |
msgid "Google"
|
771 |
msgstr "Google"
|
772 |
|
773 |
+
#: includes/settings/tabs/wps-overview-display.php:128
|
774 |
msgid "JQVMap"
|
775 |
msgstr "JQVMap"
|
776 |
|
777 |
+
#: includes/settings/tabs/wps-overview-display.php:135
|
778 |
msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
|
779 |
msgstr "\"Google\" опция ще използва на Google картографска услуга да начертаете последните посетители (изисква достъп до Google)."
|
780 |
|
781 |
+
#: includes/settings/tabs/wps-overview-display.php:136
|
782 |
msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
|
783 |
msgstr "\"JQVMap\" опция ще използва JQVMap библиотека javascript картографиране да начертаете последните посетители (изисква extenral услуги)."
|
784 |
|
785 |
+
#: includes/settings/tabs/wps-overview-display.php:142
|
786 |
msgid "Disable map"
|
787 |
msgstr "Забраняване на картата"
|
788 |
|
789 |
+
#: includes/settings/tabs/wps-overview-display.php:148
|
790 |
msgid "Disable the map display"
|
791 |
msgstr "Забраняване на показването на картите"
|
792 |
|
793 |
+
#: includes/settings/tabs/wps-overview-display.php:154
|
794 |
msgid "Get country location from Google"
|
795 |
msgstr "Се страна местоположение от Google"
|
796 |
|
797 |
+
#: includes/settings/tabs/wps-overview-display.php:160
|
798 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
799 |
msgstr "Тази функция може да доведе до намаляване на производителността, когато разглеждате статистиката и е валидно, ако типът на картата е настроено на \"Google само\"."
|
800 |
|
801 |
+
#: includes/settings/tabs/wps-overview-display.php:171
|
802 |
msgid "Overview Widgets to Display"
|
803 |
msgstr ""
|
804 |
|
805 |
+
#: includes/settings/tabs/wps-overview-display.php:175
|
806 |
msgid "The following items are unique to each user. If you do not select the 'About' widget it will automatically be displayed in the last positon of column A."
|
807 |
msgstr "Следните елементи са уникални за всеки потребител. Ако не изберете \"За\" джаджа автоматично ще бъдат показани в на последните позицията на колоната A."
|
808 |
|
809 |
+
#: includes/settings/tabs/wps-overview-display.php:180
|
810 |
msgid "Slot"
|
811 |
msgstr "Слот"
|
812 |
|
813 |
+
#: includes/settings/tabs/wps-overview-display.php:184
|
814 |
msgid "Column A"
|
815 |
msgstr "Колона А"
|
816 |
|
817 |
+
#: includes/settings/tabs/wps-overview-display.php:188
|
818 |
msgid "Column B"
|
819 |
msgstr "Колона B"
|
820 |
|
821 |
+
#: includes/settings/tabs/wps-overview-display.php:194
|
822 |
msgid "Slot 1"
|
823 |
msgstr "Слот 1"
|
824 |
|
825 |
+
#: includes/settings/tabs/wps-overview-display.php:224
|
826 |
msgid "Slot 2"
|
827 |
msgstr "Слот 2"
|
828 |
|
829 |
+
#: includes/settings/tabs/wps-overview-display.php:254
|
830 |
msgid "Slot 3"
|
831 |
msgstr "Слот 3"
|
832 |
|
833 |
+
#: includes/settings/tabs/wps-overview-display.php:284
|
834 |
msgid "Slot 4"
|
835 |
msgstr "Слот 4"
|
836 |
|
837 |
+
#: includes/settings/tabs/wps-overview-display.php:314
|
838 |
msgid "Slot 5"
|
839 |
msgstr "Слот 5"
|
840 |
|
841 |
+
#: includes/settings/tabs/wps-overview-display.php:344
|
842 |
msgid "Slot 6"
|
843 |
msgstr "Слот за 6"
|
844 |
|
845 |
+
#: includes/settings/tabs/wps-overview-display.php:348
|
846 |
+
#: includes/settings/tabs/wps-overview-display.php:370
|
847 |
msgid "N/A"
|
848 |
msgstr "N/A"
|
849 |
|
850 |
+
#: includes/settings/tabs/wps-overview-display.php:366
|
851 |
msgid "Slot 7"
|
852 |
msgstr ""
|
853 |
|
854 |
+
#: includes/settings/tabs/wps-removal.php:15
|
855 |
msgid "WP Statisitcs Removal"
|
856 |
msgstr ""
|
857 |
|
858 |
+
#: includes/settings/tabs/wps-removal.php:20
|
859 |
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."
|
860 |
msgstr ""
|
861 |
|
862 |
+
#: includes/settings/tabs/wps-removal.php:23
|
863 |
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."
|
864 |
msgstr ""
|
865 |
|
866 |
+
#: includes/settings/tabs/wps-removal.php:29
|
867 |
msgid "Remove data and settings"
|
868 |
msgstr ""
|
869 |
|
870 |
+
#: includes/settings/tabs/wps-removal.php:34
|
871 |
msgid "Remove"
|
872 |
msgstr ""
|
873 |
|
874 |
+
#: includes/settings/tabs/wps-removal.php:35
|
875 |
msgid "Remove data and settings, this action cannot be undone."
|
876 |
msgstr ""
|
877 |
|
878 |
+
#: includes/settings/wps-settings.php:100
|
879 |
msgid "General"
|
880 |
msgstr "Общи"
|
881 |
|
882 |
+
#: includes/settings/wps-settings.php:101
|
883 |
msgid "Notifications"
|
884 |
msgstr ""
|
885 |
|
886 |
+
#: includes/settings/wps-settings.php:102
|
887 |
msgid "Dashboard/Overview"
|
888 |
msgstr ""
|
889 |
|
890 |
+
#: includes/settings/wps-settings.php:103
|
891 |
msgid "Access/Exclusions"
|
892 |
msgstr "Достъп/изключвания"
|
893 |
|
894 |
+
#: includes/settings/wps-settings.php:105
|
895 |
msgid "browscap"
|
896 |
msgstr "browscap"
|
897 |
|
898 |
+
#: includes/settings/wps-settings.php:106
|
899 |
msgid "Maintenance"
|
900 |
msgstr "Поддръжка"
|
901 |
|
902 |
+
#: includes/settings/wps-settings.php:107
|
903 |
msgid "Removal"
|
904 |
msgstr ""
|
905 |
|
906 |
+
#: includes/settings/tabs/wps-access-level.php:278
|
907 |
+
#: includes/settings/tabs/wps-browscap.php:81
|
908 |
+
#: includes/settings/tabs/wps-general.php:349
|
909 |
+
#: includes/settings/tabs/wps-geoip.php:158
|
910 |
+
#: includes/settings/tabs/wps-maintenance.php:84
|
911 |
+
#: includes/settings/tabs/wps-notifications.php:201
|
912 |
+
#: includes/settings/tabs/wps-overview-display.php:388
|
913 |
+
#: includes/settings/tabs/wps-removal.php:42
|
914 |
msgid "Update"
|
915 |
msgstr "Актуализация"
|
916 |
|
917 |
+
#: schedule.php:10
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
918 |
msgid "Once Weekly"
|
919 |
msgstr "Веднъж седмично"
|
920 |
|
921 |
+
#: schedule.php:17
|
922 |
msgid "Once Every 2 Weeks"
|
923 |
msgstr "Веднъж на всеки 2 седмици"
|
924 |
|
925 |
+
#: schedule.php:24
|
926 |
msgid "Once Every 4 Weeks"
|
927 |
msgstr "Веднъж на всеки 4 седмици"
|
928 |
|
929 |
+
#: widget.php:14 wp-statistics.php:335 wp-statistics.php:373
|
|
|
|
|
930 |
msgid "Statistics"
|
931 |
msgstr "Статистики"
|
932 |
|
933 |
+
#: widget.php:15
|
934 |
msgid "Show site stats in sidebar."
|
935 |
msgstr "Показване на статистика на сайт в страничната лента."
|
936 |
|
937 |
+
#: widget.php:73 widget.php:260
|
|
|
938 |
msgid "Week Visit"
|
939 |
msgstr "Седмични посещения"
|
940 |
|
941 |
+
#: widget.php:80 widget.php:263
|
|
|
942 |
msgid "Month Visit"
|
943 |
msgstr "Месечни посещения"
|
944 |
|
945 |
+
#: widget.php:87 widget.php:266
|
|
|
946 |
msgid "Years Visit"
|
947 |
msgstr "Годишни посещения"
|
948 |
|
949 |
+
#: widget.php:108 widget.php:275
|
|
|
950 |
msgid "Total Page Views"
|
951 |
msgstr "Общо изгледи на страница"
|
952 |
|
953 |
+
#: widget.php:116
|
954 |
msgid "Search Engine referred"
|
955 |
msgstr "Търсачката по"
|
956 |
|
957 |
+
#: widget.php:123 widget.php:298
|
|
|
958 |
msgid "Total Posts"
|
959 |
msgstr "Общо публикации"
|
960 |
|
961 |
+
#: widget.php:130 widget.php:301
|
|
|
962 |
msgid "Total Pages"
|
963 |
msgstr "Общо страници"
|
964 |
|
965 |
+
#: widget.php:137 widget.php:304
|
|
|
966 |
msgid "Total Comments"
|
967 |
msgstr "Общо коментари"
|
968 |
|
969 |
+
#: widget.php:144 widget.php:307
|
|
|
970 |
msgid "Total Spams"
|
971 |
msgstr "Общо спам"
|
972 |
|
973 |
+
#: widget.php:151 widget.php:310
|
|
|
974 |
msgid "Total Users"
|
975 |
msgstr "Общо потребители"
|
976 |
|
977 |
+
#: widget.php:158 widget.php:313
|
|
|
978 |
msgid "Average Posts"
|
979 |
msgstr "Средно публикации"
|
980 |
|
981 |
+
#: widget.php:165 widget.php:316
|
|
|
982 |
msgid "Average Comments"
|
983 |
msgstr "Средно коментари"
|
984 |
|
985 |
+
#: widget.php:172 widget.php:319
|
|
|
986 |
msgid "Average Users"
|
987 |
msgstr "Средно потребители"
|
988 |
|
989 |
+
#: shortcode.php:142 widget.php:179 widget.php:322
|
|
|
990 |
msgid "Last Post Date"
|
991 |
msgstr "Последно добавена публикация"
|
992 |
|
993 |
+
#: widget.php:238
|
994 |
msgid "Name"
|
995 |
msgstr "Име"
|
996 |
|
997 |
+
#: widget.php:242
|
998 |
msgid "Items"
|
999 |
msgstr "Броя"
|
1000 |
|
1001 |
+
#: widget.php:254 wp-statistics.php:547
|
|
|
1002 |
msgid "Yesterday visit"
|
1003 |
msgstr "Вчерашни посещения"
|
1004 |
|
1005 |
+
#: widget.php:278
|
1006 |
msgid "Search Engine Referred"
|
1007 |
msgstr "Търсачката по"
|
1008 |
|
1009 |
+
#: widget.php:281
|
1010 |
msgid "Select type of search engine"
|
1011 |
msgstr "Изберете тип търсачка"
|
1012 |
|
1013 |
+
#: wp-statistics.php:63
|
1014 |
msgid "ERROR: WP Statistics has detected an unsupported version of PHP, WP Statistics will not function without PHP Version "
|
1015 |
msgstr "ГРЕШКА: WP Statistics откри неподдържана версия на PHP, WP Statistics няма да функционира без PHP версия "
|
1016 |
|
1017 |
+
#: wp-statistics.php:63
|
1018 |
msgid " or higher!"
|
1019 |
msgstr "или по-висока!"
|
1020 |
|
1021 |
+
#: wp-statistics.php:63
|
1022 |
msgid "Your current PHP version is"
|
1023 |
msgstr ""
|
1024 |
|
1025 |
+
#: wp-statistics.php:79
|
1026 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1027 |
msgstr ""
|
1028 |
|
1029 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.2) #-#-#-#-#
|
1030 |
+
#. Plugin Name of the plugin/theme
|
1031 |
+
#: wp-statistics.php:37
|
1032 |
msgid "WP Statistics"
|
1033 |
msgstr "WP Statistics"
|
1034 |
|
1035 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.2) #-#-#-#-#
|
1036 |
+
#. Description of the plugin/theme
|
1037 |
+
#: wp-statistics.php:38
|
1038 |
msgid "Complete statistics for your WordPress site."
|
1039 |
msgstr "Пълна статистика за вашия сайт WordPress."
|
1040 |
|
1041 |
+
#: wp-statistics.php:130
|
1042 |
msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
|
1043 |
msgstr "Онлайн потребител, проследяване в WP Statistics не е разрешен, моля отидете на %s и го активирате."
|
1044 |
|
1045 |
+
#: wp-statistics.php:130 wp-statistics.php:133 wp-statistics.php:136
|
|
|
|
|
1046 |
msgid "setting page"
|
1047 |
msgstr "определянето страница"
|
1048 |
|
1049 |
+
#: wp-statistics.php:133
|
1050 |
msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
|
1051 |
msgstr "Хита проследяващия в WP Statistics не е разрешен, моля отидете на %s и го активирате."
|
1052 |
|
1053 |
+
#: wp-statistics.php:136
|
1054 |
msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
|
1055 |
msgstr "Посетител проследяване в WP Statistics не е разрешен, моля отидете на %s и го активирате."
|
1056 |
|
1057 |
+
#: wp-statistics.php:139
|
1058 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1059 |
msgstr "GeoIP колекция не е активен, моля отидете на %s и активирате тази функция."
|
1060 |
|
1061 |
+
#: wp-statistics.php:139
|
1062 |
msgid "Setting page > GeoIP"
|
1063 |
msgstr "Определянето страница > GeoIP"
|
1064 |
|
1065 |
+
#: wp-statistics.php:242 wp-statistics.php:354 wp-statistics.php:427
|
|
|
|
|
1066 |
msgid "Settings"
|
1067 |
msgstr "Настройки"
|
1068 |
|
1069 |
+
#: wp-statistics.php:254
|
1070 |
msgid "Click here to visit the plugin on WordPress.org"
|
1071 |
msgstr "Щракнете тук, за да посетите плъгин от WordPress.org"
|
1072 |
|
1073 |
+
#: wp-statistics.php:254
|
1074 |
msgid "Visit WordPress.org page"
|
1075 |
msgstr "Посетете страницата на WordPress.org"
|
1076 |
|
1077 |
+
#: wp-statistics.php:257
|
1078 |
msgid "Click here to rate and review this plugin on WordPress.org"
|
1079 |
msgstr "Щракнете тук, за да оцените и да преразгледа този плъгин от WordPress.org"
|
1080 |
|
1081 |
+
#: wp-statistics.php:257
|
1082 |
msgid "Rate this plugin"
|
1083 |
msgstr "Оцени този плъгин"
|
1084 |
|
1085 |
+
#: wp-statistics.php:301
|
1086 |
msgid "WP Statistics - Hits"
|
1087 |
msgstr "WP-статистика - хитове"
|
1088 |
|
1089 |
+
#: wp-statistics.php:338 wp-statistics.php:376 wp-statistics.php:414
|
|
|
|
|
1090 |
msgid "Overview"
|
1091 |
msgstr "Общ преглед"
|
1092 |
|
1093 |
+
#: wp-statistics.php:343 wp-statistics.php:419
|
|
|
1094 |
msgid "Online"
|
1095 |
msgstr ""
|
1096 |
|
1097 |
+
#: wp-statistics.php:345 wp-statistics.php:421
|
|
|
1098 |
msgid "Referrers"
|
1099 |
msgstr ""
|
1100 |
|
1101 |
+
#: shortcode.php:133 wp-statistics.php:346 wp-statistics.php:422
|
|
|
1102 |
msgid "Searches"
|
1103 |
msgstr "Търсения"
|
1104 |
|
1105 |
+
#: wp-statistics.php:347 wp-statistics.php:423
|
|
|
1106 |
msgid "Search Words"
|
1107 |
msgstr "Думи за търсене"
|
1108 |
|
1109 |
+
#: wp-statistics.php:348 wp-statistics.php:424
|
|
|
1110 |
msgid "Top Visitors Today"
|
1111 |
msgstr ""
|
1112 |
|
1113 |
+
#: wp-statistics.php:353 wp-statistics.php:426
|
|
|
1114 |
msgid "Optimization"
|
1115 |
msgstr "Оптимизация"
|
1116 |
|
1117 |
+
#: wp-statistics.php:359 wp-statistics.php:390
|
|
|
1118 |
msgid "Manual"
|
1119 |
msgstr "Ръководство"
|
1120 |
|
1121 |
+
#: wp-statistics.php:405
|
1122 |
msgid "Site"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
+
#: wp-statistics.php:406
|
1126 |
msgid "Options"
|
1127 |
msgstr ""
|
1128 |
|
1129 |
+
#: wp-statistics.php:529
|
1130 |
msgid "Today visitor"
|
1131 |
msgstr "Днес посетителите"
|
1132 |
|
1133 |
+
#: wp-statistics.php:535
|
1134 |
msgid "Today visit"
|
1135 |
msgstr "Днес, посетете"
|
1136 |
|
1137 |
+
#: wp-statistics.php:541
|
1138 |
msgid "Yesterday visitor"
|
1139 |
msgstr "Вчера посетител"
|
1140 |
|
1141 |
+
#: wp-statistics.php:553
|
1142 |
msgid "View Stats"
|
1143 |
msgstr "Преглед на статистиките"
|
1144 |
|
1145 |
+
#: wp-statistics.php:577
|
1146 |
msgid "Download ODF file"
|
1147 |
msgstr "Изтегляне на ODF файл"
|
1148 |
|
1149 |
+
#: wp-statistics.php:578
|
1150 |
msgid "Download HTML file"
|
1151 |
msgstr "Изтегли HTML файл"
|
1152 |
|
1153 |
+
#: wp-statistics.php:582
|
1154 |
msgid "Manual file not found."
|
1155 |
msgstr "Ръчно файлът не е намерен."
|
1156 |
|
1157 |
+
#: wp-statistics.php:649 wp-statistics.php:760 wp-statistics.php:794
|
|
|
|
|
1158 |
msgid "You do not have sufficient permissions to access this page."
|
1159 |
msgstr "Нямате права за тази страница"
|
1160 |
|
1161 |
+
#: wp-statistics.php:662
|
1162 |
msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
|
1163 |
msgstr ""
|
1164 |
|
1165 |
+
#: wp-statistics.php:230
|
1166 |
msgid "WP Statistics %s installed on"
|
1167 |
msgstr ""
|
1168 |
|
1169 |
+
#: wps-updates.php:34
|
1170 |
msgid "Error downloading GeoIP database from: %s - %s"
|
1171 |
msgstr "Грешка при изтегляне на базата от данни от GeoIP: %s - %s"
|
1172 |
|
1173 |
+
#: wps-updates.php:45
|
1174 |
msgid "Error could not open downloaded GeoIP database for reading: %s"
|
1175 |
msgstr "Грешка не може да отвори изтегления GeoIP база данни за четене: %s"
|
1176 |
|
1177 |
+
#: wps-updates.php:52
|
1178 |
msgid "Error could not open destination GeoIP database for writing %s"
|
1179 |
msgstr "Грешка не може да отвори GeoIP база данни местоназначение за писане на %s"
|
1180 |
|
1181 |
+
#: wps-updates.php:68
|
1182 |
msgid "GeoIP Database updated successfully!"
|
1183 |
msgstr "GeoIP базата данни се актуализира успешно!"
|
1184 |
|
1185 |
+
#: wps-updates.php:93
|
1186 |
msgid "GeoIP update on"
|
1187 |
msgstr ""
|
1188 |
|
1189 |
+
#: wps-updates.php:160
|
1190 |
msgid "Error downloading browscap database from: %s - %s"
|
1191 |
msgstr "Грешка при изтегляне на browscap база данни от: %s - %s"
|
1192 |
|
1193 |
+
#: wps-updates.php:262
|
1194 |
msgid "browscap database updated successfully!"
|
1195 |
msgstr "browscap база данни, актуализирани успешно!"
|
1196 |
|
1197 |
+
#: wps-updates.php:273
|
1198 |
msgid "browscap database updated failed! Cache file too large, reverting to previous browscap.ini."
|
1199 |
msgstr ""
|
1200 |
|
1201 |
+
#: wps-updates.php:281
|
1202 |
msgid "browscap database updated failed! New browscap.ini is mis-identifing user agents as crawlers, reverting to previous browscap.ini."
|
1203 |
msgstr ""
|
1204 |
|
1205 |
+
#: wps-updates.php:303
|
1206 |
msgid "browscap already at current version!"
|
1207 |
msgstr "browscap вече в текущата версия!"
|
1208 |
|
1209 |
+
#: wps-updates.php:316
|
1210 |
msgid "Browscap.ini update on"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.2) #-#-#-#-#
|
1214 |
+
#. Plugin URI of the plugin/theme
|
1215 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.2) #-#-#-#-#
|
1216 |
+
#. Author URI of the plugin/theme
|
1217 |
+
msgid "http://wp-statistics.com/"
|
1218 |
+
msgstr "http://WP-Statistics.com/"
|
1219 |
+
|
1220 |
+
#. Author of the plugin/theme
|
1221 |
+
msgid "Mostafa Soufi & Greg Ross"
|
1222 |
+
msgstr "Mostafa Soufi & Грег Рос"
|
1223 |
+
|
1224 |
+
#: dashboard.php:55
|
1225 |
msgid "Quick Stats"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
+
#: dashboard.php:56 includes/log/widgets/browsers.php:58
|
|
|
1229 |
msgid "Top 10 Browsers"
|
1230 |
msgstr "Топ 10 браузъри"
|
1231 |
|
1232 |
+
#: dashboard.php:57 includes/log/widgets/countries.php:11
|
1233 |
+
#: includes/settings/tabs/wps-overview-display.php:27
|
|
|
1234 |
msgid "Top 10 Countries"
|
1235 |
msgstr "Топ 10 страни"
|
1236 |
|
1237 |
+
#: dashboard.php:58
|
1238 |
msgid "Today's Visitor Map"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
+
#: dashboard.php:59 editor.php:46 includes/log/hit-statistics.php:8
|
1242 |
+
#: includes/log/widgets/hits.php:10
|
|
|
|
|
1243 |
msgid "Hit Statistics"
|
1244 |
msgstr "Удари статистика"
|
1245 |
|
1246 |
+
#: dashboard.php:60 includes/log/widgets/pages.php:14
|
|
|
1247 |
msgid "Top 10 Pages"
|
1248 |
msgstr "Топ 10 страници"
|
1249 |
|
1250 |
+
#: dashboard.php:61 includes/log/last-visitor.php:36
|
1251 |
+
#: includes/log/widgets/recent.php:10
|
1252 |
+
#: includes/settings/tabs/wps-overview-display.php:39
|
|
|
1253 |
msgid "Recent Visitors"
|
1254 |
msgstr "Последните посетители"
|
1255 |
|
1256 |
+
#: dashboard.php:62 includes/log/top-referring.php:27
|
1257 |
+
#: includes/log/top-referring.php:42 includes/log/widgets/referring.php:16
|
1258 |
+
#: includes/settings/tabs/wps-overview-display.php:26
|
|
|
|
|
1259 |
msgid "Top Referring Sites"
|
1260 |
msgstr "Топ Препращащи сайтове"
|
1261 |
|
1262 |
+
#: dashboard.php:63 includes/log/widgets/search.php:10
|
1263 |
+
#: includes/log/widgets/summary.php:89
|
|
|
1264 |
msgid "Search Engine Referrals"
|
1265 |
msgstr "Търсене двигател референции"
|
1266 |
|
1267 |
+
#: dashboard.php:64 includes/log/widgets/summary.php:8
|
|
|
1268 |
msgid "Summary"
|
1269 |
msgstr "Резюме"
|
1270 |
|
1271 |
+
#: dashboard.php:65 includes/log/last-search.php:31
|
1272 |
+
#: includes/log/widgets/words.php:11
|
1273 |
+
#: includes/settings/tabs/wps-overview-display.php:37
|
|
|
1274 |
msgid "Latest Search Words"
|
1275 |
msgstr "Последни думи за търсене"
|
1276 |
|
1277 |
+
#: dashboard.php:66 includes/log/widgets/top.visitors.php:10
|
1278 |
+
#: includes/settings/tabs/wps-overview-display.php:35
|
|
|
1279 |
msgid "Top 10 Visitors Today"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
+
#: dashboard.php:97
|
1283 |
msgid "Please reload the dashboard to display the content of this widget."
|
1284 |
msgstr ""
|
1285 |
|
1286 |
+
#: dashboard.php:138
|
1287 |
msgid "WP Statistics Overview"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
+
#: editor.php:63
|
1291 |
msgid "This post is not yet published."
|
1292 |
msgstr ""
|
1293 |
|
1294 |
+
#: includes/functions/geoip-populate.php:24
|
1295 |
msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
|
1296 |
msgstr "Не може да зареди GeoIP базата данни, се уверете, че сте го изтеглили в страницата Настройки."
|
1297 |
|
1298 |
+
#: includes/functions/geoip-populate.php:48
|
1299 |
msgid "Updated %s GeoIP records in the visitors database."
|
1300 |
msgstr "Актуализиран %s GeoIP записи в базата данни на посетителите."
|
1301 |
|
1302 |
+
#: includes/functions/purge.php:21 includes/functions/purge.php:39
|
1303 |
+
#: includes/functions/purge.php:50 includes/functions/purge.php:83
|
|
|
|
|
1304 |
msgid "%s data older than %s days purged successfully."
|
1305 |
msgstr "%s данни по-стари от %s дни, прочистват успешно."
|
1306 |
|
1307 |
+
#: includes/functions/purge.php:23 includes/functions/purge.php:41
|
1308 |
+
#: includes/functions/purge.php:52 includes/functions/purge.php:85
|
|
|
|
|
1309 |
msgid "No records found to purge from %s!"
|
1310 |
msgstr "Няма намерени за продухване от %s записи!"
|
1311 |
|
1312 |
+
#: includes/functions/purge-hits.php:45 includes/functions/purge.php:98
|
1313 |
msgid "Database pruned on"
|
1314 |
msgstr ""
|
1315 |
|
1316 |
+
#: includes/functions/purge.php:103
|
1317 |
msgid "Please select a value over 30 days."
|
1318 |
msgstr "Моля изберете стойност над 30 дни."
|
1319 |
|
1320 |
+
#: includes/log/all-browsers.php:8
|
1321 |
msgid "Browser Statistics"
|
1322 |
msgstr "Браузър статистика"
|
1323 |
|
1324 |
+
#: includes/log/all-browsers.php:14 includes/log/all-browsers.php:98
|
1325 |
+
#: includes/log/all-browsers.php:233 includes/log/exclusions.php:72
|
1326 |
+
#: includes/log/exclusions.php:190 includes/log/hit-statistics.php:26
|
1327 |
+
#: includes/log/hit-statistics.php:162 includes/log/last-search.php:64
|
1328 |
+
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1329 |
+
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1330 |
+
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1331 |
+
#: includes/log/top-referring.php:38 includes/log/widgets/about.php:7
|
1332 |
+
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1333 |
+
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1334 |
+
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1335 |
+
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:14
|
1336 |
+
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1337 |
+
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1338 |
msgid "Click to toggle"
|
1339 |
msgstr "Щракнете за превключване"
|
1340 |
|
1341 |
+
#: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
|
1342 |
+
#: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:339
|
1343 |
+
#: wp-statistics.php:415
|
|
|
|
|
1344 |
msgid "Browsers"
|
1345 |
msgstr "Браузъри"
|
1346 |
|
1347 |
+
#: includes/log/all-browsers.php:42
|
1348 |
msgid "Browsers by type"
|
1349 |
msgstr "Браузъри по вид"
|
1350 |
|
1351 |
+
#: includes/log/all-browsers.php:99 includes/log/widgets/top.visitors.php:37
|
1352 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:302
|
|
|
1353 |
msgid "Platform"
|
1354 |
msgstr "Платформа"
|
1355 |
|
1356 |
+
#: includes/log/all-browsers.php:126
|
1357 |
msgid "Browsers by platform"
|
1358 |
msgstr "Браузъри по платформа"
|
1359 |
|
1360 |
+
#: includes/log/all-browsers.php:234
|
1361 |
msgid "%s Version"
|
1362 |
msgstr "версия на %s"
|
1363 |
|
1364 |
+
#: includes/log/exclusions.php:8
|
1365 |
msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
|
1366 |
msgstr "Внимание: Изключване не са в момента зададени да се отчита, по-долу резултатите може да не отразява текущата статистика!"
|
1367 |
|
1368 |
+
#: includes/log/exclusions.php:64
|
1369 |
msgid "Exclusions Statistics"
|
1370 |
msgstr "Изключения статистика"
|
1371 |
|
1372 |
+
#: includes/functions/functions.php:879
|
1373 |
msgid "10 Days"
|
1374 |
msgstr "10 дни"
|
1375 |
|
1376 |
+
#: includes/functions/functions.php:879
|
1377 |
msgid "20 Days"
|
1378 |
msgstr "20 дни"
|
1379 |
|
1380 |
+
#: includes/functions/functions.php:879
|
1381 |
msgid "30 Days"
|
1382 |
msgstr "30 дни"
|
1383 |
|
1384 |
+
#: includes/functions/functions.php:879
|
1385 |
msgid "2 Months"
|
1386 |
msgstr "2 месеца"
|
1387 |
|
1388 |
+
#: includes/functions/functions.php:879
|
1389 |
msgid "3 Months"
|
1390 |
msgstr "3 месеца"
|
1391 |
|
1392 |
+
#: includes/functions/functions.php:879
|
1393 |
msgid "6 Months"
|
1394 |
msgstr "6 месеца"
|
1395 |
|
1396 |
+
#: includes/functions/functions.php:879
|
1397 |
msgid "9 Months"
|
1398 |
msgstr "9 месеца"
|
1399 |
|
1400 |
+
#: includes/functions/functions.php:879
|
1401 |
msgid "1 Year"
|
1402 |
msgstr "1 година"
|
1403 |
|
1404 |
+
#: includes/log/exclusions.php:73
|
|
|
|
|
|
|
|
|
1405 |
msgid "Exclusions Statistical Chart"
|
1406 |
msgstr "Изключения статистически диаграма"
|
1407 |
|
1408 |
+
#: includes/log/exclusions.php:95
|
1409 |
msgid "Excluded hits in the last"
|
1410 |
msgstr "Изключени хитове през последните"
|
1411 |
|
1412 |
+
#: includes/log/exclusions.php:95 includes/log/hit-statistics.php:65
|
1413 |
+
#: includes/log/search-statistics.php:69 includes/log/widgets/hits.php:61
|
1414 |
+
#: includes/log/widgets/search.php:59
|
1415 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:207
|
|
|
|
|
1416 |
msgid "days"
|
1417 |
msgstr "дни"
|
1418 |
|
1419 |
+
#: includes/log/exclusions.php:116
|
1420 |
msgid "Number of excluded hits"
|
1421 |
msgstr "Броя на изключените хитове"
|
1422 |
|
1423 |
+
#: includes/log/hit-statistics.php:27
|
1424 |
msgid "Hits Statistics Chart"
|
1425 |
msgstr "Хитове статистика диаграма"
|
1426 |
|
1427 |
+
#: includes/log/hit-statistics.php:65 includes/log/widgets/hits.php:61
|
|
|
1428 |
msgid "Hits in the last"
|
1429 |
msgstr "Хитове през последните"
|
1430 |
|
1431 |
+
#: includes/log/hit-statistics.php:86 includes/log/widgets/hits.php:82
|
|
|
1432 |
msgid "Number of visits and visitors"
|
1433 |
msgstr "Броят на посещенията и посетителите"
|
1434 |
|
1435 |
+
#: includes/log/hit-statistics.php:100 includes/log/hit-statistics.php:169
|
1436 |
+
#: includes/log/widgets/hits.php:96 includes/log/widgets/summary.php:38
|
|
|
1437 |
msgid "Visit"
|
1438 |
msgstr "Посетете"
|
1439 |
|
1440 |
+
#: includes/log/hit-statistics.php:100 includes/log/hit-statistics.php:170
|
1441 |
+
#: includes/log/widgets/hits.php:96 includes/log/widgets/summary.php:37
|
|
|
1442 |
msgid "Visitor"
|
1443 |
msgstr "Посетител"
|
1444 |
|
1445 |
+
#: includes/log/last-search.php:65
|
1446 |
msgid "Latest Search Word Statistics"
|
1447 |
msgstr "Последни Търсене дума статистика"
|
1448 |
|
1449 |
+
#: includes/log/last-search.php:100 includes/log/last-visitor.php:101
|
1450 |
+
#: includes/log/online.php:50 includes/log/widgets/google.map.php:84
|
1451 |
+
#: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
|
1452 |
+
#: includes/log/widgets/words.php:36
|
|
|
|
|
|
|
1453 |
msgid "#hash#"
|
1454 |
msgstr "#hash #"
|
1455 |
|
1456 |
+
#: includes/log/last-search.php:105 includes/log/last-visitor.php:106
|
1457 |
+
#: includes/log/online.php:55 includes/log/top-referring.php:71
|
1458 |
+
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:43
|
1459 |
+
#: includes/settings/tabs/wps-overview-display.php:33
|
1460 |
+
#: includes/settings/tabs/wps-overview-display.php:113
|
|
|
|
|
|
|
1461 |
msgid "Map"
|
1462 |
msgstr "Карта"
|
1463 |
|
1464 |
+
#: includes/log/last-search.php:142 includes/log/last-visitor.php:139
|
1465 |
+
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1466 |
+
#: includes/log/top-referring.php:125
|
|
|
|
|
1467 |
msgid "Page"
|
1468 |
msgstr "Страница"
|
1469 |
|
1470 |
+
#: includes/log/last-search.php:142 includes/log/last-visitor.php:139
|
1471 |
+
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1472 |
+
#: includes/log/top-referring.php:125
|
|
|
|
|
1473 |
msgid "From"
|
1474 |
msgstr "От"
|
1475 |
|
1476 |
+
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1477 |
+
#: includes/log/top-referring.php:29
|
1478 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
|
|
|
|
1479 |
msgid "All"
|
1480 |
msgstr "Всички"
|
1481 |
|
1482 |
+
#: includes/log/last-visitor.php:68
|
1483 |
msgid "Recent Visitor Statistics"
|
1484 |
msgstr "Последните посетител статистика"
|
1485 |
|
1486 |
+
#: includes/log/online.php:11 includes/log/online.php:18
|
|
|
1487 |
msgid "Online Users"
|
1488 |
msgstr ""
|
1489 |
|
1490 |
+
#: includes/log/online.php:75
|
1491 |
msgid "Online for "
|
1492 |
msgstr ""
|
1493 |
|
1494 |
+
#: includes/log/page-statistics.php:26
|
1495 |
msgid "Page Trend for Post ID"
|
1496 |
msgstr "Страница тенденция за пост номер"
|
1497 |
|
1498 |
+
#: includes/log/page-statistics.php:35
|
1499 |
msgid "Page Trend"
|
1500 |
msgstr "Страница тенденция"
|
1501 |
|
1502 |
+
#: includes/log/search-statistics.php:19 includes/log/search-statistics.php:28
|
|
|
1503 |
msgid "Search Engine Referral Statistics"
|
1504 |
msgstr "Търсене двигател сезиране статистика"
|
1505 |
|
1506 |
+
#: includes/log/search-statistics.php:69 includes/log/widgets/search.php:59
|
|
|
1507 |
msgid "Search engine referrals in the last"
|
1508 |
msgstr "Търсене двигател референции в последните"
|
1509 |
|
1510 |
+
#: includes/log/search-statistics.php:90 includes/log/widgets/search.php:80
|
|
|
1511 |
msgid "Number of referrals"
|
1512 |
msgstr "Брой препращания"
|
1513 |
|
1514 |
+
#: includes/log/exclusions.php:24 includes/log/search-statistics.php:104
|
1515 |
+
#: includes/log/widgets/search.php:94 includes/log/widgets/summary.php:72
|
1516 |
+
#: includes/log/widgets/summary.php:119
|
|
|
|
|
1517 |
msgid "Total"
|
1518 |
msgstr "Общо"
|
1519 |
|
1520 |
+
#: includes/log/top-countries.php:18
|
1521 |
msgid "Top Countries"
|
1522 |
msgstr "Топ страни"
|
1523 |
|
1524 |
+
#: includes/log/top-countries.php:30 includes/log/widgets/countries.php:30
|
1525 |
+
#: includes/log/widgets/top.visitors.php:30
|
|
|
1526 |
msgid "Rank"
|
1527 |
msgstr "Ранг"
|
1528 |
|
1529 |
+
#: includes/log/top-countries.php:31 includes/log/widgets/countries.php:31
|
1530 |
+
#: includes/log/widgets/top.visitors.php:32
|
|
|
1531 |
msgid "Flag"
|
1532 |
msgstr "Флаг"
|
1533 |
|
1534 |
+
#: includes/log/top-countries.php:32 includes/log/widgets/countries.php:32
|
1535 |
+
#: includes/log/widgets/top.visitors.php:33
|
|
|
1536 |
msgid "Country"
|
1537 |
msgstr "Страна"
|
1538 |
|
1539 |
+
#: includes/log/top-countries.php:33 includes/log/widgets/countries.php:33
|
|
|
1540 |
msgid "Visitor Count"
|
1541 |
msgstr "Посетител брой"
|
1542 |
|
1543 |
+
#: includes/log/top-pages.php:19 includes/log/top-pages.php:149
|
|
|
1544 |
msgid "Top Pages"
|
1545 |
msgstr "Топ страници"
|
1546 |
|
1547 |
+
#: includes/log/top-pages.php:29
|
1548 |
msgid "Top 5 Pages Trends"
|
1549 |
msgstr "Топ 5 страници тенденции"
|
1550 |
|
1551 |
+
#: includes/log/top-pages.php:60
|
1552 |
msgid "Top 5 Page Trending Stats"
|
1553 |
msgstr "Топ 5 страница тенденция статистика"
|
1554 |
|
1555 |
+
#: includes/log/top-pages.php:81 includes/log/widgets/page.php:63
|
|
|
1556 |
msgid "Number of Hits"
|
1557 |
msgstr "Брой посещения"
|
1558 |
|
1559 |
+
#: includes/log/top-pages.php:177 includes/log/widgets/pages.php:35
|
|
|
1560 |
msgid "No page title found"
|
1561 |
msgstr "Няма намерени заглавието на страницата"
|
1562 |
|
1563 |
+
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1564 |
+
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1565 |
+
#: includes/settings/tabs/wps-general.php:122
|
1566 |
+
#: includes/settings/tabs/wps-general.php:127 shortcode.php:130
|
|
|
1567 |
msgid "Visits"
|
1568 |
msgstr "Посещения"
|
1569 |
|
1570 |
+
#: includes/log/top-referring.php:4
|
1571 |
msgid "To be added soon"
|
1572 |
msgstr "Да бъде добавена скоро"
|
1573 |
|
1574 |
+
#: includes/log/top-referring.php:40
|
1575 |
msgid "Referring sites from"
|
1576 |
msgstr "Препращащи сайтове от"
|
1577 |
|
1578 |
+
#: includes/log/top-referring.php:110 includes/log/widgets/referring.php:34
|
|
|
1579 |
msgid "References"
|
1580 |
msgstr "Препратки"
|
1581 |
|
1582 |
+
#: includes/log/top-visitors.php:12
|
1583 |
msgid "Top 100 Visitors Today"
|
1584 |
msgstr ""
|
1585 |
|
1586 |
+
#: includes/log/widgets/about.php:8
|
1587 |
msgid "About WP Statistics Version %s"
|
1588 |
msgstr "За WP Statistics версия %s"
|
1589 |
|
1590 |
+
#: includes/log/widgets/about.php:25
|
1591 |
msgid "Website"
|
1592 |
msgstr "Уебсайт"
|
1593 |
|
1594 |
+
#: includes/log/widgets/about.php:26
|
1595 |
msgid "Rate and Review"
|
1596 |
msgstr "И преглед"
|
1597 |
|
1598 |
+
#: includes/log/widgets/about.php:30
|
1599 |
msgid "More Information"
|
1600 |
msgstr "Повече информация"
|
1601 |
|
1602 |
+
#: includes/log/widgets/about.php:39 includes/settings/tabs/wps-about.php:12
|
|
|
1603 |
msgid "This product includes GeoLite2 data created by MaxMind, available from %s."
|
1604 |
msgstr "Този продукт съдържа GeoLite2 данни, създадени от MaxMind, достъпни от %s."
|
1605 |
|
1606 |
+
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1607 |
+
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1608 |
+
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:16
|
1609 |
+
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1610 |
+
#: includes/log/widgets/words.php:11
|
|
|
|
|
|
|
|
|
1611 |
msgid "More"
|
1612 |
msgstr "Повече"
|
1613 |
|
1614 |
+
#: includes/log/widgets/browsers.php:51
|
1615 |
msgid "Other"
|
1616 |
msgstr "Други"
|
1617 |
|
1618 |
+
#: includes/log/widgets/google.map.php:9 includes/log/widgets/jqv.map.php:9
|
|
|
1619 |
msgid "Today Visitors Map"
|
1620 |
msgstr "Днес посетителите карта"
|
1621 |
|
1622 |
+
#: includes/log/widgets/referring.php:35
|
1623 |
msgid "Address"
|
1624 |
msgstr "Адрес"
|
1625 |
|
1626 |
+
#: includes/log/widgets/summary.php:26
|
1627 |
msgid "User(s) Online"
|
1628 |
msgstr "Потребител(и) онлайн"
|
1629 |
|
1630 |
+
#: includes/log/widgets/summary.php:42 includes/log/widgets/summary.php:94
|
|
|
1631 |
msgid "Today"
|
1632 |
msgstr "Днес"
|
1633 |
|
1634 |
+
#: includes/log/widgets/summary.php:48 includes/log/widgets/summary.php:95
|
|
|
1635 |
msgid "Yesterday"
|
1636 |
msgstr "Вчера"
|
1637 |
|
1638 |
+
#: includes/log/widgets/summary.php:113
|
1639 |
msgid "Daily Total"
|
1640 |
msgstr "Ежедневно общо"
|
1641 |
|
1642 |
+
#: includes/log/widgets/summary.php:132
|
1643 |
msgid "Current Time and Date"
|
1644 |
msgstr "Текущия час и дата"
|
1645 |
|
1646 |
+
#: includes/log/widgets/summary.php:132
|
1647 |
msgid "(Adjustment)"
|
1648 |
msgstr "(Корекция)"
|
1649 |
|
1650 |
+
#: includes/log/widgets/summary.php:136
|
1651 |
msgid "Date: %s"
|
1652 |
msgstr "Дата: %s"
|
1653 |
|
1654 |
+
#: includes/log/widgets/summary.php:140
|
1655 |
msgid "Time: %s"
|
1656 |
msgstr "Време: %s"
|
1657 |
|
1658 |
+
#: includes/log/widgets/top.visitors.php:31
|
1659 |
+
#: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:266
|
1660 |
+
#: wp-statistics.php:342 wp-statistics.php:418
|
|
|
1661 |
msgid "Hits"
|
1662 |
msgstr "Посещения"
|
1663 |
|
1664 |
+
#: includes/log/widgets/top.visitors.php:34
|
1665 |
msgid "IP"
|
1666 |
msgstr ""
|
1667 |
|
1668 |
+
#: includes/log/widgets/top.visitors.php:36
|
1669 |
msgid "Agent"
|
1670 |
msgstr ""
|
1671 |
|
1672 |
+
#: includes/log/widgets/top.visitors.php:38
|
1673 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:291
|
1674 |
msgid "Version"
|
1675 |
msgstr ""
|
1676 |
|
1677 |
+
#: ajax.php:41 ajax.php:71 ajax.php:125 ajax.php:150 ajax.php:180
|
1678 |
+
#: includes/optimization/wps-optimization.php:6
|
|
|
|
|
|
|
|
|
|
|
1679 |
msgid "Access denied!"
|
1680 |
msgstr "Отказан достъп!"
|
1681 |
|
1682 |
+
#: ajax.php:31
|
1683 |
msgid "%s agent data deleted successfully."
|
1684 |
msgstr "%s агент данни изтрито успешно."
|
1685 |
|
1686 |
+
#: ajax.php:34
|
1687 |
msgid "No agent data found to remove!"
|
1688 |
msgstr ""
|
1689 |
|
1690 |
+
#: ajax.php:38 ajax.php:68 ajax.php:116 ajax.php:122
|
|
|
|
|
|
|
1691 |
msgid "Please select the desired items."
|
1692 |
msgstr "Моля изберете желаните елементи."
|
1693 |
|
1694 |
+
#: ajax.php:62
|
1695 |
msgid "%s platform data deleted successfully."
|
1696 |
msgstr "%s платформа данни изтрито успешно."
|
1697 |
|
1698 |
+
#: ajax.php:65
|
1699 |
msgid "No platform data found to remove!"
|
1700 |
msgstr ""
|
1701 |
|
1702 |
+
#: includes/functions/functions.php:967
|
1703 |
msgid "%s table data deleted successfully."
|
1704 |
msgstr "%s таблични данни изтрито успешно."
|
1705 |
|
1706 |
+
#: includes/functions/functions.php:971
|
1707 |
msgid "Error, %s not emptied!"
|
1708 |
msgstr "Грешка, %s не се изпразва!"
|
1709 |
|
1710 |
+
#: includes/optimization/tabs/wps-optimization-database.php:5
|
1711 |
msgid "Database Setup"
|
1712 |
msgstr "Настройка на база данни"
|
1713 |
|
1714 |
+
#: includes/optimization/tabs/wps-optimization-database.php:10
|
1715 |
msgid "Re-run Install"
|
1716 |
msgstr "Изпълнете отново инсталиране"
|
1717 |
|
1718 |
+
#: includes/optimization/tabs/wps-optimization-database.php:14
|
1719 |
msgid "Install Now!"
|
1720 |
msgstr "Инсталирай сега!"
|
1721 |
|
1722 |
+
#: includes/optimization/tabs/wps-optimization-database.php:15
|
1723 |
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."
|
1724 |
msgstr "Ако по някаква причина вашата инсталация на WP Statistics липсва таблиците в базата данни или други основни елементи, това отново ще изпълни процеса на инсталиране."
|
1725 |
|
1726 |
+
#: includes/optimization/tabs/wps-optimization-database.php:20
|
1727 |
msgid "Database Index"
|
1728 |
msgstr "Индекс на база данни"
|
1729 |
|
1730 |
+
#: includes/optimization/tabs/wps-optimization-database.php:25
|
1731 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:21
|
1732 |
+
#: wp-statistics.php:340 wp-statistics.php:416
|
|
|
1733 |
msgid "Countries"
|
1734 |
msgstr "Страни"
|
1735 |
|
1736 |
+
#: includes/optimization/tabs/wps-optimization-database.php:39
|
1737 |
+
#: includes/optimization/tabs/wps-optimization-database.php:69
|
1738 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:25
|
1739 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:40
|
1740 |
msgid "Update Now!"
|
1741 |
msgstr "Актуализирай сега!"
|
1742 |
|
1743 |
+
#: includes/optimization/tabs/wps-optimization-database.php:40
|
1744 |
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."
|
1745 |
msgstr "По-старите инсталации на WP Statistics позволяват дублиране на записи в таблицата на посетителите в ъгъла случай. По-новите инсталира защита срещу това с уникален индекс на масата. За да създадете индекса на на по-старите инсталира дублираните записи трябва да бъдат изтрити първи. Щракнете върху \"Update Now\" ще сканира таблицата vistitors, изтриване на дублиращи се записи и да добавите към индекса."
|
1746 |
|
1747 |
+
#: includes/optimization/tabs/wps-optimization-database.php:41
|
1748 |
msgid "This operation could take a long time on installs with many rows in the visitors table."
|
1749 |
msgstr "Тази операция може да отнеме много време на настанявам с много редове в таблицата на посетителите."
|
1750 |
|
1751 |
+
#: includes/optimization/tabs/wps-optimization-database.php:46
|
1752 |
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."
|
1753 |
msgstr "По-старите инсталации на WP Statistics позволяват дублиране на записи в таблицата на посетителите в ъгъла случай. По-новите инсталира защита срещу това с уникален индекс на масата."
|
1754 |
|
1755 |
+
#: includes/optimization/tabs/wps-optimization-database.php:47
|
1756 |
+
#: includes/optimization/tabs/wps-optimization-database.php:77
|
1757 |
msgid "Congratulations, your installation is already up to date, nothing to do."
|
1758 |
msgstr "Поздравления вашата инсталация е вече до дата, нищо общо."
|
1759 |
|
1760 |
+
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1761 |
+
#: includes/optimization/wps-optimization.php:183
|
1762 |
msgid "Export"
|
1763 |
msgstr "Износ"
|
1764 |
|
1765 |
+
#: includes/optimization/tabs/wps-optimization-export.php:13
|
1766 |
msgid "Export from"
|
1767 |
msgstr "Износ от"
|
1768 |
|
1769 |
+
#: includes/optimization/tabs/wps-optimization-export.php:18
|
1770 |
+
#: includes/optimization/tabs/wps-optimization-export.php:36
|
1771 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:185
|
1772 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:241
|
1773 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:265
|
1774 |
+
#: includes/settings/tabs/wps-notifications.php:134
|
1775 |
+
#: includes/settings/tabs/wps-notifications.php:164
|
1776 |
msgid "Please select"
|
1777 |
msgstr "Моля изберете"
|
1778 |
|
1779 |
+
#: includes/optimization/tabs/wps-optimization-export.php:25
|
1780 |
msgid "Select the table for the output file."
|
1781 |
msgstr "Изберете таблицата за изходния файл."
|
1782 |
|
1783 |
+
#: includes/optimization/tabs/wps-optimization-export.php:31
|
1784 |
msgid "Export To"
|
1785 |
msgstr "Експортиране в"
|
1786 |
|
1787 |
+
#: includes/optimization/tabs/wps-optimization-export.php:42
|
1788 |
msgid "Select the output file type."
|
1789 |
msgstr "Изберете типа на изходния файл."
|
1790 |
|
1791 |
+
#: includes/optimization/tabs/wps-optimization-export.php:48
|
1792 |
msgid "Include Header Row"
|
1793 |
msgstr "Включва заглавен ред"
|
1794 |
|
1795 |
+
#: includes/optimization/tabs/wps-optimization-export.php:53
|
1796 |
msgid "Include a header row as the first line of the exported file."
|
1797 |
msgstr "Включва заглавен ред на първия ред от експортирания файл."
|
1798 |
|
1799 |
+
#: includes/optimization/tabs/wps-optimization-export.php:54
|
1800 |
msgid "Start Now!"
|
1801 |
msgstr "Започнете сега!"
|
1802 |
|
1803 |
+
#: includes/optimization/tabs/wps-optimization-historical.php:15
|
1804 |
msgid "Historical Values"
|
1805 |
msgstr ""
|
1806 |
|
1807 |
+
#: includes/optimization/tabs/wps-optimization-historical.php:20
|
1808 |
msgid "Note: As you have just purged the database you must reload this page for these numbers to be correct."
|
1809 |
msgstr ""
|
1810 |
|
1811 |
+
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1812 |
+
#: includes/settings/tabs/wps-general.php:138
|
1813 |
+
#: includes/settings/tabs/wps-general.php:143 shortcode.php:131
|
1814 |
+
#: wp-statistics.php:349 wp-statistics.php:425
|
|
|
1815 |
msgid "Visitors"
|
1816 |
msgstr "Посетители"
|
1817 |
|
1818 |
+
#: includes/optimization/tabs/wps-optimization-historical.php:31
|
1819 |
msgid "Number of historical number of visitors to the site (current value is %s)."
|
1820 |
msgstr ""
|
1821 |
|
1822 |
+
#: includes/optimization/tabs/wps-optimization-historical.php:42
|
1823 |
msgid "Number of historical number of visits to the site (current value is %s)."
|
1824 |
msgstr ""
|
1825 |
|
1826 |
+
#: includes/optimization/tabs/wps-optimization-historical.php:48
|
1827 |
msgid "Update now!"
|
1828 |
msgstr ""
|
1829 |
|
1830 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:10
|
1831 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:43
|
1832 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:75
|
1833 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:107
|
1834 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:141
|
1835 |
msgid "Are you sure?"
|
1836 |
msgstr "Сигурни ли сте?"
|
1837 |
|
1838 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:175
|
1839 |
msgid "Data"
|
1840 |
msgstr "Данни"
|
1841 |
|
1842 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:180
|
1843 |
msgid "Empty Table"
|
1844 |
msgstr "Празна таблица"
|
1845 |
|
1846 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:193
|
1847 |
msgid "All data table will be lost."
|
1848 |
msgstr "Таблица с всички данни ще бъдат загубени."
|
1849 |
|
1850 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:194
|
1851 |
msgid "Clear now!"
|
1852 |
msgstr "Изчистване сега!"
|
1853 |
|
1854 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:202
|
1855 |
msgid "Purge records older than"
|
1856 |
msgstr "Изтриване на записи по-стари от"
|
1857 |
|
1858 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:208
|
1859 |
msgid "Deleted user statistics data older than the selected number of days. Minimum value is 30 days."
|
1860 |
msgstr "Изтрит потребител статистика данни по-стари от определен брой дни. Минималната стойност е 30 дни."
|
1861 |
|
1862 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:209
|
1863 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:224
|
1864 |
msgid "Purge now!"
|
1865 |
msgstr "Чистка сега!"
|
1866 |
|
1867 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:231
|
1868 |
msgid "Delete User Agent Types"
|
1869 |
msgstr "Изтриване на потребителски агент типове"
|
1870 |
|
1871 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:236
|
1872 |
msgid "Delete Agents"
|
1873 |
msgstr "Изтриване на агенти"
|
1874 |
|
1875 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:251
|
1876 |
msgid "All visitor data will be lost for this agent type."
|
1877 |
msgstr "Всички посетител данни ще бъдат загубени за този агент тип."
|
1878 |
|
1879 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:252
|
1880 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:276
|
1881 |
msgid "Delete now!"
|
1882 |
msgstr "Изтриване сега!"
|
1883 |
|
1884 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:260
|
1885 |
msgid "Delete Platforms"
|
1886 |
msgstr "Изтриване на платформи"
|
1887 |
|
1888 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:275
|
1889 |
msgid "All visitor data will be lost for this platform type."
|
1890 |
msgstr "Всички посетител данни ще бъдат загубени за тази платформа тип."
|
1891 |
|
1892 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:17
|
1893 |
msgid "Resources"
|
1894 |
msgstr "Ресурси"
|
1895 |
|
1896 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:22
|
1897 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:27
|
1898 |
msgid "Memory usage in PHP"
|
1899 |
msgstr "Памет отнасяне в PHP"
|
1900 |
|
1901 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:26
|
1902 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:37
|
1903 |
msgid "Byte"
|
1904 |
msgstr "Байт"
|
1905 |
|
1906 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:33
|
1907 |
msgid "Last Overview page memory usage"
|
1908 |
msgstr ""
|
1909 |
|
1910 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:38
|
1911 |
msgid "Memory usage in the overview page"
|
1912 |
msgstr ""
|
1913 |
|
1914 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:44
|
1915 |
msgid "PHP Memory Limit"
|
1916 |
msgstr "PHP памет граница"
|
1917 |
|
1918 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:49
|
1919 |
msgid "The memory limit a script is allowed to consume, set in php.ini."
|
1920 |
msgstr "Памет граница скрипт е разрешено да се консумират, определени в php.ini."
|
1921 |
|
1922 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:55
|
1923 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:66
|
1924 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:77
|
1925 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:88
|
1926 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:99
|
1927 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:110
|
1928 |
msgid "Number of rows in the %s table"
|
1929 |
msgstr "Брой редове в таблицата на %s"
|
1930 |
|
1931 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:59
|
1932 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:70
|
1933 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:81
|
1934 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:92
|
1935 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:103
|
1936 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:114
|
1937 |
msgid "Row"
|
1938 |
msgstr "Ред"
|
1939 |
|
1940 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:60
|
1941 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:71
|
1942 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:82
|
1943 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:93
|
1944 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:104
|
1945 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:115
|
1946 |
msgid "Number of rows"
|
1947 |
msgstr "Брой редове"
|
1948 |
|
1949 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:120
|
1950 |
msgid "Version Info"
|
1951 |
msgstr "Информация за версията"
|
1952 |
|
1953 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:125
|
1954 |
msgid "WP Statistics Version"
|
1955 |
msgstr "Статистика на WP версия"
|
1956 |
|
1957 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:130
|
1958 |
msgid "The WP Statistics version you are running."
|
1959 |
msgstr "Версията на WP Statistics, която изпълнявате."
|
1960 |
|
1961 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:136
|
1962 |
msgid "PHP Version"
|
1963 |
msgstr "PHP версия"
|
1964 |
|
1965 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:141
|
1966 |
msgid "The PHP version you are running."
|
1967 |
msgstr "Версията на PHP, която изпълнявате."
|
1968 |
|
1969 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:147
|
1970 |
msgid "PHP Safe Mode"
|
1971 |
msgstr "PHP безопасен режим"
|
1972 |
|
1973 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:152
|
1974 |
msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
|
1975 |
msgstr "Се сигурния режим на PHP активни. GeoIP код не се поддържа в безопасен режим."
|
1976 |
|
1977 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:158
|
1978 |
msgid "jQuery Version"
|
1979 |
msgstr "jQuery версия"
|
1980 |
|
1981 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:163
|
1982 |
msgid "The jQuery version you are running."
|
1983 |
msgstr "JQuery версия, която изпълнявате."
|
1984 |
|
1985 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:169
|
1986 |
msgid "cURL Version"
|
1987 |
msgstr "Навийте версия"
|
1988 |
|
1989 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:173
|
1990 |
msgid "cURL not installed"
|
1991 |
msgstr "Навийте не е инсталиран"
|
1992 |
|
1993 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:174
|
1994 |
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."
|
1995 |
msgstr "PHP къдря версия на разширение, която изпълнявате. Навийте се изисква за GeoIP код, ако не е инсталиран GeoIP ще бъде забранена."
|
1996 |
|
1997 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:180
|
1998 |
msgid "BC Math"
|
1999 |
msgstr "Математика ПР.н.е."
|
2000 |
|
2001 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:184
|
2002 |
msgid "Installed"
|
2003 |
msgstr "Инсталирани"
|
2004 |
|
2005 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:184
|
2006 |
msgid "Not installed"
|
2007 |
msgstr "Не е инсталиран"
|
2008 |
|
2009 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:185
|
2010 |
msgid "If the PHP BC Math Extension is installed. BC Math is no longer required for the GeoIP code and is listed here only for historical reasons."
|
2011 |
msgstr "Ако PHP ПР.н.е математика разширението е инсталирано. ПР.н.е математика вече не е необходима за GeoIP код и е изброени тук само с исторически причини."
|
2012 |
|
2013 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:190
|
2014 |
msgid "File Info"
|
2015 |
msgstr "Инфо за файла"
|
2016 |
|
2017 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:195
|
2018 |
msgid "GeoIP Database"
|
2019 |
msgstr "GeoIP база данни"
|
2020 |
|
2021 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:204
|
2022 |
msgid "Database file does not exist."
|
2023 |
msgstr "Файл от база данни не съществува."
|
2024 |
|
2025 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:206
|
2026 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:225
|
2027 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:244
|
2028 |
msgid ", created on "
|
2029 |
msgstr ", създаден на "
|
2030 |
|
2031 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:208
|
2032 |
msgid "The file size and date of the GeoIP database."
|
2033 |
msgstr "Размера на файла и датата на GeoIP базата данни."
|
2034 |
|
2035 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:214
|
2036 |
msgid "browscap.ini File"
|
2037 |
msgstr "browscap.ini файл"
|
2038 |
|
2039 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:223
|
2040 |
msgid "browscap.ini file does not exist."
|
2041 |
msgstr "browscap.ini файл не съществува."
|
2042 |
|
2043 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:227
|
2044 |
msgid "The file size and date of the browscap.ini file."
|
2045 |
msgstr "Размера на файла и датата на файла browscap.ini."
|
2046 |
|
2047 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:233
|
2048 |
msgid "browscap Cache File"
|
2049 |
msgstr "browscap кеш файл"
|
2050 |
|
2051 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:242
|
2052 |
msgid "browscap cache file does not exist."
|
2053 |
msgstr "browscap кеш файл не съществува."
|
2054 |
|
2055 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:246
|
2056 |
msgid "The file size and date of the browscap cache file."
|
2057 |
msgstr "Размера на файла и датата на кеш файла на browscap."
|
2058 |
|
2059 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:251
|
2060 |
msgid "Client Info"
|
2061 |
msgstr "Информация за клиента"
|
2062 |
|
2063 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:256
|
2064 |
msgid "Client IP"
|
2065 |
msgstr "Клиент IP"
|
2066 |
|
2067 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:261
|
2068 |
msgid "The client IP address."
|
2069 |
msgstr "IP адреса на клиента."
|
2070 |
|
2071 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:267
|
2072 |
msgid "User Agent"
|
2073 |
msgstr "Потребителски агент"
|
2074 |
|
2075 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:272
|
2076 |
msgid "The client user agent string."
|
2077 |
msgstr "Клиент потребител фактор канап."
|
2078 |
|
2079 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:278
|
2080 |
msgid "Browser"
|
2081 |
msgstr ""
|
2082 |
|
2083 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:285
|
2084 |
msgid "The detected client browser."
|
2085 |
msgstr ""
|
2086 |
|
2087 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:296
|
2088 |
msgid "The detected client browser version."
|
2089 |
msgstr ""
|
2090 |
|
2091 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:307
|
2092 |
msgid "The detected client platform."
|
2093 |
msgstr ""
|
2094 |
|
2095 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:4
|
2096 |
msgid "This will replace all IP addresses in the database with hash values and cannot be undo, are you sure?"
|
2097 |
msgstr "Това ще замести всички IP адреси в базата данни с хашиш стойности и не може да се отмени, сигурен ли сте?"
|
2098 |
|
2099 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:16
|
2100 |
msgid "GeoIP Options"
|
2101 |
msgstr "GeoIP опции"
|
2102 |
|
2103 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:26
|
2104 |
msgid "Updates any unknown location data in the database, this may take a while"
|
2105 |
msgstr "Актуализира неизвестно местоположение данни в базата данни, това може да отнеме известно време"
|
2106 |
|
2107 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:31
|
2108 |
+
#: includes/settings/tabs/wps-general.php:66
|
2109 |
msgid "IP Addresses"
|
2110 |
msgstr "IP адреси"
|
2111 |
|
2112 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:36
|
2113 |
+
#: includes/settings/tabs/wps-general.php:71
|
2114 |
msgid "Hash IP Addresses"
|
2115 |
msgstr "Хеш IP адреси"
|
2116 |
|
2117 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:41
|
2118 |
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"
|
2119 |
msgstr "Замени IP адреси в базата данни с хашиш стойности, вие няма да можете да възстановите IP адресите в бъдеще да попълните местоположението информация след това и това може да отнеме известно време"
|
2120 |
|
2121 |
+
#: includes/optimization/wps-optimization.php:43
|
2122 |
msgid "IP Addresses replaced with hash values."
|
2123 |
msgstr "IP адреси се заменят с хеш стойности."
|
2124 |
|
2125 |
+
#: includes/optimization/wps-optimization.php:51
|
2126 |
msgid "Install routine complete."
|
2127 |
msgstr "Инсталиране на ежедневието пълна."
|
2128 |
|
2129 |
+
#: includes/optimization/wps-optimization.php:182
|
2130 |
msgid "Resources/Information"
|
2131 |
msgstr "Ресурси/информация"
|
2132 |
|
2133 |
+
#: includes/optimization/wps-optimization.php:184
|
2134 |
msgid "Purging"
|
2135 |
msgstr "Прочистване"
|
2136 |
|
2137 |
+
#: includes/optimization/wps-optimization.php:185
|
2138 |
msgid "Database"
|
2139 |
msgstr "База данни"
|
2140 |
|
2141 |
+
#: includes/optimization/wps-optimization.php:186
|
2142 |
msgid "Updates"
|
2143 |
msgstr "Актуализации"
|
2144 |
|
2145 |
+
#: includes/optimization/wps-optimization.php:187
|
2146 |
msgid "Historical"
|
2147 |
msgstr ""
|
2148 |
|
2149 |
+
#: includes/settings/tabs/wps-about.php:8
|
2150 |
msgid "WP Statistics V%s"
|
2151 |
msgstr "WP Statistics V %s"
|
2152 |
|
2153 |
+
#: includes/settings/tabs/wps-about.php:28
|
2154 |
msgid "Visit Us Online"
|
2155 |
msgstr "Посетете ни онлайн"
|
2156 |
|
2157 |
+
#: includes/settings/tabs/wps-about.php:32
|
2158 |
msgid "Come visit our great new %s and keep up to date on the latest news about WP Statistics."
|
2159 |
msgstr "Елате ни голям нов %s и поддържа актуална с последните новини за WP Statistics."
|
2160 |
|
2161 |
+
#: includes/settings/tabs/wps-about.php:32
|
2162 |
msgid "website"
|
2163 |
msgstr "уебсайт"
|
2164 |
|
2165 |
+
#: includes/settings/tabs/wps-about.php:36
|
2166 |
msgid "Rate and Review at WordPress.org"
|
2167 |
msgstr "И преглед в WordPress.org"
|
2168 |
|
2169 |
+
#: includes/settings/tabs/wps-about.php:40
|
2170 |
msgid "Thanks for installing WP Statistics, we encourage you to submit a "
|
2171 |
msgstr "Благодаря за инсталиране на WP Statistics, ние ви препоръчваме да изпратите "
|
2172 |
|
2173 |
+
#: includes/settings/tabs/wps-about.php:40
|
2174 |
msgid "rating and review"
|
2175 |
msgstr "Оценка и преглед"
|
2176 |
|
2177 |
+
#: includes/settings/tabs/wps-about.php:40
|
2178 |
msgid "over at WordPress.org. Your feedback is greatly appreciated!"
|
2179 |
msgstr "над в WordPress.org. Вашето мнение е много оценявам!"
|
2180 |
|
2181 |
+
#: includes/settings/tabs/wps-about.php:44
|
2182 |
msgid "Translations"
|
2183 |
msgstr "Преводи"
|
2184 |
|
2185 |
+
#: includes/settings/tabs/wps-about.php:48
|
2186 |
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."
|
2187 |
msgstr "WP Statistics подкрепя интернационализацията и ние насърчаваме потребителите да представят преводи, моля посетете нашия %s да видите текущото състояние и %s, ако искате да помогне."
|
2188 |
|
2189 |
+
#: includes/settings/tabs/wps-about.php:48
|
2190 |
msgid "translation collaboration site"
|
2191 |
msgstr "сайт за съвместна работа на превод"
|
2192 |
|
2193 |
+
#: includes/settings/tabs/wps-about.php:48
|
2194 |
msgid "drop us a line"
|
2195 |
msgstr "пишете ни линия"
|
2196 |
|
2197 |
+
#: includes/settings/tabs/wps-about.php:52
|
2198 |
msgid "Support"
|
2199 |
msgstr "Поддръжка"
|
2200 |
|
2201 |
+
#: includes/settings/tabs/wps-about.php:57
|
2202 |
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:"
|
2203 |
msgstr "Ние сме съжалявам, имате проблем с WP Statistics и ние сме щастливи да помогне. Ето няколко неща, за да направите преди да се свържете с нас:"
|
2204 |
|
2205 |
+
#: includes/settings/tabs/wps-about.php:60
|
2206 |
+
#: includes/settings/tabs/wps-about.php:61
|
2207 |
msgid "Have you read the %s?"
|
2208 |
msgstr "Чели ли сте на %s?"
|
2209 |
|
2210 |
+
#: includes/settings/tabs/wps-about.php:60
|
2211 |
msgid "FAQs"
|
2212 |
msgstr "Често задавани въпроси"
|
2213 |
|
2214 |
+
#: includes/settings/tabs/wps-about.php:61
|
2215 |
msgid "manual"
|
2216 |
msgstr "ръководство"
|
2217 |
|
2218 |
+
#: includes/settings/tabs/wps-about.php:62
|
2219 |
msgid "Have you search the %s for a similar issue?"
|
2220 |
msgstr "Имате ли търси %s за подобен проблем?"
|
2221 |
|
2222 |
+
#: includes/settings/tabs/wps-about.php:62
|
2223 |
msgid "support forum"
|
2224 |
msgstr "подкрепа форум"
|
2225 |
|
2226 |
+
#: includes/settings/tabs/wps-about.php:63
|
2227 |
msgid "Have you search the Internet for any error messages you are receiving?"
|
2228 |
msgstr "Има ли търсене в интернет за всички съобщения за грешка, получавате?"
|
2229 |
|
2230 |
+
#: includes/settings/tabs/wps-about.php:64
|
2231 |
msgid "Make sure you have access to your PHP error logs."
|
2232 |
msgstr ""
|
2233 |
|
2234 |
+
#: includes/settings/tabs/wps-about.php:67
|
2235 |
msgid "And a few things to double-check:"
|
2236 |
msgstr "И няколко неща, за да проверете отново:"
|
2237 |
|
2238 |
+
#: includes/settings/tabs/wps-about.php:70
|
2239 |
msgid "How's your memory_limit in php.ini?"
|
2240 |
msgstr "Как е вашата memory_limit в php.ini?"
|
2241 |
|
2242 |
+
#: includes/settings/tabs/wps-about.php:71
|
2243 |
msgid "Have you tried disabling any other plugins you may have installed?"
|
2244 |
msgstr "Били ли сте опитвали Деактивирането на всички други плъгини, които сте инсталирали?"
|
2245 |
|
2246 |
+
#: includes/settings/tabs/wps-about.php:72
|
2247 |
msgid "Have you tried using the default WordPress theme?"
|
2248 |
msgstr "Били ли сте опитвали използване на подразбиране WordPress тема?"
|
2249 |
|
2250 |
+
#: includes/settings/tabs/wps-about.php:73
|
2251 |
msgid "Have you double checked the plugin settings?"
|
2252 |
msgstr "Имате ли двойно проверени настройките на плъгин?"
|
2253 |
|
2254 |
+
#: includes/settings/tabs/wps-about.php:74
|
2255 |
msgid "Do you have all the required PHP extensions installed?"
|
2256 |
msgstr "Имате ли всички необходими PHP разширения инсталирани?"
|
2257 |
|
2258 |
+
#: includes/settings/tabs/wps-about.php:75
|
2259 |
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?"
|
2260 |
msgstr "Получавате ли празни или непълни страница показва в браузъра си? Видя ли преглед на източника на страницата и проверете за фатални грешки?"
|
2261 |
|
2262 |
+
#: includes/settings/tabs/wps-about.php:76
|
2263 |
msgid "Have you checked your PHP and web server error logs?"
|
2264 |
msgstr "Проверихте ли вашия PHP и уеб сървър грешка логове?"
|
2265 |
|
2266 |
+
#: includes/settings/tabs/wps-about.php:79
|
2267 |
msgid "Still not having any luck?"
|
2268 |
msgstr "Все още не е късм?"
|
2269 |
|
2270 |
+
#: includes/settings/tabs/wps-about.php:79
|
2271 |
msgid "Then please open a new thread on the %s and we'll respond as soon as possible."
|
2272 |
msgstr "След това отворете нова тема на %s и ние ще отговорим възможно най-скоро."
|
2273 |
|
2274 |
+
#: includes/settings/tabs/wps-about.php:79
|
2275 |
msgid "WordPress.org support forum"
|
2276 |
msgstr "WordPress.org подкрепа форум"
|
2277 |
|
2278 |
+
#: includes/settings/tabs/wps-about.php:83
|
2279 |
msgid "Alternatively %s support is available as well."
|
2280 |
msgstr "Алтернативно %s поддръжка е наличен."
|
2281 |
|
2282 |
+
#: includes/settings/tabs/wps-about.php:83
|
2283 |
msgid "Farsi"
|
2284 |
msgstr "Фарси"
|
2285 |
|
2286 |
+
#: includes/settings/tabs/wps-access-level.php:21
|
2287 |
msgid "WP Statistics Honey Pot Page"
|
2288 |
msgstr ""
|
2289 |
|
2290 |
+
#: includes/settings/tabs/wps-access-level.php:22
|
2291 |
msgid "This is the honey pot for WP Statistics to use, do not delete."
|
2292 |
msgstr ""
|
2293 |
|
2294 |
+
#: includes/settings/tabs/wps-access-level.php:45
|
2295 |
msgid "Access Levels"
|
2296 |
msgstr "Нива на достъп"
|
2297 |
|
2298 |
+
#: includes/settings/tabs/wps-access-level.php:74
|
2299 |
msgid "Required user level to view WP Statistics"
|
2300 |
msgstr "Изисква ниво на потребител за да видите статистика за WP"
|
2301 |
|
2302 |
+
#: includes/settings/tabs/wps-access-level.php:89
|
2303 |
msgid "Required user level to manage WP Statistics"
|
2304 |
msgstr "Изисква потребителско ниво, за да управлявате WP Statistics"
|
2305 |
|
2306 |
+
#: includes/settings/tabs/wps-access-level.php:97
|
2307 |
msgid "See the %s for details on capability levels."
|
2308 |
msgstr "Вижте %s за повече информация на способности."
|
2309 |
|
2310 |
+
#: includes/settings/tabs/wps-access-level.php:97
|
2311 |
msgid "WordPress Roles and Capabilities page"
|
2312 |
msgstr "Страница WordPress роли и възможности"
|
2313 |
|
2314 |
+
#: includes/settings/tabs/wps-access-level.php:98
|
2315 |
msgid "Hint: manage_network = Super Admin Network, manage_options = Administrator, edit_others_posts = Editor, publish_posts = Author, edit_posts = Contributor, read = Everyone."
|
2316 |
msgstr "Съвет: manage_network = супер администратор мрежа, manage_options = администратор, edit_others_posts = редактор, publish_posts = автор, edit_posts = сътрудник, прочетете = всеки."
|
2317 |
|
2318 |
+
#: includes/settings/tabs/wps-access-level.php:99
|
2319 |
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."
|
2320 |
msgstr "Всяка една от горните casscades правата нагоре в конфигурацията по подразбиране на WordPress. Така например избора на publish_posts предоставя правото на автори, редактори, администратори и супер администратори."
|
2321 |
|
2322 |
+
#: includes/settings/tabs/wps-access-level.php:100
|
2323 |
msgid "If you need a more robust solution to delegate access you might want to look at %s in the WordPress plugin directory."
|
2324 |
msgstr "Ако имате нужда от по-силен решение за делегиране на достъп, може да искате да погледнете %s в WordPress плъгин директорията."
|
2325 |
|
2326 |
+
#: includes/log/exclusions.php:197
|
2327 |
+
#: includes/settings/tabs/wps-access-level.php:105 wp-statistics.php:341
|
2328 |
+
#: wp-statistics.php:417
|
2329 |
msgid "Exclusions"
|
2330 |
msgstr "Изключения"
|
2331 |
|
2332 |
+
#: includes/settings/tabs/wps-access-level.php:109
|
2333 |
msgid "Record exclusions"
|
2334 |
msgstr "Запис изключения"
|
2335 |
|
2336 |
+
#: includes/settings/tabs/wps-access-level.php:111
|
2337 |
+
#: includes/settings/tabs/wps-access-level.php:165
|
2338 |
+
#: includes/settings/tabs/wps-access-level.php:192
|
2339 |
msgid "Enable"
|
2340 |
msgstr "Разреши"
|
2341 |
|
2342 |
+
#: includes/settings/tabs/wps-access-level.php:112
|
2343 |
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."
|
2344 |
msgstr "Това ще запише всички изключени хитове в отделна таблица с причините, защо е изключен, но никаква друга информация. Това ще генерира много данни, но е полезно, ако искате да видите общия брой на посещения вашия сайт получава, не само действителен потребител посещения."
|
2345 |
|
2346 |
+
#: includes/settings/tabs/wps-access-level.php:117
|
2347 |
msgid "Exclude User Roles"
|
2348 |
msgstr "Изключване на потребителски роли"
|
2349 |
|
2350 |
+
#: includes/settings/tabs/wps-access-level.php:133
|
2351 |
+
#: includes/settings/tabs/wps-access-level.php:247
|
2352 |
+
#: includes/settings/tabs/wps-access-level.php:254
|
2353 |
+
#: includes/settings/tabs/wps-access-level.php:261
|
2354 |
msgid "Exclude"
|
2355 |
msgstr "Изключи"
|
2356 |
|
2357 |
+
#: includes/settings/tabs/wps-access-level.php:134
|
2358 |
msgid "Exclude %s role from data collection."
|
2359 |
msgstr "%S роля да изключат от събирането на данни."
|
2360 |
|
2361 |
+
#: includes/settings/tabs/wps-access-level.php:140
|
2362 |
msgid "IP/Robot Exclusions"
|
2363 |
msgstr "IP/робот изключвания"
|
2364 |
|
2365 |
+
#: includes/settings/tabs/wps-access-level.php:144
|
2366 |
msgid "Robot list"
|
2367 |
msgstr "Робот списък"
|
2368 |
|
2369 |
+
#: includes/settings/tabs/wps-access-level.php:157
|
2370 |
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."
|
2371 |
msgstr "Списък на думи, (по един на ред) за мач срещу за откриване на роботи. Записите трябва да бъдат най-малко 4 символа или те ще бъдат игнорирани."
|
2372 |
|
2373 |
+
#: includes/settings/tabs/wps-access-level.php:158
|
2374 |
msgid "Reset to Default"
|
2375 |
msgstr "Възстанови по подразбиране"
|
2376 |
|
2377 |
+
#: includes/settings/tabs/wps-access-level.php:163
|
2378 |
msgid "Force robot list update after upgrades"
|
2379 |
msgstr "Сила робот списък актуализация след ъпгрейд"
|
2380 |
|
2381 |
+
#: includes/settings/tabs/wps-access-level.php:166
|
2382 |
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."
|
2383 |
msgstr "Сила списъка на робот, за да се възстанови по подразбиране след актуализация на WP Statistics се провежда. Забележка Ако тази опция е разрешена по потребителски роботи, вие сте добавили към списъка ще бъдат загубени."
|
2384 |
|
2385 |
+
#: includes/settings/tabs/wps-access-level.php:171
|
2386 |
msgid "Robot visit threshold"
|
2387 |
msgstr ""
|
2388 |
|
2389 |
+
#: includes/settings/tabs/wps-access-level.php:174
|
2390 |
msgid "Treat visitors with more than this number of visits per day as robots. 0 = disabled."
|
2391 |
msgstr ""
|
2392 |
|
2393 |
+
#: includes/settings/tabs/wps-access-level.php:179
|
2394 |
msgid "Excluded IP address list"
|
2395 |
msgstr "Изключените IP адресен списък"
|
2396 |
|
2397 |
+
#: includes/settings/tabs/wps-access-level.php:182
|
2398 |
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."
|
2399 |
msgstr "Списък на IP адреси и подмрежа маски (по един на ред) да се изключат от статистиката колекция (192.168.0.0/24 и 192.168.0.0/255.255.255.0 формати се приемат). За да зададете IP адрес само, използвайте подмрежа стойност на 32 или 255.255.255.255."
|
2400 |
|
2401 |
+
#: includes/settings/tabs/wps-access-level.php:183
|
2402 |
msgid "Add 10.0.0.0"
|
2403 |
msgstr "Добави 10.0.0.0"
|
2404 |
|
2405 |
+
#: includes/settings/tabs/wps-access-level.php:184
|
2406 |
msgid "Add 172.16.0.0"
|
2407 |
msgstr "Добави 172.16.0.0"
|
2408 |
|
2409 |
+
#: includes/settings/tabs/wps-access-level.php:185
|
2410 |
msgid "Add 192.168.0.0"
|
2411 |
msgstr "Добави 192.168.0.0"
|
2412 |
|
2413 |
+
#: includes/settings/tabs/wps-access-level.php:190
|
2414 |
msgid "Use honey pot"
|
2415 |
msgstr ""
|
2416 |
|
2417 |
+
#: includes/settings/tabs/wps-access-level.php:193
|
2418 |
msgid "Use a honey pot page to identify robots."
|
2419 |
msgstr ""
|
2420 |
|
2421 |
+
#: includes/settings/tabs/wps-access-level.php:198
|
2422 |
msgid "Honey pot post id"
|
2423 |
msgstr ""
|
2424 |
|
2425 |
+
#: includes/settings/tabs/wps-access-level.php:201
|
2426 |
msgid "The post id to use for the honeypot page."
|
2427 |
msgstr ""
|
2428 |
|
2429 |
+
#: includes/settings/tabs/wps-access-level.php:202
|
2430 |
msgid "Create a new honey pot page"
|
2431 |
msgstr ""
|
2432 |
|
2433 |
+
#: includes/settings/tabs/wps-access-level.php:207
|
2434 |
msgid "GeoIP Exclusions"
|
2435 |
msgstr ""
|
2436 |
|
2437 |
+
#: includes/settings/tabs/wps-access-level.php:211
|
2438 |
msgid "Excluded countries list"
|
2439 |
msgstr ""
|
2440 |
|
2441 |
+
#: includes/settings/tabs/wps-access-level.php:214
|
2442 |
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."
|
2443 |
msgstr ""
|
2444 |
|
2445 |
+
#: includes/settings/tabs/wps-access-level.php:219
|
2446 |
msgid "Included countries list"
|
2447 |
msgstr ""
|
2448 |
|
2449 |
+
#: includes/settings/tabs/wps-access-level.php:222
|
2450 |
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."
|
2451 |
msgstr ""
|
2452 |
|
2453 |
+
#: includes/settings/tabs/wps-access-level.php:227
|
2454 |
msgid "Host Exclusions"
|
2455 |
msgstr ""
|
2456 |
|
2457 |
+
#: includes/settings/tabs/wps-access-level.php:231
|
2458 |
msgid "Excluded hosts list"
|
2459 |
msgstr ""
|
2460 |
|
2461 |
+
#: includes/settings/tabs/wps-access-level.php:234
|
2462 |
msgid "A list of fully qualified host names (ie. server.example.com, one per line) to exclude from statistics collection."
|
2463 |
msgstr ""
|
2464 |
|
2465 |
+
#: includes/settings/tabs/wps-access-level.php:236
|
2466 |
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."
|
2467 |
msgstr ""
|
2468 |
|
2469 |
+
#: includes/settings/tabs/wps-access-level.php:241
|
2470 |
msgid "Site URL Exclusions"
|
2471 |
msgstr "Сайт URL изключения"
|
2472 |
|
2473 |
+
#: includes/settings/tabs/wps-access-level.php:245
|
2474 |
msgid "Excluded login page"
|
2475 |
msgstr "Изключените вход страница"
|
2476 |
|
2477 |
+
#: includes/settings/tabs/wps-access-level.php:248
|
2478 |
msgid "Exclude the login page for registering as a hit."
|
2479 |
msgstr "Изключване на страницата за вход за регистриране като хит."
|
2480 |
|
2481 |
+
#: includes/settings/tabs/wps-access-level.php:252
|
2482 |
msgid "Excluded admin pages"
|
2483 |
msgstr "Изключените администратор страници"
|
2484 |
|
2485 |
+
#: includes/settings/tabs/wps-access-level.php:255
|
2486 |
msgid "Exclude the admin pages for registering as a hit."
|
2487 |
msgstr "Изключи администратор страници за регистриране като хит."
|
2488 |
|
2489 |
+
#: includes/settings/tabs/wps-access-level.php:259
|
2490 |
msgid "Excluded RSS feeds"
|
2491 |
msgstr ""
|
2492 |
|
2493 |
+
#: includes/settings/tabs/wps-access-level.php:262
|
2494 |
msgid "Exclude the RSS feeds for registering as a hit."
|
2495 |
msgstr ""
|
2496 |
|
2497 |
+
#: includes/settings/tabs/wps-browscap.php:22
|
2498 |
msgid "browscap settings"
|
2499 |
msgstr "browscap настройки"
|
2500 |
|
2501 |
+
#: includes/settings/tabs/wps-browscap.php:27
|
2502 |
msgid "browscap usage"
|
2503 |
msgstr "използване на browscap"
|
2504 |
|
2505 |
+
#: includes/settings/tabs/wps-browscap.php:32
|
2506 |
+
#: includes/settings/tabs/wps-browscap.php:56
|
2507 |
+
#: includes/settings/tabs/wps-general.php:76
|
2508 |
+
#: includes/settings/tabs/wps-general.php:92
|
2509 |
+
#: includes/settings/tabs/wps-general.php:116
|
2510 |
+
#: includes/settings/tabs/wps-general.php:132
|
2511 |
+
#: includes/settings/tabs/wps-general.php:148
|
2512 |
+
#: includes/settings/tabs/wps-general.php:160
|
2513 |
+
#: includes/settings/tabs/wps-general.php:187
|
2514 |
+
#: includes/settings/tabs/wps-general.php:199
|
2515 |
+
#: includes/settings/tabs/wps-general.php:214
|
2516 |
+
#: includes/settings/tabs/wps-general.php:228
|
2517 |
+
#: includes/settings/tabs/wps-general.php:258
|
2518 |
+
#: includes/settings/tabs/wps-general.php:270
|
2519 |
+
#: includes/settings/tabs/wps-general.php:286
|
2520 |
+
#: includes/settings/tabs/wps-general.php:325
|
2521 |
+
#: includes/settings/tabs/wps-general.php:341
|
2522 |
+
#: includes/settings/tabs/wps-geoip.php:47
|
2523 |
+
#: includes/settings/tabs/wps-geoip.php:71
|
2524 |
+
#: includes/settings/tabs/wps-geoip.php:104
|
2525 |
+
#: includes/settings/tabs/wps-maintenance.php:40
|
2526 |
+
#: includes/settings/tabs/wps-maintenance.php:64
|
2527 |
+
#: includes/settings/tabs/wps-notifications.php:69
|
2528 |
+
#: includes/settings/tabs/wps-notifications.php:81
|
2529 |
+
#: includes/settings/tabs/wps-notifications.php:93
|
2530 |
+
#: includes/settings/tabs/wps-notifications.php:105
|
2531 |
+
#: includes/settings/tabs/wps-notifications.php:121
|
2532 |
+
#: includes/settings/tabs/wps-overview-display.php:87
|
2533 |
+
#: includes/settings/tabs/wps-overview-display.php:107
|
2534 |
+
#: includes/settings/tabs/wps-overview-display.php:147
|
2535 |
+
#: includes/settings/tabs/wps-overview-display.php:159
|
2536 |
msgid "Active"
|
2537 |
msgstr "Активен"
|
2538 |
|
2539 |
+
#: includes/settings/tabs/wps-browscap.php:33
|
2540 |
msgid "The browscap database will be downloaded and used to detect robots."
|
2541 |
msgstr "Базата данни на browscap ще бъдат изтеглени и използвани за откриване на роботи."
|
2542 |
|
2543 |
+
#: includes/settings/tabs/wps-browscap.php:39
|
2544 |
msgid "Update browscap Info"
|
2545 |
msgstr "Актуализиране на browscap информация"
|
2546 |
|
2547 |
+
#: includes/settings/tabs/wps-browscap.php:44
|
2548 |
msgid "Download browscap Database"
|
2549 |
msgstr "Изтегли browscap база данни"
|
2550 |
|
2551 |
+
#: includes/settings/tabs/wps-browscap.php:45
|
2552 |
+
#: includes/settings/tabs/wps-geoip.php:60
|
2553 |
msgid "Save changes on this page to download the update."
|
2554 |
msgstr "Запишете промените на тази страница, за да изтеглите актуализацията."
|
2555 |
|
2556 |
+
#: includes/settings/tabs/wps-browscap.php:51
|
2557 |
msgid "Schedule weekly update of browscap DB"
|
2558 |
msgstr "Планиране на седмична актуализация на browscap DB"
|
2559 |
|
2560 |
+
#: includes/settings/tabs/wps-browscap.php:59
|
2561 |
+
#: includes/settings/tabs/wps-geoip.php:74
|
2562 |
msgid "Next update will be"
|
2563 |
msgstr "Следващата актуализация ще бъде"
|
2564 |
|
2565 |
+
#: includes/settings/tabs/wps-browscap.php:74
|
2566 |
msgid "Download of the browscap database will be scheduled for once a week."
|
2567 |
msgstr "Изтегляне на базата данни на browscap ще бъде насрочено за един път седмично."
|
2568 |
|
2569 |
+
#: includes/settings/tabs/wps-general.php:50
|
2570 |
msgid "This will delete the manual when you save the settings, are you sure?"
|
2571 |
msgstr "Това ще изтрие ръчно, когато запишете настройките, сигурен ли сте?"
|
2572 |
|
2573 |
+
#: includes/settings/tabs/wps-general.php:77
|
2574 |
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."
|
2575 |
msgstr "Тази функция няма да съхранява IP адреси в базата данни, но вместо това използва уникален хашиш. \"Store целия потребителски агент string\" настройка ще бъде забранена, ако тази опция е избрана. Вие няма да можете да възстановите IP адресите в бъдеще да се възстанови информацията за местоположението, ако това е разрешено."
|
2576 |
|
2577 |
+
#: includes/settings/tabs/wps-general.php:82 shortcode.php:129
|
2578 |
msgid "Users Online"
|
2579 |
msgstr "Потребители онлайн"
|
2580 |
|
2581 |
+
#: includes/settings/tabs/wps-general.php:87
|
2582 |
msgid "User online"
|
2583 |
msgstr "Потребител онлайн"
|
languages/wp_statistics-bn_BD.po
CHANGED
@@ -10,2535 +10,2574 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
msgid "to"
|
15 |
msgstr ""
|
16 |
|
17 |
-
#:
|
18 |
msgid "Go"
|
19 |
msgstr ""
|
20 |
|
21 |
-
#:
|
22 |
msgid "Rank #5"
|
23 |
msgstr ""
|
24 |
|
25 |
-
#:
|
26 |
msgid "Rank #4"
|
27 |
msgstr ""
|
28 |
|
29 |
-
#:
|
30 |
msgid "Rank #3"
|
31 |
msgstr ""
|
32 |
|
33 |
-
#:
|
34 |
msgid "Rank #1"
|
35 |
msgstr ""
|
36 |
|
37 |
-
#:
|
38 |
msgid "Rank #2"
|
39 |
msgstr ""
|
40 |
|
41 |
-
#:
|
42 |
msgid "Visits Table"
|
43 |
msgstr ""
|
44 |
|
45 |
-
#:
|
46 |
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."
|
47 |
msgstr ""
|
48 |
|
49 |
-
#:
|
50 |
msgid "This operation could take a long time on installs with many rows in the visits table."
|
51 |
msgstr ""
|
52 |
|
53 |
-
#:
|
54 |
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."
|
55 |
msgstr ""
|
56 |
|
57 |
-
#:
|
58 |
msgid "Filtered by"
|
59 |
msgstr ""
|
60 |
|
61 |
-
#:
|
62 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:925
|
63 |
msgid "Range"
|
64 |
msgstr ""
|
65 |
|
66 |
-
#:
|
67 |
msgid "MM/DD/YYYY"
|
68 |
msgstr "MM/DD/YYYY"
|
69 |
|
70 |
-
#:
|
71 |
msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
|
72 |
msgstr ""
|
73 |
|
74 |
-
#:
|
75 |
msgid "Force English"
|
76 |
msgstr ""
|
77 |
|
78 |
-
#:
|
79 |
msgid "Languages"
|
80 |
msgstr ""
|
81 |
|
82 |
-
#:
|
83 |
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."
|
84 |
msgstr ""
|
85 |
|
86 |
-
#:
|
87 |
msgid "A list of local urls (ie. /wordpress/about, one per line) to exclude from statistics collection."
|
88 |
msgstr ""
|
89 |
|
90 |
-
#:
|
91 |
msgid "Excluded URLs list"
|
92 |
msgstr ""
|
93 |
|
94 |
-
#:
|
95 |
msgid "Excluded URL"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#:
|
99 |
msgid "Last 365 Days (Year)"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#:
|
103 |
msgid "Last 30 Days (Month)"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#:
|
107 |
msgid "Last 7 Days (Week)"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#:
|
111 |
msgid "Yahoo!"
|
112 |
msgstr ""
|
113 |
|
114 |
-
#:
|
115 |
msgid "Yandex"
|
116 |
msgstr ""
|
117 |
|
118 |
-
#:
|
119 |
msgid "clearch.org"
|
120 |
msgstr ""
|
121 |
|
122 |
-
#:
|
123 |
msgid "DuckDuckGo"
|
124 |
msgstr ""
|
125 |
|
126 |
-
#:
|
127 |
msgid "Bing"
|
128 |
msgstr ""
|
129 |
|
130 |
-
#:
|
131 |
msgid "Baidu"
|
132 |
msgstr ""
|
133 |
|
134 |
-
#:
|
135 |
msgid "Hits in the last 20 days"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#:
|
139 |
msgid "Feeds"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#:
|
143 |
msgid "User Role"
|
144 |
msgstr ""
|
145 |
|
146 |
-
#:
|
147 |
msgid "Login Page"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#:
|
151 |
msgid "Admin Page"
|
152 |
msgstr ""
|
153 |
|
154 |
-
#:
|
155 |
msgid "Self Referral"
|
156 |
msgstr ""
|
157 |
|
158 |
-
#:
|
159 |
msgid "IP Match"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#:
|
163 |
msgid "Robot"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#:
|
167 |
msgid "Currently there are no users online in the site."
|
168 |
msgstr ""
|
169 |
|
170 |
-
#:
|
171 |
msgid "Robot Threshold"
|
172 |
msgstr ""
|
173 |
|
174 |
-
#:
|
175 |
msgid "Honey Pot"
|
176 |
msgstr ""
|
177 |
|
178 |
-
#:
|
179 |
msgid "Page Trending Stats"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#:
|
183 |
msgid "Hostname"
|
184 |
msgstr ""
|
185 |
|
186 |
-
#:
|
187 |
-
#:
|
188 |
-
#:
|
189 |
-
#:
|
190 |
-
#:
|
191 |
-
#:
|
192 |
-
#:
|
193 |
msgid "Enable or disable this feature"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#:
|
197 |
msgid "Check for online users every"
|
198 |
msgstr "অনলাইনের ব্যবহারকারী চেক করবে"
|
199 |
|
200 |
-
#:
|
201 |
msgid "Second"
|
202 |
msgstr ""
|
203 |
|
204 |
-
#:
|
205 |
msgid "Time for the check accurate online user in the site. Now: %s Second"
|
206 |
msgstr ""
|
207 |
|
208 |
-
#:
|
209 |
msgid "Record all user"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#:
|
213 |
msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
|
214 |
msgstr ""
|
215 |
|
216 |
-
#:
|
217 |
msgid "Store entire user agent string"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#:
|
221 |
msgid "Only enabled for debugging"
|
222 |
msgstr ""
|
223 |
|
224 |
-
#:
|
225 |
msgid "Coefficient per visitor"
|
226 |
msgstr "দর্শকের সুদক্ষতা"
|
227 |
|
228 |
-
#:
|
229 |
msgid "For each visit to account for several hits. Currently %s."
|
230 |
msgstr ""
|
231 |
|
232 |
-
#:
|
233 |
-
#:
|
234 |
-
#:
|
235 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:396
|
236 |
msgid "Pages"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#:
|
240 |
msgid "Track all pages"
|
241 |
msgstr ""
|
242 |
|
243 |
-
#:
|
244 |
msgid "Strip parameters from URI"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#:
|
248 |
msgid "This will remove anything after the ? in a URL."
|
249 |
msgstr ""
|
250 |
|
251 |
-
#:
|
252 |
msgid "Disable hits column in post/pages list"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#:
|
256 |
msgid "Miscellaneous"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#:
|
260 |
msgid "Show stats in menu bar"
|
261 |
msgstr "স্টাটস মেনুবারে দেখাও"
|
262 |
|
263 |
-
#:
|
264 |
msgid "No"
|
265 |
msgstr "না"
|
266 |
|
267 |
-
#:
|
268 |
msgid "Yes"
|
269 |
msgstr "হ্যা"
|
270 |
|
271 |
-
#:
|
272 |
msgid "Show stats in admin menu bar"
|
273 |
msgstr "স্টাটস অ্যাডমিনের মেনুবারে দেখাও"
|
274 |
|
275 |
-
#:
|
276 |
msgid "Hide admin notices about non active features"
|
277 |
msgstr ""
|
278 |
|
279 |
-
#:
|
280 |
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."
|
281 |
msgstr ""
|
282 |
|
283 |
-
#:
|
284 |
msgid "Delete the manual"
|
285 |
msgstr ""
|
286 |
|
287 |
-
#:
|
288 |
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."
|
289 |
msgstr ""
|
290 |
|
291 |
-
#:
|
292 |
msgid "Search Engines"
|
293 |
msgstr ""
|
294 |
|
295 |
-
#:
|
296 |
msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
|
297 |
msgstr ""
|
298 |
|
299 |
-
#:
|
300 |
msgid "disable"
|
301 |
msgstr ""
|
302 |
|
303 |
-
#:
|
304 |
msgid "Disable %s from data collection and reporting."
|
305 |
msgstr ""
|
306 |
|
307 |
-
#:
|
308 |
msgid "Charts"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#:
|
312 |
msgid "Include totals"
|
313 |
msgstr ""
|
314 |
|
315 |
-
#:
|
316 |
msgid "Add a total line to charts with multiple values, like the search engine referrals"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#:
|
320 |
msgid "GeoIP settings"
|
321 |
msgstr ""
|
322 |
|
323 |
-
#:
|
324 |
msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
|
325 |
msgstr ""
|
326 |
|
327 |
-
#:
|
328 |
msgid "GeoIP collection"
|
329 |
msgstr ""
|
330 |
|
331 |
-
#:
|
332 |
msgid "For get more information and location (country) from visitor, enable this feature."
|
333 |
msgstr ""
|
334 |
|
335 |
-
#:
|
336 |
msgid "Update GeoIP Info"
|
337 |
msgstr ""
|
338 |
|
339 |
-
#:
|
340 |
msgid "Download GeoIP Database"
|
341 |
msgstr ""
|
342 |
|
343 |
-
#:
|
344 |
msgid "Schedule monthly update of GeoIP DB"
|
345 |
msgstr ""
|
346 |
|
347 |
-
#:
|
348 |
msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
|
349 |
msgstr ""
|
350 |
|
351 |
-
#:
|
352 |
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)."
|
353 |
msgstr ""
|
354 |
|
355 |
-
#:
|
356 |
msgid "Populate missing GeoIP after update of GeoIP DB"
|
357 |
msgstr ""
|
358 |
|
359 |
-
#:
|
360 |
msgid "Update any missing GeoIP data after downloading a new database."
|
361 |
msgstr ""
|
362 |
|
363 |
-
#:
|
364 |
msgid "Country code for private IP addresses"
|
365 |
msgstr ""
|
366 |
|
367 |
-
#:
|
368 |
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."
|
369 |
msgstr ""
|
370 |
|
371 |
-
#:
|
372 |
msgid "GeoIP collection is disabled due to the following reasons:"
|
373 |
msgstr ""
|
374 |
|
375 |
-
#:
|
376 |
msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
|
377 |
msgstr ""
|
378 |
|
379 |
-
#:
|
380 |
msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
|
381 |
msgstr ""
|
382 |
|
383 |
-
#:
|
384 |
msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
|
385 |
msgstr ""
|
386 |
|
387 |
-
#:
|
388 |
msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
|
389 |
msgstr ""
|
390 |
|
391 |
-
#:
|
392 |
msgid "This will permanently delete data from the database each day, are you sure you want to enable this option?"
|
393 |
msgstr ""
|
394 |
|
395 |
-
#:
|
396 |
msgid "Database Maintenance"
|
397 |
msgstr ""
|
398 |
|
399 |
-
#:
|
|
|
400 |
msgid "Run a daily WP Cron job to prune the databases"
|
401 |
msgstr ""
|
402 |
|
403 |
-
#:
|
404 |
msgid "A WP Cron job will be run daily to prune any data older than a set number of days."
|
405 |
msgstr ""
|
406 |
|
407 |
-
#:
|
408 |
msgid "Prune data older than"
|
409 |
msgstr ""
|
410 |
|
411 |
-
#:
|
412 |
msgid "Days"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#:
|
416 |
msgid "The number of days to keep statistics for. Minimum value is 30 days. Invalid values will disable the daily maintenance."
|
417 |
msgstr ""
|
418 |
|
419 |
-
#:
|
420 |
msgid "Common Report Options"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#:
|
424 |
msgid "E-mail addresses"
|
425 |
msgstr ""
|
426 |
|
427 |
-
#:
|
428 |
msgid "A comma separated list of e-mail addresses to send reports to."
|
429 |
msgstr ""
|
430 |
|
431 |
-
#:
|
432 |
msgid "Update Reports"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#:
|
436 |
-
#:
|
437 |
msgid "Browscap"
|
438 |
msgstr ""
|
439 |
|
440 |
-
#:
|
441 |
msgid "Send a report whenever the browscap.ini is updated."
|
442 |
msgstr ""
|
443 |
|
444 |
-
#:
|
445 |
-
#:
|
446 |
-
#:
|
447 |
msgid "GeoIP"
|
448 |
msgstr ""
|
449 |
|
450 |
-
#:
|
451 |
msgid "Send a report whenever the GeoIP database is updated."
|
452 |
msgstr ""
|
453 |
|
454 |
-
#:
|
455 |
msgid "Pruning"
|
456 |
msgstr ""
|
457 |
|
458 |
-
#:
|
459 |
msgid "Send a report whenever the pruning of database is run."
|
460 |
msgstr ""
|
461 |
|
462 |
-
#:
|
463 |
msgid "Upgrade"
|
464 |
msgstr ""
|
465 |
|
466 |
-
#:
|
467 |
msgid "Send a report whenever the plugin is upgraded."
|
468 |
msgstr ""
|
469 |
|
470 |
-
#:
|
471 |
-
#:
|
472 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:174
|
473 |
msgid "Statistical reporting"
|
474 |
msgstr ""
|
475 |
|
476 |
-
#:
|
477 |
msgid "Schedule"
|
478 |
msgstr ""
|
479 |
|
480 |
-
#:
|
481 |
msgid "Select how often to receive statistical report."
|
482 |
msgstr ""
|
483 |
|
484 |
-
#:
|
485 |
msgid "Send reports via"
|
486 |
msgstr ""
|
487 |
|
488 |
-
#:
|
489 |
msgid "Email"
|
490 |
msgstr ""
|
491 |
|
492 |
-
#:
|
493 |
msgid "SMS"
|
494 |
msgstr ""
|
495 |
|
496 |
-
#:
|
497 |
msgid "Select delivery method for statistical report."
|
498 |
msgstr ""
|
499 |
|
500 |
-
#:
|
501 |
msgid "Note: To send SMS text messages please install the %s plugin."
|
502 |
msgstr ""
|
503 |
|
504 |
-
#:
|
505 |
msgid "WordPress SMS"
|
506 |
msgstr ""
|
507 |
|
508 |
-
#:
|
509 |
msgid "Report body"
|
510 |
msgstr ""
|
511 |
|
512 |
-
#:
|
513 |
msgid "Enter the contents of the report."
|
514 |
msgstr ""
|
515 |
|
516 |
-
#:
|
517 |
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:"
|
518 |
msgstr ""
|
519 |
|
520 |
-
#:
|
521 |
-
#:
|
522 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:245
|
523 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:492
|
524 |
msgid "User Online"
|
525 |
msgstr "এখন দেখছে"
|
526 |
|
527 |
-
#:
|
528 |
-
#:
|
529 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:251
|
530 |
msgid "Today Visitor"
|
531 |
msgstr ""
|
532 |
|
533 |
-
#:
|
534 |
-
#:
|
535 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:248
|
536 |
msgid "Today Visit"
|
537 |
msgstr "আজ দেখেছে"
|
538 |
|
539 |
-
#:
|
540 |
-
#:
|
541 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:257
|
542 |
msgid "Yesterday Visitor"
|
543 |
msgstr ""
|
544 |
|
545 |
-
#:
|
546 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:59
|
547 |
msgid "Yesterday Visit"
|
548 |
msgstr "গতকাল দেখেছে"
|
549 |
|
550 |
-
#:
|
551 |
-
#:
|
552 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:272
|
553 |
msgid "Total Visitor"
|
554 |
msgstr ""
|
555 |
|
556 |
-
#:
|
557 |
-
#:
|
558 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:269
|
559 |
msgid "Total Visit"
|
560 |
msgstr "মোট দেখা হয়েছে"
|
561 |
|
562 |
-
#:
|
563 |
-
#:
|
564 |
msgid "None"
|
565 |
msgstr ""
|
566 |
|
567 |
-
#:
|
568 |
msgid "Summary Statistics"
|
569 |
msgstr ""
|
570 |
|
571 |
-
#:
|
572 |
-
#:
|
573 |
msgid "About"
|
574 |
msgstr ""
|
575 |
|
576 |
-
#:
|
577 |
msgid "Hits Statistical Chart"
|
578 |
msgstr ""
|
579 |
|
580 |
-
#:
|
581 |
msgid "Search Engine Referrers Statistical Chart"
|
582 |
msgstr ""
|
583 |
|
584 |
-
#:
|
585 |
msgid "Top Pages Visited"
|
586 |
msgstr ""
|
587 |
|
588 |
-
#:
|
589 |
msgid "Dashboard"
|
590 |
msgstr ""
|
591 |
|
592 |
-
#:
|
593 |
-
#:
|
594 |
-
#:
|
595 |
msgid "The following items are global to all users."
|
596 |
msgstr ""
|
597 |
|
598 |
-
#:
|
599 |
msgid "Disable dashboard widgets"
|
600 |
msgstr ""
|
601 |
|
602 |
-
#:
|
603 |
msgid "Disable the dashboard widgets."
|
604 |
msgstr ""
|
605 |
|
606 |
-
#:
|
607 |
msgid "Page/Post Editor"
|
608 |
msgstr ""
|
609 |
|
610 |
-
#:
|
611 |
msgid "Disable post/page editor widget"
|
612 |
msgstr ""
|
613 |
|
614 |
-
#:
|
615 |
msgid "Disable the page/post editor widget."
|
616 |
msgstr ""
|
617 |
|
618 |
-
#:
|
619 |
msgid "Map type"
|
620 |
msgstr ""
|
621 |
|
622 |
-
#:
|
623 |
-
#:
|
624 |
msgid "Google"
|
625 |
msgstr "গুগল"
|
626 |
|
627 |
-
#:
|
628 |
msgid "JQVMap"
|
629 |
msgstr ""
|
630 |
|
631 |
-
#:
|
632 |
msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
|
633 |
msgstr ""
|
634 |
|
635 |
-
#:
|
636 |
msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
|
637 |
msgstr ""
|
638 |
|
639 |
-
#:
|
640 |
msgid "Disable map"
|
641 |
msgstr ""
|
642 |
|
643 |
-
#:
|
644 |
msgid "Disable the map display"
|
645 |
msgstr ""
|
646 |
|
647 |
-
#:
|
648 |
msgid "Get country location from Google"
|
649 |
msgstr ""
|
650 |
|
651 |
-
#:
|
652 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
653 |
msgstr ""
|
654 |
|
655 |
-
#:
|
656 |
msgid "Overview Widgets to Display"
|
657 |
msgstr ""
|
658 |
|
659 |
-
#:
|
660 |
msgid "The following items are unique to each user. If you do not select the 'About' widget it will automatically be displayed in the last positon of column A."
|
661 |
msgstr ""
|
662 |
|
663 |
-
#:
|
664 |
msgid "Slot"
|
665 |
msgstr ""
|
666 |
|
667 |
-
#:
|
668 |
msgid "Column A"
|
669 |
msgstr ""
|
670 |
|
671 |
-
#:
|
672 |
msgid "Column B"
|
673 |
msgstr ""
|
674 |
|
675 |
-
#:
|
676 |
msgid "Slot 1"
|
677 |
msgstr ""
|
678 |
|
679 |
-
#:
|
680 |
msgid "Slot 2"
|
681 |
msgstr ""
|
682 |
|
683 |
-
#:
|
684 |
msgid "Slot 3"
|
685 |
msgstr ""
|
686 |
|
687 |
-
#:
|
688 |
msgid "Slot 4"
|
689 |
msgstr ""
|
690 |
|
691 |
-
#:
|
692 |
msgid "Slot 5"
|
693 |
msgstr ""
|
694 |
|
695 |
-
#:
|
696 |
msgid "Slot 6"
|
697 |
msgstr ""
|
698 |
|
699 |
-
#:
|
700 |
-
#:
|
701 |
msgid "N/A"
|
702 |
msgstr ""
|
703 |
|
704 |
-
#:
|
705 |
msgid "Slot 7"
|
706 |
msgstr ""
|
707 |
|
708 |
-
#:
|
709 |
msgid "WP Statisitcs Removal"
|
710 |
msgstr ""
|
711 |
|
712 |
-
#:
|
713 |
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."
|
714 |
msgstr ""
|
715 |
|
716 |
-
#:
|
717 |
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."
|
718 |
msgstr ""
|
719 |
|
720 |
-
#:
|
721 |
msgid "Remove data and settings"
|
722 |
msgstr ""
|
723 |
|
724 |
-
#:
|
725 |
msgid "Remove"
|
726 |
msgstr ""
|
727 |
|
728 |
-
#:
|
729 |
msgid "Remove data and settings, this action cannot be undone."
|
730 |
msgstr ""
|
731 |
|
732 |
-
#:
|
733 |
msgid "General"
|
734 |
msgstr ""
|
735 |
|
736 |
-
#:
|
737 |
msgid "Notifications"
|
738 |
msgstr ""
|
739 |
|
740 |
-
#:
|
741 |
msgid "Dashboard/Overview"
|
742 |
msgstr ""
|
743 |
|
744 |
-
#:
|
745 |
msgid "Access/Exclusions"
|
746 |
msgstr ""
|
747 |
|
748 |
-
#:
|
749 |
msgid "browscap"
|
750 |
msgstr ""
|
751 |
|
752 |
-
#:
|
753 |
msgid "Maintenance"
|
754 |
msgstr ""
|
755 |
|
756 |
-
#:
|
757 |
msgid "Removal"
|
758 |
msgstr ""
|
759 |
|
760 |
-
#:
|
761 |
-
#:
|
762 |
-
#:
|
763 |
-
#:
|
764 |
-
#:
|
765 |
-
#:
|
766 |
-
#:
|
767 |
-
#:
|
768 |
msgid "Update"
|
769 |
msgstr ""
|
770 |
|
771 |
-
#:
|
772 |
-
msgid "Manual not found: %s"
|
773 |
-
msgstr ""
|
774 |
-
|
775 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/manual/manual.php:39
|
776 |
-
msgid "Invalid file type selected: %s"
|
777 |
-
msgstr ""
|
778 |
-
|
779 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:10
|
780 |
msgid "Once Weekly"
|
781 |
msgstr ""
|
782 |
|
783 |
-
#:
|
784 |
msgid "Once Every 2 Weeks"
|
785 |
msgstr ""
|
786 |
|
787 |
-
#:
|
788 |
msgid "Once Every 4 Weeks"
|
789 |
msgstr ""
|
790 |
|
791 |
-
#:
|
792 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:312
|
793 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:349
|
794 |
msgid "Statistics"
|
795 |
msgstr "পরিসংখ্যান"
|
796 |
|
797 |
-
#:
|
798 |
msgid "Show site stats in sidebar."
|
799 |
msgstr ""
|
800 |
|
801 |
-
#:
|
802 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:260
|
803 |
msgid "Week Visit"
|
804 |
msgstr "এ সপ্তাহে দেখেছে"
|
805 |
|
806 |
-
#:
|
807 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:263
|
808 |
msgid "Month Visit"
|
809 |
msgstr "এ মাসে দেখেছে"
|
810 |
|
811 |
-
#:
|
812 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:266
|
813 |
msgid "Years Visit"
|
814 |
msgstr "এ বছরে দেখেছে"
|
815 |
|
816 |
-
#:
|
817 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:275
|
818 |
msgid "Total Page Views"
|
819 |
msgstr ""
|
820 |
|
821 |
-
#:
|
822 |
msgid "Search Engine referred"
|
823 |
msgstr ""
|
824 |
|
825 |
-
#:
|
826 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:298
|
827 |
msgid "Total Posts"
|
828 |
msgstr "মোট পোষ্ট"
|
829 |
|
830 |
-
#:
|
831 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:301
|
832 |
msgid "Total Pages"
|
833 |
msgstr "মোট পাতা"
|
834 |
|
835 |
-
#:
|
836 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:304
|
837 |
msgid "Total Comments"
|
838 |
msgstr "মোট মন্তব্য"
|
839 |
|
840 |
-
#:
|
841 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:307
|
842 |
msgid "Total Spams"
|
843 |
msgstr "মোট স্প্যাম"
|
844 |
|
845 |
-
#:
|
846 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:310
|
847 |
msgid "Total Users"
|
848 |
msgstr "মোট ব্যবহারকারী"
|
849 |
|
850 |
-
#:
|
851 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:313
|
852 |
msgid "Average Posts"
|
853 |
msgstr "গড় পোষ্ট"
|
854 |
|
855 |
-
#:
|
856 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:316
|
857 |
msgid "Average Comments"
|
858 |
msgstr "গড় মন্তব্য"
|
859 |
|
860 |
-
#:
|
861 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:319
|
862 |
msgid "Average Users"
|
863 |
msgstr "গড় ব্যবহারকারী"
|
864 |
|
865 |
-
#:
|
866 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:322
|
867 |
msgid "Last Post Date"
|
868 |
msgstr "শেষ পোষ্টের তারিখ"
|
869 |
|
870 |
-
#:
|
871 |
msgid "Name"
|
872 |
msgstr "নাম"
|
873 |
|
874 |
-
#:
|
875 |
msgid "Items"
|
876 |
msgstr "আইটেম"
|
877 |
|
878 |
-
#:
|
879 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:517
|
880 |
msgid "Yesterday visit"
|
881 |
msgstr "গতকাল দেখেছে"
|
882 |
|
883 |
-
#:
|
884 |
msgid "Search Engine Referred"
|
885 |
msgstr ""
|
886 |
|
887 |
-
#:
|
888 |
msgid "Select type of search engine"
|
889 |
msgstr "সার্চ ইঞ্জিন নির্বাচন করুন"
|
890 |
|
891 |
-
#:
|
892 |
msgid "ERROR: WP Statistics has detected an unsupported version of PHP, WP Statistics will not function without PHP Version "
|
893 |
msgstr ""
|
894 |
|
895 |
-
#:
|
896 |
msgid " or higher!"
|
897 |
msgstr ""
|
898 |
|
899 |
-
#:
|
900 |
msgid "Your current PHP version is"
|
901 |
msgstr ""
|
902 |
|
903 |
-
#:
|
904 |
msgid "WP Statistics has been removed, please disable and delete it."
|
905 |
msgstr ""
|
906 |
|
907 |
-
|
|
|
|
|
908 |
msgid "WP Statistics"
|
909 |
msgstr ""
|
910 |
|
911 |
-
|
|
|
|
|
912 |
msgid "Complete statistics for your WordPress site."
|
913 |
msgstr ""
|
914 |
|
915 |
-
#:
|
916 |
msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
|
917 |
msgstr ""
|
918 |
|
919 |
-
#:
|
920 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:112
|
921 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:115
|
922 |
msgid "setting page"
|
923 |
msgstr ""
|
924 |
|
925 |
-
#:
|
926 |
msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
|
927 |
msgstr ""
|
928 |
|
929 |
-
#:
|
930 |
msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
|
931 |
msgstr ""
|
932 |
|
933 |
-
#:
|
934 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
935 |
msgstr ""
|
936 |
|
937 |
-
#:
|
938 |
msgid "Setting page > GeoIP"
|
939 |
msgstr ""
|
940 |
|
941 |
-
#:
|
942 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:331
|
943 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:403
|
944 |
msgid "Settings"
|
945 |
msgstr "সেটিসং"
|
946 |
|
947 |
-
#:
|
948 |
msgid "Click here to visit the plugin on WordPress.org"
|
949 |
msgstr ""
|
950 |
|
951 |
-
#:
|
952 |
msgid "Visit WordPress.org page"
|
953 |
msgstr ""
|
954 |
|
955 |
-
#:
|
956 |
msgid "Click here to rate and review this plugin on WordPress.org"
|
957 |
msgstr ""
|
958 |
|
959 |
-
#:
|
960 |
msgid "Rate this plugin"
|
961 |
msgstr ""
|
962 |
|
963 |
-
#:
|
964 |
msgid "WP Statistics - Hits"
|
965 |
msgstr ""
|
966 |
|
967 |
-
#:
|
968 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:352
|
969 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:390
|
970 |
msgid "Overview"
|
971 |
msgstr ""
|
972 |
|
973 |
-
#:
|
974 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:395
|
975 |
msgid "Online"
|
976 |
msgstr ""
|
977 |
|
978 |
-
#:
|
979 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:397
|
980 |
msgid "Referrers"
|
981 |
msgstr ""
|
982 |
|
983 |
-
#:
|
984 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:398
|
985 |
msgid "Searches"
|
986 |
msgstr ""
|
987 |
|
988 |
-
#:
|
989 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:399
|
990 |
msgid "Search Words"
|
991 |
msgstr ""
|
992 |
|
993 |
-
#:
|
994 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:400
|
995 |
msgid "Top Visitors Today"
|
996 |
msgstr ""
|
997 |
|
998 |
-
#:
|
999 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:402
|
1000 |
msgid "Optimization"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
-
#:
|
1004 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:366
|
1005 |
msgid "Manual"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
-
#:
|
1009 |
msgid "Site"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
-
#:
|
1013 |
msgid "Options"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
-
#:
|
1017 |
msgid "Today visitor"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
-
#:
|
1021 |
msgid "Today visit"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
-
#:
|
1025 |
msgid "Yesterday visitor"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
-
#:
|
1029 |
msgid "View Stats"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
-
#:
|
1033 |
msgid "Download ODF file"
|
1034 |
msgstr ""
|
1035 |
|
1036 |
-
#:
|
1037 |
msgid "Download HTML file"
|
1038 |
msgstr ""
|
1039 |
|
1040 |
-
#:
|
1041 |
msgid "Manual file not found."
|
1042 |
msgstr ""
|
1043 |
|
1044 |
-
#:
|
1045 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:730
|
1046 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:764
|
1047 |
msgid "You do not have sufficient permissions to access this page."
|
1048 |
msgstr "আপনার এই পেজ দেখার মত পর্যাপ্ত অনুমতি নেই।"
|
1049 |
|
1050 |
-
#:
|
1051 |
msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
|
1052 |
msgstr ""
|
1053 |
|
1054 |
-
#:
|
1055 |
msgid "WP Statistics %s installed on"
|
1056 |
msgstr ""
|
1057 |
|
1058 |
-
#:
|
1059 |
msgid "Error downloading GeoIP database from: %s - %s"
|
1060 |
msgstr ""
|
1061 |
|
1062 |
-
#:
|
1063 |
msgid "Error could not open downloaded GeoIP database for reading: %s"
|
1064 |
msgstr ""
|
1065 |
|
1066 |
-
#:
|
1067 |
msgid "Error could not open destination GeoIP database for writing %s"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
-
#:
|
1071 |
msgid "GeoIP Database updated successfully!"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
-
#:
|
1075 |
msgid "GeoIP update on"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
-
#:
|
1079 |
msgid "Error downloading browscap database from: %s - %s"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
-
#:
|
1083 |
msgid "browscap database updated successfully!"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
-
#:
|
1087 |
msgid "browscap database updated failed! Cache file too large, reverting to previous browscap.ini."
|
1088 |
msgstr ""
|
1089 |
|
1090 |
-
#:
|
1091 |
msgid "browscap database updated failed! New browscap.ini is mis-identifing user agents as crawlers, reverting to previous browscap.ini."
|
1092 |
msgstr ""
|
1093 |
|
1094 |
-
#:
|
1095 |
msgid "browscap already at current version!"
|
1096 |
msgstr ""
|
1097 |
|
1098 |
-
#:
|
1099 |
msgid "Browscap.ini update on"
|
1100 |
msgstr ""
|
1101 |
|
1102 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1103 |
msgid "Quick Stats"
|
1104 |
msgstr ""
|
1105 |
|
1106 |
-
#:
|
1107 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:54
|
1108 |
msgid "Top 10 Browsers"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
-
#:
|
1112 |
-
#:
|
1113 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:27
|
1114 |
msgid "Top 10 Countries"
|
1115 |
msgstr ""
|
1116 |
|
1117 |
-
#:
|
1118 |
msgid "Today's Visitor Map"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
-
#:
|
1122 |
-
#:
|
1123 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:8
|
1124 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:8
|
1125 |
msgid "Hit Statistics"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
-
#:
|
1129 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:11
|
1130 |
msgid "Top 10 Pages"
|
1131 |
msgstr ""
|
1132 |
|
1133 |
-
#:
|
1134 |
-
#:
|
1135 |
-
#:
|
1136 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:39
|
1137 |
msgid "Recent Visitors"
|
1138 |
msgstr ""
|
1139 |
|
1140 |
-
#:
|
1141 |
-
#:
|
1142 |
-
#:
|
1143 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:13
|
1144 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:26
|
1145 |
msgid "Top Referring Sites"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
-
#:
|
1149 |
-
#:
|
1150 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:76
|
1151 |
msgid "Search Engine Referrals"
|
1152 |
msgstr ""
|
1153 |
|
1154 |
-
#:
|
1155 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:8
|
1156 |
msgid "Summary"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
-
#:
|
1160 |
-
#:
|
1161 |
-
#:
|
1162 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:37
|
1163 |
msgid "Latest Search Words"
|
1164 |
msgstr ""
|
1165 |
|
1166 |
-
#:
|
1167 |
-
#:
|
1168 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:35
|
1169 |
msgid "Top 10 Visitors Today"
|
1170 |
msgstr ""
|
1171 |
|
1172 |
-
#:
|
1173 |
msgid "Please reload the dashboard to display the content of this widget."
|
1174 |
msgstr ""
|
1175 |
|
1176 |
-
#:
|
1177 |
msgid "WP Statistics Overview"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
-
#:
|
1181 |
msgid "This post is not yet published."
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#:
|
1185 |
msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
|
1186 |
msgstr ""
|
1187 |
|
1188 |
-
#:
|
1189 |
msgid "Updated %s GeoIP records in the visitors database."
|
1190 |
msgstr ""
|
1191 |
|
1192 |
-
#:
|
1193 |
-
#:
|
1194 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:50
|
1195 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:83
|
1196 |
msgid "%s data older than %s days purged successfully."
|
1197 |
msgstr ""
|
1198 |
|
1199 |
-
#:
|
1200 |
-
#:
|
1201 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:52
|
1202 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:85
|
1203 |
msgid "No records found to purge from %s!"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
-
#:
|
1207 |
msgid "Database pruned on"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
-
#:
|
1211 |
msgid "Please select a value over 30 days."
|
1212 |
msgstr ""
|
1213 |
|
1214 |
-
#:
|
1215 |
msgid "Browser Statistics"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
-
#:
|
1219 |
-
#:
|
1220 |
-
#:
|
1221 |
-
#:
|
1222 |
-
#:
|
1223 |
-
#:
|
1224 |
-
#:
|
1225 |
-
#:
|
1226 |
-
#:
|
1227 |
-
#:
|
1228 |
-
#:
|
1229 |
-
#:
|
1230 |
-
#:
|
1231 |
-
#:
|
1232 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:6
|
1233 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:9
|
1234 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:8
|
1235 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:7
|
1236 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:8
|
1237 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:9
|
1238 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:6
|
1239 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:11
|
1240 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:6
|
1241 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:7
|
1242 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:7
|
1243 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:6
|
1244 |
msgid "Click to toggle"
|
1245 |
msgstr ""
|
1246 |
|
1247 |
-
#:
|
1248 |
-
#:
|
1249 |
-
#:
|
1250 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:316
|
1251 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:391
|
1252 |
msgid "Browsers"
|
1253 |
msgstr ""
|
1254 |
|
1255 |
-
#:
|
1256 |
msgid "Browsers by type"
|
1257 |
msgstr ""
|
1258 |
|
1259 |
-
#:
|
1260 |
-
#:
|
1261 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:302
|
1262 |
msgid "Platform"
|
1263 |
msgstr ""
|
1264 |
|
1265 |
-
#:
|
1266 |
msgid "Browsers by platform"
|
1267 |
msgstr ""
|
1268 |
|
1269 |
-
#:
|
1270 |
msgid "%s Version"
|
1271 |
msgstr ""
|
1272 |
|
1273 |
-
#:
|
1274 |
msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
|
1275 |
msgstr ""
|
1276 |
|
1277 |
-
#:
|
1278 |
msgid "Exclusions Statistics"
|
1279 |
msgstr ""
|
1280 |
|
1281 |
-
#:
|
1282 |
msgid "10 Days"
|
1283 |
msgstr ""
|
1284 |
|
1285 |
-
#:
|
1286 |
msgid "20 Days"
|
1287 |
msgstr ""
|
1288 |
|
1289 |
-
#:
|
1290 |
msgid "30 Days"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
-
#:
|
1294 |
msgid "2 Months"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
-
#:
|
1298 |
msgid "3 Months"
|
1299 |
msgstr ""
|
1300 |
|
1301 |
-
#:
|
1302 |
msgid "6 Months"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
-
#:
|
1306 |
msgid "9 Months"
|
1307 |
msgstr ""
|
1308 |
|
1309 |
-
#:
|
1310 |
msgid "1 Year"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
-
#:
|
1314 |
-
msgid "Total Exclusions: %s"
|
1315 |
-
msgstr ""
|
1316 |
-
|
1317 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:74
|
1318 |
msgid "Exclusions Statistical Chart"
|
1319 |
msgstr ""
|
1320 |
|
1321 |
-
#:
|
1322 |
msgid "Excluded hits in the last"
|
1323 |
msgstr ""
|
1324 |
|
1325 |
-
#:
|
1326 |
-
#:
|
1327 |
-
#:
|
1328 |
-
#:
|
1329 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:55
|
1330 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:151
|
1331 |
msgid "days"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
-
#:
|
1335 |
msgid "Number of excluded hits"
|
1336 |
msgstr ""
|
1337 |
|
1338 |
-
#:
|
1339 |
msgid "Hits Statistics Chart"
|
1340 |
msgstr ""
|
1341 |
|
1342 |
-
#:
|
1343 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:51
|
1344 |
msgid "Hits in the last"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
-
#:
|
1348 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:72
|
1349 |
msgid "Number of visits and visitors"
|
1350 |
msgstr ""
|
1351 |
|
1352 |
-
#:
|
1353 |
-
#:
|
1354 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:32
|
1355 |
msgid "Visit"
|
1356 |
msgstr ""
|
1357 |
|
1358 |
-
#:
|
1359 |
-
#:
|
1360 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:31
|
1361 |
msgid "Visitor"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
-
#:
|
1365 |
msgid "Latest Search Word Statistics"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
-
#:
|
1369 |
-
#:
|
1370 |
-
#:
|
1371 |
-
#:
|
1372 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:71
|
1373 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:30
|
1374 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:32
|
1375 |
msgid "#hash#"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
-
#:
|
1379 |
-
#:
|
1380 |
-
#:
|
1381 |
-
#:
|
1382 |
-
#:
|
1383 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:39
|
1384 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:33
|
1385 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:113
|
1386 |
msgid "Map"
|
1387 |
msgstr ""
|
1388 |
|
1389 |
-
#:
|
1390 |
-
#:
|
1391 |
-
#:
|
1392 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:198
|
1393 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
|
1394 |
msgid "Page"
|
1395 |
msgstr ""
|
1396 |
|
1397 |
-
#:
|
1398 |
-
#:
|
1399 |
-
#:
|
1400 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:198
|
1401 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
|
1402 |
msgid "From"
|
1403 |
msgstr ""
|
1404 |
|
1405 |
-
#:
|
1406 |
-
#:
|
1407 |
-
#:
|
1408 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:135
|
1409 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:294
|
1410 |
msgid "All"
|
1411 |
msgstr "সকল"
|
1412 |
|
1413 |
-
#:
|
1414 |
msgid "Recent Visitor Statistics"
|
1415 |
msgstr ""
|
1416 |
|
1417 |
-
#:
|
1418 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:18
|
1419 |
msgid "Online Users"
|
1420 |
msgstr ""
|
1421 |
|
1422 |
-
#:
|
1423 |
msgid "Online for "
|
1424 |
msgstr ""
|
1425 |
|
1426 |
-
#:
|
1427 |
msgid "Page Trend for Post ID"
|
1428 |
msgstr ""
|
1429 |
|
1430 |
-
#:
|
1431 |
msgid "Page Trend"
|
1432 |
msgstr ""
|
1433 |
|
1434 |
-
#:
|
1435 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:28
|
1436 |
msgid "Search Engine Referral Statistics"
|
1437 |
msgstr ""
|
1438 |
|
1439 |
-
#:
|
1440 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:55
|
1441 |
msgid "Search engine referrals in the last"
|
1442 |
msgstr ""
|
1443 |
|
1444 |
-
#:
|
1445 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:76
|
1446 |
msgid "Number of referrals"
|
1447 |
msgstr ""
|
1448 |
|
1449 |
-
#:
|
1450 |
-
#:
|
1451 |
-
#:
|
1452 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:66
|
1453 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:106
|
1454 |
msgid "Total"
|
1455 |
msgstr ""
|
1456 |
|
1457 |
-
#:
|
1458 |
msgid "Top Countries"
|
1459 |
msgstr ""
|
1460 |
|
1461 |
-
#:
|
1462 |
-
#:
|
1463 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:27
|
1464 |
msgid "Rank"
|
1465 |
msgstr ""
|
1466 |
|
1467 |
-
#:
|
1468 |
-
#:
|
1469 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:29
|
1470 |
msgid "Flag"
|
1471 |
msgstr ""
|
1472 |
|
1473 |
-
#:
|
1474 |
-
#:
|
1475 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:30
|
1476 |
msgid "Country"
|
1477 |
msgstr ""
|
1478 |
|
1479 |
-
#:
|
1480 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:33
|
1481 |
msgid "Visitor Count"
|
1482 |
msgstr ""
|
1483 |
|
1484 |
-
#:
|
1485 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:149
|
1486 |
msgid "Top Pages"
|
1487 |
msgstr ""
|
1488 |
|
1489 |
-
#:
|
1490 |
msgid "Top 5 Pages Trends"
|
1491 |
msgstr ""
|
1492 |
|
1493 |
-
#:
|
1494 |
msgid "Top 5 Page Trending Stats"
|
1495 |
msgstr ""
|
1496 |
|
1497 |
-
#:
|
1498 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/page.php:61
|
1499 |
msgid "Number of Hits"
|
1500 |
msgstr ""
|
1501 |
|
1502 |
-
#:
|
1503 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:32
|
1504 |
msgid "No page title found"
|
1505 |
msgstr ""
|
1506 |
|
1507 |
-
#:
|
1508 |
-
#:
|
1509 |
-
#:
|
1510 |
-
#:
|
1511 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:127
|
1512 |
msgid "Visits"
|
1513 |
msgstr ""
|
1514 |
|
1515 |
-
#:
|
1516 |
msgid "To be added soon"
|
1517 |
msgstr ""
|
1518 |
|
1519 |
-
#:
|
1520 |
msgid "Referring sites from"
|
1521 |
msgstr ""
|
1522 |
|
1523 |
-
#:
|
1524 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:30
|
1525 |
msgid "References"
|
1526 |
msgstr ""
|
1527 |
|
1528 |
-
#:
|
1529 |
msgid "Top 100 Visitors Today"
|
1530 |
msgstr ""
|
1531 |
|
1532 |
-
#:
|
1533 |
msgid "About WP Statistics Version %s"
|
1534 |
msgstr ""
|
1535 |
|
1536 |
-
#:
|
1537 |
msgid "Website"
|
1538 |
msgstr ""
|
1539 |
|
1540 |
-
#:
|
1541 |
msgid "Rate and Review"
|
1542 |
msgstr ""
|
1543 |
|
1544 |
-
#:
|
1545 |
msgid "More Information"
|
1546 |
msgstr ""
|
1547 |
|
1548 |
-
#:
|
1549 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:12
|
1550 |
msgid "This product includes GeoLite2 data created by MaxMind, available from %s."
|
1551 |
msgstr ""
|
1552 |
|
1553 |
-
#:
|
1554 |
-
#:
|
1555 |
-
#:
|
1556 |
-
#:
|
1557 |
-
#:
|
1558 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:13
|
1559 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:7
|
1560 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:8
|
1561 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:8
|
1562 |
msgid "More"
|
1563 |
msgstr ""
|
1564 |
|
1565 |
-
#:
|
1566 |
msgid "Other"
|
1567 |
msgstr ""
|
1568 |
|
1569 |
-
#:
|
1570 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:9
|
1571 |
msgid "Today Visitors Map"
|
1572 |
msgstr ""
|
1573 |
|
1574 |
-
#:
|
1575 |
msgid "Address"
|
1576 |
msgstr ""
|
1577 |
|
1578 |
-
#:
|
1579 |
msgid "User(s) Online"
|
1580 |
msgstr ""
|
1581 |
|
1582 |
-
#:
|
1583 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:81
|
1584 |
msgid "Today"
|
1585 |
msgstr ""
|
1586 |
|
1587 |
-
#:
|
1588 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:82
|
1589 |
msgid "Yesterday"
|
1590 |
msgstr ""
|
1591 |
|
1592 |
-
#:
|
1593 |
msgid "Daily Total"
|
1594 |
msgstr ""
|
1595 |
|
1596 |
-
#:
|
1597 |
msgid "Current Time and Date"
|
1598 |
msgstr ""
|
1599 |
|
1600 |
-
#:
|
1601 |
msgid "(Adjustment)"
|
1602 |
msgstr ""
|
1603 |
|
1604 |
-
#:
|
1605 |
msgid "Date: %s"
|
1606 |
msgstr ""
|
1607 |
|
1608 |
-
#:
|
1609 |
msgid "Time: %s"
|
1610 |
msgstr ""
|
1611 |
|
1612 |
-
#:
|
1613 |
-
#:
|
1614 |
-
#:
|
1615 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:394
|
1616 |
msgid "Hits"
|
1617 |
msgstr ""
|
1618 |
|
1619 |
-
#:
|
1620 |
msgid "IP"
|
1621 |
msgstr "আইপি"
|
1622 |
|
1623 |
-
#:
|
1624 |
msgid "Agent"
|
1625 |
msgstr ""
|
1626 |
|
1627 |
-
#:
|
1628 |
-
#:
|
1629 |
msgid "Version"
|
1630 |
msgstr ""
|
1631 |
|
1632 |
-
#:
|
1633 |
-
#:
|
1634 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:5
|
1635 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:5
|
1636 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:6
|
1637 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:6
|
1638 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/manual/manual.php:5
|
1639 |
msgid "Access denied!"
|
1640 |
msgstr ""
|
1641 |
|
1642 |
-
#:
|
1643 |
msgid "%s agent data deleted successfully."
|
1644 |
msgstr ""
|
1645 |
|
1646 |
-
#:
|
1647 |
msgid "No agent data found to remove!"
|
1648 |
msgstr ""
|
1649 |
|
1650 |
-
#:
|
1651 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:21
|
1652 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:42
|
1653 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:80
|
1654 |
msgid "Please select the desired items."
|
1655 |
msgstr ""
|
1656 |
|
1657 |
-
#:
|
1658 |
msgid "%s platform data deleted successfully."
|
1659 |
msgstr ""
|
1660 |
|
1661 |
-
#:
|
1662 |
msgid "No platform data found to remove!"
|
1663 |
msgstr ""
|
1664 |
|
1665 |
-
#:
|
1666 |
msgid "%s table data deleted successfully."
|
1667 |
msgstr ""
|
1668 |
|
1669 |
-
#:
|
1670 |
msgid "Error, %s not emptied!"
|
1671 |
msgstr ""
|
1672 |
|
1673 |
-
#:
|
1674 |
msgid "Database Setup"
|
1675 |
msgstr ""
|
1676 |
|
1677 |
-
#:
|
1678 |
msgid "Re-run Install"
|
1679 |
msgstr ""
|
1680 |
|
1681 |
-
#:
|
1682 |
msgid "Install Now!"
|
1683 |
msgstr ""
|
1684 |
|
1685 |
-
#:
|
1686 |
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."
|
1687 |
msgstr ""
|
1688 |
|
1689 |
-
#:
|
1690 |
msgid "Database Index"
|
1691 |
msgstr ""
|
1692 |
|
1693 |
-
#:
|
1694 |
-
#:
|
1695 |
-
#:
|
1696 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:392
|
1697 |
msgid "Countries"
|
1698 |
msgstr ""
|
1699 |
|
1700 |
-
#:
|
1701 |
-
#:
|
1702 |
-
#:
|
1703 |
-
#:
|
1704 |
msgid "Update Now!"
|
1705 |
msgstr ""
|
1706 |
|
1707 |
-
#:
|
1708 |
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."
|
1709 |
msgstr ""
|
1710 |
|
1711 |
-
#:
|
1712 |
msgid "This operation could take a long time on installs with many rows in the visitors table."
|
1713 |
msgstr ""
|
1714 |
|
1715 |
-
#:
|
1716 |
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."
|
1717 |
msgstr ""
|
1718 |
|
1719 |
-
#:
|
1720 |
-
#:
|
1721 |
msgid "Congratulations, your installation is already up to date, nothing to do."
|
1722 |
msgstr ""
|
1723 |
|
1724 |
-
#:
|
1725 |
-
#:
|
1726 |
msgid "Export"
|
1727 |
msgstr ""
|
1728 |
|
1729 |
-
#:
|
1730 |
msgid "Export from"
|
1731 |
msgstr ""
|
1732 |
|
1733 |
-
#:
|
1734 |
-
#:
|
1735 |
-
#:
|
1736 |
-
#:
|
1737 |
-
#:
|
1738 |
-
#:
|
1739 |
-
#:
|
1740 |
msgid "Please select"
|
1741 |
msgstr ""
|
1742 |
|
1743 |
-
#:
|
1744 |
msgid "Select the table for the output file."
|
1745 |
msgstr ""
|
1746 |
|
1747 |
-
#:
|
1748 |
msgid "Export To"
|
1749 |
msgstr ""
|
1750 |
|
1751 |
-
#:
|
1752 |
msgid "Select the output file type."
|
1753 |
msgstr ""
|
1754 |
|
1755 |
-
#:
|
1756 |
msgid "Include Header Row"
|
1757 |
msgstr ""
|
1758 |
|
1759 |
-
#:
|
1760 |
msgid "Include a header row as the first line of the exported file."
|
1761 |
msgstr ""
|
1762 |
|
1763 |
-
#:
|
1764 |
msgid "Start Now!"
|
1765 |
msgstr ""
|
1766 |
|
1767 |
-
#:
|
1768 |
msgid "Historical Values"
|
1769 |
msgstr ""
|
1770 |
|
1771 |
-
#:
|
1772 |
msgid "Note: As you have just purged the database you must reload this page for these numbers to be correct."
|
1773 |
msgstr ""
|
1774 |
|
1775 |
-
#:
|
1776 |
-
#:
|
1777 |
-
#:
|
1778 |
-
#:
|
1779 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:401
|
1780 |
msgid "Visitors"
|
1781 |
msgstr ""
|
1782 |
|
1783 |
-
#:
|
1784 |
msgid "Number of historical number of visitors to the site (current value is %s)."
|
1785 |
msgstr ""
|
1786 |
|
1787 |
-
#:
|
1788 |
msgid "Number of historical number of visits to the site (current value is %s)."
|
1789 |
msgstr ""
|
1790 |
|
1791 |
-
#:
|
1792 |
msgid "Update now!"
|
1793 |
msgstr ""
|
1794 |
|
1795 |
-
#:
|
1796 |
-
#:
|
1797 |
-
#:
|
1798 |
-
#:
|
|
|
1799 |
msgid "Are you sure?"
|
1800 |
msgstr ""
|
1801 |
|
1802 |
-
#:
|
1803 |
msgid "Data"
|
1804 |
msgstr ""
|
1805 |
|
1806 |
-
#:
|
1807 |
msgid "Empty Table"
|
1808 |
msgstr ""
|
1809 |
|
1810 |
-
#:
|
1811 |
msgid "All data table will be lost."
|
1812 |
msgstr ""
|
1813 |
|
1814 |
-
#:
|
1815 |
msgid "Clear now!"
|
1816 |
msgstr ""
|
1817 |
|
1818 |
-
#:
|
1819 |
msgid "Purge records older than"
|
1820 |
msgstr ""
|
1821 |
|
1822 |
-
#:
|
1823 |
msgid "Deleted user statistics data older than the selected number of days. Minimum value is 30 days."
|
1824 |
msgstr ""
|
1825 |
|
1826 |
-
#:
|
|
|
1827 |
msgid "Purge now!"
|
1828 |
msgstr ""
|
1829 |
|
1830 |
-
#:
|
1831 |
msgid "Delete User Agent Types"
|
1832 |
msgstr ""
|
1833 |
|
1834 |
-
#:
|
1835 |
msgid "Delete Agents"
|
1836 |
msgstr ""
|
1837 |
|
1838 |
-
#:
|
1839 |
msgid "All visitor data will be lost for this agent type."
|
1840 |
msgstr ""
|
1841 |
|
1842 |
-
#:
|
1843 |
-
#:
|
1844 |
msgid "Delete now!"
|
1845 |
msgstr ""
|
1846 |
|
1847 |
-
#:
|
1848 |
msgid "Delete Platforms"
|
1849 |
msgstr ""
|
1850 |
|
1851 |
-
#:
|
1852 |
msgid "All visitor data will be lost for this platform type."
|
1853 |
msgstr ""
|
1854 |
|
1855 |
-
#:
|
1856 |
msgid "Resources"
|
1857 |
msgstr ""
|
1858 |
|
1859 |
-
#:
|
1860 |
-
#:
|
1861 |
msgid "Memory usage in PHP"
|
1862 |
msgstr ""
|
1863 |
|
1864 |
-
#:
|
1865 |
-
#:
|
1866 |
msgid "Byte"
|
1867 |
msgstr ""
|
1868 |
|
1869 |
-
#:
|
1870 |
msgid "Last Overview page memory usage"
|
1871 |
msgstr ""
|
1872 |
|
1873 |
-
#:
|
1874 |
msgid "Memory usage in the overview page"
|
1875 |
msgstr ""
|
1876 |
|
1877 |
-
#:
|
1878 |
msgid "PHP Memory Limit"
|
1879 |
msgstr ""
|
1880 |
|
1881 |
-
#:
|
1882 |
msgid "The memory limit a script is allowed to consume, set in php.ini."
|
1883 |
msgstr ""
|
1884 |
|
1885 |
-
#:
|
1886 |
-
#:
|
1887 |
-
#:
|
1888 |
-
#:
|
1889 |
-
#:
|
1890 |
-
#:
|
1891 |
msgid "Number of rows in the %s table"
|
1892 |
msgstr ""
|
1893 |
|
1894 |
-
#:
|
1895 |
-
#:
|
1896 |
-
#:
|
1897 |
-
#:
|
1898 |
-
#:
|
1899 |
-
#:
|
1900 |
msgid "Row"
|
1901 |
msgstr ""
|
1902 |
|
1903 |
-
#:
|
1904 |
-
#:
|
1905 |
-
#:
|
1906 |
-
#:
|
1907 |
-
#:
|
1908 |
-
#:
|
1909 |
msgid "Number of rows"
|
1910 |
msgstr ""
|
1911 |
|
1912 |
-
#:
|
1913 |
msgid "Version Info"
|
1914 |
msgstr ""
|
1915 |
|
1916 |
-
#:
|
1917 |
msgid "WP Statistics Version"
|
1918 |
msgstr ""
|
1919 |
|
1920 |
-
#:
|
1921 |
msgid "The WP Statistics version you are running."
|
1922 |
msgstr ""
|
1923 |
|
1924 |
-
#:
|
1925 |
msgid "PHP Version"
|
1926 |
msgstr ""
|
1927 |
|
1928 |
-
#:
|
1929 |
msgid "The PHP version you are running."
|
1930 |
msgstr ""
|
1931 |
|
1932 |
-
#:
|
1933 |
msgid "PHP Safe Mode"
|
1934 |
msgstr ""
|
1935 |
|
1936 |
-
#:
|
1937 |
msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
|
1938 |
msgstr ""
|
1939 |
|
1940 |
-
#:
|
1941 |
msgid "jQuery Version"
|
1942 |
msgstr ""
|
1943 |
|
1944 |
-
#:
|
1945 |
msgid "The jQuery version you are running."
|
1946 |
msgstr ""
|
1947 |
|
1948 |
-
#:
|
1949 |
msgid "cURL Version"
|
1950 |
msgstr ""
|
1951 |
|
1952 |
-
#:
|
1953 |
msgid "cURL not installed"
|
1954 |
msgstr ""
|
1955 |
|
1956 |
-
#:
|
1957 |
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."
|
1958 |
msgstr ""
|
1959 |
|
1960 |
-
#:
|
1961 |
msgid "BC Math"
|
1962 |
msgstr ""
|
1963 |
|
1964 |
-
#:
|
1965 |
msgid "Installed"
|
1966 |
msgstr ""
|
1967 |
|
1968 |
-
#:
|
1969 |
msgid "Not installed"
|
1970 |
msgstr ""
|
1971 |
|
1972 |
-
#:
|
1973 |
msgid "If the PHP BC Math Extension is installed. BC Math is no longer required for the GeoIP code and is listed here only for historical reasons."
|
1974 |
msgstr ""
|
1975 |
|
1976 |
-
#:
|
1977 |
msgid "File Info"
|
1978 |
msgstr ""
|
1979 |
|
1980 |
-
#:
|
1981 |
msgid "GeoIP Database"
|
1982 |
msgstr ""
|
1983 |
|
1984 |
-
#:
|
1985 |
msgid "Database file does not exist."
|
1986 |
msgstr ""
|
1987 |
|
1988 |
-
#:
|
1989 |
-
#:
|
1990 |
-
#:
|
1991 |
msgid ", created on "
|
1992 |
msgstr ""
|
1993 |
|
1994 |
-
#:
|
1995 |
msgid "The file size and date of the GeoIP database."
|
1996 |
msgstr ""
|
1997 |
|
1998 |
-
#:
|
1999 |
msgid "browscap.ini File"
|
2000 |
msgstr ""
|
2001 |
|
2002 |
-
#:
|
2003 |
msgid "browscap.ini file does not exist."
|
2004 |
msgstr ""
|
2005 |
|
2006 |
-
#:
|
2007 |
msgid "The file size and date of the browscap.ini file."
|
2008 |
msgstr ""
|
2009 |
|
2010 |
-
#:
|
2011 |
msgid "browscap Cache File"
|
2012 |
msgstr ""
|
2013 |
|
2014 |
-
#:
|
2015 |
msgid "browscap cache file does not exist."
|
2016 |
msgstr ""
|
2017 |
|
2018 |
-
#:
|
2019 |
msgid "The file size and date of the browscap cache file."
|
2020 |
msgstr ""
|
2021 |
|
2022 |
-
#:
|
2023 |
msgid "Client Info"
|
2024 |
msgstr ""
|
2025 |
|
2026 |
-
#:
|
2027 |
msgid "Client IP"
|
2028 |
msgstr ""
|
2029 |
|
2030 |
-
#:
|
2031 |
msgid "The client IP address."
|
2032 |
msgstr ""
|
2033 |
|
2034 |
-
#:
|
2035 |
msgid "User Agent"
|
2036 |
msgstr ""
|
2037 |
|
2038 |
-
#:
|
2039 |
msgid "The client user agent string."
|
2040 |
msgstr ""
|
2041 |
|
2042 |
-
#:
|
2043 |
msgid "Browser"
|
2044 |
msgstr ""
|
2045 |
|
2046 |
-
#:
|
2047 |
msgid "The detected client browser."
|
2048 |
msgstr ""
|
2049 |
|
2050 |
-
#:
|
2051 |
msgid "The detected client browser version."
|
2052 |
msgstr ""
|
2053 |
|
2054 |
-
#:
|
2055 |
msgid "The detected client platform."
|
2056 |
msgstr ""
|
2057 |
|
2058 |
-
#:
|
2059 |
msgid "This will replace all IP addresses in the database with hash values and cannot be undo, are you sure?"
|
2060 |
msgstr ""
|
2061 |
|
2062 |
-
#:
|
2063 |
msgid "GeoIP Options"
|
2064 |
msgstr ""
|
2065 |
|
2066 |
-
#:
|
2067 |
msgid "Updates any unknown location data in the database, this may take a while"
|
2068 |
msgstr ""
|
2069 |
|
2070 |
-
#:
|
2071 |
-
#:
|
2072 |
msgid "IP Addresses"
|
2073 |
msgstr ""
|
2074 |
|
2075 |
-
#:
|
2076 |
-
#:
|
2077 |
msgid "Hash IP Addresses"
|
2078 |
msgstr ""
|
2079 |
|
2080 |
-
#:
|
2081 |
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"
|
2082 |
msgstr ""
|
2083 |
|
2084 |
-
#:
|
2085 |
msgid "IP Addresses replaced with hash values."
|
2086 |
msgstr ""
|
2087 |
|
2088 |
-
#:
|
2089 |
msgid "Install routine complete."
|
2090 |
msgstr ""
|
2091 |
|
2092 |
-
#:
|
2093 |
msgid "Resources/Information"
|
2094 |
msgstr ""
|
2095 |
|
2096 |
-
#:
|
2097 |
msgid "Purging"
|
2098 |
msgstr ""
|
2099 |
|
2100 |
-
#:
|
2101 |
msgid "Database"
|
2102 |
msgstr ""
|
2103 |
|
2104 |
-
#:
|
2105 |
msgid "Updates"
|
2106 |
msgstr ""
|
2107 |
|
2108 |
-
#:
|
2109 |
msgid "Historical"
|
2110 |
msgstr ""
|
2111 |
|
2112 |
-
#:
|
2113 |
msgid "WP Statistics V%s"
|
2114 |
msgstr ""
|
2115 |
|
2116 |
-
#:
|
2117 |
msgid "Visit Us Online"
|
2118 |
msgstr ""
|
2119 |
|
2120 |
-
#:
|
2121 |
msgid "Come visit our great new %s and keep up to date on the latest news about WP Statistics."
|
2122 |
msgstr ""
|
2123 |
|
2124 |
-
#:
|
2125 |
msgid "website"
|
2126 |
msgstr ""
|
2127 |
|
2128 |
-
#:
|
2129 |
msgid "Rate and Review at WordPress.org"
|
2130 |
msgstr ""
|
2131 |
|
2132 |
-
#:
|
2133 |
msgid "Thanks for installing WP Statistics, we encourage you to submit a "
|
2134 |
msgstr ""
|
2135 |
|
2136 |
-
#:
|
2137 |
msgid "rating and review"
|
2138 |
msgstr ""
|
2139 |
|
2140 |
-
#:
|
2141 |
msgid "over at WordPress.org. Your feedback is greatly appreciated!"
|
2142 |
msgstr ""
|
2143 |
|
2144 |
-
#:
|
2145 |
msgid "Translations"
|
2146 |
msgstr ""
|
2147 |
|
2148 |
-
#:
|
2149 |
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."
|
2150 |
msgstr ""
|
2151 |
|
2152 |
-
#:
|
2153 |
msgid "translation collaboration site"
|
2154 |
msgstr ""
|
2155 |
|
2156 |
-
#:
|
2157 |
msgid "drop us a line"
|
2158 |
msgstr ""
|
2159 |
|
2160 |
-
#:
|
2161 |
msgid "Support"
|
2162 |
msgstr ""
|
2163 |
|
2164 |
-
#:
|
2165 |
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:"
|
2166 |
msgstr ""
|
2167 |
|
2168 |
-
#:
|
2169 |
-
#:
|
2170 |
msgid "Have you read the %s?"
|
2171 |
msgstr ""
|
2172 |
|
2173 |
-
#:
|
2174 |
msgid "FAQs"
|
2175 |
msgstr ""
|
2176 |
|
2177 |
-
#:
|
2178 |
msgid "manual"
|
2179 |
msgstr ""
|
2180 |
|
2181 |
-
#:
|
2182 |
msgid "Have you search the %s for a similar issue?"
|
2183 |
msgstr ""
|
2184 |
|
2185 |
-
#:
|
2186 |
msgid "support forum"
|
2187 |
msgstr ""
|
2188 |
|
2189 |
-
#:
|
2190 |
msgid "Have you search the Internet for any error messages you are receiving?"
|
2191 |
msgstr ""
|
2192 |
|
2193 |
-
#:
|
2194 |
msgid "Make sure you have access to your PHP error logs."
|
2195 |
msgstr ""
|
2196 |
|
2197 |
-
#:
|
2198 |
msgid "And a few things to double-check:"
|
2199 |
msgstr ""
|
2200 |
|
2201 |
-
#:
|
2202 |
msgid "How's your memory_limit in php.ini?"
|
2203 |
msgstr ""
|
2204 |
|
2205 |
-
#:
|
2206 |
msgid "Have you tried disabling any other plugins you may have installed?"
|
2207 |
msgstr ""
|
2208 |
|
2209 |
-
#:
|
2210 |
msgid "Have you tried using the default WordPress theme?"
|
2211 |
msgstr ""
|
2212 |
|
2213 |
-
#:
|
2214 |
msgid "Have you double checked the plugin settings?"
|
2215 |
msgstr ""
|
2216 |
|
2217 |
-
#:
|
2218 |
msgid "Do you have all the required PHP extensions installed?"
|
2219 |
msgstr ""
|
2220 |
|
2221 |
-
#:
|
2222 |
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?"
|
2223 |
msgstr ""
|
2224 |
|
2225 |
-
#:
|
2226 |
msgid "Have you checked your PHP and web server error logs?"
|
2227 |
msgstr ""
|
2228 |
|
2229 |
-
#:
|
2230 |
msgid "Still not having any luck?"
|
2231 |
msgstr ""
|
2232 |
|
2233 |
-
#:
|
2234 |
msgid "Then please open a new thread on the %s and we'll respond as soon as possible."
|
2235 |
msgstr ""
|
2236 |
|
2237 |
-
#:
|
2238 |
msgid "WordPress.org support forum"
|
2239 |
msgstr ""
|
2240 |
|
2241 |
-
#:
|
2242 |
msgid "Alternatively %s support is available as well."
|
2243 |
msgstr ""
|
2244 |
|
2245 |
-
#:
|
2246 |
msgid "Farsi"
|
2247 |
msgstr ""
|
2248 |
|
2249 |
-
#:
|
2250 |
msgid "WP Statistics Honey Pot Page"
|
2251 |
msgstr ""
|
2252 |
|
2253 |
-
#:
|
2254 |
msgid "This is the honey pot for WP Statistics to use, do not delete."
|
2255 |
msgstr ""
|
2256 |
|
2257 |
-
#:
|
2258 |
msgid "Access Levels"
|
2259 |
msgstr ""
|
2260 |
|
2261 |
-
#:
|
2262 |
msgid "Required user level to view WP Statistics"
|
2263 |
msgstr ""
|
2264 |
|
2265 |
-
#:
|
2266 |
msgid "Required user level to manage WP Statistics"
|
2267 |
msgstr ""
|
2268 |
|
2269 |
-
#:
|
2270 |
msgid "See the %s for details on capability levels."
|
2271 |
msgstr ""
|
2272 |
|
2273 |
-
#:
|
2274 |
msgid "WordPress Roles and Capabilities page"
|
2275 |
msgstr ""
|
2276 |
|
2277 |
-
#:
|
2278 |
msgid "Hint: manage_network = Super Admin Network, manage_options = Administrator, edit_others_posts = Editor, publish_posts = Author, edit_posts = Contributor, read = Everyone."
|
2279 |
msgstr ""
|
2280 |
|
2281 |
-
#:
|
2282 |
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."
|
2283 |
msgstr ""
|
2284 |
|
2285 |
-
#:
|
2286 |
msgid "If you need a more robust solution to delegate access you might want to look at %s in the WordPress plugin directory."
|
2287 |
msgstr ""
|
2288 |
|
2289 |
-
#:
|
2290 |
-
#:
|
2291 |
-
#:
|
2292 |
msgid "Exclusions"
|
2293 |
msgstr ""
|
2294 |
|
2295 |
-
#:
|
2296 |
msgid "Record exclusions"
|
2297 |
msgstr ""
|
2298 |
|
2299 |
-
#:
|
2300 |
-
#:
|
2301 |
-
#:
|
2302 |
msgid "Enable"
|
2303 |
msgstr ""
|
2304 |
|
2305 |
-
#:
|
2306 |
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."
|
2307 |
msgstr ""
|
2308 |
|
2309 |
-
#:
|
2310 |
msgid "Exclude User Roles"
|
2311 |
msgstr ""
|
2312 |
|
2313 |
-
#:
|
2314 |
-
#:
|
2315 |
-
#:
|
2316 |
-
#:
|
2317 |
msgid "Exclude"
|
2318 |
msgstr ""
|
2319 |
|
2320 |
-
#:
|
2321 |
msgid "Exclude %s role from data collection."
|
2322 |
msgstr ""
|
2323 |
|
2324 |
-
#:
|
2325 |
msgid "IP/Robot Exclusions"
|
2326 |
msgstr ""
|
2327 |
|
2328 |
-
#:
|
2329 |
msgid "Robot list"
|
2330 |
msgstr ""
|
2331 |
|
2332 |
-
#:
|
2333 |
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."
|
2334 |
msgstr ""
|
2335 |
|
2336 |
-
#:
|
2337 |
msgid "Reset to Default"
|
2338 |
msgstr ""
|
2339 |
|
2340 |
-
#:
|
2341 |
msgid "Force robot list update after upgrades"
|
2342 |
msgstr ""
|
2343 |
|
2344 |
-
#:
|
2345 |
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."
|
2346 |
msgstr ""
|
2347 |
|
2348 |
-
#:
|
2349 |
msgid "Robot visit threshold"
|
2350 |
msgstr ""
|
2351 |
|
2352 |
-
#:
|
2353 |
msgid "Treat visitors with more than this number of visits per day as robots. 0 = disabled."
|
2354 |
msgstr ""
|
2355 |
|
2356 |
-
#:
|
2357 |
msgid "Excluded IP address list"
|
2358 |
msgstr ""
|
2359 |
|
2360 |
-
#:
|
2361 |
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."
|
2362 |
msgstr ""
|
2363 |
|
2364 |
-
#:
|
2365 |
msgid "Add 10.0.0.0"
|
2366 |
msgstr ""
|
2367 |
|
2368 |
-
#:
|
2369 |
msgid "Add 172.16.0.0"
|
2370 |
msgstr ""
|
2371 |
|
2372 |
-
#:
|
2373 |
msgid "Add 192.168.0.0"
|
2374 |
msgstr ""
|
2375 |
|
2376 |
-
#:
|
2377 |
msgid "Use honey pot"
|
2378 |
msgstr ""
|
2379 |
|
2380 |
-
#:
|
2381 |
msgid "Use a honey pot page to identify robots."
|
2382 |
msgstr ""
|
2383 |
|
2384 |
-
#:
|
2385 |
msgid "Honey pot post id"
|
2386 |
msgstr ""
|
2387 |
|
2388 |
-
#:
|
2389 |
msgid "The post id to use for the honeypot page."
|
2390 |
msgstr ""
|
2391 |
|
2392 |
-
#:
|
2393 |
msgid "Create a new honey pot page"
|
2394 |
msgstr ""
|
2395 |
|
2396 |
-
#:
|
2397 |
msgid "GeoIP Exclusions"
|
2398 |
msgstr ""
|
2399 |
|
2400 |
-
#:
|
2401 |
msgid "Excluded countries list"
|
2402 |
msgstr ""
|
2403 |
|
2404 |
-
#:
|
2405 |
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."
|
2406 |
msgstr ""
|
2407 |
|
2408 |
-
#:
|
2409 |
msgid "Included countries list"
|
2410 |
msgstr ""
|
2411 |
|
2412 |
-
#:
|
2413 |
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."
|
2414 |
msgstr ""
|
2415 |
|
2416 |
-
#:
|
2417 |
msgid "Host Exclusions"
|
2418 |
msgstr ""
|
2419 |
|
2420 |
-
#:
|
2421 |
msgid "Excluded hosts list"
|
2422 |
msgstr ""
|
2423 |
|
2424 |
-
#:
|
2425 |
msgid "A list of fully qualified host names (ie. server.example.com, one per line) to exclude from statistics collection."
|
2426 |
msgstr ""
|
2427 |
|
2428 |
-
#:
|
2429 |
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."
|
2430 |
msgstr ""
|
2431 |
|
2432 |
-
#:
|
2433 |
msgid "Site URL Exclusions"
|
2434 |
msgstr ""
|
2435 |
|
2436 |
-
#:
|
2437 |
msgid "Excluded login page"
|
2438 |
msgstr ""
|
2439 |
|
2440 |
-
#:
|
2441 |
msgid "Exclude the login page for registering as a hit."
|
2442 |
msgstr ""
|
2443 |
|
2444 |
-
#:
|
2445 |
msgid "Excluded admin pages"
|
2446 |
msgstr ""
|
2447 |
|
2448 |
-
#:
|
2449 |
msgid "Exclude the admin pages for registering as a hit."
|
2450 |
msgstr ""
|
2451 |
|
2452 |
-
#:
|
2453 |
msgid "Excluded RSS feeds"
|
2454 |
msgstr ""
|
2455 |
|
2456 |
-
#:
|
2457 |
msgid "Exclude the RSS feeds for registering as a hit."
|
2458 |
msgstr ""
|
2459 |
|
2460 |
-
#:
|
2461 |
msgid "browscap settings"
|
2462 |
msgstr ""
|
2463 |
|
2464 |
-
#:
|
2465 |
msgid "browscap usage"
|
2466 |
msgstr ""
|
2467 |
|
2468 |
-
#:
|
2469 |
-
#:
|
2470 |
-
#:
|
2471 |
-
#:
|
2472 |
-
#:
|
2473 |
-
#:
|
2474 |
-
#:
|
2475 |
-
#:
|
2476 |
-
#:
|
2477 |
-
#:
|
2478 |
-
#:
|
2479 |
-
#:
|
2480 |
-
#:
|
2481 |
-
#:
|
2482 |
-
#:
|
2483 |
-
#:
|
2484 |
-
#:
|
2485 |
-
#:
|
2486 |
-
#:
|
2487 |
-
#:
|
2488 |
-
#:
|
2489 |
-
#:
|
2490 |
-
#:
|
2491 |
-
#:
|
2492 |
-
#:
|
2493 |
-
#:
|
2494 |
-
#:
|
2495 |
-
#:
|
2496 |
-
#:
|
|
|
|
|
2497 |
msgid "Active"
|
2498 |
msgstr ""
|
2499 |
|
2500 |
-
#:
|
2501 |
msgid "The browscap database will be downloaded and used to detect robots."
|
2502 |
msgstr ""
|
2503 |
|
2504 |
-
#:
|
2505 |
msgid "Update browscap Info"
|
2506 |
msgstr ""
|
2507 |
|
2508 |
-
#:
|
2509 |
msgid "Download browscap Database"
|
2510 |
msgstr ""
|
2511 |
|
2512 |
-
#:
|
2513 |
-
#:
|
2514 |
msgid "Save changes on this page to download the update."
|
2515 |
msgstr ""
|
2516 |
|
2517 |
-
#:
|
2518 |
msgid "Schedule weekly update of browscap DB"
|
2519 |
msgstr ""
|
2520 |
|
2521 |
-
#:
|
2522 |
-
#:
|
2523 |
msgid "Next update will be"
|
2524 |
msgstr ""
|
2525 |
|
2526 |
-
#:
|
2527 |
msgid "Download of the browscap database will be scheduled for once a week."
|
2528 |
msgstr ""
|
2529 |
|
2530 |
-
#:
|
2531 |
msgid "This will delete the manual when you save the settings, are you sure?"
|
2532 |
msgstr ""
|
2533 |
|
2534 |
-
#:
|
2535 |
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."
|
2536 |
msgstr ""
|
2537 |
|
2538 |
-
#:
|
2539 |
msgid "Users Online"
|
2540 |
msgstr ""
|
2541 |
|
2542 |
-
#:
|
2543 |
msgid "User online"
|
2544 |
msgstr ""
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
+
#: includes/settings/tabs/wps-general.php:281
|
14 |
+
msgid "Add page title to empty search words"
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: includes/settings/tabs/wps-general.php:287
|
18 |
+
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."
|
19 |
+
msgstr ""
|
20 |
+
|
21 |
+
#: includes/settings/tabs/wps-maintenance.php:77
|
22 |
+
msgid "The number of hits required to delete the visitor. Invalid values will disable the daily maintenance (must be 10 or greater)."
|
23 |
+
msgstr ""
|
24 |
+
|
25 |
+
#: includes/settings/tabs/wps-maintenance.php:71
|
26 |
+
msgid "Prune visitors with more than"
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: includes/settings/tabs/wps-maintenance.php:65
|
30 |
+
msgid "A WP Cron job will be run daily to prune any users statistics data where the user has more than the defined number of hits in a day (aka they are probably a bot)."
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:217
|
34 |
+
msgid "Purge visitors with more than"
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:222
|
38 |
+
msgid "hits"
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:223
|
42 |
+
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."
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: includes/functions/purge-hits.php:28
|
46 |
+
msgid "No visitors found to purge."
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: includes/functions/purge-hits.php:25
|
50 |
+
msgid "%s records purged successfully."
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: ajax.php:174 includes/functions/purge-hits.php:32
|
54 |
+
msgid "Number of hits must be greater than or equal to 10!"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: shortcode.php:132
|
58 |
+
msgid "Page Visits"
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: shortcode.php:135
|
62 |
+
msgid "Page Count"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: shortcode.php:136
|
66 |
+
msgid "Comment Count"
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: shortcode.php:137
|
70 |
+
msgid "Spam Count"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: shortcode.php:138
|
74 |
+
msgid "User Count"
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: shortcode.php:139
|
78 |
+
msgid "Post Average"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: shortcode.php:140
|
82 |
+
msgid "Comment Average"
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: shortcode.php:141
|
86 |
+
msgid "User Average"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: shortcode.php:149
|
90 |
+
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: shortcode.php:153
|
94 |
+
msgid "Search Provider"
|
95 |
+
msgstr ""
|
96 |
+
|
97 |
+
#: shortcode.php:156
|
98 |
+
msgid "The search provider to get statistics on."
|
99 |
+
msgstr ""
|
100 |
+
|
101 |
+
#: shortcode.php:160
|
102 |
+
msgid "Number Format"
|
103 |
+
msgstr ""
|
104 |
+
|
105 |
+
#: shortcode.php:163
|
106 |
+
msgid "The format to display numbers in: i18n, english, none."
|
107 |
+
msgstr ""
|
108 |
+
|
109 |
+
#: shortcode.php:167
|
110 |
+
msgid "English"
|
111 |
+
msgstr ""
|
112 |
+
|
113 |
+
#: shortcode.php:168
|
114 |
+
msgid "International"
|
115 |
+
msgstr ""
|
116 |
+
|
117 |
+
#: includes/log/exclusions.php:191 includes/log/hit-statistics.php:163
|
118 |
+
msgid "Hits Statistics Summary"
|
119 |
+
msgstr ""
|
120 |
+
|
121 |
+
#: includes/log/exclusions.php:201 includes/log/hit-statistics.php:174
|
122 |
+
msgid "Chart Total"
|
123 |
+
msgstr ""
|
124 |
+
|
125 |
+
#: includes/log/exclusions.php:206 includes/log/hit-statistics.php:180
|
126 |
+
msgid "All Time Total"
|
127 |
+
msgstr ""
|
128 |
+
|
129 |
+
#: includes/log/log.php:57
|
130 |
+
msgid "Have you thought about donating to WP Statistics?"
|
131 |
+
msgstr ""
|
132 |
+
|
133 |
+
#: includes/settings/tabs/wps-about.php:20 wp-statistics.php:355
|
134 |
+
msgid "Donate"
|
135 |
+
msgstr ""
|
136 |
+
|
137 |
+
#: includes/settings/tabs/wps-about.php:24
|
138 |
+
msgid "Fell like showing us how much you enjoy WP Statistics? Drop by our %s page and show us some love!"
|
139 |
+
msgstr ""
|
140 |
+
|
141 |
+
#: includes/settings/tabs/wps-about.php:24
|
142 |
+
msgid "donation"
|
143 |
+
msgstr ""
|
144 |
+
|
145 |
+
#: includes/log/log.php:57
|
146 |
+
msgid "Donate Now!"
|
147 |
+
msgstr ""
|
148 |
+
|
149 |
+
#: includes/log/log.php:57
|
150 |
+
msgid "Close"
|
151 |
+
msgstr ""
|
152 |
+
|
153 |
+
#: shortcode.php:126
|
154 |
+
msgid "Select the statistic you wish to display."
|
155 |
+
msgstr ""
|
156 |
+
|
157 |
+
#: shortcode.php:123
|
158 |
+
msgid "Statistic"
|
159 |
+
msgstr ""
|
160 |
+
|
161 |
+
#: shortcode.php:134
|
162 |
+
msgid "Post Count"
|
163 |
+
msgstr ""
|
164 |
+
|
165 |
+
#: shortcode.php:146
|
166 |
+
msgid "Time Frame"
|
167 |
+
msgstr ""
|
168 |
+
|
169 |
+
#: includes/functions/functions.php:929
|
170 |
msgid "to"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: includes/functions/functions.php:929
|
174 |
msgid "Go"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: includes/log/top-pages.php:95
|
178 |
msgid "Rank #5"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: includes/log/top-pages.php:95
|
182 |
msgid "Rank #4"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: includes/log/top-pages.php:95
|
186 |
msgid "Rank #3"
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: includes/log/top-pages.php:95
|
190 |
msgid "Rank #1"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: includes/log/top-pages.php:95
|
194 |
msgid "Rank #2"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: includes/optimization/tabs/wps-optimization-database.php:56
|
198 |
msgid "Visits Table"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: includes/optimization/tabs/wps-optimization-database.php:70
|
202 |
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."
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: includes/optimization/tabs/wps-optimization-database.php:71
|
206 |
msgid "This operation could take a long time on installs with many rows in the visits table."
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: includes/optimization/tabs/wps-optimization-database.php:76
|
210 |
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."
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: includes/log/last-visitor.php:68
|
214 |
msgid "Filtered by"
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: includes/functions/functions.php:922 includes/functions/functions.php:925
|
|
|
218 |
msgid "Range"
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: includes/functions/functions.php:929
|
222 |
msgid "MM/DD/YYYY"
|
223 |
msgstr "MM/DD/YYYY"
|
224 |
|
225 |
+
#: includes/settings/tabs/wps-general.php:342
|
226 |
msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: includes/settings/tabs/wps-general.php:336
|
230 |
msgid "Force English"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: includes/settings/tabs/wps-general.php:331
|
234 |
msgid "Languages"
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: includes/settings/tabs/wps-access-level.php:271
|
238 |
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."
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: includes/settings/tabs/wps-access-level.php:269
|
242 |
msgid "A list of local urls (ie. /wordpress/about, one per line) to exclude from statistics collection."
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: includes/settings/tabs/wps-access-level.php:266
|
246 |
msgid "Excluded URLs list"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: includes/log/exclusions.php:24
|
250 |
msgid "Excluded URL"
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: includes/log/widgets/summary.php:66
|
254 |
msgid "Last 365 Days (Year)"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: includes/log/widgets/summary.php:60
|
258 |
msgid "Last 30 Days (Month)"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: includes/log/widgets/summary.php:54
|
262 |
msgid "Last 7 Days (Week)"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: includes/functions/functions.php:403
|
266 |
msgid "Yahoo!"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: includes/functions/functions.php:404
|
270 |
msgid "Yandex"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: includes/functions/functions.php:400
|
274 |
msgid "clearch.org"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: includes/functions/functions.php:401
|
278 |
msgid "DuckDuckGo"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: includes/functions/functions.php:399
|
282 |
msgid "Bing"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: includes/functions/functions.php:398
|
286 |
msgid "Baidu"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: editor.php:69
|
290 |
msgid "Hits in the last 20 days"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: includes/log/exclusions.php:24
|
294 |
msgid "Feeds"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: includes/log/exclusions.php:24
|
298 |
msgid "User Role"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: includes/log/exclusions.php:24
|
302 |
msgid "Login Page"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: includes/log/exclusions.php:24
|
306 |
msgid "Admin Page"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: includes/log/exclusions.php:24
|
310 |
msgid "Self Referral"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: includes/log/exclusions.php:24
|
314 |
msgid "IP Match"
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: includes/log/exclusions.php:24
|
318 |
msgid "Robot"
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: includes/log/online.php:100
|
322 |
msgid "Currently there are no users online in the site."
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: includes/log/exclusions.php:24
|
326 |
msgid "Robot Threshold"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: includes/log/exclusions.php:24
|
330 |
msgid "Honey Pot"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: includes/log/widgets/page.php:8
|
334 |
msgid "Page Trending Stats"
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: includes/log/exclusions.php:24
|
338 |
msgid "Hostname"
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: includes/settings/tabs/wps-general.php:93
|
342 |
+
#: includes/settings/tabs/wps-general.php:133
|
343 |
+
#: includes/settings/tabs/wps-general.php:149
|
344 |
+
#: includes/settings/tabs/wps-general.php:188
|
345 |
+
#: includes/settings/tabs/wps-general.php:200
|
346 |
+
#: includes/settings/tabs/wps-general.php:229
|
347 |
+
#: includes/settings/tabs/wps-notifications.php:122
|
348 |
msgid "Enable or disable this feature"
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: includes/settings/tabs/wps-general.php:99
|
352 |
msgid "Check for online users every"
|
353 |
msgstr "অনলাইনের ব্যবহারকারী চেক করবে"
|
354 |
|
355 |
+
#: includes/settings/tabs/wps-general.php:104
|
356 |
msgid "Second"
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: includes/settings/tabs/wps-general.php:105
|
360 |
msgid "Time for the check accurate online user in the site. Now: %s Second"
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: includes/settings/tabs/wps-general.php:111
|
364 |
msgid "Record all user"
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: includes/settings/tabs/wps-general.php:117
|
368 |
msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: includes/settings/tabs/wps-general.php:155
|
372 |
msgid "Store entire user agent string"
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: includes/settings/tabs/wps-general.php:161
|
376 |
msgid "Only enabled for debugging"
|
377 |
msgstr ""
|
378 |
|
379 |
+
#: includes/settings/tabs/wps-general.php:167
|
380 |
msgid "Coefficient per visitor"
|
381 |
msgstr "দর্শকের সুদক্ষতা"
|
382 |
|
383 |
+
#: includes/settings/tabs/wps-general.php:172
|
384 |
msgid "For each visit to account for several hits. Currently %s."
|
385 |
msgstr ""
|
386 |
|
387 |
+
#: includes/settings/tabs/wps-general.php:177
|
388 |
+
#: includes/settings/tabs/wps-general.php:182 wp-statistics.php:344
|
389 |
+
#: wp-statistics.php:420
|
|
|
390 |
msgid "Pages"
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: includes/settings/tabs/wps-general.php:194
|
394 |
msgid "Track all pages"
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: includes/settings/tabs/wps-general.php:209
|
398 |
msgid "Strip parameters from URI"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: includes/settings/tabs/wps-general.php:215
|
402 |
msgid "This will remove anything after the ? in a URL."
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: includes/settings/tabs/wps-general.php:223
|
406 |
msgid "Disable hits column in post/pages list"
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: includes/settings/tabs/wps-general.php:234
|
410 |
msgid "Miscellaneous"
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: includes/settings/tabs/wps-general.php:239
|
414 |
msgid "Show stats in menu bar"
|
415 |
msgstr "স্টাটস মেনুবারে দেখাও"
|
416 |
|
417 |
+
#: includes/settings/tabs/wps-general.php:244
|
418 |
msgid "No"
|
419 |
msgstr "না"
|
420 |
|
421 |
+
#: includes/settings/tabs/wps-general.php:245
|
422 |
msgid "Yes"
|
423 |
msgstr "হ্যা"
|
424 |
|
425 |
+
#: includes/settings/tabs/wps-general.php:247
|
426 |
msgid "Show stats in admin menu bar"
|
427 |
msgstr "স্টাটস অ্যাডমিনের মেনুবারে দেখাও"
|
428 |
|
429 |
+
#: includes/settings/tabs/wps-general.php:253
|
430 |
msgid "Hide admin notices about non active features"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: includes/settings/tabs/wps-general.php:259
|
434 |
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."
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: includes/settings/tabs/wps-general.php:265
|
438 |
msgid "Delete the manual"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: includes/settings/tabs/wps-general.php:271
|
442 |
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."
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: includes/settings/tabs/wps-general.php:276
|
446 |
msgid "Search Engines"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: includes/settings/tabs/wps-general.php:293
|
450 |
msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: includes/settings/tabs/wps-general.php:308
|
454 |
msgid "disable"
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: includes/settings/tabs/wps-general.php:309
|
458 |
msgid "Disable %s from data collection and reporting."
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: includes/settings/tabs/wps-general.php:315
|
462 |
msgid "Charts"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: includes/settings/tabs/wps-general.php:320
|
466 |
msgid "Include totals"
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: includes/settings/tabs/wps-general.php:326
|
470 |
msgid "Add a total line to charts with multiple values, like the search engine referrals"
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: includes/settings/tabs/wps-geoip.php:27
|
474 |
msgid "GeoIP settings"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: includes/settings/tabs/wps-geoip.php:32
|
478 |
msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: includes/settings/tabs/wps-geoip.php:42
|
482 |
msgid "GeoIP collection"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: includes/settings/tabs/wps-geoip.php:48
|
486 |
msgid "For get more information and location (country) from visitor, enable this feature."
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: includes/settings/tabs/wps-geoip.php:54
|
490 |
msgid "Update GeoIP Info"
|
491 |
msgstr ""
|
492 |
|
493 |
+
#: includes/settings/tabs/wps-geoip.php:59
|
494 |
msgid "Download GeoIP Database"
|
495 |
msgstr ""
|
496 |
|
497 |
+
#: includes/settings/tabs/wps-geoip.php:66
|
498 |
msgid "Schedule monthly update of GeoIP DB"
|
499 |
msgstr ""
|
500 |
|
501 |
+
#: includes/settings/tabs/wps-geoip.php:92
|
502 |
msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: includes/settings/tabs/wps-geoip.php:93
|
506 |
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)."
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: includes/settings/tabs/wps-geoip.php:99
|
510 |
msgid "Populate missing GeoIP after update of GeoIP DB"
|
511 |
msgstr ""
|
512 |
|
513 |
+
#: includes/settings/tabs/wps-geoip.php:105
|
514 |
msgid "Update any missing GeoIP data after downloading a new database."
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: includes/settings/tabs/wps-geoip.php:111
|
518 |
msgid "Country code for private IP addresses"
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: includes/settings/tabs/wps-geoip.php:116
|
522 |
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."
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: includes/settings/tabs/wps-geoip.php:127
|
526 |
msgid "GeoIP collection is disabled due to the following reasons:"
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: includes/settings/tabs/wps-geoip.php:130
|
530 |
msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: includes/settings/tabs/wps-geoip.php:135
|
534 |
msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: includes/settings/tabs/wps-geoip.php:141
|
538 |
msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: includes/settings/tabs/wps-geoip.php:147
|
542 |
msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: includes/settings/tabs/wps-maintenance.php:20
|
546 |
msgid "This will permanently delete data from the database each day, are you sure you want to enable this option?"
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: includes/settings/tabs/wps-maintenance.php:30
|
550 |
msgid "Database Maintenance"
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: includes/settings/tabs/wps-maintenance.php:35
|
554 |
+
#: includes/settings/tabs/wps-maintenance.php:59
|
555 |
msgid "Run a daily WP Cron job to prune the databases"
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: includes/settings/tabs/wps-maintenance.php:41
|
559 |
msgid "A WP Cron job will be run daily to prune any data older than a set number of days."
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: includes/settings/tabs/wps-maintenance.php:47
|
563 |
msgid "Prune data older than"
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: includes/settings/tabs/wps-maintenance.php:52
|
567 |
msgid "Days"
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: includes/settings/tabs/wps-maintenance.php:53
|
571 |
msgid "The number of days to keep statistics for. Minimum value is 30 days. Invalid values will disable the daily maintenance."
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: includes/settings/tabs/wps-notifications.php:44
|
575 |
msgid "Common Report Options"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: includes/settings/tabs/wps-notifications.php:49
|
579 |
msgid "E-mail addresses"
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: includes/settings/tabs/wps-notifications.php:54
|
583 |
msgid "A comma separated list of e-mail addresses to send reports to."
|
584 |
msgstr ""
|
585 |
|
586 |
+
#: includes/settings/tabs/wps-notifications.php:59
|
587 |
msgid "Update Reports"
|
588 |
msgstr ""
|
589 |
|
590 |
+
#: includes/log/exclusions.php:24
|
591 |
+
#: includes/settings/tabs/wps-notifications.php:64
|
592 |
msgid "Browscap"
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: includes/settings/tabs/wps-notifications.php:70
|
596 |
msgid "Send a report whenever the browscap.ini is updated."
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: includes/log/exclusions.php:24
|
600 |
+
#: includes/settings/tabs/wps-notifications.php:76
|
601 |
+
#: includes/settings/wps-settings.php:104
|
602 |
msgid "GeoIP"
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: includes/settings/tabs/wps-notifications.php:82
|
606 |
msgid "Send a report whenever the GeoIP database is updated."
|
607 |
msgstr ""
|
608 |
|
609 |
+
#: includes/settings/tabs/wps-notifications.php:88
|
610 |
msgid "Pruning"
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: includes/settings/tabs/wps-notifications.php:94
|
614 |
msgid "Send a report whenever the pruning of database is run."
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: includes/settings/tabs/wps-notifications.php:100
|
618 |
msgid "Upgrade"
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: includes/settings/tabs/wps-notifications.php:106
|
622 |
msgid "Send a report whenever the plugin is upgraded."
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: includes/settings/tabs/wps-notifications.php:111
|
626 |
+
#: includes/settings/tabs/wps-notifications.php:116 schedule.php:199
|
|
|
627 |
msgid "Statistical reporting"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: includes/settings/tabs/wps-notifications.php:129
|
631 |
msgid "Schedule"
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: includes/settings/tabs/wps-notifications.php:153
|
635 |
msgid "Select how often to receive statistical report."
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: includes/settings/tabs/wps-notifications.php:159
|
639 |
msgid "Send reports via"
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: includes/settings/tabs/wps-notifications.php:165
|
643 |
msgid "Email"
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: includes/settings/tabs/wps-notifications.php:167
|
647 |
msgid "SMS"
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: includes/settings/tabs/wps-notifications.php:170
|
651 |
msgid "Select delivery method for statistical report."
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: includes/settings/tabs/wps-notifications.php:173
|
655 |
msgid "Note: To send SMS text messages please install the %s plugin."
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: includes/settings/tabs/wps-notifications.php:173
|
659 |
msgid "WordPress SMS"
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: includes/settings/tabs/wps-notifications.php:180
|
663 |
msgid "Report body"
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: includes/settings/tabs/wps-notifications.php:185
|
667 |
msgid "Enter the contents of the report."
|
668 |
msgstr ""
|
669 |
|
670 |
+
#: includes/settings/tabs/wps-notifications.php:187
|
671 |
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:"
|
672 |
msgstr ""
|
673 |
|
674 |
+
#: includes/settings/tabs/wps-notifications.php:188 widget.php:38
|
675 |
+
#: widget.php:245 wp-statistics.php:522
|
|
|
|
|
676 |
msgid "User Online"
|
677 |
msgstr "এখন দেখছে"
|
678 |
|
679 |
+
#: includes/settings/tabs/wps-notifications.php:189 widget.php:52
|
680 |
+
#: widget.php:251
|
|
|
681 |
msgid "Today Visitor"
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: includes/settings/tabs/wps-notifications.php:190 widget.php:45
|
685 |
+
#: widget.php:248
|
|
|
686 |
msgid "Today Visit"
|
687 |
msgstr "আজ দেখেছে"
|
688 |
|
689 |
+
#: includes/settings/tabs/wps-notifications.php:191 widget.php:66
|
690 |
+
#: widget.php:257
|
|
|
691 |
msgid "Yesterday Visitor"
|
692 |
msgstr ""
|
693 |
|
694 |
+
#: includes/settings/tabs/wps-notifications.php:192 widget.php:59
|
|
|
695 |
msgid "Yesterday Visit"
|
696 |
msgstr "গতকাল দেখেছে"
|
697 |
|
698 |
+
#: includes/settings/tabs/wps-notifications.php:193 widget.php:101
|
699 |
+
#: widget.php:272
|
|
|
700 |
msgid "Total Visitor"
|
701 |
msgstr ""
|
702 |
|
703 |
+
#: includes/settings/tabs/wps-notifications.php:194 widget.php:94
|
704 |
+
#: widget.php:269
|
|
|
705 |
msgid "Total Visit"
|
706 |
msgstr "মোট দেখা হয়েছে"
|
707 |
|
708 |
+
#: includes/settings/tabs/wps-overview-display.php:23
|
709 |
+
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:166
|
710 |
msgid "None"
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: includes/settings/tabs/wps-overview-display.php:24
|
714 |
msgid "Summary Statistics"
|
715 |
msgstr ""
|
716 |
|
717 |
+
#: includes/settings/tabs/wps-overview-display.php:28
|
718 |
+
#: includes/settings/wps-settings.php:108
|
719 |
msgid "About"
|
720 |
msgstr ""
|
721 |
|
722 |
+
#: includes/settings/tabs/wps-overview-display.php:34
|
723 |
msgid "Hits Statistical Chart"
|
724 |
msgstr ""
|
725 |
|
726 |
+
#: includes/settings/tabs/wps-overview-display.php:36
|
727 |
msgid "Search Engine Referrers Statistical Chart"
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: includes/settings/tabs/wps-overview-display.php:38
|
731 |
msgid "Top Pages Visited"
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: includes/settings/tabs/wps-overview-display.php:73
|
735 |
msgid "Dashboard"
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: includes/settings/tabs/wps-overview-display.php:77
|
739 |
+
#: includes/settings/tabs/wps-overview-display.php:97
|
740 |
+
#: includes/settings/tabs/wps-overview-display.php:117
|
741 |
msgid "The following items are global to all users."
|
742 |
msgstr ""
|
743 |
|
744 |
+
#: includes/settings/tabs/wps-overview-display.php:82
|
745 |
msgid "Disable dashboard widgets"
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: includes/settings/tabs/wps-overview-display.php:88
|
749 |
msgid "Disable the dashboard widgets."
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: includes/settings/tabs/wps-overview-display.php:93
|
753 |
msgid "Page/Post Editor"
|
754 |
msgstr ""
|
755 |
|
756 |
+
#: includes/settings/tabs/wps-overview-display.php:102
|
757 |
msgid "Disable post/page editor widget"
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: includes/settings/tabs/wps-overview-display.php:108
|
761 |
msgid "Disable the page/post editor widget."
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: includes/settings/tabs/wps-overview-display.php:122
|
765 |
msgid "Map type"
|
766 |
msgstr ""
|
767 |
|
768 |
+
#: includes/functions/functions.php:402
|
769 |
+
#: includes/settings/tabs/wps-overview-display.php:128
|
770 |
msgid "Google"
|
771 |
msgstr "গুগল"
|
772 |
|
773 |
+
#: includes/settings/tabs/wps-overview-display.php:128
|
774 |
msgid "JQVMap"
|
775 |
msgstr ""
|
776 |
|
777 |
+
#: includes/settings/tabs/wps-overview-display.php:135
|
778 |
msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: includes/settings/tabs/wps-overview-display.php:136
|
782 |
msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
|
783 |
msgstr ""
|
784 |
|
785 |
+
#: includes/settings/tabs/wps-overview-display.php:142
|
786 |
msgid "Disable map"
|
787 |
msgstr ""
|
788 |
|
789 |
+
#: includes/settings/tabs/wps-overview-display.php:148
|
790 |
msgid "Disable the map display"
|
791 |
msgstr ""
|
792 |
|
793 |
+
#: includes/settings/tabs/wps-overview-display.php:154
|
794 |
msgid "Get country location from Google"
|
795 |
msgstr ""
|
796 |
|
797 |
+
#: includes/settings/tabs/wps-overview-display.php:160
|
798 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
799 |
msgstr ""
|
800 |
|
801 |
+
#: includes/settings/tabs/wps-overview-display.php:171
|
802 |
msgid "Overview Widgets to Display"
|
803 |
msgstr ""
|
804 |
|
805 |
+
#: includes/settings/tabs/wps-overview-display.php:175
|
806 |
msgid "The following items are unique to each user. If you do not select the 'About' widget it will automatically be displayed in the last positon of column A."
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: includes/settings/tabs/wps-overview-display.php:180
|
810 |
msgid "Slot"
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: includes/settings/tabs/wps-overview-display.php:184
|
814 |
msgid "Column A"
|
815 |
msgstr ""
|
816 |
|
817 |
+
#: includes/settings/tabs/wps-overview-display.php:188
|
818 |
msgid "Column B"
|
819 |
msgstr ""
|
820 |
|
821 |
+
#: includes/settings/tabs/wps-overview-display.php:194
|
822 |
msgid "Slot 1"
|
823 |
msgstr ""
|
824 |
|
825 |
+
#: includes/settings/tabs/wps-overview-display.php:224
|
826 |
msgid "Slot 2"
|
827 |
msgstr ""
|
828 |
|
829 |
+
#: includes/settings/tabs/wps-overview-display.php:254
|
830 |
msgid "Slot 3"
|
831 |
msgstr ""
|
832 |
|
833 |
+
#: includes/settings/tabs/wps-overview-display.php:284
|
834 |
msgid "Slot 4"
|
835 |
msgstr ""
|
836 |
|
837 |
+
#: includes/settings/tabs/wps-overview-display.php:314
|
838 |
msgid "Slot 5"
|
839 |
msgstr ""
|
840 |
|
841 |
+
#: includes/settings/tabs/wps-overview-display.php:344
|
842 |
msgid "Slot 6"
|
843 |
msgstr ""
|
844 |
|
845 |
+
#: includes/settings/tabs/wps-overview-display.php:348
|
846 |
+
#: includes/settings/tabs/wps-overview-display.php:370
|
847 |
msgid "N/A"
|
848 |
msgstr ""
|
849 |
|
850 |
+
#: includes/settings/tabs/wps-overview-display.php:366
|
851 |
msgid "Slot 7"
|
852 |
msgstr ""
|
853 |
|
854 |
+
#: includes/settings/tabs/wps-removal.php:15
|
855 |
msgid "WP Statisitcs Removal"
|
856 |
msgstr ""
|
857 |
|
858 |
+
#: includes/settings/tabs/wps-removal.php:20
|
859 |
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."
|
860 |
msgstr ""
|
861 |
|
862 |
+
#: includes/settings/tabs/wps-removal.php:23
|
863 |
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."
|
864 |
msgstr ""
|
865 |
|
866 |
+
#: includes/settings/tabs/wps-removal.php:29
|
867 |
msgid "Remove data and settings"
|
868 |
msgstr ""
|
869 |
|
870 |
+
#: includes/settings/tabs/wps-removal.php:34
|
871 |
msgid "Remove"
|
872 |
msgstr ""
|
873 |
|
874 |
+
#: includes/settings/tabs/wps-removal.php:35
|
875 |
msgid "Remove data and settings, this action cannot be undone."
|
876 |
msgstr ""
|
877 |
|
878 |
+
#: includes/settings/wps-settings.php:100
|
879 |
msgid "General"
|
880 |
msgstr ""
|
881 |
|
882 |
+
#: includes/settings/wps-settings.php:101
|
883 |
msgid "Notifications"
|
884 |
msgstr ""
|
885 |
|
886 |
+
#: includes/settings/wps-settings.php:102
|
887 |
msgid "Dashboard/Overview"
|
888 |
msgstr ""
|
889 |
|
890 |
+
#: includes/settings/wps-settings.php:103
|
891 |
msgid "Access/Exclusions"
|
892 |
msgstr ""
|
893 |
|
894 |
+
#: includes/settings/wps-settings.php:105
|
895 |
msgid "browscap"
|
896 |
msgstr ""
|
897 |
|
898 |
+
#: includes/settings/wps-settings.php:106
|
899 |
msgid "Maintenance"
|
900 |
msgstr ""
|
901 |
|
902 |
+
#: includes/settings/wps-settings.php:107
|
903 |
msgid "Removal"
|
904 |
msgstr ""
|
905 |
|
906 |
+
#: includes/settings/tabs/wps-access-level.php:278
|
907 |
+
#: includes/settings/tabs/wps-browscap.php:81
|
908 |
+
#: includes/settings/tabs/wps-general.php:349
|
909 |
+
#: includes/settings/tabs/wps-geoip.php:158
|
910 |
+
#: includes/settings/tabs/wps-maintenance.php:84
|
911 |
+
#: includes/settings/tabs/wps-notifications.php:201
|
912 |
+
#: includes/settings/tabs/wps-overview-display.php:388
|
913 |
+
#: includes/settings/tabs/wps-removal.php:42
|
914 |
msgid "Update"
|
915 |
msgstr ""
|
916 |
|
917 |
+
#: schedule.php:10
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
918 |
msgid "Once Weekly"
|
919 |
msgstr ""
|
920 |
|
921 |
+
#: schedule.php:17
|
922 |
msgid "Once Every 2 Weeks"
|
923 |
msgstr ""
|
924 |
|
925 |
+
#: schedule.php:24
|
926 |
msgid "Once Every 4 Weeks"
|
927 |
msgstr ""
|
928 |
|
929 |
+
#: widget.php:14 wp-statistics.php:335 wp-statistics.php:373
|
|
|
|
|
930 |
msgid "Statistics"
|
931 |
msgstr "পরিসংখ্যান"
|
932 |
|
933 |
+
#: widget.php:15
|
934 |
msgid "Show site stats in sidebar."
|
935 |
msgstr ""
|
936 |
|
937 |
+
#: widget.php:73 widget.php:260
|
|
|
938 |
msgid "Week Visit"
|
939 |
msgstr "এ সপ্তাহে দেখেছে"
|
940 |
|
941 |
+
#: widget.php:80 widget.php:263
|
|
|
942 |
msgid "Month Visit"
|
943 |
msgstr "এ মাসে দেখেছে"
|
944 |
|
945 |
+
#: widget.php:87 widget.php:266
|
|
|
946 |
msgid "Years Visit"
|
947 |
msgstr "এ বছরে দেখেছে"
|
948 |
|
949 |
+
#: widget.php:108 widget.php:275
|
|
|
950 |
msgid "Total Page Views"
|
951 |
msgstr ""
|
952 |
|
953 |
+
#: widget.php:116
|
954 |
msgid "Search Engine referred"
|
955 |
msgstr ""
|
956 |
|
957 |
+
#: widget.php:123 widget.php:298
|
|
|
958 |
msgid "Total Posts"
|
959 |
msgstr "মোট পোষ্ট"
|
960 |
|
961 |
+
#: widget.php:130 widget.php:301
|
|
|
962 |
msgid "Total Pages"
|
963 |
msgstr "মোট পাতা"
|
964 |
|
965 |
+
#: widget.php:137 widget.php:304
|
|
|
966 |
msgid "Total Comments"
|
967 |
msgstr "মোট মন্তব্য"
|
968 |
|
969 |
+
#: widget.php:144 widget.php:307
|
|
|
970 |
msgid "Total Spams"
|
971 |
msgstr "মোট স্প্যাম"
|
972 |
|
973 |
+
#: widget.php:151 widget.php:310
|
|
|
974 |
msgid "Total Users"
|
975 |
msgstr "মোট ব্যবহারকারী"
|
976 |
|
977 |
+
#: widget.php:158 widget.php:313
|
|
|
978 |
msgid "Average Posts"
|
979 |
msgstr "গড় পোষ্ট"
|
980 |
|
981 |
+
#: widget.php:165 widget.php:316
|
|
|
982 |
msgid "Average Comments"
|
983 |
msgstr "গড় মন্তব্য"
|
984 |
|
985 |
+
#: widget.php:172 widget.php:319
|
|
|
986 |
msgid "Average Users"
|
987 |
msgstr "গড় ব্যবহারকারী"
|
988 |
|
989 |
+
#: shortcode.php:142 widget.php:179 widget.php:322
|
|
|
990 |
msgid "Last Post Date"
|
991 |
msgstr "শেষ পোষ্টের তারিখ"
|
992 |
|
993 |
+
#: widget.php:238
|
994 |
msgid "Name"
|
995 |
msgstr "নাম"
|
996 |
|
997 |
+
#: widget.php:242
|
998 |
msgid "Items"
|
999 |
msgstr "আইটেম"
|
1000 |
|
1001 |
+
#: widget.php:254 wp-statistics.php:547
|
|
|
1002 |
msgid "Yesterday visit"
|
1003 |
msgstr "গতকাল দেখেছে"
|
1004 |
|
1005 |
+
#: widget.php:278
|
1006 |
msgid "Search Engine Referred"
|
1007 |
msgstr ""
|
1008 |
|
1009 |
+
#: widget.php:281
|
1010 |
msgid "Select type of search engine"
|
1011 |
msgstr "সার্চ ইঞ্জিন নির্বাচন করুন"
|
1012 |
|
1013 |
+
#: wp-statistics.php:63
|
1014 |
msgid "ERROR: WP Statistics has detected an unsupported version of PHP, WP Statistics will not function without PHP Version "
|
1015 |
msgstr ""
|
1016 |
|
1017 |
+
#: wp-statistics.php:63
|
1018 |
msgid " or higher!"
|
1019 |
msgstr ""
|
1020 |
|
1021 |
+
#: wp-statistics.php:63
|
1022 |
msgid "Your current PHP version is"
|
1023 |
msgstr ""
|
1024 |
|
1025 |
+
#: wp-statistics.php:79
|
1026 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1027 |
msgstr ""
|
1028 |
|
1029 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.2) #-#-#-#-#
|
1030 |
+
#. Plugin Name of the plugin/theme
|
1031 |
+
#: wp-statistics.php:37
|
1032 |
msgid "WP Statistics"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.2) #-#-#-#-#
|
1036 |
+
#. Description of the plugin/theme
|
1037 |
+
#: wp-statistics.php:38
|
1038 |
msgid "Complete statistics for your WordPress site."
|
1039 |
msgstr ""
|
1040 |
|
1041 |
+
#: wp-statistics.php:130
|
1042 |
msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
|
1043 |
msgstr ""
|
1044 |
|
1045 |
+
#: wp-statistics.php:130 wp-statistics.php:133 wp-statistics.php:136
|
|
|
|
|
1046 |
msgid "setting page"
|
1047 |
msgstr ""
|
1048 |
|
1049 |
+
#: wp-statistics.php:133
|
1050 |
msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
|
1051 |
msgstr ""
|
1052 |
|
1053 |
+
#: wp-statistics.php:136
|
1054 |
msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
|
1055 |
msgstr ""
|
1056 |
|
1057 |
+
#: wp-statistics.php:139
|
1058 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1059 |
msgstr ""
|
1060 |
|
1061 |
+
#: wp-statistics.php:139
|
1062 |
msgid "Setting page > GeoIP"
|
1063 |
msgstr ""
|
1064 |
|
1065 |
+
#: wp-statistics.php:242 wp-statistics.php:354 wp-statistics.php:427
|
|
|
|
|
1066 |
msgid "Settings"
|
1067 |
msgstr "সেটিসং"
|
1068 |
|
1069 |
+
#: wp-statistics.php:254
|
1070 |
msgid "Click here to visit the plugin on WordPress.org"
|
1071 |
msgstr ""
|
1072 |
|
1073 |
+
#: wp-statistics.php:254
|
1074 |
msgid "Visit WordPress.org page"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
+
#: wp-statistics.php:257
|
1078 |
msgid "Click here to rate and review this plugin on WordPress.org"
|
1079 |
msgstr ""
|
1080 |
|
1081 |
+
#: wp-statistics.php:257
|
1082 |
msgid "Rate this plugin"
|
1083 |
msgstr ""
|
1084 |
|
1085 |
+
#: wp-statistics.php:301
|
1086 |
msgid "WP Statistics - Hits"
|
1087 |
msgstr ""
|
1088 |
|
1089 |
+
#: wp-statistics.php:338 wp-statistics.php:376 wp-statistics.php:414
|
|
|
|
|
1090 |
msgid "Overview"
|
1091 |
msgstr ""
|
1092 |
|
1093 |
+
#: wp-statistics.php:343 wp-statistics.php:419
|
|
|
1094 |
msgid "Online"
|
1095 |
msgstr ""
|
1096 |
|
1097 |
+
#: wp-statistics.php:345 wp-statistics.php:421
|
|
|
1098 |
msgid "Referrers"
|
1099 |
msgstr ""
|
1100 |
|
1101 |
+
#: shortcode.php:133 wp-statistics.php:346 wp-statistics.php:422
|
|
|
1102 |
msgid "Searches"
|
1103 |
msgstr ""
|
1104 |
|
1105 |
+
#: wp-statistics.php:347 wp-statistics.php:423
|
|
|
1106 |
msgid "Search Words"
|
1107 |
msgstr ""
|
1108 |
|
1109 |
+
#: wp-statistics.php:348 wp-statistics.php:424
|
|
|
1110 |
msgid "Top Visitors Today"
|
1111 |
msgstr ""
|
1112 |
|
1113 |
+
#: wp-statistics.php:353 wp-statistics.php:426
|
|
|
1114 |
msgid "Optimization"
|
1115 |
msgstr ""
|
1116 |
|
1117 |
+
#: wp-statistics.php:359 wp-statistics.php:390
|
|
|
1118 |
msgid "Manual"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
+
#: wp-statistics.php:405
|
1122 |
msgid "Site"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
+
#: wp-statistics.php:406
|
1126 |
msgid "Options"
|
1127 |
msgstr ""
|
1128 |
|
1129 |
+
#: wp-statistics.php:529
|
1130 |
msgid "Today visitor"
|
1131 |
msgstr ""
|
1132 |
|
1133 |
+
#: wp-statistics.php:535
|
1134 |
msgid "Today visit"
|
1135 |
msgstr ""
|
1136 |
|
1137 |
+
#: wp-statistics.php:541
|
1138 |
msgid "Yesterday visitor"
|
1139 |
msgstr ""
|
1140 |
|
1141 |
+
#: wp-statistics.php:553
|
1142 |
msgid "View Stats"
|
1143 |
msgstr ""
|
1144 |
|
1145 |
+
#: wp-statistics.php:577
|
1146 |
msgid "Download ODF file"
|
1147 |
msgstr ""
|
1148 |
|
1149 |
+
#: wp-statistics.php:578
|
1150 |
msgid "Download HTML file"
|
1151 |
msgstr ""
|
1152 |
|
1153 |
+
#: wp-statistics.php:582
|
1154 |
msgid "Manual file not found."
|
1155 |
msgstr ""
|
1156 |
|
1157 |
+
#: wp-statistics.php:649 wp-statistics.php:760 wp-statistics.php:794
|
|
|
|
|
1158 |
msgid "You do not have sufficient permissions to access this page."
|
1159 |
msgstr "আপনার এই পেজ দেখার মত পর্যাপ্ত অনুমতি নেই।"
|
1160 |
|
1161 |
+
#: wp-statistics.php:662
|
1162 |
msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
|
1163 |
msgstr ""
|
1164 |
|
1165 |
+
#: wp-statistics.php:230
|
1166 |
msgid "WP Statistics %s installed on"
|
1167 |
msgstr ""
|
1168 |
|
1169 |
+
#: wps-updates.php:34
|
1170 |
msgid "Error downloading GeoIP database from: %s - %s"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
+
#: wps-updates.php:45
|
1174 |
msgid "Error could not open downloaded GeoIP database for reading: %s"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
+
#: wps-updates.php:52
|
1178 |
msgid "Error could not open destination GeoIP database for writing %s"
|
1179 |
msgstr ""
|
1180 |
|
1181 |
+
#: wps-updates.php:68
|
1182 |
msgid "GeoIP Database updated successfully!"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: wps-updates.php:93
|
1186 |
msgid "GeoIP update on"
|
1187 |
msgstr ""
|
1188 |
|
1189 |
+
#: wps-updates.php:160
|
1190 |
msgid "Error downloading browscap database from: %s - %s"
|
1191 |
msgstr ""
|
1192 |
|
1193 |
+
#: wps-updates.php:262
|
1194 |
msgid "browscap database updated successfully!"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
+
#: wps-updates.php:273
|
1198 |
msgid "browscap database updated failed! Cache file too large, reverting to previous browscap.ini."
|
1199 |
msgstr ""
|
1200 |
|
1201 |
+
#: wps-updates.php:281
|
1202 |
msgid "browscap database updated failed! New browscap.ini is mis-identifing user agents as crawlers, reverting to previous browscap.ini."
|
1203 |
msgstr ""
|
1204 |
|
1205 |
+
#: wps-updates.php:303
|
1206 |
msgid "browscap already at current version!"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
+
#: wps-updates.php:316
|
1210 |
msgid "Browscap.ini update on"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.2) #-#-#-#-#
|
1214 |
+
#. Plugin URI of the plugin/theme
|
1215 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.2) #-#-#-#-#
|
1216 |
+
#. Author URI of the plugin/theme
|
1217 |
+
msgid "http://wp-statistics.com/"
|
1218 |
+
msgstr ""
|
1219 |
+
|
1220 |
+
#. Author of the plugin/theme
|
1221 |
+
msgid "Mostafa Soufi & Greg Ross"
|
1222 |
+
msgstr ""
|
1223 |
+
|
1224 |
+
#: dashboard.php:55
|
1225 |
msgid "Quick Stats"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
+
#: dashboard.php:56 includes/log/widgets/browsers.php:58
|
|
|
1229 |
msgid "Top 10 Browsers"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
+
#: dashboard.php:57 includes/log/widgets/countries.php:11
|
1233 |
+
#: includes/settings/tabs/wps-overview-display.php:27
|
|
|
1234 |
msgid "Top 10 Countries"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
+
#: dashboard.php:58
|
1238 |
msgid "Today's Visitor Map"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
+
#: dashboard.php:59 editor.php:46 includes/log/hit-statistics.php:8
|
1242 |
+
#: includes/log/widgets/hits.php:10
|
|
|
|
|
1243 |
msgid "Hit Statistics"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
+
#: dashboard.php:60 includes/log/widgets/pages.php:14
|
|
|
1247 |
msgid "Top 10 Pages"
|
1248 |
msgstr ""
|
1249 |
|
1250 |
+
#: dashboard.php:61 includes/log/last-visitor.php:36
|
1251 |
+
#: includes/log/widgets/recent.php:10
|
1252 |
+
#: includes/settings/tabs/wps-overview-display.php:39
|
|
|
1253 |
msgid "Recent Visitors"
|
1254 |
msgstr ""
|
1255 |
|
1256 |
+
#: dashboard.php:62 includes/log/top-referring.php:27
|
1257 |
+
#: includes/log/top-referring.php:42 includes/log/widgets/referring.php:16
|
1258 |
+
#: includes/settings/tabs/wps-overview-display.php:26
|
|
|
|
|
1259 |
msgid "Top Referring Sites"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
+
#: dashboard.php:63 includes/log/widgets/search.php:10
|
1263 |
+
#: includes/log/widgets/summary.php:89
|
|
|
1264 |
msgid "Search Engine Referrals"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
+
#: dashboard.php:64 includes/log/widgets/summary.php:8
|
|
|
1268 |
msgid "Summary"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
+
#: dashboard.php:65 includes/log/last-search.php:31
|
1272 |
+
#: includes/log/widgets/words.php:11
|
1273 |
+
#: includes/settings/tabs/wps-overview-display.php:37
|
|
|
1274 |
msgid "Latest Search Words"
|
1275 |
msgstr ""
|
1276 |
|
1277 |
+
#: dashboard.php:66 includes/log/widgets/top.visitors.php:10
|
1278 |
+
#: includes/settings/tabs/wps-overview-display.php:35
|
|
|
1279 |
msgid "Top 10 Visitors Today"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
+
#: dashboard.php:97
|
1283 |
msgid "Please reload the dashboard to display the content of this widget."
|
1284 |
msgstr ""
|
1285 |
|
1286 |
+
#: dashboard.php:138
|
1287 |
msgid "WP Statistics Overview"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
+
#: editor.php:63
|
1291 |
msgid "This post is not yet published."
|
1292 |
msgstr ""
|
1293 |
|
1294 |
+
#: includes/functions/geoip-populate.php:24
|
1295 |
msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
|
1296 |
msgstr ""
|
1297 |
|
1298 |
+
#: includes/functions/geoip-populate.php:48
|
1299 |
msgid "Updated %s GeoIP records in the visitors database."
|
1300 |
msgstr ""
|
1301 |
|
1302 |
+
#: includes/functions/purge.php:21 includes/functions/purge.php:39
|
1303 |
+
#: includes/functions/purge.php:50 includes/functions/purge.php:83
|
|
|
|
|
1304 |
msgid "%s data older than %s days purged successfully."
|
1305 |
msgstr ""
|
1306 |
|
1307 |
+
#: includes/functions/purge.php:23 includes/functions/purge.php:41
|
1308 |
+
#: includes/functions/purge.php:52 includes/functions/purge.php:85
|
|
|
|
|
1309 |
msgid "No records found to purge from %s!"
|
1310 |
msgstr ""
|
1311 |
|
1312 |
+
#: includes/functions/purge-hits.php:45 includes/functions/purge.php:98
|
1313 |
msgid "Database pruned on"
|
1314 |
msgstr ""
|
1315 |
|
1316 |
+
#: includes/functions/purge.php:103
|
1317 |
msgid "Please select a value over 30 days."
|
1318 |
msgstr ""
|
1319 |
|
1320 |
+
#: includes/log/all-browsers.php:8
|
1321 |
msgid "Browser Statistics"
|
1322 |
msgstr ""
|
1323 |
|
1324 |
+
#: includes/log/all-browsers.php:14 includes/log/all-browsers.php:98
|
1325 |
+
#: includes/log/all-browsers.php:233 includes/log/exclusions.php:72
|
1326 |
+
#: includes/log/exclusions.php:190 includes/log/hit-statistics.php:26
|
1327 |
+
#: includes/log/hit-statistics.php:162 includes/log/last-search.php:64
|
1328 |
+
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1329 |
+
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1330 |
+
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1331 |
+
#: includes/log/top-referring.php:38 includes/log/widgets/about.php:7
|
1332 |
+
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1333 |
+
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1334 |
+
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1335 |
+
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:14
|
1336 |
+
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1337 |
+
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1338 |
msgid "Click to toggle"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
+
#: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
|
1342 |
+
#: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:339
|
1343 |
+
#: wp-statistics.php:415
|
|
|
|
|
1344 |
msgid "Browsers"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
+
#: includes/log/all-browsers.php:42
|
1348 |
msgid "Browsers by type"
|
1349 |
msgstr ""
|
1350 |
|
1351 |
+
#: includes/log/all-browsers.php:99 includes/log/widgets/top.visitors.php:37
|
1352 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:302
|
|
|
1353 |
msgid "Platform"
|
1354 |
msgstr ""
|
1355 |
|
1356 |
+
#: includes/log/all-browsers.php:126
|
1357 |
msgid "Browsers by platform"
|
1358 |
msgstr ""
|
1359 |
|
1360 |
+
#: includes/log/all-browsers.php:234
|
1361 |
msgid "%s Version"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
+
#: includes/log/exclusions.php:8
|
1365 |
msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
+
#: includes/log/exclusions.php:64
|
1369 |
msgid "Exclusions Statistics"
|
1370 |
msgstr ""
|
1371 |
|
1372 |
+
#: includes/functions/functions.php:879
|
1373 |
msgid "10 Days"
|
1374 |
msgstr ""
|
1375 |
|
1376 |
+
#: includes/functions/functions.php:879
|
1377 |
msgid "20 Days"
|
1378 |
msgstr ""
|
1379 |
|
1380 |
+
#: includes/functions/functions.php:879
|
1381 |
msgid "30 Days"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
+
#: includes/functions/functions.php:879
|
1385 |
msgid "2 Months"
|
1386 |
msgstr ""
|
1387 |
|
1388 |
+
#: includes/functions/functions.php:879
|
1389 |
msgid "3 Months"
|
1390 |
msgstr ""
|
1391 |
|
1392 |
+
#: includes/functions/functions.php:879
|
1393 |
msgid "6 Months"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
+
#: includes/functions/functions.php:879
|
1397 |
msgid "9 Months"
|
1398 |
msgstr ""
|
1399 |
|
1400 |
+
#: includes/functions/functions.php:879
|
1401 |
msgid "1 Year"
|
1402 |
msgstr ""
|
1403 |
|
1404 |
+
#: includes/log/exclusions.php:73
|
|
|
|
|
|
|
|
|
1405 |
msgid "Exclusions Statistical Chart"
|
1406 |
msgstr ""
|
1407 |
|
1408 |
+
#: includes/log/exclusions.php:95
|
1409 |
msgid "Excluded hits in the last"
|
1410 |
msgstr ""
|
1411 |
|
1412 |
+
#: includes/log/exclusions.php:95 includes/log/hit-statistics.php:65
|
1413 |
+
#: includes/log/search-statistics.php:69 includes/log/widgets/hits.php:61
|
1414 |
+
#: includes/log/widgets/search.php:59
|
1415 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:207
|
|
|
|
|
1416 |
msgid "days"
|
1417 |
msgstr ""
|
1418 |
|
1419 |
+
#: includes/log/exclusions.php:116
|
1420 |
msgid "Number of excluded hits"
|
1421 |
msgstr ""
|
1422 |
|
1423 |
+
#: includes/log/hit-statistics.php:27
|
1424 |
msgid "Hits Statistics Chart"
|
1425 |
msgstr ""
|
1426 |
|
1427 |
+
#: includes/log/hit-statistics.php:65 includes/log/widgets/hits.php:61
|
|
|
1428 |
msgid "Hits in the last"
|
1429 |
msgstr ""
|
1430 |
|
1431 |
+
#: includes/log/hit-statistics.php:86 includes/log/widgets/hits.php:82
|
|
|
1432 |
msgid "Number of visits and visitors"
|
1433 |
msgstr ""
|
1434 |
|
1435 |
+
#: includes/log/hit-statistics.php:100 includes/log/hit-statistics.php:169
|
1436 |
+
#: includes/log/widgets/hits.php:96 includes/log/widgets/summary.php:38
|
|
|
1437 |
msgid "Visit"
|
1438 |
msgstr ""
|
1439 |
|
1440 |
+
#: includes/log/hit-statistics.php:100 includes/log/hit-statistics.php:170
|
1441 |
+
#: includes/log/widgets/hits.php:96 includes/log/widgets/summary.php:37
|
|
|
1442 |
msgid "Visitor"
|
1443 |
msgstr ""
|
1444 |
|
1445 |
+
#: includes/log/last-search.php:65
|
1446 |
msgid "Latest Search Word Statistics"
|
1447 |
msgstr ""
|
1448 |
|
1449 |
+
#: includes/log/last-search.php:100 includes/log/last-visitor.php:101
|
1450 |
+
#: includes/log/online.php:50 includes/log/widgets/google.map.php:84
|
1451 |
+
#: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
|
1452 |
+
#: includes/log/widgets/words.php:36
|
|
|
|
|
|
|
1453 |
msgid "#hash#"
|
1454 |
msgstr ""
|
1455 |
|
1456 |
+
#: includes/log/last-search.php:105 includes/log/last-visitor.php:106
|
1457 |
+
#: includes/log/online.php:55 includes/log/top-referring.php:71
|
1458 |
+
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:43
|
1459 |
+
#: includes/settings/tabs/wps-overview-display.php:33
|
1460 |
+
#: includes/settings/tabs/wps-overview-display.php:113
|
|
|
|
|
|
|
1461 |
msgid "Map"
|
1462 |
msgstr ""
|
1463 |
|
1464 |
+
#: includes/log/last-search.php:142 includes/log/last-visitor.php:139
|
1465 |
+
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1466 |
+
#: includes/log/top-referring.php:125
|
|
|
|
|
1467 |
msgid "Page"
|
1468 |
msgstr ""
|
1469 |
|
1470 |
+
#: includes/log/last-search.php:142 includes/log/last-visitor.php:139
|
1471 |
+
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1472 |
+
#: includes/log/top-referring.php:125
|
|
|
|
|
1473 |
msgid "From"
|
1474 |
msgstr ""
|
1475 |
|
1476 |
+
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1477 |
+
#: includes/log/top-referring.php:29
|
1478 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
|
|
|
|
1479 |
msgid "All"
|
1480 |
msgstr "সকল"
|
1481 |
|
1482 |
+
#: includes/log/last-visitor.php:68
|
1483 |
msgid "Recent Visitor Statistics"
|
1484 |
msgstr ""
|
1485 |
|
1486 |
+
#: includes/log/online.php:11 includes/log/online.php:18
|
|
|
1487 |
msgid "Online Users"
|
1488 |
msgstr ""
|
1489 |
|
1490 |
+
#: includes/log/online.php:75
|
1491 |
msgid "Online for "
|
1492 |
msgstr ""
|
1493 |
|
1494 |
+
#: includes/log/page-statistics.php:26
|
1495 |
msgid "Page Trend for Post ID"
|
1496 |
msgstr ""
|
1497 |
|
1498 |
+
#: includes/log/page-statistics.php:35
|
1499 |
msgid "Page Trend"
|
1500 |
msgstr ""
|
1501 |
|
1502 |
+
#: includes/log/search-statistics.php:19 includes/log/search-statistics.php:28
|
|
|
1503 |
msgid "Search Engine Referral Statistics"
|
1504 |
msgstr ""
|
1505 |
|
1506 |
+
#: includes/log/search-statistics.php:69 includes/log/widgets/search.php:59
|
|
|
1507 |
msgid "Search engine referrals in the last"
|
1508 |
msgstr ""
|
1509 |
|
1510 |
+
#: includes/log/search-statistics.php:90 includes/log/widgets/search.php:80
|
|
|
1511 |
msgid "Number of referrals"
|
1512 |
msgstr ""
|
1513 |
|
1514 |
+
#: includes/log/exclusions.php:24 includes/log/search-statistics.php:104
|
1515 |
+
#: includes/log/widgets/search.php:94 includes/log/widgets/summary.php:72
|
1516 |
+
#: includes/log/widgets/summary.php:119
|
|
|
|
|
1517 |
msgid "Total"
|
1518 |
msgstr ""
|
1519 |
|
1520 |
+
#: includes/log/top-countries.php:18
|
1521 |
msgid "Top Countries"
|
1522 |
msgstr ""
|
1523 |
|
1524 |
+
#: includes/log/top-countries.php:30 includes/log/widgets/countries.php:30
|
1525 |
+
#: includes/log/widgets/top.visitors.php:30
|
|
|
1526 |
msgid "Rank"
|
1527 |
msgstr ""
|
1528 |
|
1529 |
+
#: includes/log/top-countries.php:31 includes/log/widgets/countries.php:31
|
1530 |
+
#: includes/log/widgets/top.visitors.php:32
|
|
|
1531 |
msgid "Flag"
|
1532 |
msgstr ""
|
1533 |
|
1534 |
+
#: includes/log/top-countries.php:32 includes/log/widgets/countries.php:32
|
1535 |
+
#: includes/log/widgets/top.visitors.php:33
|
|
|
1536 |
msgid "Country"
|
1537 |
msgstr ""
|
1538 |
|
1539 |
+
#: includes/log/top-countries.php:33 includes/log/widgets/countries.php:33
|
|
|
1540 |
msgid "Visitor Count"
|
1541 |
msgstr ""
|
1542 |
|
1543 |
+
#: includes/log/top-pages.php:19 includes/log/top-pages.php:149
|
|
|
1544 |
msgid "Top Pages"
|
1545 |
msgstr ""
|
1546 |
|
1547 |
+
#: includes/log/top-pages.php:29
|
1548 |
msgid "Top 5 Pages Trends"
|
1549 |
msgstr ""
|
1550 |
|
1551 |
+
#: includes/log/top-pages.php:60
|
1552 |
msgid "Top 5 Page Trending Stats"
|
1553 |
msgstr ""
|
1554 |
|
1555 |
+
#: includes/log/top-pages.php:81 includes/log/widgets/page.php:63
|
|
|
1556 |
msgid "Number of Hits"
|
1557 |
msgstr ""
|
1558 |
|
1559 |
+
#: includes/log/top-pages.php:177 includes/log/widgets/pages.php:35
|
|
|
1560 |
msgid "No page title found"
|
1561 |
msgstr ""
|
1562 |
|
1563 |
+
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1564 |
+
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1565 |
+
#: includes/settings/tabs/wps-general.php:122
|
1566 |
+
#: includes/settings/tabs/wps-general.php:127 shortcode.php:130
|
|
|
1567 |
msgid "Visits"
|
1568 |
msgstr ""
|
1569 |
|
1570 |
+
#: includes/log/top-referring.php:4
|
1571 |
msgid "To be added soon"
|
1572 |
msgstr ""
|
1573 |
|
1574 |
+
#: includes/log/top-referring.php:40
|
1575 |
msgid "Referring sites from"
|
1576 |
msgstr ""
|
1577 |
|
1578 |
+
#: includes/log/top-referring.php:110 includes/log/widgets/referring.php:34
|
|
|
1579 |
msgid "References"
|
1580 |
msgstr ""
|
1581 |
|
1582 |
+
#: includes/log/top-visitors.php:12
|
1583 |
msgid "Top 100 Visitors Today"
|
1584 |
msgstr ""
|
1585 |
|
1586 |
+
#: includes/log/widgets/about.php:8
|
1587 |
msgid "About WP Statistics Version %s"
|
1588 |
msgstr ""
|
1589 |
|
1590 |
+
#: includes/log/widgets/about.php:25
|
1591 |
msgid "Website"
|
1592 |
msgstr ""
|
1593 |
|
1594 |
+
#: includes/log/widgets/about.php:26
|
1595 |
msgid "Rate and Review"
|
1596 |
msgstr ""
|
1597 |
|
1598 |
+
#: includes/log/widgets/about.php:30
|
1599 |
msgid "More Information"
|
1600 |
msgstr ""
|
1601 |
|
1602 |
+
#: includes/log/widgets/about.php:39 includes/settings/tabs/wps-about.php:12
|
|
|
1603 |
msgid "This product includes GeoLite2 data created by MaxMind, available from %s."
|
1604 |
msgstr ""
|
1605 |
|
1606 |
+
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1607 |
+
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1608 |
+
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:16
|
1609 |
+
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1610 |
+
#: includes/log/widgets/words.php:11
|
|
|
|
|
|
|
|
|
1611 |
msgid "More"
|
1612 |
msgstr ""
|
1613 |
|
1614 |
+
#: includes/log/widgets/browsers.php:51
|
1615 |
msgid "Other"
|
1616 |
msgstr ""
|
1617 |
|
1618 |
+
#: includes/log/widgets/google.map.php:9 includes/log/widgets/jqv.map.php:9
|
|
|
1619 |
msgid "Today Visitors Map"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
+
#: includes/log/widgets/referring.php:35
|
1623 |
msgid "Address"
|
1624 |
msgstr ""
|
1625 |
|
1626 |
+
#: includes/log/widgets/summary.php:26
|
1627 |
msgid "User(s) Online"
|
1628 |
msgstr ""
|
1629 |
|
1630 |
+
#: includes/log/widgets/summary.php:42 includes/log/widgets/summary.php:94
|
|
|
1631 |
msgid "Today"
|
1632 |
msgstr ""
|
1633 |
|
1634 |
+
#: includes/log/widgets/summary.php:48 includes/log/widgets/summary.php:95
|
|
|
1635 |
msgid "Yesterday"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
+
#: includes/log/widgets/summary.php:113
|
1639 |
msgid "Daily Total"
|
1640 |
msgstr ""
|
1641 |
|
1642 |
+
#: includes/log/widgets/summary.php:132
|
1643 |
msgid "Current Time and Date"
|
1644 |
msgstr ""
|
1645 |
|
1646 |
+
#: includes/log/widgets/summary.php:132
|
1647 |
msgid "(Adjustment)"
|
1648 |
msgstr ""
|
1649 |
|
1650 |
+
#: includes/log/widgets/summary.php:136
|
1651 |
msgid "Date: %s"
|
1652 |
msgstr ""
|
1653 |
|
1654 |
+
#: includes/log/widgets/summary.php:140
|
1655 |
msgid "Time: %s"
|
1656 |
msgstr ""
|
1657 |
|
1658 |
+
#: includes/log/widgets/top.visitors.php:31
|
1659 |
+
#: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:266
|
1660 |
+
#: wp-statistics.php:342 wp-statistics.php:418
|
|
|
1661 |
msgid "Hits"
|
1662 |
msgstr ""
|
1663 |
|
1664 |
+
#: includes/log/widgets/top.visitors.php:34
|
1665 |
msgid "IP"
|
1666 |
msgstr "আইপি"
|
1667 |
|
1668 |
+
#: includes/log/widgets/top.visitors.php:36
|
1669 |
msgid "Agent"
|
1670 |
msgstr ""
|
1671 |
|
1672 |
+
#: includes/log/widgets/top.visitors.php:38
|
1673 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:291
|
1674 |
msgid "Version"
|
1675 |
msgstr ""
|
1676 |
|
1677 |
+
#: ajax.php:41 ajax.php:71 ajax.php:125 ajax.php:150 ajax.php:180
|
1678 |
+
#: includes/optimization/wps-optimization.php:6
|
|
|
|
|
|
|
|
|
|
|
1679 |
msgid "Access denied!"
|
1680 |
msgstr ""
|
1681 |
|
1682 |
+
#: ajax.php:31
|
1683 |
msgid "%s agent data deleted successfully."
|
1684 |
msgstr ""
|
1685 |
|
1686 |
+
#: ajax.php:34
|
1687 |
msgid "No agent data found to remove!"
|
1688 |
msgstr ""
|
1689 |
|
1690 |
+
#: ajax.php:38 ajax.php:68 ajax.php:116 ajax.php:122
|
|
|
|
|
|
|
1691 |
msgid "Please select the desired items."
|
1692 |
msgstr ""
|
1693 |
|
1694 |
+
#: ajax.php:62
|
1695 |
msgid "%s platform data deleted successfully."
|
1696 |
msgstr ""
|
1697 |
|
1698 |
+
#: ajax.php:65
|
1699 |
msgid "No platform data found to remove!"
|
1700 |
msgstr ""
|
1701 |
|
1702 |
+
#: includes/functions/functions.php:967
|
1703 |
msgid "%s table data deleted successfully."
|
1704 |
msgstr ""
|
1705 |
|
1706 |
+
#: includes/functions/functions.php:971
|
1707 |
msgid "Error, %s not emptied!"
|
1708 |
msgstr ""
|
1709 |
|
1710 |
+
#: includes/optimization/tabs/wps-optimization-database.php:5
|
1711 |
msgid "Database Setup"
|
1712 |
msgstr ""
|
1713 |
|
1714 |
+
#: includes/optimization/tabs/wps-optimization-database.php:10
|
1715 |
msgid "Re-run Install"
|
1716 |
msgstr ""
|
1717 |
|
1718 |
+
#: includes/optimization/tabs/wps-optimization-database.php:14
|
1719 |
msgid "Install Now!"
|
1720 |
msgstr ""
|
1721 |
|
1722 |
+
#: includes/optimization/tabs/wps-optimization-database.php:15
|
1723 |
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."
|
1724 |
msgstr ""
|
1725 |
|
1726 |
+
#: includes/optimization/tabs/wps-optimization-database.php:20
|
1727 |
msgid "Database Index"
|
1728 |
msgstr ""
|
1729 |
|
1730 |
+
#: includes/optimization/tabs/wps-optimization-database.php:25
|
1731 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:21
|
1732 |
+
#: wp-statistics.php:340 wp-statistics.php:416
|
|
|
1733 |
msgid "Countries"
|
1734 |
msgstr ""
|
1735 |
|
1736 |
+
#: includes/optimization/tabs/wps-optimization-database.php:39
|
1737 |
+
#: includes/optimization/tabs/wps-optimization-database.php:69
|
1738 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:25
|
1739 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:40
|
1740 |
msgid "Update Now!"
|
1741 |
msgstr ""
|
1742 |
|
1743 |
+
#: includes/optimization/tabs/wps-optimization-database.php:40
|
1744 |
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."
|
1745 |
msgstr ""
|
1746 |
|
1747 |
+
#: includes/optimization/tabs/wps-optimization-database.php:41
|
1748 |
msgid "This operation could take a long time on installs with many rows in the visitors table."
|
1749 |
msgstr ""
|
1750 |
|
1751 |
+
#: includes/optimization/tabs/wps-optimization-database.php:46
|
1752 |
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."
|
1753 |
msgstr ""
|
1754 |
|
1755 |
+
#: includes/optimization/tabs/wps-optimization-database.php:47
|
1756 |
+
#: includes/optimization/tabs/wps-optimization-database.php:77
|
1757 |
msgid "Congratulations, your installation is already up to date, nothing to do."
|
1758 |
msgstr ""
|
1759 |
|
1760 |
+
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1761 |
+
#: includes/optimization/wps-optimization.php:183
|
1762 |
msgid "Export"
|
1763 |
msgstr ""
|
1764 |
|
1765 |
+
#: includes/optimization/tabs/wps-optimization-export.php:13
|
1766 |
msgid "Export from"
|
1767 |
msgstr ""
|
1768 |
|
1769 |
+
#: includes/optimization/tabs/wps-optimization-export.php:18
|
1770 |
+
#: includes/optimization/tabs/wps-optimization-export.php:36
|
1771 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:185
|
1772 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:241
|
1773 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:265
|
1774 |
+
#: includes/settings/tabs/wps-notifications.php:134
|
1775 |
+
#: includes/settings/tabs/wps-notifications.php:164
|
1776 |
msgid "Please select"
|
1777 |
msgstr ""
|
1778 |
|
1779 |
+
#: includes/optimization/tabs/wps-optimization-export.php:25
|
1780 |
msgid "Select the table for the output file."
|
1781 |
msgstr ""
|
1782 |
|
1783 |
+
#: includes/optimization/tabs/wps-optimization-export.php:31
|
1784 |
msgid "Export To"
|
1785 |
msgstr ""
|
1786 |
|
1787 |
+
#: includes/optimization/tabs/wps-optimization-export.php:42
|
1788 |
msgid "Select the output file type."
|
1789 |
msgstr ""
|
1790 |
|
1791 |
+
#: includes/optimization/tabs/wps-optimization-export.php:48
|
1792 |
msgid "Include Header Row"
|
1793 |
msgstr ""
|
1794 |
|
1795 |
+
#: includes/optimization/tabs/wps-optimization-export.php:53
|
1796 |
msgid "Include a header row as the first line of the exported file."
|
1797 |
msgstr ""
|
1798 |
|
1799 |
+
#: includes/optimization/tabs/wps-optimization-export.php:54
|
1800 |
msgid "Start Now!"
|
1801 |
msgstr ""
|
1802 |
|
1803 |
+
#: includes/optimization/tabs/wps-optimization-historical.php:15
|
1804 |
msgid "Historical Values"
|
1805 |
msgstr ""
|
1806 |
|
1807 |
+
#: includes/optimization/tabs/wps-optimization-historical.php:20
|
1808 |
msgid "Note: As you have just purged the database you must reload this page for these numbers to be correct."
|
1809 |
msgstr ""
|
1810 |
|
1811 |
+
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1812 |
+
#: includes/settings/tabs/wps-general.php:138
|
1813 |
+
#: includes/settings/tabs/wps-general.php:143 shortcode.php:131
|
1814 |
+
#: wp-statistics.php:349 wp-statistics.php:425
|
|
|
1815 |
msgid "Visitors"
|
1816 |
msgstr ""
|
1817 |
|
1818 |
+
#: includes/optimization/tabs/wps-optimization-historical.php:31
|
1819 |
msgid "Number of historical number of visitors to the site (current value is %s)."
|
1820 |
msgstr ""
|
1821 |
|
1822 |
+
#: includes/optimization/tabs/wps-optimization-historical.php:42
|
1823 |
msgid "Number of historical number of visits to the site (current value is %s)."
|
1824 |
msgstr ""
|
1825 |
|
1826 |
+
#: includes/optimization/tabs/wps-optimization-historical.php:48
|
1827 |
msgid "Update now!"
|
1828 |
msgstr ""
|
1829 |
|
1830 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:10
|
1831 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:43
|
1832 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:75
|
1833 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:107
|
1834 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:141
|
1835 |
msgid "Are you sure?"
|
1836 |
msgstr ""
|
1837 |
|
1838 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:175
|
1839 |
msgid "Data"
|
1840 |
msgstr ""
|
1841 |
|
1842 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:180
|
1843 |
msgid "Empty Table"
|
1844 |
msgstr ""
|
1845 |
|
1846 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:193
|
1847 |
msgid "All data table will be lost."
|
1848 |
msgstr ""
|
1849 |
|
1850 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:194
|
1851 |
msgid "Clear now!"
|
1852 |
msgstr ""
|
1853 |
|
1854 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:202
|
1855 |
msgid "Purge records older than"
|
1856 |
msgstr ""
|
1857 |
|
1858 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:208
|
1859 |
msgid "Deleted user statistics data older than the selected number of days. Minimum value is 30 days."
|
1860 |
msgstr ""
|
1861 |
|
1862 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:209
|
1863 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:224
|
1864 |
msgid "Purge now!"
|
1865 |
msgstr ""
|
1866 |
|
1867 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:231
|
1868 |
msgid "Delete User Agent Types"
|
1869 |
msgstr ""
|
1870 |
|
1871 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:236
|
1872 |
msgid "Delete Agents"
|
1873 |
msgstr ""
|
1874 |
|
1875 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:251
|
1876 |
msgid "All visitor data will be lost for this agent type."
|
1877 |
msgstr ""
|
1878 |
|
1879 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:252
|
1880 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:276
|
1881 |
msgid "Delete now!"
|
1882 |
msgstr ""
|
1883 |
|
1884 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:260
|
1885 |
msgid "Delete Platforms"
|
1886 |
msgstr ""
|
1887 |
|
1888 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:275
|
1889 |
msgid "All visitor data will be lost for this platform type."
|
1890 |
msgstr ""
|
1891 |
|
1892 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:17
|
1893 |
msgid "Resources"
|
1894 |
msgstr ""
|
1895 |
|
1896 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:22
|
1897 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:27
|
1898 |
msgid "Memory usage in PHP"
|
1899 |
msgstr ""
|
1900 |
|
1901 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:26
|
1902 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:37
|
1903 |
msgid "Byte"
|
1904 |
msgstr ""
|
1905 |
|
1906 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:33
|
1907 |
msgid "Last Overview page memory usage"
|
1908 |
msgstr ""
|
1909 |
|
1910 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:38
|
1911 |
msgid "Memory usage in the overview page"
|
1912 |
msgstr ""
|
1913 |
|
1914 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:44
|
1915 |
msgid "PHP Memory Limit"
|
1916 |
msgstr ""
|
1917 |
|
1918 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:49
|
1919 |
msgid "The memory limit a script is allowed to consume, set in php.ini."
|
1920 |
msgstr ""
|
1921 |
|
1922 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:55
|
1923 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:66
|
1924 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:77
|
1925 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:88
|
1926 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:99
|
1927 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:110
|
1928 |
msgid "Number of rows in the %s table"
|
1929 |
msgstr ""
|
1930 |
|
1931 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:59
|
1932 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:70
|
1933 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:81
|
1934 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:92
|
1935 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:103
|
1936 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:114
|
1937 |
msgid "Row"
|
1938 |
msgstr ""
|
1939 |
|
1940 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:60
|
1941 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:71
|
1942 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:82
|
1943 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:93
|
1944 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:104
|
1945 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:115
|
1946 |
msgid "Number of rows"
|
1947 |
msgstr ""
|
1948 |
|
1949 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:120
|
1950 |
msgid "Version Info"
|
1951 |
msgstr ""
|
1952 |
|
1953 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:125
|
1954 |
msgid "WP Statistics Version"
|
1955 |
msgstr ""
|
1956 |
|
1957 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:130
|
1958 |
msgid "The WP Statistics version you are running."
|
1959 |
msgstr ""
|
1960 |
|
1961 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:136
|
1962 |
msgid "PHP Version"
|
1963 |
msgstr ""
|
1964 |
|
1965 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:141
|
1966 |
msgid "The PHP version you are running."
|
1967 |
msgstr ""
|
1968 |
|
1969 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:147
|
1970 |
msgid "PHP Safe Mode"
|
1971 |
msgstr ""
|
1972 |
|
1973 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:152
|
1974 |
msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
|
1975 |
msgstr ""
|
1976 |
|
1977 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:158
|
1978 |
msgid "jQuery Version"
|
1979 |
msgstr ""
|
1980 |
|
1981 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:163
|
1982 |
msgid "The jQuery version you are running."
|
1983 |
msgstr ""
|
1984 |
|
1985 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:169
|
1986 |
msgid "cURL Version"
|
1987 |
msgstr ""
|
1988 |
|
1989 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:173
|
1990 |
msgid "cURL not installed"
|
1991 |
msgstr ""
|
1992 |
|
1993 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:174
|
1994 |
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."
|
1995 |
msgstr ""
|
1996 |
|
1997 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:180
|
1998 |
msgid "BC Math"
|
1999 |
msgstr ""
|
2000 |
|
2001 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:184
|
2002 |
msgid "Installed"
|
2003 |
msgstr ""
|
2004 |
|
2005 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:184
|
2006 |
msgid "Not installed"
|
2007 |
msgstr ""
|
2008 |
|
2009 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:185
|
2010 |
msgid "If the PHP BC Math Extension is installed. BC Math is no longer required for the GeoIP code and is listed here only for historical reasons."
|
2011 |
msgstr ""
|
2012 |
|
2013 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:190
|
2014 |
msgid "File Info"
|
2015 |
msgstr ""
|
2016 |
|
2017 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:195
|
2018 |
msgid "GeoIP Database"
|
2019 |
msgstr ""
|
2020 |
|
2021 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:204
|
2022 |
msgid "Database file does not exist."
|
2023 |
msgstr ""
|
2024 |
|
2025 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:206
|
2026 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:225
|
2027 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:244
|
2028 |
msgid ", created on "
|
2029 |
msgstr ""
|
2030 |
|
2031 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:208
|
2032 |
msgid "The file size and date of the GeoIP database."
|
2033 |
msgstr ""
|
2034 |
|
2035 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:214
|
2036 |
msgid "browscap.ini File"
|
2037 |
msgstr ""
|
2038 |
|
2039 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:223
|
2040 |
msgid "browscap.ini file does not exist."
|
2041 |
msgstr ""
|
2042 |
|
2043 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:227
|
2044 |
msgid "The file size and date of the browscap.ini file."
|
2045 |
msgstr ""
|
2046 |
|
2047 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:233
|
2048 |
msgid "browscap Cache File"
|
2049 |
msgstr ""
|
2050 |
|
2051 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:242
|
2052 |
msgid "browscap cache file does not exist."
|
2053 |
msgstr ""
|
2054 |
|
2055 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:246
|
2056 |
msgid "The file size and date of the browscap cache file."
|
2057 |
msgstr ""
|
2058 |
|
2059 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:251
|
2060 |
msgid "Client Info"
|
2061 |
msgstr ""
|
2062 |
|
2063 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:256
|
2064 |
msgid "Client IP"
|
2065 |
msgstr ""
|
2066 |
|
2067 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:261
|
2068 |
msgid "The client IP address."
|
2069 |
msgstr ""
|
2070 |
|
2071 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:267
|
2072 |
msgid "User Agent"
|
2073 |
msgstr ""
|
2074 |
|
2075 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:272
|
2076 |
msgid "The client user agent string."
|
2077 |
msgstr ""
|
2078 |
|
2079 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:278
|
2080 |
msgid "Browser"
|
2081 |
msgstr ""
|
2082 |
|
2083 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:285
|
2084 |
msgid "The detected client browser."
|
2085 |
msgstr ""
|
2086 |
|
2087 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:296
|
2088 |
msgid "The detected client browser version."
|
2089 |
msgstr ""
|
2090 |
|
2091 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:307
|
2092 |
msgid "The detected client platform."
|
2093 |
msgstr ""
|
2094 |
|
2095 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:4
|
2096 |
msgid "This will replace all IP addresses in the database with hash values and cannot be undo, are you sure?"
|
2097 |
msgstr ""
|
2098 |
|
2099 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:16
|
2100 |
msgid "GeoIP Options"
|
2101 |
msgstr ""
|
2102 |
|
2103 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:26
|
2104 |
msgid "Updates any unknown location data in the database, this may take a while"
|
2105 |
msgstr ""
|
2106 |
|
2107 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:31
|
2108 |
+
#: includes/settings/tabs/wps-general.php:66
|
2109 |
msgid "IP Addresses"
|
2110 |
msgstr ""
|
2111 |
|
2112 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:36
|
2113 |
+
#: includes/settings/tabs/wps-general.php:71
|
2114 |
msgid "Hash IP Addresses"
|
2115 |
msgstr ""
|
2116 |
|
2117 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:41
|
2118 |
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"
|
2119 |
msgstr ""
|
2120 |
|
2121 |
+
#: includes/optimization/wps-optimization.php:43
|
2122 |
msgid "IP Addresses replaced with hash values."
|
2123 |
msgstr ""
|
2124 |
|
2125 |
+
#: includes/optimization/wps-optimization.php:51
|
2126 |
msgid "Install routine complete."
|
2127 |
msgstr ""
|
2128 |
|
2129 |
+
#: includes/optimization/wps-optimization.php:182
|
2130 |
msgid "Resources/Information"
|
2131 |
msgstr ""
|
2132 |
|
2133 |
+
#: includes/optimization/wps-optimization.php:184
|
2134 |
msgid "Purging"
|
2135 |
msgstr ""
|
2136 |
|
2137 |
+
#: includes/optimization/wps-optimization.php:185
|
2138 |
msgid "Database"
|
2139 |
msgstr ""
|
2140 |
|
2141 |
+
#: includes/optimization/wps-optimization.php:186
|
2142 |
msgid "Updates"
|
2143 |
msgstr ""
|
2144 |
|
2145 |
+
#: includes/optimization/wps-optimization.php:187
|
2146 |
msgid "Historical"
|
2147 |
msgstr ""
|
2148 |
|
2149 |
+
#: includes/settings/tabs/wps-about.php:8
|
2150 |
msgid "WP Statistics V%s"
|
2151 |
msgstr ""
|
2152 |
|
2153 |
+
#: includes/settings/tabs/wps-about.php:28
|
2154 |
msgid "Visit Us Online"
|
2155 |
msgstr ""
|
2156 |
|
2157 |
+
#: includes/settings/tabs/wps-about.php:32
|
2158 |
msgid "Come visit our great new %s and keep up to date on the latest news about WP Statistics."
|
2159 |
msgstr ""
|
2160 |
|
2161 |
+
#: includes/settings/tabs/wps-about.php:32
|
2162 |
msgid "website"
|
2163 |
msgstr ""
|
2164 |
|
2165 |
+
#: includes/settings/tabs/wps-about.php:36
|
2166 |
msgid "Rate and Review at WordPress.org"
|
2167 |
msgstr ""
|
2168 |
|
2169 |
+
#: includes/settings/tabs/wps-about.php:40
|
2170 |
msgid "Thanks for installing WP Statistics, we encourage you to submit a "
|
2171 |
msgstr ""
|
2172 |
|
2173 |
+
#: includes/settings/tabs/wps-about.php:40
|
2174 |
msgid "rating and review"
|
2175 |
msgstr ""
|
2176 |
|
2177 |
+
#: includes/settings/tabs/wps-about.php:40
|
2178 |
msgid "over at WordPress.org. Your feedback is greatly appreciated!"
|
2179 |
msgstr ""
|
2180 |
|
2181 |
+
#: includes/settings/tabs/wps-about.php:44
|
2182 |
msgid "Translations"
|
2183 |
msgstr ""
|
2184 |
|
2185 |
+
#: includes/settings/tabs/wps-about.php:48
|
2186 |
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."
|
2187 |
msgstr ""
|
2188 |
|
2189 |
+
#: includes/settings/tabs/wps-about.php:48
|
2190 |
msgid "translation collaboration site"
|
2191 |
msgstr ""
|
2192 |
|
2193 |
+
#: includes/settings/tabs/wps-about.php:48
|
2194 |
msgid "drop us a line"
|
2195 |
msgstr ""
|
2196 |
|
2197 |
+
#: includes/settings/tabs/wps-about.php:52
|
2198 |
msgid "Support"
|
2199 |
msgstr ""
|
2200 |
|
2201 |
+
#: includes/settings/tabs/wps-about.php:57
|
2202 |
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:"
|
2203 |
msgstr ""
|
2204 |
|
2205 |
+
#: includes/settings/tabs/wps-about.php:60
|
2206 |
+
#: includes/settings/tabs/wps-about.php:61
|
2207 |
msgid "Have you read the %s?"
|
2208 |
msgstr ""
|
2209 |
|
2210 |
+
#: includes/settings/tabs/wps-about.php:60
|
2211 |
msgid "FAQs"
|
2212 |
msgstr ""
|
2213 |
|
2214 |
+
#: includes/settings/tabs/wps-about.php:61
|
2215 |
msgid "manual"
|
2216 |
msgstr ""
|
2217 |
|
2218 |
+
#: includes/settings/tabs/wps-about.php:62
|
2219 |
msgid "Have you search the %s for a similar issue?"
|
2220 |
msgstr ""
|
2221 |
|
2222 |
+
#: includes/settings/tabs/wps-about.php:62
|
2223 |
msgid "support forum"
|
2224 |
msgstr ""
|
2225 |
|
2226 |
+
#: includes/settings/tabs/wps-about.php:63
|
2227 |
msgid "Have you search the Internet for any error messages you are receiving?"
|
2228 |
msgstr ""
|
2229 |
|
2230 |
+
#: includes/settings/tabs/wps-about.php:64
|
2231 |
msgid "Make sure you have access to your PHP error logs."
|
2232 |
msgstr ""
|
2233 |
|
2234 |
+
#: includes/settings/tabs/wps-about.php:67
|
2235 |
msgid "And a few things to double-check:"
|
2236 |
msgstr ""
|
2237 |
|
2238 |
+
#: includes/settings/tabs/wps-about.php:70
|
2239 |
msgid "How's your memory_limit in php.ini?"
|
2240 |
msgstr ""
|
2241 |
|
2242 |
+
#: includes/settings/tabs/wps-about.php:71
|
2243 |
msgid "Have you tried disabling any other plugins you may have installed?"
|
2244 |
msgstr ""
|
2245 |
|
2246 |
+
#: includes/settings/tabs/wps-about.php:72
|
2247 |
msgid "Have you tried using the default WordPress theme?"
|
2248 |
msgstr ""
|
2249 |
|
2250 |
+
#: includes/settings/tabs/wps-about.php:73
|
2251 |
msgid "Have you double checked the plugin settings?"
|
2252 |
msgstr ""
|
2253 |
|
2254 |
+
#: includes/settings/tabs/wps-about.php:74
|
2255 |
msgid "Do you have all the required PHP extensions installed?"
|
2256 |
msgstr ""
|
2257 |
|
2258 |
+
#: includes/settings/tabs/wps-about.php:75
|
2259 |
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?"
|
2260 |
msgstr ""
|
2261 |
|
2262 |
+
#: includes/settings/tabs/wps-about.php:76
|
2263 |
msgid "Have you checked your PHP and web server error logs?"
|
2264 |
msgstr ""
|
2265 |
|
2266 |
+
#: includes/settings/tabs/wps-about.php:79
|
2267 |
msgid "Still not having any luck?"
|
2268 |
msgstr ""
|
2269 |
|
2270 |
+
#: includes/settings/tabs/wps-about.php:79
|
2271 |
msgid "Then please open a new thread on the %s and we'll respond as soon as possible."
|
2272 |
msgstr ""
|
2273 |
|
2274 |
+
#: includes/settings/tabs/wps-about.php:79
|
2275 |
msgid "WordPress.org support forum"
|
2276 |
msgstr ""
|
2277 |
|
2278 |
+
#: includes/settings/tabs/wps-about.php:83
|
2279 |
msgid "Alternatively %s support is available as well."
|
2280 |
msgstr ""
|
2281 |
|
2282 |
+
#: includes/settings/tabs/wps-about.php:83
|
2283 |
msgid "Farsi"
|
2284 |
msgstr ""
|
2285 |
|
2286 |
+
#: includes/settings/tabs/wps-access-level.php:21
|
2287 |
msgid "WP Statistics Honey Pot Page"
|
2288 |
msgstr ""
|
2289 |
|
2290 |
+
#: includes/settings/tabs/wps-access-level.php:22
|
2291 |
msgid "This is the honey pot for WP Statistics to use, do not delete."
|
2292 |
msgstr ""
|
2293 |
|
2294 |
+
#: includes/settings/tabs/wps-access-level.php:45
|
2295 |
msgid "Access Levels"
|
2296 |
msgstr ""
|
2297 |
|
2298 |
+
#: includes/settings/tabs/wps-access-level.php:74
|
2299 |
msgid "Required user level to view WP Statistics"
|
2300 |
msgstr ""
|
2301 |
|
2302 |
+
#: includes/settings/tabs/wps-access-level.php:89
|
2303 |
msgid "Required user level to manage WP Statistics"
|
2304 |
msgstr ""
|
2305 |
|
2306 |
+
#: includes/settings/tabs/wps-access-level.php:97
|
2307 |
msgid "See the %s for details on capability levels."
|
2308 |
msgstr ""
|
2309 |
|
2310 |
+
#: includes/settings/tabs/wps-access-level.php:97
|
2311 |
msgid "WordPress Roles and Capabilities page"
|
2312 |
msgstr ""
|
2313 |
|
2314 |
+
#: includes/settings/tabs/wps-access-level.php:98
|
2315 |
msgid "Hint: manage_network = Super Admin Network, manage_options = Administrator, edit_others_posts = Editor, publish_posts = Author, edit_posts = Contributor, read = Everyone."
|
2316 |
msgstr ""
|
2317 |
|
2318 |
+
#: includes/settings/tabs/wps-access-level.php:99
|
2319 |
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."
|
2320 |
msgstr ""
|
2321 |
|
2322 |
+
#: includes/settings/tabs/wps-access-level.php:100
|
2323 |
msgid "If you need a more robust solution to delegate access you might want to look at %s in the WordPress plugin directory."
|
2324 |
msgstr ""
|
2325 |
|
2326 |
+
#: includes/log/exclusions.php:197
|
2327 |
+
#: includes/settings/tabs/wps-access-level.php:105 wp-statistics.php:341
|
2328 |
+
#: wp-statistics.php:417
|
2329 |
msgid "Exclusions"
|
2330 |
msgstr ""
|
2331 |
|
2332 |
+
#: includes/settings/tabs/wps-access-level.php:109
|
2333 |
msgid "Record exclusions"
|
2334 |
msgstr ""
|
2335 |
|
2336 |
+
#: includes/settings/tabs/wps-access-level.php:111
|
2337 |
+
#: includes/settings/tabs/wps-access-level.php:165
|
2338 |
+
#: includes/settings/tabs/wps-access-level.php:192
|
2339 |
msgid "Enable"
|
2340 |
msgstr ""
|
2341 |
|
2342 |
+
#: includes/settings/tabs/wps-access-level.php:112
|
2343 |
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."
|
2344 |
msgstr ""
|
2345 |
|
2346 |
+
#: includes/settings/tabs/wps-access-level.php:117
|
2347 |
msgid "Exclude User Roles"
|
2348 |
msgstr ""
|
2349 |
|
2350 |
+
#: includes/settings/tabs/wps-access-level.php:133
|
2351 |
+
#: includes/settings/tabs/wps-access-level.php:247
|
2352 |
+
#: includes/settings/tabs/wps-access-level.php:254
|
2353 |
+
#: includes/settings/tabs/wps-access-level.php:261
|
2354 |
msgid "Exclude"
|
2355 |
msgstr ""
|
2356 |
|
2357 |
+
#: includes/settings/tabs/wps-access-level.php:134
|
2358 |
msgid "Exclude %s role from data collection."
|
2359 |
msgstr ""
|
2360 |
|
2361 |
+
#: includes/settings/tabs/wps-access-level.php:140
|
2362 |
msgid "IP/Robot Exclusions"
|
2363 |
msgstr ""
|
2364 |
|
2365 |
+
#: includes/settings/tabs/wps-access-level.php:144
|
2366 |
msgid "Robot list"
|
2367 |
msgstr ""
|
2368 |
|
2369 |
+
#: includes/settings/tabs/wps-access-level.php:157
|
2370 |
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."
|
2371 |
msgstr ""
|
2372 |
|
2373 |
+
#: includes/settings/tabs/wps-access-level.php:158
|
2374 |
msgid "Reset to Default"
|
2375 |
msgstr ""
|
2376 |
|
2377 |
+
#: includes/settings/tabs/wps-access-level.php:163
|
2378 |
msgid "Force robot list update after upgrades"
|
2379 |
msgstr ""
|
2380 |
|
2381 |
+
#: includes/settings/tabs/wps-access-level.php:166
|
2382 |
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."
|
2383 |
msgstr ""
|
2384 |
|
2385 |
+
#: includes/settings/tabs/wps-access-level.php:171
|
2386 |
msgid "Robot visit threshold"
|
2387 |
msgstr ""
|
2388 |
|
2389 |
+
#: includes/settings/tabs/wps-access-level.php:174
|
2390 |
msgid "Treat visitors with more than this number of visits per day as robots. 0 = disabled."
|
2391 |
msgstr ""
|
2392 |
|
2393 |
+
#: includes/settings/tabs/wps-access-level.php:179
|
2394 |
msgid "Excluded IP address list"
|
2395 |
msgstr ""
|
2396 |
|
2397 |
+
#: includes/settings/tabs/wps-access-level.php:182
|
2398 |
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."
|
2399 |
msgstr ""
|
2400 |
|
2401 |
+
#: includes/settings/tabs/wps-access-level.php:183
|
2402 |
msgid "Add 10.0.0.0"
|
2403 |
msgstr ""
|
2404 |
|
2405 |
+
#: includes/settings/tabs/wps-access-level.php:184
|
2406 |
msgid "Add 172.16.0.0"
|
2407 |
msgstr ""
|
2408 |
|
2409 |
+
#: includes/settings/tabs/wps-access-level.php:185
|
2410 |
msgid "Add 192.168.0.0"
|
2411 |
msgstr ""
|
2412 |
|
2413 |
+
#: includes/settings/tabs/wps-access-level.php:190
|
2414 |
msgid "Use honey pot"
|
2415 |
msgstr ""
|
2416 |
|
2417 |
+
#: includes/settings/tabs/wps-access-level.php:193
|
2418 |
msgid "Use a honey pot page to identify robots."
|
2419 |
msgstr ""
|
2420 |
|
2421 |
+
#: includes/settings/tabs/wps-access-level.php:198
|
2422 |
msgid "Honey pot post id"
|
2423 |
msgstr ""
|
2424 |
|
2425 |
+
#: includes/settings/tabs/wps-access-level.php:201
|
2426 |
msgid "The post id to use for the honeypot page."
|
2427 |
msgstr ""
|
2428 |
|
2429 |
+
#: includes/settings/tabs/wps-access-level.php:202
|
2430 |
msgid "Create a new honey pot page"
|
2431 |
msgstr ""
|
2432 |
|
2433 |
+
#: includes/settings/tabs/wps-access-level.php:207
|
2434 |
msgid "GeoIP Exclusions"
|
2435 |
msgstr ""
|
2436 |
|
2437 |
+
#: includes/settings/tabs/wps-access-level.php:211
|
2438 |
msgid "Excluded countries list"
|
2439 |
msgstr ""
|
2440 |
|
2441 |
+
#: includes/settings/tabs/wps-access-level.php:214
|
2442 |
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."
|
2443 |
msgstr ""
|
2444 |
|
2445 |
+
#: includes/settings/tabs/wps-access-level.php:219
|
2446 |
msgid "Included countries list"
|
2447 |
msgstr ""
|
2448 |
|
2449 |
+
#: includes/settings/tabs/wps-access-level.php:222
|
2450 |
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."
|
2451 |
msgstr ""
|
2452 |
|
2453 |
+
#: includes/settings/tabs/wps-access-level.php:227
|
2454 |
msgid "Host Exclusions"
|
2455 |
msgstr ""
|
2456 |
|
2457 |
+
#: includes/settings/tabs/wps-access-level.php:231
|
2458 |
msgid "Excluded hosts list"
|
2459 |
msgstr ""
|
2460 |
|
2461 |
+
#: includes/settings/tabs/wps-access-level.php:234
|
2462 |
msgid "A list of fully qualified host names (ie. server.example.com, one per line) to exclude from statistics collection."
|
2463 |
msgstr ""
|
2464 |
|
2465 |
+
#: includes/settings/tabs/wps-access-level.php:236
|
2466 |
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."
|
2467 |
msgstr ""
|
2468 |
|
2469 |
+
#: includes/settings/tabs/wps-access-level.php:241
|
2470 |
msgid "Site URL Exclusions"
|
2471 |
msgstr ""
|
2472 |
|
2473 |
+
#: includes/settings/tabs/wps-access-level.php:245
|
2474 |
msgid "Excluded login page"
|
2475 |
msgstr ""
|
2476 |
|
2477 |
+
#: includes/settings/tabs/wps-access-level.php:248
|
2478 |
msgid "Exclude the login page for registering as a hit."
|
2479 |
msgstr ""
|
2480 |
|
2481 |
+
#: includes/settings/tabs/wps-access-level.php:252
|
2482 |
msgid "Excluded admin pages"
|
2483 |
msgstr ""
|
2484 |
|
2485 |
+
#: includes/settings/tabs/wps-access-level.php:255
|
2486 |
msgid "Exclude the admin pages for registering as a hit."
|
2487 |
msgstr ""
|
2488 |
|
2489 |
+
#: includes/settings/tabs/wps-access-level.php:259
|
2490 |
msgid "Excluded RSS feeds"
|
2491 |
msgstr ""
|
2492 |
|
2493 |
+
#: includes/settings/tabs/wps-access-level.php:262
|
2494 |
msgid "Exclude the RSS feeds for registering as a hit."
|
2495 |
msgstr ""
|
2496 |
|
2497 |
+
#: includes/settings/tabs/wps-browscap.php:22
|
2498 |
msgid "browscap settings"
|
2499 |
msgstr ""
|
2500 |
|
2501 |
+
#: includes/settings/tabs/wps-browscap.php:27
|
2502 |
msgid "browscap usage"
|
2503 |
msgstr ""
|
2504 |
|
2505 |
+
#: includes/settings/tabs/wps-browscap.php:32
|
2506 |
+
#: includes/settings/tabs/wps-browscap.php:56
|
2507 |
+
#: includes/settings/tabs/wps-general.php:76
|
2508 |
+
#: includes/settings/tabs/wps-general.php:92
|
2509 |
+
#: includes/settings/tabs/wps-general.php:116
|
2510 |
+
#: includes/settings/tabs/wps-general.php:132
|
2511 |
+
#: includes/settings/tabs/wps-general.php:148
|
2512 |
+
#: includes/settings/tabs/wps-general.php:160
|
2513 |
+
#: includes/settings/tabs/wps-general.php:187
|
2514 |
+
#: includes/settings/tabs/wps-general.php:199
|
2515 |
+
#: includes/settings/tabs/wps-general.php:214
|
2516 |
+
#: includes/settings/tabs/wps-general.php:228
|
2517 |
+
#: includes/settings/tabs/wps-general.php:258
|
2518 |
+
#: includes/settings/tabs/wps-general.php:270
|
2519 |
+
#: includes/settings/tabs/wps-general.php:286
|
2520 |
+
#: includes/settings/tabs/wps-general.php:325
|
2521 |
+
#: includes/settings/tabs/wps-general.php:341
|
2522 |
+
#: includes/settings/tabs/wps-geoip.php:47
|
2523 |
+
#: includes/settings/tabs/wps-geoip.php:71
|
2524 |
+
#: includes/settings/tabs/wps-geoip.php:104
|
2525 |
+
#: includes/settings/tabs/wps-maintenance.php:40
|
2526 |
+
#: includes/settings/tabs/wps-maintenance.php:64
|
2527 |
+
#: includes/settings/tabs/wps-notifications.php:69
|
2528 |
+
#: includes/settings/tabs/wps-notifications.php:81
|
2529 |
+
#: includes/settings/tabs/wps-notifications.php:93
|
2530 |
+
#: includes/settings/tabs/wps-notifications.php:105
|
2531 |
+
#: includes/settings/tabs/wps-notifications.php:121
|
2532 |
+
#: includes/settings/tabs/wps-overview-display.php:87
|
2533 |
+
#: includes/settings/tabs/wps-overview-display.php:107
|
2534 |
+
#: includes/settings/tabs/wps-overview-display.php:147
|
2535 |
+
#: includes/settings/tabs/wps-overview-display.php:159
|
2536 |
msgid "Active"
|
2537 |
msgstr ""
|
2538 |
|
2539 |
+
#: includes/settings/tabs/wps-browscap.php:33
|
2540 |
msgid "The browscap database will be downloaded and used to detect robots."
|
2541 |
msgstr ""
|
2542 |
|
2543 |
+
#: includes/settings/tabs/wps-browscap.php:39
|
2544 |
msgid "Update browscap Info"
|
2545 |
msgstr ""
|
2546 |
|
2547 |
+
#: includes/settings/tabs/wps-browscap.php:44
|
2548 |
msgid "Download browscap Database"
|
2549 |
msgstr ""
|
2550 |
|
2551 |
+
#: includes/settings/tabs/wps-browscap.php:45
|
2552 |
+
#: includes/settings/tabs/wps-geoip.php:60
|
2553 |
msgid "Save changes on this page to download the update."
|
2554 |
msgstr ""
|
2555 |
|
2556 |
+
#: includes/settings/tabs/wps-browscap.php:51
|
2557 |
msgid "Schedule weekly update of browscap DB"
|
2558 |
msgstr ""
|
2559 |
|
2560 |
+
#: includes/settings/tabs/wps-browscap.php:59
|
2561 |
+
#: includes/settings/tabs/wps-geoip.php:74
|
2562 |
msgid "Next update will be"
|
2563 |
msgstr ""
|
2564 |
|
2565 |
+
#: includes/settings/tabs/wps-browscap.php:74
|
2566 |
msgid "Download of the browscap database will be scheduled for once a week."
|
2567 |
msgstr ""
|
2568 |
|
2569 |
+
#: includes/settings/tabs/wps-general.php:50
|
2570 |
msgid "This will delete the manual when you save the settings, are you sure?"
|
2571 |
msgstr ""
|
2572 |
|
2573 |
+
#: includes/settings/tabs/wps-general.php:77
|
2574 |
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."
|
2575 |
msgstr ""
|
2576 |
|
2577 |
+
#: includes/settings/tabs/wps-general.php:82 shortcode.php:129
|
2578 |
msgid "Users Online"
|
2579 |
msgstr ""
|
2580 |
|
2581 |
+
#: includes/settings/tabs/wps-general.php:87
|
2582 |
msgid "User online"
|
2583 |
msgstr ""
|
languages/wp_statistics-ckb.mo
CHANGED
Binary file
|
languages/wp_statistics-ckb.po
CHANGED
@@ -10,2535 +10,2574 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
msgid "to"
|
15 |
msgstr ""
|
16 |
|
17 |
-
#:
|
18 |
msgid "Go"
|
19 |
msgstr ""
|
20 |
|
21 |
-
#:
|
22 |
msgid "Rank #5"
|
23 |
msgstr ""
|
24 |
|
25 |
-
#:
|
26 |
msgid "Rank #4"
|
27 |
msgstr ""
|
28 |
|
29 |
-
#:
|
30 |
msgid "Rank #3"
|
31 |
msgstr ""
|
32 |
|
33 |
-
#:
|
34 |
msgid "Rank #1"
|
35 |
msgstr ""
|
36 |
|
37 |
-
#:
|
38 |
msgid "Rank #2"
|
39 |
msgstr ""
|
40 |
|
41 |
-
#:
|
42 |
msgid "Visits Table"
|
43 |
msgstr ""
|
44 |
|
45 |
-
#:
|
46 |
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."
|
47 |
msgstr ""
|
48 |
|
49 |
-
#:
|
50 |
msgid "This operation could take a long time on installs with many rows in the visits table."
|
51 |
msgstr ""
|
52 |
|
53 |
-
#:
|
54 |
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."
|
55 |
msgstr ""
|
56 |
|
57 |
-
#:
|
58 |
msgid "Filtered by"
|
59 |
msgstr ""
|
60 |
|
61 |
-
#:
|
62 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:925
|
63 |
msgid "Range"
|
64 |
msgstr ""
|
65 |
|
66 |
-
#:
|
67 |
msgid "MM/DD/YYYY"
|
68 |
msgstr "MM/DD/YYYY"
|
69 |
|
70 |
-
#:
|
71 |
msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
|
72 |
msgstr "وەرگێرانەکان بەکارمەهێنە و لە جیاتی ئەوە ئینگلیزی وەکو زمانی بنچینەیی بۆ WP Statistics بەکاربهێنە (پێویستی بە بارکردنی دوو پەڕ هەیە)"
|
73 |
|
74 |
-
#:
|
75 |
msgid "Force English"
|
76 |
msgstr "ئئنگلیزی بەزۆر"
|
77 |
|
78 |
-
#:
|
79 |
msgid "Languages"
|
80 |
msgstr "زمانەکان"
|
81 |
|
82 |
-
#:
|
83 |
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."
|
84 |
msgstr "تێبینی: ئەم هەڵبژاردنە هیچ پارامێتەری بەستەرێک لە ئەستۆناگرێت ( هەر شتێک لەدوای ؟)، تەنها بۆ ناوی سکریپتەکە. هەر تێنوسراوێک کەمتر لە دوو پیت پشتگوێ دەخرێت."
|
85 |
|
86 |
-
#:
|
87 |
msgid "A list of local urls (ie. /wordpress/about, one per line) to exclude from statistics collection."
|
88 |
msgstr "لیستێک لە بەستەرە ناوخۆییەکان (نمونە /wordpress/about بۆ هەر دێڕێک یەک) بۆ دەرکردنی لە کۆکراوەی ئامارەکان."
|
89 |
|
90 |
-
#:
|
91 |
msgid "Excluded URLs list"
|
92 |
msgstr "لیستی بەستەرە دەرکراوەکان"
|
93 |
|
94 |
-
#:
|
95 |
msgid "Excluded URL"
|
96 |
msgstr "بەستەری دەرکراو"
|
97 |
|
98 |
-
#:
|
99 |
msgid "Last 365 Days (Year)"
|
100 |
msgstr "٣٦٥ ڕۆژ ڕابردوو(ساڵ)"
|
101 |
|
102 |
-
#:
|
103 |
msgid "Last 30 Days (Month)"
|
104 |
msgstr "٣٠ ڕۆژ ڕابردوو (مانگ)"
|
105 |
|
106 |
-
#:
|
107 |
msgid "Last 7 Days (Week)"
|
108 |
msgstr "٧ ڕۆژی ڕابردوو(هەفتە)"
|
109 |
|
110 |
-
#:
|
111 |
msgid "Yahoo!"
|
112 |
msgstr "یاهو"
|
113 |
|
114 |
-
#:
|
115 |
msgid "Yandex"
|
116 |
msgstr "یاندیکس"
|
117 |
|
118 |
-
#:
|
119 |
msgid "clearch.org"
|
120 |
msgstr "clearch.org"
|
121 |
|
122 |
-
#:
|
123 |
msgid "DuckDuckGo"
|
124 |
msgstr "دەک دەک گۆو"
|
125 |
|
126 |
-
#:
|
127 |
msgid "Bing"
|
128 |
msgstr "بینگ"
|
129 |
|
130 |
-
#:
|
131 |
msgid "Baidu"
|
132 |
msgstr "بەیدوو"
|
133 |
|
134 |
-
#:
|
135 |
msgid "Hits in the last 20 days"
|
136 |
msgstr "ئامار لە دوایین ٢٠ ڕۆژدا"
|
137 |
|
138 |
-
#:
|
139 |
msgid "Feeds"
|
140 |
msgstr "پێشبردنەکان"
|
141 |
|
142 |
-
#:
|
143 |
msgid "User Role"
|
144 |
msgstr "ڕۆڵی بەرکارهێنەر"
|
145 |
|
146 |
-
#:
|
147 |
msgid "Login Page"
|
148 |
msgstr "پەڕی چوونەژوورەوە"
|
149 |
|
150 |
-
#:
|
151 |
msgid "Admin Page"
|
152 |
msgstr "پەڕی بەڕێوەبەر"
|
153 |
|
154 |
-
#:
|
155 |
msgid "Self Referral"
|
156 |
msgstr "ئاراستەکردنی خۆیی"
|
157 |
|
158 |
-
#:
|
159 |
msgid "IP Match"
|
160 |
msgstr "یەکگرتنەوەی ئایپی"
|
161 |
|
162 |
-
#:
|
163 |
msgid "Robot"
|
164 |
msgstr "ڕۆبۆت"
|
165 |
|
166 |
-
#:
|
167 |
msgid "Currently there are no users online in the site."
|
168 |
msgstr ".لە ئێستادا هیچ بەکارهێنەرێک بۆ ئەم ماڵپەڕ لەسەرهێڵ نییە"
|
169 |
|
170 |
-
#:
|
171 |
msgid "Robot Threshold"
|
172 |
msgstr "لێواری ڕۆبۆت"
|
173 |
|
174 |
-
#:
|
175 |
msgid "Honey Pot"
|
176 |
msgstr "مەنجەڵی هەنگوین"
|
177 |
|
178 |
-
#:
|
179 |
msgid "Page Trending Stats"
|
180 |
msgstr "ئامارەکانی پەڕی زۆر خوازراو"
|
181 |
|
182 |
-
#:
|
183 |
msgid "Hostname"
|
184 |
msgstr "ناوی خانەخوێ"
|
185 |
|
186 |
-
#:
|
187 |
-
#:
|
188 |
-
#:
|
189 |
-
#:
|
190 |
-
#:
|
191 |
-
#:
|
192 |
-
#:
|
193 |
msgid "Enable or disable this feature"
|
194 |
msgstr "ئەم تایبەتمەندیە چالاک یان ناچالاک بکە"
|
195 |
|
196 |
-
#:
|
197 |
msgid "Check for online users every"
|
198 |
msgstr "پشکنین بۆ بەکارهێنەرانی سەرهێڵ بکە هەموو"
|
199 |
|
200 |
-
#:
|
201 |
msgid "Second"
|
202 |
msgstr "چرکەیەک"
|
203 |
|
204 |
-
#:
|
205 |
msgid "Time for the check accurate online user in the site. Now: %s Second"
|
206 |
msgstr "کات بۆ پشکنینی دروستی بەکارهێنەری سەرهیڵ لەم ماڵپەڕە. ئێستا %s چرکەیە"
|
207 |
|
208 |
-
#:
|
209 |
msgid "Record all user"
|
210 |
msgstr "تۆمارکردنی گشت بەکارهێنەر"
|
211 |
|
212 |
-
#:
|
213 |
msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
|
214 |
msgstr "ڕێکخستنی دەرکردەکان و تۆمارەکانی هەموو بەکارهێنەرانی سەرهێڵ پشتگوێ بخە ( بەلەخۆگرتنی ئاراستەکردنی خۆیی و ڕۆبۆتەکان). پێویستە تەنها بۆ دیاریکردنی کێشە بەکاربهێندرێت."
|
215 |
|
216 |
-
#:
|
217 |
msgid "Store entire user agent string"
|
218 |
msgstr "تەواوی زنجیرەی بەکارهێنەری بریکار پاشەکەوت بکە"
|
219 |
|
220 |
-
#:
|
221 |
msgid "Only enabled for debugging"
|
222 |
msgstr "تەنها چالاک بکرێت بۆ هەڵەدۆزین"
|
223 |
|
224 |
-
#:
|
225 |
msgid "Coefficient per visitor"
|
226 |
msgstr "هاوچوستی بۆ هەر سەردانکارێک"
|
227 |
|
228 |
-
#:
|
229 |
msgid "For each visit to account for several hits. Currently %s."
|
230 |
msgstr "بۆ هەر سەردانێک بۆ هەژمارکردنی ژمارەیەک هەڵدانەوە. لە ئێستادا %s."
|
231 |
|
232 |
-
#:
|
233 |
-
#:
|
234 |
-
#:
|
235 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:396
|
236 |
msgid "Pages"
|
237 |
msgstr "پەڕەكان"
|
238 |
|
239 |
-
#:
|
240 |
msgid "Track all pages"
|
241 |
msgstr "شوێن پێی هەموو پەڕەکان بکە"
|
242 |
|
243 |
-
#:
|
244 |
msgid "Strip parameters from URI"
|
245 |
msgstr "لابردنی پارامێتەرەکان لە بەستەرەکە"
|
246 |
|
247 |
-
#:
|
248 |
msgid "This will remove anything after the ? in a URL."
|
249 |
msgstr "ئەمە هەموو شتێک دەسڕێتەوە لە دوای ؟ لە بەستەرێکدا"
|
250 |
|
251 |
-
#:
|
252 |
msgid "Disable hits column in post/pages list"
|
253 |
msgstr "ستونی هەڵدانەوەکان لە لیستی بابەت\\پەڕەکان ناچالاک بکە"
|
254 |
|
255 |
-
#:
|
256 |
msgid "Miscellaneous"
|
257 |
msgstr "هەمەجۆر"
|
258 |
|
259 |
-
#:
|
260 |
msgid "Show stats in menu bar"
|
261 |
msgstr "ئامارەكان لە لیست ئامراز پێشان بدە"
|
262 |
|
263 |
-
#:
|
264 |
msgid "No"
|
265 |
msgstr "نەخێر"
|
266 |
|
267 |
-
#:
|
268 |
msgid "Yes"
|
269 |
msgstr "بەڵێ"
|
270 |
|
271 |
-
#:
|
272 |
msgid "Show stats in admin menu bar"
|
273 |
msgstr "ئامارەكان لە لیست ئامرازی بەڕێوەبەر پێشان بدە"
|
274 |
|
275 |
-
#:
|
276 |
msgid "Hide admin notices about non active features"
|
277 |
msgstr "ئاگاداركردنەوەكانی بەڕێوەبەر بشارەوە سەبارەت بە تایبەتمەندییە ناچالاكەكان"
|
278 |
|
279 |
-
#:
|
280 |
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."
|
281 |
msgstr "لە بنەرەت زیادکراوەی ئاماری وۆردپرێس تواناییەکانی ناچالاکی زیاد کراوە بە شێوەی هەڵە لە پەڕەی بەڕێوەبەر نیشان ئەدات.ئەم هەڵبژاردە ئەم تایبەتمەندییە ناچالاک دەکات"
|
282 |
|
283 |
-
#:
|
284 |
msgid "Delete the manual"
|
285 |
msgstr "سڕینەوەی پەڕگەی ڕینمایی"
|
286 |
|
287 |
-
#:
|
288 |
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."
|
289 |
msgstr "لە بنەرەت پەرگەی ڕینمایی بەکارهێنەرزیادکراوەی ئامار لە بوخچەی زیادکراوەی ئامار بە قەبارەی(٥مێگابایت) دانراوە.گەر ئەم هەڵبژاردە چالاک بێت هەر ئێستا سڕایەوە و لەکاتی بەڕۆژ بوونەوەس نامێنێت."
|
290 |
|
291 |
-
#:
|
292 |
msgid "Search Engines"
|
293 |
msgstr "مەکینەکانی گەڕان"
|
294 |
|
295 |
-
#:
|
296 |
msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
|
297 |
msgstr "ناچاڵاککردنی مەکینەکانی گەڕان کە پێویستت پێیان نییە..ئەم کارە لە ئاکامی گشتی مەکینەکان کارگێڕی هەیە."
|
298 |
|
299 |
-
#:
|
300 |
msgid "disable"
|
301 |
msgstr "ناچالاک"
|
302 |
|
303 |
-
#:
|
304 |
msgid "Disable %s from data collection and reporting."
|
305 |
msgstr "ناچالاککردنی %s کۆکردنەوەی داتا و گوزارشەکان."
|
306 |
|
307 |
-
#:
|
308 |
msgid "Charts"
|
309 |
msgstr "هێڵکاریەکان"
|
310 |
|
311 |
-
#:
|
312 |
msgid "Include totals"
|
313 |
msgstr "کۆی گشتی"
|
314 |
|
315 |
-
#:
|
316 |
msgid "Add a total line to charts with multiple values, like the search engine referrals"
|
317 |
msgstr "زیادکردنی کۆی گشتی بە هێڵکاری ئاماری تێپەڕبوونلە مەکینەکانی گەڕان"
|
318 |
|
319 |
-
#:
|
320 |
msgid "GeoIP settings"
|
321 |
msgstr "ڕێکخستنهکانیGeoIP"
|
322 |
|
323 |
-
#:
|
324 |
msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
|
325 |
msgstr "خزمەتگوزاری نیشاندانی شوێن IPلەگەڵ GeoLite2 دابینکراوە و لەلایانMaxMind درووستکراوە و لە %s توانایی دەستپێگەیشتنی بۆ هەیە."
|
326 |
|
327 |
-
#:
|
328 |
msgid "GeoIP collection"
|
329 |
msgstr "کۆی GeoIP"
|
330 |
|
331 |
-
#:
|
332 |
msgid "For get more information and location (country) from visitor, enable this feature."
|
333 |
msgstr "بۆ وەرگرتنی زانیاری زۆرتر و شوێنی(وەڵاتی) میوان.ئەم جێگا چالاک بکە."
|
334 |
|
335 |
-
#:
|
336 |
msgid "Update GeoIP Info"
|
337 |
msgstr "بەڕۆژ بونی زانیاریەکان GeoIP"
|
338 |
|
339 |
-
#:
|
340 |
msgid "Download GeoIP Database"
|
341 |
msgstr "داگرتنی بنکەداراوەی GeoIP"
|
342 |
|
343 |
-
#:
|
344 |
msgid "Schedule monthly update of GeoIP DB"
|
345 |
msgstr "برنامە دانان بۆ بەڕۆژ کردنی مانگانەی بنکەدراوەی GeoIP"
|
346 |
|
347 |
-
#:
|
348 |
msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
|
349 |
msgstr "وەرگرتنی بنکەدراوەی GeoIP لە دوو ڕۆژ پاش یەکەمین سێ شەممەی هەر مانگ."
|
350 |
|
351 |
-
#:
|
352 |
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)."
|
353 |
msgstr "ئەم هەڵبژاردە تەنانەت زانیاریەکانی کەمتر لە ١ کیلۆبایتیش دادگرێت(کە بەمانای زانیارییەکانی هاورێی زیادکراوەیە)."
|
354 |
|
355 |
-
#:
|
356 |
msgid "Populate missing GeoIP after update of GeoIP DB"
|
357 |
msgstr "خەڵکی لەدەست چوو GeoIP پاش لە بەڕۆژ کردنی بنکەی دراوە GeoIP"
|
358 |
|
359 |
-
#:
|
360 |
msgid "Update any missing GeoIP data after downloading a new database."
|
361 |
msgstr "بەڕۆژ کردنی هەر داتاییک لەدەست چوو GeoIP پاش لە داگرتنی بنکە دراوەی نوێ"
|
362 |
|
363 |
-
#:
|
364 |
msgid "Country code for private IP addresses"
|
365 |
msgstr "کۆدی وەڵآت بۆ نیشانەکانی IP تایبەت"
|
366 |
|
367 |
-
#:
|
368 |
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."
|
369 |
msgstr "ستانداردی دوو کۆدی نێودەوڵەتی نامە (بۆ وێنە. ئەمریکا= وەڵآتی ئەمریکا، CA = کەنەدا، و هتد) بۆ تایبەت (یوانایی دەتپێگەیشتنی نییە) ناونیشانیIP (بۆ وێنە. 10.0.0.1، 192.158.1.1، 127.0.0.1،و هتد). بەکارهێنان لە "000" (سێ سفر) به استفاده از "نەناسراو" بە عینوانی کۆدی وەڵات."
|
370 |
|
371 |
-
#:
|
372 |
msgid "GeoIP collection is disabled due to the following reasons:"
|
373 |
msgstr "کۆی GeoIP بەهۆکاری خوارەوە ناچالاک بووە"
|
374 |
|
375 |
-
#:
|
376 |
msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
|
377 |
msgstr "کۆی GeoIP به PHP وەشانی%s یان سەرترەوە پێویستی هەیە، لە ئێستا بە هۆی کەم بوونی وەشانی PHPئێوە ناچالاکە."
|
378 |
|
379 |
-
#:
|
380 |
msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
|
381 |
msgstr "کۆی GeoIPپێویستی بە پێوەکراوەی BC Math لەPHP هەیە وە ناتوانێت لە وەشانی ئێوە PHPدابین بکرێت!"
|
382 |
|
383 |
-
#:
|
384 |
msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
|
385 |
msgstr "کۆی GeoIPپێویستی بە پێوەکراوەی BC Math لەPHP هەیە وە ناتوانێت لە وەشانی ئێوە PHPدابین بکرێت!"
|
386 |
|
387 |
-
#:
|
388 |
msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
|
389 |
msgstr "شێوازی پاراستنی PHP نەدۆزراوە! کۆیGeoIP لەلایەن شیوازی پاراستنی PHP پاڵپشتی نابێت!"
|
390 |
|
391 |
-
#:
|
392 |
msgid "This will permanently delete data from the database each day, are you sure you want to enable this option?"
|
393 |
msgstr "ئەم کردارە داتا کۆنەکان بۆ هەمیشە دەسڕێتەوە. بۆ چالاککردنی دەڵنیای؟"
|
394 |
|
395 |
-
#:
|
396 |
msgid "Database Maintenance"
|
397 |
msgstr "چاککردن و پاراسنی بنکەدراوە"
|
398 |
|
399 |
-
#:
|
|
|
400 |
msgid "Run a daily WP Cron job to prune the databases"
|
401 |
msgstr "هەڵبونی ڕۆژانەی کات بۆ هەرەسکردنی بنکەی دراوە"
|
402 |
|
403 |
-
#:
|
404 |
msgid "A WP Cron job will be run daily to prune any data older than a set number of days."
|
405 |
msgstr "ئەرکی ئەو سڕینەوەی ڕۆژانەی زانیاریەکانە کە زۆرتر لە کاتی هەڵبەژاردە هەڵگیراوە"
|
406 |
|
407 |
-
#:
|
408 |
msgid "Prune data older than"
|
409 |
msgstr "زانیاری کۆنەتر"
|
410 |
|
411 |
-
#:
|
412 |
msgid "Days"
|
413 |
msgstr "ڕۆژ"
|
414 |
|
415 |
-
#:
|
416 |
msgid "The number of days to keep statistics for. Minimum value is 30 days. Invalid values will disable the daily maintenance."
|
417 |
msgstr "ژمارەی ڕۆژەکان بۆ هێشتنەوەی ئامار. کەمترین ژمارە ٣٠ ڕۆژە.ڕۆژانە ژمارەی نادرووست ناچالاک دکرێتەوە."
|
418 |
|
419 |
-
#:
|
420 |
msgid "Common Report Options"
|
421 |
msgstr "ڕێکخستنی گوزارشی گشتی"
|
422 |
|
423 |
-
#:
|
424 |
msgid "E-mail addresses"
|
425 |
msgstr "ناونیشانەکانی ئیمەیل"
|
426 |
|
427 |
-
#:
|
428 |
msgid "A comma separated list of e-mail addresses to send reports to."
|
429 |
msgstr "بۆ وەرگرتنی ئیمەیلی گوزارش،ناونیشانی ئیمەیلەکان بە کۆما جودابکەنەوە."
|
430 |
|
431 |
-
#:
|
432 |
msgid "Update Reports"
|
433 |
msgstr "بەڕۆژکردنی گوزارشەکان"
|
434 |
|
435 |
-
#:
|
436 |
-
#:
|
437 |
msgid "Browscap"
|
438 |
msgstr "Browscap"
|
439 |
|
440 |
-
#:
|
441 |
msgid "Send a report whenever the browscap.ini is updated."
|
442 |
msgstr "ناردنی گوزارش کاتێک browscap.ini بەڕۆژ دەبێت"
|
443 |
|
444 |
-
#:
|
445 |
-
#:
|
446 |
-
#:
|
447 |
msgid "GeoIP"
|
448 |
msgstr "GeoIP"
|
449 |
|
450 |
-
#:
|
451 |
msgid "Send a report whenever the GeoIP database is updated."
|
452 |
msgstr "ناردنی گوزارش کاتێک GeoIP بەڕۆژ دەبێت"
|
453 |
|
454 |
-
#:
|
455 |
msgid "Pruning"
|
456 |
msgstr "سڕینەوە"
|
457 |
|
458 |
-
#:
|
459 |
msgid "Send a report whenever the pruning of database is run."
|
460 |
msgstr "ناردنی گوزارش کاتێک بنکەی دراوە بەڕۆژ دەبێت"
|
461 |
|
462 |
-
#:
|
463 |
msgid "Upgrade"
|
464 |
msgstr "بەڕۆژبوون"
|
465 |
|
466 |
-
#:
|
467 |
msgid "Send a report whenever the plugin is upgraded."
|
468 |
msgstr "سڕینەوە"
|
469 |
|
470 |
-
#:
|
471 |
-
#:
|
472 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:174
|
473 |
msgid "Statistical reporting"
|
474 |
msgstr "گوزارشی ئاماری"
|
475 |
|
476 |
-
#:
|
477 |
msgid "Schedule"
|
478 |
msgstr "کات دیاریکردن"
|
479 |
|
480 |
-
#:
|
481 |
msgid "Select how often to receive statistical report."
|
482 |
msgstr "چۆنیەتی وەرگرتنی گوزارشی ئامار هەلبژێرە"
|
483 |
|
484 |
-
#:
|
485 |
msgid "Send reports via"
|
486 |
msgstr "ناردنی گوزارش لە رێگای"
|
487 |
|
488 |
-
#:
|
489 |
msgid "Email"
|
490 |
msgstr "ئیمەیل"
|
491 |
|
492 |
-
#:
|
493 |
msgid "SMS"
|
494 |
msgstr "کۆرتە پەیام"
|
495 |
|
496 |
-
#:
|
497 |
msgid "Select delivery method for statistical report."
|
498 |
msgstr "شێوازی وەرگرتنی گوزارشی ئاماری هەڵبژێرە"
|
499 |
|
500 |
-
#:
|
501 |
msgid "Note: To send SMS text messages please install the %s plugin."
|
502 |
msgstr "خاڵ: بۆناردنی کورتە پەیام تکایە زیادکراوەی %s دامەرزێنە."
|
503 |
|
504 |
-
#:
|
505 |
msgid "WordPress SMS"
|
506 |
msgstr "کورتەپەیامی وۆردپرێس"
|
507 |
|
508 |
-
#:
|
509 |
msgid "Report body"
|
510 |
msgstr "ناوەرۆکی دەقی گوزارش"
|
511 |
|
512 |
-
#:
|
513 |
msgid "Enter the contents of the report."
|
514 |
msgstr "ناوەرۆکی گوزارش بنووسە"
|
515 |
|
516 |
-
#:
|
517 |
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:"
|
518 |
msgstr "هەر کورتە کۆدێک لە لایەن وۆردپرێسی ئێوە پاڵپشتی دەبێت. کورتەکۆدەکان لە زیادکراوەی ئامار(لیستی کۆدەکان لە رینمایی بەکارهینەردا هەیە) لە جەستە پشتیبانی دەکرێت. بۆ وێنە :"
|
519 |
|
520 |
-
#:
|
521 |
-
#:
|
522 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:245
|
523 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:492
|
524 |
msgid "User Online"
|
525 |
msgstr "بەکارهینەری سەرهێڵ"
|
526 |
|
527 |
-
#:
|
528 |
-
#:
|
529 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:251
|
530 |
msgid "Today Visitor"
|
531 |
msgstr "میوانی ئەمڕۆ"
|
532 |
|
533 |
-
#:
|
534 |
-
#:
|
535 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:248
|
536 |
msgid "Today Visit"
|
537 |
msgstr "سەردانی ئەمڕۆ"
|
538 |
|
539 |
-
#:
|
540 |
-
#:
|
541 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:257
|
542 |
msgid "Yesterday Visitor"
|
543 |
msgstr "میوانی دوێنێ"
|
544 |
|
545 |
-
#:
|
546 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:59
|
547 |
msgid "Yesterday Visit"
|
548 |
msgstr "سەردانی دوێنێ"
|
549 |
|
550 |
-
#:
|
551 |
-
#:
|
552 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:272
|
553 |
msgid "Total Visitor"
|
554 |
msgstr "کۆی میوانەکان"
|
555 |
|
556 |
-
#:
|
557 |
-
#:
|
558 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:269
|
559 |
msgid "Total Visit"
|
560 |
msgstr "کۆی سەردانەکان"
|
561 |
|
562 |
-
#:
|
563 |
-
#:
|
564 |
msgid "None"
|
565 |
msgstr "هیچ"
|
566 |
|
567 |
-
#:
|
568 |
msgid "Summary Statistics"
|
569 |
msgstr "کورتە ئامار"
|
570 |
|
571 |
-
#:
|
572 |
-
#:
|
573 |
msgid "About"
|
574 |
msgstr "دەربارە"
|
575 |
|
576 |
-
#:
|
577 |
msgid "Hits Statistical Chart"
|
578 |
msgstr "هێڵکاری ئاماری سەردان"
|
579 |
|
580 |
-
#:
|
581 |
msgid "Search Engine Referrers Statistical Chart"
|
582 |
msgstr "هێڵکاری یاماری مەکینەکانی گەڕان"
|
583 |
|
584 |
-
#:
|
585 |
msgid "Top Pages Visited"
|
586 |
msgstr "زۆرترین پەرەکانی سەردان"
|
587 |
|
588 |
-
#:
|
589 |
msgid "Dashboard"
|
590 |
msgstr "داشبۆرد"
|
591 |
|
592 |
-
#:
|
593 |
-
#:
|
594 |
-
#:
|
595 |
msgid "The following items are global to all users."
|
596 |
msgstr "بەڕگەکانی خوارەوە جیهانین بۆ تەواو بەکارهینەران"
|
597 |
|
598 |
-
#:
|
599 |
msgid "Disable dashboard widgets"
|
600 |
msgstr "ناچاڵاککردنی ئامرازی داشبۆرد"
|
601 |
|
602 |
-
#:
|
603 |
msgid "Disable the dashboard widgets."
|
604 |
msgstr "ناچاڵاککردنی ئامرازی داشبۆرد"
|
605 |
|
606 |
-
#:
|
607 |
msgid "Page/Post Editor"
|
608 |
msgstr "دەستکاری پەڕەو/نوسراوە"
|
609 |
|
610 |
-
#:
|
611 |
msgid "Disable post/page editor widget"
|
612 |
msgstr "ناچالاککردنی ئامرازی(ویدجێت) سەردانی پەرەو/نوسراوە"
|
613 |
|
614 |
-
#:
|
615 |
msgid "Disable the page/post editor widget."
|
616 |
msgstr "ناچالاککردنی ئامرازی(ویدجێت) سەردانی پەرەو/نوسراوە"
|
617 |
|
618 |
-
#:
|
619 |
msgid "Map type"
|
620 |
msgstr "جۆری نەخشە"
|
621 |
|
622 |
-
#:
|
623 |
-
#:
|
624 |
msgid "Google"
|
625 |
msgstr "گووگڵ"
|
626 |
|
627 |
-
#:
|
628 |
msgid "JQVMap"
|
629 |
msgstr "نەخشەیJQV"
|
630 |
|
631 |
-
#:
|
632 |
msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
|
633 |
msgstr "هەلبژاردەی \"گوگڵ\" بۆخزمەتگوزاری نەخشەی گوگڵ بۆ دوایین سەردانەکان بەهرە وەردەگرێت. (پێویستی بە دەستپێگەیشتنی گووگڵە)."
|
634 |
|
635 |
-
#:
|
636 |
msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
|
637 |
msgstr "هەڵبژاردەی \"JQVMap\" لە کتێبخانەی جاڤاسکریپت JQVMap بۆ دوایین سەردانەەکان کەڵک وەردەگرێت. (پێویستی بە خزمەتگوزاری دەرەوەی نابێت )."
|
638 |
|
639 |
-
#:
|
640 |
msgid "Disable map"
|
641 |
msgstr "ناچالاککردنی نخشە"
|
642 |
|
643 |
-
#:
|
644 |
msgid "Disable the map display"
|
645 |
msgstr "ناچالاککردنی نیشاندانی نەخشە"
|
646 |
|
647 |
-
#:
|
648 |
msgid "Get country location from Google"
|
649 |
msgstr "وەرگرتنی شوێنی وەڵات لە گووگڵ"
|
650 |
|
651 |
-
#:
|
652 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
653 |
msgstr "ئەم تایبەتمەندیە لەوانەیە نیشاندانی ئاماری بە هێواشی ئەنجام بدات .تەنها بۆ جۆری نەخشەی گووگڵ ڕێکخراوە."
|
654 |
|
655 |
-
#:
|
656 |
msgid "Overview Widgets to Display"
|
657 |
msgstr "پێنوینی بۆ نیشاندانی ویدجێتەکان"
|
658 |
|
659 |
-
#:
|
660 |
msgid "The following items are unique to each user. If you do not select the 'About' widget it will automatically be displayed in the last positon of column A."
|
661 |
msgstr "Aبڕگەکانی ژێرەوە تایبەت بە بەکارهێنەرانن.گەر ئێوە ئامرازی\"دەربارەی زیادکراوە\"هەڵنەبژیرن ،بەشێوازی خۆکارانە لە ستوونی نیشاندەدرێت"
|
662 |
|
663 |
-
#:
|
664 |
msgid "Slot"
|
665 |
msgstr "ئاسۆیی "
|
666 |
|
667 |
-
#:
|
668 |
msgid "Column A"
|
669 |
msgstr "Aئاسۆیی "
|
670 |
|
671 |
-
#:
|
672 |
msgid "Column B"
|
673 |
msgstr "ئاسۆیی B"
|
674 |
|
675 |
-
#:
|
676 |
msgid "Slot 1"
|
677 |
msgstr "ئاسۆیی ١"
|
678 |
|
679 |
-
#:
|
680 |
msgid "Slot 2"
|
681 |
msgstr "ئاسۆیی ٢"
|
682 |
|
683 |
-
#:
|
684 |
msgid "Slot 3"
|
685 |
msgstr "ئاسۆیی ٣"
|
686 |
|
687 |
-
#:
|
688 |
msgid "Slot 4"
|
689 |
msgstr "ئاسۆیی ٤"
|
690 |
|
691 |
-
#:
|
692 |
msgid "Slot 5"
|
693 |
msgstr "ئاسۆیی ٥"
|
694 |
|
695 |
-
#:
|
696 |
msgid "Slot 6"
|
697 |
msgstr "ئاسۆیی ٦"
|
698 |
|
699 |
-
#:
|
700 |
-
#:
|
701 |
msgid "N/A"
|
702 |
msgstr "بەتاڵ"
|
703 |
|
704 |
-
#:
|
705 |
msgid "Slot 7"
|
706 |
msgstr "ئاسۆیی ٧"
|
707 |
|
708 |
-
#:
|
709 |
msgid "WP Statisitcs Removal"
|
710 |
msgstr "سڕینەوەی زیادکراوەی ئامار"
|
711 |
|
712 |
-
#:
|
713 |
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."
|
714 |
msgstr "سڕینەوەی زیادکراوەی ئاماری وۆردپرێس،سڕینەوەی ڕیکخستنەکانی زیادکراوەی نییە.ئەم هەڵبژاردە دەتوانن تەواوی زانیاری(خشت و داتا)ی زیادکراوە بسڕنەوە."
|
715 |
|
716 |
-
#:
|
717 |
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."
|
718 |
msgstr "پاکسازی لە کاتی بارکردنی پەڕە پاس بارێک لە تۆمارکردنی ڕێکخستنەکان ئەنجام دەبێت.بەڵام زیادکراوەی ئاماری وۆردپرێس لە پێرستی بەڕێوەبەر تاکاتێک بەشەکانی دیکەی پەڕە هەڵگرسابێت نیشان دەدرێت."
|
719 |
|
720 |
-
#:
|
721 |
msgid "Remove data and settings"
|
722 |
msgstr "سڕینەوە داتاو ڕێکخستنەکان"
|
723 |
|
724 |
-
#:
|
725 |
msgid "Remove"
|
726 |
msgstr "سڕینەوە"
|
727 |
|
728 |
-
#:
|
729 |
msgid "Remove data and settings, this action cannot be undone."
|
730 |
msgstr "سڕینەوە داتاو ڕێکخستنەکان .ئەم کردارە ناگەرێتەوە."
|
731 |
|
732 |
-
#:
|
733 |
msgid "General"
|
734 |
msgstr "گشتی"
|
735 |
|
736 |
-
#:
|
737 |
msgid "Notifications"
|
738 |
msgstr "ئاگادارییەکان"
|
739 |
|
740 |
-
#:
|
741 |
msgid "Dashboard/Overview"
|
742 |
msgstr "داشبۆرد/لەچاوپێکەوتنێک"
|
743 |
|
744 |
-
#:
|
745 |
msgid "Access/Exclusions"
|
746 |
msgstr "دەستپێگەیشتن/دوورخستنەوە "
|
747 |
|
748 |
-
#:
|
749 |
msgid "browscap"
|
750 |
msgstr "browscap"
|
751 |
|
752 |
-
#:
|
753 |
msgid "Maintenance"
|
754 |
msgstr "پاراستن/چاککردن"
|
755 |
|
756 |
-
#:
|
757 |
msgid "Removal"
|
758 |
msgstr "سڕینەوە"
|
759 |
|
760 |
-
#:
|
761 |
-
#:
|
762 |
-
#:
|
763 |
-
#:
|
764 |
-
#:
|
765 |
-
#:
|
766 |
-
#:
|
767 |
-
#:
|
768 |
msgid "Update"
|
769 |
msgstr "بەڕۆژکردن"
|
770 |
|
771 |
-
#:
|
772 |
-
msgid "Manual not found: %s"
|
773 |
-
msgstr "ڕینمایی پەیدانەبوو: %s"
|
774 |
-
|
775 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/manual/manual.php:39
|
776 |
-
msgid "Invalid file type selected: %s"
|
777 |
-
msgstr "جۆری پەرگە ناڕەوا هەڵبژێردراوە: %s"
|
778 |
-
|
779 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:10
|
780 |
msgid "Once Weekly"
|
781 |
msgstr "جارێک لە هەفتە"
|
782 |
|
783 |
-
#:
|
784 |
msgid "Once Every 2 Weeks"
|
785 |
msgstr "هەر ٢ هەفتە"
|
786 |
|
787 |
-
#:
|
788 |
msgid "Once Every 4 Weeks"
|
789 |
msgstr "هەر ٤ هەفتە"
|
790 |
|
791 |
-
#:
|
792 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:312
|
793 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:349
|
794 |
msgid "Statistics"
|
795 |
msgstr "ئامار"
|
796 |
|
797 |
-
#:
|
798 |
msgid "Show site stats in sidebar."
|
799 |
msgstr "نیشاندانی ئاماری ماڵپەر لە (ئامرازی) لاتەنیشت"
|
800 |
|
801 |
-
#:
|
802 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:260
|
803 |
msgid "Week Visit"
|
804 |
msgstr "سەردانی هەفتە"
|
805 |
|
806 |
-
#:
|
807 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:263
|
808 |
msgid "Month Visit"
|
809 |
msgstr "سەردانی مانگ"
|
810 |
|
811 |
-
#:
|
812 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:266
|
813 |
msgid "Years Visit"
|
814 |
msgstr "سەردانی ساڵ"
|
815 |
|
816 |
-
#:
|
817 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:275
|
818 |
msgid "Total Page Views"
|
819 |
msgstr "کۆی گشتی سەردانی پەڕگە"
|
820 |
|
821 |
-
#:
|
822 |
msgid "Search Engine referred"
|
823 |
msgstr "هاتن لە مەکینەی گەڕان"
|
824 |
|
825 |
-
#:
|
826 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:298
|
827 |
msgid "Total Posts"
|
828 |
msgstr "کۆی نووسراوەکان"
|
829 |
|
830 |
-
#:
|
831 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:301
|
832 |
msgid "Total Pages"
|
833 |
msgstr "کۆی پەڕەکان"
|
834 |
|
835 |
-
#:
|
836 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:304
|
837 |
msgid "Total Comments"
|
838 |
msgstr "کۆی بۆچونەکان(لێدوانەکان)"
|
839 |
|
840 |
-
#:
|
841 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:307
|
842 |
msgid "Total Spams"
|
843 |
msgstr "کۆی بێزارکەرەکان"
|
844 |
|
845 |
-
#:
|
846 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:310
|
847 |
msgid "Total Users"
|
848 |
msgstr "کۆی بەکارهێنەران"
|
849 |
|
850 |
-
#:
|
851 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:313
|
852 |
msgid "Average Posts"
|
853 |
msgstr "مامناوەندی نووسراوەکان"
|
854 |
|
855 |
-
#:
|
856 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:316
|
857 |
msgid "Average Comments"
|
858 |
msgstr "مامناوەندی بۆچوونەکان"
|
859 |
|
860 |
-
#:
|
861 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:319
|
862 |
msgid "Average Users"
|
863 |
msgstr "مامناوەندی بەکارهێنەران"
|
864 |
|
865 |
-
#:
|
866 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:322
|
867 |
msgid "Last Post Date"
|
868 |
msgstr "ڕێکەوتی بەڕۆژبوونی ماڵپەڕ"
|
869 |
|
870 |
-
#:
|
871 |
msgid "Name"
|
872 |
msgstr "ناو"
|
873 |
|
874 |
-
#:
|
875 |
msgid "Items"
|
876 |
msgstr "بڕگە"
|
877 |
|
878 |
-
#:
|
879 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:517
|
880 |
msgid "Yesterday visit"
|
881 |
msgstr "سەردانی دوێنێ"
|
882 |
|
883 |
-
#:
|
884 |
msgid "Search Engine Referred"
|
885 |
msgstr "هاتن لە مەکینەی گەڕان"
|
886 |
|
887 |
-
#:
|
888 |
msgid "Select type of search engine"
|
889 |
msgstr "هەڵبژاردنی جۆری مەکینەی گەڕان"
|
890 |
|
891 |
-
#:
|
892 |
msgid "ERROR: WP Statistics has detected an unsupported version of PHP, WP Statistics will not function without PHP Version "
|
893 |
msgstr "هەڵە: زیادکراوەی ئاماری وۆردپرێس وەشانی پشتیوانی PHP نەکراوە ناناسێت.زیادکراوە بێ فەرمانی PHPئیش ناکات"
|
894 |
|
895 |
-
#:
|
896 |
msgid " or higher!"
|
897 |
msgstr "و یان زۆرتر"
|
898 |
|
899 |
-
#:
|
900 |
msgid "Your current PHP version is"
|
901 |
msgstr "وەشانی ئێستای PHP ئێوە"
|
902 |
|
903 |
-
#:
|
904 |
msgid "WP Statistics has been removed, please disable and delete it."
|
905 |
msgstr "زیادکراوە ئاماری وۆردپرێس سڕاوەتەوە .تکایە ناچالاک یان بیشرەوە."
|
906 |
|
907 |
-
|
|
|
|
|
908 |
msgid "WP Statistics"
|
909 |
msgstr "ئاماری وۆردپرێس"
|
910 |
|
911 |
-
|
|
|
|
|
912 |
msgid "Complete statistics for your WordPress site."
|
913 |
msgstr "ئامری گشتی بۆ ماڵپەڕی وۆردپرێسەکەت"
|
914 |
|
915 |
-
#:
|
916 |
msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
|
917 |
msgstr "بەکارهێنەرانی سەرهێڵ لە زیادکراوەی وۆردپرێس ناچالاکن تکایە بڕۆن بۆ %s چالاکی بکەن."
|
918 |
|
919 |
-
#:
|
920 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:112
|
921 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:115
|
922 |
msgid "setting page"
|
923 |
msgstr "ڕیکخستنەکانی پەرە"
|
924 |
|
925 |
-
#:
|
926 |
msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
|
927 |
msgstr "شوێن کەوتنی سەردان لە زیادکراوەی ئامری وۆردپرێس ناچالاکە.تکایە بڕۆن %s زیادکراوە چالاک بکەن،"
|
928 |
|
929 |
-
#:
|
930 |
msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
|
931 |
msgstr "شوێن کەوتنی میوان لە زیادکراوەی ئامری وۆردپرێس ناچالاکە.تکایە بڕۆن %s زیادکراوە چالاک بکەن،"
|
932 |
|
933 |
-
#:
|
934 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
935 |
msgstr "کۆی GeoIPچالاک نییە تکایە بڕۆن بۆ %s ئەم تایبەتمەندییە چالاک بکەن"
|
936 |
|
937 |
-
#:
|
938 |
msgid "Setting page > GeoIP"
|
939 |
msgstr "پەرەی ڕیکخستنەکان > GeoIP"
|
940 |
|
941 |
-
#:
|
942 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:331
|
943 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:403
|
944 |
msgid "Settings"
|
945 |
msgstr "ڕیکخستن"
|
946 |
|
947 |
-
#:
|
948 |
msgid "Click here to visit the plugin on WordPress.org"
|
949 |
msgstr "بۆ دیتنی زیادکراوەی لە WordPress.org کرتەیێک بکە"
|
950 |
|
951 |
-
#:
|
952 |
msgid "Visit WordPress.org page"
|
953 |
msgstr "دیتنی پەرەی WordPress.org"
|
954 |
|
955 |
-
#:
|
956 |
msgid "Click here to rate and review this plugin on WordPress.org"
|
957 |
msgstr "بۆ ]لەدانان بە ئەم زیادکراوە لە سەر ماڵپەڕی Wordpress.org کرتە بکە "
|
958 |
|
959 |
-
#:
|
960 |
msgid "Rate this plugin"
|
961 |
msgstr "پلەدانان بۆ ئەم زیادکراوە"
|
962 |
|
963 |
-
#:
|
964 |
msgid "WP Statistics - Hits"
|
965 |
msgstr "ئاماری وۆردپرێس-سەردان"
|
966 |
|
967 |
-
#:
|
968 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:352
|
969 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:390
|
970 |
msgid "Overview"
|
971 |
msgstr "پیشاندانی گشتی"
|
972 |
|
973 |
-
#:
|
974 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:395
|
975 |
msgid "Online"
|
976 |
msgstr "سەرهێڵ"
|
977 |
|
978 |
-
#:
|
979 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:397
|
980 |
msgid "Referrers"
|
981 |
msgstr "هاتنەژوورەوەکان"
|
982 |
|
983 |
-
#:
|
984 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:398
|
985 |
msgid "Searches"
|
986 |
msgstr "گەرانەکان"
|
987 |
|
988 |
-
#:
|
989 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:399
|
990 |
msgid "Search Words"
|
991 |
msgstr "گەرانی وەشەکان"
|
992 |
|
993 |
-
#:
|
994 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:400
|
995 |
msgid "Top Visitors Today"
|
996 |
msgstr "بەرزترین میوانەکانی ئەمڕۆ"
|
997 |
|
998 |
-
#:
|
999 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:402
|
1000 |
msgid "Optimization"
|
1001 |
msgstr "باشینەسازی)هەژیکردن)"
|
1002 |
|
1003 |
-
#:
|
1004 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:366
|
1005 |
msgid "Manual"
|
1006 |
msgstr "ڕێنمایی"
|
1007 |
|
1008 |
-
#:
|
1009 |
msgid "Site"
|
1010 |
msgstr "مالپەڕ"
|
1011 |
|
1012 |
-
#:
|
1013 |
msgid "Options"
|
1014 |
msgstr "ڕێکخستنهکان "
|
1015 |
|
1016 |
-
#:
|
1017 |
msgid "Today visitor"
|
1018 |
msgstr "کۆی میوان"
|
1019 |
|
1020 |
-
#:
|
1021 |
msgid "Today visit"
|
1022 |
msgstr "میوانی ئەمڕؤ"
|
1023 |
|
1024 |
-
#:
|
1025 |
msgid "Yesterday visitor"
|
1026 |
msgstr "میوانی دوێنێ"
|
1027 |
|
1028 |
-
#:
|
1029 |
msgid "View Stats"
|
1030 |
msgstr "نیشاندانی ئامار"
|
1031 |
|
1032 |
-
#:
|
1033 |
msgid "Download ODF file"
|
1034 |
msgstr "داگرتنی پەڕگەی ODF"
|
1035 |
|
1036 |
-
#:
|
1037 |
msgid "Download HTML file"
|
1038 |
msgstr "داگرتنی پەڕگەی HTML"
|
1039 |
|
1040 |
-
#:
|
1041 |
msgid "Manual file not found."
|
1042 |
msgstr "ڕێنمایی پەیدا نەبوو"
|
1043 |
|
1044 |
-
#:
|
1045 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:730
|
1046 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:764
|
1047 |
msgid "You do not have sufficient permissions to access this page."
|
1048 |
msgstr "تۆ مۆڵەتت بۆ دەستپێگەیشتنی ئەم پەڕەیە نییە."
|
1049 |
|
1050 |
-
#:
|
1051 |
msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
|
1052 |
msgstr "خشتی زیادکراوە لە بنکەدراوە نییە! تکایە%s بۆدامەزراندن ئەنجام بدە %s."
|
1053 |
|
1054 |
-
#:
|
1055 |
msgid "WP Statistics %s installed on"
|
1056 |
msgstr "زیادکراوەی ئاماری وۆردپرێس %s دامەزراوە"
|
1057 |
|
1058 |
-
#:
|
1059 |
msgid "Error downloading GeoIP database from: %s - %s"
|
1060 |
msgstr "هەڵەی داگرتنی بنکەدراوەی GeoIP لە %s: - %s"
|
1061 |
|
1062 |
-
#:
|
1063 |
msgid "Error could not open downloaded GeoIP database for reading: %s"
|
1064 |
msgstr "هەڵەی کردنەوە لە کاتی داگرتنی GeoIPبۆ خوێندن %s"
|
1065 |
|
1066 |
-
#:
|
1067 |
msgid "Error could not open destination GeoIP database for writing %s"
|
1068 |
msgstr "هەڵەی کردنەوە لە کاتی داگرتنی GeoIP بۆ نووسینی: %s"
|
1069 |
|
1070 |
-
#:
|
1071 |
msgid "GeoIP Database updated successfully!"
|
1072 |
msgstr "بنکەیدراوەی GeoIP بە سەرکەوتوویی بە ڕۆژ بوو"
|
1073 |
|
1074 |
-
#:
|
1075 |
msgid "GeoIP update on"
|
1076 |
msgstr "GeoIP بەڕۆژ بوو لە"
|
1077 |
|
1078 |
-
#:
|
1079 |
msgid "Error downloading browscap database from: %s - %s"
|
1080 |
msgstr "داگرتنی بنکەی دراوە لە browscapهەڵە لە: %s - %s"
|
1081 |
|
1082 |
-
#:
|
1083 |
msgid "browscap database updated successfully!"
|
1084 |
msgstr "browscap بنکەی بە سەرکەوتوویی بەڕۆژ بوو."
|
1085 |
|
1086 |
-
#:
|
1087 |
msgid "browscap database updated failed! Cache file too large, reverting to previous browscap.ini."
|
1088 |
msgstr "بنکەدراوەی browscap بۆ بەڕۆژ بوون سەرکەوتوو نەبووە! پەڕگەی باشکەوتکردن قەبارەی گەورەیە! بڕۆ بۆ browscap.ini پێشتر."
|
1089 |
|
1090 |
-
#:
|
1091 |
msgid "browscap database updated failed! New browscap.ini is mis-identifing user agents as crawlers, reverting to previous browscap.ini."
|
1092 |
msgstr "بنکەدراوەی browscap بۆ بەڕۆژ بوون سەرکەوتوو نەبووە! browscap.iniنوێ هەڵەیە identifing بریکاری بەکارهێنەر بەمانای وێبخشۆک بڕۆ بۆ browscap.ini پێشتر."
|
1093 |
|
1094 |
-
#:
|
1095 |
msgid "browscap already at current version!"
|
1096 |
msgstr "browscap لە ئێستا ئامادەیە بۆ ئەم وەشانە!"
|
1097 |
|
1098 |
-
#:
|
1099 |
msgid "Browscap.ini update on"
|
1100 |
msgstr "Browscap.ini بەڕۆژکرا"
|
1101 |
|
1102 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1103 |
msgid "Quick Stats"
|
1104 |
msgstr "ئاماری خێرا"
|
1105 |
|
1106 |
-
#:
|
1107 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:54
|
1108 |
msgid "Top 10 Browsers"
|
1109 |
msgstr "١٠ وێبگەڕی لووتکە"
|
1110 |
|
1111 |
-
#:
|
1112 |
-
#:
|
1113 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:27
|
1114 |
msgid "Top 10 Countries"
|
1115 |
msgstr "١٠ وەڵاتی لووتکە"
|
1116 |
|
1117 |
-
#:
|
1118 |
msgid "Today's Visitor Map"
|
1119 |
msgstr "میوانەکانی ئەمڕۆ"
|
1120 |
|
1121 |
-
#:
|
1122 |
-
#:
|
1123 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:8
|
1124 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:8
|
1125 |
msgid "Hit Statistics"
|
1126 |
msgstr "ئامری سەردان"
|
1127 |
|
1128 |
-
#:
|
1129 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:11
|
1130 |
msgid "Top 10 Pages"
|
1131 |
msgstr "بەرزترین ١٠ پەرە"
|
1132 |
|
1133 |
-
#:
|
1134 |
-
#:
|
1135 |
-
#:
|
1136 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:39
|
1137 |
msgid "Recent Visitors"
|
1138 |
msgstr "دوایین میوانەکان"
|
1139 |
|
1140 |
-
#:
|
1141 |
-
#:
|
1142 |
-
#:
|
1143 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:13
|
1144 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:26
|
1145 |
msgid "Top Referring Sites"
|
1146 |
msgstr "زۆرترین ماڵپەڕی هاتن"
|
1147 |
|
1148 |
-
#:
|
1149 |
-
#:
|
1150 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:76
|
1151 |
msgid "Search Engine Referrals"
|
1152 |
msgstr "مەکینەی گەڕان هاتنەژوور"
|
1153 |
|
1154 |
-
#:
|
1155 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:8
|
1156 |
msgid "Summary"
|
1157 |
msgstr "کورتە"
|
1158 |
|
1159 |
-
#:
|
1160 |
-
#:
|
1161 |
-
#:
|
1162 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:37
|
1163 |
msgid "Latest Search Words"
|
1164 |
msgstr "دوایین وەشەی گەڕان"
|
1165 |
|
1166 |
-
#:
|
1167 |
-
#:
|
1168 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:35
|
1169 |
msgid "Top 10 Visitors Today"
|
1170 |
msgstr "١٠ میوانی لوتکەی ئەمڕۆ"
|
1171 |
|
1172 |
-
#:
|
1173 |
msgid "Please reload the dashboard to display the content of this widget."
|
1174 |
msgstr "بۆ دیتنی ناوەڕۆکی ئامرازی ئامار پەرە بارێک نوێ بکەوە."
|
1175 |
|
1176 |
-
#:
|
1177 |
msgid "WP Statistics Overview"
|
1178 |
msgstr "پیشاندانی گشتی ئامری وۆردپرێس"
|
1179 |
|
1180 |
-
#:
|
1181 |
msgid "This post is not yet published."
|
1182 |
msgstr "ئەم نووسراوە هێشتا بڵاو نەکراوەتەوە"
|
1183 |
|
1184 |
-
#:
|
1185 |
msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
|
1186 |
msgstr "توانایی گەڕانەوەی بنکەدراوەی GeoIP نییە، دەڵنیا بە لە پەرگەی ڕێکخستنەکان وەردەگیرێت."
|
1187 |
|
1188 |
-
#:
|
1189 |
msgid "Updated %s GeoIP records in the visitors database."
|
1190 |
msgstr "%s ڕیکۆردی GeoIP لە بنکەی دراوە بەڕۆژ بوو."
|
1191 |
|
1192 |
-
#:
|
1193 |
-
#:
|
1194 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:50
|
1195 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:83
|
1196 |
msgid "%s data older than %s days purged successfully."
|
1197 |
msgstr "%s داتای کۆنەتر لە ڕۆژی %s بە سەرکەوتوویی پاکسازی بوو."
|
1198 |
|
1199 |
-
#:
|
1200 |
-
#:
|
1201 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:52
|
1202 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:85
|
1203 |
msgid "No records found to purge from %s!"
|
1204 |
msgstr " هیچ ریکۆردێک پەیدانەبوو بۆ %s! پاکسازی"
|
1205 |
|
1206 |
-
#:
|
1207 |
msgid "Database pruned on"
|
1208 |
msgstr "بنکەی دراوە پاکسازی لە"
|
1209 |
|
1210 |
-
#:
|
1211 |
msgid "Please select a value over 30 days."
|
1212 |
msgstr "تکایە زۆرتر لە ٣٠ ڕۆژ هەڵبژێرن"
|
1213 |
|
1214 |
-
#:
|
1215 |
msgid "Browser Statistics"
|
1216 |
msgstr "ئاماری وێبگەرەکان"
|
1217 |
|
1218 |
-
#:
|
1219 |
-
#:
|
1220 |
-
#:
|
1221 |
-
#:
|
1222 |
-
#:
|
1223 |
-
#:
|
1224 |
-
#:
|
1225 |
-
#:
|
1226 |
-
#:
|
1227 |
-
#:
|
1228 |
-
#:
|
1229 |
-
#:
|
1230 |
-
#:
|
1231 |
-
#:
|
1232 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:6
|
1233 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:9
|
1234 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:8
|
1235 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:7
|
1236 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:8
|
1237 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:9
|
1238 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:6
|
1239 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:11
|
1240 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:6
|
1241 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:7
|
1242 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:7
|
1243 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:6
|
1244 |
msgid "Click to toggle"
|
1245 |
msgstr "بۆ بەستن و داخستن کرتە بکە"
|
1246 |
|
1247 |
-
#:
|
1248 |
-
#:
|
1249 |
-
#:
|
1250 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:316
|
1251 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:391
|
1252 |
msgid "Browsers"
|
1253 |
msgstr "وێبگەڕەکان"
|
1254 |
|
1255 |
-
#:
|
1256 |
msgid "Browsers by type"
|
1257 |
msgstr "وێبگڕەکان لە سەر بنەمای جۆری"
|
1258 |
|
1259 |
-
#:
|
1260 |
-
#:
|
1261 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:302
|
1262 |
msgid "Platform"
|
1263 |
msgstr "سەکۆ"
|
1264 |
|
1265 |
-
#:
|
1266 |
msgid "Browsers by platform"
|
1267 |
msgstr "وێبگەڕەکان لە سەر بنەمای سەکۆ"
|
1268 |
|
1269 |
-
#:
|
1270 |
msgid "%s Version"
|
1271 |
msgstr "%s وەشان"
|
1272 |
|
1273 |
-
#:
|
1274 |
msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
|
1275 |
msgstr "خاڵ: تائێستا جیاکاری بۆ ریکۆردەکان جیاکاری نەکراوە. ئاکامەکانی خوارەوە لەوانەیە ئاماری کۆتایی ڕەنگدانەوەی نەکات."
|
1276 |
|
1277 |
-
#:
|
1278 |
msgid "Exclusions Statistics"
|
1279 |
msgstr "ئاماری جیاکاریەکان"
|
1280 |
|
1281 |
-
#:
|
1282 |
msgid "10 Days"
|
1283 |
msgstr "١٠ ڕۆژی ڕابردوو"
|
1284 |
|
1285 |
-
#:
|
1286 |
msgid "20 Days"
|
1287 |
msgstr "٢٠ ڕۆژی ڕابردوو"
|
1288 |
|
1289 |
-
#:
|
1290 |
msgid "30 Days"
|
1291 |
msgstr "٣٠ ڕۆژی ڕابردوو"
|
1292 |
|
1293 |
-
#:
|
1294 |
msgid "2 Months"
|
1295 |
msgstr "٢ مانگی ڕابردوو"
|
1296 |
|
1297 |
-
#:
|
1298 |
msgid "3 Months"
|
1299 |
msgstr "٣ مانگی ڕابردوو"
|
1300 |
|
1301 |
-
#:
|
1302 |
msgid "6 Months"
|
1303 |
msgstr "٦مانگی ڕابردوو"
|
1304 |
|
1305 |
-
#:
|
1306 |
msgid "9 Months"
|
1307 |
msgstr "٩ مانگی ڕابردوو"
|
1308 |
|
1309 |
-
#:
|
1310 |
msgid "1 Year"
|
1311 |
msgstr "١ ساڵی ڕابردوو"
|
1312 |
|
1313 |
-
#:
|
1314 |
-
msgid "Total Exclusions: %s"
|
1315 |
-
msgstr "کۆی جیاکاریەکان: %s"
|
1316 |
-
|
1317 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:74
|
1318 |
msgid "Exclusions Statistical Chart"
|
1319 |
msgstr "هێڵکاری ئاماری جیاکراوەکان"
|
1320 |
|
1321 |
-
#:
|
1322 |
msgid "Excluded hits in the last"
|
1323 |
msgstr "سەردانی دوایین جیاکردنەوە"
|
1324 |
|
1325 |
-
#:
|
1326 |
-
#:
|
1327 |
-
#:
|
1328 |
-
#:
|
1329 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:55
|
1330 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:151
|
1331 |
msgid "days"
|
1332 |
msgstr "ڕۆژی ڕابردوو"
|
1333 |
|
1334 |
-
#:
|
1335 |
msgid "Number of excluded hits"
|
1336 |
msgstr "ژمارەی سەردانی جیاکاری"
|
1337 |
|
1338 |
-
#:
|
1339 |
msgid "Hits Statistics Chart"
|
1340 |
msgstr "هێڵکاری ئاماری سەردانەکان"
|
1341 |
|
1342 |
-
#:
|
1343 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:51
|
1344 |
msgid "Hits in the last"
|
1345 |
msgstr "دوایین سەردانەکان لە"
|
1346 |
|
1347 |
-
#:
|
1348 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:72
|
1349 |
msgid "Number of visits and visitors"
|
1350 |
msgstr "ژمارەی سەردان و میوانەکان"
|
1351 |
|
1352 |
-
#:
|
1353 |
-
#:
|
1354 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:32
|
1355 |
msgid "Visit"
|
1356 |
msgstr "سەردان"
|
1357 |
|
1358 |
-
#:
|
1359 |
-
#:
|
1360 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:31
|
1361 |
msgid "Visitor"
|
1362 |
msgstr "میوان"
|
1363 |
|
1364 |
-
#:
|
1365 |
msgid "Latest Search Word Statistics"
|
1366 |
msgstr "دوایین ئاماری گەڕانی وشە"
|
1367 |
|
1368 |
-
#:
|
1369 |
-
#:
|
1370 |
-
#:
|
1371 |
-
#:
|
1372 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:71
|
1373 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:30
|
1374 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:32
|
1375 |
msgid "#hash#"
|
1376 |
msgstr "#hash#"
|
1377 |
|
1378 |
-
#:
|
1379 |
-
#:
|
1380 |
-
#:
|
1381 |
-
#:
|
1382 |
-
#:
|
1383 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:39
|
1384 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:33
|
1385 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:113
|
1386 |
msgid "Map"
|
1387 |
msgstr "نەخشە"
|
1388 |
|
1389 |
-
#:
|
1390 |
-
#:
|
1391 |
-
#:
|
1392 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:198
|
1393 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
|
1394 |
msgid "Page"
|
1395 |
msgstr "پەڕە"
|
1396 |
|
1397 |
-
#:
|
1398 |
-
#:
|
1399 |
-
#:
|
1400 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:198
|
1401 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
|
1402 |
msgid "From"
|
1403 |
msgstr "لە"
|
1404 |
|
1405 |
-
#:
|
1406 |
-
#:
|
1407 |
-
#:
|
1408 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:135
|
1409 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:294
|
1410 |
msgid "All"
|
1411 |
msgstr "گشتی"
|
1412 |
|
1413 |
-
#:
|
1414 |
msgid "Recent Visitor Statistics"
|
1415 |
msgstr "دوایین ئاماری میوان"
|
1416 |
|
1417 |
-
#:
|
1418 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:18
|
1419 |
msgid "Online Users"
|
1420 |
msgstr "بەکارهێنەرانی سەرهێڵ"
|
1421 |
|
1422 |
-
#:
|
1423 |
msgid "Online for "
|
1424 |
msgstr "سەرهێڵ بۆ"
|
1425 |
|
1426 |
-
#:
|
1427 |
msgid "Page Trend for Post ID"
|
1428 |
msgstr "پەرە بۆ جووڵانەوە شناسنامەی نووسراوە"
|
1429 |
|
1430 |
-
#:
|
1431 |
msgid "Page Trend"
|
1432 |
msgstr "جووڵانەوە پەرە"
|
1433 |
|
1434 |
-
#:
|
1435 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:28
|
1436 |
msgid "Search Engine Referral Statistics"
|
1437 |
msgstr "ئاماری هاتنەوە لە مەکەینەی گەڕان"
|
1438 |
|
1439 |
-
#:
|
1440 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:55
|
1441 |
msgid "Search engine referrals in the last"
|
1442 |
msgstr "دوایین هاتنەکان لە مەکەینەی گەڕان"
|
1443 |
|
1444 |
-
#:
|
1445 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:76
|
1446 |
msgid "Number of referrals"
|
1447 |
msgstr "ژمارەی هاتنەکان"
|
1448 |
|
1449 |
-
#:
|
1450 |
-
#:
|
1451 |
-
#:
|
1452 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:66
|
1453 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:106
|
1454 |
msgid "Total"
|
1455 |
msgstr "کۆ"
|
1456 |
|
1457 |
-
#:
|
1458 |
msgid "Top Countries"
|
1459 |
msgstr "لوتکەی وەڵاتەکان"
|
1460 |
|
1461 |
-
#:
|
1462 |
-
#:
|
1463 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:27
|
1464 |
msgid "Rank"
|
1465 |
msgstr "پلە"
|
1466 |
|
1467 |
-
#:
|
1468 |
-
#:
|
1469 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:29
|
1470 |
msgid "Flag"
|
1471 |
msgstr "ئاڵا"
|
1472 |
|
1473 |
-
#:
|
1474 |
-
#:
|
1475 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:30
|
1476 |
msgid "Country"
|
1477 |
msgstr "وەڵات"
|
1478 |
|
1479 |
-
#:
|
1480 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:33
|
1481 |
msgid "Visitor Count"
|
1482 |
msgstr "ژمارەی میوان"
|
1483 |
|
1484 |
-
#:
|
1485 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:149
|
1486 |
msgid "Top Pages"
|
1487 |
msgstr "پەڕەکانی لووتکە"
|
1488 |
|
1489 |
-
#:
|
1490 |
msgid "Top 5 Pages Trends"
|
1491 |
msgstr "لوتکەی ٥ پەرە"
|
1492 |
|
1493 |
-
#:
|
1494 |
msgid "Top 5 Page Trending Stats"
|
1495 |
msgstr "لوتکەی باشترینی ٥ پەڕە"
|
1496 |
|
1497 |
-
#:
|
1498 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/page.php:61
|
1499 |
msgid "Number of Hits"
|
1500 |
msgstr "ژمارەی سەردان"
|
1501 |
|
1502 |
-
#:
|
1503 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:32
|
1504 |
msgid "No page title found"
|
1505 |
msgstr "سەردێڕی پەرە پەیدا نەبوو"
|
1506 |
|
1507 |
-
#:
|
1508 |
-
#:
|
1509 |
-
#:
|
1510 |
-
#:
|
1511 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:127
|
1512 |
msgid "Visits"
|
1513 |
msgstr "سەردانەکان"
|
1514 |
|
1515 |
-
#:
|
1516 |
msgid "To be added soon"
|
1517 |
msgstr "بە خێرایی زیاد دەبێت"
|
1518 |
|
1519 |
-
#:
|
1520 |
msgid "Referring sites from"
|
1521 |
msgstr "ماڵپەرەکانی هاتن لە"
|
1522 |
|
1523 |
-
#:
|
1524 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:30
|
1525 |
msgid "References"
|
1526 |
msgstr "سەرچاوە"
|
1527 |
|
1528 |
-
#:
|
1529 |
msgid "Top 100 Visitors Today"
|
1530 |
msgstr "لوتکەی ١٠٠ میوانی ئەمڕۆ"
|
1531 |
|
1532 |
-
#:
|
1533 |
msgid "About WP Statistics Version %s"
|
1534 |
msgstr "دەربارەی زیاد کراوەی ئاماری وۆردپرێس،وەشانی %s"
|
1535 |
|
1536 |
-
#:
|
1537 |
msgid "Website"
|
1538 |
msgstr "ماڵپەڕەکان"
|
1539 |
|
1540 |
-
#:
|
1541 |
msgid "Rate and Review"
|
1542 |
msgstr "پلەدانان و پێداچوونەوە"
|
1543 |
|
1544 |
-
#:
|
1545 |
msgid "More Information"
|
1546 |
msgstr "زانیاری زۆرتر"
|
1547 |
|
1548 |
-
#:
|
1549 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:12
|
1550 |
msgid "This product includes GeoLite2 data created by MaxMind, available from %s."
|
1551 |
msgstr "ائەم بەرهەمە بریتیە لە داتا GeoLite2 ە کە لەلایەن MaxMind،درووستبووە وە لە %s توانایی دەستپێگەیشتنت هەیە."
|
1552 |
|
1553 |
-
#:
|
1554 |
-
#:
|
1555 |
-
#:
|
1556 |
-
#:
|
1557 |
-
#:
|
1558 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:13
|
1559 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:7
|
1560 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:8
|
1561 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:8
|
1562 |
msgid "More"
|
1563 |
msgstr "زۆرتر"
|
1564 |
|
1565 |
-
#:
|
1566 |
msgid "Other"
|
1567 |
msgstr "ئەوی "
|
1568 |
|
1569 |
-
#:
|
1570 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:9
|
1571 |
msgid "Today Visitors Map"
|
1572 |
msgstr "میوانەکانی ئەمڕۆ لە سەر نەخشە"
|
1573 |
|
1574 |
-
#:
|
1575 |
msgid "Address"
|
1576 |
msgstr "ناونیشان"
|
1577 |
|
1578 |
-
#:
|
1579 |
msgid "User(s) Online"
|
1580 |
msgstr "بەکارهێنەر(ەکان) سەرهێڵ"
|
1581 |
|
1582 |
-
#:
|
1583 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:81
|
1584 |
msgid "Today"
|
1585 |
msgstr "ئەمڕۆ"
|
1586 |
|
1587 |
-
#:
|
1588 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:82
|
1589 |
msgid "Yesterday"
|
1590 |
msgstr "دوێنێ"
|
1591 |
|
1592 |
-
#:
|
1593 |
msgid "Daily Total"
|
1594 |
msgstr "کۆی ئەمڕۆ"
|
1595 |
|
1596 |
-
#:
|
1597 |
msgid "Current Time and Date"
|
1598 |
msgstr "کات و رێکەوتی ئەمڕۆ"
|
1599 |
|
1600 |
-
#:
|
1601 |
msgid "(Adjustment)"
|
1602 |
msgstr "(ڕێکخستن)"
|
1603 |
|
1604 |
-
#:
|
1605 |
msgid "Date: %s"
|
1606 |
msgstr "رێکەوت: %s"
|
1607 |
|
1608 |
-
#:
|
1609 |
msgid "Time: %s"
|
1610 |
msgstr "کات: %s"
|
1611 |
|
1612 |
-
#:
|
1613 |
-
#:
|
1614 |
-
#:
|
1615 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:394
|
1616 |
msgid "Hits"
|
1617 |
msgstr "سەردانەکان"
|
1618 |
|
1619 |
-
#:
|
1620 |
msgid "IP"
|
1621 |
msgstr "IP"
|
1622 |
|
1623 |
-
#:
|
1624 |
msgid "Agent"
|
1625 |
msgstr "بریکار"
|
1626 |
|
1627 |
-
#:
|
1628 |
-
#:
|
1629 |
msgid "Version"
|
1630 |
msgstr "وەشان"
|
1631 |
|
1632 |
-
#:
|
1633 |
-
#:
|
1634 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:5
|
1635 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:5
|
1636 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:6
|
1637 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:6
|
1638 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/manual/manual.php:5
|
1639 |
msgid "Access denied!"
|
1640 |
msgstr "دەستپێگەیشتنی بێمۆڵەت"
|
1641 |
|
1642 |
-
#:
|
1643 |
msgid "%s agent data deleted successfully."
|
1644 |
msgstr "%s بریکاری داتا بە سەرکەوتوویی سڕایەوە."
|
1645 |
|
1646 |
-
#:
|
1647 |
msgid "No agent data found to remove!"
|
1648 |
msgstr "داتای وێبگەڕەکە بۆ سڕینەوە پەیدا نەبوو"
|
1649 |
|
1650 |
-
#:
|
1651 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:21
|
1652 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:42
|
1653 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:80
|
1654 |
msgid "Please select the desired items."
|
1655 |
msgstr "تکایە بڕگەی داخوازی خوارەوە هەڵبژێرە."
|
1656 |
|
1657 |
-
#:
|
1658 |
msgid "%s platform data deleted successfully."
|
1659 |
msgstr "ازانیارەکانی سەکۆ %s بە سەرکەوتوویی سڕایەوە.."
|
1660 |
|
1661 |
-
#:
|
1662 |
msgid "No platform data found to remove!"
|
1663 |
msgstr "سەکۆی وێبگەڕ بۆ سڕینەوە پەیدا نەبوو."
|
1664 |
|
1665 |
-
#:
|
1666 |
msgid "%s table data deleted successfully."
|
1667 |
msgstr "داتای خەشتی %s بە سەرکەوتوویی سڕایەوە"
|
1668 |
|
1669 |
-
#:
|
1670 |
msgid "Error, %s not emptied!"
|
1671 |
msgstr "هەڵە! %s بەتاڵ نییە!"
|
1672 |
|
1673 |
-
#:
|
1674 |
msgid "Database Setup"
|
1675 |
msgstr "دامەزراندنی بنکە دراوە"
|
1676 |
|
1677 |
-
#:
|
1678 |
msgid "Re-run Install"
|
1679 |
msgstr "دامەزراندنی دوبار"
|
1680 |
|
1681 |
-
#:
|
1682 |
msgid "Install Now!"
|
1683 |
msgstr "دامەزراندن ئێستا"
|
1684 |
|
1685 |
-
#:
|
1686 |
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."
|
1687 |
msgstr "گەر بە هەر هۆکارێک دامەزراندنی زیادکراوەی ئاماری وۆردپرێس یان خشتەکان بنکە دراوە یان بڕگەکانی دیکەی ناوەڕۆک لەدەست چووە ئەم پرۆسە دامەزراندن دووپات دەکات"
|
1688 |
|
1689 |
-
#:
|
1690 |
msgid "Database Index"
|
1691 |
msgstr "پێنوێنی بنکەدراوە"
|
1692 |
|
1693 |
-
#:
|
1694 |
-
#:
|
1695 |
-
#:
|
1696 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:392
|
1697 |
msgid "Countries"
|
1698 |
msgstr "وەڵآتەکان"
|
1699 |
|
1700 |
-
#:
|
1701 |
-
#:
|
1702 |
-
#:
|
1703 |
-
#:
|
1704 |
msgid "Update Now!"
|
1705 |
msgstr "بەڕۆژکردن ئێستا"
|
1706 |
|
1707 |
-
#:
|
1708 |
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."
|
1709 |
msgstr "لە وەشانی کۆنەی زیادکراوەئامار داتای دووبارە لە سوچێکی خشتی میوان دووپات دەکرایەوە.وەشانی نوێ لەم بارەیە لە پێرستێک چاکسازیان بۆ بووە.بۆ درووستکردنی پێرست لە وەشانی کۆنە سەرەتا دەبێت دتاکنا بسڕنەوە.بە کرتە لەسەر بەڕۆژ بوون سەرەتا خشتی میوانان چاودێری ئینجا داتای دووبارودووپات دەسڕنەوەو پێرست زیاد دەکەن."
|
1710 |
|
1711 |
-
#:
|
1712 |
msgid "This operation could take a long time on installs with many rows in the visitors table."
|
1713 |
msgstr "ئەم هەڵبژاردە کاتیکی زۆر بۆ بۆ دامەزراندنی ژمارەی رێزەکان لەخشتی میوانەکان بەخۆیەوە ترخان دەکات."
|
1714 |
|
1715 |
-
#:
|
1716 |
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."
|
1717 |
msgstr "لە وەشانی کۆنەی زیادکراوەئامار داتای دووبارە لە سوچێکی خشتی میوان دووپات دەکرایەوە.وەشانی نوێ لەم بارەیە لە پێرستێک چاکسازیان بۆ بووە."
|
1718 |
|
1719 |
-
#:
|
1720 |
-
#:
|
1721 |
msgid "Congratulations, your installation is already up to date, nothing to do."
|
1722 |
msgstr "پیرۆز بێت.تائێستا دامەزراوەی ئێوە بەڕۆژە و کێشەی نییە."
|
1723 |
|
1724 |
-
#:
|
1725 |
-
#:
|
1726 |
msgid "Export"
|
1727 |
msgstr "هەناردەکردن"
|
1728 |
|
1729 |
-
#:
|
1730 |
msgid "Export from"
|
1731 |
msgstr "هەناردن لە"
|
1732 |
|
1733 |
-
#:
|
1734 |
-
#:
|
1735 |
-
#:
|
1736 |
-
#:
|
1737 |
-
#:
|
1738 |
-
#:
|
1739 |
-
#:
|
1740 |
msgid "Please select"
|
1741 |
msgstr "تکایە هەڵبژێرە"
|
1742 |
|
1743 |
-
#:
|
1744 |
msgid "Select the table for the output file."
|
1745 |
msgstr "خشتی داخواز بۆ چونەدەرەڤەی پەڕگە هەڵبژێرە"
|
1746 |
|
1747 |
-
#:
|
1748 |
msgid "Export To"
|
1749 |
msgstr "ناردنەدەرەوە بۆ"
|
1750 |
|
1751 |
-
#:
|
1752 |
msgid "Select the output file type."
|
1753 |
msgstr "جۆری چونەدەرەڤەی پەڕگە هەڵبژێرە"
|
1754 |
|
1755 |
-
#:
|
1756 |
msgid "Include Header Row"
|
1757 |
msgstr "تایبەتبوونی سەردێری رێز"
|
1758 |
|
1759 |
-
#:
|
1760 |
msgid "Include a header row as the first line of the exported file."
|
1761 |
msgstr "بریتیە لە سەردێڕی رێز لە هێڵی یەکەمی پەڕگەی هەنارەکراوە."
|
1762 |
|
1763 |
-
#:
|
1764 |
msgid "Start Now!"
|
1765 |
msgstr "دەستپێکە"
|
1766 |
|
1767 |
-
#:
|
1768 |
msgid "Historical Values"
|
1769 |
msgstr "ژمارەی مێژوویی"
|
1770 |
|
1771 |
-
#:
|
1772 |
msgid "Note: As you have just purged the database you must reload this page for these numbers to be correct."
|
1773 |
msgstr "خاڵ:هەر وا کە بنکەی دراوەتان پاکسازی کرد بۆ نیشاندانی ژمارە بە تەنیایی دەبیت پەڕە نوێ بکەنەوە."
|
1774 |
|
1775 |
-
#:
|
1776 |
-
#:
|
1777 |
-
#:
|
1778 |
-
#:
|
1779 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:401
|
1780 |
msgid "Visitors"
|
1781 |
msgstr "میوانەکان"
|
1782 |
|
1783 |
-
#:
|
1784 |
msgid "Number of historical number of visitors to the site (current value is %s)."
|
1785 |
msgstr "ژمارەی مێژووی میوانەکان (ژمارەی ئێستا %s یە)."
|
1786 |
|
1787 |
-
#:
|
1788 |
msgid "Number of historical number of visits to the site (current value is %s)."
|
1789 |
msgstr "ژمارەی مێژووی سەردانەکان (ژمارەی ئێستا %s یە)."
|
1790 |
|
1791 |
-
#:
|
1792 |
msgid "Update now!"
|
1793 |
msgstr "بەڕۆژکردن"
|
1794 |
|
1795 |
-
#:
|
1796 |
-
#:
|
1797 |
-
#:
|
1798 |
-
#:
|
|
|
1799 |
msgid "Are you sure?"
|
1800 |
msgstr "دەڵنیای ؟"
|
1801 |
|
1802 |
-
#:
|
1803 |
msgid "Data"
|
1804 |
msgstr "رێکەوت"
|
1805 |
|
1806 |
-
#:
|
1807 |
msgid "Empty Table"
|
1808 |
msgstr "بەتاڵ بوونی خشت"
|
1809 |
|
1810 |
-
#:
|
1811 |
msgid "All data table will be lost."
|
1812 |
msgstr "گشتی زانیاریەکانی خشت لەدەست دەچێت"
|
1813 |
|
1814 |
-
#:
|
1815 |
msgid "Clear now!"
|
1816 |
msgstr "پاککردنەە"
|
1817 |
|
1818 |
-
#:
|
1819 |
msgid "Purge records older than"
|
1820 |
msgstr "پاکسازی ریکۆردی کۆنەتر لە"
|
1821 |
|
1822 |
-
#:
|
1823 |
msgid "Deleted user statistics data older than the selected number of days. Minimum value is 30 days."
|
1824 |
msgstr "هەڵبژاردنی ڕۆژەکانی پێشتر بۆ سڕینەوەی داتاکانی بەکارهێنەر. کەمترین ژمارە ٣٠ رۆژ.."
|
1825 |
|
1826 |
-
#:
|
|
|
1827 |
msgid "Purge now!"
|
1828 |
msgstr "ئێستا پاکسازیبکە"
|
1829 |
|
1830 |
-
#:
|
1831 |
msgid "Delete User Agent Types"
|
1832 |
msgstr "سڕینەوەی جۆری سیستەمی کارپێکردنی بەکارهینەر"
|
1833 |
|
1834 |
-
#:
|
1835 |
msgid "Delete Agents"
|
1836 |
msgstr "سڕینەوەی سیستەمی کارپێکردنەکان"
|
1837 |
|
1838 |
-
#:
|
1839 |
msgid "All visitor data will be lost for this agent type."
|
1840 |
msgstr "گشتی داتای میوان لەجۆری بریکار لەدەستدەچن"
|
1841 |
|
1842 |
-
#:
|
1843 |
-
#:
|
1844 |
msgid "Delete now!"
|
1845 |
msgstr "ئێستا بیسڕەوە"
|
1846 |
|
1847 |
-
#:
|
1848 |
msgid "Delete Platforms"
|
1849 |
msgstr "سڕینەوەی سەکۆ"
|
1850 |
|
1851 |
-
#:
|
1852 |
msgid "All visitor data will be lost for this platform type."
|
1853 |
msgstr "تەواوی داتاکانی سەکۆی سەردان لەدەست دەچن."
|
1854 |
|
1855 |
-
#:
|
1856 |
msgid "Resources"
|
1857 |
msgstr "سەرچاوەکان"
|
1858 |
|
1859 |
-
#:
|
1860 |
-
#:
|
1861 |
msgid "Memory usage in PHP"
|
1862 |
msgstr "بیرگەی بەکارهینان لە PHP"
|
1863 |
|
1864 |
-
#:
|
1865 |
-
#:
|
1866 |
msgid "Byte"
|
1867 |
msgstr "بایت"
|
1868 |
|
1869 |
-
#:
|
1870 |
msgid "Last Overview page memory usage"
|
1871 |
msgstr "دوایین پیشاندانی گشتی پەری بیرگەی بەکارهێنراو."
|
1872 |
|
1873 |
-
#:
|
1874 |
msgid "Memory usage in the overview page"
|
1875 |
msgstr "بیرگەی بەکارهێنان لە پیشاندانیگشتی بەڕە."
|
1876 |
|
1877 |
-
#:
|
1878 |
msgid "PHP Memory Limit"
|
1879 |
msgstr "سنووری بیرگەی PHP "
|
1880 |
|
1881 |
-
#:
|
1882 |
msgid "The memory limit a script is allowed to consume, set in php.ini."
|
1883 |
msgstr "ڕێکخستنی سنووری بیرگە بۆ سکریپتی php.iniلە دابینکراوە."
|
1884 |
|
1885 |
-
#:
|
1886 |
-
#:
|
1887 |
-
#:
|
1888 |
-
#:
|
1889 |
-
#:
|
1890 |
-
#:
|
1891 |
msgid "Number of rows in the %s table"
|
1892 |
msgstr "ژمارەی رێز لە خشت %s"
|
1893 |
|
1894 |
-
#:
|
1895 |
-
#:
|
1896 |
-
#:
|
1897 |
-
#:
|
1898 |
-
#:
|
1899 |
-
#:
|
1900 |
msgid "Row"
|
1901 |
msgstr "رێز"
|
1902 |
|
1903 |
-
#:
|
1904 |
-
#:
|
1905 |
-
#:
|
1906 |
-
#:
|
1907 |
-
#:
|
1908 |
-
#:
|
1909 |
msgid "Number of rows"
|
1910 |
msgstr "ژمارەی رێزەکان"
|
1911 |
|
1912 |
-
#:
|
1913 |
msgid "Version Info"
|
1914 |
msgstr "زانیاری وەشان"
|
1915 |
|
1916 |
-
#:
|
1917 |
msgid "WP Statistics Version"
|
1918 |
msgstr "وەشانی زیادکراوەی ئامار"
|
1919 |
|
1920 |
-
#:
|
1921 |
msgid "The WP Statistics version you are running."
|
1922 |
msgstr "وەشانی زیادکراوەی ئاماری ئێستای ئێوە"
|
1923 |
|
1924 |
-
#:
|
1925 |
msgid "PHP Version"
|
1926 |
msgstr "وەشانیPHP "
|
1927 |
|
1928 |
-
#:
|
1929 |
msgid "The PHP version you are running."
|
1930 |
msgstr "وەشانی PHPی ئێوە لە کاتی ئیشکردن"
|
1931 |
|
1932 |
-
#:
|
1933 |
msgid "PHP Safe Mode"
|
1934 |
msgstr "شیوازی پاراستنیPHP "
|
1935 |
|
1936 |
-
#:
|
1937 |
msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
|
1938 |
msgstr "پاراسنی دۆخی PHP چالاکە.کۆدەکانی GeoIP لەدۆخی ئسایش پشتیوانی نابن"
|
1939 |
|
1940 |
-
#:
|
1941 |
msgid "jQuery Version"
|
1942 |
msgstr "وەشانی jQuery "
|
1943 |
|
1944 |
-
#:
|
1945 |
msgid "The jQuery version you are running."
|
1946 |
msgstr "وەشانی jQuery ئێوە کە لە ئێستا بەکارتهێناوە"
|
1947 |
|
1948 |
-
#:
|
1949 |
msgid "cURL Version"
|
1950 |
msgstr "وەشانیcURL"
|
1951 |
|
1952 |
-
#:
|
1953 |
msgid "cURL not installed"
|
1954 |
msgstr "cURL دانەمزراوە"
|
1955 |
|
1956 |
-
#:
|
1957 |
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."
|
1958 |
msgstr "پێوەکراوەی cURL لە PHP ئێوە لەکاتی ڕاکردنە. گەر دانەمەزراوە GeoIP ناچالاک دەبێت"
|
1959 |
|
1960 |
-
#:
|
1961 |
msgid "BC Math"
|
1962 |
msgstr "بیرکاری BC "
|
1963 |
|
1964 |
-
#:
|
1965 |
msgid "Installed"
|
1966 |
msgstr "دامەزرا"
|
1967 |
|
1968 |
-
#:
|
1969 |
msgid "Not installed"
|
1970 |
msgstr "دانەمەزرا"
|
1971 |
|
1972 |
-
#:
|
1973 |
msgid "If the PHP BC Math Extension is installed. BC Math is no longer required for the GeoIP code and is listed here only for historical reasons."
|
1974 |
msgstr "گر بیریاری پێ زایین PHPجیاکاری لۆ دامەزراندن بووە.بیرکاری پێش زیینی تر بۆ دامەزراندن پێویستە بۆ کۆدی GeoIP تەنیا بە هۆکاری مێژوویی باس کراوە"
|
1975 |
|
1976 |
-
#:
|
1977 |
msgid "File Info"
|
1978 |
msgstr "زانیاری پەڕگە"
|
1979 |
|
1980 |
-
#:
|
1981 |
msgid "GeoIP Database"
|
1982 |
msgstr "بنکەدراوەی GeoIP"
|
1983 |
|
1984 |
-
#:
|
1985 |
msgid "Database file does not exist."
|
1986 |
msgstr "پەڕگەی بنکەدراوە بوونی نییە"
|
1987 |
|
1988 |
-
#:
|
1989 |
-
#:
|
1990 |
-
#:
|
1991 |
msgid ", created on "
|
1992 |
msgstr "درووستکراوە لە"
|
1993 |
|
1994 |
-
#:
|
1995 |
msgid "The file size and date of the GeoIP database."
|
1996 |
msgstr "قەبارە پەڕگە ورێکەوتی بنکەیدراوەی GeoIP"
|
1997 |
|
1998 |
-
#:
|
1999 |
msgid "browscap.ini File"
|
2000 |
msgstr "پەرگەی browscap.ini"
|
2001 |
|
2002 |
-
#:
|
2003 |
msgid "browscap.ini file does not exist."
|
2004 |
msgstr "پەڕگەی browscap.ini بوونی نییە"
|
2005 |
|
2006 |
-
#:
|
2007 |
msgid "The file size and date of the browscap.ini file."
|
2008 |
msgstr "قەباری و رێکەوتی پەڕگەی browscap.ini"
|
2009 |
|
2010 |
-
#:
|
2011 |
msgid "browscap Cache File"
|
2012 |
msgstr "بیرگەی نهێنی browscap "
|
2013 |
|
2014 |
-
#:
|
2015 |
msgid "browscap cache file does not exist."
|
2016 |
msgstr "بیرگەی نهێنی browscap بوونی نییە"
|
2017 |
|
2018 |
-
#:
|
2019 |
msgid "The file size and date of the browscap cache file."
|
2020 |
msgstr "قەبارە پەڕگە ورێکەوتی بیرگەی نژێنی browscap ."
|
2021 |
|
2022 |
-
#:
|
2023 |
msgid "Client Info"
|
2024 |
msgstr "زانیاری بەکارهینەر"
|
2025 |
|
2026 |
-
#:
|
2027 |
msgid "Client IP"
|
2028 |
msgstr "IP بەکارهێنەر"
|
2029 |
|
2030 |
-
#:
|
2031 |
msgid "The client IP address."
|
2032 |
msgstr "ناونیشانی IP بەکارهینەر"
|
2033 |
|
2034 |
-
#:
|
2035 |
msgid "User Agent"
|
2036 |
msgstr "بریکاری بەکارهێنەر"
|
2037 |
|
2038 |
-
#:
|
2039 |
msgid "The client user agent string."
|
2040 |
msgstr "رێزبەندی بریکاری بەکارهینەر"
|
2041 |
|
2042 |
-
#:
|
2043 |
msgid "Browser"
|
2044 |
msgstr "وەبگەڕ"
|
2045 |
|
2046 |
-
#:
|
2047 |
msgid "The detected client browser."
|
2048 |
msgstr "وەبگەڕی ناسراوەی بەکارهینەر"
|
2049 |
|
2050 |
-
#:
|
2051 |
msgid "The detected client browser version."
|
2052 |
msgstr "وەشانی ناسراوەی وێبگەڕی بەکارهینەر"
|
2053 |
|
2054 |
-
#:
|
2055 |
msgid "The detected client platform."
|
2056 |
msgstr "سەکۆی ناسراوەی بەکارهینەر"
|
2057 |
|
2058 |
-
#:
|
2059 |
msgid "This will replace all IP addresses in the database with hash values and cannot be undo, are you sure?"
|
2060 |
msgstr "تەواوی ناونیشانەکانی لە بنکەدراوە دەگؤڕدڕێنە سەر هەش وە ناگەڕێنەوە ،دەڵنیای ؟"
|
2061 |
|
2062 |
-
#:
|
2063 |
msgid "GeoIP Options"
|
2064 |
msgstr "رێکخستنی GeoIP"
|
2065 |
|
2066 |
-
#:
|
2067 |
msgid "Updates any unknown location data in the database, this may take a while"
|
2068 |
msgstr "وەرگرتنی بەرۆژکردنی شوێنی وەڵآتەکان لە بنکەی درواە.لەوانەیە ئەم کردارە کەمێ کات بەخۆیەوە ترخان بکات"
|
2069 |
|
2070 |
-
#:
|
2071 |
-
#:
|
2072 |
msgid "IP Addresses"
|
2073 |
msgstr "ناونیشانەکانی IP "
|
2074 |
|
2075 |
-
#:
|
2076 |
-
#:
|
2077 |
msgid "Hash IP Addresses"
|
2078 |
msgstr "هەشکردنی ناونیشانی IP "
|
2079 |
|
2080 |
-
#:
|
2081 |
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"
|
2082 |
msgstr "تەواوی ناونیشانەکانی IP لە بنکەی دراوە بە هەش دەگۆردرێن و توانایی گەڕانەوەیان نییە.بۆ ئەم کردارە دەڵنیای ؟"
|
2083 |
|
2084 |
-
#:
|
2085 |
msgid "IP Addresses replaced with hash values."
|
2086 |
msgstr "ناونیشانەکانی IP لەگەڵ بەهای هەش دەگۆڕدرێت"
|
2087 |
|
2088 |
-
#:
|
2089 |
msgid "Install routine complete."
|
2090 |
msgstr "دامەزراندن تەواوبوو"
|
2091 |
|
2092 |
-
#:
|
2093 |
msgid "Resources/Information"
|
2094 |
msgstr "سەرچاوەکان/زانیاری"
|
2095 |
|
2096 |
-
#:
|
2097 |
msgid "Purging"
|
2098 |
msgstr "پاکسازی"
|
2099 |
|
2100 |
-
#:
|
2101 |
msgid "Database"
|
2102 |
msgstr "بنکەدراوە"
|
2103 |
|
2104 |
-
#:
|
2105 |
msgid "Updates"
|
2106 |
msgstr "بەڕۆژبونەکان"
|
2107 |
|
2108 |
-
#:
|
2109 |
msgid "Historical"
|
2110 |
msgstr "مێژوویی"
|
2111 |
|
2112 |
-
#:
|
2113 |
msgid "WP Statistics V%s"
|
2114 |
msgstr "ئاماری وۆردپرێس وشانی %s"
|
2115 |
|
2116 |
-
#:
|
2117 |
msgid "Visit Us Online"
|
2118 |
msgstr "دیتنی ئێمە"
|
2119 |
|
2120 |
-
#:
|
2121 |
msgid "Come visit our great new %s and keep up to date on the latest news about WP Statistics."
|
2122 |
msgstr "بۆ %s نوێی ئێمە بڕۆن تا لە زانیاریەکان و هەواڵەکانی زیادکراوەی ئاماری وۆردپرێس ئاگادار بن."
|
2123 |
|
2124 |
-
#:
|
2125 |
msgid "website"
|
2126 |
msgstr "ماڵپەڕ"
|
2127 |
|
2128 |
-
#:
|
2129 |
msgid "Rate and Review at WordPress.org"
|
2130 |
msgstr "پلەدانان و پێداچوونەوە لە WordPress.org"
|
2131 |
|
2132 |
-
#:
|
2133 |
msgid "Thanks for installing WP Statistics, we encourage you to submit a "
|
2134 |
msgstr "سپاس و پێزانین بۆ دامەزراندنی زیادکراوەی ئاماری وۆردپرێس.ئێوە ئێوە هاندەدەین بۆ ناردنی "
|
2135 |
|
2136 |
-
#:
|
2137 |
msgid "rating and review"
|
2138 |
msgstr "پلەدانان و پێداچوونەوە"
|
2139 |
|
2140 |
-
#:
|
2141 |
msgid "over at WordPress.org. Your feedback is greatly appreciated!"
|
2142 |
msgstr "سەردانی ماڵپەڕی وۆردپرێش بکەن .بۆچوونەکانتان جێگای پێزانینە."
|
2143 |
|
2144 |
-
#:
|
2145 |
msgid "Translations"
|
2146 |
msgstr "وەرگێڕانەکان"
|
2147 |
|
2148 |
-
#:
|
2149 |
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."
|
2150 |
msgstr "زیادکراوەی ئاماری وۆردپرێش بۆ بوون بە نێودەوڵەتی هانتان ئەدات تاکوو وەرگێڕانی لە سەر بکەن., بۆ دیتنی دۆخی وەرگێڕاوەکان %s سەردانی بکەن و گەر پێت خۆشە یارمەتیمان بدەی %s سەردانی بکە."
|
2151 |
|
2152 |
-
#:
|
2153 |
msgid "translation collaboration site"
|
2154 |
msgstr "مالپەڕی هاوکار لە وەرگێڕان"
|
2155 |
|
2156 |
-
#:
|
2157 |
msgid "drop us a line"
|
2158 |
msgstr "پەیوەندی لەگەڵ ئێمە"
|
2159 |
|
2160 |
-
#:
|
2161 |
msgid "Support"
|
2162 |
msgstr "پشتیوانی"
|
2163 |
|
2164 |
-
#:
|
2165 |
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:"
|
2166 |
msgstr "گەر لە گەڵ زیادکراوەی ئاماری وۆردپرێس کێشەت هەیە !پێمان خۆشە یارمەتیت بدەین.لە خوارەوە دەتوانیت لە تاقمەکانی سوود وەربگریت و پەیوەندیمان پی بکەی : "
|
2167 |
|
2168 |
-
#:
|
2169 |
-
#:
|
2170 |
msgid "Have you read the %s?"
|
2171 |
msgstr "ئێوە %s ت خوێندوەتەوە ؟"
|
2172 |
|
2173 |
-
#:
|
2174 |
msgid "FAQs"
|
2175 |
msgstr "پرسیارەکان"
|
2176 |
|
2177 |
-
#:
|
2178 |
msgid "manual"
|
2179 |
msgstr "ڕێنمایی"
|
2180 |
|
2181 |
-
#:
|
2182 |
msgid "Have you search the %s for a similar issue?"
|
2183 |
msgstr "لە %s بۆ بابەتەکانی هاوتا گڕانتان کردووە ؟"
|
2184 |
|
2185 |
-
#:
|
2186 |
msgid "support forum"
|
2187 |
msgstr "سەکۆی پشتیوانی"
|
2188 |
|
2189 |
-
#:
|
2190 |
msgid "Have you search the Internet for any error messages you are receiving?"
|
2191 |
msgstr "ئایا بۆ هەر هەڵە لە ئینتەرنێت گەڕاوی ؟"
|
2192 |
|
2193 |
-
#:
|
2194 |
msgid "Make sure you have access to your PHP error logs."
|
2195 |
msgstr "دەڵنیای PHP بە هەڵەکانی دەستپێگەیشتنت هەیە؟"
|
2196 |
|
2197 |
-
#:
|
2198 |
msgid "And a few things to double-check:"
|
2199 |
msgstr "سەرنج بەم چەند خاڵە بدەن :"
|
2200 |
|
2201 |
-
#:
|
2202 |
msgid "How's your memory_limit in php.ini?"
|
2203 |
msgstr "ژمارەی memory_limit لەphp.ini چاو پێکەوتووە ؟"
|
2204 |
|
2205 |
-
#:
|
2206 |
msgid "Have you tried disabling any other plugins you may have installed?"
|
2207 |
msgstr "هەوڵت داوە زیادکراوەکانی دیکە ناچالللاک بکەی ؟"
|
2208 |
|
2209 |
-
#:
|
2210 |
msgid "Have you tried using the default WordPress theme?"
|
2211 |
msgstr "هەوڵت داوا ڕکاری بنەڕەتی وۆردپرێس بکاربێنیت ؟"
|
2212 |
|
2213 |
-
#:
|
2214 |
msgid "Have you double checked the plugin settings?"
|
2215 |
msgstr "ئایا ڕێکخستنەکانی زیادکراوەت چاودێری کردووە ؟"
|
2216 |
|
2217 |
-
#:
|
2218 |
msgid "Do you have all the required PHP extensions installed?"
|
2219 |
msgstr "ئایا پێویستیەکانی دەستپیگەیشتنی PHP دامەزراندووە؟"
|
2220 |
|
2221 |
-
#:
|
2222 |
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?"
|
2223 |
msgstr "ئایا پەرەییکی بەتاڵ لە وێبگەڕەکەت بینڕاوە ؟ئایا هەڵەکانت لە کۆدەکان بینیوە ئان پشکنینت بۆ کردووە /"
|
2224 |
|
2225 |
-
#:
|
2226 |
msgid "Have you checked your PHP and web server error logs?"
|
2227 |
msgstr "ئایا PHP گوزارشی هەڵەکانی سێرڤێری وێبەکەت پشکنین کردووە ؟"
|
2228 |
|
2229 |
-
#:
|
2230 |
msgid "Still not having any luck?"
|
2231 |
msgstr "هێشتا شآنسو بەختێکت بۆ نییە ؟"
|
2232 |
|
2233 |
-
#:
|
2234 |
msgid "Then please open a new thread on the %s and we'll respond as soon as possible."
|
2235 |
msgstr "تکایە تیکێتێکی نوێ لە %s بنووسن تا لە کەمترین کات وەڵامەت بدەینەوە ."
|
2236 |
|
2237 |
-
#:
|
2238 |
msgid "WordPress.org support forum"
|
2239 |
msgstr "سەکۆی پشتیوانی WordPress.org"
|
2240 |
|
2241 |
-
#:
|
2242 |
msgid "Alternatively %s support is available as well."
|
2243 |
msgstr "مەکۆی پشتیوانی %s ئێمە ،ڕێگایێکی ترە بۆ دەستپێگەیشتن بە ئێمە"
|
2244 |
|
2245 |
-
#:
|
2246 |
msgid "Farsi"
|
2247 |
msgstr "فارسی"
|
2248 |
|
2249 |
-
#:
|
2250 |
msgid "WP Statistics Honey Pot Page"
|
2251 |
msgstr "پەڕەی ئاماری وۆردپرێسی مەنجەڵە هەنگوین"
|
2252 |
|
2253 |
-
#:
|
2254 |
msgid "This is the honey pot for WP Statistics to use, do not delete."
|
2255 |
msgstr "ئەم مەنجەڵە هەنگوێنە بۆ بەکارهێنانی ئاماری WPیە،نەبۆ سڕینەوە"
|
2256 |
|
2257 |
-
#:
|
2258 |
msgid "Access Levels"
|
2259 |
msgstr "ئاستی دەستپێگەیشتن"
|
2260 |
|
2261 |
-
#:
|
2262 |
msgid "Required user level to view WP Statistics"
|
2263 |
msgstr "ئاستی بەکارهێنەری پێویست بۆ دیتنی ئاماری وۆردپرێس"
|
2264 |
|
2265 |
-
#:
|
2266 |
msgid "Required user level to manage WP Statistics"
|
2267 |
msgstr "ئاستی بەکارهێنەری پێویست بۆ بەڕێوەبردنی ئاماری وۆردپرێس"
|
2268 |
|
2269 |
-
#:
|
2270 |
msgid "See the %s for details on capability levels."
|
2271 |
msgstr "دیتنی وردەکاری %s لە سەر ئاستی تواناییەکان."
|
2272 |
|
2273 |
-
#:
|
2274 |
msgid "WordPress Roles and Capabilities page"
|
2275 |
msgstr "پەڕەی ڕۆڵەکان و تواناییەکانی وۆردپرێس"
|
2276 |
|
2277 |
-
#:
|
2278 |
msgid "Hint: manage_network = Super Admin Network, manage_options = Administrator, edit_others_posts = Editor, publish_posts = Author, edit_posts = Contributor, read = Everyone."
|
2279 |
msgstr "خاڵ: manage_network =بەڕێوەبەری تۆڕ، manage_options = بەڕیوەبەر، edit_others_posts = سەرنووسەر، publish_posts = نووسەر، edit_posts = هاوبەش، read = گشتی."
|
2280 |
|
2281 |
-
#:
|
2282 |
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."
|
2283 |
msgstr "هەر ئەکێک لە بڕگەکان بە شێوازی بنەڕەتی لە وۆردپرێس دابین کراوە. بۆ وێنە بە هەڵبژاردنی publish_posts به نویسندهگاه، سەرنووسەرەکان، بەڕێوەبەرو بەرێوەبەری گشتی دەستپێگەیشتن دەدەیت."
|
2284 |
|
2285 |
-
#:
|
2286 |
msgid "If you need a more robust solution to delegate access you might want to look at %s in the WordPress plugin directory."
|
2287 |
msgstr "گەر پێویستت بە ڕێگاییک دیکە بۆ پەیوەندی لەگەڵ ڕۆڵی بەکارهینەرانی وۆردپرێس هەیە، نچاو لەم زیادکراوە %s بکەن"
|
2288 |
|
2289 |
-
#:
|
2290 |
-
#:
|
2291 |
-
#:
|
2292 |
msgid "Exclusions"
|
2293 |
msgstr "جیاکاریەکان"
|
2294 |
|
2295 |
-
#:
|
2296 |
msgid "Record exclusions"
|
2297 |
msgstr "تۆمارکردنی جیاکاریەکان"
|
2298 |
|
2299 |
-
#:
|
2300 |
-
#:
|
2301 |
-
#:
|
2302 |
msgid "Enable"
|
2303 |
msgstr "چالاک"
|
2304 |
|
2305 |
-
#:
|
2306 |
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."
|
2307 |
msgstr "جیاکردنی چینیک لە سەردانی ئامارەکە و هەڵگرتنی ئەان بە نووسینی هۆکارەکەیان لە خشتێکی تر.دەتوانێت ژمارەیێکی زۆر داتا درووستکرێت.بەسوودە دەتوانن ئامارێکی پتوتر لە سەردانەکان بەدەت بێنن."
|
2308 |
|
2309 |
-
#:
|
2310 |
msgid "Exclude User Roles"
|
2311 |
msgstr "دوورخستنەوەی ڕۆڵی بەکارهێنەر"
|
2312 |
|
2313 |
-
#:
|
2314 |
-
#:
|
2315 |
-
#:
|
2316 |
-
#:
|
2317 |
msgid "Exclude"
|
2318 |
msgstr "دوورخستنەوەکان"
|
2319 |
|
2320 |
-
#:
|
2321 |
msgid "Exclude %s role from data collection."
|
2322 |
msgstr "دوورخستنی ڕۆڵی بەکارهێنەر %s لە ژمارەی ئامار"
|
2323 |
|
2324 |
-
#:
|
2325 |
msgid "IP/Robot Exclusions"
|
2326 |
msgstr "جیاکردنی ڕۆبۆت/ئای پی"
|
2327 |
|
2328 |
-
#:
|
2329 |
msgid "Robot list"
|
2330 |
msgstr "لیستی ڕۆبۆتەکان"
|
2331 |
|
2332 |
-
#:
|
2333 |
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."
|
2334 |
msgstr "پیرستێک لە وەشەکان بۆ هەڵسەنگاندن و ناسینی ڕۆبۆتەکان (لە هەر هێڵ وەشەیێک بنووسن). چوونەژوورەوەکان دەبێت ٤ پیت بن."
|
2335 |
|
2336 |
-
#:
|
2337 |
msgid "Reset to Default"
|
2338 |
msgstr "ڕێکخستنەوه بۆ شێوازی بنەڕەتی"
|
2339 |
|
2340 |
-
#:
|
2341 |
msgid "Force robot list update after upgrades"
|
2342 |
msgstr "بەڕۆژکردنی لیستی ڕۆبۆتەکان پێش بەرزکردنەوە"
|
2343 |
|
2344 |
-
#:
|
2345 |
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."
|
2346 |
msgstr "پێرستی ڕۆبۆتەکان پاش بەڕۆژ بوونەوە ڕێکدەخرینەە.گەر ئەم برگە هەڵبژیرن پێرست لەدەست دەچێت"
|
2347 |
|
2348 |
-
#:
|
2349 |
msgid "Robot visit threshold"
|
2350 |
msgstr "لێواری سەفەری ڕۆبۆت"
|
2351 |
|
2352 |
-
#:
|
2353 |
msgid "Treat visitors with more than this number of visits per day as robots. 0 = disabled."
|
2354 |
msgstr "هەڵسوکەوتکردنی میوانان زۆرتر لەم ژمارە سەردانە لەهەر ڕۆژ بە عینوانی ڕۆبۆت 0 = ناچالاکە."
|
2355 |
|
2356 |
-
#:
|
2357 |
msgid "Excluded IP address list"
|
2358 |
msgstr "جیاکردنی پێرستی ناونیشانیIP"
|
2359 |
|
2360 |
-
#:
|
2361 |
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."
|
2362 |
msgstr "لیستێک لە ناونیشانی IPو Subnet Maskهای (لە هەر هیڵ یەک دانی) بۆ بەرگیری لە ژمێڕیاری ئامار (هەر دوو شێوازی 192.168.0.0/24 و 192.168.0.0/255.255.255.0 توانیی قبووڵ). بۆ دابین کردن تەنها ئادرەسێک لەIP پێویست نییەSubnet Maskزیادی کەن "
|
2363 |
|
2364 |
-
#:
|
2365 |
msgid "Add 10.0.0.0"
|
2366 |
msgstr "زیادکردنی10.0.0.0"
|
2367 |
|
2368 |
-
#:
|
2369 |
msgid "Add 172.16.0.0"
|
2370 |
msgstr "زۆرکردنی172.16.0.0"
|
2371 |
|
2372 |
-
#:
|
2373 |
msgid "Add 192.168.0.0"
|
2374 |
msgstr "زیادکردنی192.168.0.0"
|
2375 |
|
2376 |
-
#:
|
2377 |
msgid "Use honey pot"
|
2378 |
msgstr "بەکارهینانی مەنجەڵە هەنگوین"
|
2379 |
|
2380 |
-
#:
|
2381 |
msgid "Use a honey pot page to identify robots."
|
2382 |
msgstr "بەکارهینانی پەڕەیێک لە مەنجەڵە هەنگوین بۆ ناساندنی ڕۆبۆتەکان"
|
2383 |
|
2384 |
-
#:
|
2385 |
msgid "Honey pot post id"
|
2386 |
msgstr "مەنجەڵە هەنگوین ناردنی ناسنامە"
|
2387 |
|
2388 |
-
#:
|
2389 |
msgid "The post id to use for the honeypot page."
|
2390 |
msgstr "ناردنی ناسنامە بۆ بەکارهێنانی پەڕەی مەنجەڵە هەنگوین"
|
2391 |
|
2392 |
-
#:
|
2393 |
msgid "Create a new honey pot page"
|
2394 |
msgstr "درووستکردنی پەڕەی نوێی مەنجەڵە هەنگوین"
|
2395 |
|
2396 |
-
#:
|
2397 |
msgid "GeoIP Exclusions"
|
2398 |
msgstr "جیاکراوەکانی GeoIP"
|
2399 |
|
2400 |
-
#:
|
2401 |
msgid "Excluded countries list"
|
2402 |
msgstr "لیستی وەڵاتە جیاکراوەکان"
|
2403 |
|
2404 |
-
#:
|
2405 |
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."
|
2406 |
msgstr "لیستێک لە کۆدی وەڵاتەکان (ئەکدانە لە هەر هێڵ، هەر دوو نامە) لە کۆی ئامار بریتیە بەکارهێنان لە "000" (سێ سفر) رد بۆ وەڵاتە نەناسراوەکانە."
|
2407 |
|
2408 |
-
#:
|
2409 |
msgid "Included countries list"
|
2410 |
msgstr "لیستی وەڵاتەکان بریتین لە"
|
2411 |
|
2412 |
-
#:
|
2413 |
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."
|
2414 |
msgstr "لیستێک لە کۆدی وەڵاتەکان (لەهەر هێڵ یەکێک، هەر دوو نامە)لە کۆ ئامار بریتییە، گەر ئەم لیستە بەتاڵ نییە، تەنیا میوانەکان لە وەڵاتەکان تۆمار دەبن. بەکارهێنان لە "000" (سێ سفر) بۆ قەبووڵ نەکردنی وەڵاتە نەناسراوەکانە."
|
2415 |
|
2416 |
-
#:
|
2417 |
msgid "Host Exclusions"
|
2418 |
msgstr "جیاکاری هۆست"
|
2419 |
|
2420 |
-
#:
|
2421 |
msgid "Excluded hosts list"
|
2422 |
msgstr "جیاکاری لیستی هۆستەکان"
|
2423 |
|
2424 |
-
#:
|
2425 |
msgid "A list of fully qualified host names (ie. server.example.com, one per line) to exclude from statistics collection."
|
2426 |
msgstr "لیستێک لە ناونیشانەکانی خۆماڵی (بۆ وێنە: /wordpress/about، هەر هێڵ) لە کۆی ئامار دووردەخرێت."
|
2427 |
|
2428 |
-
#:
|
2429 |
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."
|
2430 |
msgstr "ئاگاداربە:ئەم بڕگە dns پێچەوانە لە هەر نوێکردنی پەڕە بۆ هەر ipێک کە لە سەر شەکرەی هەر سێرڤێرێک لە کاتژمێر بەکاردێت . گەر ئێوە بەرگیری بکەن لە هەر هۆستێکی تایبەتلەوانەیە کە ءیوە پەیدا بکەن پلەی هاوئاهەنگی لە نێوانگۆڕانی هۆست کە بە ناونیشانی ئایپی و بەڕۆژ بوونی ئاکامی سەردانەکان لە بوونی شەکرە لە وێبگەر."
|
2431 |
|
2432 |
-
#:
|
2433 |
msgid "Site URL Exclusions"
|
2434 |
msgstr "جیاکاری ئادرەسی ماڵپەڕ"
|
2435 |
|
2436 |
-
#:
|
2437 |
msgid "Excluded login page"
|
2438 |
msgstr "جیاکاری پەڕگەی هاتنە ژوور"
|
2439 |
|
2440 |
-
#:
|
2441 |
msgid "Exclude the login page for registering as a hit."
|
2442 |
msgstr "جیاکاری پەڕەی چوونەژوورەوە بۆ ناونووسی لە ژماردنی ئامار"
|
2443 |
|
2444 |
-
#:
|
2445 |
msgid "Excluded admin pages"
|
2446 |
msgstr "جیاکاری پەڕەی بەڕێوەبەر"
|
2447 |
|
2448 |
-
#:
|
2449 |
msgid "Exclude the admin pages for registering as a hit."
|
2450 |
msgstr "جیاکاری پەڕەی بەڕێوەبەر بۆ ناونووسی لە ژماردنی ئامار"
|
2451 |
|
2452 |
-
#:
|
2453 |
msgid "Excluded RSS feeds"
|
2454 |
msgstr "جیاکاری فیدی RSS "
|
2455 |
|
2456 |
-
#:
|
2457 |
msgid "Exclude the RSS feeds for registering as a hit."
|
2458 |
msgstr "جیاکاری پەڕەی فیدیRSS بۆ ناونووسی لە ژماردنی ئامار"
|
2459 |
|
2460 |
-
#:
|
2461 |
msgid "browscap settings"
|
2462 |
msgstr "ڕێکخستنەکانی browscap "
|
2463 |
|
2464 |
-
#:
|
2465 |
msgid "browscap usage"
|
2466 |
msgstr "سودوەرگرتن لە browscap"
|
2467 |
|
2468 |
-
#:
|
2469 |
-
#:
|
2470 |
-
#:
|
2471 |
-
#:
|
2472 |
-
#:
|
2473 |
-
#:
|
2474 |
-
#:
|
2475 |
-
#:
|
2476 |
-
#:
|
2477 |
-
#:
|
2478 |
-
#:
|
2479 |
-
#:
|
2480 |
-
#:
|
2481 |
-
#:
|
2482 |
-
#:
|
2483 |
-
#:
|
2484 |
-
#:
|
2485 |
-
#:
|
2486 |
-
#:
|
2487 |
-
#:
|
2488 |
-
#:
|
2489 |
-
#:
|
2490 |
-
#:
|
2491 |
-
#:
|
2492 |
-
#:
|
2493 |
-
#:
|
2494 |
-
#:
|
2495 |
-
#:
|
2496 |
-
#:
|
|
|
|
|
2497 |
msgid "Active"
|
2498 |
msgstr "چالاک"
|
2499 |
|
2500 |
-
#:
|
2501 |
msgid "The browscap database will be downloaded and used to detect robots."
|
2502 |
msgstr "بنکەی دراوە browscap داگرە بۆ بهەرە وەرگرتن لە رۆبۆت."
|
2503 |
|
2504 |
-
#:
|
2505 |
msgid "Update browscap Info"
|
2506 |
msgstr "Browscap بەڕۆژکردنی زانیاریەکانی"
|
2507 |
|
2508 |
-
#:
|
2509 |
msgid "Download browscap Database"
|
2510 |
msgstr "داگرتنی browscapبنکەدراوە"
|
2511 |
|
2512 |
-
#:
|
2513 |
-
#:
|
2514 |
msgid "Save changes on this page to download the update."
|
2515 |
msgstr "پاشکەوتی گۆڕانکاری لەم پەرگە و داگرتنی بەڕۆژکراوەکان"
|
2516 |
|
2517 |
-
#:
|
2518 |
msgid "Schedule weekly update of browscap DB"
|
2519 |
msgstr "ببەرنامەی بەڕۆژ کردنی هەفتانە browscap دسی بی"
|
2520 |
|
2521 |
-
#:
|
2522 |
-
#:
|
2523 |
msgid "Next update will be"
|
2524 |
msgstr "بەڕۆژ بوونی داهاتوو هەیە."
|
2525 |
|
2526 |
-
#:
|
2527 |
msgid "Download of the browscap database will be scheduled for once a week."
|
2528 |
msgstr "داگرتنی بنکەدراوەی browscap بۆبارێک لە حەفتە"
|
2529 |
|
2530 |
-
#:
|
2531 |
msgid "This will delete the manual when you save the settings, are you sure?"
|
2532 |
msgstr "پاش پاشکەتکردنی ڕێکخستنەکان پەڕگەی ڕینمایی دەسڕێتەوە ،دەڵنیای ؟"
|
2533 |
|
2534 |
-
#:
|
2535 |
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."
|
2536 |
msgstr "ئەم تایبەتمەندییە ناونیشانی IP لە بنکەی دراوە پاشکەوت دەکات بەڵآم بە جێگای لە هەشی تایبەت بەهرە وەردەگرێت. String بریکاری بەکارهێنەر کۆی \"Store\" ڕێکخستن ناچالاک دەبێت گەر ئەم بڕگە هەڵبژێردرێت. ئێوە دەتوانن بۆ گەڕانەوەی ناونیشان IP لەداهاتو گە ڕانەوەی زانیاریەکانی شوێن چالاک بکەن.."
|
2537 |
|
2538 |
-
#:
|
2539 |
msgid "Users Online"
|
2540 |
msgstr "بەکارهێنەری سەرهێڵ"
|
2541 |
|
2542 |
-
#:
|
2543 |
msgid "User online"
|
2544 |
msgstr "بەکارهێنەری سەرهێڵ"
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
+
#: includes/settings/tabs/wps-general.php:281
|
14 |
+
msgid "Add page title to empty search words"
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: includes/settings/tabs/wps-general.php:287
|
18 |
+
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."
|
19 |
+
msgstr ""
|
20 |
+
|
21 |
+
#: includes/settings/tabs/wps-maintenance.php:77
|
22 |
+
msgid "The number of hits required to delete the visitor. Invalid values will disable the daily maintenance (must be 10 or greater)."
|
23 |
+
msgstr ""
|
24 |
+
|
25 |
+
#: includes/settings/tabs/wps-maintenance.php:71
|
26 |
+
msgid "Prune visitors with more than"
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: includes/settings/tabs/wps-maintenance.php:65
|
30 |
+
msgid "A WP Cron job will be run daily to prune any users statistics data where the user has more than the defined number of hits in a day (aka they are probably a bot)."
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:217
|
34 |
+
msgid "Purge visitors with more than"
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:222
|
38 |
+
msgid "hits"
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:223
|
42 |
+
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."
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: includes/functions/purge-hits.php:28
|
46 |
+
msgid "No visitors found to purge."
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: includes/functions/purge-hits.php:25
|
50 |
+
msgid "%s records purged successfully."
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: ajax.php:174 includes/functions/purge-hits.php:32
|
54 |
+
msgid "Number of hits must be greater than or equal to 10!"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: shortcode.php:132
|
58 |
+
msgid "Page Visits"
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: shortcode.php:135
|
62 |
+
msgid "Page Count"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: shortcode.php:136
|
66 |
+
msgid "Comment Count"
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: shortcode.php:137
|
70 |
+
msgid "Spam Count"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: shortcode.php:138
|
74 |
+
msgid "User Count"
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: shortcode.php:139
|
78 |
+
msgid "Post Average"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: shortcode.php:140
|
82 |
+
msgid "Comment Average"
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: shortcode.php:141
|
86 |
+
msgid "User Average"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: shortcode.php:149
|
90 |
+
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: shortcode.php:153
|
94 |
+
msgid "Search Provider"
|
95 |
+
msgstr ""
|
96 |
+
|
97 |
+
#: shortcode.php:156
|
98 |
+
msgid "The search provider to get statistics on."
|
99 |
+
msgstr ""
|
100 |
+
|
101 |
+
#: shortcode.php:160
|
102 |
+
msgid "Number Format"
|
103 |
+
msgstr ""
|
104 |
+
|
105 |
+
#: shortcode.php:163
|
106 |
+
msgid "The format to display numbers in: i18n, english, none."
|
107 |
+
msgstr ""
|
108 |
+
|
109 |
+
#: shortcode.php:167
|
110 |
+
msgid "English"
|
111 |
+
msgstr ""
|
112 |
+
|
113 |
+
#: shortcode.php:168
|
114 |
+
msgid "International"
|
115 |
+
msgstr ""
|
116 |
+
|
117 |
+
#: includes/log/exclusions.php:191 includes/log/hit-statistics.php:163
|
118 |
+
msgid "Hits Statistics Summary"
|
119 |
+
msgstr ""
|
120 |
+
|
121 |
+
#: includes/log/exclusions.php:201 includes/log/hit-statistics.php:174
|
122 |
+
msgid "Chart Total"
|
123 |
+
msgstr ""
|
124 |
+
|
125 |
+
#: includes/log/exclusions.php:206 includes/log/hit-statistics.php:180
|
126 |
+
msgid "All Time Total"
|
127 |
+
msgstr ""
|
128 |
+
|
129 |
+
#: includes/log/log.php:57
|
130 |
+
msgid "Have you thought about donating to WP Statistics?"
|
131 |
+
msgstr ""
|
132 |
+
|
133 |
+
#: includes/settings/tabs/wps-about.php:20 wp-statistics.php:355
|
134 |
+
msgid "Donate"
|
135 |
+
msgstr ""
|
136 |
+
|
137 |
+
#: includes/settings/tabs/wps-about.php:24
|
138 |
+
msgid "Fell like showing us how much you enjoy WP Statistics? Drop by our %s page and show us some love!"
|
139 |
+
msgstr ""
|
140 |
+
|
141 |
+
#: includes/settings/tabs/wps-about.php:24
|
142 |
+
msgid "donation"
|
143 |
+
msgstr ""
|
144 |
+
|
145 |
+
#: includes/log/log.php:57
|
146 |
+
msgid "Donate Now!"
|
147 |
+
msgstr ""
|
148 |
+
|
149 |
+
#: includes/log/log.php:57
|
150 |
+
msgid "Close"
|
151 |
+
msgstr ""
|
152 |
+
|
153 |
+
#: shortcode.php:126
|
154 |
+
msgid "Select the statistic you wish to display."
|
155 |
+
msgstr ""
|
156 |
+
|
157 |
+
#: shortcode.php:123
|
158 |
+
msgid "Statistic"
|
159 |
+
msgstr ""
|
160 |
+
|
161 |
+
#: shortcode.php:134
|
162 |
+
msgid "Post Count"
|
163 |
+
msgstr ""
|
164 |
+
|
165 |
+
#: shortcode.php:146
|
166 |
+
msgid "Time Frame"
|
167 |
+
msgstr ""
|
168 |
+
|
169 |
+
#: includes/functions/functions.php:929
|
170 |
msgid "to"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: includes/functions/functions.php:929
|
174 |
msgid "Go"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: includes/log/top-pages.php:95
|
178 |
msgid "Rank #5"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: includes/log/top-pages.php:95
|
182 |
msgid "Rank #4"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: includes/log/top-pages.php:95
|
186 |
msgid "Rank #3"
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: includes/log/top-pages.php:95
|
190 |
msgid "Rank #1"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: includes/log/top-pages.php:95
|
194 |
msgid "Rank #2"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: includes/optimization/tabs/wps-optimization-database.php:56
|
198 |
msgid "Visits Table"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: includes/optimization/tabs/wps-optimization-database.php:70
|
202 |
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."
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: includes/optimization/tabs/wps-optimization-database.php:71
|
206 |
msgid "This operation could take a long time on installs with many rows in the visits table."
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: includes/optimization/tabs/wps-optimization-database.php:76
|
210 |
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."
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: includes/log/last-visitor.php:68
|
214 |
msgid "Filtered by"
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: includes/functions/functions.php:922 includes/functions/functions.php:925
|
|
|
218 |
msgid "Range"
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: includes/functions/functions.php:929
|
222 |
msgid "MM/DD/YYYY"
|
223 |
msgstr "MM/DD/YYYY"
|
224 |
|
225 |
+
#: includes/settings/tabs/wps-general.php:342
|
226 |
msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
|
227 |
msgstr "وەرگێرانەکان بەکارمەهێنە و لە جیاتی ئەوە ئینگلیزی وەکو زمانی بنچینەیی بۆ WP Statistics بەکاربهێنە (پێویستی بە بارکردنی دوو پەڕ هەیە)"
|
228 |
|
229 |
+
#: includes/settings/tabs/wps-general.php:336
|
230 |
msgid "Force English"
|
231 |
msgstr "ئئنگلیزی بەزۆر"
|
232 |
|
233 |
+
#: includes/settings/tabs/wps-general.php:331
|
234 |
msgid "Languages"
|
235 |
msgstr "زمانەکان"
|
236 |
|
237 |
+
#: includes/settings/tabs/wps-access-level.php:271
|
238 |
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."
|
239 |
msgstr "تێبینی: ئەم هەڵبژاردنە هیچ پارامێتەری بەستەرێک لە ئەستۆناگرێت ( هەر شتێک لەدوای ؟)، تەنها بۆ ناوی سکریپتەکە. هەر تێنوسراوێک کەمتر لە دوو پیت پشتگوێ دەخرێت."
|
240 |
|
241 |
+
#: includes/settings/tabs/wps-access-level.php:269
|
242 |
msgid "A list of local urls (ie. /wordpress/about, one per line) to exclude from statistics collection."
|
243 |
msgstr "لیستێک لە بەستەرە ناوخۆییەکان (نمونە /wordpress/about بۆ هەر دێڕێک یەک) بۆ دەرکردنی لە کۆکراوەی ئامارەکان."
|
244 |
|
245 |
+
#: includes/settings/tabs/wps-access-level.php:266
|
246 |
msgid "Excluded URLs list"
|
247 |
msgstr "لیستی بەستەرە دەرکراوەکان"
|
248 |
|
249 |
+
#: includes/log/exclusions.php:24
|
250 |
msgid "Excluded URL"
|
251 |
msgstr "بەستەری دەرکراو"
|
252 |
|
253 |
+
#: includes/log/widgets/summary.php:66
|
254 |
msgid "Last 365 Days (Year)"
|
255 |
msgstr "٣٦٥ ڕۆژ ڕابردوو(ساڵ)"
|
256 |
|
257 |
+
#: includes/log/widgets/summary.php:60
|
258 |
msgid "Last 30 Days (Month)"
|
259 |
msgstr "٣٠ ڕۆژ ڕابردوو (مانگ)"
|
260 |
|
261 |
+
#: includes/log/widgets/summary.php:54
|
262 |
msgid "Last 7 Days (Week)"
|
263 |
msgstr "٧ ڕۆژی ڕابردوو(هەفتە)"
|
264 |
|
265 |
+
#: includes/functions/functions.php:403
|
266 |
msgid "Yahoo!"
|
267 |
msgstr "یاهو"
|
268 |
|
269 |
+
#: includes/functions/functions.php:404
|
270 |
msgid "Yandex"
|
271 |
msgstr "یاندیکس"
|
272 |
|
273 |
+
#: includes/functions/functions.php:400
|
274 |
msgid "clearch.org"
|
275 |
msgstr "clearch.org"
|
276 |
|
277 |
+
#: includes/functions/functions.php:401
|
278 |
msgid "DuckDuckGo"
|
279 |
msgstr "دەک دەک گۆو"
|
280 |
|
281 |
+
#: includes/functions/functions.php:399
|
282 |
msgid "Bing"
|
283 |
msgstr "بینگ"
|
284 |
|
285 |
+
#: includes/functions/functions.php:398
|
286 |
msgid "Baidu"
|
287 |
msgstr "بەیدوو"
|
288 |
|
289 |
+
#: editor.php:69
|
290 |
msgid "Hits in the last 20 days"
|
291 |
msgstr "ئامار لە دوایین ٢٠ ڕۆژدا"
|
292 |
|
293 |
+
#: includes/log/exclusions.php:24
|
294 |
msgid "Feeds"
|
295 |
msgstr "پێشبردنەکان"
|
296 |
|
297 |
+
#: includes/log/exclusions.php:24
|
298 |
msgid "User Role"
|
299 |
msgstr "ڕۆڵی بەرکارهێنەر"
|
300 |
|
301 |
+
#: includes/log/exclusions.php:24
|
302 |
msgid "Login Page"
|
303 |
msgstr "پەڕی چوونەژوورەوە"
|
304 |
|
305 |
+
#: includes/log/exclusions.php:24
|
306 |
msgid "Admin Page"
|
307 |
msgstr "پەڕی بەڕێوەبەر"
|
308 |
|
309 |
+
#: includes/log/exclusions.php:24
|
310 |
msgid "Self Referral"
|
311 |
msgstr "ئاراستەکردنی خۆیی"
|
312 |
|
313 |
+
#: includes/log/exclusions.php:24
|
314 |
msgid "IP Match"
|
315 |
msgstr "یەکگرتنەوەی ئایپی"
|
316 |
|
317 |
+
#: includes/log/exclusions.php:24
|
318 |
msgid "Robot"
|
319 |
msgstr "ڕۆبۆت"
|
320 |
|
321 |
+
#: includes/log/online.php:100
|
322 |
msgid "Currently there are no users online in the site."
|
323 |
msgstr ".لە ئێستادا هیچ بەکارهێنەرێک بۆ ئەم ماڵپەڕ لەسەرهێڵ نییە"
|
324 |
|
325 |
+
#: includes/log/exclusions.php:24
|
326 |
msgid "Robot Threshold"
|
327 |
msgstr "لێواری ڕۆبۆت"
|
328 |
|
329 |
+
#: includes/log/exclusions.php:24
|
330 |
msgid "Honey Pot"
|
331 |
msgstr "مەنجەڵی هەنگوین"
|
332 |
|
333 |
+
#: includes/log/widgets/page.php:8
|
334 |
msgid "Page Trending Stats"
|
335 |
msgstr "ئامارەکانی پەڕی زۆر خوازراو"
|
336 |
|
337 |
+
#: includes/log/exclusions.php:24
|
338 |
msgid "Hostname"
|
339 |
msgstr "ناوی خانەخوێ"
|
340 |
|
341 |
+
#: includes/settings/tabs/wps-general.php:93
|
342 |
+
#: includes/settings/tabs/wps-general.php:133
|
343 |
+
#: includes/settings/tabs/wps-general.php:149
|
344 |
+
#: includes/settings/tabs/wps-general.php:188
|
345 |
+
#: includes/settings/tabs/wps-general.php:200
|
346 |
+
#: includes/settings/tabs/wps-general.php:229
|
347 |
+
#: includes/settings/tabs/wps-notifications.php:122
|
348 |
msgid "Enable or disable this feature"
|
349 |
msgstr "ئەم تایبەتمەندیە چالاک یان ناچالاک بکە"
|
350 |
|
351 |
+
#: includes/settings/tabs/wps-general.php:99
|
352 |
msgid "Check for online users every"
|
353 |
msgstr "پشکنین بۆ بەکارهێنەرانی سەرهێڵ بکە هەموو"
|
354 |
|
355 |
+
#: includes/settings/tabs/wps-general.php:104
|
356 |
msgid "Second"
|
357 |
msgstr "چرکەیەک"
|
358 |
|
359 |
+
#: includes/settings/tabs/wps-general.php:105
|
360 |
msgid "Time for the check accurate online user in the site. Now: %s Second"
|
361 |
msgstr "کات بۆ پشکنینی دروستی بەکارهێنەری سەرهیڵ لەم ماڵپەڕە. ئێستا %s چرکەیە"
|
362 |
|
363 |
+
#: includes/settings/tabs/wps-general.php:111
|
364 |
msgid "Record all user"
|
365 |
msgstr "تۆمارکردنی گشت بەکارهێنەر"
|
366 |
|
367 |
+
#: includes/settings/tabs/wps-general.php:117
|
368 |
msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
|
369 |
msgstr "ڕێکخستنی دەرکردەکان و تۆمارەکانی هەموو بەکارهێنەرانی سەرهێڵ پشتگوێ بخە ( بەلەخۆگرتنی ئاراستەکردنی خۆیی و ڕۆبۆتەکان). پێویستە تەنها بۆ دیاریکردنی کێشە بەکاربهێندرێت."
|
370 |
|
371 |
+
#: includes/settings/tabs/wps-general.php:155
|
372 |
msgid "Store entire user agent string"
|
373 |
msgstr "تەواوی زنجیرەی بەکارهێنەری بریکار پاشەکەوت بکە"
|
374 |
|
375 |
+
#: includes/settings/tabs/wps-general.php:161
|
376 |
msgid "Only enabled for debugging"
|
377 |
msgstr "تەنها چالاک بکرێت بۆ هەڵەدۆزین"
|
378 |
|
379 |
+
#: includes/settings/tabs/wps-general.php:167
|
380 |
msgid "Coefficient per visitor"
|
381 |
msgstr "هاوچوستی بۆ هەر سەردانکارێک"
|
382 |
|
383 |
+
#: includes/settings/tabs/wps-general.php:172
|
384 |
msgid "For each visit to account for several hits. Currently %s."
|
385 |
msgstr "بۆ هەر سەردانێک بۆ هەژمارکردنی ژمارەیەک هەڵدانەوە. لە ئێستادا %s."
|
386 |
|
387 |
+
#: includes/settings/tabs/wps-general.php:177
|
388 |
+
#: includes/settings/tabs/wps-general.php:182 wp-statistics.php:344
|
389 |
+
#: wp-statistics.php:420
|
|
|
390 |
msgid "Pages"
|
391 |
msgstr "پەڕەكان"
|
392 |
|
393 |
+
#: includes/settings/tabs/wps-general.php:194
|
394 |
msgid "Track all pages"
|
395 |
msgstr "شوێن پێی هەموو پەڕەکان بکە"
|
396 |
|
397 |
+
#: includes/settings/tabs/wps-general.php:209
|
398 |
msgid "Strip parameters from URI"
|
399 |
msgstr "لابردنی پارامێتەرەکان لە بەستەرەکە"
|
400 |
|
401 |
+
#: includes/settings/tabs/wps-general.php:215
|
402 |
msgid "This will remove anything after the ? in a URL."
|
403 |
msgstr "ئەمە هەموو شتێک دەسڕێتەوە لە دوای ؟ لە بەستەرێکدا"
|
404 |
|
405 |
+
#: includes/settings/tabs/wps-general.php:223
|
406 |
msgid "Disable hits column in post/pages list"
|
407 |
msgstr "ستونی هەڵدانەوەکان لە لیستی بابەت\\پەڕەکان ناچالاک بکە"
|
408 |
|
409 |
+
#: includes/settings/tabs/wps-general.php:234
|
410 |
msgid "Miscellaneous"
|
411 |
msgstr "هەمەجۆر"
|
412 |
|
413 |
+
#: includes/settings/tabs/wps-general.php:239
|
414 |
msgid "Show stats in menu bar"
|
415 |
msgstr "ئامارەكان لە لیست ئامراز پێشان بدە"
|
416 |
|
417 |
+
#: includes/settings/tabs/wps-general.php:244
|
418 |
msgid "No"
|
419 |
msgstr "نەخێر"
|
420 |
|
421 |
+
#: includes/settings/tabs/wps-general.php:245
|
422 |
msgid "Yes"
|
423 |
msgstr "بەڵێ"
|
424 |
|
425 |
+
#: includes/settings/tabs/wps-general.php:247
|
426 |
msgid "Show stats in admin menu bar"
|
427 |
msgstr "ئامارەكان لە لیست ئامرازی بەڕێوەبەر پێشان بدە"
|
428 |
|
429 |
+
#: includes/settings/tabs/wps-general.php:253
|
430 |
msgid "Hide admin notices about non active features"
|
431 |
msgstr "ئاگاداركردنەوەكانی بەڕێوەبەر بشارەوە سەبارەت بە تایبەتمەندییە ناچالاكەكان"
|
432 |
|
433 |
+
#: includes/settings/tabs/wps-general.php:259
|
434 |
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."
|
435 |
msgstr "لە بنەرەت زیادکراوەی ئاماری وۆردپرێس تواناییەکانی ناچالاکی زیاد کراوە بە شێوەی هەڵە لە پەڕەی بەڕێوەبەر نیشان ئەدات.ئەم هەڵبژاردە ئەم تایبەتمەندییە ناچالاک دەکات"
|
436 |
|
437 |
+
#: includes/settings/tabs/wps-general.php:265
|
438 |
msgid "Delete the manual"
|
439 |
msgstr "سڕینەوەی پەڕگەی ڕینمایی"
|
440 |
|
441 |
+
#: includes/settings/tabs/wps-general.php:271
|
442 |
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."
|
443 |
msgstr "لە بنەرەت پەرگەی ڕینمایی بەکارهێنەرزیادکراوەی ئامار لە بوخچەی زیادکراوەی ئامار بە قەبارەی(٥مێگابایت) دانراوە.گەر ئەم هەڵبژاردە چالاک بێت هەر ئێستا سڕایەوە و لەکاتی بەڕۆژ بوونەوەس نامێنێت."
|
444 |
|
445 |
+
#: includes/settings/tabs/wps-general.php:276
|
446 |
msgid "Search Engines"
|
447 |
msgstr "مەکینەکانی گەڕان"
|
448 |
|
449 |
+
#: includes/settings/tabs/wps-general.php:293
|
450 |
msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
|
451 |
msgstr "ناچاڵاککردنی مەکینەکانی گەڕان کە پێویستت پێیان نییە..ئەم کارە لە ئاکامی گشتی مەکینەکان کارگێڕی هەیە."
|
452 |
|
453 |
+
#: includes/settings/tabs/wps-general.php:308
|
454 |
msgid "disable"
|
455 |
msgstr "ناچالاک"
|
456 |
|
457 |
+
#: includes/settings/tabs/wps-general.php:309
|
458 |
msgid "Disable %s from data collection and reporting."
|
459 |
msgstr "ناچالاککردنی %s کۆکردنەوەی داتا و گوزارشەکان."
|
460 |
|
461 |
+
#: includes/settings/tabs/wps-general.php:315
|
462 |
msgid "Charts"
|
463 |
msgstr "هێڵکاریەکان"
|
464 |
|
465 |
+
#: includes/settings/tabs/wps-general.php:320
|
466 |
msgid "Include totals"
|
467 |
msgstr "کۆی گشتی"
|
468 |
|
469 |
+
#: includes/settings/tabs/wps-general.php:326
|
470 |
msgid "Add a total line to charts with multiple values, like the search engine referrals"
|
471 |
msgstr "زیادکردنی کۆی گشتی بە هێڵکاری ئاماری تێپەڕبوونلە مەکینەکانی گەڕان"
|
472 |
|
473 |
+
#: includes/settings/tabs/wps-geoip.php:27
|
474 |
msgid "GeoIP settings"
|
475 |
msgstr "ڕێکخستنهکانیGeoIP"
|
476 |
|
477 |
+
#: includes/settings/tabs/wps-geoip.php:32
|
478 |
msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
|
479 |
msgstr "خزمەتگوزاری نیشاندانی شوێن IPلەگەڵ GeoLite2 دابینکراوە و لەلایانMaxMind درووستکراوە و لە %s توانایی دەستپێگەیشتنی بۆ هەیە."
|
480 |
|
481 |
+
#: includes/settings/tabs/wps-geoip.php:42
|
482 |
msgid "GeoIP collection"
|
483 |
msgstr "کۆی GeoIP"
|
484 |
|
485 |
+
#: includes/settings/tabs/wps-geoip.php:48
|
486 |
msgid "For get more information and location (country) from visitor, enable this feature."
|
487 |
msgstr "بۆ وەرگرتنی زانیاری زۆرتر و شوێنی(وەڵاتی) میوان.ئەم جێگا چالاک بکە."
|
488 |
|
489 |
+
#: includes/settings/tabs/wps-geoip.php:54
|
490 |
msgid "Update GeoIP Info"
|
491 |
msgstr "بەڕۆژ بونی زانیاریەکان GeoIP"
|
492 |
|
493 |
+
#: includes/settings/tabs/wps-geoip.php:59
|
494 |
msgid "Download GeoIP Database"
|
495 |
msgstr "داگرتنی بنکەداراوەی GeoIP"
|
496 |
|
497 |
+
#: includes/settings/tabs/wps-geoip.php:66
|
498 |
msgid "Schedule monthly update of GeoIP DB"
|
499 |
msgstr "برنامە دانان بۆ بەڕۆژ کردنی مانگانەی بنکەدراوەی GeoIP"
|
500 |
|
501 |
+
#: includes/settings/tabs/wps-geoip.php:92
|
502 |
msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
|
503 |
msgstr "وەرگرتنی بنکەدراوەی GeoIP لە دوو ڕۆژ پاش یەکەمین سێ شەممەی هەر مانگ."
|
504 |
|
505 |
+
#: includes/settings/tabs/wps-geoip.php:93
|
506 |
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)."
|
507 |
msgstr "ئەم هەڵبژاردە تەنانەت زانیاریەکانی کەمتر لە ١ کیلۆبایتیش دادگرێت(کە بەمانای زانیارییەکانی هاورێی زیادکراوەیە)."
|
508 |
|
509 |
+
#: includes/settings/tabs/wps-geoip.php:99
|
510 |
msgid "Populate missing GeoIP after update of GeoIP DB"
|
511 |
msgstr "خەڵکی لەدەست چوو GeoIP پاش لە بەڕۆژ کردنی بنکەی دراوە GeoIP"
|
512 |
|
513 |
+
#: includes/settings/tabs/wps-geoip.php:105
|
514 |
msgid "Update any missing GeoIP data after downloading a new database."
|
515 |
msgstr "بەڕۆژ کردنی هەر داتاییک لەدەست چوو GeoIP پاش لە داگرتنی بنکە دراوەی نوێ"
|
516 |
|
517 |
+
#: includes/settings/tabs/wps-geoip.php:111
|
518 |
msgid "Country code for private IP addresses"
|
519 |
msgstr "کۆدی وەڵآت بۆ نیشانەکانی IP تایبەت"
|
520 |
|
521 |
+
#: includes/settings/tabs/wps-geoip.php:116
|
522 |
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."
|
523 |
msgstr "ستانداردی دوو کۆدی نێودەوڵەتی نامە (بۆ وێنە. ئەمریکا= وەڵآتی ئەمریکا، CA = کەنەدا، و هتد) بۆ تایبەت (یوانایی دەتپێگەیشتنی نییە) ناونیشانیIP (بۆ وێنە. 10.0.0.1، 192.158.1.1، 127.0.0.1،و هتد). بەکارهێنان لە "000" (سێ سفر) به استفاده از "نەناسراو" بە عینوانی کۆدی وەڵات."
|
524 |
|
525 |
+
#: includes/settings/tabs/wps-geoip.php:127
|
526 |
msgid "GeoIP collection is disabled due to the following reasons:"
|
527 |
msgstr "کۆی GeoIP بەهۆکاری خوارەوە ناچالاک بووە"
|
528 |
|
529 |
+
#: includes/settings/tabs/wps-geoip.php:130
|
530 |
msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
|
531 |
msgstr "کۆی GeoIP به PHP وەشانی%s یان سەرترەوە پێویستی هەیە، لە ئێستا بە هۆی کەم بوونی وەشانی PHPئێوە ناچالاکە."
|
532 |
|
533 |
+
#: includes/settings/tabs/wps-geoip.php:135
|
534 |
msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
|
535 |
msgstr "کۆی GeoIPپێویستی بە پێوەکراوەی BC Math لەPHP هەیە وە ناتوانێت لە وەشانی ئێوە PHPدابین بکرێت!"
|
536 |
|
537 |
+
#: includes/settings/tabs/wps-geoip.php:141
|
538 |
msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
|
539 |
msgstr "کۆی GeoIPپێویستی بە پێوەکراوەی BC Math لەPHP هەیە وە ناتوانێت لە وەشانی ئێوە PHPدابین بکرێت!"
|
540 |
|
541 |
+
#: includes/settings/tabs/wps-geoip.php:147
|
542 |
msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
|
543 |
msgstr "شێوازی پاراستنی PHP نەدۆزراوە! کۆیGeoIP لەلایەن شیوازی پاراستنی PHP پاڵپشتی نابێت!"
|
544 |
|
545 |
+
#: includes/settings/tabs/wps-maintenance.php:20
|
546 |
msgid "This will permanently delete data from the database each day, are you sure you want to enable this option?"
|
547 |
msgstr "ئەم کردارە داتا کۆنەکان بۆ هەمیشە دەسڕێتەوە. بۆ چالاککردنی دەڵنیای؟"
|
548 |
|
549 |
+
#: includes/settings/tabs/wps-maintenance.php:30
|
550 |
msgid "Database Maintenance"
|
551 |
msgstr "چاککردن و پاراسنی بنکەدراوە"
|
552 |
|
553 |
+
#: includes/settings/tabs/wps-maintenance.php:35
|
554 |
+
#: includes/settings/tabs/wps-maintenance.php:59
|
555 |
msgid "Run a daily WP Cron job to prune the databases"
|
556 |
msgstr "هەڵبونی ڕۆژانەی کات بۆ هەرەسکردنی بنکەی دراوە"
|
557 |
|
558 |
+
#: includes/settings/tabs/wps-maintenance.php:41
|
559 |
msgid "A WP Cron job will be run daily to prune any data older than a set number of days."
|
560 |
msgstr "ئەرکی ئەو سڕینەوەی ڕۆژانەی زانیاریەکانە کە زۆرتر لە کاتی هەڵبەژاردە هەڵگیراوە"
|
561 |
|
562 |
+
#: includes/settings/tabs/wps-maintenance.php:47
|
563 |
msgid "Prune data older than"
|
564 |
msgstr "زانیاری کۆنەتر"
|
565 |
|
566 |
+
#: includes/settings/tabs/wps-maintenance.php:52
|
567 |
msgid "Days"
|
568 |
msgstr "ڕۆژ"
|
569 |
|
570 |
+
#: includes/settings/tabs/wps-maintenance.php:53
|
571 |
msgid "The number of days to keep statistics for. Minimum value is 30 days. Invalid values will disable the daily maintenance."
|
572 |
msgstr "ژمارەی ڕۆژەکان بۆ هێشتنەوەی ئامار. کەمترین ژمارە ٣٠ ڕۆژە.ڕۆژانە ژمارەی نادرووست ناچالاک دکرێتەوە."
|
573 |
|
574 |
+
#: includes/settings/tabs/wps-notifications.php:44
|
575 |
msgid "Common Report Options"
|
576 |
msgstr "ڕێکخستنی گوزارشی گشتی"
|
577 |
|
578 |
+
#: includes/settings/tabs/wps-notifications.php:49
|
579 |
msgid "E-mail addresses"
|
580 |
msgstr "ناونیشانەکانی ئیمەیل"
|
581 |
|
582 |
+
#: includes/settings/tabs/wps-notifications.php:54
|
583 |
msgid "A comma separated list of e-mail addresses to send reports to."
|
584 |
msgstr "بۆ وەرگرتنی ئیمەیلی گوزارش،ناونیشانی ئیمەیلەکان بە کۆما جودابکەنەوە."
|
585 |
|
586 |
+
#: includes/settings/tabs/wps-notifications.php:59
|
587 |
msgid "Update Reports"
|
588 |
msgstr "بەڕۆژکردنی گوزارشەکان"
|
589 |
|
590 |
+
#: includes/log/exclusions.php:24
|
591 |
+
#: includes/settings/tabs/wps-notifications.php:64
|
592 |
msgid "Browscap"
|
593 |
msgstr "Browscap"
|
594 |
|
595 |
+
#: includes/settings/tabs/wps-notifications.php:70
|
596 |
msgid "Send a report whenever the browscap.ini is updated."
|
597 |
msgstr "ناردنی گوزارش کاتێک browscap.ini بەڕۆژ دەبێت"
|
598 |
|
599 |
+
#: includes/log/exclusions.php:24
|
600 |
+
#: includes/settings/tabs/wps-notifications.php:76
|
601 |
+
#: includes/settings/wps-settings.php:104
|
602 |
msgid "GeoIP"
|
603 |
msgstr "GeoIP"
|
604 |
|
605 |
+
#: includes/settings/tabs/wps-notifications.php:82
|
606 |
msgid "Send a report whenever the GeoIP database is updated."
|
607 |
msgstr "ناردنی گوزارش کاتێک GeoIP بەڕۆژ دەبێت"
|
608 |
|
609 |
+
#: includes/settings/tabs/wps-notifications.php:88
|
610 |
msgid "Pruning"
|
611 |
msgstr "سڕینەوە"
|
612 |
|
613 |
+
#: includes/settings/tabs/wps-notifications.php:94
|
614 |
msgid "Send a report whenever the pruning of database is run."
|
615 |
msgstr "ناردنی گوزارش کاتێک بنکەی دراوە بەڕۆژ دەبێت"
|
616 |
|
617 |
+
#: includes/settings/tabs/wps-notifications.php:100
|
618 |
msgid "Upgrade"
|
619 |
msgstr "بەڕۆژبوون"
|
620 |
|
621 |
+
#: includes/settings/tabs/wps-notifications.php:106
|
622 |
msgid "Send a report whenever the plugin is upgraded."
|
623 |
msgstr "سڕینەوە"
|
624 |
|
625 |
+
#: includes/settings/tabs/wps-notifications.php:111
|
626 |
+
#: includes/settings/tabs/wps-notifications.php:116 schedule.php:199
|
|
|
627 |
msgid "Statistical reporting"
|
628 |
msgstr "گوزارشی ئاماری"
|
629 |
|
630 |
+
#: includes/settings/tabs/wps-notifications.php:129
|
631 |
msgid "Schedule"
|
632 |
msgstr "کات دیاریکردن"
|
633 |
|
634 |
+
#: includes/settings/tabs/wps-notifications.php:153
|
635 |
msgid "Select how often to receive statistical report."
|
636 |
msgstr "چۆنیەتی وەرگرتنی گوزارشی ئامار هەلبژێرە"
|
637 |
|
638 |
+
#: includes/settings/tabs/wps-notifications.php:159
|
639 |
msgid "Send reports via"
|
640 |
msgstr "ناردنی گوزارش لە رێگای"
|
641 |
|
642 |
+
#: includes/settings/tabs/wps-notifications.php:165
|
643 |
msgid "Email"
|
644 |
msgstr "ئیمەیل"
|
645 |
|
646 |
+
#: includes/settings/tabs/wps-notifications.php:167
|
647 |
msgid "SMS"
|
648 |
msgstr "کۆرتە پەیام"
|
649 |
|
650 |
+
#: includes/settings/tabs/wps-notifications.php:170
|
651 |
msgid "Select delivery method for statistical report."
|
652 |
msgstr "شێوازی وەرگرتنی گوزارشی ئاماری هەڵبژێرە"
|
653 |
|
654 |
+
#: includes/settings/tabs/wps-notifications.php:173
|
655 |
msgid "Note: To send SMS text messages please install the %s plugin."
|
656 |
msgstr "خاڵ: بۆناردنی کورتە پەیام تکایە زیادکراوەی %s دامەرزێنە."
|
657 |
|
658 |
+
#: includes/settings/tabs/wps-notifications.php:173
|
659 |
msgid "WordPress SMS"
|
660 |
msgstr "کورتەپەیامی وۆردپرێس"
|
661 |
|
662 |
+
#: includes/settings/tabs/wps-notifications.php:180
|
663 |
msgid "Report body"
|
664 |
msgstr "ناوەرۆکی دەقی گوزارش"
|
665 |
|
666 |
+
#: includes/settings/tabs/wps-notifications.php:185
|
667 |
msgid "Enter the contents of the report."
|
668 |
msgstr "ناوەرۆکی گوزارش بنووسە"
|
669 |
|
670 |
+
#: includes/settings/tabs/wps-notifications.php:187
|
671 |
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:"
|
672 |
msgstr "هەر کورتە کۆدێک لە لایەن وۆردپرێسی ئێوە پاڵپشتی دەبێت. کورتەکۆدەکان لە زیادکراوەی ئامار(لیستی کۆدەکان لە رینمایی بەکارهینەردا هەیە) لە جەستە پشتیبانی دەکرێت. بۆ وێنە :"
|
673 |
|
674 |
+
#: includes/settings/tabs/wps-notifications.php:188 widget.php:38
|
675 |
+
#: widget.php:245 wp-statistics.php:522
|
|
|
|
|
676 |
msgid "User Online"
|
677 |
msgstr "بەکارهینەری سەرهێڵ"
|
678 |
|
679 |
+
#: includes/settings/tabs/wps-notifications.php:189 widget.php:52
|
680 |
+
#: widget.php:251
|
|
|
681 |
msgid "Today Visitor"
|
682 |
msgstr "میوانی ئەمڕۆ"
|
683 |
|
684 |
+
#: includes/settings/tabs/wps-notifications.php:190 widget.php:45
|
685 |
+
#: widget.php:248
|
|
|
686 |
msgid "Today Visit"
|
687 |
msgstr "سەردانی ئەمڕۆ"
|
688 |
|
689 |
+
#: includes/settings/tabs/wps-notifications.php:191 widget.php:66
|
690 |
+
#: widget.php:257
|
|
|
691 |
msgid "Yesterday Visitor"
|
692 |
msgstr "میوانی دوێنێ"
|
693 |
|
694 |
+
#: includes/settings/tabs/wps-notifications.php:192 widget.php:59
|
|
|
695 |
msgid "Yesterday Visit"
|
696 |
msgstr "سەردانی دوێنێ"
|
697 |
|
698 |
+
#: includes/settings/tabs/wps-notifications.php:193 widget.php:101
|
699 |
+
#: widget.php:272
|
|
|
700 |
msgid "Total Visitor"
|
701 |
msgstr "کۆی میوانەکان"
|
702 |
|
703 |
+
#: includes/settings/tabs/wps-notifications.php:194 widget.php:94
|
704 |
+
#: widget.php:269
|
|
|
705 |
msgid "Total Visit"
|
706 |
msgstr "کۆی سەردانەکان"
|
707 |
|
708 |
+
#: includes/settings/tabs/wps-overview-display.php:23
|
709 |
+
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:166
|
710 |
msgid "None"
|
711 |
msgstr "هیچ"
|
712 |
|
713 |
+
#: includes/settings/tabs/wps-overview-display.php:24
|
714 |
msgid "Summary Statistics"
|
715 |
msgstr "کورتە ئامار"
|
716 |
|
717 |
+
#: includes/settings/tabs/wps-overview-display.php:28
|
718 |
+
#: includes/settings/wps-settings.php:108
|
719 |
msgid "About"
|
720 |
msgstr "دەربارە"
|
721 |
|
722 |
+
#: includes/settings/tabs/wps-overview-display.php:34
|
723 |
msgid "Hits Statistical Chart"
|
724 |
msgstr "هێڵکاری ئاماری سەردان"
|
725 |
|
726 |
+
#: includes/settings/tabs/wps-overview-display.php:36
|
727 |
msgid "Search Engine Referrers Statistical Chart"
|
728 |
msgstr "هێڵکاری یاماری مەکینەکانی گەڕان"
|
729 |
|
730 |
+
#: includes/settings/tabs/wps-overview-display.php:38
|
731 |
msgid "Top Pages Visited"
|
732 |
msgstr "زۆرترین پەرەکانی سەردان"
|
733 |
|
734 |
+
#: includes/settings/tabs/wps-overview-display.php:73
|
735 |
msgid "Dashboard"
|
736 |
msgstr "داشبۆرد"
|
737 |
|
738 |
+
#: includes/settings/tabs/wps-overview-display.php:77
|
739 |
+
#: includes/settings/tabs/wps-overview-display.php:97
|
740 |
+
#: includes/settings/tabs/wps-overview-display.php:117
|
741 |
msgid "The following items are global to all users."
|
742 |
msgstr "بەڕگەکانی خوارەوە جیهانین بۆ تەواو بەکارهینەران"
|
743 |
|
744 |
+
#: includes/settings/tabs/wps-overview-display.php:82
|
745 |
msgid "Disable dashboard widgets"
|
746 |
msgstr "ناچاڵاککردنی ئامرازی داشبۆرد"
|
747 |
|
748 |
+
#: includes/settings/tabs/wps-overview-display.php:88
|
749 |
msgid "Disable the dashboard widgets."
|
750 |
msgstr "ناچاڵاککردنی ئامرازی داشبۆرد"
|
751 |
|
752 |
+
#: includes/settings/tabs/wps-overview-display.php:93
|
753 |
msgid "Page/Post Editor"
|
754 |
msgstr "دەستکاری پەڕەو/نوسراوە"
|
755 |
|
756 |
+
#: includes/settings/tabs/wps-overview-display.php:102
|
757 |
msgid "Disable post/page editor widget"
|
758 |
msgstr "ناچالاککردنی ئامرازی(ویدجێت) سەردانی پەرەو/نوسراوە"
|
759 |
|
760 |
+
#: includes/settings/tabs/wps-overview-display.php:108
|
761 |
msgid "Disable the page/post editor widget."
|
762 |
msgstr "ناچالاککردنی ئامرازی(ویدجێت) سەردانی پەرەو/نوسراوە"
|
763 |
|
764 |
+
#: includes/settings/tabs/wps-overview-display.php:122
|
765 |
msgid "Map type"
|
766 |
msgstr "جۆری نەخشە"
|
767 |
|
768 |
+
#: includes/functions/functions.php:402
|
769 |
+
#: includes/settings/tabs/wps-overview-display.php:128
|
770 |
msgid "Google"
|
771 |
msgstr "گووگڵ"
|
772 |
|
773 |
+
#: includes/settings/tabs/wps-overview-display.php:128
|
774 |
msgid "JQVMap"
|
775 |
msgstr "نەخشەیJQV"
|
776 |
|
777 |
+
#: includes/settings/tabs/wps-overview-display.php:135
|
778 |
msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
|
779 |
msgstr "هەلبژاردەی \"گوگڵ\" بۆخزمەتگوزاری نەخشەی گوگڵ بۆ دوایین سەردانەکان بەهرە وەردەگرێت. (پێویستی بە دەستپێگەیشتنی گووگڵە)."
|
780 |
|
781 |
+
#: includes/settings/tabs/wps-overview-display.php:136
|
782 |
msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
|
783 |
msgstr "هەڵبژاردەی \"JQVMap\" لە کتێبخانەی جاڤاسکریپت JQVMap بۆ دوایین سەردانەەکان کەڵک وەردەگرێت. (پێویستی بە خزمەتگوزاری دەرەوەی نابێت )."
|
784 |
|
785 |
+
#: includes/settings/tabs/wps-overview-display.php:142
|
786 |
msgid "Disable map"
|
787 |
msgstr "ناچالاککردنی نخشە"
|
788 |
|
789 |
+
#: includes/settings/tabs/wps-overview-display.php:148
|
790 |
msgid "Disable the map display"
|
791 |
msgstr "ناچالاککردنی نیشاندانی نەخشە"
|
792 |
|
793 |
+
#: includes/settings/tabs/wps-overview-display.php:154
|
794 |
msgid "Get country location from Google"
|
795 |
msgstr "وەرگرتنی شوێنی وەڵات لە گووگڵ"
|
796 |
|
797 |
+
#: includes/settings/tabs/wps-overview-display.php:160
|
798 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
799 |
msgstr "ئەم تایبەتمەندیە لەوانەیە نیشاندانی ئاماری بە هێواشی ئەنجام بدات .تەنها بۆ جۆری نەخشەی گووگڵ ڕێکخراوە."
|
800 |
|
801 |
+
#: includes/settings/tabs/wps-overview-display.php:171
|
802 |
msgid "Overview Widgets to Display"
|
803 |
msgstr "پێنوینی بۆ نیشاندانی ویدجێتەکان"
|
804 |
|
805 |
+
#: includes/settings/tabs/wps-overview-display.php:175
|
806 |
msgid "The following items are unique to each user. If you do not select the 'About' widget it will automatically be displayed in the last positon of column A."
|
807 |
msgstr "Aبڕگەکانی ژێرەوە تایبەت بە بەکارهێنەرانن.گەر ئێوە ئامرازی\"دەربارەی زیادکراوە\"هەڵنەبژیرن ،بەشێوازی خۆکارانە لە ستوونی نیشاندەدرێت"
|
808 |
|
809 |
+
#: includes/settings/tabs/wps-overview-display.php:180
|
810 |
msgid "Slot"
|
811 |
msgstr "ئاسۆیی "
|
812 |
|
813 |
+
#: includes/settings/tabs/wps-overview-display.php:184
|
814 |
msgid "Column A"
|
815 |
msgstr "Aئاسۆیی "
|
816 |
|
817 |
+
#: includes/settings/tabs/wps-overview-display.php:188
|
818 |
msgid "Column B"
|
819 |
msgstr "ئاسۆیی B"
|
820 |
|
821 |
+
#: includes/settings/tabs/wps-overview-display.php:194
|
822 |
msgid "Slot 1"
|
823 |
msgstr "ئاسۆیی ١"
|
824 |
|
825 |
+
#: includes/settings/tabs/wps-overview-display.php:224
|
826 |
msgid "Slot 2"
|
827 |
msgstr "ئاسۆیی ٢"
|
828 |
|
829 |
+
#: includes/settings/tabs/wps-overview-display.php:254
|
830 |
msgid "Slot 3"
|
831 |
msgstr "ئاسۆیی ٣"
|
832 |
|
833 |
+
#: includes/settings/tabs/wps-overview-display.php:284
|
834 |
msgid "Slot 4"
|
835 |
msgstr "ئاسۆیی ٤"
|
836 |
|
837 |
+
#: includes/settings/tabs/wps-overview-display.php:314
|
838 |
msgid "Slot 5"
|
839 |
msgstr "ئاسۆیی ٥"
|
840 |
|
841 |
+
#: includes/settings/tabs/wps-overview-display.php:344
|
842 |
msgid "Slot 6"
|
843 |
msgstr "ئاسۆیی ٦"
|
844 |
|
845 |
+
#: includes/settings/tabs/wps-overview-display.php:348
|
846 |
+
#: includes/settings/tabs/wps-overview-display.php:370
|
847 |
msgid "N/A"
|
848 |
msgstr "بەتاڵ"
|
849 |
|
850 |
+
#: includes/settings/tabs/wps-overview-display.php:366
|
851 |
msgid "Slot 7"
|
852 |
msgstr "ئاسۆیی ٧"
|
853 |
|
854 |
+
#: includes/settings/tabs/wps-removal.php:15
|
855 |
msgid "WP Statisitcs Removal"
|
856 |
msgstr "سڕینەوەی زیادکراوەی ئامار"
|
857 |
|
858 |
+
#: includes/settings/tabs/wps-removal.php:20
|
859 |
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."
|
860 |
msgstr "سڕینەوەی زیادکراوەی ئاماری وۆردپرێس،سڕینەوەی ڕیکخستنەکانی زیادکراوەی نییە.ئەم هەڵبژاردە دەتوانن تەواوی زانیاری(خشت و داتا)ی زیادکراوە بسڕنەوە."
|
861 |
|
862 |
+
#: includes/settings/tabs/wps-removal.php:23
|
863 |
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."
|
864 |
msgstr "پاکسازی لە کاتی بارکردنی پەڕە پاس بارێک لە تۆمارکردنی ڕێکخستنەکان ئەنجام دەبێت.بەڵام زیادکراوەی ئاماری وۆردپرێس لە پێرستی بەڕێوەبەر تاکاتێک بەشەکانی دیکەی پەڕە هەڵگرسابێت نیشان دەدرێت."
|
865 |
|
866 |
+
#: includes/settings/tabs/wps-removal.php:29
|
867 |
msgid "Remove data and settings"
|
868 |
msgstr "سڕینەوە داتاو ڕێکخستنەکان"
|
869 |
|
870 |
+
#: includes/settings/tabs/wps-removal.php:34
|
871 |
msgid "Remove"
|
872 |
msgstr "سڕینەوە"
|
873 |
|
874 |
+
#: includes/settings/tabs/wps-removal.php:35
|
875 |
msgid "Remove data and settings, this action cannot be undone."
|
876 |
msgstr "سڕینەوە داتاو ڕێکخستنەکان .ئەم کردارە ناگەرێتەوە."
|
877 |
|
878 |
+
#: includes/settings/wps-settings.php:100
|
879 |
msgid "General"
|
880 |
msgstr "گشتی"
|
881 |
|
882 |
+
#: includes/settings/wps-settings.php:101
|
883 |
msgid "Notifications"
|
884 |
msgstr "ئاگادارییەکان"
|
885 |
|
886 |
+
#: includes/settings/wps-settings.php:102
|
887 |
msgid "Dashboard/Overview"
|
888 |
msgstr "داشبۆرد/لەچاوپێکەوتنێک"
|
889 |
|
890 |
+
#: includes/settings/wps-settings.php:103
|
891 |
msgid "Access/Exclusions"
|
892 |
msgstr "دەستپێگەیشتن/دوورخستنەوە "
|
893 |
|
894 |
+
#: includes/settings/wps-settings.php:105
|
895 |
msgid "browscap"
|
896 |
msgstr "browscap"
|
897 |
|
898 |
+
#: includes/settings/wps-settings.php:106
|
899 |
msgid "Maintenance"
|
900 |
msgstr "پاراستن/چاککردن"
|
901 |
|
902 |
+
#: includes/settings/wps-settings.php:107
|
903 |
msgid "Removal"
|
904 |
msgstr "سڕینەوە"
|
905 |
|
906 |
+
#: includes/settings/tabs/wps-access-level.php:278
|
907 |
+
#: includes/settings/tabs/wps-browscap.php:81
|
908 |
+
#: includes/settings/tabs/wps-general.php:349
|
909 |
+
#: includes/settings/tabs/wps-geoip.php:158
|
910 |
+
#: includes/settings/tabs/wps-maintenance.php:84
|
911 |
+
#: includes/settings/tabs/wps-notifications.php:201
|
912 |
+
#: includes/settings/tabs/wps-overview-display.php:388
|
913 |
+
#: includes/settings/tabs/wps-removal.php:42
|
914 |
msgid "Update"
|
915 |
msgstr "بەڕۆژکردن"
|
916 |
|
917 |
+
#: schedule.php:10
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
918 |
msgid "Once Weekly"
|
919 |
msgstr "جارێک لە هەفتە"
|
920 |
|
921 |
+
#: schedule.php:17
|
922 |
msgid "Once Every 2 Weeks"
|
923 |
msgstr "هەر ٢ هەفتە"
|
924 |
|
925 |
+
#: schedule.php:24
|
926 |
msgid "Once Every 4 Weeks"
|
927 |
msgstr "هەر ٤ هەفتە"
|
928 |
|
929 |
+
#: widget.php:14 wp-statistics.php:335 wp-statistics.php:373
|
|
|
|
|
930 |
msgid "Statistics"
|
931 |
msgstr "ئامار"
|
932 |
|
933 |
+
#: widget.php:15
|
934 |
msgid "Show site stats in sidebar."
|
935 |
msgstr "نیشاندانی ئاماری ماڵپەر لە (ئامرازی) لاتەنیشت"
|
936 |
|
937 |
+
#: widget.php:73 widget.php:260
|
|
|
938 |
msgid "Week Visit"
|
939 |
msgstr "سەردانی هەفتە"
|
940 |
|
941 |
+
#: widget.php:80 widget.php:263
|
|
|
942 |
msgid "Month Visit"
|
943 |
msgstr "سەردانی مانگ"
|
944 |
|
945 |
+
#: widget.php:87 widget.php:266
|
|
|
946 |
msgid "Years Visit"
|
947 |
msgstr "سەردانی ساڵ"
|
948 |
|
949 |
+
#: widget.php:108 widget.php:275
|
|
|
950 |
msgid "Total Page Views"
|
951 |
msgstr "کۆی گشتی سەردانی پەڕگە"
|
952 |
|
953 |
+
#: widget.php:116
|
954 |
msgid "Search Engine referred"
|
955 |
msgstr "هاتن لە مەکینەی گەڕان"
|
956 |
|
957 |
+
#: widget.php:123 widget.php:298
|
|
|
958 |
msgid "Total Posts"
|
959 |
msgstr "کۆی نووسراوەکان"
|
960 |
|
961 |
+
#: widget.php:130 widget.php:301
|
|
|
962 |
msgid "Total Pages"
|
963 |
msgstr "کۆی پەڕەکان"
|
964 |
|
965 |
+
#: widget.php:137 widget.php:304
|
|
|
966 |
msgid "Total Comments"
|
967 |
msgstr "کۆی بۆچونەکان(لێدوانەکان)"
|
968 |
|
969 |
+
#: widget.php:144 widget.php:307
|
|
|
970 |
msgid "Total Spams"
|
971 |
msgstr "کۆی بێزارکەرەکان"
|
972 |
|
973 |
+
#: widget.php:151 widget.php:310
|
|
|
974 |
msgid "Total Users"
|
975 |
msgstr "کۆی بەکارهێنەران"
|
976 |
|
977 |
+
#: widget.php:158 widget.php:313
|
|
|
978 |
msgid "Average Posts"
|
979 |
msgstr "مامناوەندی نووسراوەکان"
|
980 |
|
981 |
+
#: widget.php:165 widget.php:316
|
|
|
982 |
msgid "Average Comments"
|
983 |
msgstr "مامناوەندی بۆچوونەکان"
|
984 |
|
985 |
+
#: widget.php:172 widget.php:319
|
|
|
986 |
msgid "Average Users"
|
987 |
msgstr "مامناوەندی بەکارهێنەران"
|
988 |
|
989 |
+
#: shortcode.php:142 widget.php:179 widget.php:322
|
|
|
990 |
msgid "Last Post Date"
|
991 |
msgstr "ڕێکەوتی بەڕۆژبوونی ماڵپەڕ"
|
992 |
|
993 |
+
#: widget.php:238
|
994 |
msgid "Name"
|
995 |
msgstr "ناو"
|
996 |
|
997 |
+
#: widget.php:242
|
998 |
msgid "Items"
|
999 |
msgstr "بڕگە"
|
1000 |
|
1001 |
+
#: widget.php:254 wp-statistics.php:547
|
|
|
1002 |
msgid "Yesterday visit"
|
1003 |
msgstr "سەردانی دوێنێ"
|
1004 |
|
1005 |
+
#: widget.php:278
|
1006 |
msgid "Search Engine Referred"
|
1007 |
msgstr "هاتن لە مەکینەی گەڕان"
|
1008 |
|
1009 |
+
#: widget.php:281
|
1010 |
msgid "Select type of search engine"
|
1011 |
msgstr "هەڵبژاردنی جۆری مەکینەی گەڕان"
|
1012 |
|
1013 |
+
#: wp-statistics.php:63
|
1014 |
msgid "ERROR: WP Statistics has detected an unsupported version of PHP, WP Statistics will not function without PHP Version "
|
1015 |
msgstr "هەڵە: زیادکراوەی ئاماری وۆردپرێس وەشانی پشتیوانی PHP نەکراوە ناناسێت.زیادکراوە بێ فەرمانی PHPئیش ناکات"
|
1016 |
|
1017 |
+
#: wp-statistics.php:63
|
1018 |
msgid " or higher!"
|
1019 |
msgstr "و یان زۆرتر"
|
1020 |
|
1021 |
+
#: wp-statistics.php:63
|
1022 |
msgid "Your current PHP version is"
|
1023 |
msgstr "وەشانی ئێستای PHP ئێوە"
|
1024 |
|
1025 |
+
#: wp-statistics.php:79
|
1026 |
msgid "WP Statistics has been removed, please disable and delete it."
|
1027 |
msgstr "زیادکراوە ئاماری وۆردپرێس سڕاوەتەوە .تکایە ناچالاک یان بیشرەوە."
|
1028 |
|
1029 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.2) #-#-#-#-#
|
1030 |
+
#. Plugin Name of the plugin/theme
|
1031 |
+
#: wp-statistics.php:37
|
1032 |
msgid "WP Statistics"
|
1033 |
msgstr "ئاماری وۆردپرێس"
|
1034 |
|
1035 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.2) #-#-#-#-#
|
1036 |
+
#. Description of the plugin/theme
|
1037 |
+
#: wp-statistics.php:38
|
1038 |
msgid "Complete statistics for your WordPress site."
|
1039 |
msgstr "ئامری گشتی بۆ ماڵپەڕی وۆردپرێسەکەت"
|
1040 |
|
1041 |
+
#: wp-statistics.php:130
|
1042 |
msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
|
1043 |
msgstr "بەکارهێنەرانی سەرهێڵ لە زیادکراوەی وۆردپرێس ناچالاکن تکایە بڕۆن بۆ %s چالاکی بکەن."
|
1044 |
|
1045 |
+
#: wp-statistics.php:130 wp-statistics.php:133 wp-statistics.php:136
|
|
|
|
|
1046 |
msgid "setting page"
|
1047 |
msgstr "ڕیکخستنەکانی پەرە"
|
1048 |
|
1049 |
+
#: wp-statistics.php:133
|
1050 |
msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
|
1051 |
msgstr "شوێن کەوتنی سەردان لە زیادکراوەی ئامری وۆردپرێس ناچالاکە.تکایە بڕۆن %s زیادکراوە چالاک بکەن،"
|
1052 |
|
1053 |
+
#: wp-statistics.php:136
|
1054 |
msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
|
1055 |
msgstr "شوێن کەوتنی میوان لە زیادکراوەی ئامری وۆردپرێس ناچالاکە.تکایە بڕۆن %s زیادکراوە چالاک بکەن،"
|
1056 |
|
1057 |
+
#: wp-statistics.php:139
|
1058 |
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
1059 |
msgstr "کۆی GeoIPچالاک نییە تکایە بڕۆن بۆ %s ئەم تایبەتمەندییە چالاک بکەن"
|
1060 |
|
1061 |
+
#: wp-statistics.php:139
|
1062 |
msgid "Setting page > GeoIP"
|
1063 |
msgstr "پەرەی ڕیکخستنەکان > GeoIP"
|
1064 |
|
1065 |
+
#: wp-statistics.php:242 wp-statistics.php:354 wp-statistics.php:427
|
|
|
|
|
1066 |
msgid "Settings"
|
1067 |
msgstr "ڕیکخستن"
|
1068 |
|
1069 |
+
#: wp-statistics.php:254
|
1070 |
msgid "Click here to visit the plugin on WordPress.org"
|
1071 |
msgstr "بۆ دیتنی زیادکراوەی لە WordPress.org کرتەیێک بکە"
|
1072 |
|
1073 |
+
#: wp-statistics.php:254
|
1074 |
msgid "Visit WordPress.org page"
|
1075 |
msgstr "دیتنی پەرەی WordPress.org"
|
1076 |
|
1077 |
+
#: wp-statistics.php:257
|
1078 |
msgid "Click here to rate and review this plugin on WordPress.org"
|
1079 |
msgstr "بۆ ]لەدانان بە ئەم زیادکراوە لە سەر ماڵپەڕی Wordpress.org کرتە بکە "
|
1080 |
|
1081 |
+
#: wp-statistics.php:257
|
1082 |
msgid "Rate this plugin"
|
1083 |
msgstr "پلەدانان بۆ ئەم زیادکراوە"
|
1084 |
|
1085 |
+
#: wp-statistics.php:301
|
1086 |
msgid "WP Statistics - Hits"
|
1087 |
msgstr "ئاماری وۆردپرێس-سەردان"
|
1088 |
|
1089 |
+
#: wp-statistics.php:338 wp-statistics.php:376 wp-statistics.php:414
|
|
|
|
|
1090 |
msgid "Overview"
|
1091 |
msgstr "پیشاندانی گشتی"
|
1092 |
|
1093 |
+
#: wp-statistics.php:343 wp-statistics.php:419
|
|
|
1094 |
msgid "Online"
|
1095 |
msgstr "سەرهێڵ"
|
1096 |
|
1097 |
+
#: wp-statistics.php:345 wp-statistics.php:421
|
|
|
1098 |
msgid "Referrers"
|
1099 |
msgstr "هاتنەژوورەوەکان"
|
1100 |
|
1101 |
+
#: shortcode.php:133 wp-statistics.php:346 wp-statistics.php:422
|
|
|
1102 |
msgid "Searches"
|
1103 |
msgstr "گەرانەکان"
|
1104 |
|
1105 |
+
#: wp-statistics.php:347 wp-statistics.php:423
|
|
|
1106 |
msgid "Search Words"
|
1107 |
msgstr "گەرانی وەشەکان"
|
1108 |
|
1109 |
+
#: wp-statistics.php:348 wp-statistics.php:424
|
|
|
1110 |
msgid "Top Visitors Today"
|
1111 |
msgstr "بەرزترین میوانەکانی ئەمڕۆ"
|
1112 |
|
1113 |
+
#: wp-statistics.php:353 wp-statistics.php:426
|
|
|
1114 |
msgid "Optimization"
|
1115 |
msgstr "باشینەسازی)هەژیکردن)"
|
1116 |
|
1117 |
+
#: wp-statistics.php:359 wp-statistics.php:390
|
|
|
1118 |
msgid "Manual"
|
1119 |
msgstr "ڕێنمایی"
|
1120 |
|
1121 |
+
#: wp-statistics.php:405
|
1122 |
msgid "Site"
|
1123 |
msgstr "مالپەڕ"
|
1124 |
|
1125 |
+
#: wp-statistics.php:406
|
1126 |
msgid "Options"
|
1127 |
msgstr "ڕێکخستنهکان "
|
1128 |
|
1129 |
+
#: wp-statistics.php:529
|
1130 |
msgid "Today visitor"
|
1131 |
msgstr "کۆی میوان"
|
1132 |
|
1133 |
+
#: wp-statistics.php:535
|
1134 |
msgid "Today visit"
|
1135 |
msgstr "میوانی ئەمڕؤ"
|
1136 |
|
1137 |
+
#: wp-statistics.php:541
|
1138 |
msgid "Yesterday visitor"
|
1139 |
msgstr "میوانی دوێنێ"
|
1140 |
|
1141 |
+
#: wp-statistics.php:553
|
1142 |
msgid "View Stats"
|
1143 |
msgstr "نیشاندانی ئامار"
|
1144 |
|
1145 |
+
#: wp-statistics.php:577
|
1146 |
msgid "Download ODF file"
|
1147 |
msgstr "داگرتنی پەڕگەی ODF"
|
1148 |
|
1149 |
+
#: wp-statistics.php:578
|
1150 |
msgid "Download HTML file"
|
1151 |
msgstr "داگرتنی پەڕگەی HTML"
|
1152 |
|
1153 |
+
#: wp-statistics.php:582
|
1154 |
msgid "Manual file not found."
|
1155 |
msgstr "ڕێنمایی پەیدا نەبوو"
|
1156 |
|
1157 |
+
#: wp-statistics.php:649 wp-statistics.php:760 wp-statistics.php:794
|
|
|
|
|
1158 |
msgid "You do not have sufficient permissions to access this page."
|
1159 |
msgstr "تۆ مۆڵەتت بۆ دەستپێگەیشتنی ئەم پەڕەیە نییە."
|
1160 |
|
1161 |
+
#: wp-statistics.php:662
|
1162 |
msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
|
1163 |
msgstr "خشتی زیادکراوە لە بنکەدراوە نییە! تکایە%s بۆدامەزراندن ئەنجام بدە %s."
|
1164 |
|
1165 |
+
#: wp-statistics.php:230
|
1166 |
msgid "WP Statistics %s installed on"
|
1167 |
msgstr "زیادکراوەی ئاماری وۆردپرێس %s دامەزراوە"
|
1168 |
|
1169 |
+
#: wps-updates.php:34
|
1170 |
msgid "Error downloading GeoIP database from: %s - %s"
|
1171 |
msgstr "هەڵەی داگرتنی بنکەدراوەی GeoIP لە %s: - %s"
|
1172 |
|
1173 |
+
#: wps-updates.php:45
|
1174 |
msgid "Error could not open downloaded GeoIP database for reading: %s"
|
1175 |
msgstr "هەڵەی کردنەوە لە کاتی داگرتنی GeoIPبۆ خوێندن %s"
|
1176 |
|
1177 |
+
#: wps-updates.php:52
|
1178 |
msgid "Error could not open destination GeoIP database for writing %s"
|
1179 |
msgstr "هەڵەی کردنەوە لە کاتی داگرتنی GeoIP بۆ نووسینی: %s"
|
1180 |
|
1181 |
+
#: wps-updates.php:68
|
1182 |
msgid "GeoIP Database updated successfully!"
|
1183 |
msgstr "بنکەیدراوەی GeoIP بە سەرکەوتوویی بە ڕۆژ بوو"
|
1184 |
|
1185 |
+
#: wps-updates.php:93
|
1186 |
msgid "GeoIP update on"
|
1187 |
msgstr "GeoIP بەڕۆژ بوو لە"
|
1188 |
|
1189 |
+
#: wps-updates.php:160
|
1190 |
msgid "Error downloading browscap database from: %s - %s"
|
1191 |
msgstr "داگرتنی بنکەی دراوە لە browscapهەڵە لە: %s - %s"
|
1192 |
|
1193 |
+
#: wps-updates.php:262
|
1194 |
msgid "browscap database updated successfully!"
|
1195 |
msgstr "browscap بنکەی بە سەرکەوتوویی بەڕۆژ بوو."
|
1196 |
|
1197 |
+
#: wps-updates.php:273
|
1198 |
msgid "browscap database updated failed! Cache file too large, reverting to previous browscap.ini."
|
1199 |
msgstr "بنکەدراوەی browscap بۆ بەڕۆژ بوون سەرکەوتوو نەبووە! پەڕگەی باشکەوتکردن قەبارەی گەورەیە! بڕۆ بۆ browscap.ini پێشتر."
|
1200 |
|
1201 |
+
#: wps-updates.php:281
|
1202 |
msgid "browscap database updated failed! New browscap.ini is mis-identifing user agents as crawlers, reverting to previous browscap.ini."
|
1203 |
msgstr "بنکەدراوەی browscap بۆ بەڕۆژ بوون سەرکەوتوو نەبووە! browscap.iniنوێ هەڵەیە identifing بریکاری بەکارهێنەر بەمانای وێبخشۆک بڕۆ بۆ browscap.ini پێشتر."
|
1204 |
|
1205 |
+
#: wps-updates.php:303
|
1206 |
msgid "browscap already at current version!"
|
1207 |
msgstr "browscap لە ئێستا ئامادەیە بۆ ئەم وەشانە!"
|
1208 |
|
1209 |
+
#: wps-updates.php:316
|
1210 |
msgid "Browscap.ini update on"
|
1211 |
msgstr "Browscap.ini بەڕۆژکرا"
|
1212 |
|
1213 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.2) #-#-#-#-#
|
1214 |
+
#. Plugin URI of the plugin/theme
|
1215 |
+
#. #-#-#-#-# plugin.pot (WP Statistics 9.2) #-#-#-#-#
|
1216 |
+
#. Author URI of the plugin/theme
|
1217 |
+
msgid "http://wp-statistics.com/"
|
1218 |
+
msgstr "http://wp-statistics.com/"
|
1219 |
+
|
1220 |
+
#. Author of the plugin/theme
|
1221 |
+
msgid "Mostafa Soufi & Greg Ross"
|
1222 |
+
msgstr "Mostafa Soufi & Greg Ross"
|
1223 |
+
|
1224 |
+
#: dashboard.php:55
|
1225 |
msgid "Quick Stats"
|
1226 |
msgstr "ئاماری خێرا"
|
1227 |
|
1228 |
+
#: dashboard.php:56 includes/log/widgets/browsers.php:58
|
|
|
1229 |
msgid "Top 10 Browsers"
|
1230 |
msgstr "١٠ وێبگەڕی لووتکە"
|
1231 |
|
1232 |
+
#: dashboard.php:57 includes/log/widgets/countries.php:11
|
1233 |
+
#: includes/settings/tabs/wps-overview-display.php:27
|
|
|
1234 |
msgid "Top 10 Countries"
|
1235 |
msgstr "١٠ وەڵاتی لووتکە"
|
1236 |
|
1237 |
+
#: dashboard.php:58
|
1238 |
msgid "Today's Visitor Map"
|
1239 |
msgstr "میوانەکانی ئەمڕۆ"
|
1240 |
|
1241 |
+
#: dashboard.php:59 editor.php:46 includes/log/hit-statistics.php:8
|
1242 |
+
#: includes/log/widgets/hits.php:10
|
|
|
|
|
1243 |
msgid "Hit Statistics"
|
1244 |
msgstr "ئامری سەردان"
|
1245 |
|
1246 |
+
#: dashboard.php:60 includes/log/widgets/pages.php:14
|
|
|
1247 |
msgid "Top 10 Pages"
|
1248 |
msgstr "بەرزترین ١٠ پەرە"
|
1249 |
|
1250 |
+
#: dashboard.php:61 includes/log/last-visitor.php:36
|
1251 |
+
#: includes/log/widgets/recent.php:10
|
1252 |
+
#: includes/settings/tabs/wps-overview-display.php:39
|
|
|
1253 |
msgid "Recent Visitors"
|
1254 |
msgstr "دوایین میوانەکان"
|
1255 |
|
1256 |
+
#: dashboard.php:62 includes/log/top-referring.php:27
|
1257 |
+
#: includes/log/top-referring.php:42 includes/log/widgets/referring.php:16
|
1258 |
+
#: includes/settings/tabs/wps-overview-display.php:26
|
|
|
|
|
1259 |
msgid "Top Referring Sites"
|
1260 |
msgstr "زۆرترین ماڵپەڕی هاتن"
|
1261 |
|
1262 |
+
#: dashboard.php:63 includes/log/widgets/search.php:10
|
1263 |
+
#: includes/log/widgets/summary.php:89
|
|
|
1264 |
msgid "Search Engine Referrals"
|
1265 |
msgstr "مەکینەی گەڕان هاتنەژوور"
|
1266 |
|
1267 |
+
#: dashboard.php:64 includes/log/widgets/summary.php:8
|
|
|
1268 |
msgid "Summary"
|
1269 |
msgstr "کورتە"
|
1270 |
|
1271 |
+
#: dashboard.php:65 includes/log/last-search.php:31
|
1272 |
+
#: includes/log/widgets/words.php:11
|
1273 |
+
#: includes/settings/tabs/wps-overview-display.php:37
|
|
|
1274 |
msgid "Latest Search Words"
|
1275 |
msgstr "دوایین وەشەی گەڕان"
|
1276 |
|
1277 |
+
#: dashboard.php:66 includes/log/widgets/top.visitors.php:10
|
1278 |
+
#: includes/settings/tabs/wps-overview-display.php:35
|
|
|
1279 |
msgid "Top 10 Visitors Today"
|
1280 |
msgstr "١٠ میوانی لوتکەی ئەمڕۆ"
|
1281 |
|
1282 |
+
#: dashboard.php:97
|
1283 |
msgid "Please reload the dashboard to display the content of this widget."
|
1284 |
msgstr "بۆ دیتنی ناوەڕۆکی ئامرازی ئامار پەرە بارێک نوێ بکەوە."
|
1285 |
|
1286 |
+
#: dashboard.php:138
|
1287 |
msgid "WP Statistics Overview"
|
1288 |
msgstr "پیشاندانی گشتی ئامری وۆردپرێس"
|
1289 |
|
1290 |
+
#: editor.php:63
|
1291 |
msgid "This post is not yet published."
|
1292 |
msgstr "ئەم نووسراوە هێشتا بڵاو نەکراوەتەوە"
|
1293 |
|
1294 |
+
#: includes/functions/geoip-populate.php:24
|
1295 |
msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
|
1296 |
msgstr "توانایی گەڕانەوەی بنکەدراوەی GeoIP نییە، دەڵنیا بە لە پەرگەی ڕێکخستنەکان وەردەگیرێت."
|
1297 |
|
1298 |
+
#: includes/functions/geoip-populate.php:48
|
1299 |
msgid "Updated %s GeoIP records in the visitors database."
|
1300 |
msgstr "%s ڕیکۆردی GeoIP لە بنکەی دراوە بەڕۆژ بوو."
|
1301 |
|
1302 |
+
#: includes/functions/purge.php:21 includes/functions/purge.php:39
|
1303 |
+
#: includes/functions/purge.php:50 includes/functions/purge.php:83
|
|
|
|
|
1304 |
msgid "%s data older than %s days purged successfully."
|
1305 |
msgstr "%s داتای کۆنەتر لە ڕۆژی %s بە سەرکەوتوویی پاکسازی بوو."
|
1306 |
|
1307 |
+
#: includes/functions/purge.php:23 includes/functions/purge.php:41
|
1308 |
+
#: includes/functions/purge.php:52 includes/functions/purge.php:85
|
|
|
|
|
1309 |
msgid "No records found to purge from %s!"
|
1310 |
msgstr " هیچ ریکۆردێک پەیدانەبوو بۆ %s! پاکسازی"
|
1311 |
|
1312 |
+
#: includes/functions/purge-hits.php:45 includes/functions/purge.php:98
|
1313 |
msgid "Database pruned on"
|
1314 |
msgstr "بنکەی دراوە پاکسازی لە"
|
1315 |
|
1316 |
+
#: includes/functions/purge.php:103
|
1317 |
msgid "Please select a value over 30 days."
|
1318 |
msgstr "تکایە زۆرتر لە ٣٠ ڕۆژ هەڵبژێرن"
|
1319 |
|
1320 |
+
#: includes/log/all-browsers.php:8
|
1321 |
msgid "Browser Statistics"
|
1322 |
msgstr "ئاماری وێبگەرەکان"
|
1323 |
|
1324 |
+
#: includes/log/all-browsers.php:14 includes/log/all-browsers.php:98
|
1325 |
+
#: includes/log/all-browsers.php:233 includes/log/exclusions.php:72
|
1326 |
+
#: includes/log/exclusions.php:190 includes/log/hit-statistics.php:26
|
1327 |
+
#: includes/log/hit-statistics.php:162 includes/log/last-search.php:64
|
1328 |
+
#: includes/log/last-visitor.php:67 includes/log/online.php:17
|
1329 |
+
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
|
1330 |
+
#: includes/log/top-pages.php:28 includes/log/top-pages.php:148
|
1331 |
+
#: includes/log/top-referring.php:38 includes/log/widgets/about.php:7
|
1332 |
+
#: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
|
1333 |
+
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
|
1334 |
+
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
|
1335 |
+
#: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:14
|
1336 |
+
#: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
|
1337 |
+
#: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1338 |
msgid "Click to toggle"
|
1339 |
msgstr "بۆ بەستن و داخستن کرتە بکە"
|
1340 |
|
1341 |
+
#: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
|
1342 |
+
#: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:339
|
1343 |
+
#: wp-statistics.php:415
|
|
|
|
|
1344 |
msgid "Browsers"
|
1345 |
msgstr "وێبگەڕەکان"
|
1346 |
|
1347 |
+
#: includes/log/all-browsers.php:42
|
1348 |
msgid "Browsers by type"
|
1349 |
msgstr "وێبگڕەکان لە سەر بنەمای جۆری"
|
1350 |
|
1351 |
+
#: includes/log/all-browsers.php:99 includes/log/widgets/top.visitors.php:37
|
1352 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:302
|
|
|
1353 |
msgid "Platform"
|
1354 |
msgstr "سەکۆ"
|
1355 |
|
1356 |
+
#: includes/log/all-browsers.php:126
|
1357 |
msgid "Browsers by platform"
|
1358 |
msgstr "وێبگەڕەکان لە سەر بنەمای سەکۆ"
|
1359 |
|
1360 |
+
#: includes/log/all-browsers.php:234
|
1361 |
msgid "%s Version"
|
1362 |
msgstr "%s وەشان"
|
1363 |
|
1364 |
+
#: includes/log/exclusions.php:8
|
1365 |
msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
|
1366 |
msgstr "خاڵ: تائێستا جیاکاری بۆ ریکۆردەکان جیاکاری نەکراوە. ئاکامەکانی خوارەوە لەوانەیە ئاماری کۆتایی ڕەنگدانەوەی نەکات."
|
1367 |
|
1368 |
+
#: includes/log/exclusions.php:64
|
1369 |
msgid "Exclusions Statistics"
|
1370 |
msgstr "ئاماری جیاکاریەکان"
|
1371 |
|
1372 |
+
#: includes/functions/functions.php:879
|
1373 |
msgid "10 Days"
|
1374 |
msgstr "١٠ ڕۆژی ڕابردوو"
|
1375 |
|
1376 |
+
#: includes/functions/functions.php:879
|
1377 |
msgid "20 Days"
|
1378 |
msgstr "٢٠ ڕۆژی ڕابردوو"
|
1379 |
|
1380 |
+
#: includes/functions/functions.php:879
|
1381 |
msgid "30 Days"
|
1382 |
msgstr "٣٠ ڕۆژی ڕابردوو"
|
1383 |
|
1384 |
+
#: includes/functions/functions.php:879
|
1385 |
msgid "2 Months"
|
1386 |
msgstr "٢ مانگی ڕابردوو"
|
1387 |
|
1388 |
+
#: includes/functions/functions.php:879
|
1389 |
msgid "3 Months"
|
1390 |
msgstr "٣ مانگی ڕابردوو"
|
1391 |
|
1392 |
+
#: includes/functions/functions.php:879
|
1393 |
msgid "6 Months"
|
1394 |
msgstr "٦مانگی ڕابردوو"
|
1395 |
|
1396 |
+
#: includes/functions/functions.php:879
|
1397 |
msgid "9 Months"
|
1398 |
msgstr "٩ مانگی ڕابردوو"
|
1399 |
|
1400 |
+
#: includes/functions/functions.php:879
|
1401 |
msgid "1 Year"
|
1402 |
msgstr "١ ساڵی ڕابردوو"
|
1403 |
|
1404 |
+
#: includes/log/exclusions.php:73
|
|
|
|
|
|
|
|
|
1405 |
msgid "Exclusions Statistical Chart"
|
1406 |
msgstr "هێڵکاری ئاماری جیاکراوەکان"
|
1407 |
|
1408 |
+
#: includes/log/exclusions.php:95
|
1409 |
msgid "Excluded hits in the last"
|
1410 |
msgstr "سەردانی دوایین جیاکردنەوە"
|
1411 |
|
1412 |
+
#: includes/log/exclusions.php:95 includes/log/hit-statistics.php:65
|
1413 |
+
#: includes/log/search-statistics.php:69 includes/log/widgets/hits.php:61
|
1414 |
+
#: includes/log/widgets/search.php:59
|
1415 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:207
|
|
|
|
|
1416 |
msgid "days"
|
1417 |
msgstr "ڕۆژی ڕابردوو"
|
1418 |
|
1419 |
+
#: includes/log/exclusions.php:116
|
1420 |
msgid "Number of excluded hits"
|
1421 |
msgstr "ژمارەی سەردانی جیاکاری"
|
1422 |
|
1423 |
+
#: includes/log/hit-statistics.php:27
|
1424 |
msgid "Hits Statistics Chart"
|
1425 |
msgstr "هێڵکاری ئاماری سەردانەکان"
|
1426 |
|
1427 |
+
#: includes/log/hit-statistics.php:65 includes/log/widgets/hits.php:61
|
|
|
1428 |
msgid "Hits in the last"
|
1429 |
msgstr "دوایین سەردانەکان لە"
|
1430 |
|
1431 |
+
#: includes/log/hit-statistics.php:86 includes/log/widgets/hits.php:82
|
|
|
1432 |
msgid "Number of visits and visitors"
|
1433 |
msgstr "ژمارەی سەردان و میوانەکان"
|
1434 |
|
1435 |
+
#: includes/log/hit-statistics.php:100 includes/log/hit-statistics.php:169
|
1436 |
+
#: includes/log/widgets/hits.php:96 includes/log/widgets/summary.php:38
|
|
|
1437 |
msgid "Visit"
|
1438 |
msgstr "سەردان"
|
1439 |
|
1440 |
+
#: includes/log/hit-statistics.php:100 includes/log/hit-statistics.php:170
|
1441 |
+
#: includes/log/widgets/hits.php:96 includes/log/widgets/summary.php:37
|
|
|
1442 |
msgid "Visitor"
|
1443 |
msgstr "میوان"
|
1444 |
|
1445 |
+
#: includes/log/last-search.php:65
|
1446 |
msgid "Latest Search Word Statistics"
|
1447 |
msgstr "دوایین ئاماری گەڕانی وشە"
|
1448 |
|
1449 |
+
#: includes/log/last-search.php:100 includes/log/last-visitor.php:101
|
1450 |
+
#: includes/log/online.php:50 includes/log/widgets/google.map.php:84
|
1451 |
+
#: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
|
1452 |
+
#: includes/log/widgets/words.php:36
|
|
|
|
|
|
|
1453 |
msgid "#hash#"
|
1454 |
msgstr "#hash#"
|
1455 |
|
1456 |
+
#: includes/log/last-search.php:105 includes/log/last-visitor.php:106
|
1457 |
+
#: includes/log/online.php:55 includes/log/top-referring.php:71
|
1458 |
+
#: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:43
|
1459 |
+
#: includes/settings/tabs/wps-overview-display.php:33
|
1460 |
+
#: includes/settings/tabs/wps-overview-display.php:113
|
|
|
|
|
|
|
1461 |
msgid "Map"
|
1462 |
msgstr "نەخشە"
|
1463 |
|
1464 |
+
#: includes/log/last-search.php:142 includes/log/last-visitor.php:139
|
1465 |
+
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1466 |
+
#: includes/log/top-referring.php:125
|
|
|
|
|
1467 |
msgid "Page"
|
1468 |
msgstr "پەڕە"
|
1469 |
|
1470 |
+
#: includes/log/last-search.php:142 includes/log/last-visitor.php:139
|
1471 |
+
#: includes/log/online.php:109 includes/log/top-pages.php:198
|
1472 |
+
#: includes/log/top-referring.php:125
|
|
|
|
|
1473 |
msgid "From"
|
1474 |
msgstr "لە"
|
1475 |
|
1476 |
+
#: includes/log/last-search.php:47 includes/log/last-visitor.php:38
|
1477 |
+
#: includes/log/top-referring.php:29
|
1478 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
|
|
|
|
|
1479 |
msgid "All"
|
1480 |
msgstr "گشتی"
|
1481 |
|
1482 |
+
#: includes/log/last-visitor.php:68
|
1483 |
msgid "Recent Visitor Statistics"
|
1484 |
msgstr "دوایین ئاماری میوان"
|
1485 |
|
1486 |
+
#: includes/log/online.php:11 includes/log/online.php:18
|
|
|
1487 |
msgid "Online Users"
|
1488 |
msgstr "بەکارهێنەرانی سەرهێڵ"
|
1489 |
|
1490 |
+
#: includes/log/online.php:75
|
1491 |
msgid "Online for "
|
1492 |
msgstr "سەرهێڵ بۆ"
|
1493 |
|
1494 |
+
#: includes/log/page-statistics.php:26
|
1495 |
msgid "Page Trend for Post ID"
|
1496 |
msgstr "پەرە بۆ جووڵانەوە شناسنامەی نووسراوە"
|
1497 |
|
1498 |
+
#: includes/log/page-statistics.php:35
|
1499 |
msgid "Page Trend"
|
1500 |
msgstr "جووڵانەوە پەرە"
|
1501 |
|
1502 |
+
#: includes/log/search-statistics.php:19 includes/log/search-statistics.php:28
|
|
|
1503 |
msgid "Search Engine Referral Statistics"
|
1504 |
msgstr "ئاماری هاتنەوە لە مەکەینەی گەڕان"
|
1505 |
|
1506 |
+
#: includes/log/search-statistics.php:69 includes/log/widgets/search.php:59
|
|
|
1507 |
msgid "Search engine referrals in the last"
|
1508 |
msgstr "دوایین هاتنەکان لە مەکەینەی گەڕان"
|
1509 |
|
1510 |
+
#: includes/log/search-statistics.php:90 includes/log/widgets/search.php:80
|
|
|
1511 |
msgid "Number of referrals"
|
1512 |
msgstr "ژمارەی هاتنەکان"
|
1513 |
|
1514 |
+
#: includes/log/exclusions.php:24 includes/log/search-statistics.php:104
|
1515 |
+
#: includes/log/widgets/search.php:94 includes/log/widgets/summary.php:72
|
1516 |
+
#: includes/log/widgets/summary.php:119
|
|
|
|
|
1517 |
msgid "Total"
|
1518 |
msgstr "کۆ"
|
1519 |
|
1520 |
+
#: includes/log/top-countries.php:18
|
1521 |
msgid "Top Countries"
|
1522 |
msgstr "لوتکەی وەڵاتەکان"
|
1523 |
|
1524 |
+
#: includes/log/top-countries.php:30 includes/log/widgets/countries.php:30
|
1525 |
+
#: includes/log/widgets/top.visitors.php:30
|
|
|
1526 |
msgid "Rank"
|
1527 |
msgstr "پلە"
|
1528 |
|
1529 |
+
#: includes/log/top-countries.php:31 includes/log/widgets/countries.php:31
|
1530 |
+
#: includes/log/widgets/top.visitors.php:32
|
|
|
1531 |
msgid "Flag"
|
1532 |
msgstr "ئاڵا"
|
1533 |
|
1534 |
+
#: includes/log/top-countries.php:32 includes/log/widgets/countries.php:32
|
1535 |
+
#: includes/log/widgets/top.visitors.php:33
|
|
|
1536 |
msgid "Country"
|
1537 |
msgstr "وەڵات"
|
1538 |
|
1539 |
+
#: includes/log/top-countries.php:33 includes/log/widgets/countries.php:33
|
|
|
1540 |
msgid "Visitor Count"
|
1541 |
msgstr "ژمارەی میوان"
|
1542 |
|
1543 |
+
#: includes/log/top-pages.php:19 includes/log/top-pages.php:149
|
|
|
1544 |
msgid "Top Pages"
|
1545 |
msgstr "پەڕەکانی لووتکە"
|
1546 |
|
1547 |
+
#: includes/log/top-pages.php:29
|
1548 |
msgid "Top 5 Pages Trends"
|
1549 |
msgstr "لوتکەی ٥ پەرە"
|
1550 |
|
1551 |
+
#: includes/log/top-pages.php:60
|
1552 |
msgid "Top 5 Page Trending Stats"
|
1553 |
msgstr "لوتکەی باشترینی ٥ پەڕە"
|
1554 |
|
1555 |
+
#: includes/log/top-pages.php:81 includes/log/widgets/page.php:63
|
|
|
1556 |
msgid "Number of Hits"
|
1557 |
msgstr "ژمارەی سەردان"
|
1558 |
|
1559 |
+
#: includes/log/top-pages.php:177 includes/log/widgets/pages.php:35
|
|
|
1560 |
msgid "No page title found"
|
1561 |
msgstr "سەردێڕی پەرە پەیدا نەبوو"
|
1562 |
|
1563 |
+
#: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
|
1564 |
+
#: includes/optimization/tabs/wps-optimization-historical.php:37
|
1565 |
+
#: includes/settings/tabs/wps-general.php:122
|
1566 |
+
#: includes/settings/tabs/wps-general.php:127 shortcode.php:130
|
|
|
1567 |
msgid "Visits"
|
1568 |
msgstr "سەردانەکان"
|
1569 |
|
1570 |
+
#: includes/log/top-referring.php:4
|
1571 |
msgid "To be added soon"
|
1572 |
msgstr "بە خێرایی زیاد دەبێت"
|
1573 |
|
1574 |
+
#: includes/log/top-referring.php:40
|
1575 |
msgid "Referring sites from"
|
1576 |
msgstr "ماڵپەرەکانی هاتن لە"
|
1577 |
|
1578 |
+
#: includes/log/top-referring.php:110 includes/log/widgets/referring.php:34
|
|
|
1579 |
msgid "References"
|
1580 |
msgstr "سەرچاوە"
|
1581 |
|
1582 |
+
#: includes/log/top-visitors.php:12
|
1583 |
msgid "Top 100 Visitors Today"
|
1584 |
msgstr "لوتکەی ١٠٠ میوانی ئەمڕۆ"
|
1585 |
|
1586 |
+
#: includes/log/widgets/about.php:8
|
1587 |
msgid "About WP Statistics Version %s"
|
1588 |
msgstr "دەربارەی زیاد کراوەی ئاماری وۆردپرێس،وەشانی %s"
|
1589 |
|
1590 |
+
#: includes/log/widgets/about.php:25
|
1591 |
msgid "Website"
|
1592 |
msgstr "ماڵپەڕەکان"
|
1593 |
|
1594 |
+
#: includes/log/widgets/about.php:26
|
1595 |
msgid "Rate and Review"
|
1596 |
msgstr "پلەدانان و پێداچوونەوە"
|
1597 |
|
1598 |
+
#: includes/log/widgets/about.php:30
|
1599 |
msgid "More Information"
|
1600 |
msgstr "زانیاری زۆرتر"
|
1601 |
|
1602 |
+
#: includes/log/widgets/about.php:39 includes/settings/tabs/wps-about.php:12
|
|
|
1603 |
msgid "This product includes GeoLite2 data created by MaxMind, available from %s."
|
1604 |
msgstr "ائەم بەرهەمە بریتیە لە داتا GeoLite2 ە کە لەلایەن MaxMind،درووستبووە وە لە %s توانایی دەستپێگەیشتنت هەیە."
|
1605 |
|
1606 |
+
#: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
|
1607 |
+
#: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
|
1608 |
+
#: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:16
|
1609 |
+
#: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
|
1610 |
+
#: includes/log/widgets/words.php:11
|
|
|
|
|
|
|
|
|
1611 |
msgid "More"
|
1612 |
msgstr "زۆرتر"
|
1613 |
|
1614 |
+
#: includes/log/widgets/browsers.php:51
|
1615 |
msgid "Other"
|
1616 |
msgstr "ئەوی "
|
1617 |
|
1618 |
+
#: includes/log/widgets/google.map.php:9 includes/log/widgets/jqv.map.php:9
|
|
|
1619 |
msgid "Today Visitors Map"
|
1620 |
msgstr "میوانەکانی ئەمڕۆ لە سەر نەخشە"
|
1621 |
|
1622 |
+
#: includes/log/widgets/referring.php:35
|
1623 |
msgid "Address"
|
1624 |
msgstr "ناونیشان"
|
1625 |
|
1626 |
+
#: includes/log/widgets/summary.php:26
|
1627 |
msgid "User(s) Online"
|
1628 |
msgstr "بەکارهێنەر(ەکان) سەرهێڵ"
|
1629 |
|
1630 |
+
#: includes/log/widgets/summary.php:42 includes/log/widgets/summary.php:94
|
|
|
1631 |
msgid "Today"
|
1632 |
msgstr "ئەمڕۆ"
|
1633 |
|
1634 |
+
#: includes/log/widgets/summary.php:48 includes/log/widgets/summary.php:95
|
|
|
1635 |
msgid "Yesterday"
|
1636 |
msgstr "دوێنێ"
|
1637 |
|
1638 |
+
#: includes/log/widgets/summary.php:113
|
1639 |
msgid "Daily Total"
|
1640 |
msgstr "کۆی ئەمڕۆ"
|
1641 |
|
1642 |
+
#: includes/log/widgets/summary.php:132
|
1643 |
msgid "Current Time and Date"
|
1644 |
msgstr "کات و رێکەوتی ئەمڕۆ"
|
1645 |
|
1646 |
+
#: includes/log/widgets/summary.php:132
|
1647 |
msgid "(Adjustment)"
|
1648 |
msgstr "(ڕێکخستن)"
|
1649 |
|
1650 |
+
#: includes/log/widgets/summary.php:136
|
1651 |
msgid "Date: %s"
|
1652 |
msgstr "رێکەوت: %s"
|
1653 |
|
1654 |
+
#: includes/log/widgets/summary.php:140
|
1655 |
msgid "Time: %s"
|
1656 |
msgstr "کات: %s"
|
1657 |
|
1658 |
+
#: includes/log/widgets/top.visitors.php:31
|
1659 |
+
#: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:266
|
1660 |
+
#: wp-statistics.php:342 wp-statistics.php:418
|
|
|
1661 |
msgid "Hits"
|
1662 |
msgstr "سەردانەکان"
|
1663 |
|
1664 |
+
#: includes/log/widgets/top.visitors.php:34
|
1665 |
msgid "IP"
|
1666 |
msgstr "IP"
|
1667 |
|
1668 |
+
#: includes/log/widgets/top.visitors.php:36
|
1669 |
msgid "Agent"
|
1670 |
msgstr "بریکار"
|
1671 |
|
1672 |
+
#: includes/log/widgets/top.visitors.php:38
|
1673 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:291
|
1674 |
msgid "Version"
|
1675 |
msgstr "وەشان"
|
1676 |
|
1677 |
+
#: ajax.php:41 ajax.php:71 ajax.php:125 ajax.php:150 ajax.php:180
|
1678 |
+
#: includes/optimization/wps-optimization.php:6
|
|
|
|
|
|
|
|
|
|
|
1679 |
msgid "Access denied!"
|
1680 |
msgstr "دەستپێگەیشتنی بێمۆڵەت"
|
1681 |
|
1682 |
+
#: ajax.php:31
|
1683 |
msgid "%s agent data deleted successfully."
|
1684 |
msgstr "%s بریکاری داتا بە سەرکەوتوویی سڕایەوە."
|
1685 |
|
1686 |
+
#: ajax.php:34
|
1687 |
msgid "No agent data found to remove!"
|
1688 |
msgstr "داتای وێبگەڕەکە بۆ سڕینەوە پەیدا نەبوو"
|
1689 |
|
1690 |
+
#: ajax.php:38 ajax.php:68 ajax.php:116 ajax.php:122
|
|
|
|
|
|
|
1691 |
msgid "Please select the desired items."
|
1692 |
msgstr "تکایە بڕگەی داخوازی خوارەوە هەڵبژێرە."
|
1693 |
|
1694 |
+
#: ajax.php:62
|
1695 |
msgid "%s platform data deleted successfully."
|
1696 |
msgstr "ازانیارەکانی سەکۆ %s بە سەرکەوتوویی سڕایەوە.."
|
1697 |
|
1698 |
+
#: ajax.php:65
|
1699 |
msgid "No platform data found to remove!"
|
1700 |
msgstr "سەکۆی وێبگەڕ بۆ سڕینەوە پەیدا نەبوو."
|
1701 |
|
1702 |
+
#: includes/functions/functions.php:967
|
1703 |
msgid "%s table data deleted successfully."
|
1704 |
msgstr "داتای خەشتی %s بە سەرکەوتوویی سڕایەوە"
|
1705 |
|
1706 |
+
#: includes/functions/functions.php:971
|
1707 |
msgid "Error, %s not emptied!"
|
1708 |
msgstr "هەڵە! %s بەتاڵ نییە!"
|
1709 |
|
1710 |
+
#: includes/optimization/tabs/wps-optimization-database.php:5
|
1711 |
msgid "Database Setup"
|
1712 |
msgstr "دامەزراندنی بنکە دراوە"
|
1713 |
|
1714 |
+
#: includes/optimization/tabs/wps-optimization-database.php:10
|
1715 |
msgid "Re-run Install"
|
1716 |
msgstr "دامەزراندنی دوبار"
|
1717 |
|
1718 |
+
#: includes/optimization/tabs/wps-optimization-database.php:14
|
1719 |
msgid "Install Now!"
|
1720 |
msgstr "دامەزراندن ئێستا"
|
1721 |
|
1722 |
+
#: includes/optimization/tabs/wps-optimization-database.php:15
|
1723 |
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."
|
1724 |
msgstr "گەر بە هەر هۆکارێک دامەزراندنی زیادکراوەی ئاماری وۆردپرێس یان خشتەکان بنکە دراوە یان بڕگەکانی دیکەی ناوەڕۆک لەدەست چووە ئەم پرۆسە دامەزراندن دووپات دەکات"
|
1725 |
|
1726 |
+
#: includes/optimization/tabs/wps-optimization-database.php:20
|
1727 |
msgid "Database Index"
|
1728 |
msgstr "پێنوێنی بنکەدراوە"
|
1729 |
|
1730 |
+
#: includes/optimization/tabs/wps-optimization-database.php:25
|
1731 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:21
|
1732 |
+
#: wp-statistics.php:340 wp-statistics.php:416
|
|
|
1733 |
msgid "Countries"
|
1734 |
msgstr "وەڵآتەکان"
|
1735 |
|
1736 |
+
#: includes/optimization/tabs/wps-optimization-database.php:39
|
1737 |
+
#: includes/optimization/tabs/wps-optimization-database.php:69
|
1738 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:25
|
1739 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:40
|
1740 |
msgid "Update Now!"
|
1741 |
msgstr "بەڕۆژکردن ئێستا"
|
1742 |
|
1743 |
+
#: includes/optimization/tabs/wps-optimization-database.php:40
|
1744 |
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."
|
1745 |
msgstr "لە وەشانی کۆنەی زیادکراوەئامار داتای دووبارە لە سوچێکی خشتی میوان دووپات دەکرایەوە.وەشانی نوێ لەم بارەیە لە پێرستێک چاکسازیان بۆ بووە.بۆ درووستکردنی پێرست لە وەشانی کۆنە سەرەتا دەبێت دتاکنا بسڕنەوە.بە کرتە لەسەر بەڕۆژ بوون سەرەتا خشتی میوانان چاودێری ئینجا داتای دووبارودووپات دەسڕنەوەو پێرست زیاد دەکەن."
|
1746 |
|
1747 |
+
#: includes/optimization/tabs/wps-optimization-database.php:41
|
1748 |
msgid "This operation could take a long time on installs with many rows in the visitors table."
|
1749 |
msgstr "ئەم هەڵبژاردە کاتیکی زۆر بۆ بۆ دامەزراندنی ژمارەی رێزەکان لەخشتی میوانەکان بەخۆیەوە ترخان دەکات."
|
1750 |
|
1751 |
+
#: includes/optimization/tabs/wps-optimization-database.php:46
|
1752 |
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."
|
1753 |
msgstr "لە وەشانی کۆنەی زیادکراوەئامار داتای دووبارە لە سوچێکی خشتی میوان دووپات دەکرایەوە.وەشانی نوێ لەم بارەیە لە پێرستێک چاکسازیان بۆ بووە."
|
1754 |
|
1755 |
+
#: includes/optimization/tabs/wps-optimization-database.php:47
|
1756 |
+
#: includes/optimization/tabs/wps-optimization-database.php:77
|
1757 |
msgid "Congratulations, your installation is already up to date, nothing to do."
|
1758 |
msgstr "پیرۆز بێت.تائێستا دامەزراوەی ئێوە بەڕۆژە و کێشەی نییە."
|
1759 |
|
1760 |
+
#: includes/optimization/tabs/wps-optimization-export.php:8
|
1761 |
+
#: includes/optimization/wps-optimization.php:183
|
1762 |
msgid "Export"
|
1763 |
msgstr "هەناردەکردن"
|
1764 |
|
1765 |
+
#: includes/optimization/tabs/wps-optimization-export.php:13
|
1766 |
msgid "Export from"
|
1767 |
msgstr "هەناردن لە"
|
1768 |
|
1769 |
+
#: includes/optimization/tabs/wps-optimization-export.php:18
|
1770 |
+
#: includes/optimization/tabs/wps-optimization-export.php:36
|
1771 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:185
|
1772 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:241
|
1773 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:265
|
1774 |
+
#: includes/settings/tabs/wps-notifications.php:134
|
1775 |
+
#: includes/settings/tabs/wps-notifications.php:164
|
1776 |
msgid "Please select"
|
1777 |
msgstr "تکایە هەڵبژێرە"
|
1778 |
|
1779 |
+
#: includes/optimization/tabs/wps-optimization-export.php:25
|
1780 |
msgid "Select the table for the output file."
|
1781 |
msgstr "خشتی داخواز بۆ چونەدەرەڤەی پەڕگە هەڵبژێرە"
|
1782 |
|
1783 |
+
#: includes/optimization/tabs/wps-optimization-export.php:31
|
1784 |
msgid "Export To"
|
1785 |
msgstr "ناردنەدەرەوە بۆ"
|
1786 |
|
1787 |
+
#: includes/optimization/tabs/wps-optimization-export.php:42
|
1788 |
msgid "Select the output file type."
|
1789 |
msgstr "جۆری چونەدەرەڤەی پەڕگە هەڵبژێرە"
|
1790 |
|
1791 |
+
#: includes/optimization/tabs/wps-optimization-export.php:48
|
1792 |
msgid "Include Header Row"
|
1793 |
msgstr "تایبەتبوونی سەردێری رێز"
|
1794 |
|
1795 |
+
#: includes/optimization/tabs/wps-optimization-export.php:53
|
1796 |
msgid "Include a header row as the first line of the exported file."
|
1797 |
msgstr "بریتیە لە سەردێڕی رێز لە هێڵی یەکەمی پەڕگەی هەنارەکراوە."
|
1798 |
|
1799 |
+
#: includes/optimization/tabs/wps-optimization-export.php:54
|
1800 |
msgid "Start Now!"
|
1801 |
msgstr "دەستپێکە"
|
1802 |
|
1803 |
+
#: includes/optimization/tabs/wps-optimization-historical.php:15
|
1804 |
msgid "Historical Values"
|
1805 |
msgstr "ژمارەی مێژوویی"
|
1806 |
|
1807 |
+
#: includes/optimization/tabs/wps-optimization-historical.php:20
|
1808 |
msgid "Note: As you have just purged the database you must reload this page for these numbers to be correct."
|
1809 |
msgstr "خاڵ:هەر وا کە بنکەی دراوەتان پاکسازی کرد بۆ نیشاندانی ژمارە بە تەنیایی دەبیت پەڕە نوێ بکەنەوە."
|
1810 |
|
1811 |
+
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
1812 |
+
#: includes/settings/tabs/wps-general.php:138
|
1813 |
+
#: includes/settings/tabs/wps-general.php:143 shortcode.php:131
|
1814 |
+
#: wp-statistics.php:349 wp-statistics.php:425
|
|
|
1815 |
msgid "Visitors"
|
1816 |
msgstr "میوانەکان"
|
1817 |
|
1818 |
+
#: includes/optimization/tabs/wps-optimization-historical.php:31
|
1819 |
msgid "Number of historical number of visitors to the site (current value is %s)."
|
1820 |
msgstr "ژمارەی مێژووی میوانەکان (ژمارەی ئێستا %s یە)."
|
1821 |
|
1822 |
+
#: includes/optimization/tabs/wps-optimization-historical.php:42
|
1823 |
msgid "Number of historical number of visits to the site (current value is %s)."
|
1824 |
msgstr "ژمارەی مێژووی سەردانەکان (ژمارەی ئێستا %s یە)."
|
1825 |
|
1826 |
+
#: includes/optimization/tabs/wps-optimization-historical.php:48
|
1827 |
msgid "Update now!"
|
1828 |
msgstr "بەڕۆژکردن"
|
1829 |
|
1830 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:10
|
1831 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:43
|
1832 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:75
|
1833 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:107
|
1834 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:141
|
1835 |
msgid "Are you sure?"
|
1836 |
msgstr "دەڵنیای ؟"
|
1837 |
|
1838 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:175
|
1839 |
msgid "Data"
|
1840 |
msgstr "رێکەوت"
|
1841 |
|
1842 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:180
|
1843 |
msgid "Empty Table"
|
1844 |
msgstr "بەتاڵ بوونی خشت"
|
1845 |
|
1846 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:193
|
1847 |
msgid "All data table will be lost."
|
1848 |
msgstr "گشتی زانیاریەکانی خشت لەدەست دەچێت"
|
1849 |
|
1850 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:194
|
1851 |
msgid "Clear now!"
|
1852 |
msgstr "پاککردنەە"
|
1853 |
|
1854 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:202
|
1855 |
msgid "Purge records older than"
|
1856 |
msgstr "پاکسازی ریکۆردی کۆنەتر لە"
|
1857 |
|
1858 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:208
|
1859 |
msgid "Deleted user statistics data older than the selected number of days. Minimum value is 30 days."
|
1860 |
msgstr "هەڵبژاردنی ڕۆژەکانی پێشتر بۆ سڕینەوەی داتاکانی بەکارهێنەر. کەمترین ژمارە ٣٠ رۆژ.."
|
1861 |
|
1862 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:209
|
1863 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:224
|
1864 |
msgid "Purge now!"
|
1865 |
msgstr "ئێستا پاکسازیبکە"
|
1866 |
|
1867 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:231
|
1868 |
msgid "Delete User Agent Types"
|
1869 |
msgstr "سڕینەوەی جۆری سیستەمی کارپێکردنی بەکارهینەر"
|
1870 |
|
1871 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:236
|
1872 |
msgid "Delete Agents"
|
1873 |
msgstr "سڕینەوەی سیستەمی کارپێکردنەکان"
|
1874 |
|
1875 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:251
|
1876 |
msgid "All visitor data will be lost for this agent type."
|
1877 |
msgstr "گشتی داتای میوان لەجۆری بریکار لەدەستدەچن"
|
1878 |
|
1879 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:252
|
1880 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:276
|
1881 |
msgid "Delete now!"
|
1882 |
msgstr "ئێستا بیسڕەوە"
|
1883 |
|
1884 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:260
|
1885 |
msgid "Delete Platforms"
|
1886 |
msgstr "سڕینەوەی سەکۆ"
|
1887 |
|
1888 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:275
|
1889 |
msgid "All visitor data will be lost for this platform type."
|
1890 |
msgstr "تەواوی داتاکانی سەکۆی سەردان لەدەست دەچن."
|
1891 |
|
1892 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:17
|
1893 |
msgid "Resources"
|
1894 |
msgstr "سەرچاوەکان"
|
1895 |
|
1896 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:22
|
1897 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:27
|
1898 |
msgid "Memory usage in PHP"
|
1899 |
msgstr "بیرگەی بەکارهینان لە PHP"
|
1900 |
|
1901 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:26
|
1902 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:37
|
1903 |
msgid "Byte"
|
1904 |
msgstr "بایت"
|
1905 |
|
1906 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:33
|
1907 |
msgid "Last Overview page memory usage"
|
1908 |
msgstr "دوایین پیشاندانی گشتی پەری بیرگەی بەکارهێنراو."
|
1909 |
|
1910 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:38
|
1911 |
msgid "Memory usage in the overview page"
|
1912 |
msgstr "بیرگەی بەکارهێنان لە پیشاندانیگشتی بەڕە."
|
1913 |
|
1914 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:44
|
1915 |
msgid "PHP Memory Limit"
|
1916 |
msgstr "سنووری بیرگەی PHP "
|
1917 |
|
1918 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:49
|
1919 |
msgid "The memory limit a script is allowed to consume, set in php.ini."
|
1920 |
msgstr "ڕێکخستنی سنووری بیرگە بۆ سکریپتی php.iniلە دابینکراوە."
|
1921 |
|
1922 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:55
|
1923 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:66
|
1924 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:77
|
1925 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:88
|
1926 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:99
|
1927 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:110
|
1928 |
msgid "Number of rows in the %s table"
|
1929 |
msgstr "ژمارەی رێز لە خشت %s"
|
1930 |
|
1931 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:59
|
1932 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:70
|
1933 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:81
|
1934 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:92
|
1935 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:103
|
1936 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:114
|
1937 |
msgid "Row"
|
1938 |
msgstr "رێز"
|
1939 |
|
1940 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:60
|
1941 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:71
|
1942 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:82
|
1943 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:93
|
1944 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:104
|
1945 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:115
|
1946 |
msgid "Number of rows"
|
1947 |
msgstr "ژمارەی رێزەکان"
|
1948 |
|
1949 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:120
|
1950 |
msgid "Version Info"
|
1951 |
msgstr "زانیاری وەشان"
|
1952 |
|
1953 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:125
|
1954 |
msgid "WP Statistics Version"
|
1955 |
msgstr "وەشانی زیادکراوەی ئامار"
|
1956 |
|
1957 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:130
|
1958 |
msgid "The WP Statistics version you are running."
|
1959 |
msgstr "وەشانی زیادکراوەی ئاماری ئێستای ئێوە"
|
1960 |
|
1961 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:136
|
1962 |
msgid "PHP Version"
|
1963 |
msgstr "وەشانیPHP "
|
1964 |
|
1965 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:141
|
1966 |
msgid "The PHP version you are running."
|
1967 |
msgstr "وەشانی PHPی ئێوە لە کاتی ئیشکردن"
|
1968 |
|
1969 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:147
|
1970 |
msgid "PHP Safe Mode"
|
1971 |
msgstr "شیوازی پاراستنیPHP "
|
1972 |
|
1973 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:152
|
1974 |
msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
|
1975 |
msgstr "پاراسنی دۆخی PHP چالاکە.کۆدەکانی GeoIP لەدۆخی ئسایش پشتیوانی نابن"
|
1976 |
|
1977 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:158
|
1978 |
msgid "jQuery Version"
|
1979 |
msgstr "وەشانی jQuery "
|
1980 |
|
1981 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:163
|
1982 |
msgid "The jQuery version you are running."
|
1983 |
msgstr "وەشانی jQuery ئێوە کە لە ئێستا بەکارتهێناوە"
|
1984 |
|
1985 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:169
|
1986 |
msgid "cURL Version"
|
1987 |
msgstr "وەشانیcURL"
|
1988 |
|
1989 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:173
|
1990 |
msgid "cURL not installed"
|
1991 |
msgstr "cURL دانەمزراوە"
|
1992 |
|
1993 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:174
|
1994 |
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."
|
1995 |
msgstr "پێوەکراوەی cURL لە PHP ئێوە لەکاتی ڕاکردنە. گەر دانەمەزراوە GeoIP ناچالاک دەبێت"
|
1996 |
|
1997 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:180
|
1998 |
msgid "BC Math"
|
1999 |
msgstr "بیرکاری BC "
|
2000 |
|
2001 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:184
|
2002 |
msgid "Installed"
|
2003 |
msgstr "دامەزرا"
|
2004 |
|
2005 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:184
|
2006 |
msgid "Not installed"
|
2007 |
msgstr "دانەمەزرا"
|
2008 |
|
2009 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:185
|
2010 |
msgid "If the PHP BC Math Extension is installed. BC Math is no longer required for the GeoIP code and is listed here only for historical reasons."
|
2011 |
msgstr "گر بیریاری پێ زایین PHPجیاکاری لۆ دامەزراندن بووە.بیرکاری پێش زیینی تر بۆ دامەزراندن پێویستە بۆ کۆدی GeoIP تەنیا بە هۆکاری مێژوویی باس کراوە"
|
2012 |
|
2013 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:190
|
2014 |
msgid "File Info"
|
2015 |
msgstr "زانیاری پەڕگە"
|
2016 |
|
2017 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:195
|
2018 |
msgid "GeoIP Database"
|
2019 |
msgstr "بنکەدراوەی GeoIP"
|
2020 |
|
2021 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:204
|
2022 |
msgid "Database file does not exist."
|
2023 |
msgstr "پەڕگەی بنکەدراوە بوونی نییە"
|
2024 |
|
2025 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:206
|
2026 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:225
|
2027 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:244
|
2028 |
msgid ", created on "
|
2029 |
msgstr "درووستکراوە لە"
|
2030 |
|
2031 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:208
|
2032 |
msgid "The file size and date of the GeoIP database."
|
2033 |
msgstr "قەبارە پەڕگە ورێکەوتی بنکەیدراوەی GeoIP"
|
2034 |
|
2035 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:214
|
2036 |
msgid "browscap.ini File"
|
2037 |
msgstr "پەرگەی browscap.ini"
|
2038 |
|
2039 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:223
|
2040 |
msgid "browscap.ini file does not exist."
|
2041 |
msgstr "پەڕگەی browscap.ini بوونی نییە"
|
2042 |
|
2043 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:227
|
2044 |
msgid "The file size and date of the browscap.ini file."
|
2045 |
msgstr "قەباری و رێکەوتی پەڕگەی browscap.ini"
|
2046 |
|
2047 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:233
|
2048 |
msgid "browscap Cache File"
|
2049 |
msgstr "بیرگەی نهێنی browscap "
|
2050 |
|
2051 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:242
|
2052 |
msgid "browscap cache file does not exist."
|
2053 |
msgstr "بیرگەی نهێنی browscap بوونی نییە"
|
2054 |
|
2055 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:246
|
2056 |
msgid "The file size and date of the browscap cache file."
|
2057 |
msgstr "قەبارە پەڕگە ورێکەوتی بیرگەی نژێنی browscap ."
|
2058 |
|
2059 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:251
|
2060 |
msgid "Client Info"
|
2061 |
msgstr "زانیاری بەکارهینەر"
|
2062 |
|
2063 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:256
|
2064 |
msgid "Client IP"
|
2065 |
msgstr "IP بەکارهێنەر"
|
2066 |
|
2067 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:261
|
2068 |
msgid "The client IP address."
|
2069 |
msgstr "ناونیشانی IP بەکارهینەر"
|
2070 |
|
2071 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:267
|
2072 |
msgid "User Agent"
|
2073 |
msgstr "بریکاری بەکارهێنەر"
|
2074 |
|
2075 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:272
|
2076 |
msgid "The client user agent string."
|
2077 |
msgstr "رێزبەندی بریکاری بەکارهینەر"
|
2078 |
|
2079 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:278
|
2080 |
msgid "Browser"
|
2081 |
msgstr "وەبگەڕ"
|
2082 |
|
2083 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:285
|
2084 |
msgid "The detected client browser."
|
2085 |
msgstr "وەبگەڕی ناسراوەی بەکارهینەر"
|
2086 |
|
2087 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:296
|
2088 |
msgid "The detected client browser version."
|
2089 |
msgstr "وەشانی ناسراوەی وێبگەڕی بەکارهینەر"
|
2090 |
|
2091 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:307
|
2092 |
msgid "The detected client platform."
|
2093 |
msgstr "سەکۆی ناسراوەی بەکارهینەر"
|
2094 |
|
2095 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:4
|
2096 |
msgid "This will replace all IP addresses in the database with hash values and cannot be undo, are you sure?"
|
2097 |
msgstr "تەواوی ناونیشانەکانی لە بنکەدراوە دەگؤڕدڕێنە سەر هەش وە ناگەڕێنەوە ،دەڵنیای ؟"
|
2098 |
|
2099 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:16
|
2100 |
msgid "GeoIP Options"
|
2101 |
msgstr "رێکخستنی GeoIP"
|
2102 |
|
2103 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:26
|
2104 |
msgid "Updates any unknown location data in the database, this may take a while"
|
2105 |
msgstr "وەرگرتنی بەرۆژکردنی شوێنی وەڵآتەکان لە بنکەی درواە.لەوانەیە ئەم کردارە کەمێ کات بەخۆیەوە ترخان بکات"
|
2106 |
|
2107 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:31
|
2108 |
+
#: includes/settings/tabs/wps-general.php:66
|
2109 |
msgid "IP Addresses"
|
2110 |
msgstr "ناونیشانەکانی IP "
|
2111 |
|
2112 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:36
|
2113 |
+
#: includes/settings/tabs/wps-general.php:71
|
2114 |
msgid "Hash IP Addresses"
|
2115 |
msgstr "هەشکردنی ناونیشانی IP "
|
2116 |
|
2117 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:41
|
2118 |
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"
|
2119 |
msgstr "تەواوی ناونیشانەکانی IP لە بنکەی دراوە بە هەش دەگۆردرێن و توانایی گەڕانەوەیان نییە.بۆ ئەم کردارە دەڵنیای ؟"
|
2120 |
|
2121 |
+
#: includes/optimization/wps-optimization.php:43
|
2122 |
msgid "IP Addresses replaced with hash values."
|
2123 |
msgstr "ناونیشانەکانی IP لەگەڵ بەهای هەش دەگۆڕدرێت"
|
2124 |
|
2125 |
+
#: includes/optimization/wps-optimization.php:51
|
2126 |
msgid "Install routine complete."
|
2127 |
msgstr "دامەزراندن تەواوبوو"
|
2128 |
|
2129 |
+
#: includes/optimization/wps-optimization.php:182
|
2130 |
msgid "Resources/Information"
|
2131 |
msgstr "سەرچاوەکان/زانیاری"
|
2132 |
|
2133 |
+
#: includes/optimization/wps-optimization.php:184
|
2134 |
msgid "Purging"
|
2135 |
msgstr "پاکسازی"
|
2136 |
|
2137 |
+
#: includes/optimization/wps-optimization.php:185
|
2138 |
msgid "Database"
|
2139 |
msgstr "بنکەدراوە"
|
2140 |
|
2141 |
+
#: includes/optimization/wps-optimization.php:186
|
2142 |
msgid "Updates"
|
2143 |
msgstr "بەڕۆژبونەکان"
|
2144 |
|
2145 |
+
#: includes/optimization/wps-optimization.php:187
|
2146 |
msgid "Historical"
|
2147 |
msgstr "مێژوویی"
|
2148 |
|
2149 |
+
#: includes/settings/tabs/wps-about.php:8
|
2150 |
msgid "WP Statistics V%s"
|
2151 |
msgstr "ئاماری وۆردپرێس وشانی %s"
|
2152 |
|
2153 |
+
#: includes/settings/tabs/wps-about.php:28
|
2154 |
msgid "Visit Us Online"
|
2155 |
msgstr "دیتنی ئێمە"
|
2156 |
|
2157 |
+
#: includes/settings/tabs/wps-about.php:32
|
2158 |
msgid "Come visit our great new %s and keep up to date on the latest news about WP Statistics."
|
2159 |
msgstr "بۆ %s نوێی ئێمە بڕۆن تا لە زانیاریەکان و هەواڵەکانی زیادکراوەی ئاماری وۆردپرێس ئاگادار بن."
|
2160 |
|
2161 |
+
#: includes/settings/tabs/wps-about.php:32
|
2162 |
msgid "website"
|
2163 |
msgstr "ماڵپەڕ"
|
2164 |
|
2165 |
+
#: includes/settings/tabs/wps-about.php:36
|
2166 |
msgid "Rate and Review at WordPress.org"
|
2167 |
msgstr "پلەدانان و پێداچوونەوە لە WordPress.org"
|
2168 |
|
2169 |
+
#: includes/settings/tabs/wps-about.php:40
|
2170 |
msgid "Thanks for installing WP Statistics, we encourage you to submit a "
|
2171 |
msgstr "سپاس و پێزانین بۆ دامەزراندنی زیادکراوەی ئاماری وۆردپرێس.ئێوە ئێوە هاندەدەین بۆ ناردنی "
|
2172 |
|
2173 |
+
#: includes/settings/tabs/wps-about.php:40
|
2174 |
msgid "rating and review"
|
2175 |
msgstr "پلەدانان و پێداچوونەوە"
|
2176 |
|
2177 |
+
#: includes/settings/tabs/wps-about.php:40
|
2178 |
msgid "over at WordPress.org. Your feedback is greatly appreciated!"
|
2179 |
msgstr "سەردانی ماڵپەڕی وۆردپرێش بکەن .بۆچوونەکانتان جێگای پێزانینە."
|
2180 |
|
2181 |
+
#: includes/settings/tabs/wps-about.php:44
|
2182 |
msgid "Translations"
|
2183 |
msgstr "وەرگێڕانەکان"
|
2184 |
|
2185 |
+
#: includes/settings/tabs/wps-about.php:48
|
2186 |
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."
|
2187 |
msgstr "زیادکراوەی ئاماری وۆردپرێش بۆ بوون بە نێودەوڵەتی هانتان ئەدات تاکوو وەرگێڕانی لە سەر بکەن., بۆ دیتنی دۆخی وەرگێڕاوەکان %s سەردانی بکەن و گەر پێت خۆشە یارمەتیمان بدەی %s سەردانی بکە."
|
2188 |
|
2189 |
+
#: includes/settings/tabs/wps-about.php:48
|
2190 |
msgid "translation collaboration site"
|
2191 |
msgstr "مالپەڕی هاوکار لە وەرگێڕان"
|
2192 |
|
2193 |
+
#: includes/settings/tabs/wps-about.php:48
|
2194 |
msgid "drop us a line"
|
2195 |
msgstr "پەیوەندی لەگەڵ ئێمە"
|
2196 |
|
2197 |
+
#: includes/settings/tabs/wps-about.php:52
|
2198 |
msgid "Support"
|
2199 |
msgstr "پشتیوانی"
|
2200 |
|
2201 |
+
#: includes/settings/tabs/wps-about.php:57
|
2202 |
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:"
|
2203 |
msgstr "گەر لە گەڵ زیادکراوەی ئاماری وۆردپرێس کێشەت هەیە !پێمان خۆشە یارمەتیت بدەین.لە خوارەوە دەتوانیت لە تاقمەکانی سوود وەربگریت و پەیوەندیمان پی بکەی : "
|
2204 |
|
2205 |
+
#: includes/settings/tabs/wps-about.php:60
|
2206 |
+
#: includes/settings/tabs/wps-about.php:61
|
2207 |
msgid "Have you read the %s?"
|
2208 |
msgstr "ئێوە %s ت خوێندوەتەوە ؟"
|
2209 |
|
2210 |
+
#: includes/settings/tabs/wps-about.php:60
|
2211 |
msgid "FAQs"
|
2212 |
msgstr "پرسیارەکان"
|
2213 |
|
2214 |
+
#: includes/settings/tabs/wps-about.php:61
|
2215 |
msgid "manual"
|
2216 |
msgstr "ڕێنمایی"
|
2217 |
|
2218 |
+
#: includes/settings/tabs/wps-about.php:62
|
2219 |
msgid "Have you search the %s for a similar issue?"
|
2220 |
msgstr "لە %s بۆ بابەتەکانی هاوتا گڕانتان کردووە ؟"
|
2221 |
|
2222 |
+
#: includes/settings/tabs/wps-about.php:62
|
2223 |
msgid "support forum"
|
2224 |
msgstr "سەکۆی پشتیوانی"
|
2225 |
|
2226 |
+
#: includes/settings/tabs/wps-about.php:63
|
2227 |
msgid "Have you search the Internet for any error messages you are receiving?"
|
2228 |
msgstr "ئایا بۆ هەر هەڵە لە ئینتەرنێت گەڕاوی ؟"
|
2229 |
|
2230 |
+
#: includes/settings/tabs/wps-about.php:64
|
2231 |
msgid "Make sure you have access to your PHP error logs."
|
2232 |
msgstr "دەڵنیای PHP بە هەڵەکانی دەستپێگەیشتنت هەیە؟"
|
2233 |
|
2234 |
+
#: includes/settings/tabs/wps-about.php:67
|
2235 |
msgid "And a few things to double-check:"
|
2236 |
msgstr "سەرنج بەم چەند خاڵە بدەن :"
|
2237 |
|
2238 |
+
#: includes/settings/tabs/wps-about.php:70
|
2239 |
msgid "How's your memory_limit in php.ini?"
|
2240 |
msgstr "ژمارەی memory_limit لەphp.ini چاو پێکەوتووە ؟"
|
2241 |
|
2242 |
+
#: includes/settings/tabs/wps-about.php:71
|
2243 |
msgid "Have you tried disabling any other plugins you may have installed?"
|
2244 |
msgstr "هەوڵت داوە زیادکراوەکانی دیکە ناچالللاک بکەی ؟"
|
2245 |
|
2246 |
+
#: includes/settings/tabs/wps-about.php:72
|
2247 |
msgid "Have you tried using the default WordPress theme?"
|
2248 |
msgstr "هەوڵت داوا ڕکاری بنەڕەتی وۆردپرێس بکاربێنیت ؟"
|
2249 |
|
2250 |
+
#: includes/settings/tabs/wps-about.php:73
|
2251 |
msgid "Have you double checked the plugin settings?"
|
2252 |
msgstr "ئایا ڕێکخستنەکانی زیادکراوەت چاودێری کردووە ؟"
|
2253 |
|
2254 |
+
#: includes/settings/tabs/wps-about.php:74
|
2255 |
msgid "Do you have all the required PHP extensions installed?"
|
2256 |
msgstr "ئایا پێویستیەکانی دەستپیگەیشتنی PHP دامەزراندووە؟"
|
2257 |
|
2258 |
+
#: includes/settings/tabs/wps-about.php:75
|
2259 |
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?"
|
2260 |
msgstr "ئایا پەرەییکی بەتاڵ لە وێبگەڕەکەت بینڕاوە ؟ئایا هەڵەکانت لە کۆدەکان بینیوە ئان پشکنینت بۆ کردووە /"
|
2261 |
|
2262 |
+
#: includes/settings/tabs/wps-about.php:76
|
2263 |
msgid "Have you checked your PHP and web server error logs?"
|
2264 |
msgstr "ئایا PHP گوزارشی هەڵەکانی سێرڤێری وێبەکەت پشکنین کردووە ؟"
|
2265 |
|
2266 |
+
#: includes/settings/tabs/wps-about.php:79
|
2267 |
msgid "Still not having any luck?"
|
2268 |
msgstr "هێشتا شآنسو بەختێکت بۆ نییە ؟"
|
2269 |
|
2270 |
+
#: includes/settings/tabs/wps-about.php:79
|
2271 |
msgid "Then please open a new thread on the %s and we'll respond as soon as possible."
|
2272 |
msgstr "تکایە تیکێتێکی نوێ لە %s بنووسن تا لە کەمترین کات وەڵامەت بدەینەوە ."
|
2273 |
|
2274 |
+
#: includes/settings/tabs/wps-about.php:79
|
2275 |
msgid "WordPress.org support forum"
|
2276 |
msgstr "سەکۆی پشتیوانی WordPress.org"
|
2277 |
|
2278 |
+
#: includes/settings/tabs/wps-about.php:83
|
2279 |
msgid "Alternatively %s support is available as well."
|
2280 |
msgstr "مەکۆی پشتیوانی %s ئێمە ،ڕێگایێکی ترە بۆ دەستپێگەیشتن بە ئێمە"
|
2281 |
|
2282 |
+
#: includes/settings/tabs/wps-about.php:83
|
2283 |
msgid "Farsi"
|
2284 |
msgstr "فارسی"
|
2285 |
|
2286 |
+
#: includes/settings/tabs/wps-access-level.php:21
|
2287 |
msgid "WP Statistics Honey Pot Page"
|
2288 |
msgstr "پەڕەی ئاماری وۆردپرێسی مەنجەڵە هەنگوین"
|
2289 |
|
2290 |
+
#: includes/settings/tabs/wps-access-level.php:22
|
2291 |
msgid "This is the honey pot for WP Statistics to use, do not delete."
|
2292 |
msgstr "ئەم مەنجەڵە هەنگوێنە بۆ بەکارهێنانی ئاماری WPیە،نەبۆ سڕینەوە"
|
2293 |
|
2294 |
+
#: includes/settings/tabs/wps-access-level.php:45
|
2295 |
msgid "Access Levels"
|
2296 |
msgstr "ئاستی دەستپێگەیشتن"
|
2297 |
|
2298 |
+
#: includes/settings/tabs/wps-access-level.php:74
|
2299 |
msgid "Required user level to view WP Statistics"
|
2300 |
msgstr "ئاستی بەکارهێنەری پێویست بۆ دیتنی ئاماری وۆردپرێس"
|
2301 |
|
2302 |
+
#: includes/settings/tabs/wps-access-level.php:89
|
2303 |
msgid "Required user level to manage WP Statistics"
|
2304 |
msgstr "ئاستی بەکارهێنەری پێویست بۆ بەڕێوەبردنی ئاماری وۆردپرێس"
|
2305 |
|
2306 |
+
#: includes/settings/tabs/wps-access-level.php:97
|
2307 |
msgid "See the %s for details on capability levels."
|
2308 |
msgstr "دیتنی وردەکاری %s لە سەر ئاستی تواناییەکان."
|
2309 |
|
2310 |
+
#: includes/settings/tabs/wps-access-level.php:97
|
2311 |
msgid "WordPress Roles and Capabilities page"
|
2312 |
msgstr "پەڕەی ڕۆڵەکان و تواناییەکانی وۆردپرێس"
|
2313 |
|
2314 |
+
#: includes/settings/tabs/wps-access-level.php:98
|
2315 |
msgid "Hint: manage_network = Super Admin Network, manage_options = Administrator, edit_others_posts = Editor, publish_posts = Author, edit_posts = Contributor, read = Everyone."
|
2316 |
msgstr "خاڵ: manage_network =بەڕێوەبەری تۆڕ، manage_options = بەڕیوەبەر، edit_others_posts = سەرنووسەر، publish_posts = نووسەر، edit_posts = هاوبەش، read = گشتی."
|
2317 |
|
2318 |
+
#: includes/settings/tabs/wps-access-level.php:99
|
2319 |
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."
|
2320 |
msgstr "هەر ئەکێک لە بڕگەکان بە شێوازی بنەڕەتی لە وۆردپرێس دابین کراوە. بۆ وێنە بە هەڵبژاردنی publish_posts به نویسندهگاه، سەرنووسەرەکان، بەڕێوەبەرو بەرێوەبەری گشتی دەستپێگەیشتن دەدەیت."
|
2321 |
|
2322 |
+
#: includes/settings/tabs/wps-access-level.php:100
|
2323 |
msgid "If you need a more robust solution to delegate access you might want to look at %s in the WordPress plugin directory."
|
2324 |
msgstr "گەر پێویستت بە ڕێگاییک دیکە بۆ پەیوەندی لەگەڵ ڕۆڵی بەکارهینەرانی وۆردپرێس هەیە، نچاو لەم زیادکراوە %s بکەن"
|
2325 |
|
2326 |
+
#: includes/log/exclusions.php:197
|
2327 |
+
#: includes/settings/tabs/wps-access-level.php:105 wp-statistics.php:341
|
2328 |
+
#: wp-statistics.php:417
|
2329 |
msgid "Exclusions"
|
2330 |
msgstr "جیاکاریەکان"
|
2331 |
|
2332 |
+
#: includes/settings/tabs/wps-access-level.php:109
|
2333 |
msgid "Record exclusions"
|
2334 |
msgstr "تۆمارکردنی جیاکاریەکان"
|
2335 |
|
2336 |
+
#: includes/settings/tabs/wps-access-level.php:111
|
2337 |
+
#: includes/settings/tabs/wps-access-level.php:165
|
2338 |
+
#: includes/settings/tabs/wps-access-level.php:192
|
2339 |
msgid "Enable"
|
2340 |
msgstr "چالاک"
|
2341 |
|
2342 |
+
#: includes/settings/tabs/wps-access-level.php:112
|
2343 |
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."
|
2344 |
msgstr "جیاکردنی چینیک لە سەردانی ئامارەکە و هەڵگرتنی ئەان بە نووسینی هۆکارەکەیان لە خشتێکی تر.دەتوانێت ژمارەیێکی زۆر داتا درووستکرێت.بەسوودە دەتوانن ئامارێکی پتوتر لە سەردانەکان بەدەت بێنن."
|
2345 |
|
2346 |
+
#: includes/settings/tabs/wps-access-level.php:117
|
2347 |
msgid "Exclude User Roles"
|
2348 |
msgstr "دوورخستنەوەی ڕۆڵی بەکارهێنەر"
|
2349 |
|
2350 |
+
#: includes/settings/tabs/wps-access-level.php:133
|
2351 |
+
#: includes/settings/tabs/wps-access-level.php:247
|
2352 |
+
#: includes/settings/tabs/wps-access-level.php:254
|
2353 |
+
#: includes/settings/tabs/wps-access-level.php:261
|
2354 |
msgid "Exclude"
|
2355 |
msgstr "دوورخستنەوەکان"
|
2356 |
|
2357 |
+
#: includes/settings/tabs/wps-access-level.php:134
|
2358 |
msgid "Exclude %s role from data collection."
|
2359 |
msgstr "دوورخستنی ڕۆڵی بەکارهێنەر %s لە ژمارەی ئامار"
|
2360 |
|
2361 |
+
#: includes/settings/tabs/wps-access-level.php:140
|
2362 |
msgid "IP/Robot Exclusions"
|
2363 |
msgstr "جیاکردنی ڕۆبۆت/ئای پی"
|
2364 |
|
2365 |
+
#: includes/settings/tabs/wps-access-level.php:144
|
2366 |
msgid "Robot list"
|
2367 |
msgstr "لیستی ڕۆبۆتەکان"
|
2368 |
|
2369 |
+
#: includes/settings/tabs/wps-access-level.php:157
|
2370 |
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."
|
2371 |
msgstr "پیرستێک لە وەشەکان بۆ هەڵسەنگاندن و ناسینی ڕۆبۆتەکان (لە هەر هێڵ وەشەیێک بنووسن). چوونەژوورەوەکان دەبێت ٤ پیت بن."
|
2372 |
|
2373 |
+
#: includes/settings/tabs/wps-access-level.php:158
|
2374 |
msgid "Reset to Default"
|
2375 |
msgstr "ڕێکخستنەوه بۆ شێوازی بنەڕەتی"
|
2376 |
|
2377 |
+
#: includes/settings/tabs/wps-access-level.php:163
|
2378 |
msgid "Force robot list update after upgrades"
|
2379 |
msgstr "بەڕۆژکردنی لیستی ڕۆبۆتەکان پێش بەرزکردنەوە"
|
2380 |
|
2381 |
+
#: includes/settings/tabs/wps-access-level.php:166
|
2382 |
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."
|
2383 |
msgstr "پێرستی ڕۆبۆتەکان پاش بەڕۆژ بوونەوە ڕێکدەخرینەە.گەر ئەم برگە هەڵبژیرن پێرست لەدەست دەچێت"
|
2384 |
|
2385 |
+
#: includes/settings/tabs/wps-access-level.php:171
|
2386 |
msgid "Robot visit threshold"
|
2387 |
msgstr "لێواری سەفەری ڕۆبۆت"
|
2388 |
|
2389 |
+
#: includes/settings/tabs/wps-access-level.php:174
|
2390 |
msgid "Treat visitors with more than this number of visits per day as robots. 0 = disabled."
|
2391 |
msgstr "هەڵسوکەوتکردنی میوانان زۆرتر لەم ژمارە سەردانە لەهەر ڕۆژ بە عینوانی ڕۆبۆت 0 = ناچالاکە."
|
2392 |
|
2393 |
+
#: includes/settings/tabs/wps-access-level.php:179
|
2394 |
msgid "Excluded IP address list"
|
2395 |
msgstr "جیاکردنی پێرستی ناونیشانیIP"
|
2396 |
|
2397 |
+
#: includes/settings/tabs/wps-access-level.php:182
|
2398 |
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."
|
2399 |
msgstr "لیستێک لە ناونیشانی IPو Subnet Maskهای (لە هەر هیڵ یەک دانی) بۆ بەرگیری لە ژمێڕیاری ئامار (هەر دوو شێوازی 192.168.0.0/24 و 192.168.0.0/255.255.255.0 توانیی قبووڵ). بۆ دابین کردن تەنها ئادرەسێک لەIP پێویست نییەSubnet Maskزیادی کەن "
|
2400 |
|
2401 |
+
#: includes/settings/tabs/wps-access-level.php:183
|
2402 |
msgid "Add 10.0.0.0"
|
2403 |
msgstr "زیادکردنی10.0.0.0"
|
2404 |
|
2405 |
+
#: includes/settings/tabs/wps-access-level.php:184
|
2406 |
msgid "Add 172.16.0.0"
|
2407 |
msgstr "زۆرکردنی172.16.0.0"
|
2408 |
|
2409 |
+
#: includes/settings/tabs/wps-access-level.php:185
|
2410 |
msgid "Add 192.168.0.0"
|
2411 |
msgstr "زیادکردنی192.168.0.0"
|
2412 |
|
2413 |
+
#: includes/settings/tabs/wps-access-level.php:190
|
2414 |
msgid "Use honey pot"
|
2415 |
msgstr "بەکارهینانی مەنجەڵە هەنگوین"
|
2416 |
|
2417 |
+
#: includes/settings/tabs/wps-access-level.php:193
|
2418 |
msgid "Use a honey pot page to identify robots."
|
2419 |
msgstr "بەکارهینانی پەڕەیێک لە مەنجەڵە هەنگوین بۆ ناساندنی ڕۆبۆتەکان"
|
2420 |
|
2421 |
+
#: includes/settings/tabs/wps-access-level.php:198
|
2422 |
msgid "Honey pot post id"
|
2423 |
msgstr "مەنجەڵە هەنگوین ناردنی ناسنامە"
|
2424 |
|
2425 |
+
#: includes/settings/tabs/wps-access-level.php:201
|
2426 |
msgid "The post id to use for the honeypot page."
|
2427 |
msgstr "ناردنی ناسنامە بۆ بەکارهێنانی پەڕەی مەنجەڵە هەنگوین"
|
2428 |
|
2429 |
+
#: includes/settings/tabs/wps-access-level.php:202
|
2430 |
msgid "Create a new honey pot page"
|
2431 |
msgstr "درووستکردنی پەڕەی نوێی مەنجەڵە هەنگوین"
|
2432 |
|
2433 |
+
#: includes/settings/tabs/wps-access-level.php:207
|
2434 |
msgid "GeoIP Exclusions"
|
2435 |
msgstr "جیاکراوەکانی GeoIP"
|
2436 |
|
2437 |
+
#: includes/settings/tabs/wps-access-level.php:211
|
2438 |
msgid "Excluded countries list"
|
2439 |
msgstr "لیستی وەڵاتە جیاکراوەکان"
|
2440 |
|
2441 |
+
#: includes/settings/tabs/wps-access-level.php:214
|
2442 |
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."
|
2443 |
msgstr "لیستێک لە کۆدی وەڵاتەکان (ئەکدانە لە هەر هێڵ، هەر دوو نامە) لە کۆی ئامار بریتیە بەکارهێنان لە "000" (سێ سفر) رد بۆ وەڵاتە نەناسراوەکانە."
|
2444 |
|
2445 |
+
#: includes/settings/tabs/wps-access-level.php:219
|
2446 |
msgid "Included countries list"
|
2447 |
msgstr "لیستی وەڵاتەکان بریتین لە"
|
2448 |
|
2449 |
+
#: includes/settings/tabs/wps-access-level.php:222
|
2450 |
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."
|
2451 |
msgstr "لیستێک لە کۆدی وەڵاتەکان (لەهەر هێڵ یەکێک، هەر دوو نامە)لە کۆ ئامار بریتییە، گەر ئەم لیستە بەتاڵ نییە، تەنیا میوانەکان لە وەڵاتەکان تۆمار دەبن. بەکارهێنان لە "000" (سێ سفر) بۆ قەبووڵ نەکردنی وەڵاتە نەناسراوەکانە."
|
2452 |
|
2453 |
+
#: includes/settings/tabs/wps-access-level.php:227
|
2454 |
msgid "Host Exclusions"
|
2455 |
msgstr "جیاکاری هۆست"
|
2456 |
|
2457 |
+
#: includes/settings/tabs/wps-access-level.php:231
|
2458 |
msgid "Excluded hosts list"
|
2459 |
msgstr "جیاکاری لیستی هۆستەکان"
|
2460 |
|
2461 |
+
#: includes/settings/tabs/wps-access-level.php:234
|
2462 |
msgid "A list of fully qualified host names (ie. server.example.com, one per line) to exclude from statistics collection."
|
2463 |
msgstr "لیستێک لە ناونیشانەکانی خۆماڵی (بۆ وێنە: /wordpress/about، هەر هێڵ) لە کۆی ئامار دووردەخرێت."
|
2464 |
|
2465 |
+
#: includes/settings/tabs/wps-access-level.php:236
|
2466 |
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."
|
2467 |
msgstr "ئاگاداربە:ئەم بڕگە dns پێچەوانە لە هەر نوێکردنی پەڕە بۆ هەر ipێک کە لە سەر شەکرەی هەر سێرڤێرێک لە کاتژمێر بەکاردێت . گەر ئێوە بەرگیری بکەن لە هەر هۆستێکی تایبەتلەوانەیە کە ءیوە پەیدا بکەن پلەی هاوئاهەنگی لە نێوانگۆڕانی هۆست کە بە ناونیشانی ئایپی و بەڕۆژ بوونی ئاکامی سەردانەکان لە بوونی شەکرە لە وێبگەر."
|
2468 |
|
2469 |
+
#: includes/settings/tabs/wps-access-level.php:241
|
2470 |
msgid "Site URL Exclusions"
|
2471 |
msgstr "جیاکاری ئادرەسی ماڵپەڕ"
|
2472 |
|
2473 |
+
#: includes/settings/tabs/wps-access-level.php:245
|
2474 |
msgid "Excluded login page"
|
2475 |
msgstr "جیاکاری پەڕگەی هاتنە ژوور"
|
2476 |
|
2477 |
+
#: includes/settings/tabs/wps-access-level.php:248
|
2478 |
msgid "Exclude the login page for registering as a hit."
|
2479 |
msgstr "جیاکاری پەڕەی چوونەژوورەوە بۆ ناونووسی لە ژماردنی ئامار"
|
2480 |
|
2481 |
+
#: includes/settings/tabs/wps-access-level.php:252
|
2482 |
msgid "Excluded admin pages"
|
2483 |
msgstr "جیاکاری پەڕەی بەڕێوەبەر"
|
2484 |
|
2485 |
+
#: includes/settings/tabs/wps-access-level.php:255
|
2486 |
msgid "Exclude the admin pages for registering as a hit."
|
2487 |
msgstr "جیاکاری پەڕەی بەڕێوەبەر بۆ ناونووسی لە ژماردنی ئامار"
|
2488 |
|
2489 |
+
#: includes/settings/tabs/wps-access-level.php:259
|
2490 |
msgid "Excluded RSS feeds"
|
2491 |
msgstr "جیاکاری فیدی RSS "
|
2492 |
|
2493 |
+
#: includes/settings/tabs/wps-access-level.php:262
|
2494 |
msgid "Exclude the RSS feeds for registering as a hit."
|
2495 |
msgstr "جیاکاری پەڕەی فیدیRSS بۆ ناونووسی لە ژماردنی ئامار"
|
2496 |
|
2497 |
+
#: includes/settings/tabs/wps-browscap.php:22
|
2498 |
msgid "browscap settings"
|
2499 |
msgstr "ڕێکخستنەکانی browscap "
|
2500 |
|
2501 |
+
#: includes/settings/tabs/wps-browscap.php:27
|
2502 |
msgid "browscap usage"
|
2503 |
msgstr "سودوەرگرتن لە browscap"
|
2504 |
|
2505 |
+
#: includes/settings/tabs/wps-browscap.php:32
|
2506 |
+
#: includes/settings/tabs/wps-browscap.php:56
|
2507 |
+
#: includes/settings/tabs/wps-general.php:76
|
2508 |
+
#: includes/settings/tabs/wps-general.php:92
|
2509 |
+
#: includes/settings/tabs/wps-general.php:116
|
2510 |
+
#: includes/settings/tabs/wps-general.php:132
|
2511 |
+
#: includes/settings/tabs/wps-general.php:148
|
2512 |
+
#: includes/settings/tabs/wps-general.php:160
|
2513 |
+
#: includes/settings/tabs/wps-general.php:187
|
2514 |
+
#: includes/settings/tabs/wps-general.php:199
|
2515 |
+
#: includes/settings/tabs/wps-general.php:214
|
2516 |
+
#: includes/settings/tabs/wps-general.php:228
|
2517 |
+
#: includes/settings/tabs/wps-general.php:258
|
2518 |
+
#: includes/settings/tabs/wps-general.php:270
|
2519 |
+
#: includes/settings/tabs/wps-general.php:286
|
2520 |
+
#: includes/settings/tabs/wps-general.php:325
|
2521 |
+
#: includes/settings/tabs/wps-general.php:341
|
2522 |
+
#: includes/settings/tabs/wps-geoip.php:47
|
2523 |
+
#: includes/settings/tabs/wps-geoip.php:71
|
2524 |
+
#: includes/settings/tabs/wps-geoip.php:104
|
2525 |
+
#: includes/settings/tabs/wps-maintenance.php:40
|
2526 |
+
#: includes/settings/tabs/wps-maintenance.php:64
|
2527 |
+
#: includes/settings/tabs/wps-notifications.php:69
|
2528 |
+
#: includes/settings/tabs/wps-notifications.php:81
|
2529 |
+
#: includes/settings/tabs/wps-notifications.php:93
|
2530 |
+
#: includes/settings/tabs/wps-notifications.php:105
|
2531 |
+
#: includes/settings/tabs/wps-notifications.php:121
|
2532 |
+
#: includes/settings/tabs/wps-overview-display.php:87
|
2533 |
+
#: includes/settings/tabs/wps-overview-display.php:107
|
2534 |
+
#: includes/settings/tabs/wps-overview-display.php:147
|
2535 |
+
#: includes/settings/tabs/wps-overview-display.php:159
|
2536 |
msgid "Active"
|
2537 |
msgstr "چالاک"
|
2538 |
|
2539 |
+
#: includes/settings/tabs/wps-browscap.php:33
|
2540 |
msgid "The browscap database will be downloaded and used to detect robots."
|
2541 |
msgstr "بنکەی دراوە browscap داگرە بۆ بهەرە وەرگرتن لە رۆبۆت."
|
2542 |
|
2543 |
+
#: includes/settings/tabs/wps-browscap.php:39
|
2544 |
msgid "Update browscap Info"
|
2545 |
msgstr "Browscap بەڕۆژکردنی زانیاریەکانی"
|
2546 |
|
2547 |
+
#: includes/settings/tabs/wps-browscap.php:44
|
2548 |
msgid "Download browscap Database"
|
2549 |
msgstr "داگرتنی browscapبنکەدراوە"
|
2550 |
|
2551 |
+
#: includes/settings/tabs/wps-browscap.php:45
|
2552 |
+
#: includes/settings/tabs/wps-geoip.php:60
|
2553 |
msgid "Save changes on this page to download the update."
|
2554 |
msgstr "پاشکەوتی گۆڕانکاری لەم پەرگە و داگرتنی بەڕۆژکراوەکان"
|
2555 |
|
2556 |
+
#: includes/settings/tabs/wps-browscap.php:51
|
2557 |
msgid "Schedule weekly update of browscap DB"
|
2558 |
msgstr "ببەرنامەی بەڕۆژ کردنی هەفتانە browscap دسی بی"
|
2559 |
|
2560 |
+
#: includes/settings/tabs/wps-browscap.php:59
|
2561 |
+
#: includes/settings/tabs/wps-geoip.php:74
|
2562 |
msgid "Next update will be"
|
2563 |
msgstr "بەڕۆژ بوونی داهاتوو هەیە."
|
2564 |
|
2565 |
+
#: includes/settings/tabs/wps-browscap.php:74
|
2566 |
msgid "Download of the browscap database will be scheduled for once a week."
|
2567 |
msgstr "داگرتنی بنکەدراوەی browscap بۆبارێک لە حەفتە"
|
2568 |
|
2569 |
+
#: includes/settings/tabs/wps-general.php:50
|
2570 |
msgid "This will delete the manual when you save the settings, are you sure?"
|
2571 |
msgstr "پاش پاشکەتکردنی ڕێکخستنەکان پەڕگەی ڕینمایی دەسڕێتەوە ،دەڵنیای ؟"
|
2572 |
|
2573 |
+
#: includes/settings/tabs/wps-general.php:77
|
2574 |
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."
|
2575 |
msgstr "ئەم تایبەتمەندییە ناونیشانی IP لە بنکەی دراوە پاشکەوت دەکات بەڵآم بە جێگای لە هەشی تایبەت بەهرە وەردەگرێت. String بریکاری بەکارهێنەر کۆی \"Store\" ڕێکخستن ناچالاک دەبێت گەر ئەم بڕگە هەڵبژێردرێت. ئێوە دەتوانن بۆ گەڕانەوەی ناونیشان IP لەداهاتو گە ڕانەوەی زانیاریەکانی شوێن چالاک بکەن.."
|
2576 |
|
2577 |
+
#: includes/settings/tabs/wps-general.php:82 shortcode.php:129
|
2578 |
msgid "Users Online"
|
2579 |
msgstr "بەکارهێنەری سەرهێڵ"
|
2580 |
|
2581 |
+
#: includes/settings/tabs/wps-general.php:87
|
2582 |
msgid "User online"
|
2583 |
msgstr "بەکارهێنەری سەرهێڵ"
|
languages/wp_statistics-cs.mo
CHANGED
Binary file
|
languages/wp_statistics-cs.po
CHANGED
@@ -10,2535 +10,2574 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
msgid "to"
|
15 |
msgstr ""
|
16 |
|
17 |
-
#:
|
18 |
msgid "Go"
|
19 |
msgstr ""
|
20 |
|
21 |
-
#:
|
22 |
msgid "Rank #5"
|
23 |
msgstr ""
|
24 |
|
25 |
-
#:
|
26 |
msgid "Rank #4"
|
27 |
msgstr ""
|
28 |
|
29 |
-
#:
|
30 |
msgid "Rank #3"
|
31 |
msgstr ""
|
32 |
|
33 |
-
#:
|
34 |
msgid "Rank #1"
|
35 |
msgstr ""
|
36 |
|
37 |
-
#:
|
38 |
msgid "Rank #2"
|
39 |
msgstr ""
|
40 |
|
41 |
-
#:
|
42 |
msgid "Visits Table"
|
43 |
msgstr ""
|
44 |
|
45 |
-
#:
|
46 |
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."
|
47 |
msgstr ""
|
48 |
|
49 |
-
#:
|
50 |
msgid "This operation could take a long time on installs with many rows in the visits table."
|
51 |
msgstr ""
|
52 |
|
53 |
-
#:
|
54 |
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."
|
55 |
msgstr ""
|
56 |
|
57 |
-
#:
|
58 |
msgid "Filtered by"
|
59 |
msgstr ""
|
60 |
|
61 |
-
#:
|
62 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:925
|
63 |
msgid "Range"
|
64 |
msgstr ""
|
65 |
|
66 |
-
#:
|
67 |
msgid "MM/DD/YYYY"
|
68 |
msgstr "MM/DD/YYYY"
|
69 |
|
70 |
-
#:
|
71 |
msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
|
72 |
msgstr ""
|
73 |
|
74 |
-
#:
|
75 |
msgid "Force English"
|
76 |
msgstr ""
|
77 |
|
78 |
-
#:
|
79 |
msgid "Languages"
|
80 |
msgstr ""
|
81 |
|
82 |
-
#:
|
83 |
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."
|
84 |
msgstr ""
|
85 |
|
86 |
-
#:
|
87 |
msgid "A list of local urls (ie. /wordpress/about, one per line) to exclude from statistics collection."
|
88 |
msgstr ""
|
89 |
|
90 |
-
#:
|
91 |
msgid "Excluded URLs list"
|
92 |
msgstr ""
|
93 |
|
94 |
-
#:
|
95 |
msgid "Excluded URL"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#:
|
99 |
msgid "Last 365 Days (Year)"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#:
|
103 |
msgid "Last 30 Days (Month)"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#:
|
107 |
msgid "Last 7 Days (Week)"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#:
|
111 |
msgid "Yahoo!"
|
112 |
msgstr ""
|
113 |
|
114 |
-
#:
|
115 |
msgid "Yandex"
|
116 |
msgstr ""
|
117 |
|
118 |
-
#:
|
119 |
msgid "clearch.org"
|
120 |
msgstr ""
|
121 |
|
122 |
-
#:
|
123 |
msgid "DuckDuckGo"
|
124 |
msgstr ""
|
125 |
|
126 |
-
#:
|
127 |
msgid "Bing"
|
128 |
msgstr ""
|
129 |
|
130 |
-
#:
|
131 |
msgid "Baidu"
|
132 |
msgstr ""
|
133 |
|
134 |
-
#:
|
135 |
msgid "Hits in the last 20 days"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#:
|
139 |
msgid "Feeds"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#:
|
143 |
msgid "User Role"
|
144 |
msgstr ""
|
145 |
|
146 |
-
#:
|
147 |
msgid "Login Page"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#:
|
151 |
msgid "Admin Page"
|
152 |
msgstr ""
|
153 |
|
154 |
-
#:
|
155 |
msgid "Self Referral"
|
156 |
msgstr ""
|
157 |
|
158 |
-
#:
|
159 |
msgid "IP Match"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#:
|
163 |
msgid "Robot"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#:
|
167 |
msgid "Currently there are no users online in the site."
|
168 |
msgstr ""
|
169 |
|
170 |
-
#:
|
171 |
msgid "Robot Threshold"
|
172 |
msgstr ""
|
173 |
|
174 |
-
#:
|
175 |
msgid "Honey Pot"
|
176 |
msgstr ""
|
177 |
|
178 |
-
#:
|
179 |
msgid "Page Trending Stats"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#:
|
183 |
msgid "Hostname"
|
184 |
msgstr ""
|
185 |
|
186 |
-
#:
|
187 |
-
#:
|
188 |
-
#:
|
189 |
-
#:
|
190 |
-
#:
|
191 |
-
#:
|
192 |
-
#:
|
193 |
msgid "Enable or disable this feature"
|
194 |
msgstr "Zapnout nebo vypnout tuto vlastnost"
|
195 |
|
196 |
-
#:
|
197 |
msgid "Check for online users every"
|
198 |
msgstr "Kontrola online uživatelů každých"
|
199 |
|
200 |
-
#:
|
201 |
msgid "Second"
|
202 |
msgstr "Sekunda"
|
203 |
|
204 |
-
#:
|
205 |
msgid "Time for the check accurate online user in the site. Now: %s Second"
|
206 |
msgstr "Čas pro kontrolu přesné online uživatele v síti. Nyní: %s druhé"
|
207 |
|
208 |
-
#:
|
209 |
msgid "Record all user"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#:
|
213 |
msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
|
214 |
msgstr ""
|
215 |
|
216 |
-
#:
|
217 |
msgid "Store entire user agent string"
|
218 |
msgstr "Uložení celé identifikační řetězec prohlížeče"
|
219 |
|
220 |
-
#:
|
221 |
msgid "Only enabled for debugging"
|
222 |
msgstr "Jen zapnout pro debugging"
|
223 |
|
224 |
-
#:
|
225 |
msgid "Coefficient per visitor"
|
226 |
msgstr "Koeficient na návštěvníka"
|
227 |
|
228 |
-
#:
|
229 |
msgid "For each visit to account for several hits. Currently %s."
|
230 |
msgstr "Pro každou návštěvu k účtu pro několik hitů. V současné době %s."
|
231 |
|
232 |
-
#:
|
233 |
-
#:
|
234 |
-
#:
|
235 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:396
|
236 |
msgid "Pages"
|
237 |
msgstr "Stránky"
|
238 |
|
239 |
-
#:
|
240 |
msgid "Track all pages"
|
241 |
msgstr "Sledovat všechny stránky"
|
242 |
|
243 |
-
#:
|
244 |
msgid "Strip parameters from URI"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#:
|
248 |
msgid "This will remove anything after the ? in a URL."
|
249 |
msgstr ""
|
250 |
|
251 |
-
#:
|
252 |
msgid "Disable hits column in post/pages list"
|
253 |
msgstr "Zakázat hity sloupec v seznamu post/stránky"
|
254 |
|
255 |
-
#:
|
256 |
msgid "Miscellaneous"
|
257 |
msgstr "Různé"
|
258 |
|
259 |
-
#:
|
260 |
msgid "Show stats in menu bar"
|
261 |
msgstr "Zobrazit statistiky v menu baru"
|
262 |
|
263 |
-
#:
|
264 |
msgid "No"
|
265 |
msgstr "Ne"
|
266 |
|
267 |
-
#:
|
268 |
msgid "Yes"
|
269 |
msgstr "Ano"
|
270 |
|
271 |
-
#:
|
272 |
msgid "Show stats in admin menu bar"
|
273 |
msgstr "Zobrazit statistiku v admin menu baru"
|
274 |
|
275 |
-
#:
|
276 |
msgid "Hide admin notices about non active features"
|
277 |
msgstr "SKrýt admin oznámení o neaktivních vlastnostech"
|
278 |
|
279 |
-
#:
|
280 |
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."
|
281 |
msgstr "Ve výchozím nastavení WP Statistics zobrazí výstrahu, pokud některý ze základních funkcí jsou zakázány na každé stránce správce, tato možnost zakáže tato oznámení."
|
282 |
|
283 |
-
#:
|
284 |
msgid "Delete the manual"
|
285 |
msgstr "Odstranit manuál"
|
286 |
|
287 |
-
#:
|
288 |
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."
|
289 |
msgstr "Ve výchozím nastavení ukládá statistiky WP admin ruční v adresáři plugin (~ 5 meg), je-li tato možnost povolena, bude odstraněn dnes a během upgrade v budoucnu."
|
290 |
|
291 |
-
#:
|
292 |
msgid "Search Engines"
|
293 |
msgstr ""
|
294 |
|
295 |
-
#:
|
296 |
msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
|
297 |
msgstr "Zakázání všech vyhledávačů není dovoleno, to povede ve všech vyhledávačích je aktivní."
|
298 |
|
299 |
-
#:
|
300 |
msgid "disable"
|
301 |
msgstr "vypnout"
|
302 |
|
303 |
-
#:
|
304 |
msgid "Disable %s from data collection and reporting."
|
305 |
msgstr "Zakážete %s ze shromažďování údajů a výkaznictví."
|
306 |
|
307 |
-
#:
|
308 |
msgid "Charts"
|
309 |
msgstr "Grafy"
|
310 |
|
311 |
-
#:
|
312 |
msgid "Include totals"
|
313 |
msgstr "Zahrnout součty"
|
314 |
|
315 |
-
#:
|
316 |
msgid "Add a total line to charts with multiple values, like the search engine referrals"
|
317 |
msgstr "Přidání řádku Celkem se grafy s více hodnotami, jako je hledání vyhledávač doporučováním"
|
318 |
|
319 |
-
#:
|
320 |
msgid "GeoIP settings"
|
321 |
msgstr "GeoIP nastavení"
|
322 |
|
323 |
-
#:
|
324 |
msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
|
325 |
msgstr "IP umístění služby poskytované GeoLite2 data vytvořená MaxMind, k dispozici od %s."
|
326 |
|
327 |
-
#:
|
328 |
msgid "GeoIP collection"
|
329 |
msgstr "GeoIP kolekce"
|
330 |
|
331 |
-
#:
|
332 |
msgid "For get more information and location (country) from visitor, enable this feature."
|
333 |
msgstr "Zapněte tuto vlastnost pro získání více informací a lokace (země) návštěvníka."
|
334 |
|
335 |
-
#:
|
336 |
msgid "Update GeoIP Info"
|
337 |
msgstr "Aktualizovat GeoIP Info"
|
338 |
|
339 |
-
#:
|
340 |
msgid "Download GeoIP Database"
|
341 |
msgstr "Stáhnout GeoIP Databázi"
|
342 |
|
343 |
-
#:
|
344 |
msgid "Schedule monthly update of GeoIP DB"
|
345 |
msgstr "Naplánovat měsíční aktualizaci GeoIP DB"
|
346 |
|
347 |
-
#:
|
348 |
msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
|
349 |
msgstr "Stažení databáze GeoIP bude naplánováno na 2 dny po první úterý v měsíci."
|
350 |
|
351 |
-
#:
|
352 |
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)."
|
353 |
msgstr "Tato možnost bude také stáhnout databáze, je-li místní velikost souboru je menší než 1 KB (což obvykle znamená, že se zakázaným inzerováním, který je dodáván s plugin je stále na svém místě)."
|
354 |
|
355 |
-
#:
|
356 |
msgid "Populate missing GeoIP after update of GeoIP DB"
|
357 |
msgstr "Vyplnit chybějící GeoIP po aktualizaci GeoIP DB"
|
358 |
|
359 |
-
#:
|
360 |
msgid "Update any missing GeoIP data after downloading a new database."
|
361 |
msgstr "Aktualizovat chybějící GeoIP data po stažení nové databáze."
|
362 |
|
363 |
-
#:
|
364 |
msgid "Country code for private IP addresses"
|
365 |
msgstr ""
|
366 |
|
367 |
-
#:
|
368 |
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."
|
369 |
msgstr ""
|
370 |
|
371 |
-
#:
|
372 |
msgid "GeoIP collection is disabled due to the following reasons:"
|
373 |
msgstr "Kolekce GeoIP je zakázáno z následujících důvodů:"
|
374 |
|
375 |
-
#:
|
376 |
msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
|
377 |
msgstr "GeoIP kolekce vyžaduje PHP %s nebo vyšš, z důvodu instalované verze PHP je vlastnost vypnuta"
|
378 |
|
379 |
-
#:
|
380 |
msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
|
381 |
msgstr "GeoIP kolekce vyžaduje cURL PHP rozšíření a to není nahrané ve Vaší verzi PHP!"
|
382 |
|
383 |
-
#:
|
384 |
msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
|
385 |
msgstr "GeoIP kolekce vyžaduje BC Math PHP rozšíření a to není nahrané ve Vaší verzi PHP!"
|
386 |
|
387 |
-
#:
|
388 |
msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
|
389 |
msgstr "PHP nouzový režim zjištěn! GeoIP kolekce není podporován s PHP je nouzový režim povolen!"
|
390 |
|
391 |
-
#:
|
392 |
msgid "This will permanently delete data from the database each day, are you sure you want to enable this option?"
|
393 |
msgstr "To bude trvale odstranit data z databáze každý den, jste si jisti, že chcete povolit tuto možnost?"
|
394 |
|
395 |
-
#:
|
396 |
msgid "Database Maintenance"
|
397 |
msgstr "Údržba databáze"
|
398 |
|
399 |
-
#:
|
|
|
400 |
msgid "Run a daily WP Cron job to prune the databases"
|
401 |
msgstr "Spustit denní WP cronu prořezávat databáze"
|
402 |
|
403 |
-
#:
|
404 |
msgid "A WP Cron job will be run daily to prune any data older than a set number of days."
|
405 |
msgstr "WP má úloha poběží denně vyřadit všechna data, která je starší než stanovený počet dní."
|
406 |
|
407 |
-
#:
|
408 |
msgid "Prune data older than"
|
409 |
msgstr "Vyřadit data starší než"
|
410 |
|
411 |
-
#:
|
412 |
msgid "Days"
|
413 |
msgstr "Dny"
|
414 |
|
415 |
-
#:
|
416 |
msgid "The number of days to keep statistics for. Minimum value is 30 days. Invalid values will disable the daily maintenance."
|
417 |
msgstr "Počet dnů zachovat statistiky. Minimální hodnota je 30 dní. Neplatné hodnoty zakáže každodenní údržbu."
|
418 |
|
419 |
-
#:
|
420 |
msgid "Common Report Options"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#:
|
424 |
msgid "E-mail addresses"
|
425 |
msgstr "E-mail adresy"
|
426 |
|
427 |
-
#:
|
428 |
msgid "A comma separated list of e-mail addresses to send reports to."
|
429 |
msgstr ""
|
430 |
|
431 |
-
#:
|
432 |
msgid "Update Reports"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#:
|
436 |
-
#:
|
437 |
msgid "Browscap"
|
438 |
msgstr ""
|
439 |
|
440 |
-
#:
|
441 |
msgid "Send a report whenever the browscap.ini is updated."
|
442 |
msgstr ""
|
443 |
|
444 |
-
#:
|
445 |
-
#:
|
446 |
-
#:
|
447 |
msgid "GeoIP"
|
448 |
msgstr "GeoIP"
|
449 |
|
450 |
-
#:
|
451 |
msgid "Send a report whenever the GeoIP database is updated."
|
452 |
msgstr ""
|
453 |
|
454 |
-
#:
|
455 |
msgid "Pruning"
|
456 |
msgstr ""
|
457 |
|
458 |
-
#:
|
459 |
msgid "Send a report whenever the pruning of database is run."
|
460 |
msgstr ""
|
461 |
|
462 |
-
#:
|
463 |
msgid "Upgrade"
|
464 |
msgstr ""
|
465 |
|
466 |
-
#:
|
467 |
msgid "Send a report whenever the plugin is upgraded."
|
468 |
msgstr ""
|
469 |
|
470 |
-
#:
|
471 |
-
#:
|
472 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:174
|
473 |
msgid "Statistical reporting"
|
474 |
msgstr "Statistický reporting"
|
475 |
|
476 |
-
#:
|
477 |
msgid "Schedule"
|
478 |
msgstr "Plán"
|
479 |
|
480 |
-
#:
|
481 |
msgid "Select how often to receive statistical report."
|
482 |
msgstr ""
|
483 |
|
484 |
-
#:
|
485 |
msgid "Send reports via"
|
486 |
msgstr "Zaslat reporty via"
|
487 |
|
488 |
-
#:
|
489 |
msgid "Email"
|
490 |
msgstr "Email"
|
491 |
|
492 |
-
#:
|
493 |
msgid "SMS"
|
494 |
msgstr "SMS"
|
495 |
|
496 |
-
#:
|
497 |
msgid "Select delivery method for statistical report."
|
498 |
msgstr ""
|
499 |
|
500 |
-
#:
|
501 |
msgid "Note: To send SMS text messages please install the %s plugin."
|
502 |
msgstr "Poznámka: Poslat SMS textové zprávy prosím nainstalovat zásuvný modul %s."
|
503 |
|
504 |
-
#:
|
505 |
msgid "WordPress SMS"
|
506 |
msgstr "WordPress SMS"
|
507 |
|
508 |
-
#:
|
509 |
msgid "Report body"
|
510 |
msgstr "Tělo reportu"
|
511 |
|
512 |
-
#:
|
513 |
msgid "Enter the contents of the report."
|
514 |
msgstr ""
|
515 |
|
516 |
-
#:
|
517 |
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:"
|
518 |
msgstr ""
|
519 |
|
520 |
-
#:
|
521 |
-
#:
|
522 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:245
|
523 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:492
|
524 |
msgid "User Online"
|
525 |
msgstr "Online uživatelé"
|
526 |
|
527 |
-
#:
|
528 |
-
#:
|
529 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:251
|
530 |
msgid "Today Visitor"
|
531 |
msgstr "Dnešní návštěvník"
|
532 |
|
533 |
-
#:
|
534 |
-
#:
|
535 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:248
|
536 |
msgid "Today Visit"
|
537 |
msgstr "Dnešní návštěva"
|
538 |
|
539 |
-
#:
|
540 |
-
#:
|
541 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:257
|
542 |
msgid "Yesterday Visitor"
|
543 |
msgstr "Včerejší návštěvník"
|
544 |
|
545 |
-
#:
|
546 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:59
|
547 |
msgid "Yesterday Visit"
|
548 |
msgstr "Včerejší návštěva"
|
549 |
|
550 |
-
#:
|
551 |
-
#:
|
552 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:272
|
553 |
msgid "Total Visitor"
|
554 |
msgstr "Celkem návštěvníků"
|
555 |
|
556 |
-
#:
|
557 |
-
#:
|
558 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:269
|
559 |
msgid "Total Visit"
|
560 |
msgstr "Celkem návštěv"
|
561 |
|
562 |
-
#:
|
563 |
-
#:
|
564 |
msgid "None"
|
565 |
msgstr "Žádný"
|
566 |
|
567 |
-
#:
|
568 |
msgid "Summary Statistics"
|
569 |
msgstr "Souhrné statistiky"
|
570 |
|
571 |
-
#:
|
572 |
-
#:
|
573 |
msgid "About"
|
574 |
msgstr "O"
|
575 |
|
576 |
-
#:
|
577 |
msgid "Hits Statistical Chart"
|
578 |
msgstr "Statistický graf hitů"
|
579 |
|
580 |
-
#:
|
581 |
msgid "Search Engine Referrers Statistical Chart"
|
582 |
msgstr "Statistický graf odkazujících vyhledávačů"
|
583 |
|
584 |
-
#:
|
585 |
msgid "Top Pages Visited"
|
586 |
msgstr "Top navštívené stránky"
|
587 |
|
588 |
-
#:
|
589 |
msgid "Dashboard"
|
590 |
msgstr ""
|
591 |
|
592 |
-
#:
|
593 |
-
#:
|
594 |
-
#:
|
595 |
msgid "The following items are global to all users."
|
596 |
msgstr ""
|
597 |
|
598 |
-
#:
|
599 |
msgid "Disable dashboard widgets"
|
600 |
msgstr ""
|
601 |
|
602 |
-
#:
|
603 |
msgid "Disable the dashboard widgets."
|
604 |
msgstr ""
|
605 |
|
606 |
-
#:
|
607 |
msgid "Page/Post Editor"
|
608 |
msgstr ""
|
609 |
|
610 |
-
#:
|
611 |
msgid "Disable post/page editor widget"
|
612 |
msgstr ""
|
613 |
|
614 |
-
#:
|
615 |
msgid "Disable the page/post editor widget."
|
616 |
msgstr ""
|
617 |
|
618 |
-
#:
|
619 |
msgid "Map type"
|
620 |
msgstr "Typ mapy"
|
621 |
|
622 |
-
#:
|
623 |
-
#:
|
624 |
msgid "Google"
|
625 |
msgstr "Google"
|
626 |
|
627 |
-
#:
|
628 |
msgid "JQVMap"
|
629 |
msgstr "JQVMap"
|
630 |
|
631 |
-
#:
|
632 |
msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
|
633 |
msgstr "Zvolením \"Google\" bude použity mapové službý Google pro vykreslení návštěv (požaduje přístup na Google(. "
|
634 |
|
635 |
-
#:
|
636 |
msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
|
637 |
msgstr " \"JQVMap\" volba použije JQVMap javascript mapovou knihovnu k vykreslení návštěv (vyžaduje externí služby)."
|
638 |
|
639 |
-
#:
|
640 |
msgid "Disable map"
|
641 |
msgstr "Vypnout mapu"
|
642 |
|
643 |
-
#:
|
644 |
msgid "Disable the map display"
|
645 |
msgstr "Vypnout zobrazení mapy"
|
646 |
|
647 |
-
#:
|
648 |
msgid "Get country location from Google"
|
649 |
msgstr "Získat polohu země z Google"
|
650 |
|
651 |
-
#:
|
652 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
653 |
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\"."
|
654 |
|
655 |
-
#:
|
656 |
msgid "Overview Widgets to Display"
|
657 |
msgstr ""
|
658 |
|
659 |
-
#:
|
660 |
msgid "The following items are unique to each user. If you do not select the 'About' widget it will automatically be displayed in the last positon of column A."
|
661 |
msgstr "Následující položky jsou jedinečné pro každého uživatele. Pokud nezaškrtnete políčko \"O mně\" widget bude automaticky zobrazen v poslední pozici sloupce A."
|
662 |
|
663 |
-
#:
|
664 |
msgid "Slot"
|
665 |
msgstr "Slot"
|
666 |
|
667 |
-
#:
|
668 |
msgid "Column A"
|
669 |
msgstr "Sloupec A"
|
670 |
|
671 |
-
#:
|
672 |
msgid "Column B"
|
673 |
msgstr "Sloupec B"
|
674 |
|
675 |
-
#:
|
676 |
msgid "Slot 1"
|
677 |
msgstr "Slot 1"
|
678 |
|
679 |
-
#:
|
680 |
msgid "Slot 2"
|
681 |
msgstr "Slot 2"
|
682 |
|
683 |
-
#:
|
684 |
msgid "Slot 3"
|
685 |
msgstr "Slot 3"
|
686 |
|
687 |
-
#:
|
688 |
msgid "Slot 4"
|
689 |
msgstr "Slot 4"
|
690 |
|
691 |
-
#:
|
692 |
msgid "Slot 5"
|
693 |
msgstr "Slot 5"
|
694 |
|
695 |
-
#:
|
696 |
msgid "Slot 6"
|
697 |
msgstr "Slot 6"
|
698 |
|
699 |
-
#:
|
700 |
-
#:
|
701 |
msgid "N/A"
|
702 |
msgstr "N/A"
|
703 |
|
704 |
-
#:
|
705 |
msgid "Slot 7"
|
706 |
msgstr ""
|
707 |
|
708 |
-
#:
|
709 |
msgid "WP Statisitcs Removal"
|
710 |
msgstr ""
|
711 |
|
712 |
-
#:
|
713 |
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."
|
714 |
msgstr ""
|
715 |
|
716 |
-
#:
|
717 |
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."
|
718 |
msgstr ""
|
719 |
|
720 |
-
#:
|
721 |
msgid "Remove data and settings"
|
722 |
msgstr ""
|
723 |
|
724 |
-
#:
|
725 |
msgid "Remove"
|
726 |
msgstr ""
|
727 |
|
728 |
-
#:
|
729 |
msgid "Remove data and settings, this action cannot be undone."
|
730 |
msgstr ""
|
731 |
|
732 |
-
#:
|
733 |
msgid "General"
|
734 |
msgstr "Obecné"
|
735 |
|
736 |
-
#:
|
737 |
msgid "Notifications"
|
738 |
msgstr ""
|
739 |
|
740 |
-
#:
|
741 |
msgid "Dashboard/Overview"
|
742 |
msgstr ""
|
743 |
|
744 |
-
#:
|
745 |
msgid "Access/Exclusions"
|
746 |
msgstr "Přístupy/Vyjímky"
|
747 |
|
748 |
-
#:
|
749 |
msgid "browscap"
|
750 |
msgstr "Browscap"
|
751 |
|
752 |
-
#:
|
753 |
msgid "Maintenance"
|
754 |
msgstr "Údržba"
|
755 |
|
756 |
-
#:
|
757 |
msgid "Removal"
|
758 |
msgstr ""
|
759 |
|
760 |
-
#:
|
761 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:81
|
762 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:337
|
763 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:158
|
764 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:60
|
765 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:201
|
766 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:388
|
767 |
-
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:42
|
10 |
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
11 |
"Project-Id-Version: WP Statistics\n"
|
12 |
|
13 |
+
#: includes/settings/tabs/wps-general.php:281
|
14 |
+
msgid "Add page title to empty search words"
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: includes/settings/tabs/wps-general.php:287
|
18 |
+
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."
|
19 |
+
msgstr ""
|
20 |
+
|
21 |
+
#: includes/settings/tabs/wps-maintenance.php:77
|
22 |
+
msgid "The number of hits required to delete the visitor. Invalid values will disable the daily maintenance (must be 10 or greater)."
|
23 |
+
msgstr ""
|
24 |
+
|
25 |
+
#: includes/settings/tabs/wps-maintenance.php:71
|
26 |
+
msgid "Prune visitors with more than"
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: includes/settings/tabs/wps-maintenance.php:65
|
30 |
+
msgid "A WP Cron job will be run daily to prune any users statistics data where the user has more than the defined number of hits in a day (aka they are probably a bot)."
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:217
|
34 |
+
msgid "Purge visitors with more than"
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:222
|
38 |
+
msgid "hits"
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:223
|
42 |
+
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."
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: includes/functions/purge-hits.php:28
|
46 |
+
msgid "No visitors found to purge."
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: includes/functions/purge-hits.php:25
|
50 |
+
msgid "%s records purged successfully."
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: ajax.php:174 includes/functions/purge-hits.php:32
|
54 |
+
msgid "Number of hits must be greater than or equal to 10!"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: shortcode.php:132
|
58 |
+
msgid "Page Visits"
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: shortcode.php:135
|
62 |
+
msgid "Page Count"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: shortcode.php:136
|
66 |
+
msgid "Comment Count"
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: shortcode.php:137
|
70 |
+
msgid "Spam Count"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: shortcode.php:138
|
74 |
+
msgid "User Count"
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: shortcode.php:139
|
78 |
+
msgid "Post Average"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: shortcode.php:140
|
82 |
+
msgid "Comment Average"
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: shortcode.php:141
|
86 |
+
msgid "User Average"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: shortcode.php:149
|
90 |
+
msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: shortcode.php:153
|
94 |
+
msgid "Search Provider"
|
95 |
+
msgstr ""
|
96 |
+
|
97 |
+
#: shortcode.php:156
|
98 |
+
msgid "The search provider to get statistics on."
|
99 |
+
msgstr ""
|
100 |
+
|
101 |
+
#: shortcode.php:160
|
102 |
+
msgid "Number Format"
|
103 |
+
msgstr ""
|
104 |
+
|
105 |
+
#: shortcode.php:163
|
106 |
+
msgid "The format to display numbers in: i18n, english, none."
|
107 |
+
msgstr ""
|
108 |
+
|
109 |
+
#: shortcode.php:167
|
110 |
+
msgid "English"
|
111 |
+
msgstr ""
|
112 |
+
|
113 |
+
#: shortcode.php:168
|
114 |
+
msgid "International"
|
115 |
+
msgstr ""
|
116 |
+
|
117 |
+
#: includes/log/exclusions.php:191 includes/log/hit-statistics.php:163
|
118 |
+
msgid "Hits Statistics Summary"
|
119 |
+
msgstr ""
|
120 |
+
|
121 |
+
#: includes/log/exclusions.php:201 includes/log/hit-statistics.php:174
|
122 |
+
msgid "Chart Total"
|
123 |
+
msgstr ""
|
124 |
+
|
125 |
+
#: includes/log/exclusions.php:206 includes/log/hit-statistics.php:180
|
126 |
+
msgid "All Time Total"
|
127 |
+
msgstr ""
|
128 |
+
|
129 |
+
#: includes/log/log.php:57
|
130 |
+
msgid "Have you thought about donating to WP Statistics?"
|
131 |
+
msgstr ""
|
132 |
+
|
133 |
+
#: includes/settings/tabs/wps-about.php:20 wp-statistics.php:355
|
134 |
+
msgid "Donate"
|
135 |
+
msgstr ""
|
136 |
+
|
137 |
+
#: includes/settings/tabs/wps-about.php:24
|
138 |
+
msgid "Fell like showing us how much you enjoy WP Statistics? Drop by our %s page and show us some love!"
|
139 |
+
msgstr ""
|
140 |
+
|
141 |
+
#: includes/settings/tabs/wps-about.php:24
|
142 |
+
msgid "donation"
|
143 |
+
msgstr ""
|
144 |
+
|
145 |
+
#: includes/log/log.php:57
|
146 |
+
msgid "Donate Now!"
|
147 |
+
msgstr ""
|
148 |
+
|
149 |
+
#: includes/log/log.php:57
|
150 |
+
msgid "Close"
|
151 |
+
msgstr ""
|
152 |
+
|
153 |
+
#: shortcode.php:126
|
154 |
+
msgid "Select the statistic you wish to display."
|
155 |
+
msgstr ""
|
156 |
+
|
157 |
+
#: shortcode.php:123
|
158 |
+
msgid "Statistic"
|
159 |
+
msgstr ""
|
160 |
+
|
161 |
+
#: shortcode.php:134
|
162 |
+
msgid "Post Count"
|
163 |
+
msgstr ""
|
164 |
+
|
165 |
+
#: shortcode.php:146
|
166 |
+
msgid "Time Frame"
|
167 |
+
msgstr ""
|
168 |
+
|
169 |
+
#: includes/functions/functions.php:929
|
170 |
msgid "to"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: includes/functions/functions.php:929
|
174 |
msgid "Go"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: includes/log/top-pages.php:95
|
178 |
msgid "Rank #5"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: includes/log/top-pages.php:95
|
182 |
msgid "Rank #4"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: includes/log/top-pages.php:95
|
186 |
msgid "Rank #3"
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: includes/log/top-pages.php:95
|
190 |
msgid "Rank #1"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: includes/log/top-pages.php:95
|
194 |
msgid "Rank #2"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: includes/optimization/tabs/wps-optimization-database.php:56
|
198 |
msgid "Visits Table"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: includes/optimization/tabs/wps-optimization-database.php:70
|
202 |
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."
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: includes/optimization/tabs/wps-optimization-database.php:71
|
206 |
msgid "This operation could take a long time on installs with many rows in the visits table."
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: includes/optimization/tabs/wps-optimization-database.php:76
|
210 |
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."
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: includes/log/last-visitor.php:68
|
214 |
msgid "Filtered by"
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: includes/functions/functions.php:922 includes/functions/functions.php:925
|
|
|
218 |
msgid "Range"
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: includes/functions/functions.php:929
|
222 |
msgid "MM/DD/YYYY"
|
223 |
msgstr "MM/DD/YYYY"
|
224 |
|
225 |
+
#: includes/settings/tabs/wps-general.php:342
|
226 |
msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: includes/settings/tabs/wps-general.php:336
|
230 |
msgid "Force English"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: includes/settings/tabs/wps-general.php:331
|
234 |
msgid "Languages"
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: includes/settings/tabs/wps-access-level.php:271
|
238 |
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."
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: includes/settings/tabs/wps-access-level.php:269
|
242 |
msgid "A list of local urls (ie. /wordpress/about, one per line) to exclude from statistics collection."
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: includes/settings/tabs/wps-access-level.php:266
|
246 |
msgid "Excluded URLs list"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: includes/log/exclusions.php:24
|
250 |
msgid "Excluded URL"
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: includes/log/widgets/summary.php:66
|
254 |
msgid "Last 365 Days (Year)"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: includes/log/widgets/summary.php:60
|
258 |
msgid "Last 30 Days (Month)"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: includes/log/widgets/summary.php:54
|
262 |
msgid "Last 7 Days (Week)"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: includes/functions/functions.php:403
|
266 |
msgid "Yahoo!"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: includes/functions/functions.php:404
|
270 |
msgid "Yandex"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: includes/functions/functions.php:400
|
274 |
msgid "clearch.org"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: includes/functions/functions.php:401
|
278 |
msgid "DuckDuckGo"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: includes/functions/functions.php:399
|
282 |
msgid "Bing"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: includes/functions/functions.php:398
|
286 |
msgid "Baidu"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: editor.php:69
|
290 |
msgid "Hits in the last 20 days"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: includes/log/exclusions.php:24
|
294 |
msgid "Feeds"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: includes/log/exclusions.php:24
|
298 |
msgid "User Role"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: includes/log/exclusions.php:24
|
302 |
msgid "Login Page"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: includes/log/exclusions.php:24
|
306 |
msgid "Admin Page"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: includes/log/exclusions.php:24
|
310 |
msgid "Self Referral"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: includes/log/exclusions.php:24
|
314 |
msgid "IP Match"
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: includes/log/exclusions.php:24
|
318 |
msgid "Robot"
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: includes/log/online.php:100
|
322 |
msgid "Currently there are no users online in the site."
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: includes/log/exclusions.php:24
|
326 |
msgid "Robot Threshold"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: includes/log/exclusions.php:24
|
330 |
msgid "Honey Pot"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: includes/log/widgets/page.php:8
|
334 |
msgid "Page Trending Stats"
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: includes/log/exclusions.php:24
|
338 |
msgid "Hostname"
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: includes/settings/tabs/wps-general.php:93
|
342 |
+
#: includes/settings/tabs/wps-general.php:133
|
343 |
+
#: includes/settings/tabs/wps-general.php:149
|
344 |
+
#: includes/settings/tabs/wps-general.php:188
|
345 |
+
#: includes/settings/tabs/wps-general.php:200
|
346 |
+
#: includes/settings/tabs/wps-general.php:229
|
347 |
+
#: includes/settings/tabs/wps-notifications.php:122
|
348 |
msgid "Enable or disable this feature"
|
349 |
msgstr "Zapnout nebo vypnout tuto vlastnost"
|
350 |
|
351 |
+
#: includes/settings/tabs/wps-general.php:99
|
352 |
msgid "Check for online users every"
|
353 |
msgstr "Kontrola online uživatelů každých"
|
354 |
|
355 |
+
#: includes/settings/tabs/wps-general.php:104
|
356 |
msgid "Second"
|
357 |
msgstr "Sekunda"
|
358 |
|
359 |
+
#: includes/settings/tabs/wps-general.php:105
|
360 |
msgid "Time for the check accurate online user in the site. Now: %s Second"
|
361 |
msgstr "Čas pro kontrolu přesné online uživatele v síti. Nyní: %s druhé"
|
362 |
|
363 |
+
#: includes/settings/tabs/wps-general.php:111
|
364 |
msgid "Record all user"
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: includes/settings/tabs/wps-general.php:117
|
368 |
msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: includes/settings/tabs/wps-general.php:155
|
372 |
msgid "Store entire user agent string"
|
373 |
msgstr "Uložení celé identifikační řetězec prohlížeče"
|
374 |
|
375 |
+
#: includes/settings/tabs/wps-general.php:161
|
376 |
msgid "Only enabled for debugging"
|
377 |
msgstr "Jen zapnout pro debugging"
|
378 |
|
379 |
+
#: includes/settings/tabs/wps-general.php:167
|
380 |
msgid "Coefficient per visitor"
|
381 |
msgstr "Koeficient na návštěvníka"
|
382 |
|
383 |
+
#: includes/settings/tabs/wps-general.php:172
|
384 |
msgid "For each visit to account for several hits. Currently %s."
|
385 |
msgstr "Pro každou návštěvu k účtu pro několik hitů. V současné době %s."
|
386 |
|
387 |
+
#: includes/settings/tabs/wps-general.php:177
|
388 |
+
#: includes/settings/tabs/wps-general.php:182 wp-statistics.php:344
|
389 |
+
#: wp-statistics.php:420
|
|
|
390 |
msgid "Pages"
|
391 |
msgstr "Stránky"
|
392 |
|
393 |
+
#: includes/settings/tabs/wps-general.php:194
|
394 |
msgid "Track all pages"
|
395 |
msgstr "Sledovat všechny stránky"
|
396 |
|
397 |
+
#: includes/settings/tabs/wps-general.php:209
|
398 |
msgid "Strip parameters from URI"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: includes/settings/tabs/wps-general.php:215
|
402 |
msgid "This will remove anything after the ? in a URL."
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: includes/settings/tabs/wps-general.php:223
|
406 |
msgid "Disable hits column in post/pages list"
|
407 |
msgstr "Zakázat hity sloupec v seznamu post/stránky"
|
408 |
|
409 |
+
#: includes/settings/tabs/wps-general.php:234
|
410 |
msgid "Miscellaneous"
|
411 |
msgstr "Různé"
|
412 |
|
413 |
+
#: includes/settings/tabs/wps-general.php:239
|
414 |
msgid "Show stats in menu bar"
|
415 |
msgstr "Zobrazit statistiky v menu baru"
|
416 |
|
417 |
+
#: includes/settings/tabs/wps-general.php:244
|
418 |
msgid "No"
|
419 |
msgstr "Ne"
|
420 |
|
421 |
+
#: includes/settings/tabs/wps-general.php:245
|
422 |
msgid "Yes"
|
423 |
msgstr "Ano"
|
424 |
|
425 |
+
#: includes/settings/tabs/wps-general.php:247
|
426 |
msgid "Show stats in admin menu bar"
|
427 |
msgstr "Zobrazit statistiku v admin menu baru"
|
428 |
|
429 |
+
#: includes/settings/tabs/wps-general.php:253
|
430 |
msgid "Hide admin notices about non active features"
|
431 |
msgstr "SKrýt admin oznámení o neaktivních vlastnostech"
|
432 |
|
433 |
+
#: includes/settings/tabs/wps-general.php:259
|
434 |
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."
|
435 |
msgstr "Ve výchozím nastavení WP Statistics zobrazí výstrahu, pokud některý ze základních funkcí jsou zakázány na každé stránce správce, tato možnost zakáže tato oznámení."
|
436 |
|
437 |
+
#: includes/settings/tabs/wps-general.php:265
|
438 |
msgid "Delete the manual"
|
439 |
msgstr "Odstranit manuál"
|
440 |
|
441 |
+
#: includes/settings/tabs/wps-general.php:271
|
442 |
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."
|
443 |
msgstr "Ve výchozím nastavení ukládá statistiky WP admin ruční v adresáři plugin (~ 5 meg), je-li tato možnost povolena, bude odstraněn dnes a během upgrade v budoucnu."
|
444 |
|
445 |
+
#: includes/settings/tabs/wps-general.php:276
|
446 |
msgid "Search Engines"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: includes/settings/tabs/wps-general.php:293
|
450 |
msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
|
451 |
msgstr "Zakázání všech vyhledávačů není dovoleno, to povede ve všech vyhledávačích je aktivní."
|
452 |
|
453 |
+
#: includes/settings/tabs/wps-general.php:308
|
454 |
msgid "disable"
|
455 |
msgstr "vypnout"
|
456 |
|
457 |
+
#: includes/settings/tabs/wps-general.php:309
|
458 |
msgid "Disable %s from data collection and reporting."
|
459 |
msgstr "Zakážete %s ze shromažďování údajů a výkaznictví."
|
460 |
|
461 |
+
#: includes/settings/tabs/wps-general.php:315
|
462 |
msgid "Charts"
|
463 |
msgstr "Grafy"
|
464 |
|
465 |
+
#: includes/settings/tabs/wps-general.php:320
|
466 |
msgid "Include totals"
|
467 |
msgstr "Zahrnout součty"
|
468 |
|
469 |
+
#: includes/settings/tabs/wps-general.php:326
|
470 |
msgid "Add a total line to charts with multiple values, like the search engine referrals"
|
471 |
msgstr "Přidání řádku Celkem se grafy s více hodnotami, jako je hledání vyhledávač doporučováním"
|
472 |
|
473 |
+
#: includes/settings/tabs/wps-geoip.php:27
|
474 |
msgid "GeoIP settings"
|
475 |
msgstr "GeoIP nastavení"
|
476 |
|
477 |
+
#: includes/settings/tabs/wps-geoip.php:32
|
478 |
msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
|
479 |
msgstr "IP umístění služby poskytované GeoLite2 data vytvořená MaxMind, k dispozici od %s."
|
480 |
|
481 |
+
#: includes/settings/tabs/wps-geoip.php:42
|
482 |
msgid "GeoIP collection"
|
483 |
msgstr "GeoIP kolekce"
|
484 |
|
485 |
+
#: includes/settings/tabs/wps-geoip.php:48
|
486 |
msgid "For get more information and location (country) from visitor, enable this feature."
|
487 |
msgstr "Zapněte tuto vlastnost pro získání více informací a lokace (země) návštěvníka."
|
488 |
|
489 |
+
#: includes/settings/tabs/wps-geoip.php:54
|
490 |
msgid "Update GeoIP Info"
|
491 |
msgstr "Aktualizovat GeoIP Info"
|
492 |
|
493 |
+
#: includes/settings/tabs/wps-geoip.php:59
|
494 |
msgid "Download GeoIP Database"
|
495 |
msgstr "Stáhnout GeoIP Databázi"
|
496 |
|
497 |
+
#: includes/settings/tabs/wps-geoip.php:66
|
498 |
msgid "Schedule monthly update of GeoIP DB"
|
499 |
msgstr "Naplánovat měsíční aktualizaci GeoIP DB"
|
500 |
|
501 |
+
#: includes/settings/tabs/wps-geoip.php:92
|
502 |
msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
|
503 |
msgstr "Stažení databáze GeoIP bude naplánováno na 2 dny po první úterý v měsíci."
|
504 |
|
505 |
+
#: includes/settings/tabs/wps-geoip.php:93
|
506 |
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)."
|
507 |
msgstr "Tato možnost bude také stáhnout databáze, je-li místní velikost souboru je menší než 1 KB (což obvykle znamená, že se zakázaným inzerováním, který je dodáván s plugin je stále na svém místě)."
|
508 |
|
509 |
+
#: includes/settings/tabs/wps-geoip.php:99
|
510 |
msgid "Populate missing GeoIP after update of GeoIP DB"
|
511 |
msgstr "Vyplnit chybějící GeoIP po aktualizaci GeoIP DB"
|
512 |
|
513 |
+
#: includes/settings/tabs/wps-geoip.php:105
|
514 |
msgid "Update any missing GeoIP data after downloading a new database."
|
515 |
msgstr "Aktualizovat chybějící GeoIP data po stažení nové databáze."
|
516 |
|
517 |
+
#: includes/settings/tabs/wps-geoip.php:111
|
518 |
msgid "Country code for private IP addresses"
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: includes/settings/tabs/wps-geoip.php:116
|
522 |
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."
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: includes/settings/tabs/wps-geoip.php:127
|
526 |
msgid "GeoIP collection is disabled due to the following reasons:"
|
527 |
msgstr "Kolekce GeoIP je zakázáno z následujících důvodů:"
|
528 |
|
529 |
+
#: includes/settings/tabs/wps-geoip.php:130
|
530 |
msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
|
531 |
msgstr "GeoIP kolekce vyžaduje PHP %s nebo vyšš, z důvodu instalované verze PHP je vlastnost vypnuta"
|
532 |
|
533 |
+
#: includes/settings/tabs/wps-geoip.php:135
|
534 |
msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
|
535 |
msgstr "GeoIP kolekce vyžaduje cURL PHP rozšíření a to není nahrané ve Vaší verzi PHP!"
|
536 |
|
537 |
+
#: includes/settings/tabs/wps-geoip.php:141
|
538 |
msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
|
539 |
msgstr "GeoIP kolekce vyžaduje BC Math PHP rozšíření a to není nahrané ve Vaší verzi PHP!"
|
540 |
|
541 |
+
#: includes/settings/tabs/wps-geoip.php:147
|
542 |
msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
|
543 |
msgstr "PHP nouzový režim zjištěn! GeoIP kolekce není podporován s PHP je nouzový režim povolen!"
|
544 |
|
545 |
+
#: includes/settings/tabs/wps-maintenance.php:20
|
546 |
msgid "This will permanently delete data from the database each day, are you sure you want to enable this option?"
|
547 |
msgstr "To bude trvale odstranit data z databáze každý den, jste si jisti, že chcete povolit tuto možnost?"
|
548 |
|
549 |
+
#: includes/settings/tabs/wps-maintenance.php:30
|
550 |
msgid "Database Maintenance"
|
551 |
msgstr "Údržba databáze"
|
552 |
|
553 |
+
#: includes/settings/tabs/wps-maintenance.php:35
|
554 |
+
#: includes/settings/tabs/wps-maintenance.php:59
|
555 |
msgid "Run a daily WP Cron job to prune the databases"
|
556 |
msgstr "Spustit denní WP cronu prořezávat databáze"
|
557 |
|
558 |
+
#: includes/settings/tabs/wps-maintenance.php:41
|
559 |
msgid "A WP Cron job will be run daily to prune any data older than a set number of days."
|
560 |
msgstr "WP má úloha poběží denně vyřadit všechna data, která je starší než stanovený počet dní."
|
561 |
|
562 |
+
#: includes/settings/tabs/wps-maintenance.php:47
|
563 |
msgid "Prune data older than"
|
564 |
msgstr "Vyřadit data starší než"
|
565 |
|
566 |
+
#: includes/settings/tabs/wps-maintenance.php:52
|
567 |
msgid "Days"
|
568 |
msgstr "Dny"
|
569 |
|
570 |
+
#: includes/settings/tabs/wps-maintenance.php:53
|
571 |
msgid "The number of days to keep statistics for. Minimum value is 30 days. Invalid values will disable the daily maintenance."
|
572 |
msgstr "Počet dnů zachovat statistiky. Minimální hodnota je 30 dní. Neplatné hodnoty zakáže každodenní údržbu."
|
573 |
|
574 |
+
#: includes/settings/tabs/wps-notifications.php:44
|
575 |
msgid "Common Report Options"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: includes/settings/tabs/wps-notifications.php:49
|
579 |
msgid "E-mail addresses"
|
580 |
msgstr "E-mail adresy"
|
581 |
|
582 |
+
#: includes/settings/tabs/wps-notifications.php:54
|
583 |
msgid "A comma separated list of e-mail addresses to send reports to."
|
584 |
msgstr ""
|
585 |
|
586 |
+
#: includes/settings/tabs/wps-notifications.php:59
|
587 |
msgid "Update Reports"
|
588 |
msgstr ""
|
589 |
|
590 |
+
#: includes/log/exclusions.php:24
|
591 |
+
#: includes/settings/tabs/wps-notifications.php:64
|
592 |
msgid "Browscap"
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: includes/settings/tabs/wps-notifications.php:70
|
596 |
msgid "Send a report whenever the browscap.ini is updated."
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: includes/log/exclusions.php:24
|
600 |
+
#: includes/settings/tabs/wps-notifications.php:76
|
601 |
+
#: includes/settings/wps-settings.php:104
|
602 |
msgid "GeoIP"
|
603 |
msgstr "GeoIP"
|
604 |
|
605 |
+
#: includes/settings/tabs/wps-notifications.php:82
|
606 |
msgid "Send a report whenever the GeoIP database is updated."
|
607 |
msgstr ""
|
608 |
|
609 |
+
#: includes/settings/tabs/wps-notifications.php:88
|
610 |
msgid "Pruning"
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: includes/settings/tabs/wps-notifications.php:94
|
614 |
msgid "Send a report whenever the pruning of database is run."
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: includes/settings/tabs/wps-notifications.php:100
|
618 |
msgid "Upgrade"
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: includes/settings/tabs/wps-notifications.php:106
|
622 |
msgid "Send a report whenever the plugin is upgraded."
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: includes/settings/tabs/wps-notifications.php:111
|
626 |
+
#: includes/settings/tabs/wps-notifications.php:116 schedule.php:199
|
|
|
627 |
msgid "Statistical reporting"
|
628 |
msgstr "Statistický reporting"
|
629 |
|
630 |
+
#: includes/settings/tabs/wps-notifications.php:129
|
631 |
msgid "Schedule"
|
632 |
msgstr "Plán"
|
633 |
|
634 |
+
#: includes/settings/tabs/wps-notifications.php:153
|
635 |
msgid "Select how often to receive statistical report."
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: includes/settings/tabs/wps-notifications.php:159
|
639 |
msgid "Send reports via"
|
640 |
msgstr "Zaslat reporty via"
|
641 |
|
642 |
+
#: includes/settings/tabs/wps-notifications.php:165
|
643 |
msgid "Email"
|
644 |
msgstr "Email"
|
645 |
|
646 |
+
#: includes/settings/tabs/wps-notifications.php:167
|
647 |
msgid "SMS"
|
648 |
msgstr "SMS"
|
649 |
|
650 |
+
#: includes/settings/tabs/wps-notifications.php:170
|
651 |
msgid "Select delivery method for statistical report."
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: includes/settings/tabs/wps-notifications.php:173
|
655 |
msgid "Note: To send SMS text messages please install the %s plugin."
|
656 |
msgstr "Poznámka: Poslat SMS textové zprávy prosím nainstalovat zásuvný modul %s."
|
657 |
|
658 |
+
#: includes/settings/tabs/wps-notifications.php:173
|
659 |
msgid "WordPress SMS"
|
660 |
msgstr "WordPress SMS"
|
661 |
|
662 |
+
#: includes/settings/tabs/wps-notifications.php:180
|
663 |
msgid "Report body"
|
664 |
msgstr "Tělo reportu"
|
665 |
|
666 |
+
#: includes/settings/tabs/wps-notifications.php:185
|
667 |
msgid "Enter the contents of the report."
|
668 |
msgstr ""
|
669 |
|
670 |
+
#: includes/settings/tabs/wps-notifications.php:187
|
671 |
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:"
|
672 |
msgstr ""
|
673 |
|
674 |
+
#: includes/settings/tabs/wps-notifications.php:188 widget.php:38
|
675 |
+
#: widget.php:245 wp-statistics.php:522
|
|
|
|
|
676 |
msgid "User Online"
|
677 |
msgstr "Online uživatelé"
|
678 |
|
679 |
+
#: includes/settings/tabs/wps-notifications.php:189 widget.php:52
|
680 |
+
#: widget.php:251
|
|
|
681 |
msgid "Today Visitor"
|
682 |
msgstr "Dnešní návštěvník"
|
683 |
|
684 |
+
#: includes/settings/tabs/wps-notifications.php:190 widget.php:45
|
685 |
+
#: widget.php:248
|
|
|
686 |
msgid "Today Visit"
|
687 |
msgstr "Dnešní návštěva"
|
688 |
|
689 |
+
#: includes/settings/tabs/wps-notifications.php:191 widget.php:66
|
690 |
+
#: widget.php:257
|
|
|
691 |
msgid "Yesterday Visitor"
|
692 |
msgstr "Včerejší návštěvník"
|
693 |
|
694 |
+
#: includes/settings/tabs/wps-notifications.php:192 widget.php:59
|
|
|
695 |
msgid "Yesterday Visit"
|
696 |
msgstr "Včerejší návštěva"
|
697 |
|
698 |
+
#: includes/settings/tabs/wps-notifications.php:193 widget.php:101
|
699 |
+
#: widget.php:272
|
|
|
700 |
msgid "Total Visitor"
|
701 |
msgstr "Celkem návštěvníků"
|
702 |
|
703 |
+
#: includes/settings/tabs/wps-notifications.php:194 widget.php:94
|
704 |
+
#: widget.php:269
|
|
|
705 |
msgid "Total Visit"
|
706 |
msgstr "Celkem návštěv"
|
707 |
|
708 |
+
#: includes/settings/tabs/wps-overview-display.php:23
|
709 |
+
#: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:166
|
710 |
msgid "None"
|
711 |
msgstr "Žádný"
|
712 |
|
713 |
+
#: includes/settings/tabs/wps-overview-display.php:24
|
714 |
msgid "Summary Statistics"
|
715 |
msgstr "Souhrné statistiky"
|
716 |
|
717 |
+
#: includes/settings/tabs/wps-overview-display.php:28
|
718 |
+
#: includes/settings/wps-settings.php:108
|
719 |
msgid "About"
|
720 |
msgstr "O"
|
721 |
|
722 |
+
#: includes/settings/tabs/wps-overview-display.php:34
|
723 |
msgid "Hits Statistical Chart"
|
724 |
msgstr "Statistický graf hitů"
|
725 |
|
726 |
+
#: includes/settings/tabs/wps-overview-display.php:36
|
727 |
msgid "Search Engine Referrers Statistical Chart"
|
728 |
msgstr "Statistický graf odkazujících vyhledávačů"
|
729 |
|
730 |
+
#: includes/settings/tabs/wps-overview-display.php:38
|
731 |
msgid "Top Pages Visited"
|
732 |
msgstr "Top navštívené stránky"
|
733 |
|
734 |
+
#: includes/settings/tabs/wps-overview-display.php:73
|
735 |
msgid "Dashboard"
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: includes/settings/tabs/wps-overview-display.php:77
|
739 |
+
#: includes/settings/tabs/wps-overview-display.php:97
|
740 |
+
#: includes/settings/tabs/wps-overview-display.php:117
|
741 |
msgid "The following items are global to all users."
|
742 |
msgstr ""
|
743 |
|
744 |
+
#: includes/settings/tabs/wps-overview-display.php:82
|
745 |
msgid "Disable dashboard widgets"
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: includes/settings/tabs/wps-overview-display.php:88
|
749 |
msgid "Disable the dashboard widgets."
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: includes/settings/tabs/wps-overview-display.php:93
|
753 |
msgid "Page/Post Editor"
|
754 |
msgstr ""
|
755 |
|
756 |
+
#: includes/settings/tabs/wps-overview-display.php:102
|
757 |
msgid "Disable post/page editor widget"
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: includes/settings/tabs/wps-overview-display.php:108
|
761 |
msgid "Disable the page/post editor widget."
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: includes/settings/tabs/wps-overview-display.php:122
|
765 |
msgid "Map type"
|
766 |
msgstr "Typ mapy"
|
767 |
|
768 |
+
#: includes/functions/functions.php:402
|
769 |
+
#: includes/settings/tabs/wps-overview-display.php:128
|
770 |
msgid "Google"
|
771 |
msgstr "Google"
|
772 |
|
773 |
+
#: includes/settings/tabs/wps-overview-display.php:128
|
774 |
msgid "JQVMap"
|
775 |
msgstr "JQVMap"
|
776 |
|
777 |
+
#: includes/settings/tabs/wps-overview-display.php:135
|
778 |
msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
|
779 |
msgstr "Zvolením \"Google\" bude použity mapové službý Google pro vykreslení návštěv (požaduje přístup na Google(. "
|
780 |
|
781 |
+
#: includes/settings/tabs/wps-overview-display.php:136
|
782 |
msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
|
783 |
msgstr " \"JQVMap\" volba použije JQVMap javascript mapovou knihovnu k vykreslení návštěv (vyžaduje externí služby)."
|
784 |
|
785 |
+
#: includes/settings/tabs/wps-overview-display.php:142
|
786 |
msgid "Disable map"
|
787 |
msgstr "Vypnout mapu"
|
788 |
|
789 |
+
#: includes/settings/tabs/wps-overview-display.php:148
|
790 |
msgid "Disable the map display"
|
791 |
msgstr "Vypnout zobrazení mapy"
|
792 |
|
793 |
+
#: includes/settings/tabs/wps-overview-display.php:154
|
794 |
msgid "Get country location from Google"
|
795 |
msgstr "Získat polohu země z Google"
|
796 |
|
797 |
+
#: includes/settings/tabs/wps-overview-display.php:160
|
798 |
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
799 |
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\"."
|
800 |
|
801 |
+
#: includes/settings/tabs/wps-overview-display.php:171
|
802 |
msgid "Overview Widgets to Display"
|
803 |
msgstr ""
|
804 |
|
805 |
+
#: includes/settings/tabs/wps-overview-display.php:175
|
806 |
msgid "The following items are unique to each user. If you do not select the 'About' widget it will automatically be displayed in the last positon of column A."
|
807 |
msgstr "Následující položky jsou jedinečné pro každého uživatele. Pokud nezaškrtnete políčko \"O mně\" widget bude automaticky zobrazen v poslední pozici sloupce A."
|
808 |
|
809 |
+
#: includes/settings/tabs/wps-overview-display.php:180
|
810 |
msgid "Slot"
|
811 |
msgstr "Slot"
|
812 |
|
813 |
+
#: includes/settings/tabs/wps-overview-display.php:184
|
814 |
msgid "Column A"
|
815 |
msgstr "Sloupec A"
|
816 |
|
817 |
+
#: includes/settings/tabs/wps-overview-display.php:188
|
818 |
msgid "Column B"
|
819 |
msgstr "Sloupec B"
|
820 |
|
821 |
+
#: includes/settings/tabs/wps-overview-display.php:194
|
822 |
msgid "Slot 1"
|
823 |
msgstr "Slot 1"
|
824 |
|
825 |
+
#: includes/settings/tabs/wps-overview-display.php:224
|
826 |
msgid "Slot 2"
|
827 |
msgstr "Slot 2"
|
828 |
|
829 |
+
#: includes/settings/tabs/wps-overview-display.php:254
|
830 |
msgid "Slot 3"
|
831 |
msgstr "Slot 3"
|
832 |
|
833 |
+
#: includes/settings/tabs/wps-overview-display.php:284
|
834 |
msgid "Slot 4"
|
835 |
msgstr "Slot 4"
|
836 |
|
837 |
+
#: includes/settings/tabs/wps-overview-display.php:314
|
838 |
msgid "Slot 5"
|
839 |
msgstr "Slot 5"
|
840 |
|
841 |
+
#: includes/settings/tabs/wps-overview-display.php:344
|
842 |
msgid "Slot 6"
|
843 |
msgstr "Slot 6"
|
844 |
|
845 |
+
#: includes/settings/tabs/wps-overview-display.php:348
|
846 |
+
#: includes/settings/tabs/wps-overview-display.php:370
|
847 |
msgid "N/A"
|
848 |
msgstr "N/A"
|
849 |
|
850 |
+
#: includes/settings/tabs/wps-overview-display.php:366
|
851 |
msgid "Slot 7"
|
852 |
msgstr ""
|
853 |
|
854 |
+
#: includes/settings/tabs/wps-removal.php:15
|
855 |
msgid "WP Statisitcs Removal"
|
856 |
msgstr ""
|
857 |
|
858 |
+
#: includes/settings/tabs/wps-removal.php:20
|
859 |
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."
|
860 |
msgstr ""
|
861 |
|
862 |
+
#: includes/settings/tabs/wps-removal.php:23
|
863 |
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."
|
864 |
msgstr ""
|
865 |
|
866 |
+
#: includes/settings/tabs/wps-removal.php:29
|
867 |
msgid "Remove data and settings"
|
868 |
msgstr ""
|
869 |
|
870 |
+
#: includes/settings/tabs/wps-removal.php:34
|
871 |
msgid "Remove"
|
872 |
msgstr ""
|
873 |
|
874 |
+
#: includes/settings/tabs/wps-removal.php:35
|
875 |
msgid "Remove data and settings, this action cannot be undone."
|
876 |
msgstr ""
|
877 |
|
878 |
+
#: includes/settings/wps-settings.php:100
|
879 |
msgid "General"
|
880 |
msgstr "Obecné"
|
881 |
|
882 |
+
#: includes/settings/wps-settings.php:101
|
883 |
msgid "Notifications"
|
884 |
msgstr ""
|
885 |
|
886 |
+
#: includes/settings/wps-settings.php:102
|
887 |
msgid "Dashboard/Overview"
|
888 |
msgstr ""
|
889 |
|
890 |
+
#: includes/settings/wps-settings.php:103
|
891 |
msgid "Access/Exclusions"
|
892 |
msgstr "Přístupy/Vyjímky"
|
893 |
|
894 |
+
#: includes/settings/wps-settings.php:105
|
895 |
msgid "browscap"
|
896 |
msgstr "Browscap"
|
897 |
|
898 |
+
#: includes/settings/wps-settings.php:106
|
899 |
msgid "Maintenance"
|
900 |
msgstr "Údržba"
|
901 |
|
902 |
+
#: includes/settings/wps-settings.php:107
|
903 |
msgid "Removal"
|
904 |
msgstr ""
|
905 |
|
906 |
+
#: includes/settings/tabs/wps-access-l
|
|
|
|
|
|
|
|
|
|
|
|
|
|