Version Description
- PHP 5.3 is now required for WP Statistics! DO NOT UPGRADE TO 8.0 IF YOU ARE RUNNING AN OLDER VERSION!
- BACKUP YOUR DATABASE BEFORE INSTALLING! This release alters the table structure of the database.
- Support for old format substitution codes in the statistics reports has been removed, the upgrade now converts them to short codes but you should verify the report content after upgrading.
=
Download this release
Release Info
Developer | GregRoss |
Plugin | WP Statistics |
Version | 8.0 |
Comparing to | |
See all releases |
Code changes from version 7.4 to 8.0
- assets/images/logo-250.png +0 -0
- composer.json +1 -1
- dashboard.php +72 -0
- includes/classes/Browscap.php +1160 -0
- includes/classes/hits.class.php +41 -13
- includes/functions/country-codes.php +0 -1
- includes/functions/parse-user-agent.php +134 -126
- includes/log/exclusions.php +2 -2
- includes/log/log.php +1 -0
- includes/log/top-pages.php +1 -1
- includes/log/widgets/about.php +35 -0
- includes/log/widgets/countries.php +0 -34
- includes/log/widgets/pages.php +1 -1
- includes/log/widgets/summary.php +2 -2
- includes/optimization/delete-agents.php +4 -1
- includes/optimization/delete-platforms.php +4 -1
- includes/optimization/empty.php +1 -1
- includes/optimization/purge-data.php +8 -8
- includes/optimization/tabs/wps-optimization-database.php +20 -4
- includes/optimization/tabs/wps-optimization-purging.php +20 -20
- includes/optimization/tabs/wps-optimization-resources.php +79 -6
- includes/optimization/tabs/wps-optimization-updates.php +1 -46
- includes/optimization/wps-optimization.php +8 -4
- includes/settings/tabs/wps-about.php +11 -7
- includes/settings/tabs/wps-access-level.php +1 -1
- includes/settings/tabs/wps-browscap.php +74 -0
- includes/settings/tabs/wps-general.php +2 -2
- includes/settings/wps-settings.php +14 -3
- languages/default.mo +0 -0
- languages/default.po +749 -757
- languages/wp-statistics-ar.mo +0 -0
- languages/wp-statistics-ar.po +0 -2083
- languages/wp_statistics-ar.mo +0 -0
- languages/wp_statistics-ar.po +1165 -801
- languages/wp_statistics-bg_BG.mo +0 -0
- languages/wp_statistics-bg_BG.po +1904 -658
- languages/wp_statistics-bn_BD.mo +0 -0
- languages/wp_statistics-bn_BD.po +2 -2
- languages/wp_statistics-cs.mo +0 -0
- languages/wp_statistics-cs.po +2119 -0
- languages/wp_statistics-de_DE.mo +0 -0
- languages/wp_statistics-de_DE.po +1229 -1170
- languages/wp_statistics-es_ES.mo +0 -0
- languages/wp_statistics-es_ES.po +1930 -501
- languages/wp_statistics-fa_IR.mo +0 -0
- languages/wp_statistics-fa_IR.po +442 -322
assets/images/logo-250.png
CHANGED
Binary file
|
composer.json
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
{
|
2 |
"require": {
|
3 |
-
"geoip2/geoip2": "
|
4 |
}
|
5 |
}
|
1 |
{
|
2 |
"require": {
|
3 |
+
"geoip2/geoip2": "2.*"
|
4 |
}
|
5 |
}
|
dashboard.php
ADDED
@@ -0,0 +1,72 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
function wp_statistics_dashboard_widget_load() {
|
3 |
+
wp_add_dashboard_widget( 'wp-statistics-dashboard-widget', 'Statistics', 'wp_statistics_dashboard_widget', $control_callback = null );
|
4 |
+
}
|
5 |
+
|
6 |
+
function wp_statistics_dashboard_widget() {
|
7 |
+
GLOBAL $WP_Statistics;
|
8 |
+
|
9 |
+
if (!current_user_can(wp_statistics_validate_capability($WP_Statistics->get_option('read_capability', 'manage_option')))) {
|
10 |
+
return;
|
11 |
+
}
|
12 |
+
|
13 |
+
wp_enqueue_style('log-css', plugin_dir_url(__FILE__) . 'assets/css/log.css', true, '1.1');
|
14 |
+
|
15 |
+
$widget_options = $WP_Statistics->get_option('widget');
|
16 |
+
?>
|
17 |
+
<table width="100%" class="widefat table-stats" id="summary-stats">
|
18 |
+
<tbody>
|
19 |
+
<tr>
|
20 |
+
<th><?php _e('User(s) Online', 'wp_statistics'); ?>:</th>
|
21 |
+
<th colspan="2" id="th-colspan"><span><?php echo wp_statistics_useronline(); ?></span></th>
|
22 |
+
</tr>
|
23 |
+
|
24 |
+
<tr>
|
25 |
+
<th width="60%"></th>
|
26 |
+
<th class="th-center"><?php _e('Visitor', 'wp_statistics'); ?></th>
|
27 |
+
<th class="th-center"><?php _e('Visit', 'wp_statistics'); ?></th>
|
28 |
+
</tr>
|
29 |
+
|
30 |
+
<tr>
|
31 |
+
<th><?php _e('Today', 'wp_statistics'); ?>:</th>
|
32 |
+
<th class="th-center"><span><?php echo number_format_i18n(wp_statistics_visitor('today',null,true)); ?></span></th>
|
33 |
+
<th class="th-center"><span><?php echo number_format_i18n(wp_statistics_visit('today')); ?></span></th>
|
34 |
+
</tr>
|
35 |
+
|
36 |
+
<tr>
|
37 |
+
<th><?php _e('Yesterday', 'wp_statistics'); ?>:</th>
|
38 |
+
<th class="th-center"><span><?php echo number_format_i18n(wp_statistics_visitor('yesterday',null,true)); ?></span></th>
|
39 |
+
<th class="th-center"><span><?php echo number_format_i18n(wp_statistics_visit('yesterday')); ?></span></th>
|
40 |
+
</tr>
|
41 |
+
|
42 |
+
<tr>
|
43 |
+
<th><?php _e('Week', 'wp_statistics'); ?>:</th>
|
44 |
+
<th class="th-center"><span><?php echo number_format_i18n(wp_statistics_visitor('week',null,true)); ?></span></th>
|
45 |
+
<th class="th-center"><span><?php echo number_format_i18n(wp_statistics_visit('week')); ?></span></th>
|
46 |
+
</tr>
|
47 |
+
|
48 |
+
<tr>
|
49 |
+
<th><?php _e('Month', 'wp_statistics'); ?>:</th>
|
50 |
+
<th class="th-center"><span><?php echo number_format_i18n(wp_statistics_visitor('month',null,true)); ?></span></th>
|
51 |
+
<th class="th-center"><span><?php echo number_format_i18n(wp_statistics_visit('month')); ?></span></th>
|
52 |
+
</tr>
|
53 |
+
|
54 |
+
<tr>
|
55 |
+
<th><?php _e('Year', 'wp_statistics'); ?>:</th>
|
56 |
+
<th class="th-center"><span><?php echo number_format_i18n(wp_statistics_visitor('year',null,true)); ?></span></th>
|
57 |
+
<th class="th-center"><span><?php echo number_format_i18n(wp_statistics_visit('year')); ?></span></th>
|
58 |
+
</tr>
|
59 |
+
|
60 |
+
<tr>
|
61 |
+
<th><?php _e('Total', 'wp_statistics'); ?>:</th>
|
62 |
+
<th class="th-center"><span><?php echo number_format_i18n(wp_statistics_visitor('total',null,true)); ?></span></th>
|
63 |
+
<th class="th-center"><span><?php echo number_format_i18n(wp_statistics_visit('total')); ?></span></th>
|
64 |
+
</tr>
|
65 |
+
|
66 |
+
</tbody>
|
67 |
+
</table>
|
68 |
+
<?php
|
69 |
+
}
|
70 |
+
|
71 |
+
add_action( 'wp_dashboard_setup', 'wp_statistics_dashboard_widget_load' );
|
72 |
+
?>
|
includes/classes/Browscap.php
ADDED
@@ -0,0 +1,1160 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace phpbrowscap;
|
4 |
+
|
5 |
+
/**
|
6 |
+
* Browscap.ini parsing class with caching and update capabilities
|
7 |
+
*
|
8 |
+
* PHP version 5
|
9 |
+
*
|
10 |
+
* Copyright (c) 2006-2012 Jonathan Stoppani
|
11 |
+
*
|
12 |
+
* Permission is hereby granted, free of charge, to any person obtaining a
|
13 |
+
* copy of this software and associated documentation files (the "Software"),
|
14 |
+
* to deal in the Software without restriction, including without limitation
|
15 |
+
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
16 |
+
* and/or sell copies of the Software, and to permit persons to whom the
|
17 |
+
* Software is furnished to do so, subject to the following conditions:
|
18 |
+
*
|
19 |
+
* The above copyright notice and this permission notice shall be included
|
20 |
+
* in all copies or substantial portions of the Software.
|
21 |
+
*
|
22 |
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
23 |
+
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
24 |
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
25 |
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
26 |
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
27 |
+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
28 |
+
* THE SOFTWARE.
|
29 |
+
*
|
30 |
+
* @package Browscap
|
31 |
+
* @author Jonathan Stoppani <jonathan@stoppani.name>
|
32 |
+
* @author Vítor Brandão <noisebleed@noiselabs.org>
|
33 |
+
* @author Mikołaj Misiurewicz <quentin389+phpb@gmail.com>
|
34 |
+
* @copyright Copyright (c) 2006-2012 Jonathan Stoppani
|
35 |
+
* @version 1.0
|
36 |
+
* @license http://www.opensource.org/licenses/MIT MIT License
|
37 |
+
* @link https://github.com/GaretJax/phpbrowscap/
|
38 |
+
*/
|
39 |
+
class Browscap
|
40 |
+
{
|
41 |
+
/**
|
42 |
+
* Current version of the class.
|
43 |
+
*/
|
44 |
+
const VERSION = '2.0.4';
|
45 |
+
|
46 |
+
const CACHE_FILE_VERSION = '2.0.4';
|
47 |
+
|
48 |
+
/**
|
49 |
+
* Different ways to access remote and local files.
|
50 |
+
*
|
51 |
+
* UPDATE_FOPEN: Uses the fopen url wrapper (use file_get_contents).
|
52 |
+
* UPDATE_FSOCKOPEN: Uses the socket functions (fsockopen).
|
53 |
+
* UPDATE_CURL: Uses the cURL extension.
|
54 |
+
* UPDATE_LOCAL: Updates from a local file (file_get_contents).
|
55 |
+
*/
|
56 |
+
const UPDATE_FOPEN = 'URL-wrapper';
|
57 |
+
const UPDATE_FSOCKOPEN = 'socket';
|
58 |
+
const UPDATE_CURL = 'cURL';
|
59 |
+
const UPDATE_LOCAL = 'local';
|
60 |
+
|
61 |
+
/**
|
62 |
+
* Options for regex patterns.
|
63 |
+
*
|
64 |
+
* REGEX_DELIMITER: Delimiter of all the regex patterns in the whole class.
|
65 |
+
* REGEX_MODIFIERS: Regex modifiers.
|
66 |
+
*/
|
67 |
+
const REGEX_DELIMITER = '@';
|
68 |
+
const REGEX_MODIFIERS = 'i';
|
69 |
+
const COMPRESSION_PATTERN_START = '@';
|
70 |
+
const COMPRESSION_PATTERN_DELIMITER = '|';
|
71 |
+
|
72 |
+
/**
|
73 |
+
* The values to quote in the ini file
|
74 |
+
*/
|
75 |
+
const VALUES_TO_QUOTE = 'Browser|Parent';
|
76 |
+
|
77 |
+
const BROWSCAP_VERSION_KEY = 'GJK_Browscap_Version';
|
78 |
+
|
79 |
+
/**
|
80 |
+
* The headers to be sent for checking the version and requesting the file.
|
81 |
+
*/
|
82 |
+
const REQUEST_HEADERS = "GET %s HTTP/1.0\r\nHost: %s\r\nUser-Agent: %s\r\nConnection: Close\r\n\r\n";
|
83 |
+
|
84 |
+
/**
|
85 |
+
* Options for auto update capabilities
|
86 |
+
*
|
87 |
+
* $remoteVerUrl: The location to use to check out if a new version of the
|
88 |
+
* browscap.ini file is available.
|
89 |
+
* $remoteIniUrl: The location from which download the ini file.
|
90 |
+
* The placeholder for the file should be represented by a %s.
|
91 |
+
* $timeout: The timeout for the requests.
|
92 |
+
* $updateInterval: The update interval in seconds.
|
93 |
+
* $errorInterval: The next update interval in seconds in case of an error.
|
94 |
+
* $doAutoUpdate: Flag to disable the automatic interval based update.
|
95 |
+
* $updateMethod: The method to use to update the file, has to be a value of
|
96 |
+
* an UPDATE_* constant, null or false.
|
97 |
+
*
|
98 |
+
* The default source file type is changed from normal to full. The performance difference
|
99 |
+
* is MINIMAL, so there is no reason to use the standard file whatsoever. Either go for light,
|
100 |
+
* which is blazing fast, or get the full one. (note: light version doesn't work, a fix is on its way)
|
101 |
+
*/
|
102 |
+
public $remoteIniUrl = 'http://browscap.org/stream?q=PHP_BrowscapINI';
|
103 |
+
public $remoteVerUrl = 'http://browscap.org/version';
|
104 |
+
public $timeout = 5;
|
105 |
+
public $updateInterval = 432000; // 5 days
|
106 |
+
public $errorInterval = 7200; // 2 hours
|
107 |
+
public $doAutoUpdate = true;
|
108 |
+
public $updateMethod = null;
|
109 |
+
|
110 |
+
/**
|
111 |
+
* The path of the local version of the browscap.ini file from which to
|
112 |
+
* update (to be set only if used).
|
113 |
+
*
|
114 |
+
* @var string
|
115 |
+
*/
|
116 |
+
public $localFile = null;
|
117 |
+
|
118 |
+
/**
|
119 |
+
* The useragent to include in the requests made by the class during the
|
120 |
+
* update process.
|
121 |
+
*
|
122 |
+
* @var string
|
123 |
+
*/
|
124 |
+
public $userAgent = 'Browser Capabilities Project - PHP Browscap/%v %m';
|
125 |
+
|
126 |
+
/**
|
127 |
+
* Flag to enable only lowercase indexes in the result.
|
128 |
+
* The cache has to be rebuilt in order to apply this option.
|
129 |
+
*
|
130 |
+
* @var bool
|
131 |
+
*/
|
132 |
+
public $lowercase = false;
|
133 |
+
|
134 |
+
/**
|
135 |
+
* Flag to enable/disable silent error management.
|
136 |
+
* In case of an error during the update process the class returns an empty
|
137 |
+
* array/object if the update process can't take place and the browscap.ini
|
138 |
+
* file does not exist.
|
139 |
+
*
|
140 |
+
* @var bool
|
141 |
+
*/
|
142 |
+
public $silent = false;
|
143 |
+
|
144 |
+
/**
|
145 |
+
* Where to store the cached PHP arrays.
|
146 |
+
*
|
147 |
+
* @var string
|
148 |
+
*/
|
149 |
+
public $cacheFilename = 'cache.php';
|
150 |
+
|
151 |
+
/**
|
152 |
+
* Where to store the downloaded ini file.
|
153 |
+
*
|
154 |
+
* @var string
|
155 |
+
*/
|
156 |
+
public $iniFilename = 'browscap.ini';
|
157 |
+
|
158 |
+
/**
|
159 |
+
* Path to the cache directory
|
160 |
+
*
|
161 |
+
* @var string
|
162 |
+
*/
|
163 |
+
public $cacheDir = null;
|
164 |
+
|
165 |
+
/**
|
166 |
+
* Flag to be set to true after loading the cache
|
167 |
+
*
|
168 |
+
* @var bool
|
169 |
+
*/
|
170 |
+
protected $_cacheLoaded = false;
|
171 |
+
|
172 |
+
/**
|
173 |
+
* Where to store the value of the included PHP cache file
|
174 |
+
*
|
175 |
+
* @var array
|
176 |
+
*/
|
177 |
+
protected $_userAgents = array();
|
178 |
+
protected $_browsers = array();
|
179 |
+
protected $_patterns = array();
|
180 |
+
protected $_properties = array();
|
181 |
+
protected $_source_version;
|
182 |
+
|
183 |
+
/**
|
184 |
+
* An associative array of associative arrays in the format
|
185 |
+
* `$arr['wrapper']['option'] = $value` passed to stream_context_create()
|
186 |
+
* when building a stream resource.
|
187 |
+
*
|
188 |
+
* Proxy settings are stored in this variable.
|
189 |
+
*
|
190 |
+
* @see http://www.php.net/manual/en/function.stream-context-create.php
|
191 |
+
*
|
192 |
+
* @var array
|
193 |
+
*/
|
194 |
+
protected $_streamContextOptions = array();
|
195 |
+
|
196 |
+
/**
|
197 |
+
* A valid context resource created with stream_context_create().
|
198 |
+
*
|
199 |
+
* @see http://www.php.net/manual/en/function.stream-context-create.php
|
200 |
+
*
|
201 |
+
* @var resource
|
202 |
+
*/
|
203 |
+
protected $_streamContext = null;
|
204 |
+
|
205 |
+
/**
|
206 |
+
* Constructor class, checks for the existence of (and loads) the cache and
|
207 |
+
* if needed updated the definitions
|
208 |
+
*
|
209 |
+
* @param string $cache_dir
|
210 |
+
*
|
211 |
+
* @throws Exception
|
212 |
+
*/
|
213 |
+
public function __construct($cache_dir)
|
214 |
+
{
|
215 |
+
// has to be set to reach E_STRICT compatibility, does not affect system/app settings
|
216 |
+
date_default_timezone_set(date_default_timezone_get());
|
217 |
+
|
218 |
+
if (!isset($cache_dir)) {
|
219 |
+
throw new Exception('You have to provide a path to read/store the browscap cache file');
|
220 |
+
}
|
221 |
+
|
222 |
+
$old_cache_dir = $cache_dir;
|
223 |
+
$cache_dir = realpath($cache_dir);
|
224 |
+
|
225 |
+
if (false === $cache_dir) {
|
226 |
+
throw new Exception(
|
227 |
+
sprintf(
|
228 |
+
'The cache path %s is invalid. Are you sure that it exists and that you have permission to access it?',
|
229 |
+
$old_cache_dir
|
230 |
+
)
|
231 |
+
);
|
232 |
+
}
|
233 |
+
|
234 |
+
// Is the cache dir really the directory or is it directly the file?
|
235 |
+
if (substr($cache_dir, -4) === '.php') {
|
236 |
+
$this->cacheFilename = basename($cache_dir);
|
237 |
+
$this->cacheDir = dirname($cache_dir);
|
238 |
+
} else {
|
239 |
+
$this->cacheDir = $cache_dir;
|
240 |
+
}
|
241 |
+
|
242 |
+
$this->cacheDir .= DIRECTORY_SEPARATOR;
|
243 |
+
}
|
244 |
+
|
245 |
+
/**
|
246 |
+
* @return mixed
|
247 |
+
*/
|
248 |
+
public function getSourceVersion()
|
249 |
+
{
|
250 |
+
return $this->_source_version;
|
251 |
+
}
|
252 |
+
|
253 |
+
/**
|
254 |
+
* XXX parse
|
255 |
+
*
|
256 |
+
* Gets the information about the browser by User Agent
|
257 |
+
*
|
258 |
+
* @param string $user_agent the user agent string
|
259 |
+
* @param bool $return_array whether return an array or an object
|
260 |
+
*
|
261 |
+
* @throws Exception
|
262 |
+
* @return \stdClass|array the object containing the browsers details. Array if
|
263 |
+
* $return_array is set to true.
|
264 |
+
*/
|
265 |
+
public function getBrowser($user_agent = null, $return_array = false)
|
266 |
+
{
|
267 |
+
// Load the cache at the first request
|
268 |
+
if (!$this->_cacheLoaded) {
|
269 |
+
$cache_file = $this->cacheDir . $this->cacheFilename;
|
270 |
+
$ini_file = $this->cacheDir . $this->iniFilename;
|
271 |
+
|
272 |
+
// Set the interval only if needed
|
273 |
+
if ($this->doAutoUpdate && file_exists($ini_file)) {
|
274 |
+
$interval = time() - filemtime($ini_file);
|
275 |
+
} else {
|
276 |
+
$interval = 0;
|
277 |
+
}
|
278 |
+
|
279 |
+
$update_cache = true;
|
280 |
+
|
281 |
+
if (file_exists($cache_file) && file_exists($ini_file) && ($interval <= $this->updateInterval)) {
|
282 |
+
if ($this->_loadCache($cache_file)) {
|
283 |
+
$update_cache = false;
|
284 |
+
}
|
285 |
+
}
|
286 |
+
|
287 |
+
if ($update_cache) {
|
288 |
+
try {
|
289 |
+
$this->updateCache();
|
290 |
+
} catch (Exception $e) {
|
291 |
+
if (file_exists($ini_file)) {
|
292 |
+
// Adjust the filemtime to the $errorInterval
|
293 |
+
touch($ini_file, time() - $this->updateInterval + $this->errorInterval);
|
294 |
+
} elseif ($this->silent) {
|
295 |
+
// Return an array if silent mode is active and the ini db doesn't exsist
|
296 |
+
return array();
|
297 |
+
}
|
298 |
+
|
299 |
+
if (!$this->silent) {
|
300 |
+
throw $e;
|
301 |
+
}
|
302 |
+
}
|
303 |
+
|
304 |
+
if (!$this->_loadCache($cache_file)) {
|
305 |
+
throw new Exception('Cannot load this cache version - the cache format is not compatible.');
|
306 |
+
}
|
307 |
+
}
|
308 |
+
}
|
309 |
+
|
310 |
+
// Automatically detect the useragent
|
311 |
+
if (!isset($user_agent)) {
|
312 |
+
if (isset($_SERVER['HTTP_USER_AGENT'])) {
|
313 |
+
$user_agent = $_SERVER['HTTP_USER_AGENT'];
|
314 |
+
} else {
|
315 |
+
$user_agent = '';
|
316 |
+
}
|
317 |
+
}
|
318 |
+
|
319 |
+
$browser = array();
|
320 |
+
foreach ($this->_patterns as $pattern => $pattern_data) {
|
321 |
+
if (preg_match($pattern . 'i', $user_agent, $matches)) {
|
322 |
+
if (1 == count($matches)) {
|
323 |
+
// standard match
|
324 |
+
$key = $pattern_data;
|
325 |
+
|
326 |
+
$simple_match = true;
|
327 |
+
} else {
|
328 |
+
$pattern_data = unserialize($pattern_data);
|
329 |
+
|
330 |
+
// match with numeric replacements
|
331 |
+
array_shift($matches);
|
332 |
+
|
333 |
+
$match_string = self::COMPRESSION_PATTERN_START
|
334 |
+
. implode(self::COMPRESSION_PATTERN_DELIMITER, $matches);
|
335 |
+
|
336 |
+
if (!isset($pattern_data[$match_string])) {
|
337 |
+
// partial match - numbers are not present, but everything else is ok
|
338 |
+
continue;
|
339 |
+
}
|
340 |
+
|
341 |
+
$key = $pattern_data[$match_string];
|
342 |
+
|
343 |
+
$simple_match = false;
|
344 |
+
}
|
345 |
+
|
346 |
+
$browser = array(
|
347 |
+
$user_agent, // Original useragent
|
348 |
+
trim(strtolower($pattern), self::REGEX_DELIMITER),
|
349 |
+
$this->_pregUnQuote($pattern, $simple_match ? false : $matches)
|
350 |
+
);
|
351 |
+
|
352 |
+
$browser = $value = $browser + unserialize($this->_browsers[$key]);
|
353 |
+
|
354 |
+
while (array_key_exists(3, $value)) {
|
355 |
+
$value = unserialize($this->_browsers[$value[3]]);
|
356 |
+
$browser += $value;
|
357 |
+
}
|
358 |
+
|
359 |
+
if (!empty($browser[3]) && array_key_exists($browser[3], $this->_userAgents)) {
|
360 |
+
$browser[3] = $this->_userAgents[$browser[3]];
|
361 |
+
}
|
362 |
+
|
363 |
+
break;
|
364 |
+
}
|
365 |
+
}
|
366 |
+
|
367 |
+
// Add the keys for each property
|
368 |
+
$array = array();
|
369 |
+
foreach ($browser as $key => $value) {
|
370 |
+
if ($value === 'true') {
|
371 |
+
$value = true;
|
372 |
+
} elseif ($value === 'false') {
|
373 |
+
$value = false;
|
374 |
+
}
|
375 |
+
|
376 |
+
$tmp_key = $this->_properties[$key];
|
377 |
+
if ($this->lowercase) {
|
378 |
+
$tmp_key = strtolower($this->_properties[$key]);
|
379 |
+
}
|
380 |
+
$array[$tmp_key] = $value;
|
381 |
+
}
|
382 |
+
|
383 |
+
return $return_array ? $array : (object) $array;
|
384 |
+
}
|
385 |
+
|
386 |
+
/**
|
387 |
+
* Load (auto-set) proxy settings from environment variables.
|
388 |
+
*/
|
389 |
+
public function autodetectProxySettings()
|
390 |
+
{
|
391 |
+
$wrappers = array('http', 'https', 'ftp');
|
392 |
+
|
393 |
+
foreach ($wrappers as $wrapper) {
|
394 |
+
$url = getenv($wrapper . '_proxy');
|
395 |
+
if (!empty($url)) {
|
396 |
+
$params = array_merge(
|
397 |
+
array(
|
398 |
+
'port' => null,
|
399 |
+
'user' => null,
|
400 |
+
'pass' => null,
|
401 |
+
),
|
402 |
+
parse_url($url)
|
403 |
+
);
|
404 |
+
$this->addProxySettings($params['host'], $params['port'], $wrapper, $params['user'], $params['pass']);
|
405 |
+
}
|
406 |
+
}
|
407 |
+
}
|
408 |
+
|
409 |
+
/**
|
410 |
+
* Add proxy settings to the stream context array.
|
411 |
+
*
|
412 |
+
* @param string $server Proxy server/host
|
413 |
+
* @param int $port Port
|
414 |
+
* @param string $wrapper Wrapper: "http", "https", "ftp", others...
|
415 |
+
* @param string $username Username (when requiring authentication)
|
416 |
+
* @param string $password Password (when requiring authentication)
|
417 |
+
*
|
418 |
+
* @return Browscap
|
419 |
+
*/
|
420 |
+
public function addProxySettings($server, $port = 3128, $wrapper = 'http', $username = null, $password = null)
|
421 |
+
{
|
422 |
+
$settings = array(
|
423 |
+
$wrapper => array(
|
424 |
+
'proxy' => sprintf('tcp://%s:%d', $server, $port),
|
425 |
+
'request_fulluri' => true,
|
426 |
+
'timeout' => $this->timeout,
|
427 |
+
)
|
428 |
+
);
|
429 |
+
|
430 |
+
// Proxy authentication (optional)
|
431 |
+
if (isset($username) && isset($password)) {
|
432 |
+
$settings[$wrapper]['header'] = 'Proxy-Authorization: Basic ' . base64_encode($username . ':' . $password);
|
433 |
+
}
|
434 |
+
|
435 |
+
// Add these new settings to the stream context options array
|
436 |
+
$this->_streamContextOptions = array_merge(
|
437 |
+
$this->_streamContextOptions,
|
438 |
+
$settings
|
439 |
+
);
|
440 |
+
|
441 |
+
/* Return $this so we can chain addProxySettings() calls like this:
|
442 |
+
* $browscap->
|
443 |
+
* addProxySettings('http')->
|
444 |
+
* addProxySettings('https')->
|
445 |
+
* addProxySettings('ftp');
|
446 |
+
*/
|
447 |
+
return $this;
|
448 |
+
}
|
449 |
+
|
450 |
+
/**
|
451 |
+
* Clear proxy settings from the stream context options array.
|
452 |
+
*
|
453 |
+
* @param string $wrapper Remove settings from this wrapper only
|
454 |
+
*
|
455 |
+
* @return array Wrappers cleared
|
456 |
+
*/
|
457 |
+
public function clearProxySettings($wrapper = null)
|
458 |
+
{
|
459 |
+
$wrappers = isset($wrapper) ? array($wrapper) : array_keys($this->_streamContextOptions);
|
460 |
+
|
461 |
+
$clearedWrappers = array();
|
462 |
+
$options = array('proxy', 'request_fulluri', 'header');
|
463 |
+
foreach ($wrappers as $wrapper) {
|
464 |
+
|
465 |
+
// remove wrapper options related to proxy settings
|
466 |
+
if (isset($this->_streamContextOptions[$wrapper]['proxy'])) {
|
467 |
+
foreach ($options as $option) {
|
468 |
+
unset($this->_streamContextOptions[$wrapper][$option]);
|
469 |
+
}
|
470 |
+
|
471 |
+
// remove wrapper entry if there are no other options left
|
472 |
+
if (empty($this->_streamContextOptions[$wrapper])) {
|
473 |
+
unset($this->_streamContextOptions[$wrapper]);
|
474 |
+
}
|
475 |
+
|
476 |
+
$clearedWrappers[] = $wrapper;
|
477 |
+
}
|
478 |
+
}
|
479 |
+
|
480 |
+
return $clearedWrappers;
|
481 |
+
}
|
482 |
+
|
483 |
+
/**
|
484 |
+
* Returns the array of stream context options.
|
485 |
+
*
|
486 |
+
* @return array
|
487 |
+
*/
|
488 |
+
public function getStreamContextOptions()
|
489 |
+
{
|
490 |
+
$streamContextOptions = $this->_streamContextOptions;
|
491 |
+
|
492 |
+
if (empty($streamContextOptions)) {
|
493 |
+
// set default context, including timeout
|
494 |
+
$streamContextOptions = array(
|
495 |
+
'http' => array(
|
496 |
+
'timeout' => $this->timeout,
|
497 |
+
)
|
498 |
+
);
|
499 |
+
}
|
500 |
+
|
501 |
+
return $streamContextOptions;
|
502 |
+
}
|
503 |
+
|
504 |
+
/**
|
505 |
+
* XXX save
|
506 |
+
*
|
507 |
+
* Parses the ini file and updates the cache files
|
508 |
+
*
|
509 |
+
* @throws Exception
|
510 |
+
* @return bool whether the file was correctly written to the disk
|
511 |
+
*/
|
512 |
+
public function updateCache()
|
513 |
+
{
|
514 |
+
$lockfile = $this->cacheDir . 'cache.lock';
|
515 |
+
|
516 |
+
if (file_exists($lockfile) || !touch($lockfile)) {
|
517 |
+
throw new Exception('temporary file already exists');
|
518 |
+
}
|
519 |
+
|
520 |
+
$ini_path = $this->cacheDir . $this->iniFilename;
|
521 |
+
$cache_path = $this->cacheDir . $this->cacheFilename;
|
522 |
+
|
523 |
+
// Choose the right url
|
524 |
+
if ($this->_getUpdateMethod() == self::UPDATE_LOCAL) {
|
525 |
+
$url = $this->localFile;
|
526 |
+
} else {
|
527 |
+
$url = $this->remoteIniUrl;
|
528 |
+
}
|
529 |
+
|
530 |
+
$this->_getRemoteIniFile($url, $ini_path);
|
531 |
+
|
532 |
+
if (version_compare(PHP_VERSION, '5.3.0', '>=')) {
|
533 |
+
$browsers = parse_ini_file($ini_path, true, INI_SCANNER_RAW);
|
534 |
+
} else {
|
535 |
+
$browsers = parse_ini_file($ini_path, true);
|
536 |
+
}
|
537 |
+
|
538 |
+
$this->_source_version = $browsers[self::BROWSCAP_VERSION_KEY]['Version'];
|
539 |
+
unset($browsers[self::BROWSCAP_VERSION_KEY]);
|
540 |
+
|
541 |
+
unset($browsers['DefaultProperties']['RenderingEngine_Description']);
|
542 |
+
|
543 |
+
$this->_properties = array_keys($browsers['DefaultProperties']);
|
544 |
+
|
545 |
+
array_unshift(
|
546 |
+
$this->_properties,
|
547 |
+
'browser_name',
|
548 |
+
'browser_name_regex',
|
549 |
+
'browser_name_pattern',
|
550 |
+
'Parent'
|
551 |
+
);
|
552 |
+
|
553 |
+
$tmp_user_agents = array_keys($browsers);
|
554 |
+
|
555 |
+
usort($tmp_user_agents, array($this, 'compareBcStrings'));
|
556 |
+
|
557 |
+
$user_agents_keys = array_flip($tmp_user_agents);
|
558 |
+
$properties_keys = array_flip($this->_properties);
|
559 |
+
|
560 |
+
$tmp_patterns = array();
|
561 |
+
|
562 |
+
foreach ($tmp_user_agents as $i => $user_agent) {
|
563 |
+
|
564 |
+
if (empty($browsers[$user_agent]['Comment'])
|
565 |
+
|| false !== strpos($user_agent, '*')
|
566 |
+
|| false !== strpos($user_agent, '?')
|
567 |
+
) {
|
568 |
+
$pattern = $this->_pregQuote($user_agent);
|
569 |
+
|
570 |
+
$matches_count = preg_match_all('@\d@', $pattern, $matches);
|
571 |
+
|
572 |
+
if (!$matches_count) {
|
573 |
+
$tmp_patterns[$pattern] = $i;
|
574 |
+
} else {
|
575 |
+
$compressed_pattern = preg_replace('@\d@', '(\d)', $pattern);
|
576 |
+
|
577 |
+
if (!isset($tmp_patterns[$compressed_pattern])) {
|
578 |
+
$tmp_patterns[$compressed_pattern] = array('first' => $pattern);
|
579 |
+
}
|
580 |
+
|
581 |
+
$tmp_patterns[$compressed_pattern][$i] = $matches[0];
|
582 |
+
}
|
583 |
+
}
|
584 |
+
|
585 |
+
if (!empty($browsers[$user_agent]['Parent'])) {
|
586 |
+
$parent = $browsers[$user_agent]['Parent'];
|
587 |
+
|
588 |
+
$parent_key = $user_agents_keys[$parent];
|
589 |
+
|
590 |
+
$browsers[$user_agent]['Parent'] = $parent_key;
|
591 |
+
$this->_userAgents[$parent_key . '.0'] = $tmp_user_agents[$parent_key];
|
592 |
+
};
|
593 |
+
|
594 |
+
$browser = array();
|
595 |
+
foreach ($browsers[$user_agent] as $key => $value) {
|
596 |
+
if (!isset($properties_keys[$key])) {
|
597 |
+
continue;
|
598 |
+
}
|
599 |
+
|
600 |
+
$key = $properties_keys[$key];
|
601 |
+
$browser[$key] = $value;
|
602 |
+
}
|
603 |
+
|
604 |
+
$this->_browsers[] = $browser;
|
605 |
+
}
|
606 |
+
|
607 |
+
// reducing memory usage by unsetting $tmp_user_agents
|
608 |
+
unset($tmp_user_agents);
|
609 |
+
|
610 |
+
foreach ($tmp_patterns as $pattern => $pattern_data) {
|
611 |
+
if (is_int($pattern_data)) {
|
612 |
+
$this->_patterns[$pattern] = $pattern_data;
|
613 |
+
} elseif (2 == count($pattern_data)) {
|
614 |
+
end($pattern_data);
|
615 |
+
$this->_patterns[$pattern_data['first']] = key($pattern_data);
|
616 |
+
} else {
|
617 |
+
unset($pattern_data['first']);
|
618 |
+
|
619 |
+
$pattern_data = $this->deduplicateCompressionPattern($pattern_data, $pattern);
|
620 |
+
|
621 |
+
$this->_patterns[$pattern] = $pattern_data;
|
622 |
+
}
|
623 |
+
}
|
624 |
+
|
625 |
+
// Get the whole PHP code
|
626 |
+
$cache = $this->_buildCache();
|
627 |
+
$dir = dirname($cache_path);
|
628 |
+
|
629 |
+
// "tempnam" did not work with VFSStream for tests
|
630 |
+
$tmpFile = $dir . '/temp_' . md5(time() . basename($cache_path));
|
631 |
+
|
632 |
+
// asume that all will be ok
|
633 |
+
if (false === file_put_contents($tmpFile, $cache)) {
|
634 |
+
// writing to the temparary file failed
|
635 |
+
throw new Exception('wrting to temporary file failed');
|
636 |
+
}
|
637 |
+
|
638 |
+
if (false === rename($tmpFile, $cache_path)) {
|
639 |
+
// renaming file failed, remove temp file
|
640 |
+
@unlink($tmpFile);
|
641 |
+
|
642 |
+
throw new Exception('could not rename temporary file to the cache file');
|
643 |
+
}
|
644 |
+
|
645 |
+
@unlink($lockfile);
|
646 |
+
|
647 |
+
return true;
|
648 |
+
}
|
649 |
+
|
650 |
+
/**
|
651 |
+
* @param string $a
|
652 |
+
* @param string $b
|
653 |
+
*
|
654 |
+
* @return int
|
655 |
+
*/
|
656 |
+
protected function compareBcStrings($a, $b)
|
657 |
+
{
|
658 |
+
$a_len = strlen($a);
|
659 |
+
$b_len = strlen($b);
|
660 |
+
|
661 |
+
if ($a_len > $b_len) {
|
662 |
+
return -1;
|
663 |
+
}
|
664 |
+
|
665 |
+
if ($a_len < $b_len) {
|
666 |
+
return 1;
|
667 |
+
}
|
668 |
+
|
669 |
+
$a_len = strlen(str_replace(array('*', '?'), '', $a));
|
670 |
+
$b_len = strlen(str_replace(array('*', '?'), '', $b));
|
671 |
+
|
672 |
+
if ($a_len > $b_len) {
|
673 |
+
return -1;
|
674 |
+
}
|
675 |
+
|
676 |
+
if ($a_len < $b_len) {
|
677 |
+
return 1;
|
678 |
+
}
|
679 |
+
|
680 |
+
return 0;
|
681 |
+
}
|
682 |
+
|
683 |
+
/**
|
684 |
+
* That looks complicated...
|
685 |
+
*
|
686 |
+
* All numbers are taken out into $matches, so we check if any of those numbers are identical
|
687 |
+
* in all the $matches and if they are we restore them to the $pattern, removing from the $matches.
|
688 |
+
* This gives us patterns with "(\d)" only in places that differ for some matches.
|
689 |
+
*
|
690 |
+
* @param array $matches
|
691 |
+
* @param string $pattern
|
692 |
+
*
|
693 |
+
* @return array of $matches
|
694 |
+
*/
|
695 |
+
protected function deduplicateCompressionPattern($matches, &$pattern)
|
696 |
+
{
|
697 |
+
$tmp_matches = $matches;
|
698 |
+
$first_match = array_shift($tmp_matches);
|
699 |
+
$differences = array();
|
700 |
+
|
701 |
+
foreach ($tmp_matches as $some_match) {
|
702 |
+
$differences += array_diff_assoc($first_match, $some_match);
|
703 |
+
}
|
704 |
+
|
705 |
+
$identical = array_diff_key($first_match, $differences);
|
706 |
+
|
707 |
+
$prepared_matches = array();
|
708 |
+
|
709 |
+
foreach ($matches as $i => $some_match) {
|
710 |
+
$key = self::COMPRESSION_PATTERN_START
|
711 |
+
. implode(self::COMPRESSION_PATTERN_DELIMITER, array_diff_assoc($some_match, $identical));
|
712 |
+
|
713 |
+
$prepared_matches[$key] = $i;
|
714 |
+
}
|
715 |
+
|
716 |
+
$pattern_parts = explode('(\d)', $pattern);
|
717 |
+
|
718 |
+
foreach ($identical as $position => $value) {
|
719 |
+
$pattern_parts[$position + 1] = $pattern_parts[$position] . $value . $pattern_parts[$position + 1];
|
720 |
+
unset($pattern_parts[$position]);
|
721 |
+
}
|
722 |
+
|
723 |
+
$pattern = implode('(\d)', $pattern_parts);
|
724 |
+
|
725 |
+
return $prepared_matches;
|
726 |
+
}
|
727 |
+
|
728 |
+
/**
|
729 |
+
* Converts browscap match patterns into preg match patterns.
|
730 |
+
*
|
731 |
+
* @param string $user_agent
|
732 |
+
*
|
733 |
+
* @return string
|
734 |
+
*/
|
735 |
+
protected function _pregQuote($user_agent)
|
736 |
+
{
|
737 |
+
$pattern = preg_quote($user_agent, self::REGEX_DELIMITER);
|
738 |
+
|
739 |
+
// the \\x replacement is a fix for "Der gro\xdfe BilderSauger 2.00u" user agent match
|
740 |
+
|
741 |
+
return self::REGEX_DELIMITER
|
742 |
+
. '^'
|
743 |
+
. str_replace(array('\*', '\?', '\\x'), array('.*', '.', '\\\\x'), $pattern)
|
744 |
+
. '$'
|
745 |
+
. self::REGEX_DELIMITER;
|
746 |
+
}
|
747 |
+
|
748 |
+
/**
|
749 |
+
* Converts preg match patterns back to browscap match patterns.
|
750 |
+
*
|
751 |
+
* @param string $pattern
|
752 |
+
* @param array|boolean $matches
|
753 |
+
*
|
754 |
+
* @return string
|
755 |
+
*/
|
756 |
+
protected function _pregUnQuote($pattern, $matches)
|
757 |
+
{
|
758 |
+
// list of escaped characters: http://www.php.net/manual/en/function.preg-quote.php
|
759 |
+
// to properly unescape '?' which was changed to '.', I replace '\.' (real dot) with '\?', then change '.' to '?' and then '\?' to '.'.
|
760 |
+
$search = array(
|
761 |
+
'\\' . self::REGEX_DELIMITER, '\\.', '\\\\', '\\+', '\\[', '\\^', '\\]', '\\$', '\\(', '\\)', '\\{', '\\}',
|
762 |
+
'\\=', '\\!', '\\<', '\\>', '\\|', '\\:', '\\-', '.*', '.', '\\?'
|
763 |
+
);
|
764 |
+
$replace = array(
|
765 |
+
self::REGEX_DELIMITER, '\\?', '\\', '+', '[', '^', ']', '$', '(', ')', '{', '}', '=', '!', '<', '>', '|',
|
766 |
+
':', '-', '*', '?', '.'
|
767 |
+
);
|
768 |
+
|
769 |
+
$result = substr(str_replace($search, $replace, $pattern), 2, -2);
|
770 |
+
|
771 |
+
if ($matches) {
|
772 |
+
foreach ($matches as $one_match) {
|
773 |
+
$num_pos = strpos($result, '(\d)');
|
774 |
+
$result = substr_replace($result, $one_match, $num_pos, 4);
|
775 |
+
}
|
776 |
+
}
|
777 |
+
|
778 |
+
return $result;
|
779 |
+
}
|
780 |
+
|
781 |
+
/**
|
782 |
+
* Loads the cache into object's properties
|
783 |
+
*
|
784 |
+
* @param string $cache_file
|
785 |
+
*
|
786 |
+
* @return boolean
|
787 |
+
*/
|
788 |
+
protected function _loadCache($cache_file)
|
789 |
+
{
|
790 |
+
$cache_version = null;
|
791 |
+
$source_version = null;
|
792 |
+
$browsers = array();
|
793 |
+
$userAgents = array();
|
794 |
+
$patterns = array();
|
795 |
+
$properties = array();
|
796 |
+
|
797 |
+
$this->_cacheLoaded = false;
|
798 |
+
|
799 |
+
require $cache_file;
|
800 |
+
|
801 |
+
if (!isset($cache_version) || $cache_version != self::CACHE_FILE_VERSION) {
|
802 |
+
return false;
|
803 |
+
}
|
804 |
+
|
805 |
+
$this->_source_version = $source_version;
|
806 |
+
$this->_browsers = $browsers;
|
807 |
+
$this->_userAgents = $userAgents;
|
808 |
+
$this->_patterns = $patterns;
|
809 |
+
$this->_properties = $properties;
|
810 |
+
|
811 |
+
$this->_cacheLoaded = true;
|
812 |
+
|
813 |
+
return true;
|
814 |
+
}
|
815 |
+
|
816 |
+
/**
|
817 |
+
* Parses the array to cache and creates the PHP string to write to disk
|
818 |
+
*
|
819 |
+
* @return string the PHP string to save into the cache file
|
820 |
+
*/
|
821 |
+
protected function _buildCache()
|
822 |
+
{
|
823 |
+
$cacheTpl = "<?php\n\$source_version=%s;\n\$cache_version=%s;\n\$properties=%s;\n\$browsers=%s;\n\$userAgents=%s;\n\$patterns=%s;\n";
|
824 |
+
|
825 |
+
$propertiesArray = $this->_array2string($this->_properties);
|
826 |
+
$patternsArray = $this->_array2string($this->_patterns);
|
827 |
+
$userAgentsArray = $this->_array2string($this->_userAgents);
|
828 |
+
$browsersArray = $this->_array2string($this->_browsers);
|
829 |
+
|
830 |
+
return sprintf(
|
831 |
+
$cacheTpl,
|
832 |
+
"'" . $this->_source_version . "'",
|
833 |
+
"'" . self::CACHE_FILE_VERSION . "'",
|
834 |
+
$propertiesArray,
|
835 |
+
$browsersArray,
|
836 |
+
$userAgentsArray,
|
837 |
+
$patternsArray
|
838 |
+
);
|
839 |
+
}
|
840 |
+
|
841 |
+
/**
|
842 |
+
* Lazy getter for the stream context resource.
|
843 |
+
*
|
844 |
+
* @param bool $recreate
|
845 |
+
*
|
846 |
+
* @return resource
|
847 |
+
*/
|
848 |
+
protected function _getStreamContext($recreate = false)
|
849 |
+
{
|
850 |
+
if (!isset($this->_streamContext) || true === $recreate) {
|
851 |
+
$this->_streamContext = stream_context_create($this->getStreamContextOptions());
|
852 |
+
}
|
853 |
+
|
854 |
+
return $this->_streamContext;
|
855 |
+
}
|
856 |
+
|
857 |
+
/**
|
858 |
+
* Updates the local copy of the ini file (by version checking) and adapts
|
859 |
+
* his syntax to the PHP ini parser
|
860 |
+
*
|
861 |
+
* @param string $url the url of the remote server
|
862 |
+
* @param string $path the path of the ini file to update
|
863 |
+
*
|
864 |
+
* @throws Exception
|
865 |
+
* @return bool if the ini file was updated
|
866 |
+
*/
|
867 |
+
protected function _getRemoteIniFile($url, $path)
|
868 |
+
{
|
869 |
+
// Check version
|
870 |
+
if (file_exists($path) && filesize($path)) {
|
871 |
+
$local_tmstp = filemtime($path);
|
872 |
+
|
873 |
+
if ($this->_getUpdateMethod() == self::UPDATE_LOCAL) {
|
874 |
+
$remote_tmstp = $this->_getLocalMTime();
|
875 |
+
} else {
|
876 |
+
$remote_tmstp = $this->_getRemoteMTime();
|
877 |
+
}
|
878 |
+
|
879 |
+
if ($remote_tmstp < $local_tmstp) {
|
880 |
+
// No update needed, return
|
881 |
+
touch($path);
|
882 |
+
|
883 |
+
return false;
|
884 |
+
}
|
885 |
+
}
|
886 |
+
|
887 |
+
if ($url != $path) {
|
888 |
+
// Check if it's possible to write to the .ini file.
|
889 |
+
if (is_file($path)) {
|
890 |
+
if (!is_writable($path)) {
|
891 |
+
throw new Exception(
|
892 |
+
'Could not write to "' . $path . '" (check the permissions of the current/old ini file).'
|
893 |
+
);
|
894 |
+
}
|
895 |
+
} else {
|
896 |
+
// Test writability by creating a file only if one already doesn't exist, so we can safely delete it after the test.
|
897 |
+
$test_file = fopen($path, 'a');
|
898 |
+
if ($test_file) {
|
899 |
+
fclose($test_file);
|
900 |
+
unlink($path);
|
901 |
+
} else {
|
902 |
+
throw new Exception(
|
903 |
+
'Could not write to "' . $path . '" (check the permissions of the cache directory).'
|
904 |
+
);
|
905 |
+
}
|
906 |
+
}
|
907 |
+
|
908 |
+
// Get updated .ini file
|
909 |
+
$browscap = $this->_getRemoteData($url);
|
910 |
+
$browscap = explode("\n", $browscap);
|
911 |
+
$pattern = self::REGEX_DELIMITER . '(' . self::VALUES_TO_QUOTE . ')="?([^"]*)"?$' . self::REGEX_DELIMITER;
|
912 |
+
|
913 |
+
// Ok, lets read the file
|
914 |
+
$content = '';
|
915 |
+
foreach ($browscap as $subject) {
|
916 |
+
$subject = trim($subject);
|
917 |
+
$content .= preg_replace($pattern, '$1="$2"', $subject) . "\n";
|
918 |
+
}
|
919 |
+
|
920 |
+
if (!file_put_contents($path, $content)) {
|
921 |
+
throw new Exception("Could not write .ini content to $path");
|
922 |
+
}
|
923 |
+
}
|
924 |
+
|
925 |
+
return true;
|
926 |
+
}
|
927 |
+
|
928 |
+
/**
|
929 |
+
* Gets the remote ini file update timestamp
|
930 |
+
*
|
931 |
+
* @throws Exception
|
932 |
+
* @return int the remote modification timestamp
|
933 |
+
*/
|
934 |
+
protected function _getRemoteMTime()
|
935 |
+
{
|
936 |
+
$remote_datetime = $this->_getRemoteData($this->remoteVerUrl);
|
937 |
+
$remote_tmstp = strtotime($remote_datetime);
|
938 |
+
|
939 |
+
if (!$remote_tmstp) {
|
940 |
+
throw new Exception("Bad datetime format from {$this->remoteVerUrl}");
|
941 |
+
}
|
942 |
+
|
943 |
+
return $remote_tmstp;
|
944 |
+
}
|
945 |
+
|
946 |
+
/**
|
947 |
+
* Gets the local ini file update timestamp
|
948 |
+
*
|
949 |
+
* @throws Exception
|
950 |
+
* @return int the local modification timestamp
|
951 |
+
*/
|
952 |
+
protected function _getLocalMTime()
|
953 |
+
{
|
954 |
+
if (!is_readable($this->localFile) || !is_file($this->localFile)) {
|
955 |
+
throw new Exception('Local file is not readable');
|
956 |
+
}
|
957 |
+
|
958 |
+
return filemtime($this->localFile);
|
959 |
+
}
|
960 |
+
|
961 |
+
/**
|
962 |
+
* Converts the given array to the PHP string which represent it.
|
963 |
+
* This method optimizes the PHP code and the output differs form the
|
964 |
+
* var_export one as the internal PHP function does not strip whitespace or
|
965 |
+
* convert strings to numbers.
|
966 |
+
*
|
967 |
+
* @param array $array the array to parse and convert
|
968 |
+
*
|
969 |
+
* @return string the array parsed into a PHP string
|
970 |
+
*/
|
971 |
+
protected function _array2string($array)
|
972 |
+
{
|
973 |
+
$strings = array();
|
974 |
+
|
975 |
+
foreach ($array as $key => $value) {
|
976 |
+
if (is_int($key)) {
|
977 |
+
$key = '';
|
978 |
+
} elseif (ctype_digit((string) $key) || '.0' === substr($key, -2)) {
|
979 |
+
$key = intval($key) . '=>';
|
980 |
+
} else {
|
981 |
+
$key = "'" . str_replace("'", "\'", $key) . "'=>";
|
982 |
+
}
|
983 |
+
|
984 |
+
if (is_array($value)) {
|
985 |
+
$value = "'" . addcslashes(serialize($value), "'") . "'";
|
986 |
+
} elseif (ctype_digit((string) $value)) {
|
987 |
+
$value = intval($value);
|
988 |
+
} else {
|
989 |
+
$value = "'" . str_replace("'", "\'", $value) . "'";
|
990 |
+
}
|
991 |
+
|
992 |
+
$strings[] = $key . $value;
|
993 |
+
}
|
994 |
+
|
995 |
+
return "array(\n" . implode(",\n", $strings) . "\n)";
|
996 |
+
}
|
997 |
+
|
998 |
+
/**
|
999 |
+
* Checks for the various possibilities offered by the current configuration
|
1000 |
+
* of PHP to retrieve external HTTP data
|
1001 |
+
*
|
1002 |
+
* @return string|false the name of function to use to retrieve the file or false if no methods are available
|
1003 |
+
*/
|
1004 |
+
protected function _getUpdateMethod()
|
1005 |
+
{
|
1006 |
+
// Caches the result
|
1007 |
+
if ($this->updateMethod === null) {
|
1008 |
+
if ($this->localFile !== null) {
|
1009 |
+
$this->updateMethod = self::UPDATE_LOCAL;
|
1010 |
+
} elseif (ini_get('allow_url_fopen') && function_exists('file_get_contents')) {
|
1011 |
+
$this->updateMethod = self::UPDATE_FOPEN;
|
1012 |
+
} elseif (function_exists('fsockopen')) {
|
1013 |
+
$this->updateMethod = self::UPDATE_FSOCKOPEN;
|
1014 |
+
} elseif (extension_loaded('curl')) {
|
1015 |
+
$this->updateMethod = self::UPDATE_CURL;
|
1016 |
+
} else {
|
1017 |
+
$this->updateMethod = false;
|
1018 |
+
}
|
1019 |
+
}
|
1020 |
+
|
1021 |
+
return $this->updateMethod;
|
1022 |
+
}
|
1023 |
+
|
1024 |
+
/**
|
1025 |
+
* Retrieve the data identified by the URL
|
1026 |
+
*
|
1027 |
+
* @param string $url the url of the data
|
1028 |
+
*
|
1029 |
+
* @throws Exception
|
1030 |
+
* @return string the retrieved data
|
1031 |
+
*/
|
1032 |
+
protected function _getRemoteData($url)
|
1033 |
+
{
|
1034 |
+
ini_set('user_agent', $this->_getUserAgent());
|
1035 |
+
|
1036 |
+
switch ($this->_getUpdateMethod()) {
|
1037 |
+
case self::UPDATE_LOCAL:
|
1038 |
+
$file = file_get_contents($url);
|
1039 |
+
|
1040 |
+
if ($file !== false) {
|
1041 |
+
return $file;
|
1042 |
+
} else {
|
1043 |
+
throw new Exception('Cannot open the local file');
|
1044 |
+
}
|
1045 |
+
case self::UPDATE_FOPEN:
|
1046 |
+
if (ini_get('allow_url_fopen') && function_exists('file_get_contents')) {
|
1047 |
+
// include proxy settings in the file_get_contents() call
|
1048 |
+
$context = $this->_getStreamContext();
|
1049 |
+
$file = file_get_contents($url, false, $context);
|
1050 |
+
|
1051 |
+
if ($file !== false) {
|
1052 |
+
return $file;
|
1053 |
+
}
|
1054 |
+
}// else try with the next possibility (break omitted)
|
1055 |
+
case self::UPDATE_FSOCKOPEN:
|
1056 |
+
if (function_exists('fsockopen')) {
|
1057 |
+
$remote_url = parse_url($url);
|
1058 |
+
$contextOptions = $this->getStreamContextOptions();
|
1059 |
+
|
1060 |
+
$errno = 0;
|
1061 |
+
$errstr = '';
|
1062 |
+
|
1063 |
+
if (empty($contextOptions)) {
|
1064 |
+
$port = (empty($remote_url['port']) ? 80 : $remote_url['port']);
|
1065 |
+
$remote_handler = fsockopen($remote_url['host'], $port, $errno, $errstr, $this->timeout);
|
1066 |
+
} else {
|
1067 |
+
$context = $this->_getStreamContext();
|
1068 |
+
|
1069 |
+
$remote_handler = stream_socket_client(
|
1070 |
+
$url, $errno, $errstr, $this->timeout, STREAM_CLIENT_CONNECT, $context
|
1071 |
+
);
|
1072 |
+
}
|
1073 |
+
|
1074 |
+
if ($remote_handler) {
|
1075 |
+
stream_set_timeout($remote_handler, $this->timeout);
|
1076 |
+
|
1077 |
+
if (isset($remote_url['query'])) {
|
1078 |
+
$remote_url['path'] .= '?' . $remote_url['query'];
|
1079 |
+
}
|
1080 |
+
|
1081 |
+
$out = sprintf(
|
1082 |
+
self::REQUEST_HEADERS,
|
1083 |
+
$remote_url['path'],
|
1084 |
+
$remote_url['host'],
|
1085 |
+
$this->_getUserAgent()
|
1086 |
+
);
|
1087 |
+
|
1088 |
+
fwrite($remote_handler, $out);
|
1089 |
+
|
1090 |
+
$response = fgets($remote_handler);
|
1091 |
+
if (strpos($response, '200 OK') !== false) {
|
1092 |
+
$file = '';
|
1093 |
+
while (!feof($remote_handler)) {
|
1094 |
+
$file .= fgets($remote_handler);
|
1095 |
+
}
|
1096 |
+
|
1097 |
+
$file = str_replace("\r\n", "\n", $file);
|
1098 |
+
$file = explode("\n\n", $file);
|
1099 |
+
array_shift($file);
|
1100 |
+
|
1101 |
+
$file = implode("\n\n", $file);
|
1102 |
+
|
1103 |
+
fclose($remote_handler);
|
1104 |
+
|
1105 |
+
return $file;
|
1106 |
+
}
|
1107 |
+
}
|
1108 |
+
}// else try with the next possibility
|
1109 |
+
case self::UPDATE_CURL:
|
1110 |
+
if (extension_loaded('curl')) { // make sure curl is loaded
|
1111 |
+
$ch = curl_init($url);
|
1112 |
+
|
1113 |
+
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
|
1114 |
+
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $this->timeout);
|
1115 |
+
curl_setopt($ch, CURLOPT_USERAGENT, $this->_getUserAgent());
|
1116 |
+
|
1117 |
+
$file = curl_exec($ch);
|
1118 |
+
|
1119 |
+
curl_close($ch);
|
1120 |
+
|
1121 |
+
if ($file !== false) {
|
1122 |
+
return $file;
|
1123 |
+
}
|
1124 |
+
}// else try with the next possibility
|
1125 |
+
case false:
|
1126 |
+
throw new Exception('Your server can\'t connect to external resources. Please update the file manually.');
|
1127 |
+
}
|
1128 |
+
|
1129 |
+
return '';
|
1130 |
+
}
|
1131 |
+
|
1132 |
+
/**
|
1133 |
+
* Format the useragent string to be used in the remote requests made by the
|
1134 |
+
* class during the update process.
|
1135 |
+
*
|
1136 |
+
* @return string the formatted user agent
|
1137 |
+
*/
|
1138 |
+
protected function _getUserAgent()
|
1139 |
+
{
|
1140 |
+
$ua = str_replace('%v', self::VERSION, $this->userAgent);
|
1141 |
+
$ua = str_replace('%m', $this->_getUpdateMethod(), $ua);
|
1142 |
+
|
1143 |
+
return $ua;
|
1144 |
+
}
|
1145 |
+
}
|
1146 |
+
|
1147 |
+
/**
|
1148 |
+
* Browscap.ini parsing class exception
|
1149 |
+
*
|
1150 |
+
* @package Browscap
|
1151 |
+
* @author Jonathan Stoppani <jonathan@stoppani.name>
|
1152 |
+
* @copyright Copyright (c) 2006-2012 Jonathan Stoppani
|
1153 |
+
* @version 1.0
|
1154 |
+
* @license http://www.opensource.org/licenses/MIT MIT License
|
1155 |
+
* @link https://github.com/GaretJax/phpbrowscap/
|
1156 |
+
*/
|
1157 |
+
class Exception extends \Exception
|
1158 |
+
{
|
1159 |
+
// nothing to do here
|
1160 |
+
}
|
includes/classes/hits.class.php
CHANGED
@@ -4,6 +4,8 @@
|
|
4 |
|
5 |
This class handles; visits, visitors and pages.
|
6 |
*/
|
|
|
|
|
7 |
class Hits extends WP_Statistics {
|
8 |
|
9 |
// Setup our public/private/protected variables.
|
@@ -37,23 +39,49 @@
|
|
37 |
// 4 - User roles
|
38 |
//
|
39 |
|
40 |
-
//
|
41 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
|
43 |
-
//
|
44 |
-
|
45 |
-
$
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
53 |
}
|
54 |
}
|
55 |
}
|
56 |
-
|
57 |
// If we didn't match a robot, check ip subnets.
|
58 |
if( !$this->exclusion_match ) {
|
59 |
// Pull the subnets from the database.
|
4 |
|
5 |
This class handles; visits, visitors and pages.
|
6 |
*/
|
7 |
+
use phpbrowscap\Browscap;
|
8 |
+
|
9 |
class Hits extends WP_Statistics {
|
10 |
|
11 |
// Setup our public/private/protected variables.
|
39 |
// 4 - User roles
|
40 |
//
|
41 |
|
42 |
+
// Get the upload directory from WordPRess.
|
43 |
+
$upload_dir = wp_upload_dir();
|
44 |
+
|
45 |
+
// Create a variable with the name of the database file to download.
|
46 |
+
$BrowscapFile = $upload_dir['basedir'] . '/wp-statistics';
|
47 |
+
|
48 |
+
$crawler = false;
|
49 |
+
|
50 |
+
if( $this->get_option('last_browscap_dl') > 1 && $this->get_option('browscap') ) {
|
51 |
+
// Get the Browser Capabilities use Browscap.
|
52 |
+
$bc = new Browscap($BrowscapFile);
|
53 |
+
$bc->doAutoUpdate = false; // We don't want to auto update.
|
54 |
+
$current_browser = $bc->getBrowser();
|
55 |
+
$crawler = $current_browser->Crawler;
|
56 |
+
}
|
57 |
+
else {
|
58 |
+
$this->update_option('update_browscap', true);
|
59 |
+
}
|
60 |
|
61 |
+
// If we're a crawler as per browscap, exclude us, otherwise double check based on the WP Statistics robot list.
|
62 |
+
if( $crawler == true ) {
|
63 |
+
$this->exclusion_match = TRUE;
|
64 |
+
$this->exclusion_reason = "browscap";
|
65 |
+
}
|
66 |
+
else {
|
67 |
+
// Pull the robots from the database.
|
68 |
+
$robots = explode( "\n", $this->get_option('robotlist') );
|
69 |
+
|
70 |
+
// Check to see if we match any of the robots.
|
71 |
+
foreach($robots as $robot) {
|
72 |
+
$robot = trim($robot);
|
73 |
+
|
74 |
+
// If the match case is less than 4 characters long, it might match too much so don't execute it.
|
75 |
+
if(strlen($robot) > 3) {
|
76 |
+
if(stripos($_SERVER['HTTP_USER_AGENT'], $robot) !== FALSE) {
|
77 |
+
$this->exclusion_match = TRUE;
|
78 |
+
$this->exclusion_reason = "robot";
|
79 |
+
break;
|
80 |
+
}
|
81 |
}
|
82 |
}
|
83 |
}
|
84 |
+
|
85 |
// If we didn't match a robot, check ip subnets.
|
86 |
if( !$this->exclusion_match ) {
|
87 |
// Pull the subnets from the database.
|
includes/functions/country-codes.php
CHANGED
@@ -102,7 +102,6 @@ $ISOCountryCode['DD'] = "German Democratic Republic";
|
|
102 |
$ISOCountryCode['DE'] = "Germany";
|
103 |
$ISOCountryCode['GH'] = "Ghana";
|
104 |
$ISOCountryCode['GI'] = "Gibraltar";
|
105 |
-
$ISOCountryCode['GE'] = "Gilbert and Ellice Islands";
|
106 |
$ISOCountryCode['GR'] = "Greece";
|
107 |
$ISOCountryCode['GL'] = "Greenland";
|
108 |
$ISOCountryCode['GD'] = "Grenada";
|
102 |
$ISOCountryCode['DE'] = "Germany";
|
103 |
$ISOCountryCode['GH'] = "Ghana";
|
104 |
$ISOCountryCode['GI'] = "Gibraltar";
|
|
|
105 |
$ISOCountryCode['GR'] = "Greece";
|
106 |
$ISOCountryCode['GL'] = "Greenland";
|
107 |
$ISOCountryCode['GD'] = "Grenada";
|
includes/functions/parse-user-agent.php
CHANGED
@@ -32,139 +32,147 @@
|
|
32 |
* @author Jesse G. Donat <donatj@gmail.com>
|
33 |
* @link https://github.com/donatj/PhpUserAgent
|
34 |
* @link http://donatstudios.com/PHP-Parser-HTTP_USER_AGENT
|
35 |
-
* @param string|null $u_agent
|
|
|
36 |
* @return array an array with browser, version and platform keys
|
37 |
*/
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
if( $platform == 'linux-gnu' ) {
|
69 |
-
$platform = 'Linux';
|
70 |
-
} elseif( $platform == 'CrOS' ) {
|
71 |
-
$platform = 'Chrome OS';
|
72 |
-
}
|
73 |
-
|
74 |
-
preg_match_all('%(?P<browser>Camino|Kindle(\ Fire\ Build)?|Firefox|Iceweasel|Safari|MSIE|Trident/.*rv|AppleWebKit|Chrome|IEMobile|Opera|OPR|Silk|Lynx|Midori|Version|Wget|curl|NintendoBrowser|PLAYSTATION\ (\d|Vita)+)
|
75 |
-
(?:\)?;?)
|
76 |
-
(?:(?:[:/ ])(?P<version>[0-9A-Z.]+)|/(?:[A-Z]*))%ix',
|
77 |
-
$u_agent, $result, PREG_PATTERN_ORDER);
|
78 |
-
|
79 |
-
// If nothing has been found, handle cases like: "WordPress/3.7.1; http://wordpress.com" or "Googlebot/2.1 http://www.google.com/bot.html"
|
80 |
-
if( !isset($result['browser'][0]) || !isset($result['version'][0]) ) {
|
81 |
-
if( preg_match( "/.*\/.*[; ]?.*/", $u_agent ) ) {
|
82 |
-
$split = explode( "/", $u_agent );
|
83 |
-
$result['browser'][0] = $split[0];
|
84 |
-
|
85 |
-
unset( $split[0] );
|
86 |
-
|
87 |
-
$split = preg_split( "/[; ]/", implode( "/", $split ), 2 );
|
88 |
-
$result['version'][0] = $split[0];
|
89 |
-
$platform = trim( $split[1] );
|
90 |
-
}
|
91 |
}
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
$browser = $result['browser'][$key];
|
118 |
-
$platform = 'Kindle';
|
119 |
-
$version = $result['version'][$key];
|
120 |
-
} elseif( parse_user_agent_find('OPR', $key, $result['browser']) ) {
|
121 |
-
$browser = 'Opera Next';
|
122 |
-
$version = $result['version'][$key];
|
123 |
-
} elseif( parse_user_agent_find('Opera', $key, $result['browser']) ) {
|
124 |
-
$browser = 'Opera';
|
125 |
-
parse_user_agent_find('Version', $key, $result['browser']);
|
126 |
-
$version = $result['version'][$key];
|
127 |
-
} elseif( parse_user_agent_find('Midori', $key, $result['browser']) ) {
|
128 |
-
$browser = 'Midori';
|
129 |
-
$version = $result['version'][$key];
|
130 |
-
} elseif( $browser == 'AppleWebKit' ) {
|
131 |
-
if( ($platform == 'Android' && !($key = 0)) || parse_user_agent_find('Chrome', $key, $result['browser']) ) {
|
132 |
-
$browser = 'Chrome';
|
133 |
-
} elseif( $platform == 'BlackBerry' || $platform == 'PlayBook' ) {
|
134 |
-
$browser = 'BlackBerry Browser';
|
135 |
-
} elseif( parse_user_agent_find('Safari', $key, $result['browser']) ) {
|
136 |
-
$browser = 'Safari';
|
137 |
-
}
|
138 |
-
|
139 |
-
parse_user_agent_find('Version', $key, $result['browser']);
|
140 |
-
|
141 |
-
$version = $result['version'][$key];
|
142 |
-
} elseif( $browser == 'MSIE' || strpos($browser, 'Trident') !== false ) {
|
143 |
-
if( parse_user_agent_find('IEMobile', $key, $result['browser']) ) {
|
144 |
-
$browser = 'IEMobile';
|
145 |
-
} else {
|
146 |
-
$browser = 'MSIE';
|
147 |
-
$key = 0;
|
148 |
-
}
|
149 |
-
$version = $result['version'][$key];
|
150 |
-
} elseif( $key = array_search('playstation 3', array_map('strtolower', $result['browser'])) === 0 ) {
|
151 |
-
$platform = 'PlayStation 3';
|
152 |
-
$browser = 'NetFront';
|
153 |
-
}
|
154 |
-
|
155 |
-
return array( 'platform' => $platform, 'browser' => $browser, 'version' => $version );
|
156 |
|
|
|
157 |
}
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
|
|
163 |
if( $xkey !== false ) {
|
164 |
$key = $xkey;
|
165 |
-
|
166 |
return true;
|
167 |
}
|
168 |
-
|
169 |
return false;
|
170 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
* @author Jesse G. Donat <donatj@gmail.com>
|
33 |
* @link https://github.com/donatj/PhpUserAgent
|
34 |
* @link http://donatstudios.com/PHP-Parser-HTTP_USER_AGENT
|
35 |
+
* @param string|null $u_agent User agent string to parse or null. Uses $_SERVER['HTTP_USER_AGENT'] on NULL
|
36 |
+
* @throws InvalidArgumentException on not having a proper user agent to parse.
|
37 |
* @return array an array with browser, version and platform keys
|
38 |
*/
|
39 |
+
function parse_user_agent( $u_agent = null ) {
|
40 |
+
if( is_null($u_agent) ) {
|
41 |
+
if( isset($_SERVER['HTTP_USER_AGENT']) ) {
|
42 |
+
$u_agent = $_SERVER['HTTP_USER_AGENT'];
|
43 |
+
} else {
|
44 |
+
throw new \InvalidArgumentException('parse_user_agent requires a user agent');
|
45 |
+
}
|
46 |
+
}
|
47 |
+
|
48 |
+
$platform = null;
|
49 |
+
$browser = null;
|
50 |
+
$version = null;
|
51 |
+
|
52 |
+
$empty = array( 'platform' => $platform, 'browser' => $browser, 'version' => $version );
|
53 |
+
|
54 |
+
if( !$u_agent ) return $empty;
|
55 |
+
|
56 |
+
if( preg_match('/\((.*?)\)/im', $u_agent, $parent_matches) ) {
|
57 |
+
|
58 |
+
preg_match_all('/(?P<platform>BB\d+;|Android|CrOS|iPhone|iPad|Linux|Macintosh|Windows(\ Phone)?|Silk|linux-gnu|BlackBerry|PlayBook|Nintendo\ (WiiU?|3DS)|Xbox(\ One)?)
|
59 |
+
(?:\ [^;]*)?
|
60 |
+
(?:;|$)/imx', $parent_matches[1], $result, PREG_PATTERN_ORDER);
|
61 |
+
|
62 |
+
$priority = array( 'Android', 'Xbox One', 'Xbox' );
|
63 |
+
$result['platform'] = array_unique($result['platform']);
|
64 |
+
if( count($result['platform']) > 1 ) {
|
65 |
+
if( $keys = array_intersect($priority, $result['platform']) ) {
|
66 |
+
$platform = reset($keys);
|
67 |
+
} else {
|
68 |
+
$platform = $result['platform'][0];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
69 |
}
|
70 |
+
} elseif( isset($result['platform'][0]) ) {
|
71 |
+
$platform = $result['platform'][0];
|
72 |
+
}
|
73 |
+
}
|
74 |
+
|
75 |
+
if( $platform == 'linux-gnu' ) {
|
76 |
+
$platform = 'Linux';
|
77 |
+
} elseif( $platform == 'CrOS' ) {
|
78 |
+
$platform = 'Chrome OS';
|
79 |
+
}
|
80 |
+
|
81 |
+
preg_match_all('%(?P<browser>Camino|Kindle(\ Fire\ Build)?|Firefox|Iceweasel|Safari|MSIE|Trident/.*rv|AppleWebKit|Chrome|
|
82 |
+
IEMobile|Opera|OPR|Silk|Midori|
|
83 |
+
Baiduspider|Googlebot|YandexBot|bingbot|Lynx|Version|Wget|curl|
|
84 |
+
NintendoBrowser|PLAYSTATION\ (\d|Vita)+)
|
85 |
+
(?:\)?;?)
|
86 |
+
(?:(?:[:/ ])(?P<version>[0-9A-Z.]+)|/(?:[A-Z]*))%ix',
|
87 |
+
$u_agent, $result, PREG_PATTERN_ORDER);
|
88 |
+
|
89 |
+
// If nothing matched, return null (to avoid undefined index errors)
|
90 |
+
if( !isset($result['browser'][0]) || !isset($result['version'][0]) ) {
|
91 |
+
if( !$platform && preg_match('%^(?!Mozilla)(?P<browser>[A-Z0-9\-]+)(/(?P<version>[0-9A-Z.]+))?([;| ]\ ?.*)?$%ix', $u_agent, $result)
|
92 |
+
) {
|
93 |
+
return array( 'platform' => null, 'browser' => $result['browser'], 'version' => isset($result['version']) ? $result['version'] ?: null : null );
|
94 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
95 |
|
96 |
+
return $empty;
|
97 |
}
|
98 |
+
|
99 |
+
$browser = $result['browser'][0];
|
100 |
+
$version = $result['version'][0];
|
101 |
+
|
102 |
+
$find = function ( $search, &$key ) use ( $result ) {
|
103 |
+
$xkey = array_search(strtolower($search), array_map('strtolower', $result['browser']));
|
104 |
if( $xkey !== false ) {
|
105 |
$key = $xkey;
|
106 |
+
|
107 |
return true;
|
108 |
}
|
109 |
+
|
110 |
return false;
|
111 |
+
};
|
112 |
+
|
113 |
+
$key = 0;
|
114 |
+
if( $browser == 'Iceweasel' ) {
|
115 |
+
$browser = 'Firefox';
|
116 |
+
} elseif( $find('Playstation Vita', $key) ) {
|
117 |
+
$platform = 'PlayStation Vita';
|
118 |
+
$browser = 'Browser';
|
119 |
+
} elseif( $find('Kindle Fire Build', $key) || $find('Silk', $key) ) {
|
120 |
+
$browser = $result['browser'][$key] == 'Silk' ? 'Silk' : 'Kindle';
|
121 |
+
$platform = 'Kindle Fire';
|
122 |
+
if( !($version = $result['version'][$key]) || !is_numeric($version[0]) ) {
|
123 |
+
$version = $result['version'][array_search('Version', $result['browser'])];
|
124 |
+
}
|
125 |
+
} elseif( $find('NintendoBrowser', $key) || $platform == 'Nintendo 3DS' ) {
|
126 |
+
$browser = 'NintendoBrowser';
|
127 |
+
$version = $result['version'][$key];
|
128 |
+
} elseif( $find('Kindle', $key) ) {
|
129 |
+
$browser = $result['browser'][$key];
|
130 |
+
$platform = 'Kindle';
|
131 |
+
$version = $result['version'][$key];
|
132 |
+
} elseif( $find('OPR', $key) ) {
|
133 |
+
$browser = 'Opera Next';
|
134 |
+
$version = $result['version'][$key];
|
135 |
+
} elseif( $find('Opera', $key) ) {
|
136 |
+
$browser = 'Opera';
|
137 |
+
$find('Version', $key);
|
138 |
+
$version = $result['version'][$key];
|
139 |
+
} elseif( $find('Midori', $key) ) {
|
140 |
+
$browser = 'Midori';
|
141 |
+
$version = $result['version'][$key];
|
142 |
+
} elseif( $browser == 'MSIE' || strpos($browser, 'Trident') !== false ) {
|
143 |
+
if( $find('IEMobile', $key) ) {
|
144 |
+
$browser = 'IEMobile';
|
145 |
+
} else {
|
146 |
+
$browser = 'MSIE';
|
147 |
+
$key = 0;
|
148 |
+
}
|
149 |
+
$version = $result['version'][$key];
|
150 |
+
} elseif( $find('Chrome', $key) ) {
|
151 |
+
$browser = 'Chrome';
|
152 |
+
$version = $result['version'][$key];
|
153 |
+
} elseif( $browser == 'AppleWebKit' ) {
|
154 |
+
if( ($platform == 'Android' && !($key = 0)) ) {
|
155 |
+
$browser = 'Android Browser';
|
156 |
+
} elseif( strpos($platform, 'BB') === 0 ) {
|
157 |
+
$browser = 'BlackBerry Browser';
|
158 |
+
$platform = 'BlackBerry';
|
159 |
+
} elseif( $platform == 'BlackBerry' || $platform == 'PlayBook' ) {
|
160 |
+
$browser = 'BlackBerry Browser';
|
161 |
+
} elseif( $find('Safari', $key) ) {
|
162 |
+
$browser = 'Safari';
|
163 |
+
}
|
164 |
+
|
165 |
+
$find('Version', $key);
|
166 |
+
|
167 |
+
$version = $result['version'][$key];
|
168 |
+
} elseif( $key = preg_grep('/playstation \d/i', array_map('strtolower', $result['browser'])) ) {
|
169 |
+
$key = reset($key);
|
170 |
+
|
171 |
+
$platform = 'PlayStation ' . preg_replace('/[^\d]/i', '', $key);
|
172 |
+
$browser = 'NetFront';
|
173 |
+
}
|
174 |
+
|
175 |
+
return array( 'platform' => $platform ?: null, 'browser' => $browser ?: null, 'version' => $version ?: null );
|
176 |
+
|
177 |
+
}
|
178 |
+
|
includes/log/exclusions.php
CHANGED
@@ -12,8 +12,8 @@
|
|
12 |
|
13 |
$total_stats = $WP_Statistics->get_option( 'chart_totals' );
|
14 |
|
15 |
-
$excluded_reasons = array('Robot','IP Match','Self Referral','Login Page','Admin Page','User Role');
|
16 |
-
$excluded_reason_tags = array('Robot' => 'robot','IP Match' => 'ipmatch','Self Referral' => 'selfreferral','Login Page' => 'loginpage','Admin Page' => 'adminpage','User Role' => 'userrole', 'Total' => 'total');
|
17 |
$excluded_results = array('Total' => array() );
|
18 |
$excluded_total = 0;
|
19 |
|
12 |
|
13 |
$total_stats = $WP_Statistics->get_option( 'chart_totals' );
|
14 |
|
15 |
+
$excluded_reasons = array('Robot','Browscap','IP Match','Self Referral','Login Page','Admin Page','User Role');
|
16 |
+
$excluded_reason_tags = array('Robot' => 'robot','Browscap' => 'browscap','IP Match' => 'ipmatch','Self Referral' => 'selfreferral','Login Page' => 'loginpage','Admin Page' => 'adminpage','User Role' => 'userrole', 'Total' => 'total');
|
17 |
$excluded_results = array('Total' => array() );
|
18 |
$excluded_total = 0;
|
19 |
|
includes/log/log.php
CHANGED
@@ -8,6 +8,7 @@
|
|
8 |
include_once( dirname( __FILE__ ) . "/../functions/country-codes.php");
|
9 |
|
10 |
// Load the widgets.
|
|
|
11 |
include_once( dirname( __FILE__ ) . "/widgets/browsers.php");
|
12 |
|
13 |
if( $WP_Statistics->get_option( 'map_type' ) == 'jqvmap' ) {
|
8 |
include_once( dirname( __FILE__ ) . "/../functions/country-codes.php");
|
9 |
|
10 |
// Load the widgets.
|
11 |
+
include_once( dirname( __FILE__ ) . "/widgets/about.php");
|
12 |
include_once( dirname( __FILE__ ) . "/widgets/browsers.php");
|
13 |
|
14 |
if( $WP_Statistics->get_option( 'map_type' ) == 'jqvmap' ) {
|
includes/log/top-pages.php
CHANGED
@@ -161,7 +161,7 @@
|
|
161 |
|
162 |
echo "<div class='log-page-title'>{$count} - {$uri[3]}</div>";
|
163 |
echo "<div class='right-div'>".__('Visits', 'wp_statistics').": <a href='?page=wps_pages_menu&page-uri={$uri[0]}'>" . number_format_i18n($uri[1]) . "</a></div>";
|
164 |
-
echo "<div class='left-div'><a href='{$site_url}{$uri[0]}'>
|
165 |
echo "</div>";
|
166 |
}
|
167 |
|
161 |
|
162 |
echo "<div class='log-page-title'>{$count} - {$uri[3]}</div>";
|
163 |
echo "<div class='right-div'>".__('Visits', 'wp_statistics').": <a href='?page=wps_pages_menu&page-uri={$uri[0]}'>" . number_format_i18n($uri[1]) . "</a></div>";
|
164 |
+
echo "<div class='left-div'><a dir='ltr' href='{$site_url}{$uri[0]}'>".urldecode($uri[0])."</a></div>";
|
165 |
echo "</div>";
|
166 |
}
|
167 |
|
includes/log/widgets/about.php
ADDED
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
function wp_statistics_generate_about_postbox($ISOCountryCode, $search_engines) {
|
3 |
+
|
4 |
+
global $wpdb, $table_prefix, $WP_Statistics;
|
5 |
+
?>
|
6 |
+
<div class="postbox">
|
7 |
+
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
8 |
+
<h3 class="hndle"><span><?php echo sprintf(__('About WP Statistics Version %s', 'wp_statistics'), WP_STATISTICS_VERSION); ?></span></h3>
|
9 |
+
<div class="inside">
|
10 |
+
<div style="text-align: center;">
|
11 |
+
<a href="http://wp-statistics.com" target="_blank"><img src="<?php echo plugins_url('wp-statistics/assets/images/logo-250.png'); ?>"></a>
|
12 |
+
</div>
|
13 |
+
|
14 |
+
<div id="about-links" style="text-align: center;">
|
15 |
+
<p><a href="http://wp-statistics.com" target="_blank"><?php _e('Website', 'wp_statistics'); ?></a></p>
|
16 |
+
| <p><a href="http://wordpress.org/support/view/plugin-reviews/wp-statistics" target="_blank"><?php _e('Rate and Review', 'wp_statistics'); ?></a></p>
|
17 |
+
<?php
|
18 |
+
if(current_user_can(wp_statistics_validate_capability($WP_Statistics->get_option('manage_capability', 'manage_options')))) {
|
19 |
+
?>
|
20 |
+
| <p><a href="?page=wp-statistics/settings&tab=about"><?php _e('More Information', 'wp_statistics'); ?></a></p>
|
21 |
+
<?php
|
22 |
+
}
|
23 |
+
?>
|
24 |
+
</div>
|
25 |
+
|
26 |
+
<hr />
|
27 |
+
|
28 |
+
<div>
|
29 |
+
<?php echo sprintf(__('This product includes GeoLite2 data created by MaxMind, available from %s.', 'wp_statistics'), '<a href="http://www.maxmind.com" target=_blank>http://www.maxmind.com</a>'); ?>
|
30 |
+
</div>
|
31 |
+
</div>
|
32 |
+
</div>
|
33 |
+
<?php
|
34 |
+
}
|
35 |
+
|
includes/log/widgets/countries.php
CHANGED
@@ -56,37 +56,3 @@
|
|
56 |
}
|
57 |
}
|
58 |
|
59 |
-
function wp_statistics_generate_about_postbox($ISOCountryCode, $search_engines) {
|
60 |
-
|
61 |
-
global $wpdb, $table_prefix, $WP_Statistics;
|
62 |
-
?>
|
63 |
-
<div class="postbox">
|
64 |
-
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
65 |
-
<h3 class="hndle"><span><?php echo sprintf(__('About WP Statistics V%s', 'wp_statistics'), WP_STATISTICS_VERSION); ?></span></h3>
|
66 |
-
<div class="inside">
|
67 |
-
<div style="text-align: center;">
|
68 |
-
<a href="http://wp-statistics.com" target="_blank"><img src="<?php echo plugins_url('wp-statistics/assets/images/logo-250.png'); ?>"></a>
|
69 |
-
</div>
|
70 |
-
|
71 |
-
<div id="about-links" style="text-align: center;">
|
72 |
-
<p><a href="http://wp-statistics.com" target="_blank"><?php _e('Website', 'wp_statistics'); ?></a></p>
|
73 |
-
| <p><a href="http://wordpress.org/support/view/plugin-reviews/wp-statistics" target="_blank"><?php _e('Rate and Review', 'wp_statistics'); ?></a></p>
|
74 |
-
<?php
|
75 |
-
if(current_user_can(wp_statistics_validate_capability($WP_Statistics->get_option('manage_capability', 'manage_options')))) {
|
76 |
-
?>
|
77 |
-
| <p><a href="?page=wp-statistics/settings&tab=about"><?php _e('More Information', 'wp_statistics'); ?></a></p>
|
78 |
-
<?php
|
79 |
-
}
|
80 |
-
?>
|
81 |
-
</div>
|
82 |
-
|
83 |
-
<hr />
|
84 |
-
|
85 |
-
<div>
|
86 |
-
<?php echo sprintf(__('This product includes GeoLite2 data created by MaxMind, available from %s.', 'wp_statistics'), '<a href="http://www.maxmind.com" target=_blank>http://www.maxmind.com</a>'); ?>
|
87 |
-
</div>
|
88 |
-
</div>
|
89 |
-
</div>
|
90 |
-
<?php
|
91 |
-
}
|
92 |
-
|
56 |
}
|
57 |
}
|
58 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
includes/log/widgets/pages.php
CHANGED
@@ -28,7 +28,7 @@
|
|
28 |
|
29 |
echo "<div class='log-page-title'>{$i} - {$uri[3]}</div>";
|
30 |
echo "<div class='right-div'>".__('Visits', 'wp_statistics').": <a href='?page=wps_pages_menu&page-uri={$uri[0]}'>" . number_format_i18n($uri[1]) . "</a></div>";
|
31 |
-
echo "<div class='left-div'><a href='{$uri[0]}'>
|
32 |
echo "</div>";
|
33 |
|
34 |
if( $i > 9 ) { break; }
|
28 |
|
29 |
echo "<div class='log-page-title'>{$i} - {$uri[3]}</div>";
|
30 |
echo "<div class='right-div'>".__('Visits', 'wp_statistics').": <a href='?page=wps_pages_menu&page-uri={$uri[0]}'>" . number_format_i18n($uri[1]) . "</a></div>";
|
31 |
+
echo "<div class='left-div'><a dir='ltr' href='{$uri[0]}'>".urldecode($uri[0])."</a></div>";
|
32 |
echo "</div>";
|
33 |
|
34 |
if( $i > 9 ) { break; }
|
includes/log/widgets/summary.php
CHANGED
@@ -103,11 +103,11 @@
|
|
103 |
</tr>
|
104 |
|
105 |
<tr>
|
106 |
-
<th colspan="3"><?php echo sprintf(__('Date: <code dir="ltr"
|
107 |
</tr>
|
108 |
|
109 |
<tr>
|
110 |
-
<th colspan="3"><?php echo sprintf(__('Time: <code dir="ltr"
|
111 |
</tr>
|
112 |
</tbody>
|
113 |
</table>
|
103 |
</tr>
|
104 |
|
105 |
<tr>
|
106 |
+
<th colspan="3"><?php echo sprintf(__('Date: %s', 'wp_statistics'), '<code dir="ltr">' . $WP_Statistics->Current_Date_i18n(get_option('date_format')) . '</code>'); ?></th>
|
107 |
</tr>
|
108 |
|
109 |
<tr>
|
110 |
+
<th colspan="3"><?php echo sprintf(__('Time: %s', 'wp_statistics'), '<code dir="ltr">' .$WP_Statistics->Current_Date_i18n(get_option('time_format')) . '</code>'); ?></th>
|
111 |
</tr>
|
112 |
</tbody>
|
113 |
</table>
|
includes/optimization/delete-agents.php
CHANGED
@@ -11,7 +11,10 @@
|
|
11 |
$result = $wpdb->query("DELETE FROM {$table_prefix}statistics_visitor WHERE agent = '$agent'");
|
12 |
|
13 |
if($result) {
|
14 |
-
echo sprintf(__('
|
|
|
|
|
|
|
15 |
}
|
16 |
|
17 |
} else {
|
11 |
$result = $wpdb->query("DELETE FROM {$table_prefix}statistics_visitor WHERE agent = '$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 {
|
includes/optimization/delete-platforms.php
CHANGED
@@ -11,7 +11,10 @@
|
|
11 |
$result = $wpdb->query("DELETE FROM {$table_prefix}statistics_visitor WHERE platform = '$platform'");
|
12 |
|
13 |
if($result) {
|
14 |
-
echo sprintf(__('
|
|
|
|
|
|
|
15 |
}
|
16 |
|
17 |
} else {
|
11 |
$result = $wpdb->query("DELETE FROM {$table_prefix}statistics_visitor WHERE platform = '$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 {
|
includes/optimization/empty.php
CHANGED
@@ -50,7 +50,7 @@ function wp_statitiscs_empty_table( $table_name = FALSE ) {
|
|
50 |
$result = $wpdb->query('DELETE FROM ' . $table_name);
|
51 |
|
52 |
if($result) {
|
53 |
-
return sprintf(__('
|
54 |
}
|
55 |
}
|
56 |
|
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 |
|
includes/optimization/purge-data.php
CHANGED
@@ -14,9 +14,9 @@
|
|
14 |
$result = $wpdb->query('DELETE FROM ' . $table_name . ' WHERE `last_counter` < \'' . $date_string . '\'');
|
15 |
|
16 |
if($result) {
|
17 |
-
$result_string = sprintf(__('
|
18 |
} else {
|
19 |
-
$result_string = sprintf(__('No records found to purge from
|
20 |
}
|
21 |
|
22 |
$table_name = $table_prefix . 'statistics_visitor';
|
@@ -24,9 +24,9 @@
|
|
24 |
$result = $wpdb->query('DELETE FROM ' . $table_name . ' WHERE `last_counter` < \'' . $date_string . '\'');
|
25 |
|
26 |
if($result) {
|
27 |
-
$result_string .= '<br>' . sprintf(__('
|
28 |
} else {
|
29 |
-
$result_string .= '<br>' . sprintf(__('No records found to purge from
|
30 |
}
|
31 |
|
32 |
$table_name = $table_prefix . 'statistics_exclusions';
|
@@ -34,9 +34,9 @@
|
|
34 |
$result = $wpdb->query('DELETE FROM ' . $table_name . ' WHERE `date` < \'' . $date_string . '\'');
|
35 |
|
36 |
if($result) {
|
37 |
-
$result_string .= '<br>' . sprintf(__('
|
38 |
} else {
|
39 |
-
$result_string .= '<br>' . sprintf(__('No records found to purge from
|
40 |
}
|
41 |
|
42 |
$table_name = $table_prefix . 'statistics_pages';
|
@@ -44,9 +44,9 @@
|
|
44 |
$result = $wpdb->query('DELETE FROM ' . $table_name . ' WHERE `date` < \'' . $date_string . '\'');
|
45 |
|
46 |
if($result) {
|
47 |
-
$result_string .= '<br>' . sprintf(__('
|
48 |
} else {
|
49 |
-
$result_string .= '<br>' . sprintf(__('No records found to purge from
|
50 |
}
|
51 |
|
52 |
echo $result_string;
|
14 |
$result = $wpdb->query('DELETE FROM ' . $table_name . ' WHERE `last_counter` < \'' . $date_string . '\'');
|
15 |
|
16 |
if($result) {
|
17 |
+
$result_string = sprintf(__('%s data older than %s days purged successfully.', 'wp_statistics'), '<code>' . $table_name . '</code>', '<code>' . $purge_days . '</code>');
|
18 |
} else {
|
19 |
+
$result_string = sprintf(__('No records found to purge from %s!', 'wp_statistics'), '<code>' . $table_name . '</code>' );
|
20 |
}
|
21 |
|
22 |
$table_name = $table_prefix . 'statistics_visitor';
|
24 |
$result = $wpdb->query('DELETE FROM ' . $table_name . ' WHERE `last_counter` < \'' . $date_string . '\'');
|
25 |
|
26 |
if($result) {
|
27 |
+
$result_string .= '<br>' . sprintf(__('%s data older than %s days purged successfully.', 'wp_statistics'), '<code>' . $table_name . '</code>', '<code>' . $purge_days . '</code>');
|
28 |
} else {
|
29 |
+
$result_string .= '<br>' . sprintf(__('No records found to purge from %s!', 'wp_statistics'), '<code>' . $table_name . '</code>' );
|
30 |
}
|
31 |
|
32 |
$table_name = $table_prefix . 'statistics_exclusions';
|
34 |
$result = $wpdb->query('DELETE FROM ' . $table_name . ' WHERE `date` < \'' . $date_string . '\'');
|
35 |
|
36 |
if($result) {
|
37 |
+
$result_string .= '<br>' . sprintf(__('%s data older than %s days purged successfully.', 'wp_statistics'), '<code>' . $table_name . '</code>', '<code>' . $purge_days . '</code>');
|
38 |
} else {
|
39 |
+
$result_string .= '<br>' . sprintf(__('No records found to purge from %s!', 'wp_statistics'), '<code>' . $table_name . '</code>' );
|
40 |
}
|
41 |
|
42 |
$table_name = $table_prefix . 'statistics_pages';
|
44 |
$result = $wpdb->query('DELETE FROM ' . $table_name . ' WHERE `date` < \'' . $date_string . '\'');
|
45 |
|
46 |
if($result) {
|
47 |
+
$result_string .= '<br>' . sprintf(__('%s data older than %s days purged successfully.', 'wp_statistics'), '<code>' . $table_name . '</code>', '<code>' . $purge_days . '</code>');
|
48 |
} else {
|
49 |
+
$result_string .= '<br>' . sprintf(__('No records found to purge from %s!', 'wp_statistics'), '<code>' . $table_name . '</code>' );
|
50 |
}
|
51 |
|
52 |
echo $result_string;
|
includes/optimization/tabs/wps-optimization-database.php
CHANGED
@@ -1,7 +1,22 @@
|
|
1 |
<div class="wrap">
|
2 |
<table class="form-table">
|
3 |
<tbody>
|
4 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
<th scope="row" colspan="2"><h3><?php _e('Database Index', 'wp_statistics'); ?></h3></th>
|
6 |
</tr>
|
7 |
|
@@ -16,9 +31,10 @@
|
|
16 |
$wp_prefix = $wpdb->prefix;
|
17 |
|
18 |
// Check the number of index's on the visitors table, if it's only 5 we need to check for duplicate entries and remove them
|
19 |
-
$result = $wpdb->query("SHOW INDEX FROM {$wp_prefix}statistics_visitor WHERE Key_name = '
|
20 |
-
|
21 |
-
|
|
|
22 |
?>
|
23 |
<input id="index-submit" class="button button-primary" type="button" value="<?php _e('Update Now!', 'wp_statistics'); ?>" name="index-submit" onclick="location.href=document.URL+'&index=1&tab=database'">
|
24 |
<p class="description"><?php _e('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.', 'wp_statistics'); ?></p>
|
1 |
<div class="wrap">
|
2 |
<table class="form-table">
|
3 |
<tbody>
|
4 |
+
<tr valign="top">
|
5 |
+
<th scope="row" colspan="2"><h3><?php _e('Database Setup', 'wp_statistics'); ?></h3></th>
|
6 |
+
</tr>
|
7 |
+
|
8 |
+
<tr valign="top">
|
9 |
+
<th scope="row">
|
10 |
+
<label for="index-submit"><?php _e('Re-run Install', 'wp_statistics'); ?>:</label>
|
11 |
+
</th>
|
12 |
+
|
13 |
+
<td>
|
14 |
+
<input id="install-submit" class="button button-primary" type="button" value="<?php _e('Install Now!', 'wp_statistics'); ?>" name="install-submit" onclick="location.href=document.URL+'&install=1&tab=database'">
|
15 |
+
<p class="description"><?php _e('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.', 'wp_statistics'); ?></p>
|
16 |
+
</td>
|
17 |
+
</tr>
|
18 |
+
|
19 |
+
<tr valign="top">
|
20 |
<th scope="row" colspan="2"><h3><?php _e('Database Index', 'wp_statistics'); ?></h3></th>
|
21 |
</tr>
|
22 |
|
31 |
$wp_prefix = $wpdb->prefix;
|
32 |
|
33 |
// Check the number of index's on the visitors table, if it's only 5 we need to check for duplicate entries and remove them
|
34 |
+
$result = $wpdb->query("SHOW INDEX FROM {$wp_prefix}statistics_visitor WHERE Key_name = 'date_ip_agent'");
|
35 |
+
|
36 |
+
// Note, the result will be the number of fields contained in the index, so in our case 5.
|
37 |
+
if( $result != 5 ) {
|
38 |
?>
|
39 |
<input id="index-submit" class="button button-primary" type="button" value="<?php _e('Update Now!', 'wp_statistics'); ?>" name="index-submit" onclick="location.href=document.URL+'&index=1&tab=database'">
|
40 |
<p class="description"><?php _e('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.', 'wp_statistics'); ?></p>
|
includes/optimization/tabs/wps-optimization-purging.php
CHANGED
@@ -15,13 +15,13 @@
|
|
15 |
var data = new Array();
|
16 |
data['purge-days'] = action;
|
17 |
|
18 |
-
|
19 |
jQuery("#purge-data-submit").attr("disabled", "disabled");
|
20 |
-
jQuery("#purge-data-
|
21 |
|
22 |
jQuery.post("<?php echo parse_url(plugins_url('../purge-data.php', __FILE__), PHP_URL_PATH ); ?>", {purge_days:data['purge-days']})
|
23 |
.always(function(result){
|
24 |
-
jQuery("#purge-data-
|
|
|
25 |
jQuery("#purge-data-submit").removeAttr("disabled");
|
26 |
});
|
27 |
});
|
@@ -41,13 +41,13 @@
|
|
41 |
var data = new Array();
|
42 |
data['table-name'] = jQuery("#empty-table").val();
|
43 |
|
44 |
-
|
45 |
jQuery("#empty-table-submit").attr("disabled", "disabled");
|
46 |
-
jQuery("#empty-
|
47 |
|
48 |
jQuery.post("<?php echo parse_url(plugins_url('../empty.php', __FILE__), PHP_URL_PATH ); ?>", {table_name:data['table-name']})
|
49 |
.always(function(result){
|
50 |
-
jQuery("#empty-
|
|
|
51 |
jQuery("#empty-table-submit").removeAttr("disabled");
|
52 |
});
|
53 |
});
|
@@ -67,13 +67,13 @@
|
|
67 |
var data = new Array();
|
68 |
data['agent-name'] = jQuery("#delete-agent").val();
|
69 |
|
70 |
-
|
71 |
jQuery("#delete-agents-submit").attr("disabled", "disabled");
|
72 |
-
jQuery("#delete-agents-
|
73 |
|
74 |
jQuery.post("<?php echo parse_url(plugins_url('../delete-agents.php', __FILE__), PHP_URL_PATH ); ?>", {agent_name:data['agent-name']})
|
75 |
.always(function(result){
|
76 |
-
jQuery("#delete-agents-
|
|
|
77 |
jQuery("#delete-agents-submit").removeAttr("disabled");
|
78 |
aid = data['agent-name'].replace(/[^a-zA-Z]/g, "");
|
79 |
jQuery("#agent-" + aid + "-id").remove();
|
@@ -95,13 +95,13 @@
|
|
95 |
var data = new Array();
|
96 |
data['platform-name'] = jQuery("#delete-platform").val();
|
97 |
|
98 |
-
|
99 |
jQuery("#delete-platforms-submit").attr("disabled", "disabled");
|
100 |
-
jQuery("#delete-platforms-
|
101 |
|
102 |
jQuery.post("<?php echo parse_url(plugins_url('../delete-platforms.php', __FILE__), PHP_URL_PATH ); ?>", {platform_name:data['platform-name']})
|
103 |
.always(function(result){
|
104 |
-
jQuery("#delete-platforms-
|
|
|
105 |
jQuery("#delete-platforms-submit").removeAttr("disabled");
|
106 |
pid = data['platform-name'].replace(/[^a-zA-Z]/g, "");
|
107 |
jQuery("#platform-" + pid + "-id").remove();
|
@@ -135,8 +135,8 @@
|
|
135 |
</select>
|
136 |
<p class="description"><?php _e('All data table will be lost.', 'wp_statistics'); ?></p>
|
137 |
<input id="empty-table-submit" class="button button-primary" type="submit" value="<?php _e('Clear now!', 'wp_statistics'); ?>" name="empty-table-submit" Onclick="return false;"/>
|
138 |
-
|
139 |
-
<
|
140 |
</td>
|
141 |
</tr>
|
142 |
|
@@ -150,8 +150,8 @@
|
|
150 |
<label for="purge-data"><?php _e('days', 'wp_statistics'); ?></label>
|
151 |
<p class="description"><?php _e('Deleted user statistics data older than the selected number of days. Minimum value is 30 days.', 'wp_statistics'); ?></p>
|
152 |
<input id="purge-data-submit" class="button button-primary" type="submit" value="<?php _e('Purge now!', 'wp_statistics'); ?>" name="purge-data-submit" Onclick="return false;"/>
|
153 |
-
|
154 |
-
<
|
155 |
</td>
|
156 |
</tr>
|
157 |
|
@@ -178,8 +178,8 @@
|
|
178 |
</select>
|
179 |
<p class="description"><?php _e('All visitor data will be lost for this agent type.', 'wp_statistics'); ?></p>
|
180 |
<input id="delete-agents-submit" class="button button-primary" type="submit" value="<?php _e('Delete now!', 'wp_statistics'); ?>" name="delete-agents-submit" Onclick="return false;">
|
181 |
-
|
182 |
-
<
|
183 |
</td>
|
184 |
</tr>
|
185 |
|
@@ -202,8 +202,8 @@
|
|
202 |
</select>
|
203 |
<p class="description"><?php _e('All visitor data will be lost for this platform type.', 'wp_statistics'); ?></p>
|
204 |
<input id="delete-platforms-submit" class="button button-primary" type="submit" value="<?php _e('Delete now!', 'wp_statistics'); ?>" name="delete-platforms-submit" Onclick="return false;">
|
205 |
-
|
206 |
-
<
|
207 |
</td>
|
208 |
</tr>
|
209 |
</tbody>
|
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 |
jQuery.post("<?php echo parse_url(plugins_url('../purge-data.php', __FILE__), PHP_URL_PATH ); ?>", {purge_days:data['purge-days']})
|
22 |
.always(function(result){
|
23 |
+
jQuery("#purge-data-status").html("");
|
24 |
+
jQuery("#purge-data-result").html(result.responseText);
|
25 |
jQuery("#purge-data-submit").removeAttr("disabled");
|
26 |
});
|
27 |
});
|
41 |
var data = new Array();
|
42 |
data['table-name'] = jQuery("#empty-table").val();
|
43 |
|
|
|
44 |
jQuery("#empty-table-submit").attr("disabled", "disabled");
|
45 |
+
jQuery("#empty-status").html("<img src='<?php echo plugins_url('wp-statistics'); ?>/assets/images/loading.gif'/>");
|
46 |
|
47 |
jQuery.post("<?php echo parse_url(plugins_url('../empty.php', __FILE__), PHP_URL_PATH ); ?>", {table_name:data['table-name']})
|
48 |
.always(function(result){
|
49 |
+
jQuery("#empty-status").html("");
|
50 |
+
jQuery("#empty-result").html(result.responseText);
|
51 |
jQuery("#empty-table-submit").removeAttr("disabled");
|
52 |
});
|
53 |
});
|
67 |
var data = new Array();
|
68 |
data['agent-name'] = jQuery("#delete-agent").val();
|
69 |
|
|
|
70 |
jQuery("#delete-agents-submit").attr("disabled", "disabled");
|
71 |
+
jQuery("#delete-agents-status").html("<img src='<?php echo plugins_url('wp-statistics'); ?>/assets/images/loading.gif'/>");
|
72 |
|
73 |
jQuery.post("<?php echo parse_url(plugins_url('../delete-agents.php', __FILE__), PHP_URL_PATH ); ?>", {agent_name:data['agent-name']})
|
74 |
.always(function(result){
|
75 |
+
jQuery("#delete-agents-status").html("");
|
76 |
+
jQuery("#delete-agents-result").html(result.responseText);
|
77 |
jQuery("#delete-agents-submit").removeAttr("disabled");
|
78 |
aid = data['agent-name'].replace(/[^a-zA-Z]/g, "");
|
79 |
jQuery("#agent-" + aid + "-id").remove();
|
95 |
var data = new Array();
|
96 |
data['platform-name'] = jQuery("#delete-platform").val();
|
97 |
|
|
|
98 |
jQuery("#delete-platforms-submit").attr("disabled", "disabled");
|
99 |
+
jQuery("#delete-platforms-status").html("<img src='<?php echo plugins_url('wp-statistics'); ?>/assets/images/loading.gif'/>");
|
100 |
|
101 |
jQuery.post("<?php echo parse_url(plugins_url('../delete-platforms.php', __FILE__), PHP_URL_PATH ); ?>", {platform_name:data['platform-name']})
|
102 |
.always(function(result){
|
103 |
+
jQuery("#delete-platforms-status").html("");
|
104 |
+
jQuery("#delete-platforms-result").html(result.responseText);
|
105 |
jQuery("#delete-platforms-submit").removeAttr("disabled");
|
106 |
pid = data['platform-name'].replace(/[^a-zA-Z]/g, "");
|
107 |
jQuery("#platform-" + pid + "-id").remove();
|
135 |
</select>
|
136 |
<p class="description"><?php _e('All data table will be lost.', 'wp_statistics'); ?></p>
|
137 |
<input id="empty-table-submit" class="button button-primary" type="submit" value="<?php _e('Clear now!', 'wp_statistics'); ?>" name="empty-table-submit" Onclick="return false;"/>
|
138 |
+
<span id="empty-status"></span>
|
139 |
+
<div id="empty-result"></div>
|
140 |
</td>
|
141 |
</tr>
|
142 |
|
150 |
<label for="purge-data"><?php _e('days', 'wp_statistics'); ?></label>
|
151 |
<p class="description"><?php _e('Deleted user statistics data older than the selected number of days. Minimum value is 30 days.', 'wp_statistics'); ?></p>
|
152 |
<input id="purge-data-submit" class="button button-primary" type="submit" value="<?php _e('Purge now!', 'wp_statistics'); ?>" name="purge-data-submit" Onclick="return false;"/>
|
153 |
+
<span id="purge-data-status"></span>
|
154 |
+
<div id="purge-data-result"></div>
|
155 |
</td>
|
156 |
</tr>
|
157 |
|
178 |
</select>
|
179 |
<p class="description"><?php _e('All visitor data will be lost for this agent type.', 'wp_statistics'); ?></p>
|
180 |
<input id="delete-agents-submit" class="button button-primary" type="submit" value="<?php _e('Delete now!', 'wp_statistics'); ?>" name="delete-agents-submit" Onclick="return false;">
|
181 |
+
<span id="delete-agents-status"></span>
|
182 |
+
<div id="delete-agents-result"></div>
|
183 |
</td>
|
184 |
</tr>
|
185 |
|
202 |
</select>
|
203 |
<p class="description"><?php _e('All visitor data will be lost for this platform type.', 'wp_statistics'); ?></p>
|
204 |
<input id="delete-platforms-submit" class="button button-primary" type="submit" value="<?php _e('Delete now!', 'wp_statistics'); ?>" name="delete-platforms-submit" Onclick="return false;">
|
205 |
+
<span id="delete-platforms-status"></span>
|
206 |
+
<div id="delete-platforms-result"></div>
|
207 |
</td>
|
208 |
</tr>
|
209 |
</tbody>
|
includes/optimization/tabs/wps-optimization-resources.php
CHANGED
@@ -1,3 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
<div class="wrap">
|
2 |
<table class="form-table">
|
3 |
<tbody>
|
@@ -29,7 +41,7 @@
|
|
29 |
|
30 |
<tr valign="top">
|
31 |
<th scope="row">
|
32 |
-
<?php echo sprintf(__('Number of rows in the
|
33 |
</th>
|
34 |
|
35 |
<td>
|
@@ -40,7 +52,7 @@
|
|
40 |
|
41 |
<tr valign="top">
|
42 |
<th scope="row">
|
43 |
-
<?php echo sprintf(__('Number of rows in the
|
44 |
</th>
|
45 |
|
46 |
<td>
|
@@ -51,7 +63,7 @@
|
|
51 |
|
52 |
<tr valign="top">
|
53 |
<th scope="row">
|
54 |
-
<?php echo sprintf(__('Number of rows in the
|
55 |
</th>
|
56 |
|
57 |
<td>
|
@@ -62,7 +74,7 @@
|
|
62 |
|
63 |
<tr valign="top">
|
64 |
<th scope="row">
|
65 |
-
<?php echo sprintf(__('Number of rows in the
|
66 |
</th>
|
67 |
|
68 |
<td>
|
@@ -73,7 +85,7 @@
|
|
73 |
|
74 |
<tr valign="top">
|
75 |
<th scope="row">
|
76 |
-
<?php echo sprintf(__('Number of rows in the
|
77 |
</th>
|
78 |
|
79 |
<td>
|
@@ -148,10 +160,71 @@
|
|
148 |
|
149 |
<td>
|
150 |
<strong><?php if( function_exists('bcadd') ) { _e('Installed','wp_statistics'); } else { _e('Not installed', 'wp_statistics'); }?></strong>
|
151 |
-
<p class="description"><?php _e('If the PHP BC Math Extension is installed. BC Math is required for the GeoIP code
|
152 |
</td>
|
153 |
</tr>
|
154 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
155 |
<tr valign="top">
|
156 |
<th scope="row" colspan="2"><h3><?php _e('Client Info', 'wp_statistics'); ?></h3></th>
|
157 |
</tr>
|
1 |
+
<?php
|
2 |
+
/* format size of file
|
3 |
+
* @author Mike Zriel
|
4 |
+
* @date 7 March 2011
|
5 |
+
* @website www.zriel.com
|
6 |
+
*/
|
7 |
+
function formatSize($size) {
|
8 |
+
$sizes = array(" Bytes", " KB", " MB", " GB", " TB", " PB", " EB", " ZB", " YB");
|
9 |
+
if ($size == 0) { return('n/a'); } else {
|
10 |
+
return (round($size/pow(1024, ($i = floor(log($size, 1024)))), 2) . $sizes[$i]); }
|
11 |
+
}
|
12 |
+
?>
|
13 |
<div class="wrap">
|
14 |
<table class="form-table">
|
15 |
<tbody>
|
41 |
|
42 |
<tr valign="top">
|
43 |
<th scope="row">
|
44 |
+
<?php echo sprintf(__('Number of rows in the %s table', 'wp_statistics'), '<code>' . $table_prefix . 'statistics_' . 'useronline' . '</code>'); ?>:
|
45 |
</th>
|
46 |
|
47 |
<td>
|
52 |
|
53 |
<tr valign="top">
|
54 |
<th scope="row">
|
55 |
+
<?php echo sprintf(__('Number of rows in the %s table', 'wp_statistics'), '<code>' . $table_prefix . 'statistics_' . 'visit' . '</code>'); ?>:
|
56 |
</th>
|
57 |
|
58 |
<td>
|
63 |
|
64 |
<tr valign="top">
|
65 |
<th scope="row">
|
66 |
+
<?php echo sprintf(__('Number of rows in the %s table', 'wp_statistics'), '<code>' . $table_prefix . 'statistics_' . 'visitor' . '</code>'); ?>:
|
67 |
</th>
|
68 |
|
69 |
<td>
|
74 |
|
75 |
<tr valign="top">
|
76 |
<th scope="row">
|
77 |
+
<?php echo sprintf(__('Number of rows in the %s table', 'wp_statistics'), '<code>' . $table_prefix . 'statistics_' . 'exclusions' . '</code>'); ?>:
|
78 |
</th>
|
79 |
|
80 |
<td>
|
85 |
|
86 |
<tr valign="top">
|
87 |
<th scope="row">
|
88 |
+
<?php echo sprintf(__('Number of rows in the %s table', 'wp_statistics'), '<code>' . $table_prefix . 'statistics_' . 'pages' . '</code>'); ?>:
|
89 |
</th>
|
90 |
|
91 |
<td>
|
160 |
|
161 |
<td>
|
162 |
<strong><?php if( function_exists('bcadd') ) { _e('Installed','wp_statistics'); } else { _e('Not installed', 'wp_statistics'); }?></strong>
|
163 |
+
<p class="description"><?php _e('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.', 'wp_statistics'); ?></p>
|
164 |
</td>
|
165 |
</tr>
|
166 |
|
167 |
+
<tr valign="top">
|
168 |
+
<th scope="row" colspan="2"><h3><?php _e('File Info', 'wp_statistics'); ?></h3></th>
|
169 |
+
</tr>
|
170 |
+
|
171 |
+
<tr valign="top">
|
172 |
+
<th scope="row">
|
173 |
+
<?php _e('GeoIP Database', 'wp_statistics'); ?>:
|
174 |
+
</th>
|
175 |
+
|
176 |
+
<td>
|
177 |
+
<strong><?php $upload_dir = wp_upload_dir();
|
178 |
+
$GeoIP_filename = $upload_dir['basedir'] . '/wp-statistics/GeoLite2-Country.mmdb';
|
179 |
+
$GeoIP_filedate = @filemtime( $GeoIP_filename );
|
180 |
+
|
181 |
+
if( $GeoIP_filedate === FALSE ) {
|
182 |
+
_e('Database file does not exist.', 'wp_statistics');
|
183 |
+
} else {
|
184 |
+
echo formatSize( @filesize( $GeoIP_filename ) ) . __(', created on ', 'wp_statistics') . date_i18n(get_option('date_format') . ' @ ' . get_option('time_format'), $GeoIP_filedate);
|
185 |
+
}?></strong>
|
186 |
+
<p class="description"><?php _e('The file size and date of the GeoIP database.', 'wp_statistics'); ?></p>
|
187 |
+
</td>
|
188 |
+
</tr>
|
189 |
+
|
190 |
+
<tr valign="top">
|
191 |
+
<th scope="row">
|
192 |
+
<?php _e('browscap.ini File', 'wp_statistics'); ?>:
|
193 |
+
</th>
|
194 |
+
|
195 |
+
<td>
|
196 |
+
<strong><?php
|
197 |
+
$browscap_filename = $upload_dir['basedir'] . '/wp-statistics/browscap.ini';
|
198 |
+
$browscap_filedate = @filemtime( $browscap_filename );
|
199 |
+
|
200 |
+
if( $browscap_filedate === FALSE ) {
|
201 |
+
_e('browscap.ini file does not exist.', 'wp_statistics');
|
202 |
+
} else {
|
203 |
+
echo formatSize( @filesize( $browscap_filename ) ) . __(', created on ', 'wp_statistics') . date_i18n(get_option('date_format') . ' @ ' . get_option('time_format'), $browscap_filedate);
|
204 |
+
}?></strong>
|
205 |
+
<p class="description"><?php _e('The file size and date of the browscap.ini file.', 'wp_statistics'); ?></p>
|
206 |
+
</td>
|
207 |
+
</tr>
|
208 |
+
|
209 |
+
<tr valign="top">
|
210 |
+
<th scope="row">
|
211 |
+
<?php _e('browscap Cache File', 'wp_statistics'); ?>:
|
212 |
+
</th>
|
213 |
+
|
214 |
+
<td>
|
215 |
+
<strong><?php
|
216 |
+
$browscap_filename = $upload_dir['basedir'] . '/wp-statistics/cache.php';
|
217 |
+
$browscap_filedate = @filemtime( $browscap_filename );
|
218 |
+
|
219 |
+
if( $browscap_filedate === FALSE ) {
|
220 |
+
_e('browscap cache file does not exist.', 'wp_statistics');
|
221 |
+
} else {
|
222 |
+
echo formatSize( @filesize( $browscap_filename ) ) . __(', created on ', 'wp_statistics') . date_i18n(get_option('date_format') . ' @ ' . get_option('time_format'), $browscap_filedate);
|
223 |
+
}?></strong>
|
224 |
+
<p class="description"><?php _e('The file size and date of the browscap cache file.', 'wp_statistics'); ?></p>
|
225 |
+
</td>
|
226 |
+
</tr>
|
227 |
+
|
228 |
<tr valign="top">
|
229 |
<th scope="row" colspan="2"><h3><?php _e('Client Info', 'wp_statistics'); ?></h3></th>
|
230 |
</tr>
|
includes/optimization/tabs/wps-optimization-updates.php
CHANGED
@@ -12,52 +12,6 @@
|
|
12 |
<div class="wrap">
|
13 |
<table class="form-table">
|
14 |
<tbody>
|
15 |
-
<tr valign="top">
|
16 |
-
<th scope="row" colspan="2"><h3><?php _e('GeoIP File Info', 'wp_statistics'); ?></h3></th>
|
17 |
-
</tr>
|
18 |
-
|
19 |
-
<tr valign="top">
|
20 |
-
<th scope="row">
|
21 |
-
<?php _e('File Date', 'wp_statistics'); ?>:
|
22 |
-
</th>
|
23 |
-
|
24 |
-
<td>
|
25 |
-
<strong><?php $upload_dir = wp_upload_dir();
|
26 |
-
$GeoIP_filename = $upload_dir['basedir'] . '/wp-statistics/GeoLite2-Country.mmdb';
|
27 |
-
$GeoIP_filedate = @filemtime( $GeoIP_filename );
|
28 |
-
|
29 |
-
if( $GeoIP_filedate === FALSE ) {
|
30 |
-
_e('Database file does not exist.', 'wp_statistics');
|
31 |
-
} else {
|
32 |
-
echo date_i18n(get_option('date_format') . ' @ ' . get_option('time_format'), $GeoIP_filedate);
|
33 |
-
}?></strong>
|
34 |
-
<p class="description"><?php _e('The file date of the GeoIP database.', 'wp_statistics'); ?></p>
|
35 |
-
</td>
|
36 |
-
</tr>
|
37 |
-
|
38 |
-
<tr valign="top">
|
39 |
-
<th scope="row">
|
40 |
-
<?php _e('File Size', 'wp_statistics'); ?>:
|
41 |
-
</th>
|
42 |
-
|
43 |
-
<td>
|
44 |
-
<strong><?php echo formatSize( @filesize( $GeoIP_filename ) );
|
45 |
-
|
46 |
-
/* format size of file
|
47 |
-
* @author Mike Zriel
|
48 |
-
* @date 7 March 2011
|
49 |
-
* @website www.zriel.com
|
50 |
-
*/
|
51 |
-
function formatSize($size) {
|
52 |
-
$sizes = array(" Bytes", " KB", " MB", " GB", " TB", " PB", " EB", " ZB", " YB");
|
53 |
-
if ($size == 0) { return('n/a'); } else {
|
54 |
-
return (round($size/pow(1024, ($i = floor(log($size, 1024)))), 2) . $sizes[$i]); }
|
55 |
-
}
|
56 |
-
?></strong>
|
57 |
-
<p class="description"><?php _e('The file size of the GeoIP database.', 'wp_statistics'); ?></p>
|
58 |
-
</td>
|
59 |
-
</tr>
|
60 |
-
|
61 |
<tr valign="top">
|
62 |
<th scope="row" colspan="2"><h3><?php _e('GeoIP Options', 'wp_statistics'); ?></h3></th>
|
63 |
</tr>
|
@@ -87,6 +41,7 @@
|
|
87 |
<p class="description"><?php _e('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', 'wp_statistics'); ?></p>
|
88 |
</td>
|
89 |
</tr>
|
|
|
90 |
</tbody>
|
91 |
</table>
|
92 |
</div>
|
12 |
<div class="wrap">
|
13 |
<table class="form-table">
|
14 |
<tbody>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
<tr valign="top">
|
16 |
<th scope="row" colspan="2"><h3><?php _e('GeoIP Options', 'wp_statistics'); ?></h3></th>
|
17 |
</tr>
|
41 |
<p class="description"><?php _e('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', 'wp_statistics'); ?></p>
|
42 |
</td>
|
43 |
</tr>
|
44 |
+
|
45 |
</tbody>
|
46 |
</table>
|
47 |
</div>
|
includes/optimization/wps-optimization.php
CHANGED
@@ -44,6 +44,14 @@
|
|
44 |
}
|
45 |
}
|
46 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
47 |
if( array_key_exists( 'index', $_GET ) ) {
|
48 |
if( $_GET['index'] == 1 ) {
|
49 |
GLOBAL $wpdb;
|
@@ -119,9 +127,7 @@ switch( $selected_tab )
|
|
119 |
<li class="ui-state-default ui-corner-top"><a href="#export" class="ui-tabs-anchor"><span><?php _e('Export', 'wp_statistics'); ?></span></a></li>
|
120 |
<li class="ui-state-default ui-corner-top"><a href="#purging" class="ui-tabs-anchor"><span><?php _e('Purging', 'wp_statistics'); ?></span></a></li>
|
121 |
<li class="ui-state-default ui-corner-top"><a href="#database" class="ui-tabs-anchor"><span><?php _e('Database', 'wp_statistics'); ?></span></a></li>
|
122 |
-
<?php if( version_compare(phpversion(), WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION, '>') ) { ?>
|
123 |
<li class="ui-state-default ui-corner-top"><a href="#updates" class="ui-tabs-anchor"><span><?php _e('Updates', 'wp_statistics'); ?></span></a></li>
|
124 |
-
<?php } ?>
|
125 |
</ul>
|
126 |
|
127 |
<div id="resources">
|
@@ -140,11 +146,9 @@ switch( $selected_tab )
|
|
140 |
<?php include( dirname( __FILE__ ) . '/tabs/wps-optimization-database.php' ); ?>
|
141 |
</div>
|
142 |
|
143 |
-
<?php if( version_compare(phpversion(), WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION, '>') ) { ?>
|
144 |
<div id="updates">
|
145 |
<?php include( dirname( __FILE__ ) . '/tabs/wps-optimization-updates.php' ); ?>
|
146 |
</div>
|
147 |
-
<?php } ?>
|
148 |
|
149 |
</div>
|
150 |
</div>
|
44 |
}
|
45 |
}
|
46 |
|
47 |
+
if( array_key_exists( 'install', $_GET ) ) {
|
48 |
+
if( $_GET['install'] == 1 ) {
|
49 |
+
$WPS_Installed = "1.0";
|
50 |
+
include( plugin_dir_path( __FILE__ ) . "../../wps-install.php" );
|
51 |
+
echo "<div class='updated settings-error'><p><strong>" . __('Install routine complete.', 'wp_statistics') . "</strong></p></div>";
|
52 |
+
}
|
53 |
+
}
|
54 |
+
|
55 |
if( array_key_exists( 'index', $_GET ) ) {
|
56 |
if( $_GET['index'] == 1 ) {
|
57 |
GLOBAL $wpdb;
|
127 |
<li class="ui-state-default ui-corner-top"><a href="#export" class="ui-tabs-anchor"><span><?php _e('Export', 'wp_statistics'); ?></span></a></li>
|
128 |
<li class="ui-state-default ui-corner-top"><a href="#purging" class="ui-tabs-anchor"><span><?php _e('Purging', 'wp_statistics'); ?></span></a></li>
|
129 |
<li class="ui-state-default ui-corner-top"><a href="#database" class="ui-tabs-anchor"><span><?php _e('Database', 'wp_statistics'); ?></span></a></li>
|
|
|
130 |
<li class="ui-state-default ui-corner-top"><a href="#updates" class="ui-tabs-anchor"><span><?php _e('Updates', 'wp_statistics'); ?></span></a></li>
|
|
|
131 |
</ul>
|
132 |
|
133 |
<div id="resources">
|
146 |
<?php include( dirname( __FILE__ ) . '/tabs/wps-optimization-database.php' ); ?>
|
147 |
</div>
|
148 |
|
|
|
149 |
<div id="updates">
|
150 |
<?php include( dirname( __FILE__ ) . '/tabs/wps-optimization-updates.php' ); ?>
|
151 |
</div>
|
|
|
152 |
|
153 |
</div>
|
154 |
</div>
|
includes/settings/tabs/wps-about.php
CHANGED
@@ -1,5 +1,9 @@
|
|
1 |
<table class="form-table">
|
2 |
<tbody>
|
|
|
|
|
|
|
|
|
3 |
<tr valign="top">
|
4 |
<td scope="row" align="center"><h2><?php echo sprintf(__('WP Statistics V%s', 'wp_statistics'), WP_STATISTICS_VERSION); ?></h2></td>
|
5 |
</tr>
|
@@ -17,7 +21,7 @@
|
|
17 |
</tr>
|
18 |
|
19 |
<tr valign="top">
|
20 |
-
<td scope="row" colspan="2"><?php
|
21 |
</tr>
|
22 |
|
23 |
<tr valign="top">
|
@@ -33,7 +37,7 @@
|
|
33 |
</tr>
|
34 |
|
35 |
<tr valign="top">
|
36 |
-
<td scope="row" colspan="2"><?php
|
37 |
</tr>
|
38 |
|
39 |
<tr valign="top">
|
@@ -45,9 +49,9 @@
|
|
45 |
<p><?php _e("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:", 'wp_statistics'); ?></p>
|
46 |
|
47 |
<ul style="list-style-type: disc; list-style-position: inside; padding-left: 25px;">
|
48 |
-
<li><?php echo
|
49 |
-
<li><?php
|
50 |
-
<li><?php
|
51 |
<li><?php _e('Have you search the Internet for any error messages you are receiving?', 'wp_statistics' );?></li>
|
52 |
</ul>
|
53 |
|
@@ -63,11 +67,11 @@
|
|
63 |
<li><?php _e('Have you checked your PHP and web server error logs?', 'wp_statistics' );?></li>
|
64 |
</ul>
|
65 |
|
66 |
-
<p><?php _e('Still not having any luck?', 'wp_statistics' );?> <?php
|
67 |
|
68 |
<p><br /></p>
|
69 |
|
70 |
-
<p><?php
|
71 |
</td>
|
72 |
</tr>
|
73 |
|
1 |
<table class="form-table">
|
2 |
<tbody>
|
3 |
+
<tr valign="top">
|
4 |
+
<td scope="row" align="center"><img src="<?php echo plugins_url('wp-statistics/assets/images/logo-250.png'); ?>"></td>
|
5 |
+
</tr>
|
6 |
+
|
7 |
<tr valign="top">
|
8 |
<td scope="row" align="center"><h2><?php echo sprintf(__('WP Statistics V%s', 'wp_statistics'), WP_STATISTICS_VERSION); ?></h2></td>
|
9 |
</tr>
|
21 |
</tr>
|
22 |
|
23 |
<tr valign="top">
|
24 |
+
<td scope="row" colspan="2"><?php echo sprintf( __('Come visit our great new %s and keep up to date on the latest news about WP Statistics.', 'wp_statistics'), '<a href="http://wp-statistics.com" target="_blank">' . __('website', 'wp_statistics') . '</a>');?></td>
|
25 |
</tr>
|
26 |
|
27 |
<tr valign="top">
|
37 |
</tr>
|
38 |
|
39 |
<tr valign="top">
|
40 |
+
<td scope="row" colspan="2"><?php echo sprintf( __('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.', 'wp_statistics'), '<a href="http://teamwork.wp-parsi.com/projects/wp-statistics" target="_blank">' . __('translation collaboration site', 'wp_statistics') . '</a>', '<a href="http://wp-statistics.com/contact/" target="_blank">' . __( 'drop us a line', 'wp_statistics') . '</a>');?></td>
|
41 |
</tr>
|
42 |
|
43 |
<tr valign="top">
|
49 |
<p><?php _e("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:", 'wp_statistics'); ?></p>
|
50 |
|
51 |
<ul style="list-style-type: disc; list-style-position: inside; padding-left: 25px;">
|
52 |
+
<li><?php echo sprintf( __('Have you read the %s?', 'wp_statistics' ), '<a title="' . __('FAQs', 'wp_statistics') . '" href="http://wp-statistics.com/?page_id=19" target="_blank">' . __('FAQs', 'wp_statistics'). '</a>');?></li>
|
53 |
+
<li><?php echo sprintf( __('Have you read the %s?', 'wp_statistics' ), '<a title="' . __('manual', 'wp_statistics') . '" href="?page=wps_manual_menu">' . __('manual', 'wp_statistics') . '</a>');?></li>
|
54 |
+
<li><?php echo sprintf( __('Have you search the %s for a similar issue?', 'wp_statistics' ), '<a href="http://wordpress.org/support/plugin/wp-statistics" target="_blank">' . __('support forum', 'wp_statistics') . '</a>');?></li>
|
55 |
<li><?php _e('Have you search the Internet for any error messages you are receiving?', 'wp_statistics' );?></li>
|
56 |
</ul>
|
57 |
|
67 |
<li><?php _e('Have you checked your PHP and web server error logs?', 'wp_statistics' );?></li>
|
68 |
</ul>
|
69 |
|
70 |
+
<p><?php _e('Still not having any luck?', 'wp_statistics' );?> <?php echo sprintf(__('Then please open a new thread on the %s and we\'ll respond as soon as possible.', 'wp_statistics' ), '<a href="http://wordpress.org/support/plugin/wp-statistics" target="_blank">' . __('WordPress.org support forum', 'wp_statistics') . '</a>');?></p>
|
71 |
|
72 |
<p><br /></p>
|
73 |
|
74 |
+
<p><?php echo sprintf( __('Alternatively %s support is available as well.', 'wp_statistics' ), '<a href="http://forum.wp-parsi.com/forum/17-%D9%85%D8%B4%DA%A9%D9%84%D8%A7%D8%AA-%D8%AF%DB%8C%DA%AF%D8%B1/" target="_blank">' . __('Farsi', 'wp_statistics' ) .'</a>');?></p>
|
75 |
</td>
|
76 |
</tr>
|
77 |
|
includes/settings/tabs/wps-access-level.php
CHANGED
@@ -82,7 +82,7 @@ if( $wps_nonce_valid ) {
|
|
82 |
|
83 |
<tr valign="top">
|
84 |
<th scope="row" colspan="2">
|
85 |
-
<p class="description"><?php echo sprintf(__('See the
|
86 |
<p class="description"><?php echo __('Hint: manage_network = Super Admin Network, manage_options = Administrator, edit_others_posts = Editor, publish_posts = Author, edit_posts = Contributor, read = Everyone.', 'wp_statistics'); ?></p>
|
87 |
<p class="description"><?php echo __('Each of the above casscades the rights upwards in the default WordPress configuration. So for example selecting publish_posts grants the right to Authors, Editors, Admins and Super Admins.', 'wp_statistics'); ?></p>
|
88 |
<p class="description"><?php echo sprintf(__('If you need a more robust solution to delegate access you might want to look at %s in the WordPress plugin directory.', 'wp_statistics'), '<a href="http://wordpress.org/plugins/capability-manager-enhanced/" target=_blank>Capability Manager Enhanced</a>'); ?></p>
|
82 |
|
83 |
<tr valign="top">
|
84 |
<th scope="row" colspan="2">
|
85 |
+
<p class="description"><?php echo sprintf(__('See the %s for details on capability levels.', 'wp_statistics'), '<a target=_blank href="http://codex.wordpress.org/Roles_and_Capabilities">' . __('WordPress Roles and Capabilities page', 'wp_statistics') . '</a>'); ?></p>
|
86 |
<p class="description"><?php echo __('Hint: manage_network = Super Admin Network, manage_options = Administrator, edit_others_posts = Editor, publish_posts = Author, edit_posts = Contributor, read = Everyone.', 'wp_statistics'); ?></p>
|
87 |
<p class="description"><?php echo __('Each of the above casscades the rights upwards in the default WordPress configuration. So for example selecting publish_posts grants the right to Authors, Editors, Admins and Super Admins.', 'wp_statistics'); ?></p>
|
88 |
<p class="description"><?php echo sprintf(__('If you need a more robust solution to delegate access you might want to look at %s in the WordPress plugin directory.', 'wp_statistics'), '<a href="http://wordpress.org/plugins/capability-manager-enhanced/" target=_blank>Capability Manager Enhanced</a>'); ?></p>
|
includes/settings/tabs/wps-browscap.php
ADDED
@@ -0,0 +1,74 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
if( $wps_nonce_valid ) {
|
3 |
+
|
4 |
+
$wps_option_list = array("wps_browscap","wps_update_browscap","wps_schedule_browscap");
|
5 |
+
|
6 |
+
foreach( $wps_option_list as $option ) {
|
7 |
+
$new_option = str_replace( "wps_", "", $option );
|
8 |
+
if( array_key_exists( $option, $_POST ) ) { $value = $_POST[$option]; } else { $value = ''; }
|
9 |
+
$WP_Statistics->store_option($new_option, $value);
|
10 |
+
}
|
11 |
+
}
|
12 |
+
|
13 |
+
?>
|
14 |
+
<table class="form-table">
|
15 |
+
<tbody>
|
16 |
+
<tr valign="top">
|
17 |
+
<th scope="row" colspan="2"><h3><?php _e('browscap settings', 'wp_statistics'); ?></h3></th>
|
18 |
+
</tr>
|
19 |
+
|
20 |
+
<tr valign="top">
|
21 |
+
<th scope="row">
|
22 |
+
<label for="browscap-enable"><?php _e('browscap usage', 'wp_statistics'); ?>:</label>
|
23 |
+
</th>
|
24 |
+
|
25 |
+
<td>
|
26 |
+
<input id="browscap-enable" type="checkbox" name="wps_browscap" <?php echo $WP_Statistics->get_option('browscap')==true? "checked='checked'":'';?>>
|
27 |
+
<label for="browscap-enable"><?php _e('Active', 'wp_statistics'); ?></label>
|
28 |
+
<p class="description"><?php _e('The browscap database will be downloaded and used to detect robots.', 'wp_statistics'); ?></p>
|
29 |
+
</td>
|
30 |
+
</tr>
|
31 |
+
|
32 |
+
<tr valign="top">
|
33 |
+
<th scope="row">
|
34 |
+
<label for="geoip-update"><?php _e('Update browscap Info', 'wp_statistics'); ?>:</label>
|
35 |
+
</th>
|
36 |
+
|
37 |
+
<td>
|
38 |
+
<input id="browscap-update" type="checkbox" name="wps_update_browscap" <?php echo $WP_Statistics->get_option('update_browscap')==true? "checked='checked'":'';?>>
|
39 |
+
<label for="browscap-update"><?php _e('Download browscap Database', 'wp_statistics'); ?></label>
|
40 |
+
<p class="description"><?php _e('Save changes on this page to download the update.', 'wp_statistics'); ?></p>
|
41 |
+
</td>
|
42 |
+
</tr>
|
43 |
+
|
44 |
+
<tr valign="top">
|
45 |
+
<th scope="row">
|
46 |
+
<label for="browscap-schedule"><?php _e('Schedule weekly update of browscap DB', 'wp_statistics'); ?>:</label>
|
47 |
+
</th>
|
48 |
+
|
49 |
+
<td>
|
50 |
+
<input id="browscap-schedule" type="checkbox" name="wps_schedule_browscap" <?php echo $WP_Statistics->get_option('schedule_browscap')==true? "checked='checked'":'';?>>
|
51 |
+
<label for="browscap-schedule"><?php _e('Active', 'wp_statistics'); ?></label>
|
52 |
+
<?php
|
53 |
+
if( $WP_Statistics->get_option('schedule_browscap') ) {
|
54 |
+
echo '<p class="description">' . __('Next update will be') .': <code>';
|
55 |
+
$last_update = $WP_Statistics->get_option('last_browscap_dl');
|
56 |
+
$next_update = $last_update + (86400 * 7);
|
57 |
+
|
58 |
+
$next_schedule = wp_next_scheduled('wp_statistics_browscap_hook');
|
59 |
+
|
60 |
+
if( $next_schedule ) {
|
61 |
+
echo date( get_option('date_format'), $next_update ) . ' @ ' . date( get_option('time_format'), $next_schedule );
|
62 |
+
} else {
|
63 |
+
echo date( get_option('date_format'), $next_update ) . ' @ ' . date( get_option('time_format'), time() );
|
64 |
+
}
|
65 |
+
|
66 |
+
echo '</code></p>';
|
67 |
+
}
|
68 |
+
?>
|
69 |
+
<p class="description"><?php _e('Download of the browscap database will be scheduled for once a week.', 'wp_statistics'); ?></p>
|
70 |
+
</td>
|
71 |
+
</tr>
|
72 |
+
|
73 |
+
</tbody>
|
74 |
+
</table>
|
includes/settings/tabs/wps-general.php
CHANGED
@@ -64,7 +64,7 @@ if( $wps_nonce_valid ) {
|
|
64 |
<td>
|
65 |
<input id="hash_ips" type="checkbox" value="1" name="wps_hash_ips" <?php echo $WP_Statistics->get_option('hash_ips')==true? "checked='checked'":'';?>>
|
66 |
<label for="hash_ips"><?php _e('Active', 'wp_statistics'); ?></label>
|
67 |
-
<p class="description"><?php _e('
|
68 |
</td>
|
69 |
</tr>
|
70 |
|
@@ -337,7 +337,7 @@ if( $wps_nonce_valid ) {
|
|
337 |
<p class="description"><?php _e('Type Select Get Status Report.', 'wp_statistics'); ?></p>
|
338 |
|
339 |
<?php if( !is_plugin_active('wp-sms/wp-sms.php') ) { ?>
|
340 |
-
<p class="description note"><?php echo sprintf(__('Note: To send SMS text messages please install the
|
341 |
<?php } ?>
|
342 |
</td>
|
343 |
</tr>
|
64 |
<td>
|
65 |
<input id="hash_ips" type="checkbox" value="1" name="wps_hash_ips" <?php echo $WP_Statistics->get_option('hash_ips')==true? "checked='checked'":'';?>>
|
66 |
<label for="hash_ips"><?php _e('Active', 'wp_statistics'); ?></label>
|
67 |
+
<p class="description"><?php _e('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.', 'wp_statistics'); ?></p>
|
68 |
</td>
|
69 |
</tr>
|
70 |
|
337 |
<p class="description"><?php _e('Type Select Get Status Report.', 'wp_statistics'); ?></p>
|
338 |
|
339 |
<?php if( !is_plugin_active('wp-sms/wp-sms.php') ) { ?>
|
340 |
+
<p class="description note"><?php echo sprintf(__('Note: To send SMS text messages please install the %s plugin.', 'wp_statistics'), '<a href="http://wordpress.org/extend/plugins/wp-sms/" target="_blank">' . __('WordPress SMS', 'wp_statistics') . '</a>'); ?></p>
|
341 |
<?php } ?>
|
342 |
</td>
|
343 |
</tr>
|
includes/settings/wps-settings.php
CHANGED
@@ -25,11 +25,14 @@ switch( $selected_tab )
|
|
25 |
case 'geoip':
|
26 |
if( $wps_admin ) { $current_tab = 3; } else { $current_tab = 0; }
|
27 |
break;
|
28 |
-
case '
|
29 |
if( $wps_admin ) { $current_tab = 4; } else { $current_tab = 0; }
|
30 |
break;
|
|
|
|
|
|
|
31 |
case 'about':
|
32 |
-
if( $wps_admin ) { $current_tab =
|
33 |
break;
|
34 |
default:
|
35 |
$current_tab = 0;
|
@@ -58,9 +61,12 @@ switch( $selected_tab )
|
|
58 |
if( wps_admin == 1 ) { tab = 'geoip'; } else { tab = 'about'; }
|
59 |
break;
|
60 |
case 4:
|
61 |
-
if( wps_admin == 1 ) { tab = '
|
62 |
break;
|
63 |
case 5:
|
|
|
|
|
|
|
64 |
tab = 'about';
|
65 |
break;
|
66 |
}
|
@@ -81,6 +87,7 @@ switch( $selected_tab )
|
|
81 |
<li class="ui-state-default ui-corner-top"><a class="ui-tabs-anchor" href="#overview-display-settings"><span><?php _e('Overview', 'wp_statistics'); ?></span></a></li>
|
82 |
<?php if( $wps_admin ) { ?> <li class="ui-state-default ui-corner-top"><a class="ui-tabs-anchor" href="#access-settings"><span><?php _e('Access/Exclusions', 'wp_statistics'); ?></span></a></li><?php } ?>
|
83 |
<?php if( $wps_admin ) { ?> <li class="ui-state-default ui-corner-top"><a class="ui-tabs-anchor" href="#geoip-settings"><span><?php _e('GeoIP', 'wp_statistics'); ?></span></a></li><?php } ?>
|
|
|
84 |
<?php if( $wps_admin ) { ?> <li class="ui-state-default ui-corner-top"><a class="ui-tabs-anchor" href="#maintenance-settings"><span><?php _e('Maintenance', 'wp_statistics'); ?></span></a></li><?php } ?>
|
85 |
<li class="ui-state-default ui-corner-top"><a class="ui-tabs-anchor" href="#about"><span><?php _e('About', 'wp_statistics'); ?></span></a></li>
|
86 |
</ul>
|
@@ -101,6 +108,10 @@ switch( $selected_tab )
|
|
101 |
<?php if( $wps_admin ) { include( dirname( __FILE__ ) . '/tabs/wps-geoip.php' ); } ?>
|
102 |
</div>
|
103 |
|
|
|
|
|
|
|
|
|
104 |
<div id="maintenance-settings">
|
105 |
<?php if( $wps_admin ) { include( dirname( __FILE__ ) . '/tabs/wps-maintenance.php' ); } ?>
|
106 |
</div>
|
25 |
case 'geoip':
|
26 |
if( $wps_admin ) { $current_tab = 3; } else { $current_tab = 0; }
|
27 |
break;
|
28 |
+
case 'browscap':
|
29 |
if( $wps_admin ) { $current_tab = 4; } else { $current_tab = 0; }
|
30 |
break;
|
31 |
+
case 'maintenance':
|
32 |
+
if( $wps_admin ) { $current_tab = 5; } else { $current_tab = 0; }
|
33 |
+
break;
|
34 |
case 'about':
|
35 |
+
if( $wps_admin ) { $current_tab = 6; } else { $current_tab = 1; }
|
36 |
break;
|
37 |
default:
|
38 |
$current_tab = 0;
|
61 |
if( wps_admin == 1 ) { tab = 'geoip'; } else { tab = 'about'; }
|
62 |
break;
|
63 |
case 4:
|
64 |
+
if( wps_admin == 1 ) { tab = 'browscap'; } else { tab = 'about'; }
|
65 |
break;
|
66 |
case 5:
|
67 |
+
if( wps_admin == 1 ) { tab = 'maintenance'; } else { tab = 'about'; }
|
68 |
+
break;
|
69 |
+
case 6:
|
70 |
tab = 'about';
|
71 |
break;
|
72 |
}
|
87 |
<li class="ui-state-default ui-corner-top"><a class="ui-tabs-anchor" href="#overview-display-settings"><span><?php _e('Overview', 'wp_statistics'); ?></span></a></li>
|
88 |
<?php if( $wps_admin ) { ?> <li class="ui-state-default ui-corner-top"><a class="ui-tabs-anchor" href="#access-settings"><span><?php _e('Access/Exclusions', 'wp_statistics'); ?></span></a></li><?php } ?>
|
89 |
<?php if( $wps_admin ) { ?> <li class="ui-state-default ui-corner-top"><a class="ui-tabs-anchor" href="#geoip-settings"><span><?php _e('GeoIP', 'wp_statistics'); ?></span></a></li><?php } ?>
|
90 |
+
<?php if( $wps_admin ) { ?> <li class="ui-state-default ui-corner-top"><a class="ui-tabs-anchor" href="#browscap-settings"><span><?php _e('browscap', 'wp_statistics'); ?></span></a></li><?php } ?>
|
91 |
<?php if( $wps_admin ) { ?> <li class="ui-state-default ui-corner-top"><a class="ui-tabs-anchor" href="#maintenance-settings"><span><?php _e('Maintenance', 'wp_statistics'); ?></span></a></li><?php } ?>
|
92 |
<li class="ui-state-default ui-corner-top"><a class="ui-tabs-anchor" href="#about"><span><?php _e('About', 'wp_statistics'); ?></span></a></li>
|
93 |
</ul>
|
108 |
<?php if( $wps_admin ) { include( dirname( __FILE__ ) . '/tabs/wps-geoip.php' ); } ?>
|
109 |
</div>
|
110 |
|
111 |
+
<div id="browscap-settings">
|
112 |
+
<?php if( $wps_admin ) { include( dirname( __FILE__ ) . '/tabs/wps-browscap.php' ); } ?>
|
113 |
+
</div>
|
114 |
+
|
115 |
<div id="maintenance-settings">
|
116 |
<?php if( $wps_admin ) { include( dirname( __FILE__ ) . '/tabs/wps-maintenance.php' ); } ?>
|
117 |
</div>
|
languages/default.mo
CHANGED
Binary file
|
languages/default.po
CHANGED
@@ -1,576 +1,503 @@
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version:
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2014-
|
6 |
-
"PO-Revision-Date: 2014-09-18 21:31+0330\n"
|
7 |
-
"Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
|
8 |
-
"Language-Team: \n"
|
9 |
-
"Language: en\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"
|
14 |
-
"
|
15 |
-
"
|
16 |
"X-Generator: Poedit 1.6.5\n"
|
17 |
-
"
|
18 |
-
"
|
|
|
19 |
|
20 |
-
#:
|
21 |
msgid ""
|
22 |
"Unable to load the GeoIP database, make sure you have downloaded it in the "
|
23 |
"settings page."
|
24 |
msgstr ""
|
25 |
|
26 |
-
#:
|
27 |
-
#, php-format
|
28 |
msgid "Updated %s GeoIP records in the visitors database."
|
29 |
msgstr ""
|
30 |
|
31 |
-
#:
|
32 |
msgid "Browser Statistics"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#:
|
36 |
-
#:
|
37 |
-
#:
|
38 |
-
#:
|
39 |
-
#:
|
40 |
-
#:
|
41 |
-
#:
|
42 |
-
#:
|
43 |
-
#:
|
44 |
-
#:
|
45 |
-
#:
|
46 |
-
#:
|
47 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:7
|
48 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:9
|
49 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:64
|
50 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:8
|
51 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:7
|
52 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:8
|
53 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:11
|
54 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:7
|
55 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:11
|
56 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:7
|
57 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:7
|
58 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:14
|
59 |
msgid "Click to toggle"
|
60 |
msgstr ""
|
61 |
|
62 |
-
#:
|
63 |
-
#:
|
64 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:25
|
65 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:231
|
66 |
msgid "Browsers"
|
67 |
msgstr ""
|
68 |
|
69 |
-
#:
|
70 |
msgid "Browsers by type"
|
71 |
msgstr ""
|
72 |
|
73 |
-
#:
|
74 |
msgid "Platform"
|
75 |
msgstr ""
|
76 |
|
77 |
-
#:
|
78 |
msgid "Browsers by platform"
|
79 |
msgstr ""
|
80 |
|
81 |
-
#:
|
82 |
-
#, php-format
|
83 |
msgid "%s Version"
|
84 |
msgstr ""
|
85 |
|
86 |
-
#:
|
87 |
msgid ""
|
88 |
"Attention: Exclusion are not currently set to be recorded, the results below "
|
89 |
"may not reflect current statistics!"
|
90 |
msgstr ""
|
91 |
|
92 |
-
#:
|
93 |
msgid "Exclusions Statistics"
|
94 |
msgstr ""
|
95 |
|
96 |
-
#:
|
97 |
-
#:
|
98 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:33
|
99 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
|
100 |
msgid "10 Days"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#:
|
104 |
-
#:
|
105 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:34
|
106 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
|
107 |
msgid "20 Days"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#:
|
111 |
-
#:
|
112 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:35
|
113 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:23
|
114 |
msgid "30 Days"
|
115 |
msgstr ""
|
116 |
|
117 |
-
#:
|
118 |
-
#:
|
119 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:36
|
120 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:24
|
121 |
msgid "2 Months"
|
122 |
msgstr ""
|
123 |
|
124 |
-
#:
|
125 |
-
#:
|
126 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:37
|
127 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:25
|
128 |
msgid "3 Months"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#:
|
132 |
-
#:
|
133 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:38
|
134 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:26
|
135 |
msgid "6 Months"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#:
|
139 |
-
#:
|
140 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:39
|
141 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:27
|
142 |
msgid "9 Months"
|
143 |
msgstr ""
|
144 |
|
145 |
-
#:
|
146 |
-
#:
|
147 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:40
|
148 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:28
|
149 |
msgid "1 Year"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#:
|
153 |
-
#, php-format
|
154 |
msgid "Total Exclusions: %s"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#:
|
158 |
msgid "Exclusions Statistical Chart"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#:
|
162 |
msgid "Excluded hits in the last"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#:
|
166 |
-
#:
|
167 |
-
#:
|
168 |
-
#:
|
169 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:46
|
170 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:150
|
171 |
msgid "days"
|
172 |
msgstr ""
|
173 |
|
174 |
-
#:
|
175 |
msgid "Number of excluded hits"
|
176 |
msgstr ""
|
177 |
|
178 |
-
#:
|
179 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:8
|
180 |
msgid "Hit Statistics"
|
181 |
msgstr ""
|
182 |
|
183 |
-
#:
|
184 |
msgid "Hits Statistics Chart"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#:
|
188 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:39
|
189 |
msgid "Hits in the last"
|
190 |
msgstr ""
|
191 |
|
192 |
-
#:
|
193 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:60
|
194 |
msgid "Number of visits and visitors"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#:
|
198 |
-
#:
|
199 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:20
|
200 |
msgid "Visit"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#:
|
204 |
-
#:
|
205 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:19
|
206 |
msgid "Visitor"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#:
|
210 |
-
#:
|
211 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:36
|
212 |
msgid "Latest Search Words"
|
213 |
msgstr ""
|
214 |
|
215 |
-
#:
|
216 |
msgid "Latest Search Word Statistics"
|
217 |
msgstr ""
|
218 |
|
219 |
-
#:
|
220 |
-
#:
|
221 |
-
#:
|
222 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:59
|
223 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:22
|
224 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:25
|
225 |
msgid "#hash#"
|
226 |
msgstr ""
|
227 |
|
228 |
-
#:
|
229 |
-
#:
|
230 |
-
#:
|
231 |
-
#:
|
232 |
-
#:
|
233 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:33
|
234 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:71
|
235 |
msgid "Map"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#:
|
239 |
-
#:
|
240 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:181
|
241 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:132
|
242 |
msgid "Page"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#:
|
246 |
-
#:
|
247 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:181
|
248 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:132
|
249 |
msgid "From"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#:
|
253 |
-
#:
|
254 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:38
|
255 |
msgid "Recent Visitors"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#:
|
259 |
-
#:
|
260 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:134
|
261 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:296
|
262 |
msgid "All"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#:
|
266 |
msgid "Search for"
|
267 |
msgstr ""
|
268 |
|
269 |
-
#:
|
270 |
msgid "Recent Visitor Statistics"
|
271 |
msgstr ""
|
272 |
|
273 |
-
#:
|
274 |
msgid "Page Trend for Post ID"
|
275 |
msgstr ""
|
276 |
|
277 |
-
#:
|
278 |
msgid "Page Trend"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#:
|
282 |
msgid "Page Trending Stats"
|
283 |
msgstr ""
|
284 |
|
285 |
-
#:
|
286 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:70
|
287 |
msgid "Number of Hits"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#:
|
291 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:36
|
292 |
msgid "Search Engine Referral Statistics"
|
293 |
msgstr ""
|
294 |
|
295 |
-
#:
|
296 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:46
|
297 |
msgid "Search engine referrals in the last"
|
298 |
msgstr ""
|
299 |
|
300 |
-
#:
|
301 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:67
|
302 |
msgid "Number of referrals"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#:
|
306 |
-
#:
|
307 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:54
|
308 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:94
|
309 |
msgid "Total"
|
310 |
msgstr ""
|
311 |
|
312 |
-
#:
|
313 |
msgid "Top Countries"
|
314 |
msgstr ""
|
315 |
|
316 |
-
#:
|
317 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:17
|
318 |
msgid "Rank"
|
319 |
msgstr ""
|
320 |
|
321 |
-
#:
|
322 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:18
|
323 |
msgid "Flag"
|
324 |
msgstr ""
|
325 |
|
326 |
-
#:
|
327 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:19
|
328 |
msgid "Country"
|
329 |
msgstr ""
|
330 |
|
331 |
-
#:
|
332 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:20
|
333 |
msgid "Visitor Count"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#:
|
337 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:132
|
338 |
msgid "Top Pages"
|
339 |
msgstr ""
|
340 |
|
341 |
-
#:
|
342 |
msgid "Top 5 Pages Trends"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#:
|
346 |
msgid "Top 5 Page Trending Stats"
|
347 |
msgstr ""
|
348 |
|
349 |
-
#:
|
350 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:27
|
351 |
msgid "No page title found"
|
352 |
msgstr ""
|
353 |
|
354 |
-
#:
|
355 |
-
#:
|
356 |
-
#:
|
357 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:105
|
358 |
msgid "Visits"
|
359 |
msgstr ""
|
360 |
|
361 |
-
#:
|
362 |
msgid "To be added soon"
|
363 |
msgstr ""
|
364 |
|
365 |
-
#:
|
366 |
-
#:
|
367 |
-
#:
|
368 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:26
|
369 |
msgid "Top Referring Sites"
|
370 |
msgstr ""
|
371 |
|
372 |
-
#:
|
373 |
msgid "Referring sites from"
|
374 |
msgstr ""
|
375 |
|
376 |
-
#:
|
377 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:19
|
378 |
msgid "References"
|
379 |
msgstr ""
|
380 |
|
381 |
-
#:
|
382 |
-
|
383 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:8
|
384 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:13
|
385 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:9
|
386 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:13
|
387 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:8
|
388 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:16
|
389 |
-
msgid "More"
|
390 |
msgstr ""
|
391 |
|
392 |
-
#:
|
393 |
-
msgid "
|
394 |
msgstr ""
|
395 |
|
396 |
-
#:
|
397 |
-
msgid "
|
398 |
msgstr ""
|
399 |
|
400 |
-
#:
|
401 |
-
|
402 |
-
msgid "Top 10 Countries"
|
403 |
msgstr ""
|
404 |
|
405 |
-
#:
|
406 |
-
|
407 |
-
|
408 |
msgstr ""
|
409 |
|
410 |
-
#:
|
411 |
-
|
|
|
|
|
|
|
412 |
msgstr ""
|
413 |
|
414 |
-
#:
|
415 |
-
msgid "
|
416 |
msgstr ""
|
417 |
|
418 |
-
#:
|
419 |
-
msgid "
|
420 |
msgstr ""
|
421 |
|
422 |
-
#:
|
423 |
-
#:
|
424 |
-
|
425 |
-
msgid ""
|
426 |
-
"This product includes GeoLite2 data created by MaxMind, available from %s."
|
427 |
msgstr ""
|
428 |
|
429 |
-
#:
|
430 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:9
|
431 |
msgid "Today Visitors Map"
|
432 |
msgstr ""
|
433 |
|
434 |
-
#:
|
435 |
msgid "Top 10 Pages"
|
436 |
msgstr ""
|
437 |
|
438 |
-
#:
|
439 |
msgid "Address"
|
440 |
msgstr ""
|
441 |
|
442 |
-
#:
|
443 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:64
|
444 |
msgid "Search Engine Referrals"
|
445 |
msgstr ""
|
446 |
|
447 |
-
#:
|
448 |
msgid "Summary"
|
449 |
msgstr ""
|
450 |
|
451 |
-
#:
|
452 |
msgid "User(s) Online"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#:
|
456 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:69
|
457 |
msgid "Today"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#:
|
461 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:70
|
462 |
msgid "Yesterday"
|
463 |
msgstr ""
|
464 |
|
465 |
-
#:
|
466 |
msgid "Week"
|
467 |
msgstr ""
|
468 |
|
469 |
-
#:
|
470 |
msgid "Month"
|
471 |
msgstr ""
|
472 |
|
473 |
-
#:
|
474 |
msgid "Year"
|
475 |
msgstr ""
|
476 |
|
477 |
-
#:
|
478 |
msgid "Daily Total"
|
479 |
msgstr ""
|
480 |
|
481 |
-
#:
|
482 |
msgid "Current Time and Date"
|
483 |
msgstr ""
|
484 |
|
485 |
-
#:
|
486 |
msgid "(Adjustment)"
|
487 |
msgstr ""
|
488 |
|
489 |
-
#:
|
490 |
-
|
491 |
-
msgid "Date: <code dir=\"ltr\">%s</code></code>"
|
492 |
msgstr ""
|
493 |
|
494 |
-
#:
|
495 |
-
|
496 |
-
msgid "Time: <code dir=\"ltr\">%s</code>"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#:
|
500 |
-
#:
|
501 |
-
#:
|
502 |
-
#:
|
503 |
-
#:
|
504 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:3
|
505 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/manual/manual.php:5
|
506 |
msgid "Access denied!"
|
507 |
msgstr ""
|
508 |
|
509 |
-
#:
|
510 |
-
|
511 |
-
msgid "<code>%s</code> agent data deleted successfully."
|
512 |
msgstr ""
|
513 |
|
514 |
-
#:
|
515 |
-
#:
|
516 |
-
#:
|
517 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:57
|
518 |
msgid "Please select the desired items."
|
519 |
msgstr ""
|
520 |
|
521 |
-
#:
|
522 |
-
|
523 |
-
msgid "<code>%s</code> platform data deleted successfully."
|
524 |
msgstr ""
|
525 |
|
526 |
-
#:
|
527 |
-
|
528 |
-
msgid "<code>%s</code> table data deleted successfully."
|
529 |
msgstr ""
|
530 |
|
531 |
-
#:
|
532 |
-
#, php-format
|
533 |
msgid "Error, %s not emptied!"
|
534 |
msgstr ""
|
535 |
|
536 |
-
#:
|
537 |
-
#:
|
538 |
-
#:
|
539 |
-
#:
|
540 |
-
|
541 |
-
msgid ""
|
542 |
-
"<code>%s</code> data older than <code>%s</code> days purged successfully."
|
543 |
msgstr ""
|
544 |
|
545 |
-
#:
|
546 |
-
#:
|
547 |
-
#:
|
548 |
-
#:
|
549 |
-
|
550 |
-
msgid "No records found to purge from <code>%s</code>!"
|
551 |
msgstr ""
|
552 |
|
553 |
-
#:
|
554 |
msgid "Please select a value over 30 days."
|
555 |
msgstr ""
|
556 |
|
557 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
558 |
msgid "Database Index"
|
559 |
msgstr ""
|
560 |
|
561 |
-
#:
|
562 |
-
#:
|
563 |
-
#:
|
564 |
msgid "Countries"
|
565 |
msgstr ""
|
566 |
|
567 |
-
#:
|
568 |
-
#:
|
569 |
-
#:
|
570 |
msgid "Update Now!"
|
571 |
msgstr ""
|
572 |
|
573 |
-
#:
|
574 |
msgid ""
|
575 |
"Older installs of WP Statistics allow for duplicate entries in the visitors "
|
576 |
"table in a corner case. Newer installs protect against this with a unique "
|
@@ -579,522 +506,562 @@ msgid ""
|
|
579 |
"vistitors table, delete duplicate entries and add the index."
|
580 |
msgstr ""
|
581 |
|
582 |
-
#:
|
583 |
msgid ""
|
584 |
"This operation could take a long time on installs with many rows in the "
|
585 |
"visitors table."
|
586 |
msgstr ""
|
587 |
|
588 |
-
#:
|
589 |
msgid ""
|
590 |
"Older installs of WP Statistics allow for duplicate entries in the visitors "
|
591 |
"table in a corner case. Newer installs protect against this with a unique "
|
592 |
"index on the table."
|
593 |
msgstr ""
|
594 |
|
595 |
-
#:
|
596 |
msgid ""
|
597 |
"Congratulations, your installation is already up to date, nothing to do."
|
598 |
msgstr ""
|
599 |
|
600 |
-
#:
|
601 |
-
#:
|
602 |
msgid "Export"
|
603 |
msgstr ""
|
604 |
|
605 |
-
#:
|
606 |
msgid "Export from"
|
607 |
msgstr ""
|
608 |
|
609 |
-
#:
|
610 |
-
#:
|
611 |
-
#:
|
612 |
-
#:
|
613 |
-
#:
|
614 |
-
#:
|
615 |
-
#:
|
616 |
msgid "Please select"
|
617 |
msgstr ""
|
618 |
|
619 |
-
#:
|
620 |
msgid "Select the table for the output file."
|
621 |
msgstr ""
|
622 |
|
623 |
-
#:
|
624 |
msgid "Export To"
|
625 |
msgstr ""
|
626 |
|
627 |
-
#:
|
628 |
msgid "Select the output file type."
|
629 |
msgstr ""
|
630 |
|
631 |
-
#:
|
632 |
msgid "Include Header Row"
|
633 |
msgstr ""
|
634 |
|
635 |
-
#:
|
636 |
msgid "Include a header row as the first line of the exported file."
|
637 |
msgstr ""
|
638 |
|
639 |
-
#:
|
640 |
msgid "Start Now!"
|
641 |
msgstr ""
|
642 |
|
643 |
-
#:
|
644 |
-
#:
|
645 |
-
#:
|
646 |
-
#:
|
647 |
msgid "Are you sure?"
|
648 |
msgstr ""
|
649 |
|
650 |
-
#:
|
651 |
msgid "Data"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#:
|
655 |
msgid "Empty Table"
|
656 |
msgstr ""
|
657 |
|
658 |
-
#:
|
659 |
msgid "All data table will be lost."
|
660 |
msgstr ""
|
661 |
|
662 |
-
#:
|
663 |
msgid "Clear now!"
|
664 |
msgstr ""
|
665 |
|
666 |
-
#:
|
667 |
msgid "Purge records older than"
|
668 |
msgstr ""
|
669 |
|
670 |
-
#:
|
671 |
msgid ""
|
672 |
"Deleted user statistics data older than the selected number of days. "
|
673 |
"Minimum value is 30 days."
|
674 |
msgstr ""
|
675 |
|
676 |
-
#:
|
677 |
msgid "Purge now!"
|
678 |
msgstr ""
|
679 |
|
680 |
-
#:
|
681 |
msgid "Delete User Agent Types"
|
682 |
msgstr ""
|
683 |
|
684 |
-
#:
|
685 |
msgid "Delete Agents"
|
686 |
msgstr ""
|
687 |
|
688 |
-
#:
|
689 |
msgid "All visitor data will be lost for this agent type."
|
690 |
msgstr ""
|
691 |
|
692 |
-
#:
|
693 |
-
#:
|
694 |
msgid "Delete now!"
|
695 |
msgstr ""
|
696 |
|
697 |
-
#:
|
698 |
msgid "Delete Platforms"
|
699 |
msgstr ""
|
700 |
|
701 |
-
#:
|
702 |
msgid "All visitor data will be lost for this platform type."
|
703 |
msgstr ""
|
704 |
|
705 |
-
#:
|
706 |
msgid "Resources"
|
707 |
msgstr ""
|
708 |
|
709 |
-
#:
|
710 |
-
#:
|
711 |
msgid "Memory usage in PHP"
|
712 |
msgstr ""
|
713 |
|
714 |
-
#:
|
715 |
msgid "Byte"
|
716 |
msgstr ""
|
717 |
|
718 |
-
#:
|
719 |
msgid "PHP Memory Limit"
|
720 |
msgstr ""
|
721 |
|
722 |
-
#:
|
723 |
msgid "The memory limit a script is allowed to consume, set in php.ini."
|
724 |
msgstr ""
|
725 |
|
726 |
-
#:
|
727 |
-
#:
|
728 |
-
#:
|
729 |
-
#:
|
730 |
-
#:
|
731 |
-
|
732 |
-
msgid "Number of rows in the <code>%s</code> table"
|
733 |
msgstr ""
|
734 |
|
735 |
-
#:
|
736 |
-
#:
|
737 |
-
#:
|
738 |
-
#:
|
739 |
-
#:
|
740 |
msgid "Row"
|
741 |
msgstr ""
|
742 |
|
743 |
-
#:
|
744 |
-
#:
|
745 |
-
#:
|
746 |
-
#:
|
747 |
-
#:
|
748 |
msgid "Number of rows"
|
749 |
msgstr ""
|
750 |
|
751 |
-
#:
|
752 |
msgid "Version Info"
|
753 |
msgstr ""
|
754 |
|
755 |
-
#:
|
756 |
msgid "WP Statistics Version"
|
757 |
msgstr ""
|
758 |
|
759 |
-
#:
|
760 |
msgid "The WP Statistics version you are running."
|
761 |
msgstr ""
|
762 |
|
763 |
-
#:
|
764 |
msgid "PHP Version"
|
765 |
msgstr ""
|
766 |
|
767 |
-
#:
|
768 |
msgid "The PHP version you are running."
|
769 |
msgstr ""
|
770 |
|
771 |
-
#:
|
772 |
msgid "PHP Safe Mode"
|
773 |
msgstr ""
|
774 |
|
775 |
-
#:
|
776 |
msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
|
777 |
msgstr ""
|
778 |
|
779 |
-
#:
|
780 |
msgid "jQuery Version"
|
781 |
msgstr ""
|
782 |
|
783 |
-
#:
|
784 |
msgid "The jQuery version you are running."
|
785 |
msgstr ""
|
786 |
|
787 |
-
#:
|
788 |
msgid "cURL Version"
|
789 |
msgstr ""
|
790 |
|
791 |
-
#:
|
792 |
msgid "cURL not installed"
|
793 |
msgstr ""
|
794 |
|
795 |
-
#:
|
796 |
msgid ""
|
797 |
"The PHP cURL Extension version you are running. cURL is required for the "
|
798 |
"GeoIP code, if it is not installed GeoIP will be disabled."
|
799 |
msgstr ""
|
800 |
|
801 |
-
#:
|
802 |
msgid "BC Math"
|
803 |
msgstr ""
|
804 |
|
805 |
-
#:
|
806 |
msgid "Installed"
|
807 |
msgstr ""
|
808 |
|
809 |
-
#:
|
810 |
msgid "Not installed"
|
811 |
msgstr ""
|
812 |
|
813 |
-
#:
|
814 |
msgid ""
|
815 |
-
"If the PHP BC Math Extension is installed. BC Math is
|
816 |
-
"GeoIP code
|
817 |
msgstr ""
|
818 |
|
819 |
-
#:
|
820 |
-
msgid "
|
821 |
msgstr ""
|
822 |
|
823 |
-
#:
|
824 |
-
msgid "
|
825 |
msgstr ""
|
826 |
|
827 |
-
#:
|
828 |
-
msgid "
|
829 |
msgstr ""
|
830 |
|
831 |
-
#:
|
832 |
-
|
|
|
|
|
833 |
msgstr ""
|
834 |
|
835 |
-
#:
|
836 |
-
msgid "The
|
837 |
msgstr ""
|
838 |
|
839 |
-
#:
|
840 |
-
msgid ""
|
841 |
-
"This will replace all IP addresses in the database with hash values and "
|
842 |
-
"cannot be undo, are you sure?"
|
843 |
msgstr ""
|
844 |
|
845 |
-
#:
|
846 |
-
msgid "
|
847 |
msgstr ""
|
848 |
|
849 |
-
#:
|
850 |
-
msgid "
|
851 |
msgstr ""
|
852 |
|
853 |
-
#:
|
854 |
-
msgid "
|
855 |
msgstr ""
|
856 |
|
857 |
-
#:
|
858 |
-
msgid "
|
859 |
msgstr ""
|
860 |
|
861 |
-
#:
|
862 |
-
msgid "
|
863 |
msgstr ""
|
864 |
|
865 |
-
#:
|
866 |
-
msgid "
|
867 |
msgstr ""
|
868 |
|
869 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
870 |
msgid "GeoIP Options"
|
871 |
msgstr ""
|
872 |
|
873 |
-
#:
|
874 |
msgid ""
|
875 |
"Updates any unknown location data in the database, this may take a while"
|
876 |
msgstr ""
|
877 |
|
878 |
-
#:
|
879 |
-
#:
|
880 |
msgid "IP Addresses"
|
881 |
msgstr ""
|
882 |
|
883 |
-
#:
|
884 |
-
#:
|
885 |
msgid "Hash IP Addresses"
|
886 |
msgstr ""
|
887 |
|
888 |
-
#:
|
889 |
msgid ""
|
890 |
"Replace IP addresses in the database with hash values, you will not be able "
|
891 |
"to recover the IP addresses in the future to populate location information "
|
892 |
"afterwards and this may take a while"
|
893 |
msgstr ""
|
894 |
|
895 |
-
#:
|
896 |
msgid "IP Addresses replaced with hash values."
|
897 |
msgstr ""
|
898 |
|
899 |
-
#:
|
|
|
|
|
|
|
|
|
900 |
msgid "Resources/Information"
|
901 |
msgstr ""
|
902 |
|
903 |
-
#:
|
904 |
msgid "Purging"
|
905 |
msgstr ""
|
906 |
|
907 |
-
#:
|
908 |
msgid "Database"
|
909 |
msgstr ""
|
910 |
|
911 |
-
#:
|
912 |
msgid "Updates"
|
913 |
msgstr ""
|
914 |
|
915 |
-
#:
|
916 |
-
#, php-format
|
917 |
msgid "WP Statistics V%s"
|
918 |
msgstr ""
|
919 |
|
920 |
-
#:
|
921 |
msgid "Visit Us Online"
|
922 |
msgstr ""
|
923 |
|
924 |
-
#:
|
925 |
msgid ""
|
926 |
-
"Come visit our great new
|
927 |
-
"
|
|
|
|
|
|
|
|
|
928 |
msgstr ""
|
929 |
|
930 |
-
#:
|
931 |
msgid "Rate and Review at WordPress.org"
|
932 |
msgstr ""
|
933 |
|
934 |
-
#:
|
935 |
msgid "Thanks for installing WP Statistics, we encourage you to submit a "
|
936 |
msgstr ""
|
937 |
|
938 |
-
#:
|
939 |
msgid "rating and review"
|
940 |
msgstr ""
|
941 |
|
942 |
-
#:
|
943 |
msgid "over at WordPress.org. Your feedback is greatly appreciated!"
|
944 |
msgstr ""
|
945 |
|
946 |
-
#:
|
947 |
msgid "Translations"
|
948 |
msgstr ""
|
949 |
|
950 |
-
#:
|
951 |
msgid ""
|
952 |
"WP Statistics supports internationalization and we encourage our users to "
|
953 |
-
"submit translations, please visit our
|
954 |
-
"
|
955 |
-
|
956 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
957 |
msgstr ""
|
958 |
|
959 |
-
#:
|
960 |
msgid "Support"
|
961 |
msgstr ""
|
962 |
|
963 |
-
#:
|
964 |
msgid ""
|
965 |
"We're sorry you're having problem with WP Statistics and we're happy to help "
|
966 |
"out. Here are a few things to do before contacting us:"
|
967 |
msgstr ""
|
968 |
|
969 |
-
#:
|
970 |
-
|
971 |
-
"Have you read the
|
972 |
-
"page_id=19\" target=_blank>FAQs</a>?"
|
973 |
msgstr ""
|
974 |
|
975 |
-
#:
|
976 |
-
msgid ""
|
977 |
-
"Have you read the <a title=\"Manual\" href=\"?page=wps_manual_menu\">manual</"
|
978 |
-
"a>?"
|
979 |
msgstr ""
|
980 |
|
981 |
-
#:
|
982 |
-
msgid ""
|
983 |
-
"Have you search the <a href=\"http://wordpress.org/support/plugin/wp-"
|
984 |
-
"statistics\" target=\"_blank\">support forum</a> for a similar issue?"
|
985 |
msgstr ""
|
986 |
|
987 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
988 |
msgid "Have you search the Internet for any error messages you are receiving?"
|
989 |
msgstr ""
|
990 |
|
991 |
-
#:
|
992 |
msgid "And a few things to double-check:"
|
993 |
msgstr ""
|
994 |
|
995 |
-
#:
|
996 |
msgid "How's your memory_limit in php.ini?"
|
997 |
msgstr ""
|
998 |
|
999 |
-
#:
|
1000 |
msgid "Have you tried disabling any other plugins you may have installed?"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
-
#:
|
1004 |
msgid "Have you tried using the default WordPress theme?"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
-
#:
|
1008 |
msgid "Have you double checked the plugin settings?"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#:
|
1012 |
msgid "Do you have all the required PHP extensions installed?"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
-
#:
|
1016 |
msgid ""
|
1017 |
"Are you getting a blank or incomplete page displayed in your browser? Did "
|
1018 |
"you view the source for the page and check for any fatal errors?"
|
1019 |
msgstr ""
|
1020 |
|
1021 |
-
#:
|
1022 |
msgid "Have you checked your PHP and web server error logs?"
|
1023 |
msgstr ""
|
1024 |
|
1025 |
-
#:
|
1026 |
msgid "Still not having any luck?"
|
1027 |
msgstr ""
|
1028 |
|
1029 |
-
#:
|
1030 |
msgid ""
|
1031 |
-
"Then please open a new thread on the
|
1032 |
-
"
|
1033 |
-
"we'll respond as soon as possible."
|
1034 |
msgstr ""
|
1035 |
|
1036 |
-
#:
|
1037 |
-
msgid ""
|
1038 |
-
"Alternatively <a href=\"http://forum.wp-parsi.com/forum/17-%D9%85%D8%B4%DA"
|
1039 |
-
"%A9%D9%84%D8%A7%D8%AA-%D8%AF%DB%8C%DA%AF%D8%B1/\" target=\"_blank\">Farsi</"
|
1040 |
-
"a> support is available as well."
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1044 |
msgid "Access Levels"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
-
#:
|
1048 |
msgid "Required user level to view WP Statistics"
|
1049 |
msgstr ""
|
1050 |
|
1051 |
-
#:
|
1052 |
msgid "Required user level to manage WP Statistics"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#:
|
1056 |
-
|
1057 |
-
|
1058 |
-
|
1059 |
-
|
|
|
1060 |
msgstr ""
|
1061 |
|
1062 |
-
#:
|
1063 |
msgid ""
|
1064 |
"Hint: manage_network = Super Admin Network, manage_options = Administrator, "
|
1065 |
"edit_others_posts = Editor, publish_posts = Author, edit_posts = "
|
1066 |
"Contributor, read = Everyone."
|
1067 |
msgstr ""
|
1068 |
|
1069 |
-
#:
|
1070 |
msgid ""
|
1071 |
"Each of the above casscades the rights upwards in the default WordPress "
|
1072 |
"configuration. So for example selecting publish_posts grants the right to "
|
1073 |
"Authors, Editors, Admins and Super Admins."
|
1074 |
msgstr ""
|
1075 |
|
1076 |
-
#:
|
1077 |
-
#, php-format
|
1078 |
msgid ""
|
1079 |
"If you need a more robust solution to delegate access you might want to look "
|
1080 |
"at %s in the WordPress plugin directory."
|
1081 |
msgstr ""
|
1082 |
|
1083 |
-
#:
|
1084 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:236
|
1085 |
msgid "Exclusions"
|
1086 |
msgstr ""
|
1087 |
|
1088 |
-
#:
|
1089 |
msgid "Record exclusions"
|
1090 |
msgstr ""
|
1091 |
|
1092 |
-
#:
|
1093 |
-
#:
|
1094 |
msgid "Enable"
|
1095 |
msgstr ""
|
1096 |
|
1097 |
-
#:
|
1098 |
msgid ""
|
1099 |
"This will record all the excluded hits in a separate table with the reasons "
|
1100 |
"why it was excluded but no other information. This will generate a lot of "
|
@@ -1102,55 +1069,54 @@ msgid ""
|
|
1102 |
"gets, not just actual user visits."
|
1103 |
msgstr ""
|
1104 |
|
1105 |
-
#:
|
1106 |
msgid "Exclude User Roles"
|
1107 |
msgstr ""
|
1108 |
|
1109 |
-
#:
|
1110 |
-
#:
|
1111 |
-
#:
|
1112 |
msgid "Exclude"
|
1113 |
msgstr ""
|
1114 |
|
1115 |
-
#:
|
1116 |
-
#, php-format
|
1117 |
msgid "Exclude %s role from data collection."
|
1118 |
msgstr ""
|
1119 |
|
1120 |
-
#:
|
1121 |
msgid "IP/Robot Exclusions"
|
1122 |
msgstr ""
|
1123 |
|
1124 |
-
#:
|
1125 |
msgid "Robot list"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
-
#:
|
1129 |
msgid ""
|
1130 |
"A list of words (one per line) to match against to detect robots. Entries "
|
1131 |
"must be at least 4 characters long or they will be ignored."
|
1132 |
msgstr ""
|
1133 |
|
1134 |
-
#:
|
1135 |
msgid "Reset to Default"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
-
#:
|
1139 |
msgid "Force robot list update after upgrades"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
-
#:
|
1143 |
msgid ""
|
1144 |
"Force the robot list to be reset to the default after an update to WP "
|
1145 |
"Statistics takes place. Note if this option is enabled any custom robots "
|
1146 |
"you have added to the list will be lost."
|
1147 |
msgstr ""
|
1148 |
|
1149 |
-
#:
|
1150 |
msgid "Excluded IP address list"
|
1151 |
msgstr ""
|
1152 |
|
1153 |
-
#:
|
1154 |
msgid ""
|
1155 |
"A list of IP addresses and subnet masks (one per line) to exclude from "
|
1156 |
"statistics collection (both 192.168.0.0/24 and 192.168.0.0/255.255.255.0 "
|
@@ -1158,857 +1124,883 @@ msgid ""
|
|
1158 |
"32 or 255.255.255.255."
|
1159 |
msgstr ""
|
1160 |
|
1161 |
-
#:
|
1162 |
msgid "Add 10.0.0.0"
|
1163 |
msgstr ""
|
1164 |
|
1165 |
-
#:
|
1166 |
msgid "Add 172.16.0.0"
|
1167 |
msgstr ""
|
1168 |
|
1169 |
-
#:
|
1170 |
msgid "Add 192.168.0.0"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
-
#:
|
1174 |
msgid "Site URL Exclusions"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
-
#:
|
1178 |
msgid "Excluded login page"
|
1179 |
msgstr ""
|
1180 |
|
1181 |
-
#:
|
1182 |
msgid "Exclude the login page for registering as a hit."
|
1183 |
msgstr ""
|
1184 |
|
1185 |
-
#:
|
1186 |
msgid "Excluded admin pages"
|
1187 |
msgstr ""
|
1188 |
|
1189 |
-
#:
|
1190 |
msgid "Exclude the admin pages for registering as a hit."
|
1191 |
msgstr ""
|
1192 |
|
1193 |
-
#:
|
1194 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1195 |
msgstr ""
|
1196 |
|
1197 |
-
#:
|
1198 |
-
|
1199 |
-
|
1200 |
-
|
1201 |
-
#:
|
1202 |
-
|
1203 |
-
|
1204 |
-
|
1205 |
-
#:
|
1206 |
-
|
1207 |
-
|
1208 |
-
|
1209 |
-
#:
|
1210 |
-
#:
|
1211 |
-
|
1212 |
-
|
1213 |
-
|
1214 |
-
#:
|
1215 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1216 |
msgstr ""
|
1217 |
|
1218 |
-
#:
|
|
|
|
|
|
|
|
|
1219 |
msgid ""
|
1220 |
-
"
|
1221 |
-
"
|
1222 |
"disabled if this is selected. You will not be able to recover the IP "
|
1223 |
"addresses in the future to recover location information if this is enabled."
|
1224 |
msgstr ""
|
1225 |
|
1226 |
-
#:
|
1227 |
msgid "Users Online"
|
1228 |
msgstr ""
|
1229 |
|
1230 |
-
#:
|
1231 |
msgid "User online"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
-
#:
|
1235 |
-
#:
|
1236 |
-
#:
|
1237 |
-
#:
|
1238 |
-
#:
|
1239 |
-
#:
|
1240 |
-
#:
|
1241 |
msgid "Enable or disable this feature"
|
1242 |
msgstr ""
|
1243 |
|
1244 |
-
#:
|
1245 |
msgid "Check for online users every"
|
1246 |
msgstr ""
|
1247 |
|
1248 |
-
#:
|
1249 |
msgid "Second"
|
1250 |
msgstr ""
|
1251 |
|
1252 |
-
#:
|
1253 |
-
#, php-format
|
1254 |
msgid "Time for the check accurate online user in the site. Now: %s Second"
|
1255 |
msgstr ""
|
1256 |
|
1257 |
-
#:
|
1258 |
-
#:
|
1259 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:240
|
1260 |
msgid "Visitors"
|
1261 |
msgstr ""
|
1262 |
|
1263 |
-
#:
|
1264 |
msgid "Store entire user agent string"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
-
#:
|
1268 |
msgid "Only enabled for debugging"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
-
#:
|
1272 |
msgid "Coefficient per visitor"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
-
#:
|
1276 |
-
#, php-format
|
1277 |
msgid "For each visit to account for several hits. Currently %s."
|
1278 |
msgstr ""
|
1279 |
|
1280 |
-
#:
|
1281 |
-
#:
|
1282 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:241
|
1283 |
msgid "Pages"
|
1284 |
msgstr ""
|
1285 |
|
1286 |
-
#:
|
1287 |
msgid "Track all pages"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
-
#:
|
1291 |
msgid "Disable hits column in post/pages list"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
-
#:
|
1295 |
msgid "Miscellaneous"
|
1296 |
msgstr ""
|
1297 |
|
1298 |
-
#:
|
1299 |
msgid "Show stats in menu bar"
|
1300 |
msgstr ""
|
1301 |
|
1302 |
-
#:
|
1303 |
msgid "No"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
-
#:
|
1307 |
msgid "Yes"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
-
#:
|
1311 |
msgid "Show stats in admin menu bar"
|
1312 |
msgstr ""
|
1313 |
|
1314 |
-
#:
|
1315 |
msgid "Hide admin notices about non active features"
|
1316 |
msgstr ""
|
1317 |
|
1318 |
-
#:
|
1319 |
msgid ""
|
1320 |
"By default WP Statistics displays an alert if any of the core features are "
|
1321 |
"disabled on every admin page, this option will disable these notices."
|
1322 |
msgstr ""
|
1323 |
|
1324 |
-
#:
|
1325 |
msgid "Delete the manual"
|
1326 |
msgstr ""
|
1327 |
|
1328 |
-
#:
|
1329 |
msgid ""
|
1330 |
"By default WP Statistics stores the admin manual in the plugin directory (~5 "
|
1331 |
"meg), if this option is enabled it will be deleted now and during upgrades "
|
1332 |
"in the future."
|
1333 |
msgstr ""
|
1334 |
|
1335 |
-
#:
|
1336 |
msgid "Search Enginges"
|
1337 |
msgstr ""
|
1338 |
|
1339 |
-
#:
|
1340 |
msgid ""
|
1341 |
"Disabling all search engines is not allowed, doing so will result in all "
|
1342 |
"search engines being active."
|
1343 |
msgstr ""
|
1344 |
|
1345 |
-
#:
|
1346 |
msgid "disable"
|
1347 |
msgstr ""
|
1348 |
|
1349 |
-
#:
|
1350 |
-
#, php-format
|
1351 |
msgid "Disable %s from data collection and reporting."
|
1352 |
msgstr ""
|
1353 |
|
1354 |
-
#:
|
1355 |
msgid "Charts"
|
1356 |
msgstr ""
|
1357 |
|
1358 |
-
#:
|
1359 |
msgid "Include totals"
|
1360 |
msgstr ""
|
1361 |
|
1362 |
-
#:
|
1363 |
msgid ""
|
1364 |
"Add a total line to charts with multiple values, like the search engine "
|
1365 |
"referrals"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
-
#:
|
1369 |
-
#:
|
1370 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:154
|
1371 |
msgid "Statistical reporting"
|
1372 |
msgstr ""
|
1373 |
|
1374 |
-
#:
|
1375 |
msgid "Schedule"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
-
#:
|
1379 |
msgid "Select when receiving statistics report."
|
1380 |
msgstr ""
|
1381 |
|
1382 |
-
#:
|
1383 |
msgid "Send reports via"
|
1384 |
msgstr ""
|
1385 |
|
1386 |
-
#:
|
1387 |
msgid "Email"
|
1388 |
msgstr ""
|
1389 |
|
1390 |
-
#:
|
1391 |
msgid "SMS"
|
1392 |
msgstr ""
|
1393 |
|
1394 |
-
#:
|
1395 |
msgid "Type Select Get Status Report."
|
1396 |
msgstr ""
|
1397 |
|
1398 |
-
#:
|
1399 |
-
|
1400 |
-
msgid ""
|
1401 |
-
"Note: To send SMS text messages please install the <a href=\"%s\" target="
|
1402 |
-
"\"_blank\">Wordpress SMS</a> plugin."
|
1403 |
msgstr ""
|
1404 |
|
1405 |
-
#:
|
|
|
|
|
|
|
|
|
1406 |
msgid "E-mail addresses"
|
1407 |
msgstr ""
|
1408 |
|
1409 |
-
#:
|
1410 |
msgid ""
|
1411 |
"A comma separated list of e-mail addresses to send the reports to if e-mail "
|
1412 |
"is selected above."
|
1413 |
msgstr ""
|
1414 |
|
1415 |
-
#:
|
1416 |
msgid "Report body"
|
1417 |
msgstr ""
|
1418 |
|
1419 |
-
#:
|
1420 |
msgid "Enter the contents of the reports received."
|
1421 |
msgstr ""
|
1422 |
|
1423 |
-
#:
|
1424 |
msgid ""
|
1425 |
"Any shortcode supported by your installation of WordPress, include all "
|
1426 |
"shortcodes for WP Statistics (see the admin manual for a list of codes "
|
1427 |
"available) are supported in the body of the message."
|
1428 |
msgstr ""
|
1429 |
|
1430 |
-
#:
|
1431 |
msgid ""
|
1432 |
"Input data codes are now deprecated and will be removed in a future version "
|
1433 |
"of WP Statistics, please use the appropriate shortcodes, they are included "
|
1434 |
"here only for historical purposes:"
|
1435 |
msgstr ""
|
1436 |
|
1437 |
-
#:
|
1438 |
-
#:
|
1439 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:247
|
1440 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:292
|
1441 |
msgid "User Online"
|
1442 |
msgstr ""
|
1443 |
|
1444 |
-
#:
|
1445 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:52
|
1446 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:253
|
1447 |
msgid "Today Visitor"
|
1448 |
msgstr ""
|
1449 |
|
1450 |
-
#:
|
1451 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:45
|
1452 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:250
|
1453 |
msgid "Today Visit"
|
1454 |
msgstr ""
|
1455 |
|
1456 |
-
#:
|
1457 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:66
|
1458 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:259
|
1459 |
msgid "Yesterday Visitor"
|
1460 |
msgstr ""
|
1461 |
|
1462 |
-
#:
|
1463 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:59
|
1464 |
msgid "Yesterday Visit"
|
1465 |
msgstr ""
|
1466 |
|
1467 |
-
#:
|
1468 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:101
|
1469 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:274
|
1470 |
msgid "Total Visitor"
|
1471 |
msgstr ""
|
1472 |
|
1473 |
-
#:
|
1474 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:94
|
1475 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:271
|
1476 |
msgid "Total Visit"
|
1477 |
msgstr ""
|
1478 |
|
1479 |
-
#:
|
1480 |
msgid "GeoIP settings"
|
1481 |
msgstr ""
|
1482 |
|
1483 |
-
#:
|
1484 |
-
#, php-format
|
1485 |
msgid ""
|
1486 |
"IP location services provided by GeoLite2 data created by MaxMind, available "
|
1487 |
"from %s."
|
1488 |
msgstr ""
|
1489 |
|
1490 |
-
#:
|
1491 |
msgid "GeoIP collection"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
-
#:
|
1495 |
msgid ""
|
1496 |
"For get more information and location (country) from visitor, enable this "
|
1497 |
"feature."
|
1498 |
msgstr ""
|
1499 |
|
1500 |
-
#:
|
1501 |
msgid "Update GeoIP Info"
|
1502 |
msgstr ""
|
1503 |
|
1504 |
-
#:
|
1505 |
msgid "Download GeoIP Database"
|
1506 |
msgstr ""
|
1507 |
|
1508 |
-
#:
|
1509 |
-
msgid "Save changes on this page to download the update."
|
1510 |
-
msgstr ""
|
1511 |
-
|
1512 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:56
|
1513 |
msgid "Schedule monthly update of GeoIP DB"
|
1514 |
msgstr ""
|
1515 |
|
1516 |
-
#:
|
1517 |
-
msgid "Next update will be"
|
1518 |
-
msgstr ""
|
1519 |
-
|
1520 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:82
|
1521 |
msgid ""
|
1522 |
"Download of the GeoIP database will be scheduled for 2 days after the first "
|
1523 |
"Tuesday of the month."
|
1524 |
msgstr ""
|
1525 |
|
1526 |
-
#:
|
1527 |
msgid ""
|
1528 |
"This option will also download the database if the local filesize is less "
|
1529 |
"than 1k (which usually means the stub that comes with the plugin is still in "
|
1530 |
"place)."
|
1531 |
msgstr ""
|
1532 |
|
1533 |
-
#:
|
1534 |
msgid "Populate missing GeoIP after update of GeoIP DB"
|
1535 |
msgstr ""
|
1536 |
|
1537 |
-
#:
|
1538 |
msgid "Update any missing GeoIP data after downloading a new database."
|
1539 |
msgstr ""
|
1540 |
|
1541 |
-
#:
|
1542 |
msgid "GeoIP collection is disabled due to the following reasons:"
|
1543 |
msgstr ""
|
1544 |
|
1545 |
-
#:
|
1546 |
-
#, php-format
|
1547 |
msgid ""
|
1548 |
"GeoIP collection requires PHP %s or above, it is currently disabled due to "
|
1549 |
"the installed PHP version being "
|
1550 |
msgstr ""
|
1551 |
|
1552 |
-
#:
|
1553 |
msgid ""
|
1554 |
"GeoIP collection requires the cURL PHP extension and it is not loaded on "
|
1555 |
"your version of PHP!"
|
1556 |
msgstr ""
|
1557 |
|
1558 |
-
#:
|
1559 |
msgid ""
|
1560 |
"GeoIP collection requires the BC Math PHP extension and it is not loaded on "
|
1561 |
"your version of PHP!"
|
1562 |
msgstr ""
|
1563 |
|
1564 |
-
#:
|
1565 |
msgid ""
|
1566 |
"PHP safe mode detected! GeoIP collection is not supported with PHP's safe "
|
1567 |
"mode enabled!"
|
1568 |
msgstr ""
|
1569 |
|
1570 |
-
#:
|
1571 |
msgid ""
|
1572 |
"This will permanently delete data from the database each day, are you sure "
|
1573 |
"you want to enable this option?"
|
1574 |
msgstr ""
|
1575 |
|
1576 |
-
#:
|
1577 |
msgid "Database Maintenance"
|
1578 |
msgstr ""
|
1579 |
|
1580 |
-
#:
|
1581 |
msgid "Run a daily WP Cron job to prune the databases"
|
1582 |
msgstr ""
|
1583 |
|
1584 |
-
#:
|
1585 |
msgid ""
|
1586 |
"A WP Cron job will be run daily to prune any data older than a set number of "
|
1587 |
"days."
|
1588 |
msgstr ""
|
1589 |
|
1590 |
-
#:
|
1591 |
msgid "Prune data older than"
|
1592 |
msgstr ""
|
1593 |
|
1594 |
-
#:
|
1595 |
msgid "Days"
|
1596 |
msgstr ""
|
1597 |
|
1598 |
-
#:
|
1599 |
msgid ""
|
1600 |
"The number of days to keep statistics for. Minimum value is 30 days. "
|
1601 |
"Invalid values will disable the daily maintenance."
|
1602 |
msgstr ""
|
1603 |
|
1604 |
-
#:
|
1605 |
-
#:
|
1606 |
msgid "None"
|
1607 |
msgstr ""
|
1608 |
|
1609 |
-
#:
|
1610 |
msgid "Summary Statistics"
|
1611 |
msgstr ""
|
1612 |
|
1613 |
-
#:
|
1614 |
-
#:
|
1615 |
msgid "About"
|
1616 |
msgstr ""
|
1617 |
|
1618 |
-
#:
|
1619 |
msgid "Hits Statistical Chart"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
-
#:
|
1623 |
msgid "Search Engine Referrers Statistical Chart"
|
1624 |
msgstr ""
|
1625 |
|
1626 |
-
#:
|
1627 |
msgid "Top Pages Visited"
|
1628 |
msgstr ""
|
1629 |
|
1630 |
-
#:
|
1631 |
msgid "The following three items are global to all users."
|
1632 |
msgstr ""
|
1633 |
|
1634 |
-
#:
|
1635 |
msgid "Map type"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
-
#:
|
1639 |
msgid "Google"
|
1640 |
msgstr ""
|
1641 |
|
1642 |
-
#:
|
1643 |
msgid "JQVMap"
|
1644 |
msgstr ""
|
1645 |
|
1646 |
-
#:
|
1647 |
msgid ""
|
1648 |
"The \"Google\" option will use Google's mapping service to plot the recent "
|
1649 |
"visitors (requires access to Google)."
|
1650 |
msgstr ""
|
1651 |
|
1652 |
-
#:
|
1653 |
msgid ""
|
1654 |
"The \"JQVMap\" option will use JQVMap javascript mapping library to plot the "
|
1655 |
"recent visitors (requires no extenral services)."
|
1656 |
msgstr ""
|
1657 |
|
1658 |
-
#:
|
1659 |
msgid "Disable map"
|
1660 |
msgstr ""
|
1661 |
|
1662 |
-
#:
|
1663 |
msgid "Disable the map display"
|
1664 |
msgstr ""
|
1665 |
|
1666 |
-
#:
|
1667 |
msgid "Get country location from Google"
|
1668 |
msgstr ""
|
1669 |
|
1670 |
-
#:
|
1671 |
msgid ""
|
1672 |
"This feature may cause a performance degradation when viewing statistics and "
|
1673 |
"is only valid if the map type is set to \"Google\"."
|
1674 |
msgstr ""
|
1675 |
|
1676 |
-
#:
|
1677 |
msgid "Widgets to Display"
|
1678 |
msgstr ""
|
1679 |
|
1680 |
-
#:
|
1681 |
msgid ""
|
1682 |
"The following items are unique to each user. If you do not select the "
|
1683 |
"'About' widget it will automatically be displayed in the last positon of "
|
1684 |
"column A."
|
1685 |
msgstr ""
|
1686 |
|
1687 |
-
#:
|
1688 |
msgid "Slot"
|
1689 |
msgstr ""
|
1690 |
|
1691 |
-
#:
|
1692 |
msgid "Column A"
|
1693 |
msgstr ""
|
1694 |
|
1695 |
-
#:
|
1696 |
msgid "Column B"
|
1697 |
msgstr ""
|
1698 |
|
1699 |
-
#:
|
1700 |
msgid "Slot 1"
|
1701 |
msgstr ""
|
1702 |
|
1703 |
-
#:
|
1704 |
msgid "Slot 2"
|
1705 |
msgstr ""
|
1706 |
|
1707 |
-
#:
|
1708 |
msgid "Slot 3"
|
1709 |
msgstr ""
|
1710 |
|
1711 |
-
#:
|
1712 |
msgid "Slot 4"
|
1713 |
msgstr ""
|
1714 |
|
1715 |
-
#:
|
1716 |
msgid "Slot 5"
|
1717 |
msgstr ""
|
1718 |
|
1719 |
-
#:
|
1720 |
msgid "Slot 6"
|
1721 |
msgstr ""
|
1722 |
|
1723 |
-
#:
|
1724 |
msgid "N/A"
|
1725 |
msgstr ""
|
1726 |
|
1727 |
-
#:
|
1728 |
msgid "General"
|
1729 |
msgstr ""
|
1730 |
|
1731 |
-
#:
|
1732 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:230
|
1733 |
msgid "Overview"
|
1734 |
msgstr ""
|
1735 |
|
1736 |
-
#:
|
1737 |
msgid "Access/Exclusions"
|
1738 |
msgstr ""
|
1739 |
|
1740 |
-
#:
|
1741 |
msgid "GeoIP"
|
1742 |
msgstr ""
|
1743 |
|
1744 |
-
#:
|
|
|
|
|
|
|
|
|
1745 |
msgid "Maintenance"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
-
#:
|
1749 |
msgid "Update"
|
1750 |
msgstr ""
|
1751 |
|
1752 |
-
#:
|
1753 |
-
#, php-format
|
1754 |
msgid "Manual not found: %s"
|
1755 |
msgstr ""
|
1756 |
|
1757 |
-
#:
|
1758 |
-
#, php-format
|
1759 |
msgid "Invalid file type selected: %s"
|
1760 |
msgstr ""
|
1761 |
|
1762 |
-
#:
|
1763 |
msgid "Once Weekly"
|
1764 |
msgstr ""
|
1765 |
|
1766 |
-
#:
|
1767 |
msgid "Once Every 2 Weeks"
|
1768 |
msgstr ""
|
1769 |
|
1770 |
-
#:
|
1771 |
msgid "Once Every 4 Weeks"
|
1772 |
msgstr ""
|
1773 |
|
1774 |
-
#:
|
1775 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:227
|
1776 |
msgid "Statistics"
|
1777 |
msgstr ""
|
1778 |
|
1779 |
-
#:
|
1780 |
msgid "Show site stats in sidebar."
|
1781 |
msgstr ""
|
1782 |
|
1783 |
-
#:
|
1784 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:262
|
1785 |
msgid "Week Visit"
|
1786 |
msgstr ""
|
1787 |
|
1788 |
-
#:
|
1789 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:265
|
1790 |
msgid "Month Visit"
|
1791 |
msgstr ""
|
1792 |
|
1793 |
-
#:
|
1794 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:268
|
1795 |
msgid "Years Visit"
|
1796 |
msgstr ""
|
1797 |
|
1798 |
-
#:
|
1799 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:277
|
1800 |
msgid "Total Page Views"
|
1801 |
msgstr ""
|
1802 |
|
1803 |
-
#:
|
1804 |
msgid "Search Engine referred"
|
1805 |
msgstr ""
|
1806 |
|
1807 |
-
#:
|
1808 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:300
|
1809 |
msgid "Total Posts"
|
1810 |
msgstr ""
|
1811 |
|
1812 |
-
#:
|
1813 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:303
|
1814 |
msgid "Total Pages"
|
1815 |
msgstr ""
|
1816 |
|
1817 |
-
#:
|
1818 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:306
|
1819 |
msgid "Total Comments"
|
1820 |
msgstr ""
|
1821 |
|
1822 |
-
#:
|
1823 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:309
|
1824 |
msgid "Total Spams"
|
1825 |
msgstr ""
|
1826 |
|
1827 |
-
#:
|
1828 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:312
|
1829 |
msgid "Total Users"
|
1830 |
msgstr ""
|
1831 |
|
1832 |
-
#:
|
1833 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:315
|
1834 |
msgid "Average Posts"
|
1835 |
msgstr ""
|
1836 |
|
1837 |
-
#:
|
1838 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:318
|
1839 |
msgid "Average Comments"
|
1840 |
msgstr ""
|
1841 |
|
1842 |
-
#:
|
1843 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:321
|
1844 |
msgid "Average Users"
|
1845 |
msgstr ""
|
1846 |
|
1847 |
-
#:
|
1848 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:324
|
1849 |
msgid "Last Post Date"
|
1850 |
msgstr ""
|
1851 |
|
1852 |
-
#:
|
1853 |
msgid "Name"
|
1854 |
msgstr ""
|
1855 |
|
1856 |
-
#:
|
1857 |
msgid "Items"
|
1858 |
msgstr ""
|
1859 |
|
1860 |
-
#:
|
1861 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:316
|
1862 |
msgid "Yesterday visit"
|
1863 |
msgstr ""
|
1864 |
|
1865 |
-
#:
|
1866 |
msgid "Search Engine Referred"
|
1867 |
msgstr ""
|
1868 |
|
1869 |
-
#:
|
1870 |
msgid "Select type of search engine"
|
1871 |
msgstr ""
|
1872 |
|
1873 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1874 |
msgid "WP Statistics"
|
1875 |
msgstr ""
|
1876 |
|
1877 |
-
|
|
|
1878 |
msgid "Complete statistics for your WordPress site."
|
1879 |
msgstr ""
|
1880 |
|
1881 |
-
#:
|
1882 |
-
#, php-format
|
1883 |
msgid ""
|
1884 |
-
"Online user tracking in WP Statistics is not enabled, please go to
|
1885 |
-
"
|
|
|
|
|
|
|
|
|
1886 |
msgstr ""
|
1887 |
|
1888 |
-
#:
|
1889 |
-
#, php-format
|
1890 |
msgid ""
|
1891 |
-
"Hit tracking in WP Statistics is not enabled, please go to
|
1892 |
-
"\">setting page</a> and enable it."
|
1893 |
msgstr ""
|
1894 |
|
1895 |
-
#:
|
1896 |
-
#, php-format
|
1897 |
msgid ""
|
1898 |
-
"Visitor tracking in WP Statistics is not enabled, please go to
|
1899 |
-
"
|
1900 |
msgstr ""
|
1901 |
|
1902 |
-
#:
|
1903 |
-
#, php-format
|
1904 |
msgid ""
|
1905 |
-
"GeoIP collection is not active, please go to
|
1906 |
-
"GeoIP</a> and enable this feature (GeoIP can detect the visitors country)"
|
1907 |
msgstr ""
|
1908 |
|
1909 |
-
#:
|
1910 |
-
|
|
|
|
|
|
|
1911 |
msgid "Settings"
|
1912 |
msgstr ""
|
1913 |
|
1914 |
-
#:
|
1915 |
msgid "Click here to visit the plugin on WordPress.org"
|
1916 |
msgstr ""
|
1917 |
|
1918 |
-
#:
|
1919 |
msgid "Visit WordPress.org page"
|
1920 |
msgstr ""
|
1921 |
|
1922 |
-
#:
|
1923 |
msgid "Click here to rate and review this plugin on WordPress.org"
|
1924 |
msgstr ""
|
1925 |
|
1926 |
-
#:
|
1927 |
msgid "Rate this plugin"
|
1928 |
msgstr ""
|
1929 |
|
1930 |
-
#:
|
1931 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:235
|
1932 |
msgid "Hits"
|
1933 |
msgstr ""
|
1934 |
|
1935 |
-
#:
|
1936 |
msgid "WP Statistics - Hits"
|
1937 |
msgstr ""
|
1938 |
|
1939 |
-
#:
|
1940 |
msgid "Referers"
|
1941 |
msgstr ""
|
1942 |
|
1943 |
-
#:
|
1944 |
msgid "Searches"
|
1945 |
msgstr ""
|
1946 |
|
1947 |
-
#:
|
1948 |
msgid "Search Words"
|
1949 |
msgstr ""
|
1950 |
|
1951 |
-
#:
|
1952 |
msgid "Optimization"
|
1953 |
msgstr ""
|
1954 |
|
1955 |
-
#:
|
1956 |
msgid "Manual"
|
1957 |
msgstr ""
|
1958 |
|
1959 |
-
#:
|
1960 |
msgid "Today visitor"
|
1961 |
msgstr ""
|
1962 |
|
1963 |
-
#:
|
1964 |
msgid "Today visit"
|
1965 |
msgstr ""
|
1966 |
|
1967 |
-
#:
|
1968 |
msgid "Yesterday visitor"
|
1969 |
msgstr ""
|
1970 |
|
1971 |
-
#:
|
1972 |
msgid "View Stats"
|
1973 |
msgstr ""
|
1974 |
|
1975 |
-
#:
|
1976 |
msgid "Download ODF file"
|
1977 |
msgstr ""
|
1978 |
|
1979 |
-
#:
|
1980 |
msgid "Download HTML file"
|
1981 |
msgstr ""
|
1982 |
|
1983 |
-
#:
|
1984 |
msgid "Manual file not found."
|
1985 |
msgstr ""
|
1986 |
|
1987 |
-
#:
|
1988 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:526
|
1989 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:637
|
1990 |
msgid "You do not have sufficient permissions to access this page."
|
1991 |
msgstr ""
|
1992 |
|
1993 |
-
#:
|
1994 |
msgid "Table plugin does not exist! Please disable and re-enable the plugin."
|
1995 |
msgstr ""
|
1996 |
|
1997 |
-
#:
|
1998 |
-
#, php-format
|
1999 |
msgid "Error downloading GeoIP database from: %s - %s"
|
2000 |
msgstr ""
|
2001 |
|
2002 |
-
#:
|
2003 |
-
#, php-format
|
2004 |
msgid "Error could not open downloaded GeoIP database for reading: %s"
|
2005 |
msgstr ""
|
2006 |
|
2007 |
-
#:
|
2008 |
-
#, php-format
|
2009 |
msgid "Error could not open destination GeoIP database for writing %s"
|
2010 |
msgstr ""
|
2011 |
|
2012 |
-
#:
|
2013 |
msgid "GeoIP Database updated successfully!"
|
2014 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2014 WP Statistics
|
2 |
+
# This file is distributed under the same license as the WP Statistics package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: WP Statistics 7.4\n"
|
6 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-statistics\n"
|
7 |
+
"POT-Creation-Date: 2014-10-12 16:03:15+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: 2014-10-12 19:38+0330\n"
|
12 |
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
+
"Language-Team: LANGUAGE <info@wp-statistics.cpm>\n"
|
14 |
"X-Generator: Poedit 1.6.5\n"
|
15 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
16 |
+
"Language: en\n"
|
17 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
|
19 |
+
#: includes/functions/geoip-populate.php:26
|
20 |
msgid ""
|
21 |
"Unable to load the GeoIP database, make sure you have downloaded it in the "
|
22 |
"settings page."
|
23 |
msgstr ""
|
24 |
|
25 |
+
#: includes/functions/geoip-populate.php:50
|
|
|
26 |
msgid "Updated %s GeoIP records in the visitors database."
|
27 |
msgstr ""
|
28 |
|
29 |
+
#: includes/log/all-browsers.php:17
|
30 |
msgid "Browser Statistics"
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: includes/log/all-browsers.php:23 includes/log/all-browsers.php:106
|
34 |
+
#: includes/log/all-browsers.php:240 includes/log/exclusions.php:74
|
35 |
+
#: includes/log/hit-statistics.php:35 includes/log/last-search.php:61
|
36 |
+
#: includes/log/last-visitor.php:57 includes/log/page-statistics.php:47
|
37 |
+
#: includes/log/search-statistics.php:35 includes/log/top-pages.php:19
|
38 |
+
#: includes/log/top-pages.php:131 includes/log/top-referring.php:45
|
39 |
+
#: includes/log/widgets/about.php:7 includes/log/widgets/browsers.php:7
|
40 |
+
#: includes/log/widgets/countries.php:9 includes/log/widgets/google.map.php:8
|
41 |
+
#: includes/log/widgets/hits.php:7 includes/log/widgets/jqv.map.php:8
|
42 |
+
#: includes/log/widgets/pages.php:11 includes/log/widgets/recent.php:7
|
43 |
+
#: includes/log/widgets/referring.php:11 includes/log/widgets/search.php:7
|
44 |
+
#: includes/log/widgets/summary.php:7 includes/log/widgets/words.php:14
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
msgid "Click to toggle"
|
46 |
msgstr ""
|
47 |
|
48 |
+
#: includes/log/all-browsers.php:24 includes/log/widgets/browsers.php:8
|
49 |
+
#: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:249
|
|
|
|
|
50 |
msgid "Browsers"
|
51 |
msgstr ""
|
52 |
|
53 |
+
#: includes/log/all-browsers.php:50
|
54 |
msgid "Browsers by type"
|
55 |
msgstr ""
|
56 |
|
57 |
+
#: includes/log/all-browsers.php:107
|
58 |
msgid "Platform"
|
59 |
msgstr ""
|
60 |
|
61 |
+
#: includes/log/all-browsers.php:133
|
62 |
msgid "Browsers by platform"
|
63 |
msgstr ""
|
64 |
|
65 |
+
#: includes/log/all-browsers.php:241
|
|
|
66 |
msgid "%s Version"
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: includes/log/exclusions.php:8
|
70 |
msgid ""
|
71 |
"Attention: Exclusion are not currently set to be recorded, the results below "
|
72 |
"may not reflect current statistics!"
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: includes/log/exclusions.php:54
|
76 |
msgid "Exclusions Statistics"
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: includes/log/exclusions.php:57 includes/log/hit-statistics.php:21
|
80 |
+
#: includes/log/page-statistics.php:33 includes/log/search-statistics.php:21
|
|
|
|
|
81 |
msgid "10 Days"
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: includes/log/exclusions.php:58 includes/log/hit-statistics.php:22
|
85 |
+
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:22
|
|
|
|
|
86 |
msgid "20 Days"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: includes/log/exclusions.php:59 includes/log/hit-statistics.php:23
|
90 |
+
#: includes/log/page-statistics.php:35 includes/log/search-statistics.php:23
|
|
|
|
|
91 |
msgid "30 Days"
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: includes/log/exclusions.php:60 includes/log/hit-statistics.php:24
|
95 |
+
#: includes/log/page-statistics.php:36 includes/log/search-statistics.php:24
|
|
|
|
|
96 |
msgid "2 Months"
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: includes/log/exclusions.php:61 includes/log/hit-statistics.php:25
|
100 |
+
#: includes/log/page-statistics.php:37 includes/log/search-statistics.php:25
|
|
|
|
|
101 |
msgid "3 Months"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: includes/log/exclusions.php:62 includes/log/hit-statistics.php:26
|
105 |
+
#: includes/log/page-statistics.php:38 includes/log/search-statistics.php:26
|
|
|
|
|
106 |
msgid "6 Months"
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: includes/log/exclusions.php:63 includes/log/hit-statistics.php:27
|
110 |
+
#: includes/log/page-statistics.php:39 includes/log/search-statistics.php:27
|
|
|
|
|
111 |
msgid "9 Months"
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: includes/log/exclusions.php:64 includes/log/hit-statistics.php:28
|
115 |
+
#: includes/log/page-statistics.php:40 includes/log/search-statistics.php:28
|
|
|
|
|
116 |
msgid "1 Year"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: includes/log/exclusions.php:68
|
|
|
120 |
msgid "Total Exclusions: %s"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: includes/log/exclusions.php:75
|
124 |
msgid "Exclusions Statistical Chart"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: includes/log/exclusions.php:97
|
128 |
msgid "Excluded hits in the last"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: includes/log/exclusions.php:97 includes/log/hit-statistics.php:69
|
132 |
+
#: includes/log/search-statistics.php:77 includes/log/widgets/hits.php:39
|
133 |
+
#: includes/log/widgets/search.php:46
|
134 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:150
|
|
|
|
|
135 |
msgid "days"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: includes/log/exclusions.php:118
|
139 |
msgid "Number of excluded hits"
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: includes/log/hit-statistics.php:17 includes/log/widgets/hits.php:8
|
|
|
143 |
msgid "Hit Statistics"
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: includes/log/hit-statistics.php:36
|
147 |
msgid "Hits Statistics Chart"
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: includes/log/hit-statistics.php:69 includes/log/widgets/hits.php:39
|
|
|
151 |
msgid "Hits in the last"
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: includes/log/hit-statistics.php:90 includes/log/widgets/hits.php:60
|
|
|
155 |
msgid "Number of visits and visitors"
|
156 |
msgstr ""
|
157 |
|
158 |
+
#: includes/log/hit-statistics.php:104 includes/log/widgets/hits.php:74
|
159 |
+
#: includes/log/widgets/summary.php:20
|
|
|
160 |
msgid "Visit"
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: includes/log/hit-statistics.php:104 includes/log/widgets/hits.php:74
|
164 |
+
#: includes/log/widgets/summary.php:19
|
|
|
165 |
msgid "Visitor"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: includes/log/last-search.php:30 includes/log/widgets/words.php:16
|
169 |
+
#: includes/settings/tabs/wps-overview-display.php:36
|
|
|
170 |
msgid "Latest Search Words"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: includes/log/last-search.php:62
|
174 |
msgid "Latest Search Word Statistics"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: includes/log/last-search.php:97 includes/log/last-visitor.php:94
|
178 |
+
#: includes/log/widgets/google.map.php:65 includes/log/widgets/jqv.map.php:59
|
179 |
+
#: includes/log/widgets/recent.php:22 includes/log/widgets/words.php:25
|
|
|
|
|
|
|
180 |
msgid "#hash#"
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: includes/log/last-search.php:102 includes/log/last-visitor.php:99
|
184 |
+
#: includes/log/top-referring.php:78 includes/log/widgets/recent.php:27
|
185 |
+
#: includes/log/widgets/words.php:32
|
186 |
+
#: includes/settings/tabs/wps-overview-display.php:33
|
187 |
+
#: includes/settings/tabs/wps-overview-display.php:71
|
|
|
|
|
188 |
msgid "Map"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: includes/log/last-search.php:139 includes/log/last-visitor.php:132
|
192 |
+
#: includes/log/top-pages.php:181 includes/log/top-referring.php:132
|
|
|
|
|
193 |
msgid "Page"
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: includes/log/last-search.php:139 includes/log/last-visitor.php:132
|
197 |
+
#: includes/log/top-pages.php:181 includes/log/top-referring.php:132
|
|
|
|
|
198 |
msgid "From"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: includes/log/last-visitor.php:27 includes/log/widgets/recent.php:9
|
202 |
+
#: includes/settings/tabs/wps-overview-display.php:38
|
|
|
203 |
msgid "Recent Visitors"
|
204 |
msgstr ""
|
205 |
|
206 |
+
#: includes/log/last-visitor.php:29 includes/log/top-referring.php:36
|
207 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:134 widget.php:296
|
|
|
|
|
208 |
msgid "All"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: includes/log/last-visitor.php:59
|
212 |
msgid "Search for"
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: includes/log/last-visitor.php:61
|
216 |
msgid "Recent Visitor Statistics"
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: includes/log/page-statistics.php:29
|
220 |
msgid "Page Trend for Post ID"
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: includes/log/page-statistics.php:48
|
224 |
msgid "Page Trend"
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: includes/log/page-statistics.php:68
|
228 |
msgid "Page Trending Stats"
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: includes/log/page-statistics.php:89 includes/log/top-pages.php:70
|
|
|
232 |
msgid "Number of Hits"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: includes/log/search-statistics.php:17 includes/log/search-statistics.php:36
|
|
|
236 |
msgid "Search Engine Referral Statistics"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: includes/log/search-statistics.php:77 includes/log/widgets/search.php:46
|
|
|
240 |
msgid "Search engine referrals in the last"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: includes/log/search-statistics.php:98 includes/log/widgets/search.php:67
|
|
|
244 |
msgid "Number of referrals"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: includes/log/search-statistics.php:112 includes/log/widgets/search.php:81
|
248 |
+
#: includes/log/widgets/summary.php:54 includes/log/widgets/summary.php:94
|
|
|
|
|
249 |
msgid "Total"
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: includes/log/top-countries.php:19
|
253 |
msgid "Top Countries"
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: includes/log/top-countries.php:28 includes/log/widgets/countries.php:17
|
|
|
257 |
msgid "Rank"
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: includes/log/top-countries.php:29 includes/log/widgets/countries.php:18
|
|
|
261 |
msgid "Flag"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: includes/log/top-countries.php:30 includes/log/widgets/countries.php:19
|
|
|
265 |
msgid "Country"
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: includes/log/top-countries.php:31 includes/log/widgets/countries.php:20
|
|
|
269 |
msgid "Visitor Count"
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: includes/log/top-pages.php:13 includes/log/top-pages.php:132
|
|
|
273 |
msgid "Top Pages"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: includes/log/top-pages.php:20
|
277 |
msgid "Top 5 Pages Trends"
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: includes/log/top-pages.php:49
|
281 |
msgid "Top 5 Page Trending Stats"
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: includes/log/top-pages.php:160 includes/log/widgets/pages.php:27
|
|
|
285 |
msgid "No page title found"
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: includes/log/top-pages.php:163 includes/log/widgets/pages.php:30
|
289 |
+
#: includes/settings/tabs/wps-general.php:100
|
290 |
+
#: includes/settings/tabs/wps-general.php:105
|
|
|
291 |
msgid "Visits"
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: includes/log/top-referring.php:4
|
295 |
msgid "To be added soon"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: includes/log/top-referring.php:34 includes/log/top-referring.php:49
|
299 |
+
#: includes/log/widgets/referring.php:13
|
300 |
+
#: includes/settings/tabs/wps-overview-display.php:26
|
|
|
301 |
msgid "Top Referring Sites"
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: includes/log/top-referring.php:47
|
305 |
msgid "Referring sites from"
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: includes/log/top-referring.php:117 includes/log/widgets/referring.php:19
|
|
|
309 |
msgid "References"
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: includes/log/widgets/about.php:8
|
313 |
+
msgid "About WP Statistics Version %s"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: includes/log/widgets/about.php:15
|
317 |
+
msgid "Website"
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: includes/log/widgets/about.php:16
|
321 |
+
msgid "Rate and Review"
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: includes/log/widgets/about.php:20
|
325 |
+
msgid "More Information"
|
|
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: includes/log/widgets/about.php:29 includes/settings/tabs/wps-about.php:12
|
329 |
+
msgid ""
|
330 |
+
"This product includes GeoLite2 data created by MaxMind, available from %s."
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: includes/log/widgets/browsers.php:8 includes/log/widgets/countries.php:11
|
334 |
+
#: includes/log/widgets/hits.php:8 includes/log/widgets/pages.php:13
|
335 |
+
#: includes/log/widgets/recent.php:9 includes/log/widgets/referring.php:13
|
336 |
+
#: includes/log/widgets/search.php:8 includes/log/widgets/words.php:16
|
337 |
+
msgid "More"
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: includes/log/widgets/browsers.php:38
|
341 |
+
msgid "Other"
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: includes/log/widgets/browsers.php:45
|
345 |
+
msgid "Top 10 Browsers"
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: includes/log/widgets/countries.php:11
|
349 |
+
#: includes/settings/tabs/wps-overview-display.php:27
|
350 |
+
msgid "Top 10 Countries"
|
|
|
|
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: includes/log/widgets/google.map.php:9 includes/log/widgets/jqv.map.php:9
|
|
|
354 |
msgid "Today Visitors Map"
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: includes/log/widgets/pages.php:13
|
358 |
msgid "Top 10 Pages"
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: includes/log/widgets/referring.php:20
|
362 |
msgid "Address"
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: includes/log/widgets/search.php:8 includes/log/widgets/summary.php:64
|
|
|
366 |
msgid "Search Engine Referrals"
|
367 |
msgstr ""
|
368 |
|
369 |
+
#: includes/log/widgets/summary.php:8
|
370 |
msgid "Summary"
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: includes/log/widgets/summary.php:13
|
374 |
msgid "User(s) Online"
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: includes/log/widgets/summary.php:24 includes/log/widgets/summary.php:69
|
|
|
378 |
msgid "Today"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: includes/log/widgets/summary.php:30 includes/log/widgets/summary.php:70
|
|
|
382 |
msgid "Yesterday"
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: includes/log/widgets/summary.php:36
|
386 |
msgid "Week"
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: includes/log/widgets/summary.php:42
|
390 |
msgid "Month"
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: includes/log/widgets/summary.php:48
|
394 |
msgid "Year"
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: includes/log/widgets/summary.php:88
|
398 |
msgid "Daily Total"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: includes/log/widgets/summary.php:102
|
402 |
msgid "Current Time and Date"
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: includes/log/widgets/summary.php:102
|
406 |
msgid "(Adjustment)"
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: includes/log/widgets/summary.php:106
|
410 |
+
msgid "Date: %s"
|
|
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: includes/log/widgets/summary.php:110
|
414 |
+
msgid "Time: %s"
|
|
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: includes/optimization/delete-agents.php:5
|
418 |
+
#: includes/optimization/delete-platforms.php:5
|
419 |
+
#: includes/optimization/empty.php:5 includes/optimization/export.php:5
|
420 |
+
#: includes/optimization/purge-data.php:5
|
421 |
+
#: includes/optimization/wps-optimization.php:3 manual/manual.php:5
|
|
|
|
|
422 |
msgid "Access denied!"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: includes/optimization/delete-agents.php:14
|
426 |
+
msgid "%s agent data deleted successfully."
|
|
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: includes/optimization/delete-agents.php:18
|
430 |
+
#: includes/optimization/delete-platforms.php:18
|
431 |
+
#: includes/optimization/empty.php:42 includes/optimization/export.php:57
|
|
|
432 |
msgid "Please select the desired items."
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: includes/optimization/delete-platforms.php:14
|
436 |
+
msgid "%s platform data deleted successfully."
|
|
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: includes/optimization/empty.php:53
|
440 |
+
msgid "%s table data deleted successfully."
|
|
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: includes/optimization/empty.php:57
|
|
|
444 |
msgid "Error, %s not emptied!"
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: includes/optimization/purge-data.php:17
|
448 |
+
#: includes/optimization/purge-data.php:27
|
449 |
+
#: includes/optimization/purge-data.php:37
|
450 |
+
#: includes/optimization/purge-data.php:47
|
451 |
+
msgid "%s data older than %s days purged successfully."
|
|
|
|
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: includes/optimization/purge-data.php:19
|
455 |
+
#: includes/optimization/purge-data.php:29
|
456 |
+
#: includes/optimization/purge-data.php:39
|
457 |
+
#: includes/optimization/purge-data.php:49
|
458 |
+
msgid "No records found to purge from %s!"
|
|
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: includes/optimization/purge-data.php:55
|
462 |
msgid "Please select a value over 30 days."
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: includes/optimization/tabs/wps-optimization-database.php:5
|
466 |
+
msgid "Database Setup"
|
467 |
+
msgstr ""
|
468 |
+
|
469 |
+
#: includes/optimization/tabs/wps-optimization-database.php:10
|
470 |
+
msgid "Re-run Install"
|
471 |
+
msgstr ""
|
472 |
+
|
473 |
+
#: includes/optimization/tabs/wps-optimization-database.php:14
|
474 |
+
msgid "Install Now!"
|
475 |
+
msgstr ""
|
476 |
+
|
477 |
+
#: includes/optimization/tabs/wps-optimization-database.php:15
|
478 |
+
msgid ""
|
479 |
+
"If for some reason your installation of WP Statistics is missing the "
|
480 |
+
"database tables or other core items, this will re-execute the install "
|
481 |
+
"process."
|
482 |
+
msgstr ""
|
483 |
+
|
484 |
+
#: includes/optimization/tabs/wps-optimization-database.php:20
|
485 |
msgid "Database Index"
|
486 |
msgstr ""
|
487 |
|
488 |
+
#: includes/optimization/tabs/wps-optimization-database.php:25
|
489 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:21
|
490 |
+
#: wp-statistics.php:251
|
491 |
msgid "Countries"
|
492 |
msgstr ""
|
493 |
|
494 |
+
#: includes/optimization/tabs/wps-optimization-database.php:39
|
495 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:25
|
496 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:40
|
497 |
msgid "Update Now!"
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: includes/optimization/tabs/wps-optimization-database.php:40
|
501 |
msgid ""
|
502 |
"Older installs of WP Statistics allow for duplicate entries in the visitors "
|
503 |
"table in a corner case. Newer installs protect against this with a unique "
|
506 |
"vistitors table, delete duplicate entries and add the index."
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: includes/optimization/tabs/wps-optimization-database.php:41
|
510 |
msgid ""
|
511 |
"This operation could take a long time on installs with many rows in the "
|
512 |
"visitors table."
|
513 |
msgstr ""
|
514 |
|
515 |
+
#: includes/optimization/tabs/wps-optimization-database.php:46
|
516 |
msgid ""
|
517 |
"Older installs of WP Statistics allow for duplicate entries in the visitors "
|
518 |
"table in a corner case. Newer installs protect against this with a unique "
|
519 |
"index on the table."
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: includes/optimization/tabs/wps-optimization-database.php:47
|
523 |
msgid ""
|
524 |
"Congratulations, your installation is already up to date, nothing to do."
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: includes/optimization/tabs/wps-optimization-export.php:7
|
528 |
+
#: includes/optimization/wps-optimization.php:127
|
529 |
msgid "Export"
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: includes/optimization/tabs/wps-optimization-export.php:12
|
533 |
msgid "Export from"
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: includes/optimization/tabs/wps-optimization-export.php:17
|
537 |
+
#: includes/optimization/tabs/wps-optimization-export.php:35
|
538 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:128
|
539 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:169
|
540 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:193
|
541 |
+
#: includes/settings/tabs/wps-general.php:303
|
542 |
+
#: includes/settings/tabs/wps-general.php:333
|
543 |
msgid "Please select"
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: includes/optimization/tabs/wps-optimization-export.php:24
|
547 |
msgid "Select the table for the output file."
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: includes/optimization/tabs/wps-optimization-export.php:30
|
551 |
msgid "Export To"
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: includes/optimization/tabs/wps-optimization-export.php:41
|
555 |
msgid "Select the output file type."
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: includes/optimization/tabs/wps-optimization-export.php:47
|
559 |
msgid "Include Header Row"
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: includes/optimization/tabs/wps-optimization-export.php:52
|
563 |
msgid "Include a header row as the first line of the exported file."
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: includes/optimization/tabs/wps-optimization-export.php:53
|
567 |
msgid "Start Now!"
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:10
|
571 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:36
|
572 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:62
|
573 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:90
|
574 |
msgid "Are you sure?"
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:118
|
578 |
msgid "Data"
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:123
|
582 |
msgid "Empty Table"
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:136
|
586 |
msgid "All data table will be lost."
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:137
|
590 |
msgid "Clear now!"
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:145
|
594 |
msgid "Purge records older than"
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:151
|
598 |
msgid ""
|
599 |
"Deleted user statistics data older than the selected number of days. "
|
600 |
"Minimum value is 30 days."
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:152
|
604 |
msgid "Purge now!"
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:159
|
608 |
msgid "Delete User Agent Types"
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:164
|
612 |
msgid "Delete Agents"
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:179
|
616 |
msgid "All visitor data will be lost for this agent type."
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:180
|
620 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:204
|
621 |
msgid "Delete now!"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:188
|
625 |
msgid "Delete Platforms"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:203
|
629 |
msgid "All visitor data will be lost for this platform type."
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:17
|
633 |
msgid "Resources"
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:22
|
637 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:27
|
638 |
msgid "Memory usage in PHP"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:26
|
642 |
msgid "Byte"
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:33
|
646 |
msgid "PHP Memory Limit"
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:38
|
650 |
msgid "The memory limit a script is allowed to consume, set in php.ini."
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:44
|
654 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:55
|
655 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:66
|
656 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:77
|
657 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:88
|
658 |
+
msgid "Number of rows in the %s table"
|
|
|
659 |
msgstr ""
|
660 |
|
661 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:48
|
662 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:59
|
663 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:70
|
664 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:81
|
665 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:92
|
666 |
msgid "Row"
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:49
|
670 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:60
|
671 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:71
|
672 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:82
|
673 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:93
|
674 |
msgid "Number of rows"
|
675 |
msgstr ""
|
676 |
|
677 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:98
|
678 |
msgid "Version Info"
|
679 |
msgstr ""
|
680 |
|
681 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:103
|
682 |
msgid "WP Statistics Version"
|
683 |
msgstr ""
|
684 |
|
685 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:108
|
686 |
msgid "The WP Statistics version you are running."
|
687 |
msgstr ""
|
688 |
|
689 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:114
|
690 |
msgid "PHP Version"
|
691 |
msgstr ""
|
692 |
|
693 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:119
|
694 |
msgid "The PHP version you are running."
|
695 |
msgstr ""
|
696 |
|
697 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:125
|
698 |
msgid "PHP Safe Mode"
|
699 |
msgstr ""
|
700 |
|
701 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:130
|
702 |
msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:136
|
706 |
msgid "jQuery Version"
|
707 |
msgstr ""
|
708 |
|
709 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:141
|
710 |
msgid "The jQuery version you are running."
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:147
|
714 |
msgid "cURL Version"
|
715 |
msgstr ""
|
716 |
|
717 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:151
|
718 |
msgid "cURL not installed"
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:152
|
722 |
msgid ""
|
723 |
"The PHP cURL Extension version you are running. cURL is required for the "
|
724 |
"GeoIP code, if it is not installed GeoIP will be disabled."
|
725 |
msgstr ""
|
726 |
|
727 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:158
|
728 |
msgid "BC Math"
|
729 |
msgstr ""
|
730 |
|
731 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:162
|
732 |
msgid "Installed"
|
733 |
msgstr ""
|
734 |
|
735 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:162
|
736 |
msgid "Not installed"
|
737 |
msgstr ""
|
738 |
|
739 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:163
|
740 |
msgid ""
|
741 |
+
"If the PHP BC Math Extension is installed. BC Math is no longer required "
|
742 |
+
"for the GeoIP code and is listed here only for historical reasons."
|
743 |
msgstr ""
|
744 |
|
745 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:168
|
746 |
+
msgid "File Info"
|
747 |
msgstr ""
|
748 |
|
749 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:173
|
750 |
+
msgid "GeoIP Database"
|
751 |
msgstr ""
|
752 |
|
753 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:182
|
754 |
+
msgid "Database file does not exist."
|
755 |
msgstr ""
|
756 |
|
757 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:184
|
758 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:203
|
759 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:222
|
760 |
+
msgid ", created on "
|
761 |
msgstr ""
|
762 |
|
763 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:186
|
764 |
+
msgid "The file size and date of the GeoIP database."
|
765 |
msgstr ""
|
766 |
|
767 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:192
|
768 |
+
msgid "browscap.ini File"
|
|
|
|
|
769 |
msgstr ""
|
770 |
|
771 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:201
|
772 |
+
msgid "browscap.ini file does not exist."
|
773 |
msgstr ""
|
774 |
|
775 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:205
|
776 |
+
msgid "The file size and date of the browscap.ini file."
|
777 |
msgstr ""
|
778 |
|
779 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:211
|
780 |
+
msgid "browscap Cache File"
|
781 |
msgstr ""
|
782 |
|
783 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:220
|
784 |
+
msgid "browscap cache file does not exist."
|
785 |
msgstr ""
|
786 |
|
787 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:224
|
788 |
+
msgid "The file size and date of the browscap cache file."
|
789 |
msgstr ""
|
790 |
|
791 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:229
|
792 |
+
msgid "Client Info"
|
793 |
msgstr ""
|
794 |
|
795 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:234
|
796 |
+
msgid "Client IP"
|
797 |
+
msgstr ""
|
798 |
+
|
799 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:239
|
800 |
+
msgid "The client IP address."
|
801 |
+
msgstr ""
|
802 |
+
|
803 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:245
|
804 |
+
msgid "User Agent"
|
805 |
+
msgstr ""
|
806 |
+
|
807 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:250
|
808 |
+
msgid "The client user agent string."
|
809 |
+
msgstr ""
|
810 |
+
|
811 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:4
|
812 |
+
msgid ""
|
813 |
+
"This will replace all IP addresses in the database with hash values and "
|
814 |
+
"cannot be undo, are you sure?"
|
815 |
+
msgstr ""
|
816 |
+
|
817 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:16
|
818 |
msgid "GeoIP Options"
|
819 |
msgstr ""
|
820 |
|
821 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:26
|
822 |
msgid ""
|
823 |
"Updates any unknown location data in the database, this may take a while"
|
824 |
msgstr ""
|
825 |
|
826 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:31
|
827 |
+
#: includes/settings/tabs/wps-general.php:56
|
828 |
msgid "IP Addresses"
|
829 |
msgstr ""
|
830 |
|
831 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:36
|
832 |
+
#: includes/settings/tabs/wps-general.php:61
|
833 |
msgid "Hash IP Addresses"
|
834 |
msgstr ""
|
835 |
|
836 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:41
|
837 |
msgid ""
|
838 |
"Replace IP addresses in the database with hash values, you will not be able "
|
839 |
"to recover the IP addresses in the future to populate location information "
|
840 |
"afterwards and this may take a while"
|
841 |
msgstr ""
|
842 |
|
843 |
+
#: includes/optimization/wps-optimization.php:43
|
844 |
msgid "IP Addresses replaced with hash values."
|
845 |
msgstr ""
|
846 |
|
847 |
+
#: includes/optimization/wps-optimization.php:51
|
848 |
+
msgid "Install routine complete."
|
849 |
+
msgstr ""
|
850 |
+
|
851 |
+
#: includes/optimization/wps-optimization.php:126
|
852 |
msgid "Resources/Information"
|
853 |
msgstr ""
|
854 |
|
855 |
+
#: includes/optimization/wps-optimization.php:128
|
856 |
msgid "Purging"
|
857 |
msgstr ""
|
858 |
|
859 |
+
#: includes/optimization/wps-optimization.php:129
|
860 |
msgid "Database"
|
861 |
msgstr ""
|
862 |
|
863 |
+
#: includes/optimization/wps-optimization.php:130
|
864 |
msgid "Updates"
|
865 |
msgstr ""
|
866 |
|
867 |
+
#: includes/settings/tabs/wps-about.php:8
|
|
|
868 |
msgid "WP Statistics V%s"
|
869 |
msgstr ""
|
870 |
|
871 |
+
#: includes/settings/tabs/wps-about.php:20
|
872 |
msgid "Visit Us Online"
|
873 |
msgstr ""
|
874 |
|
875 |
+
#: includes/settings/tabs/wps-about.php:24
|
876 |
msgid ""
|
877 |
+
"Come visit our great new %s and keep up to date on the latest news about WP "
|
878 |
+
"Statistics."
|
879 |
+
msgstr ""
|
880 |
+
|
881 |
+
#: includes/settings/tabs/wps-about.php:24
|
882 |
+
msgid "website"
|
883 |
msgstr ""
|
884 |
|
885 |
+
#: includes/settings/tabs/wps-about.php:28
|
886 |
msgid "Rate and Review at WordPress.org"
|
887 |
msgstr ""
|
888 |
|
889 |
+
#: includes/settings/tabs/wps-about.php:32
|
890 |
msgid "Thanks for installing WP Statistics, we encourage you to submit a "
|
891 |
msgstr ""
|
892 |
|
893 |
+
#: includes/settings/tabs/wps-about.php:32
|
894 |
msgid "rating and review"
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: includes/settings/tabs/wps-about.php:32
|
898 |
msgid "over at WordPress.org. Your feedback is greatly appreciated!"
|
899 |
msgstr ""
|
900 |
|
901 |
+
#: includes/settings/tabs/wps-about.php:36
|
902 |
msgid "Translations"
|
903 |
msgstr ""
|
904 |
|
905 |
+
#: includes/settings/tabs/wps-about.php:40
|
906 |
msgid ""
|
907 |
"WP Statistics supports internationalization and we encourage our users to "
|
908 |
+
"submit translations, please visit our %s to see the current status and %s if "
|
909 |
+
"you would like to help."
|
910 |
+
msgstr ""
|
911 |
+
|
912 |
+
#: includes/settings/tabs/wps-about.php:40
|
913 |
+
msgid "translation collaboration site"
|
914 |
+
msgstr ""
|
915 |
+
|
916 |
+
#: includes/settings/tabs/wps-about.php:40
|
917 |
+
msgid "drop us a line"
|
918 |
msgstr ""
|
919 |
|
920 |
+
#: includes/settings/tabs/wps-about.php:44
|
921 |
msgid "Support"
|
922 |
msgstr ""
|
923 |
|
924 |
+
#: includes/settings/tabs/wps-about.php:49
|
925 |
msgid ""
|
926 |
"We're sorry you're having problem with WP Statistics and we're happy to help "
|
927 |
"out. Here are a few things to do before contacting us:"
|
928 |
msgstr ""
|
929 |
|
930 |
+
#: includes/settings/tabs/wps-about.php:52
|
931 |
+
#: includes/settings/tabs/wps-about.php:53
|
932 |
+
msgid "Have you read the %s?"
|
|
|
933 |
msgstr ""
|
934 |
|
935 |
+
#: includes/settings/tabs/wps-about.php:52
|
936 |
+
msgid "FAQs"
|
|
|
|
|
937 |
msgstr ""
|
938 |
|
939 |
+
#: includes/settings/tabs/wps-about.php:53
|
940 |
+
msgid "manual"
|
|
|
|
|
941 |
msgstr ""
|
942 |
|
943 |
+
#: includes/settings/tabs/wps-about.php:54
|
944 |
+
msgid "Have you search the %s for a similar issue?"
|
945 |
+
msgstr ""
|
946 |
+
|
947 |
+
#: includes/settings/tabs/wps-about.php:54
|
948 |
+
msgid "support forum"
|
949 |
+
msgstr ""
|
950 |
+
|
951 |
+
#: includes/settings/tabs/wps-about.php:55
|
952 |
msgid "Have you search the Internet for any error messages you are receiving?"
|
953 |
msgstr ""
|
954 |
|
955 |
+
#: includes/settings/tabs/wps-about.php:58
|
956 |
msgid "And a few things to double-check:"
|
957 |
msgstr ""
|
958 |
|
959 |
+
#: includes/settings/tabs/wps-about.php:61
|
960 |
msgid "How's your memory_limit in php.ini?"
|
961 |
msgstr ""
|
962 |
|
963 |
+
#: includes/settings/tabs/wps-about.php:62
|
964 |
msgid "Have you tried disabling any other plugins you may have installed?"
|
965 |
msgstr ""
|
966 |
|
967 |
+
#: includes/settings/tabs/wps-about.php:63
|
968 |
msgid "Have you tried using the default WordPress theme?"
|
969 |
msgstr ""
|
970 |
|
971 |
+
#: includes/settings/tabs/wps-about.php:64
|
972 |
msgid "Have you double checked the plugin settings?"
|
973 |
msgstr ""
|
974 |
|
975 |
+
#: includes/settings/tabs/wps-about.php:65
|
976 |
msgid "Do you have all the required PHP extensions installed?"
|
977 |
msgstr ""
|
978 |
|
979 |
+
#: includes/settings/tabs/wps-about.php:66
|
980 |
msgid ""
|
981 |
"Are you getting a blank or incomplete page displayed in your browser? Did "
|
982 |
"you view the source for the page and check for any fatal errors?"
|
983 |
msgstr ""
|
984 |
|
985 |
+
#: includes/settings/tabs/wps-about.php:67
|
986 |
msgid "Have you checked your PHP and web server error logs?"
|
987 |
msgstr ""
|
988 |
|
989 |
+
#: includes/settings/tabs/wps-about.php:70
|
990 |
msgid "Still not having any luck?"
|
991 |
msgstr ""
|
992 |
|
993 |
+
#: includes/settings/tabs/wps-about.php:70
|
994 |
msgid ""
|
995 |
+
"Then please open a new thread on the %s and we'll respond as soon as "
|
996 |
+
"possible."
|
|
|
997 |
msgstr ""
|
998 |
|
999 |
+
#: includes/settings/tabs/wps-about.php:70
|
1000 |
+
msgid "WordPress.org support forum"
|
|
|
|
|
|
|
1001 |
msgstr ""
|
1002 |
|
1003 |
+
#: includes/settings/tabs/wps-about.php:74
|
1004 |
+
msgid "Alternatively %s support is available as well."
|
1005 |
+
msgstr ""
|
1006 |
+
|
1007 |
+
#: includes/settings/tabs/wps-about.php:74
|
1008 |
+
msgid "Farsi"
|
1009 |
+
msgstr ""
|
1010 |
+
|
1011 |
+
#: includes/settings/tabs/wps-access-level.php:33
|
1012 |
msgid "Access Levels"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
+
#: includes/settings/tabs/wps-access-level.php:62
|
1016 |
msgid "Required user level to view WP Statistics"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
+
#: includes/settings/tabs/wps-access-level.php:77
|
1020 |
msgid "Required user level to manage WP Statistics"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
+
#: includes/settings/tabs/wps-access-level.php:85
|
1024 |
+
msgid "See the %s for details on capability levels."
|
1025 |
+
msgstr ""
|
1026 |
+
|
1027 |
+
#: includes/settings/tabs/wps-access-level.php:85
|
1028 |
+
msgid "WordPress Roles and Capabilities page"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
+
#: includes/settings/tabs/wps-access-level.php:86
|
1032 |
msgid ""
|
1033 |
"Hint: manage_network = Super Admin Network, manage_options = Administrator, "
|
1034 |
"edit_others_posts = Editor, publish_posts = Author, edit_posts = "
|
1035 |
"Contributor, read = Everyone."
|
1036 |
msgstr ""
|
1037 |
|
1038 |
+
#: includes/settings/tabs/wps-access-level.php:87
|
1039 |
msgid ""
|
1040 |
"Each of the above casscades the rights upwards in the default WordPress "
|
1041 |
"configuration. So for example selecting publish_posts grants the right to "
|
1042 |
"Authors, Editors, Admins and Super Admins."
|
1043 |
msgstr ""
|
1044 |
|
1045 |
+
#: includes/settings/tabs/wps-access-level.php:88
|
|
|
1046 |
msgid ""
|
1047 |
"If you need a more robust solution to delegate access you might want to look "
|
1048 |
"at %s in the WordPress plugin directory."
|
1049 |
msgstr ""
|
1050 |
|
1051 |
+
#: includes/settings/tabs/wps-access-level.php:93 wp-statistics.php:254
|
|
|
1052 |
msgid "Exclusions"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
+
#: includes/settings/tabs/wps-access-level.php:97
|
1056 |
msgid "Record exclusions"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
+
#: includes/settings/tabs/wps-access-level.php:99
|
1060 |
+
#: includes/settings/tabs/wps-access-level.php:151
|
1061 |
msgid "Enable"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: includes/settings/tabs/wps-access-level.php:100
|
1065 |
msgid ""
|
1066 |
"This will record all the excluded hits in a separate table with the reasons "
|
1067 |
"why it was excluded but no other information. This will generate a lot of "
|
1069 |
"gets, not just actual user visits."
|
1070 |
msgstr ""
|
1071 |
|
1072 |
+
#: includes/settings/tabs/wps-access-level.php:105
|
1073 |
msgid "Exclude User Roles"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
+
#: includes/settings/tabs/wps-access-level.php:119
|
1077 |
+
#: includes/settings/tabs/wps-access-level.php:174
|
1078 |
+
#: includes/settings/tabs/wps-access-level.php:181
|
1079 |
msgid "Exclude"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
+
#: includes/settings/tabs/wps-access-level.php:120
|
|
|
1083 |
msgid "Exclude %s role from data collection."
|
1084 |
msgstr ""
|
1085 |
|
1086 |
+
#: includes/settings/tabs/wps-access-level.php:126
|
1087 |
msgid "IP/Robot Exclusions"
|
1088 |
msgstr ""
|
1089 |
|
1090 |
+
#: includes/settings/tabs/wps-access-level.php:130
|
1091 |
msgid "Robot list"
|
1092 |
msgstr ""
|
1093 |
|
1094 |
+
#: includes/settings/tabs/wps-access-level.php:143
|
1095 |
msgid ""
|
1096 |
"A list of words (one per line) to match against to detect robots. Entries "
|
1097 |
"must be at least 4 characters long or they will be ignored."
|
1098 |
msgstr ""
|
1099 |
|
1100 |
+
#: includes/settings/tabs/wps-access-level.php:144
|
1101 |
msgid "Reset to Default"
|
1102 |
msgstr ""
|
1103 |
|
1104 |
+
#: includes/settings/tabs/wps-access-level.php:149
|
1105 |
msgid "Force robot list update after upgrades"
|
1106 |
msgstr ""
|
1107 |
|
1108 |
+
#: includes/settings/tabs/wps-access-level.php:152
|
1109 |
msgid ""
|
1110 |
"Force the robot list to be reset to the default after an update to WP "
|
1111 |
"Statistics takes place. Note if this option is enabled any custom robots "
|
1112 |
"you have added to the list will be lost."
|
1113 |
msgstr ""
|
1114 |
|
1115 |
+
#: includes/settings/tabs/wps-access-level.php:157
|
1116 |
msgid "Excluded IP address list"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
+
#: includes/settings/tabs/wps-access-level.php:160
|
1120 |
msgid ""
|
1121 |
"A list of IP addresses and subnet masks (one per line) to exclude from "
|
1122 |
"statistics collection (both 192.168.0.0/24 and 192.168.0.0/255.255.255.0 "
|
1124 |
"32 or 255.255.255.255."
|
1125 |
msgstr ""
|
1126 |
|
1127 |
+
#: includes/settings/tabs/wps-access-level.php:161
|
1128 |
msgid "Add 10.0.0.0"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
+
#: includes/settings/tabs/wps-access-level.php:162
|
1132 |
msgid "Add 172.16.0.0"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
+
#: includes/settings/tabs/wps-access-level.php:163
|
1136 |
msgid "Add 192.168.0.0"
|
1137 |
msgstr ""
|
1138 |
|
1139 |
+
#: includes/settings/tabs/wps-access-level.php:168
|
1140 |
msgid "Site URL Exclusions"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
+
#: includes/settings/tabs/wps-access-level.php:172
|
1144 |
msgid "Excluded login page"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
+
#: includes/settings/tabs/wps-access-level.php:175
|
1148 |
msgid "Exclude the login page for registering as a hit."
|
1149 |
msgstr ""
|
1150 |
|
1151 |
+
#: includes/settings/tabs/wps-access-level.php:179
|
1152 |
msgid "Excluded admin pages"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
+
#: includes/settings/tabs/wps-access-level.php:182
|
1156 |
msgid "Exclude the admin pages for registering as a hit."
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: includes/settings/tabs/wps-browscap.php:17
|
1160 |
+
msgid "browscap settings"
|
1161 |
+
msgstr ""
|
1162 |
+
|
1163 |
+
#: includes/settings/tabs/wps-browscap.php:22
|
1164 |
+
msgid "browscap usage"
|
1165 |
+
msgstr ""
|
1166 |
+
|
1167 |
+
#: includes/settings/tabs/wps-browscap.php:27
|
1168 |
+
#: includes/settings/tabs/wps-browscap.php:51
|
1169 |
+
#: includes/settings/tabs/wps-general.php:66
|
1170 |
+
#: includes/settings/tabs/wps-general.php:82
|
1171 |
+
#: includes/settings/tabs/wps-general.php:110
|
1172 |
+
#: includes/settings/tabs/wps-general.php:126
|
1173 |
+
#: includes/settings/tabs/wps-general.php:138
|
1174 |
+
#: includes/settings/tabs/wps-general.php:165
|
1175 |
+
#: includes/settings/tabs/wps-general.php:177
|
1176 |
+
#: includes/settings/tabs/wps-general.php:189
|
1177 |
+
#: includes/settings/tabs/wps-general.php:219
|
1178 |
+
#: includes/settings/tabs/wps-general.php:231
|
1179 |
+
#: includes/settings/tabs/wps-general.php:274
|
1180 |
+
#: includes/settings/tabs/wps-general.php:290
|
1181 |
+
#: includes/settings/tabs/wps-geoip.php:37
|
1182 |
+
#: includes/settings/tabs/wps-geoip.php:61
|
1183 |
+
#: includes/settings/tabs/wps-geoip.php:94
|
1184 |
+
#: includes/settings/tabs/wps-maintenance.php:40
|
1185 |
+
#: includes/settings/tabs/wps-overview-display.php:105
|
1186 |
+
#: includes/settings/tabs/wps-overview-display.php:117
|
1187 |
+
msgid "Active"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
+
#: includes/settings/tabs/wps-browscap.php:28
|
1191 |
+
msgid "The browscap database will be downloaded and used to detect robots."
|
1192 |
+
msgstr ""
|
1193 |
+
|
1194 |
+
#: includes/settings/tabs/wps-browscap.php:34
|
1195 |
+
msgid "Update browscap Info"
|
1196 |
+
msgstr ""
|
1197 |
+
|
1198 |
+
#: includes/settings/tabs/wps-browscap.php:39
|
1199 |
+
msgid "Download browscap Database"
|
1200 |
+
msgstr ""
|
1201 |
+
|
1202 |
+
#: includes/settings/tabs/wps-browscap.php:40
|
1203 |
+
#: includes/settings/tabs/wps-geoip.php:50
|
1204 |
+
msgid "Save changes on this page to download the update."
|
1205 |
+
msgstr ""
|
1206 |
+
|
1207 |
+
#: includes/settings/tabs/wps-browscap.php:46
|
1208 |
+
msgid "Schedule weekly update of browscap DB"
|
1209 |
+
msgstr ""
|
1210 |
+
|
1211 |
+
#: includes/settings/tabs/wps-browscap.php:54
|
1212 |
+
#: includes/settings/tabs/wps-geoip.php:64
|
1213 |
+
msgid "Next update will be"
|
1214 |
+
msgstr ""
|
1215 |
+
|
1216 |
+
#: includes/settings/tabs/wps-browscap.php:69
|
1217 |
+
msgid "Download of the browscap database will be scheduled for once a week."
|
1218 |
msgstr ""
|
1219 |
|
1220 |
+
#: includes/settings/tabs/wps-general.php:40
|
1221 |
+
msgid "This will delete the manual when you save the settings, are you sure?"
|
1222 |
+
msgstr ""
|
1223 |
+
|
1224 |
+
#: includes/settings/tabs/wps-general.php:67
|
1225 |
msgid ""
|
1226 |
+
"This feature will not store IP addresses in the database but instead used a "
|
1227 |
+
"unique hash. The \"Store entire user agent string\" setting will be "
|
1228 |
"disabled if this is selected. You will not be able to recover the IP "
|
1229 |
"addresses in the future to recover location information if this is enabled."
|
1230 |
msgstr ""
|
1231 |
|
1232 |
+
#: includes/settings/tabs/wps-general.php:72
|
1233 |
msgid "Users Online"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
+
#: includes/settings/tabs/wps-general.php:77
|
1237 |
msgid "User online"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
+
#: includes/settings/tabs/wps-general.php:83
|
1241 |
+
#: includes/settings/tabs/wps-general.php:111
|
1242 |
+
#: includes/settings/tabs/wps-general.php:127
|
1243 |
+
#: includes/settings/tabs/wps-general.php:166
|
1244 |
+
#: includes/settings/tabs/wps-general.php:178
|
1245 |
+
#: includes/settings/tabs/wps-general.php:190
|
1246 |
+
#: includes/settings/tabs/wps-general.php:291
|
1247 |
msgid "Enable or disable this feature"
|
1248 |
msgstr ""
|
1249 |
|
1250 |
+
#: includes/settings/tabs/wps-general.php:89
|
1251 |
msgid "Check for online users every"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
+
#: includes/settings/tabs/wps-general.php:94
|
1255 |
msgid "Second"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
+
#: includes/settings/tabs/wps-general.php:95
|
|
|
1259 |
msgid "Time for the check accurate online user in the site. Now: %s Second"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
+
#: includes/settings/tabs/wps-general.php:116
|
1263 |
+
#: includes/settings/tabs/wps-general.php:121 wp-statistics.php:258
|
|
|
1264 |
msgid "Visitors"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
+
#: includes/settings/tabs/wps-general.php:133
|
1268 |
msgid "Store entire user agent string"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
+
#: includes/settings/tabs/wps-general.php:139
|
1272 |
msgid "Only enabled for debugging"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
+
#: includes/settings/tabs/wps-general.php:145
|
1276 |
msgid "Coefficient per visitor"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
+
#: includes/settings/tabs/wps-general.php:150
|
|
|
1280 |
msgid "For each visit to account for several hits. Currently %s."
|
1281 |
msgstr ""
|
1282 |
|
1283 |
+
#: includes/settings/tabs/wps-general.php:155
|
1284 |
+
#: includes/settings/tabs/wps-general.php:160 wp-statistics.php:259
|
|
|
1285 |
msgid "Pages"
|
1286 |
msgstr ""
|
1287 |
|
1288 |
+
#: includes/settings/tabs/wps-general.php:172
|
1289 |
msgid "Track all pages"
|
1290 |
msgstr ""
|
1291 |
|
1292 |
+
#: includes/settings/tabs/wps-general.php:184
|
1293 |
msgid "Disable hits column in post/pages list"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
+
#: includes/settings/tabs/wps-general.php:195
|
1297 |
msgid "Miscellaneous"
|
1298 |
msgstr ""
|
1299 |
|
1300 |
+
#: includes/settings/tabs/wps-general.php:200
|
1301 |
msgid "Show stats in menu bar"
|
1302 |
msgstr ""
|
1303 |
|
1304 |
+
#: includes/settings/tabs/wps-general.php:205
|
1305 |
msgid "No"
|
1306 |
msgstr ""
|
1307 |
|
1308 |
+
#: includes/settings/tabs/wps-general.php:206
|
1309 |
msgid "Yes"
|
1310 |
msgstr ""
|
1311 |
|
1312 |
+
#: includes/settings/tabs/wps-general.php:208
|
1313 |
msgid "Show stats in admin menu bar"
|
1314 |
msgstr ""
|
1315 |
|
1316 |
+
#: includes/settings/tabs/wps-general.php:214
|
1317 |
msgid "Hide admin notices about non active features"
|
1318 |
msgstr ""
|
1319 |
|
1320 |
+
#: includes/settings/tabs/wps-general.php:220
|
1321 |
msgid ""
|
1322 |
"By default WP Statistics displays an alert if any of the core features are "
|
1323 |
"disabled on every admin page, this option will disable these notices."
|
1324 |
msgstr ""
|
1325 |
|
1326 |
+
#: includes/settings/tabs/wps-general.php:226
|
1327 |
msgid "Delete the manual"
|
1328 |
msgstr ""
|
1329 |
|
1330 |
+
#: includes/settings/tabs/wps-general.php:232
|
1331 |
msgid ""
|
1332 |
"By default WP Statistics stores the admin manual in the plugin directory (~5 "
|
1333 |
"meg), if this option is enabled it will be deleted now and during upgrades "
|
1334 |
"in the future."
|
1335 |
msgstr ""
|
1336 |
|
1337 |
+
#: includes/settings/tabs/wps-general.php:237
|
1338 |
msgid "Search Enginges"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
+
#: includes/settings/tabs/wps-general.php:242
|
1342 |
msgid ""
|
1343 |
"Disabling all search engines is not allowed, doing so will result in all "
|
1344 |
"search engines being active."
|
1345 |
msgstr ""
|
1346 |
|
1347 |
+
#: includes/settings/tabs/wps-general.php:257
|
1348 |
msgid "disable"
|
1349 |
msgstr ""
|
1350 |
|
1351 |
+
#: includes/settings/tabs/wps-general.php:258
|
|
|
1352 |
msgid "Disable %s from data collection and reporting."
|
1353 |
msgstr ""
|
1354 |
|
1355 |
+
#: includes/settings/tabs/wps-general.php:264
|
1356 |
msgid "Charts"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
+
#: includes/settings/tabs/wps-general.php:269
|
1360 |
msgid "Include totals"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
+
#: includes/settings/tabs/wps-general.php:275
|
1364 |
msgid ""
|
1365 |
"Add a total line to charts with multiple values, like the search engine "
|
1366 |
"referrals"
|
1367 |
msgstr ""
|
1368 |
|
1369 |
+
#: includes/settings/tabs/wps-general.php:280
|
1370 |
+
#: includes/settings/tabs/wps-general.php:285 schedule.php:161
|
|
|
1371 |
msgid "Statistical reporting"
|
1372 |
msgstr ""
|
1373 |
|
1374 |
+
#: includes/settings/tabs/wps-general.php:298
|
1375 |
msgid "Schedule"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
+
#: includes/settings/tabs/wps-general.php:322
|
1379 |
msgid "Select when receiving statistics report."
|
1380 |
msgstr ""
|
1381 |
|
1382 |
+
#: includes/settings/tabs/wps-general.php:328
|
1383 |
msgid "Send reports via"
|
1384 |
msgstr ""
|
1385 |
|
1386 |
+
#: includes/settings/tabs/wps-general.php:334
|
1387 |
msgid "Email"
|
1388 |
msgstr ""
|
1389 |
|
1390 |
+
#: includes/settings/tabs/wps-general.php:335
|
1391 |
msgid "SMS"
|
1392 |
msgstr ""
|
1393 |
|
1394 |
+
#: includes/settings/tabs/wps-general.php:337
|
1395 |
msgid "Type Select Get Status Report."
|
1396 |
msgstr ""
|
1397 |
|
1398 |
+
#: includes/settings/tabs/wps-general.php:340
|
1399 |
+
msgid "Note: To send SMS text messages please install the %s plugin."
|
|
|
|
|
|
|
1400 |
msgstr ""
|
1401 |
|
1402 |
+
#: includes/settings/tabs/wps-general.php:340
|
1403 |
+
msgid "WordPress SMS"
|
1404 |
+
msgstr ""
|
1405 |
+
|
1406 |
+
#: includes/settings/tabs/wps-general.php:347
|
1407 |
msgid "E-mail addresses"
|
1408 |
msgstr ""
|
1409 |
|
1410 |
+
#: includes/settings/tabs/wps-general.php:352
|
1411 |
msgid ""
|
1412 |
"A comma separated list of e-mail addresses to send the reports to if e-mail "
|
1413 |
"is selected above."
|
1414 |
msgstr ""
|
1415 |
|
1416 |
+
#: includes/settings/tabs/wps-general.php:358
|
1417 |
msgid "Report body"
|
1418 |
msgstr ""
|
1419 |
|
1420 |
+
#: includes/settings/tabs/wps-general.php:363
|
1421 |
msgid "Enter the contents of the reports received."
|
1422 |
msgstr ""
|
1423 |
|
1424 |
+
#: includes/settings/tabs/wps-general.php:365
|
1425 |
msgid ""
|
1426 |
"Any shortcode supported by your installation of WordPress, include all "
|
1427 |
"shortcodes for WP Statistics (see the admin manual for a list of codes "
|
1428 |
"available) are supported in the body of the message."
|
1429 |
msgstr ""
|
1430 |
|
1431 |
+
#: includes/settings/tabs/wps-general.php:368
|
1432 |
msgid ""
|
1433 |
"Input data codes are now deprecated and will be removed in a future version "
|
1434 |
"of WP Statistics, please use the appropriate shortcodes, they are included "
|
1435 |
"here only for historical purposes:"
|
1436 |
msgstr ""
|
1437 |
|
1438 |
+
#: includes/settings/tabs/wps-general.php:369 widget.php:38 widget.php:247
|
1439 |
+
#: wp-statistics.php:310
|
|
|
|
|
1440 |
msgid "User Online"
|
1441 |
msgstr ""
|
1442 |
|
1443 |
+
#: includes/settings/tabs/wps-general.php:370 widget.php:52 widget.php:253
|
|
|
|
|
1444 |
msgid "Today Visitor"
|
1445 |
msgstr ""
|
1446 |
|
1447 |
+
#: includes/settings/tabs/wps-general.php:371 widget.php:45 widget.php:250
|
|
|
|
|
1448 |
msgid "Today Visit"
|
1449 |
msgstr ""
|
1450 |
|
1451 |
+
#: includes/settings/tabs/wps-general.php:372 widget.php:66 widget.php:259
|
|
|
|
|
1452 |
msgid "Yesterday Visitor"
|
1453 |
msgstr ""
|
1454 |
|
1455 |
+
#: includes/settings/tabs/wps-general.php:373 widget.php:59
|
|
|
1456 |
msgid "Yesterday Visit"
|
1457 |
msgstr ""
|
1458 |
|
1459 |
+
#: includes/settings/tabs/wps-general.php:374 widget.php:101 widget.php:274
|
|
|
|
|
1460 |
msgid "Total Visitor"
|
1461 |
msgstr ""
|
1462 |
|
1463 |
+
#: includes/settings/tabs/wps-general.php:375 widget.php:94 widget.php:271
|
|
|
|
|
1464 |
msgid "Total Visit"
|
1465 |
msgstr ""
|
1466 |
|
1467 |
+
#: includes/settings/tabs/wps-geoip.php:17
|
1468 |
msgid "GeoIP settings"
|
1469 |
msgstr ""
|
1470 |
|
1471 |
+
#: includes/settings/tabs/wps-geoip.php:22
|
|
|
1472 |
msgid ""
|
1473 |
"IP location services provided by GeoLite2 data created by MaxMind, available "
|
1474 |
"from %s."
|
1475 |
msgstr ""
|
1476 |
|
1477 |
+
#: includes/settings/tabs/wps-geoip.php:32
|
1478 |
msgid "GeoIP collection"
|
1479 |
msgstr ""
|
1480 |
|
1481 |
+
#: includes/settings/tabs/wps-geoip.php:38
|
1482 |
msgid ""
|
1483 |
"For get more information and location (country) from visitor, enable this "
|
1484 |
"feature."
|
1485 |
msgstr ""
|
1486 |
|
1487 |
+
#: includes/settings/tabs/wps-geoip.php:44
|
1488 |
msgid "Update GeoIP Info"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
+
#: includes/settings/tabs/wps-geoip.php:49
|
1492 |
msgid "Download GeoIP Database"
|
1493 |
msgstr ""
|
1494 |
|
1495 |
+
#: includes/settings/tabs/wps-geoip.php:56
|
|
|
|
|
|
|
|
|
1496 |
msgid "Schedule monthly update of GeoIP DB"
|
1497 |
msgstr ""
|
1498 |
|
1499 |
+
#: includes/settings/tabs/wps-geoip.php:82
|
|
|
|
|
|
|
|
|
1500 |
msgid ""
|
1501 |
"Download of the GeoIP database will be scheduled for 2 days after the first "
|
1502 |
"Tuesday of the month."
|
1503 |
msgstr ""
|
1504 |
|
1505 |
+
#: includes/settings/tabs/wps-geoip.php:83
|
1506 |
msgid ""
|
1507 |
"This option will also download the database if the local filesize is less "
|
1508 |
"than 1k (which usually means the stub that comes with the plugin is still in "
|
1509 |
"place)."
|
1510 |
msgstr ""
|
1511 |
|
1512 |
+
#: includes/settings/tabs/wps-geoip.php:89
|
1513 |
msgid "Populate missing GeoIP after update of GeoIP DB"
|
1514 |
msgstr ""
|
1515 |
|
1516 |
+
#: includes/settings/tabs/wps-geoip.php:95
|
1517 |
msgid "Update any missing GeoIP data after downloading a new database."
|
1518 |
msgstr ""
|
1519 |
|
1520 |
+
#: includes/settings/tabs/wps-geoip.php:106
|
1521 |
msgid "GeoIP collection is disabled due to the following reasons:"
|
1522 |
msgstr ""
|
1523 |
|
1524 |
+
#: includes/settings/tabs/wps-geoip.php:109
|
|
|
1525 |
msgid ""
|
1526 |
"GeoIP collection requires PHP %s or above, it is currently disabled due to "
|
1527 |
"the installed PHP version being "
|
1528 |
msgstr ""
|
1529 |
|
1530 |
+
#: includes/settings/tabs/wps-geoip.php:114
|
1531 |
msgid ""
|
1532 |
"GeoIP collection requires the cURL PHP extension and it is not loaded on "
|
1533 |
"your version of PHP!"
|
1534 |
msgstr ""
|
1535 |
|
1536 |
+
#: includes/settings/tabs/wps-geoip.php:120
|
1537 |
msgid ""
|
1538 |
"GeoIP collection requires the BC Math PHP extension and it is not loaded on "
|
1539 |
"your version of PHP!"
|
1540 |
msgstr ""
|
1541 |
|
1542 |
+
#: includes/settings/tabs/wps-geoip.php:126
|
1543 |
msgid ""
|
1544 |
"PHP safe mode detected! GeoIP collection is not supported with PHP's safe "
|
1545 |
"mode enabled!"
|
1546 |
msgstr ""
|
1547 |
|
1548 |
+
#: includes/settings/tabs/wps-maintenance.php:20
|
1549 |
msgid ""
|
1550 |
"This will permanently delete data from the database each day, are you sure "
|
1551 |
"you want to enable this option?"
|
1552 |
msgstr ""
|
1553 |
|
1554 |
+
#: includes/settings/tabs/wps-maintenance.php:30
|
1555 |
msgid "Database Maintenance"
|
1556 |
msgstr ""
|
1557 |
|
1558 |
+
#: includes/settings/tabs/wps-maintenance.php:35
|
1559 |
msgid "Run a daily WP Cron job to prune the databases"
|
1560 |
msgstr ""
|
1561 |
|
1562 |
+
#: includes/settings/tabs/wps-maintenance.php:41
|
1563 |
msgid ""
|
1564 |
"A WP Cron job will be run daily to prune any data older than a set number of "
|
1565 |
"days."
|
1566 |
msgstr ""
|
1567 |
|
1568 |
+
#: includes/settings/tabs/wps-maintenance.php:47
|
1569 |
msgid "Prune data older than"
|
1570 |
msgstr ""
|
1571 |
|
1572 |
+
#: includes/settings/tabs/wps-maintenance.php:52
|
1573 |
msgid "Days"
|
1574 |
msgstr ""
|
1575 |
|
1576 |
+
#: includes/settings/tabs/wps-maintenance.php:53
|
1577 |
msgid ""
|
1578 |
"The number of days to keep statistics for. Minimum value is 30 days. "
|
1579 |
"Invalid values will disable the daily maintenance."
|
1580 |
msgstr ""
|
1581 |
|
1582 |
+
#: includes/settings/tabs/wps-overview-display.php:23
|
1583 |
+
#: includes/settings/tabs/wps-overview-display.php:32
|
1584 |
msgid "None"
|
1585 |
msgstr ""
|
1586 |
|
1587 |
+
#: includes/settings/tabs/wps-overview-display.php:24
|
1588 |
msgid "Summary Statistics"
|
1589 |
msgstr ""
|
1590 |
|
1591 |
+
#: includes/settings/tabs/wps-overview-display.php:28
|
1592 |
+
#: includes/settings/wps-settings.php:92
|
1593 |
msgid "About"
|
1594 |
msgstr ""
|
1595 |
|
1596 |
+
#: includes/settings/tabs/wps-overview-display.php:34
|
1597 |
msgid "Hits Statistical Chart"
|
1598 |
msgstr ""
|
1599 |
|
1600 |
+
#: includes/settings/tabs/wps-overview-display.php:35
|
1601 |
msgid "Search Engine Referrers Statistical Chart"
|
1602 |
msgstr ""
|
1603 |
|
1604 |
+
#: includes/settings/tabs/wps-overview-display.php:37
|
1605 |
msgid "Top Pages Visited"
|
1606 |
msgstr ""
|
1607 |
|
1608 |
+
#: includes/settings/tabs/wps-overview-display.php:75
|
1609 |
msgid "The following three items are global to all users."
|
1610 |
msgstr ""
|
1611 |
|
1612 |
+
#: includes/settings/tabs/wps-overview-display.php:80
|
1613 |
msgid "Map type"
|
1614 |
msgstr ""
|
1615 |
|
1616 |
+
#: includes/settings/tabs/wps-overview-display.php:86
|
1617 |
msgid "Google"
|
1618 |
msgstr ""
|
1619 |
|
1620 |
+
#: includes/settings/tabs/wps-overview-display.php:86
|
1621 |
msgid "JQVMap"
|
1622 |
msgstr ""
|
1623 |
|
1624 |
+
#: includes/settings/tabs/wps-overview-display.php:93
|
1625 |
msgid ""
|
1626 |
"The \"Google\" option will use Google's mapping service to plot the recent "
|
1627 |
"visitors (requires access to Google)."
|
1628 |
msgstr ""
|
1629 |
|
1630 |
+
#: includes/settings/tabs/wps-overview-display.php:94
|
1631 |
msgid ""
|
1632 |
"The \"JQVMap\" option will use JQVMap javascript mapping library to plot the "
|
1633 |
"recent visitors (requires no extenral services)."
|
1634 |
msgstr ""
|
1635 |
|
1636 |
+
#: includes/settings/tabs/wps-overview-display.php:100
|
1637 |
msgid "Disable map"
|
1638 |
msgstr ""
|
1639 |
|
1640 |
+
#: includes/settings/tabs/wps-overview-display.php:106
|
1641 |
msgid "Disable the map display"
|
1642 |
msgstr ""
|
1643 |
|
1644 |
+
#: includes/settings/tabs/wps-overview-display.php:112
|
1645 |
msgid "Get country location from Google"
|
1646 |
msgstr ""
|
1647 |
|
1648 |
+
#: includes/settings/tabs/wps-overview-display.php:118
|
1649 |
msgid ""
|
1650 |
"This feature may cause a performance degradation when viewing statistics and "
|
1651 |
"is only valid if the map type is set to \"Google\"."
|
1652 |
msgstr ""
|
1653 |
|
1654 |
+
#: includes/settings/tabs/wps-overview-display.php:123
|
1655 |
msgid "Widgets to Display"
|
1656 |
msgstr ""
|
1657 |
|
1658 |
+
#: includes/settings/tabs/wps-overview-display.php:132
|
1659 |
msgid ""
|
1660 |
"The following items are unique to each user. If you do not select the "
|
1661 |
"'About' widget it will automatically be displayed in the last positon of "
|
1662 |
"column A."
|
1663 |
msgstr ""
|
1664 |
|
1665 |
+
#: includes/settings/tabs/wps-overview-display.php:137
|
1666 |
msgid "Slot"
|
1667 |
msgstr ""
|
1668 |
|
1669 |
+
#: includes/settings/tabs/wps-overview-display.php:141
|
1670 |
msgid "Column A"
|
1671 |
msgstr ""
|
1672 |
|
1673 |
+
#: includes/settings/tabs/wps-overview-display.php:145
|
1674 |
msgid "Column B"
|
1675 |
msgstr ""
|
1676 |
|
1677 |
+
#: includes/settings/tabs/wps-overview-display.php:151
|
1678 |
msgid "Slot 1"
|
1679 |
msgstr ""
|
1680 |
|
1681 |
+
#: includes/settings/tabs/wps-overview-display.php:181
|
1682 |
msgid "Slot 2"
|
1683 |
msgstr ""
|
1684 |
|
1685 |
+
#: includes/settings/tabs/wps-overview-display.php:211
|
1686 |
msgid "Slot 3"
|
1687 |
msgstr ""
|
1688 |
|
1689 |
+
#: includes/settings/tabs/wps-overview-display.php:241
|
1690 |
msgid "Slot 4"
|
1691 |
msgstr ""
|
1692 |
|
1693 |
+
#: includes/settings/tabs/wps-overview-display.php:271
|
1694 |
msgid "Slot 5"
|
1695 |
msgstr ""
|
1696 |
|
1697 |
+
#: includes/settings/tabs/wps-overview-display.php:301
|
1698 |
msgid "Slot 6"
|
1699 |
msgstr ""
|
1700 |
|
1701 |
+
#: includes/settings/tabs/wps-overview-display.php:305
|
1702 |
msgid "N/A"
|
1703 |
msgstr ""
|
1704 |
|
1705 |
+
#: includes/settings/wps-settings.php:86
|
1706 |
msgid "General"
|
1707 |
msgstr ""
|
1708 |
|
1709 |
+
#: includes/settings/wps-settings.php:87 wp-statistics.php:248
|
|
|
1710 |
msgid "Overview"
|
1711 |
msgstr ""
|
1712 |
|
1713 |
+
#: includes/settings/wps-settings.php:88
|
1714 |
msgid "Access/Exclusions"
|
1715 |
msgstr ""
|
1716 |
|
1717 |
+
#: includes/settings/wps-settings.php:89
|
1718 |
msgid "GeoIP"
|
1719 |
msgstr ""
|
1720 |
|
1721 |
+
#: includes/settings/wps-settings.php:90
|
1722 |
+
msgid "browscap"
|
1723 |
+
msgstr ""
|
1724 |
+
|
1725 |
+
#: includes/settings/wps-settings.php:91
|
1726 |
msgid "Maintenance"
|
1727 |
msgstr ""
|
1728 |
|
1729 |
+
#: includes/settings/wps-settings.php:126
|
1730 |
msgid "Update"
|
1731 |
msgstr ""
|
1732 |
|
1733 |
+
#: manual/manual.php:29
|
|
|
1734 |
msgid "Manual not found: %s"
|
1735 |
msgstr ""
|
1736 |
|
1737 |
+
#: manual/manual.php:39
|
|
|
1738 |
msgid "Invalid file type selected: %s"
|
1739 |
msgstr ""
|
1740 |
|
1741 |
+
#: schedule.php:10
|
1742 |
msgid "Once Weekly"
|
1743 |
msgstr ""
|
1744 |
|
1745 |
+
#: schedule.php:17
|
1746 |
msgid "Once Every 2 Weeks"
|
1747 |
msgstr ""
|
1748 |
|
1749 |
+
#: schedule.php:24
|
1750 |
msgid "Once Every 4 Weeks"
|
1751 |
msgstr ""
|
1752 |
|
1753 |
+
#: widget.php:14 wp-statistics.php:245
|
|
|
1754 |
msgid "Statistics"
|
1755 |
msgstr ""
|
1756 |
|
1757 |
+
#: widget.php:15
|
1758 |
msgid "Show site stats in sidebar."
|
1759 |
msgstr ""
|
1760 |
|
1761 |
+
#: widget.php:73 widget.php:262
|
|
|
1762 |
msgid "Week Visit"
|
1763 |
msgstr ""
|
1764 |
|
1765 |
+
#: widget.php:80 widget.php:265
|
|
|
1766 |
msgid "Month Visit"
|
1767 |
msgstr ""
|
1768 |
|
1769 |
+
#: widget.php:87 widget.php:268
|
|
|
1770 |
msgid "Years Visit"
|
1771 |
msgstr ""
|
1772 |
|
1773 |
+
#: widget.php:108 widget.php:277
|
|
|
1774 |
msgid "Total Page Views"
|
1775 |
msgstr ""
|
1776 |
|
1777 |
+
#: widget.php:116
|
1778 |
msgid "Search Engine referred"
|
1779 |
msgstr ""
|
1780 |
|
1781 |
+
#: widget.php:123 widget.php:300
|
|
|
1782 |
msgid "Total Posts"
|
1783 |
msgstr ""
|
1784 |
|
1785 |
+
#: widget.php:130 widget.php:303
|
|
|
1786 |
msgid "Total Pages"
|
1787 |
msgstr ""
|
1788 |
|
1789 |
+
#: widget.php:137 widget.php:306
|
|
|
1790 |
msgid "Total Comments"
|
1791 |
msgstr ""
|
1792 |
|
1793 |
+
#: widget.php:144 widget.php:309
|
|
|
1794 |
msgid "Total Spams"
|
1795 |
msgstr ""
|
1796 |
|
1797 |
+
#: widget.php:151 widget.php:312
|
|
|
1798 |
msgid "Total Users"
|
1799 |
msgstr ""
|
1800 |
|
1801 |
+
#: widget.php:158 widget.php:315
|
|
|
1802 |
msgid "Average Posts"
|
1803 |
msgstr ""
|
1804 |
|
1805 |
+
#: widget.php:165 widget.php:318
|
|
|
1806 |
msgid "Average Comments"
|
1807 |
msgstr ""
|
1808 |
|
1809 |
+
#: widget.php:172 widget.php:321
|
|
|
1810 |
msgid "Average Users"
|
1811 |
msgstr ""
|
1812 |
|
1813 |
+
#: widget.php:179 widget.php:324
|
|
|
1814 |
msgid "Last Post Date"
|
1815 |
msgstr ""
|
1816 |
|
1817 |
+
#: widget.php:240
|
1818 |
msgid "Name"
|
1819 |
msgstr ""
|
1820 |
|
1821 |
+
#: widget.php:244
|
1822 |
msgid "Items"
|
1823 |
msgstr ""
|
1824 |
|
1825 |
+
#: widget.php:256 wp-statistics.php:334
|
|
|
1826 |
msgid "Yesterday visit"
|
1827 |
msgstr ""
|
1828 |
|
1829 |
+
#: widget.php:280
|
1830 |
msgid "Search Engine Referred"
|
1831 |
msgstr ""
|
1832 |
|
1833 |
+
#: widget.php:283
|
1834 |
msgid "Select type of search engine"
|
1835 |
msgstr ""
|
1836 |
|
1837 |
+
#: wp-statistics.php:27
|
1838 |
+
msgid ""
|
1839 |
+
"ERROR: WP Statistics has detected an unsupported version of PHP, WP "
|
1840 |
+
"Statistics will not function without PHP Version "
|
1841 |
+
msgstr ""
|
1842 |
+
|
1843 |
+
#: wp-statistics.php:27
|
1844 |
+
msgid " or higher!"
|
1845 |
+
msgstr ""
|
1846 |
+
|
1847 |
+
#. Plugin Name of the plugin/theme
|
1848 |
+
#: wp-statistics.php:38
|
1849 |
msgid "WP Statistics"
|
1850 |
msgstr ""
|
1851 |
|
1852 |
+
#. Description of the plugin/theme
|
1853 |
+
#: wp-statistics.php:39
|
1854 |
msgid "Complete statistics for your WordPress site."
|
1855 |
msgstr ""
|
1856 |
|
1857 |
+
#: wp-statistics.php:81
|
|
|
1858 |
msgid ""
|
1859 |
+
"Online user tracking in WP Statistics is not enabled, please go to %s and "
|
1860 |
+
"enable it."
|
1861 |
+
msgstr ""
|
1862 |
+
|
1863 |
+
#: wp-statistics.php:81 wp-statistics.php:84 wp-statistics.php:87
|
1864 |
+
msgid "setting page"
|
1865 |
msgstr ""
|
1866 |
|
1867 |
+
#: wp-statistics.php:84
|
|
|
1868 |
msgid ""
|
1869 |
+
"Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
|
|
|
1870 |
msgstr ""
|
1871 |
|
1872 |
+
#: wp-statistics.php:87
|
|
|
1873 |
msgid ""
|
1874 |
+
"Visitor tracking in WP Statistics is not enabled, please go to %s and enable "
|
1875 |
+
"it."
|
1876 |
msgstr ""
|
1877 |
|
1878 |
+
#: wp-statistics.php:90
|
|
|
1879 |
msgid ""
|
1880 |
+
"GeoIP collection is not active, please go to %s and enable this feature."
|
|
|
1881 |
msgstr ""
|
1882 |
|
1883 |
+
#: wp-statistics.php:90
|
1884 |
+
msgid "Setting page > GeoIP"
|
1885 |
+
msgstr ""
|
1886 |
+
|
1887 |
+
#: wp-statistics.php:152 wp-statistics.php:262
|
1888 |
msgid "Settings"
|
1889 |
msgstr ""
|
1890 |
|
1891 |
+
#: wp-statistics.php:164
|
1892 |
msgid "Click here to visit the plugin on WordPress.org"
|
1893 |
msgstr ""
|
1894 |
|
1895 |
+
#: wp-statistics.php:164
|
1896 |
msgid "Visit WordPress.org page"
|
1897 |
msgstr ""
|
1898 |
|
1899 |
+
#: wp-statistics.php:167
|
1900 |
msgid "Click here to rate and review this plugin on WordPress.org"
|
1901 |
msgstr ""
|
1902 |
|
1903 |
+
#: wp-statistics.php:167
|
1904 |
msgid "Rate this plugin"
|
1905 |
msgstr ""
|
1906 |
|
1907 |
+
#: wp-statistics.php:176 wp-statistics.php:253
|
|
|
1908 |
msgid "Hits"
|
1909 |
msgstr ""
|
1910 |
|
1911 |
+
#: wp-statistics.php:211
|
1912 |
msgid "WP Statistics - Hits"
|
1913 |
msgstr ""
|
1914 |
|
1915 |
+
#: wp-statistics.php:255
|
1916 |
msgid "Referers"
|
1917 |
msgstr ""
|
1918 |
|
1919 |
+
#: wp-statistics.php:256
|
1920 |
msgid "Searches"
|
1921 |
msgstr ""
|
1922 |
|
1923 |
+
#: wp-statistics.php:257
|
1924 |
msgid "Search Words"
|
1925 |
msgstr ""
|
1926 |
|
1927 |
+
#: wp-statistics.php:261
|
1928 |
msgid "Optimization"
|
1929 |
msgstr ""
|
1930 |
|
1931 |
+
#: wp-statistics.php:266
|
1932 |
msgid "Manual"
|
1933 |
msgstr ""
|
1934 |
|
1935 |
+
#: wp-statistics.php:316
|
1936 |
msgid "Today visitor"
|
1937 |
msgstr ""
|
1938 |
|
1939 |
+
#: wp-statistics.php:322
|
1940 |
msgid "Today visit"
|
1941 |
msgstr ""
|
1942 |
|
1943 |
+
#: wp-statistics.php:328
|
1944 |
msgid "Yesterday visitor"
|
1945 |
msgstr ""
|
1946 |
|
1947 |
+
#: wp-statistics.php:340
|
1948 |
msgid "View Stats"
|
1949 |
msgstr ""
|
1950 |
|
1951 |
+
#: wp-statistics.php:364
|
1952 |
msgid "Download ODF file"
|
1953 |
msgstr ""
|
1954 |
|
1955 |
+
#: wp-statistics.php:365
|
1956 |
msgid "Download HTML file"
|
1957 |
msgstr ""
|
1958 |
|
1959 |
+
#: wp-statistics.php:369
|
1960 |
msgid "Manual file not found."
|
1961 |
msgstr ""
|
1962 |
|
1963 |
+
#: wp-statistics.php:444 wp-statistics.php:544 wp-statistics.php:815
|
|
|
|
|
1964 |
msgid "You do not have sufficient permissions to access this page."
|
1965 |
msgstr ""
|
1966 |
|
1967 |
+
#: wp-statistics.php:455
|
1968 |
msgid "Table plugin does not exist! Please disable and re-enable the plugin."
|
1969 |
msgstr ""
|
1970 |
|
1971 |
+
#: wp-statistics.php:599
|
|
|
1972 |
msgid "Error downloading GeoIP database from: %s - %s"
|
1973 |
msgstr ""
|
1974 |
|
1975 |
+
#: wp-statistics.php:610
|
|
|
1976 |
msgid "Error could not open downloaded GeoIP database for reading: %s"
|
1977 |
msgstr ""
|
1978 |
|
1979 |
+
#: wp-statistics.php:617
|
|
|
1980 |
msgid "Error could not open destination GeoIP database for writing %s"
|
1981 |
msgstr ""
|
1982 |
|
1983 |
+
#: wp-statistics.php:633
|
1984 |
msgid "GeoIP Database updated successfully!"
|
1985 |
msgstr ""
|
1986 |
+
|
1987 |
+
#: wp-statistics.php:706
|
1988 |
+
msgid "Error downloading browscap database from: %s - %s"
|
1989 |
+
msgstr ""
|
1990 |
+
|
1991 |
+
#: wp-statistics.php:794
|
1992 |
+
msgid "browscap database updated successfully!"
|
1993 |
+
msgstr ""
|
1994 |
+
|
1995 |
+
#: wp-statistics.php:802
|
1996 |
+
msgid "browscap already at current version!"
|
1997 |
+
msgstr ""
|
1998 |
+
|
1999 |
+
#. Plugin URI of the plugin/theme
|
2000 |
+
#. Author URI of the plugin/theme
|
2001 |
+
msgid "http://wp-statistics.com/"
|
2002 |
+
msgstr ""
|
2003 |
+
|
2004 |
+
#. Author of the plugin/theme
|
2005 |
+
msgid "Mostafa Soufi & Greg Ross"
|
2006 |
+
msgstr ""
|
languages/wp-statistics-ar.mo
DELETED
Binary file
|
languages/wp-statistics-ar.po
DELETED
@@ -1,2083 +0,0 @@
|
|
1 |
-
# Translation of Wordpress Statistics in Arabic
|
2 |
-
# This file is distributed under the same license as the Wordpress Statistics package.
|
3 |
-
msgid ""
|
4 |
-
msgstr ""
|
5 |
-
"PO-Revision-Date: 2014-09-12 15:12+0330\n"
|
6 |
-
"MIME-Version: 1.0\n"
|
7 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
-
"Content-Transfer-Encoding: 8bit\n"
|
9 |
-
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
|
10 |
-
"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
11 |
-
"X-Generator: Poedit 1.6.5\n"
|
12 |
-
"Project-Id-Version: Wordpress Statistics\n"
|
13 |
-
"POT-Creation-Date: \n"
|
14 |
-
"Last-Translator: \n"
|
15 |
-
"Language-Team: \n"
|
16 |
-
"Language: ar\n"
|
17 |
-
|
18 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:97
|
19 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:94
|
20 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:65
|
21 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:59
|
22 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:22
|
23 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:25
|
24 |
-
msgid "#hash#"
|
25 |
-
msgstr "#هاش#"
|
26 |
-
|
27 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:4
|
28 |
-
msgid ""
|
29 |
-
"This will replace all IP addresses in the database with hash values and "
|
30 |
-
"cannot be undo, are you sure?"
|
31 |
-
msgstr ""
|
32 |
-
"سيؤدي ذلك إلى استبدال كافة عناوين IP في قاعدة البيانات مع القيم هاش ولا يمكن "
|
33 |
-
"التراجع، هل أنت متأكد؟"
|
34 |
-
|
35 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:72
|
36 |
-
msgid ""
|
37 |
-
"Updates any unknown location data in the database, this may take a while"
|
38 |
-
msgstr ""
|
39 |
-
"تحديث أي بيانات عن مواقع مجهولة في قاعدة البيانات, هذا قد يستغرق بعض الوقت"
|
40 |
-
|
41 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:77
|
42 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:56
|
43 |
-
msgid "IP Addresses"
|
44 |
-
msgstr "عناوين IP"
|
45 |
-
|
46 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:82
|
47 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:61
|
48 |
-
msgid "Hash IP Addresses"
|
49 |
-
msgstr "هاش عناوين IP"
|
50 |
-
|
51 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:87
|
52 |
-
msgid ""
|
53 |
-
"Replace IP addresses in the database with hash values, you will not be able "
|
54 |
-
"to recover the IP addresses in the future to populate location information "
|
55 |
-
"afterwards and this may take a while"
|
56 |
-
msgstr ""
|
57 |
-
"استبدال عناوين IP في قاعدة البيانات مع قيم التجزئة، فإنك لن تكون قادرا على "
|
58 |
-
"استرداد عناوين IP في المستقبل لتجميع معلومات الموقع بعد ذلك وهذا قد يستغرق "
|
59 |
-
"بعض الوقت"
|
60 |
-
|
61 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:43
|
62 |
-
msgid "IP Addresses replaced with hash values."
|
63 |
-
msgstr "عناوين IP مع استبدال قيم التجزئة."
|
64 |
-
|
65 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:149
|
66 |
-
msgid "Force robot list update after upgrades"
|
67 |
-
msgstr "قائمة تحديث فرقة الروبوت بعد الترقيات"
|
68 |
-
|
69 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:152
|
70 |
-
msgid ""
|
71 |
-
"Force the robot list to be reset to the default after an update to WP "
|
72 |
-
"Statistics takes place. Note if this option is enabled any custom robots "
|
73 |
-
"you have added to the list will be lost."
|
74 |
-
msgstr ""
|
75 |
-
"إجبار قائمة الروبوت لإعادة تعيين إلى الافتراضي بعد تحديث احصائيات ووردبريس "
|
76 |
-
"لتأخذ مكان. ملاحظة إذا تم تمكين هذا الخيار أي الروبوتات المخصصة التي قمت "
|
77 |
-
"بإضافتها إلى القائمة سوف تضيع."
|
78 |
-
|
79 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:40
|
80 |
-
msgid "This will delete the manual when you save the settings, are you sure?"
|
81 |
-
msgstr "سيتم حذف هذا الدليل عند حفظ الإعدادات، هل أنت متأكد؟"
|
82 |
-
|
83 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:67
|
84 |
-
msgid ""
|
85 |
-
"BETA: This feature will not store IP addresses in the database but instead "
|
86 |
-
"used a unique hash. The \"Store entire user agent string\" setting will be "
|
87 |
-
"disabled if this is selected. You will not be able to recover the IP "
|
88 |
-
"addresses in the future to recover location information if this is enabled."
|
89 |
-
msgstr ""
|
90 |
-
"نسخة تجريبية: هذه الميزة لن تقوم بتخزين عناوين IP في قاعدة البيانات ولكن "
|
91 |
-
"بدلا من ذلك يستخدم تجزئة فريدة من نوعها. سيتم تعطيل الإعداد \"تخزين سلسلة "
|
92 |
-
"عامل المستخدم بأكمله\" إذا تم تحديد هذا. فلن تكون قادرة على استرداد عناوين "
|
93 |
-
"IP في المستقبل لاسترداد معلومات الموقع عند تمكين هذا."
|
94 |
-
|
95 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:220
|
96 |
-
msgid ""
|
97 |
-
"By default WP Statistics displays an alert if any of the core features are "
|
98 |
-
"disabled on every admin page, this option will disable these notices."
|
99 |
-
msgstr ""
|
100 |
-
"افتراضيا احصائيات ووردبريس يعرض تنبيها إذا تم تعطيل أي من الميزات الأساسية "
|
101 |
-
"في كل صفحة مشرف، هذا الخيار يقوم بتعطيل هذه الإشعارات."
|
102 |
-
|
103 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:226
|
104 |
-
msgid "Delete the manual"
|
105 |
-
msgstr "حذف الدليل"
|
106 |
-
|
107 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:232
|
108 |
-
msgid ""
|
109 |
-
"By default WP Statistics stores the admin manual in the plugin directory (~5 "
|
110 |
-
"meg), if this option is enabled it will be deleted now and during upgrades "
|
111 |
-
"in the future."
|
112 |
-
msgstr ""
|
113 |
-
"افتراضيا احصائيات ووردبريس يخزن دليل المشرف في الدليل المساعد (~ 5 ميج)، إذا "
|
114 |
-
"تم تمكين هذا الخيار سيتم حذفه الآن وخلال الترقيات في المستقبل."
|
115 |
-
|
116 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:5
|
117 |
-
msgid "Database Index"
|
118 |
-
msgstr "مؤشر قاعدة البيانات"
|
119 |
-
|
120 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:24
|
121 |
-
msgid ""
|
122 |
-
"Older installs of WP Statistics allow for duplicate entires in the visitors "
|
123 |
-
"table in a corner case. Newer installs protect against this with a unique "
|
124 |
-
"index on the table. To create the index on the older installs duplicate "
|
125 |
-
"entries must be deleted first. Clicking \"Update Now\" will scan the "
|
126 |
-
"vistitors table, delete duplicate entries and add the index."
|
127 |
-
msgstr ""
|
128 |
-
"الإصدارات القديمة من احصائيات ووردبريس تسمح للإدخالات المكررة في جدول الزوار "
|
129 |
-
"في بعض الحالات. عند تثبيت إصدار أحدث يعمل على الوقاية من ذلك في الفهارس "
|
130 |
-
"الفريدة. لإنشاء فهرس على إصدار أقدم يجب حذف الإدخالات المكررة أولا. بالنقر "
|
131 |
-
"على \"التحديث الآن\" سوف تفحص جدول الزوار، وتحذف الإدخالات المكررة وإضافة "
|
132 |
-
"الفهرس."
|
133 |
-
|
134 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
135 |
-
msgid ""
|
136 |
-
"This operation could take a long time on installs with many rows in the "
|
137 |
-
"visitors table."
|
138 |
-
msgstr ""
|
139 |
-
"هذه العملية يمكن أن تستغرق وقتا طويلا لتثبيت العديد من الصفوف في جدول الزوار."
|
140 |
-
|
141 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:30
|
142 |
-
msgid ""
|
143 |
-
"Older installs of WP Statistics allow for duplicate entires in the visitors "
|
144 |
-
"table in a corner case. Newer installs protect against this with a unique "
|
145 |
-
"index on the table."
|
146 |
-
msgstr ""
|
147 |
-
"الإصدارات القديمة من احصائيات ووردبريس تسمح للإدخالات المكررة في جدول الزوار "
|
148 |
-
"في بعض الحالات. عند تثبيت أحدث إصدار سيعمل على الوقاية من ذلك في الفهارس "
|
149 |
-
"الفريدة."
|
150 |
-
|
151 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:31
|
152 |
-
msgid ""
|
153 |
-
"Congradulations, your installation is already up to date, nothing to do."
|
154 |
-
msgstr "تهانينا، انت بالفعل قمت بتثبيت البيانات، لايوجد ما نقوم به."
|
155 |
-
|
156 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:118
|
157 |
-
msgid "Database"
|
158 |
-
msgstr "قاعدة البيانات"
|
159 |
-
|
160 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:298
|
161 |
-
msgid "Schedule"
|
162 |
-
msgstr "الجدول"
|
163 |
-
|
164 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:328
|
165 |
-
msgid "Send reports via"
|
166 |
-
msgstr "إرسال التقارير عبر"
|
167 |
-
|
168 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:347
|
169 |
-
msgid "E-mail addresses"
|
170 |
-
msgstr "عناوين البريد الإلكتروني"
|
171 |
-
|
172 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:352
|
173 |
-
msgid ""
|
174 |
-
"A comma separated list of e-mail addresses to send the reports to if e-mail "
|
175 |
-
"is selected above."
|
176 |
-
msgstr ""
|
177 |
-
"أفصل بين قائمة عناوين البريد الإلكتروني بفاصلة في حال تحديد عناوين أعلاه."
|
178 |
-
|
179 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:358
|
180 |
-
msgid "Report body"
|
181 |
-
msgstr "تقرير الهيئة"
|
182 |
-
|
183 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:75
|
184 |
-
msgid "The following three items are global to all users."
|
185 |
-
msgstr "البنود الثلاثة التالية هي عالمية لجميع المستخدمين."
|
186 |
-
|
187 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:80
|
188 |
-
msgid "Map type"
|
189 |
-
msgstr "نوع الخريطة"
|
190 |
-
|
191 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:86
|
192 |
-
msgid "JQVMap"
|
193 |
-
msgstr "JQVMap"
|
194 |
-
|
195 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:93
|
196 |
-
msgid ""
|
197 |
-
"The \"Google\" option will use Google's mapping service to plot the recent "
|
198 |
-
"visitors (requires access to Google)."
|
199 |
-
msgstr ""
|
200 |
-
"(يتطلب الوصول إلى جوجل) الخيار يتوجب استخدام خدمة خرائط جوجل لرسم زوار مؤخرا."
|
201 |
-
|
202 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:94
|
203 |
-
msgid ""
|
204 |
-
"The \"JQVMap\" option will use JQVMap javascript mapping library to plot the "
|
205 |
-
"recent visitors (requires no extenral services)."
|
206 |
-
msgstr ""
|
207 |
-
"أن خيار \"JQVMap\" سوف يستخدم الجافا سكربت لعرض مكتبة خرائط رسم الزوار "
|
208 |
-
"مؤخرا. (لا يتطلب أي خدمات)"
|
209 |
-
|
210 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:118
|
211 |
-
msgid ""
|
212 |
-
"This feature may cause a performance degradation when viewing statistics and "
|
213 |
-
"is only valid if the map type is set to \"Google\"."
|
214 |
-
msgstr ""
|
215 |
-
"قد تؤدي هذه الميزة تدهور الأداء عند عرض الإحصاءات وصالحة فقط إذا تم تعيين "
|
216 |
-
"نوع الخريطة لـ\"جوجل\"."
|
217 |
-
|
218 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:50
|
219 |
-
msgid "Browsers by type"
|
220 |
-
msgstr "المتصفحات حسب النوع"
|
221 |
-
|
222 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:133
|
223 |
-
msgid "Browsers by platform"
|
224 |
-
msgstr "المتصفحات حسب المنصة"
|
225 |
-
|
226 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:95
|
227 |
-
msgid "Excluded hits in the last"
|
228 |
-
msgstr "استبعاد الفعالية في الأخير"
|
229 |
-
|
230 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:36
|
231 |
-
msgid "Hits Statistics Chart"
|
232 |
-
msgstr "الرسم البياني لاحصائيات الفعالية"
|
233 |
-
|
234 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:67
|
235 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:39
|
236 |
-
msgid "Hits in the last"
|
237 |
-
msgstr "الفعالية في الأخير"
|
238 |
-
|
239 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:30
|
240 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:16
|
241 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:36
|
242 |
-
msgid "Latest Search Words"
|
243 |
-
msgstr "أحدث كلمات البحث"
|
244 |
-
|
245 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:62
|
246 |
-
msgid "Latest Search Word Statistics"
|
247 |
-
msgstr "أحدث الإحصائيات - كلمة البحث"
|
248 |
-
|
249 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:61
|
250 |
-
msgid "Recent Visitor Statistics"
|
251 |
-
msgstr "احصائيات الزوار الأخيرة"
|
252 |
-
|
253 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:9
|
254 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:9
|
255 |
-
msgid "Today Visitors Map"
|
256 |
-
msgstr "خريطة زوار اليوم"
|
257 |
-
|
258 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:8
|
259 |
-
msgid "Summary"
|
260 |
-
msgstr "ملخص"
|
261 |
-
|
262 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:13
|
263 |
-
msgid "User(s) Online"
|
264 |
-
msgstr "الأعضاء المتصلين"
|
265 |
-
|
266 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:45
|
267 |
-
msgid "Top 10 Browsers"
|
268 |
-
msgstr "أفضل 10 متصفحات"
|
269 |
-
|
270 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:34
|
271 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:49
|
272 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:13
|
273 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:26
|
274 |
-
msgid "Top Referring Sites"
|
275 |
-
msgstr "أعلى المواقع اشارة"
|
276 |
-
|
277 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:73
|
278 |
-
msgid "Rate and Review"
|
279 |
-
msgstr "المعدل والاستعراض"
|
280 |
-
|
281 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:77
|
282 |
-
msgid "More Information"
|
283 |
-
msgstr "مزيد من المعلومات"
|
284 |
-
|
285 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:86
|
286 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:8
|
287 |
-
msgid ""
|
288 |
-
"This product includes GeoLite2 data created by MaxMind, available from %s."
|
289 |
-
msgstr ""
|
290 |
-
"يتضمن هذا المنتج GeoLite2 البيانات التي أنشأتها MaxMind، وهي متاحة من %s."
|
291 |
-
|
292 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:75
|
293 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:46
|
294 |
-
msgid "Search engine referrals in the last"
|
295 |
-
msgstr "إحالات محرك البحث في الماضي"
|
296 |
-
|
297 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:95
|
298 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:66
|
299 |
-
msgid "Number of referrals"
|
300 |
-
msgstr "عدد الإحالات"
|
301 |
-
|
302 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:13
|
303 |
-
msgid "Top 10 Pages"
|
304 |
-
msgstr "أفضل 10 صفحات"
|
305 |
-
|
306 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:17
|
307 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:36
|
308 |
-
msgid "Search Engine Referral Statistics"
|
309 |
-
msgstr "احصائيات إحالات محركات البحث"
|
310 |
-
|
311 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:4
|
312 |
-
msgid "WP Statistics V%s"
|
313 |
-
msgstr "نسخة الإحصائيات %s"
|
314 |
-
|
315 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:16
|
316 |
-
msgid "Visit Us Online"
|
317 |
-
msgstr "زيارة موقعنا على الانترنت"
|
318 |
-
|
319 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:20
|
320 |
-
msgid ""
|
321 |
-
"Come visit our great new <a href=\"http://wp-statistics.com\" target=\"_blank"
|
322 |
-
"\">website</a> and keep up to date on the latest news about WP Statistics."
|
323 |
-
msgstr ""
|
324 |
-
"قم بزيارة <a href=\"http://wp-statistics.com\" target=\"_blank\">موقعنا</a> "
|
325 |
-
"الجديد على الانترنت وواكب آخر الأخبار عن إضافة الاحصائيات."
|
326 |
-
|
327 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:24
|
328 |
-
msgid "Rate and Review at WordPress.org"
|
329 |
-
msgstr "قيم وأستعرض على WordPress.org"
|
330 |
-
|
331 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:28
|
332 |
-
msgid "Thanks for installing WP Statistics, we encourage you to submit a "
|
333 |
-
msgstr "شكرا لتثبيت إحصائيات ووردبريس، ونحن نشجعكم على تقديم"
|
334 |
-
|
335 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:28
|
336 |
-
msgid "rating and review"
|
337 |
-
msgstr "التقييم والاستعراض"
|
338 |
-
|
339 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:28
|
340 |
-
msgid "over at WordPress.org. Your feedback is greatly appreciated!"
|
341 |
-
msgstr "زيادة على WordPress.org. ملاحظاتك هي موضع تقدير!"
|
342 |
-
|
343 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:36
|
344 |
-
msgid ""
|
345 |
-
"WP Statistics supports internationalization and we encourage our users to "
|
346 |
-
"submit translations, please visit our <a href=\"http://teamwork.wp-parsi.com/"
|
347 |
-
"projects/wp-statistics\" target=\"_blank\">translation collaboration site</"
|
348 |
-
"a> to see the current status and <a href=\"http://wp-statistics.com/contact/"
|
349 |
-
"\" target=\"_blank\">drop us a line</a> if you would like to help."
|
350 |
-
msgstr ""
|
351 |
-
"احصائيات ووردبريس تدعم الترجمة ونحن نشجع مستخدمينا أن يقدموا الترجمات، يرجى "
|
352 |
-
"زيارة <a href=\"http://teamwork.wp-parsi.com/projects/wp-statistics\" target="
|
353 |
-
"\"_blank\">translation موقع الترجمة</a> لرؤية الترجمة في الوضع الحالي <a "
|
354 |
-
"href=\"http://wp-statistics.com/contact/\" target=\"_blank\">وتقديم "
|
355 |
-
"المساعدة</a> إذا كنت ترغب في ذلك."
|
356 |
-
|
357 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:45
|
358 |
-
msgid ""
|
359 |
-
"We're sorry you're having problem with WP Statistics and we're happy to help "
|
360 |
-
"out. Here are a few things to do before contacting us:"
|
361 |
-
msgstr ""
|
362 |
-
"نحن آسفون كنت تواجه مشكلة مع احصائيات ووردبريس ونحن سعداء للمساعدة. وهنا عدد "
|
363 |
-
"قليل من الأشياء يجب القيام به قبل الاتصال بنا:"
|
364 |
-
|
365 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:48
|
366 |
-
msgid ""
|
367 |
-
"Have you read the <a title=\"FAQs\" href=\"http://wp-statistics.com/?"
|
368 |
-
"page_id=19\" target=_blank>FAQs</a>?"
|
369 |
-
msgstr ""
|
370 |
-
"هل قراءة <a title=\"أسئلة وأجوبة\" href=\"http://wp-statistics.com/?"
|
371 |
-
"page_id=19\" target=_blank>أسئلة وأجوبة</a>؟"
|
372 |
-
|
373 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:49
|
374 |
-
msgid ""
|
375 |
-
"Have you read the <a title=\"Manual\" href=\"?page=wps_manual_menu\">manual</"
|
376 |
-
"a>?"
|
377 |
-
msgstr ""
|
378 |
-
"هل قرءاة <a title=\"الدليل\" href=\"?page=wps_manual_menu\">الدليل</a>؟"
|
379 |
-
|
380 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:50
|
381 |
-
msgid ""
|
382 |
-
"Have you search the <a href=\"http://wordpress.org/support/plugin/wp-"
|
383 |
-
"statistics\" target=\"_blank\">support forum</a> for a similar issue?"
|
384 |
-
msgstr ""
|
385 |
-
"هل بحثت في <a href=\"http://wordpress.org/support/plugin/wp-statistics\" "
|
386 |
-
"target=\"_blank\">منتدى الدعم</a> لمشكلة مشابهة؟"
|
387 |
-
|
388 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:53
|
389 |
-
msgid "And a few things to double-check:"
|
390 |
-
msgstr "و عدد قليل من التحقق المزدوج:"
|
391 |
-
|
392 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:56
|
393 |
-
msgid "How's your memory_limit in php.ini?"
|
394 |
-
msgstr "كيف memory_limit الخاصة بك في ملف php.ini؟"
|
395 |
-
|
396 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:57
|
397 |
-
msgid "Have you tried disabling any other plugins you may have installed?"
|
398 |
-
msgstr "هل حاولت تعطيل أي ملحقات أخرى عندما قمت بالتثبيت؟"
|
399 |
-
|
400 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:58
|
401 |
-
msgid "Have you tried using the default WordPress theme?"
|
402 |
-
msgstr "هل حاولت استخدام المظهر الافتراضي لووردبريس؟"
|
403 |
-
|
404 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:59
|
405 |
-
msgid "Have you double checked the plugin settings?"
|
406 |
-
msgstr "هل قمت بمضاعفة فحص إعدادات البرنامج المساعد؟"
|
407 |
-
|
408 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:60
|
409 |
-
msgid "Do you have all the required PHP extensions installed?"
|
410 |
-
msgstr "هل لديك جميع الملحقات المطلوبة لتثبيت PHP؟"
|
411 |
-
|
412 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:63
|
413 |
-
msgid "Still not having any luck?"
|
414 |
-
msgstr "هل ما زالت المشكلة قائمة؟"
|
415 |
-
|
416 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:63
|
417 |
-
msgid ""
|
418 |
-
"Then please open a new thread on the <a href=\"http://wordpress.org/support/"
|
419 |
-
"plugin/wp-statistics\" target=\"_blank\">WordPress.org support forum</a> and "
|
420 |
-
"we'll respond as soon as possible."
|
421 |
-
msgstr ""
|
422 |
-
"إذاً أفتح موضوع جديد في <a href=\"http://wordpress.org/support/plugin/wp-"
|
423 |
-
"statistics\" target=\"_blank\">منتدى الدعم الرسمي</a> وسنقوم بالرد في أقرب "
|
424 |
-
"وقت ممكن."
|
425 |
-
|
426 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:67
|
427 |
-
msgid ""
|
428 |
-
"Alternatively <a href=\"http://forum.wp-parsi.com/forum/17-%D9%85%D8%B4%DA"
|
429 |
-
"%A9%D9%84%D8%A7%D8%AA-%D8%AF%DB%8C%DA%AF%D8%B1/\" target=\"_blank\">Farsi</"
|
430 |
-
"a> support is available as well."
|
431 |
-
msgstr ""
|
432 |
-
"والدعم <a href=\"http://forum.wp-parsi.com/forum/17-%D9%85%D8%B4%DA"
|
433 |
-
"%A9%D9%84%D8%A7%D8%AA-%D8%AF%DB%8C%DA%AF%D8%B1/\" target=\"_blank\">الفارسي</"
|
434 |
-
"a> متاح ايضا."
|
435 |
-
|
436 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:17
|
437 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:35
|
438 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:128
|
439 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:169
|
440 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:193
|
441 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:303
|
442 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:333
|
443 |
-
msgid "Please select"
|
444 |
-
msgstr "الرجاء اختيار"
|
445 |
-
|
446 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:365
|
447 |
-
msgid ""
|
448 |
-
"Any shortcode supported by your installation of WordPress, include all "
|
449 |
-
"shortcodes for WP Statistics (see the admin manual for a list of codes "
|
450 |
-
"available) are supported in the body of the message."
|
451 |
-
msgstr ""
|
452 |
-
"أي رمز قصير مدعوم في تنصيب ووردبريس، مشمولة في احصائيات ووردبريس (انظر الى "
|
453 |
-
"دليل المشرف للحصول على قائمة الرموز المتوفرة) ومعتمدة في نص الرسالة. "
|
454 |
-
|
455 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:368
|
456 |
-
msgid ""
|
457 |
-
"Input data codes are now deprecated and will be removed in a future version "
|
458 |
-
"of WP Statistics, please use the appropriate shortcodes, they are included "
|
459 |
-
"here only for historical purposes:"
|
460 |
-
msgstr ""
|
461 |
-
"رموز البيانات المهملة المدخلة سيتم ازالتها في إصدار مستقبلي من احصائيات "
|
462 |
-
"ووردبريس، يرجى استخدام الرموز القصيرة المناسبة، يتم تضمينها هنا فقط لأغراض "
|
463 |
-
"تاريخية:"
|
464 |
-
|
465 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:22
|
466 |
-
msgid ""
|
467 |
-
"IP location services provided by GeoLite2 data created by MaxMind, available "
|
468 |
-
"from %s."
|
469 |
-
msgstr ""
|
470 |
-
"خدمات الموقع IP المقدمة من البيانات GeoLite2 التي أنشأتها MaxMind، وهي متاحة "
|
471 |
-
"من %s."
|
472 |
-
|
473 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:23
|
474 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:32
|
475 |
-
msgid "None"
|
476 |
-
msgstr "لا شيء"
|
477 |
-
|
478 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:28
|
479 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:85
|
480 |
-
msgid "About"
|
481 |
-
msgstr "حول"
|
482 |
-
|
483 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:123
|
484 |
-
msgid "Widgets to Display"
|
485 |
-
msgstr "المربعات الجانبية إلى العرض"
|
486 |
-
|
487 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:132
|
488 |
-
msgid ""
|
489 |
-
"The following items are unique to each user. If you do not select the "
|
490 |
-
"'About' widget it will automatically be displayed in the last positon of "
|
491 |
-
"column A."
|
492 |
-
msgstr ""
|
493 |
-
"البنود التالية هي فريدة من نوعها لكل مستخدم. إذا لم تقم بتحديد موقع المربع "
|
494 |
-
"الجانبي 'حول' سيتم تلقائيا إظهارها في الأخير من العمود A."
|
495 |
-
|
496 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:137
|
497 |
-
msgid "Slot"
|
498 |
-
msgstr "الشريحة"
|
499 |
-
|
500 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:141
|
501 |
-
msgid "Column A"
|
502 |
-
msgstr "العمود A"
|
503 |
-
|
504 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:145
|
505 |
-
msgid "Column B"
|
506 |
-
msgstr "العمود B"
|
507 |
-
|
508 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:151
|
509 |
-
msgid "Slot 1"
|
510 |
-
msgstr "الشريحة 1"
|
511 |
-
|
512 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:181
|
513 |
-
msgid "Slot 2"
|
514 |
-
msgstr "الشريحة 2"
|
515 |
-
|
516 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:211
|
517 |
-
msgid "Slot 3"
|
518 |
-
msgstr "الشريحة 3"
|
519 |
-
|
520 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:241
|
521 |
-
msgid "Slot 4"
|
522 |
-
msgstr "الشريحة 4"
|
523 |
-
|
524 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:271
|
525 |
-
msgid "Slot 5"
|
526 |
-
msgstr "الشريحة 5"
|
527 |
-
|
528 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:301
|
529 |
-
msgid "Slot 6"
|
530 |
-
msgstr "الشريحة 6"
|
531 |
-
|
532 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:305
|
533 |
-
msgid "N/A"
|
534 |
-
msgstr "N/A"
|
535 |
-
|
536 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:48
|
537 |
-
msgid "Search Engine Referred"
|
538 |
-
msgstr "محرك البحث المشار اليه"
|
539 |
-
|
540 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:10
|
541 |
-
msgid "Once Weekly"
|
542 |
-
msgstr "مرة واحدة أسبوعيا"
|
543 |
-
|
544 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:17
|
545 |
-
msgid "Once Every 2 Weeks"
|
546 |
-
msgstr "مرة واحدة كل أسبوعين"
|
547 |
-
|
548 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:24
|
549 |
-
msgid "Once Every 4 Weeks"
|
550 |
-
msgstr "مرة واحدة كل 4 أسابيع"
|
551 |
-
|
552 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:28
|
553 |
-
msgid "Complete statistics for your WordPress site."
|
554 |
-
msgstr "الإحصائيات الكاملة للموقع الخاص بك."
|
555 |
-
|
556 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:67
|
557 |
-
msgid ""
|
558 |
-
"Online user tracking in WP Statistics is not enabled, please go to <a href="
|
559 |
-
"\"%s\">setting page</a> and enable it."
|
560 |
-
msgstr ""
|
561 |
-
"لم يتم تمكين تتبع المستخدم عبر الإنترنت في احصائيات ووردبريس، يرجى الدخول "
|
562 |
-
"إلى <a href=\"%s\">صفحة الاعدادات</a> و تمكينه."
|
563 |
-
|
564 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:70
|
565 |
-
msgid ""
|
566 |
-
"Hit tracking in WP Statistics is not enabled, please go to <a href=\"%s"
|
567 |
-
"\">setting page</a> and enable it."
|
568 |
-
msgstr ""
|
569 |
-
"نقرات التتبع في احصائيات ووردبريس لم يتم تمكينها، يرجى الدخول إلى <a href="
|
570 |
-
"\"%s\">صفحة الاعدادات</a> و تمكينه."
|
571 |
-
|
572 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:73
|
573 |
-
msgid ""
|
574 |
-
"Visitor tracking in WP Statistics is not enabled, please go to <a href=\"%s"
|
575 |
-
"\">setting page</a> and enable it."
|
576 |
-
msgstr ""
|
577 |
-
"لم يتم تمكين تتبع الزائر في احصائيات ووردبريس، يرجى الدخول إلى <a href=\"%s"
|
578 |
-
"\">صفحة الاعدادات</a> و تمكينه."
|
579 |
-
|
580 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:76
|
581 |
-
msgid ""
|
582 |
-
"GeoIP collection is not active, please go to <a href=\"%s\">Setting page > "
|
583 |
-
"GeoIP</a> and enable this feature (GeoIP can detect the visitors country)"
|
584 |
-
msgstr ""
|
585 |
-
"مجموعة GeoIP غير نشطة، يرجى الدخول إلى صفحة إعداد <a href=\"%s\">صفحة "
|
586 |
-
"الاعدادات > GeoIP</a> و تمكين هذه الميزة (GeoIP يمكنه الكشف عن بلد آخر)"
|
587 |
-
|
588 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:65
|
589 |
-
msgid "About WP Statistics V%s"
|
590 |
-
msgstr "حول نسخة احصائيات ووردبريس %s"
|
591 |
-
|
592 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:72
|
593 |
-
msgid "Website"
|
594 |
-
msgstr "الموقع"
|
595 |
-
|
596 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:117
|
597 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:19
|
598 |
-
msgid "References"
|
599 |
-
msgstr "المراجع"
|
600 |
-
|
601 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:21
|
602 |
-
msgid "PHP Memory Limit"
|
603 |
-
msgstr "حد ذاكرة PHP"
|
604 |
-
|
605 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:26
|
606 |
-
msgid "The memory limit a script is allowed to consume, set in php.ini."
|
607 |
-
msgstr "حد الذاكرة المسموحبه في السكربت, محدد في php.ini."
|
608 |
-
|
609 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
|
610 |
-
msgid "WP Statistics"
|
611 |
-
msgstr "احصائيات ووردبريس"
|
612 |
-
|
613 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:146
|
614 |
-
msgid "Visit WordPress.org page"
|
615 |
-
msgstr "زيارة صفحة الووردبريس"
|
616 |
-
|
617 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:29
|
618 |
-
msgid "Page Trend for Post ID"
|
619 |
-
msgstr "صفحة الأكثر رواجاً بمعرف المشاركة"
|
620 |
-
|
621 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:48
|
622 |
-
msgid "Page Trend"
|
623 |
-
msgstr "الصفحة الأكثر رواجاً"
|
624 |
-
|
625 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:68
|
626 |
-
msgid "Page Trending Stats"
|
627 |
-
msgstr "احصائيات الصفحة الاكثر رواجاً"
|
628 |
-
|
629 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:32
|
630 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:43
|
631 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:54
|
632 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:65
|
633 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:76
|
634 |
-
msgid "Number of rows in the <code>%s</code> table"
|
635 |
-
msgstr "عدد الصفوف في الجدول <code>%s</code>"
|
636 |
-
|
637 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:97
|
638 |
-
msgid "Record exclusions"
|
639 |
-
msgstr "سجل الاستثناءات"
|
640 |
-
|
641 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:130
|
642 |
-
msgid "Robot list"
|
643 |
-
msgstr "قائمة الروبوت"
|
644 |
-
|
645 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:157
|
646 |
-
msgid "Excluded IP address list"
|
647 |
-
msgstr "قائمة عناوين IP المستبعدة"
|
648 |
-
|
649 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:160
|
650 |
-
msgid ""
|
651 |
-
"A list of IP addresses and subnet masks (one per line) to exclude from "
|
652 |
-
"statistics collection (both 192.168.0.0/24 and 192.168.0.0/255.255.255.0 "
|
653 |
-
"formats are accepted). To specify an IP address only, use a subnet value of "
|
654 |
-
"32 or 255.255.255.255."
|
655 |
-
msgstr ""
|
656 |
-
"قائمة عناوين IP وأقنعة الشبكة الفرعية (واحد في كل سطر) لاستبعاد من جميع "
|
657 |
-
"الإحصائيات (وتقبل الأشكال كل من 192.168.0.0/24 و "
|
658 |
-
"192.168.0.0/255.255.255.0 ). لتحديد عنوان IP فقط، استخدم قيمة الشبكة الفرعية "
|
659 |
-
"32 أو 255.255.255.255.255."
|
660 |
-
|
661 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:172
|
662 |
-
msgid "Excluded login page"
|
663 |
-
msgstr "استبعاد صفحة تسجيل الدخول"
|
664 |
-
|
665 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:179
|
666 |
-
msgid "Excluded admin pages"
|
667 |
-
msgstr "استبعاد الصفحات الإدارية"
|
668 |
-
|
669 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:72
|
670 |
-
msgid "Users Online"
|
671 |
-
msgstr "الإعضاء المتواجدين"
|
672 |
-
|
673 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:77
|
674 |
-
msgid "User online"
|
675 |
-
msgstr "المتواجدين الآن"
|
676 |
-
|
677 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:172
|
678 |
-
msgid "Track all pages"
|
679 |
-
msgstr "تتبع جميع الصفحات"
|
680 |
-
|
681 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:184
|
682 |
-
msgid "Disable hits column in post/pages list"
|
683 |
-
msgstr "تعطيل عمود النقرات في قائمة المقال/الصفحات"
|
684 |
-
|
685 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:195
|
686 |
-
msgid "Miscellaneous"
|
687 |
-
msgstr "متفرقات"
|
688 |
-
|
689 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:146
|
690 |
-
msgid "Click here to visit the plugin on WordPress.org"
|
691 |
-
msgstr "انقر هنا لزيارة صفحة الإضافة على WordPress.org"
|
692 |
-
|
693 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:149
|
694 |
-
msgid "Click here to rate and review this plugin on WordPress.org"
|
695 |
-
msgstr "أنقر هنا لمراجهة وتقييم الإضافة على WordPress.org"
|
696 |
-
|
697 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:149
|
698 |
-
msgid "Rate this plugin"
|
699 |
-
msgstr "ضع تقييمك لهذه الاضافة"
|
700 |
-
|
701 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:193
|
702 |
-
msgid "WP Statistics - Hits"
|
703 |
-
msgstr "احصائيات ووردبريس - الزيارات"
|
704 |
-
|
705 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:576
|
706 |
-
msgid "Error downloading GeoIP database from: %s - %s"
|
707 |
-
msgstr "خطأ تحميل قاعدة بيانات GeoIP من: %s - %s"
|
708 |
-
|
709 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:45
|
710 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:93
|
711 |
-
msgid "Total Page Views"
|
712 |
-
msgstr "مجموع مشاهدات الصفحة"
|
713 |
-
|
714 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:155
|
715 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:160
|
716 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:241
|
717 |
-
msgid "Pages"
|
718 |
-
msgstr "الصفحات"
|
719 |
-
|
720 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:248
|
721 |
-
msgid "Manual"
|
722 |
-
msgstr "الدليل"
|
723 |
-
|
724 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:344
|
725 |
-
msgid "Download ODF file"
|
726 |
-
msgstr "تحميل ملف ODF"
|
727 |
-
|
728 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:345
|
729 |
-
msgid "Download HTML file"
|
730 |
-
msgstr "تحميل ملف HTML"
|
731 |
-
|
732 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:349
|
733 |
-
msgid "Manual file not found."
|
734 |
-
msgstr "لم يتم العثور على ملف الدليل."
|
735 |
-
|
736 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:54
|
737 |
-
msgid "Exclusions Statistics"
|
738 |
-
msgstr "استثناءات الاحصائيات"
|
739 |
-
|
740 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:37
|
741 |
-
msgid "Top Pages Visited"
|
742 |
-
msgstr "أعلى الصفحات زيارة"
|
743 |
-
|
744 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:149
|
745 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:27
|
746 |
-
msgid "No page title found"
|
747 |
-
msgstr "لم يتم العثور على عنوان الصفحة"
|
748 |
-
|
749 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:13
|
750 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:121
|
751 |
-
msgid "Top Pages"
|
752 |
-
msgstr "أفضل الصفحات"
|
753 |
-
|
754 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:20
|
755 |
-
msgid "Top 5 Pages Trends"
|
756 |
-
msgstr "الصفحات الـ5 الأكثر رواجاً"
|
757 |
-
|
758 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:49
|
759 |
-
msgid "Top 5 Page Trending Stats"
|
760 |
-
msgstr "احصائيات الصفحات الـ5 الأكثر رواجاً"
|
761 |
-
|
762 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:88
|
763 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:69
|
764 |
-
msgid "Number of Hits"
|
765 |
-
msgstr "عدد الزيارات"
|
766 |
-
|
767 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/manual/manual.php:29
|
768 |
-
msgid "Manual not found: %s"
|
769 |
-
msgstr "الدليل لم يعثر على: %s"
|
770 |
-
|
771 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/manual/manual.php:39
|
772 |
-
msgid "Invalid file type selected: %s"
|
773 |
-
msgstr "نوع الملف المختار غير صالح: %s"
|
774 |
-
|
775 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:101
|
776 |
-
msgid "Search Engine referred"
|
777 |
-
msgstr "محرك البحث المشار"
|
778 |
-
|
779 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:47
|
780 |
-
msgid "Include Header Row"
|
781 |
-
msgstr "تضمين رأس الصف"
|
782 |
-
|
783 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:52
|
784 |
-
msgid "Include a header row as the first line of the exported file."
|
785 |
-
msgstr "تضمين صف الرأس كما في السطر الأول من الملف الذي تم تصديره."
|
786 |
-
|
787 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:113
|
788 |
-
msgid "PHP Safe Mode"
|
789 |
-
msgstr "الوضع الآمن PHP"
|
790 |
-
|
791 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:118
|
792 |
-
msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
|
793 |
-
msgstr "الوضع الآمن نشط. الكود GeoIP غير معتمد في الوضع الآمن."
|
794 |
-
|
795 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:106
|
796 |
-
msgid "GeoIP collection is disabled due to the following reasons:"
|
797 |
-
msgstr "تم تعطيل مجموعة GeoIP وذلك للأسباب التالية:"
|
798 |
-
|
799 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:126
|
800 |
-
msgid ""
|
801 |
-
"PHP safe mode detected! GeoIP collection is not supported with PHP's safe "
|
802 |
-
"mode enabled!"
|
803 |
-
msgstr ""
|
804 |
-
"تم الكشف عن الوضع الآمن في PHP! مجموعة GeoIP غير معتمدة عند تمكين الوضع "
|
805 |
-
"الآمن في PHP!"
|
806 |
-
|
807 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:214
|
808 |
-
msgid "Hide admin notices about non active features"
|
809 |
-
msgstr "اخفاء إشعارات المشرف حول الميزات غير نشطة"
|
810 |
-
|
811 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:237
|
812 |
-
msgid "Search Enginges"
|
813 |
-
msgstr "محرك البحث"
|
814 |
-
|
815 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:242
|
816 |
-
msgid ""
|
817 |
-
"Disabling all search engines is not allowed, doing so will result in all "
|
818 |
-
"search engines being active."
|
819 |
-
msgstr ""
|
820 |
-
"تعطيل جميع محركات البحث غير مسموح, سيؤدي ذلك الى تنشيط جميع محركات البحث."
|
821 |
-
|
822 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:257
|
823 |
-
msgid "disable"
|
824 |
-
msgstr "تعطيل"
|
825 |
-
|
826 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:258
|
827 |
-
msgid "Disable %s from data collection and reporting."
|
828 |
-
msgstr "تعطيل %s من جمع البيانات وإعداد التقارير."
|
829 |
-
|
830 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:135
|
831 |
-
msgid "cURL Version"
|
832 |
-
msgstr "إصدار cURL"
|
833 |
-
|
834 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:139
|
835 |
-
msgid "cURL not installed"
|
836 |
-
msgstr "cURL غير مثبت"
|
837 |
-
|
838 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:140
|
839 |
-
msgid ""
|
840 |
-
"The PHP cURL Extension version you are running. cURL is required for the "
|
841 |
-
"GeoIP code, if it is not installed GeoIP will be disabled."
|
842 |
-
msgstr ""
|
843 |
-
"نسخة الملحق PHP cURL تعمل. الملحق cURL مطلوب لعمل كود GeoIP, وإذا لم يتم "
|
844 |
-
"تثبيته يتم تعطيل GeoIP."
|
845 |
-
|
846 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:146
|
847 |
-
msgid "BC Math"
|
848 |
-
msgstr "BC Math"
|
849 |
-
|
850 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:150
|
851 |
-
msgid "Installed"
|
852 |
-
msgstr "مثبت"
|
853 |
-
|
854 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:150
|
855 |
-
msgid "Not installed"
|
856 |
-
msgstr "غير مثبت"
|
857 |
-
|
858 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:151
|
859 |
-
msgid ""
|
860 |
-
"If the PHP BC Math Extension is installed. BC Math is required for the "
|
861 |
-
"GeoIP code, if it is not installed GeoIP will be disabled."
|
862 |
-
msgstr ""
|
863 |
-
"إذا تم تثبيت الملحق PHP BC Math. فأن كود GeoIP مطلوب في BC Math, واذا لم "
|
864 |
-
"يتم تثبيته يتم تعطيل GeoIP."
|
865 |
-
|
866 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:114
|
867 |
-
msgid ""
|
868 |
-
"GeoIP collection requires the cURL PHP extension and it is not loaded on "
|
869 |
-
"your version of PHP!"
|
870 |
-
msgstr "مجموعة GeoIP تتطلب الملحق cURL PHP و هو غير مفعل على إصدار الـ PHP!"
|
871 |
-
|
872 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:120
|
873 |
-
msgid ""
|
874 |
-
"GeoIP collection requires the BC Math PHP extension and it is not loaded on "
|
875 |
-
"your version of PHP!"
|
876 |
-
msgstr "مجموعة GeoIP تتطلب الملحق BC Math PHP و هو غير مفعل على إصدار الـ PHP!"
|
877 |
-
|
878 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:26
|
879 |
-
msgid ""
|
880 |
-
"Unable to load the GeoIP database, make sure you have downloaded it in the "
|
881 |
-
"settings page."
|
882 |
-
msgstr ""
|
883 |
-
"غير قادر على تحميل قاعدة البيانات GeoIP، تأكد من أنك قمت بتنزيلها في صفحة "
|
884 |
-
"الإعدادات."
|
885 |
-
|
886 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:30
|
887 |
-
msgid "Database file does not exist."
|
888 |
-
msgstr "لا وجود لملف قاعدة البيانات."
|
889 |
-
|
890 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:59
|
891 |
-
msgid "Search for"
|
892 |
-
msgstr "البحث عن"
|
893 |
-
|
894 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:8
|
895 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:11
|
896 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:8
|
897 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:13
|
898 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:9
|
899 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:13
|
900 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:8
|
901 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:16
|
902 |
-
msgid "More"
|
903 |
-
msgstr "المزيد"
|
904 |
-
|
905 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:16
|
906 |
-
msgid "GeoIP File Info"
|
907 |
-
msgstr "معلومات ملف GeoIP"
|
908 |
-
|
909 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
910 |
-
msgid "File Date"
|
911 |
-
msgstr "ملف التاريخ"
|
912 |
-
|
913 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:34
|
914 |
-
msgid "The file date of the GeoIP database."
|
915 |
-
msgstr "تاريخ الملف من قاعدة البيانات GeoIP."
|
916 |
-
|
917 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:40
|
918 |
-
msgid "File Size"
|
919 |
-
msgstr "حجم الملف"
|
920 |
-
|
921 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:57
|
922 |
-
msgid "The file size of the GeoIP database."
|
923 |
-
msgstr "حجم ملف قاعدة البيانات GeoIP."
|
924 |
-
|
925 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:269
|
926 |
-
msgid "Include totals"
|
927 |
-
msgstr "تتضمن الاجماليات"
|
928 |
-
|
929 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:275
|
930 |
-
msgid ""
|
931 |
-
"Add a total line to charts with multiple values, like the search engine "
|
932 |
-
"referrals"
|
933 |
-
msgstr "إضافة سطر مجموع المخططات مع قيم متعددة، مثل إحالات محرك البحث"
|
934 |
-
|
935 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:100
|
936 |
-
msgid "Disable map"
|
937 |
-
msgstr "تعطيل الخريطة"
|
938 |
-
|
939 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:106
|
940 |
-
msgid "Disable the map display"
|
941 |
-
msgstr "تعطيل عرض الخريطة"
|
942 |
-
|
943 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:112
|
944 |
-
msgid "Get country location from Google"
|
945 |
-
msgstr "الحصول على موقع البلد من جوجل"
|
946 |
-
|
947 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:8
|
948 |
-
msgid ""
|
949 |
-
"Attention: Exclusion are not currently set to be recorded, the results below "
|
950 |
-
"may not reflect current statistics!"
|
951 |
-
msgstr ""
|
952 |
-
"تنبيه: لم يتم تعيين الاستثناءات حاليا ليتم تسجيلها، قد لا تستطيع عكس نتائج "
|
953 |
-
"الإحصائيات الحالية أدناه!"
|
954 |
-
|
955 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:115
|
956 |
-
msgid "Number of excluded hits"
|
957 |
-
msgstr "عدد الزيارات المستبعدة"
|
958 |
-
|
959 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:86
|
960 |
-
msgid ""
|
961 |
-
"Hint: manage_network = Super Admin Network, manage_options = Administrator, "
|
962 |
-
"edit_others_posts = Editor, publish_posts = Author, edit_posts = "
|
963 |
-
"Contributor, read = Everyone."
|
964 |
-
msgstr ""
|
965 |
-
"تلميح: manage_network = مسؤول, manage_options = مدير, edit_others_posts = "
|
966 |
-
"محرر, publish_posts = كاتب, edit_posts = مساهم, read = الجميع"
|
967 |
-
|
968 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:99
|
969 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:151
|
970 |
-
msgid "Enable"
|
971 |
-
msgstr "تمكين"
|
972 |
-
|
973 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:100
|
974 |
-
msgid ""
|
975 |
-
"This will record all the excluded hits in a separate table with the reasons "
|
976 |
-
"why it was excluded but no other information. This will generate a lot of "
|
977 |
-
"data but is useful if you want to see the total number of hits your site "
|
978 |
-
"gets, not just actual user visits."
|
979 |
-
msgstr ""
|
980 |
-
"يقوم هذا الخيار بتسجيل جميع النقرات المستبعدة في جدول منفصل مع أسباب "
|
981 |
-
"الأستبعاد، ولكن بدون معلومات أخرى. وهذا قد يولد الكثير من البيانات ولكن هو "
|
982 |
-
"مفيد إذا كنت تريد أن ترى العدد الكلي من المشاهدات التي يحصل عليها موقعك، "
|
983 |
-
"وليس فقط المستخدم الفعلي للموقع."
|
984 |
-
|
985 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:168
|
986 |
-
msgid "Site URL Exclusions"
|
987 |
-
msgstr "رابط الموقع المستثنى"
|
988 |
-
|
989 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:175
|
990 |
-
msgid "Exclude the login page for registering as a hit."
|
991 |
-
msgstr "استبعاد صفحة الدخول للتسجيل كنقرة."
|
992 |
-
|
993 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:182
|
994 |
-
msgid "Exclude the admin pages for registering as a hit."
|
995 |
-
msgstr "استبعاد الصفحات الادارية للتسجيل كنقرة."
|
996 |
-
|
997 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:93
|
998 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:236
|
999 |
-
msgid "Exclusions"
|
1000 |
-
msgstr "الاستثناءات"
|
1001 |
-
|
1002 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:68
|
1003 |
-
msgid "Total Exclusions: %s"
|
1004 |
-
msgstr "مجموع الاستثناءات: %s"
|
1005 |
-
|
1006 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:75
|
1007 |
-
msgid "Exclusions Statistical Chart"
|
1008 |
-
msgstr "الرسم البياني لإحصائيات الاستثناءات"
|
1009 |
-
|
1010 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:33
|
1011 |
-
msgid "Access Levels"
|
1012 |
-
msgstr "مستويات الوصول"
|
1013 |
-
|
1014 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:115
|
1015 |
-
msgid "Resources/Information"
|
1016 |
-
msgstr "الموارد/معلومات"
|
1017 |
-
|
1018 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:117
|
1019 |
-
msgid "Purging"
|
1020 |
-
msgstr "تطهير"
|
1021 |
-
|
1022 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:120
|
1023 |
-
msgid "Updates"
|
1024 |
-
msgstr "تحديثات"
|
1025 |
-
|
1026 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:82
|
1027 |
-
msgid "Access/Exclusions"
|
1028 |
-
msgstr "وصول/استثناءات"
|
1029 |
-
|
1030 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:84
|
1031 |
-
msgid "Maintenance"
|
1032 |
-
msgstr "صيانة"
|
1033 |
-
|
1034 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:115
|
1035 |
-
msgid "Update"
|
1036 |
-
msgstr "تحديث"
|
1037 |
-
|
1038 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:80
|
1039 |
-
msgid "General"
|
1040 |
-
msgstr "عام"
|
1041 |
-
|
1042 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:57
|
1043 |
-
msgid "Error, %s not emptied!"
|
1044 |
-
msgstr "خطأ, %s لم يتم التفريغ!"
|
1045 |
-
|
1046 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:118
|
1047 |
-
msgid "Data"
|
1048 |
-
msgstr "المعطيات"
|
1049 |
-
|
1050 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:145
|
1051 |
-
msgid "Purge records older than"
|
1052 |
-
msgstr "سجلات الضخ أقدم من"
|
1053 |
-
|
1054 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:151
|
1055 |
-
msgid ""
|
1056 |
-
"Deleted user statistics data older than the selected number of days. "
|
1057 |
-
"Minimum value is 30 days."
|
1058 |
-
msgstr ""
|
1059 |
-
"بيانات الاحصائيات المستخدم المحذوف أقدم من الرقم المحدد من الأيام. قيمة الحد "
|
1060 |
-
"الأدنى هو 30 يوما."
|
1061 |
-
|
1062 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:152
|
1063 |
-
msgid "Purge now!"
|
1064 |
-
msgstr "ضخ الآن!"
|
1065 |
-
|
1066 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:17
|
1067 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:27
|
1068 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:37
|
1069 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:47
|
1070 |
-
msgid ""
|
1071 |
-
"<code>%s</code> data older than <code>%s</code> days purged successfully."
|
1072 |
-
msgstr ""
|
1073 |
-
"بيانات <code>%s</code> مضى عليها أكثر من <code>%s</code> أيام ضخ بنجاح."
|
1074 |
-
|
1075 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:19
|
1076 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:29
|
1077 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:39
|
1078 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:49
|
1079 |
-
msgid "No records found to purge from <code>%s</code>!"
|
1080 |
-
msgstr "لاتوجد سجلات للضخ من <code>%s</code>!"
|
1081 |
-
|
1082 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:55
|
1083 |
-
msgid "Please select a value over 30 days."
|
1084 |
-
msgstr "يرجى تحديد قيمة أكثر من 30 يوما."
|
1085 |
-
|
1086 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:20
|
1087 |
-
msgid ""
|
1088 |
-
"This will permanently delete data from the database each day, are you sure "
|
1089 |
-
"you want to enable this option?"
|
1090 |
-
msgstr ""
|
1091 |
-
"سيؤدي ذلك إلى حذف البيانات من قاعدة البيانات بشكل دائم كل يوم، هل أنت متأكد "
|
1092 |
-
"من أنك تريد تمكين هذا الخيار؟"
|
1093 |
-
|
1094 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:30
|
1095 |
-
msgid "Database Maintenance"
|
1096 |
-
msgstr "صيانة قاعدة البيانات"
|
1097 |
-
|
1098 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:35
|
1099 |
-
msgid "Run a daily WP Cron job to prune the databases"
|
1100 |
-
msgstr "تشغيل مهام ووردبريس يوميا للضخ في قاعدة البيانات"
|
1101 |
-
|
1102 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:41
|
1103 |
-
msgid ""
|
1104 |
-
"A WP Cron job will be run daily to prune any data older than a set number of "
|
1105 |
-
"days."
|
1106 |
-
msgstr ""
|
1107 |
-
"سيتم تشغيل ألف وظيفة في مهام ووردبريس يوميا لضخ أي بيانات أقدم من العدد "
|
1108 |
-
"المحدد من الأيام."
|
1109 |
-
|
1110 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:47
|
1111 |
-
msgid "Prune data older than"
|
1112 |
-
msgstr "ضخ البيانات الأقدم من"
|
1113 |
-
|
1114 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:52
|
1115 |
-
msgid "Days"
|
1116 |
-
msgstr "أيام"
|
1117 |
-
|
1118 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:53
|
1119 |
-
msgid ""
|
1120 |
-
"The number of days to keep statistics for. Minimum value is 30 days. "
|
1121 |
-
"Invalid values will disable the daily maintenance."
|
1122 |
-
msgstr ""
|
1123 |
-
"عدد الأيام للحفاظ على الإحصاءات المتعلقة. قيمة الحد الأدنى هو 30 يوما. سيتم "
|
1124 |
-
"تعطيل الصيانة اليومية في حال ادخال قيم غير صالحة."
|
1125 |
-
|
1126 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:106
|
1127 |
-
msgid "Date: <code dir=\"ltr\">%s</code></code>"
|
1128 |
-
msgstr "التاريخ: <code dir=\"rtl\">%s</code></code>"
|
1129 |
-
|
1130 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:110
|
1131 |
-
msgid "Time: <code dir=\"ltr\">%s</code>"
|
1132 |
-
msgstr "الوقت: <code dir=\"rtl\">%s</code></code>"
|
1133 |
-
|
1134 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:83
|
1135 |
-
msgid "GeoIP"
|
1136 |
-
msgstr "GeoIP"
|
1137 |
-
|
1138 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:64
|
1139 |
-
msgid "Next update will be"
|
1140 |
-
msgstr "التحديث القادم سيكون في"
|
1141 |
-
|
1142 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:109
|
1143 |
-
msgid ""
|
1144 |
-
"GeoIP collection requires PHP %s or above, it is currently disabled due to "
|
1145 |
-
"the installed PHP version being "
|
1146 |
-
msgstr ""
|
1147 |
-
"جمع GeoIP يتطلب PHP %s أو أعلى، يتم تعطيله حاليا نظرا لكونها نسخة PHP مثبتة"
|
1148 |
-
|
1149 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:8
|
1150 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:64
|
1151 |
-
msgid "Search Engine Referrals"
|
1152 |
-
msgstr "محرك البحث الدعوات"
|
1153 |
-
|
1154 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:88
|
1155 |
-
msgid "Daily Total"
|
1156 |
-
msgstr "المجموع اليومي"
|
1157 |
-
|
1158 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:102
|
1159 |
-
msgid "Current Time and Date"
|
1160 |
-
msgstr "التوقيت الحالي و التاريخ"
|
1161 |
-
|
1162 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:23
|
1163 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:71
|
1164 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:86
|
1165 |
-
msgid "Update Now!"
|
1166 |
-
msgstr "تحديث الآن!"
|
1167 |
-
|
1168 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:85
|
1169 |
-
msgid ""
|
1170 |
-
"See the %sWordPress Roles and Capabilities page%s for details on capability "
|
1171 |
-
"levels."
|
1172 |
-
msgstr "انظر أدوار %s ووردبريس وقدرات الصفحة %s للتفاصيل على مستويات القدرة."
|
1173 |
-
|
1174 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:87
|
1175 |
-
msgid ""
|
1176 |
-
"Each of the above casscades the rights upwards in the default WordPress "
|
1177 |
-
"configuration. So for example selecting publish_posts grants the right to "
|
1178 |
-
"Authors, Editors, Admins and Super Admins."
|
1179 |
-
msgstr ""
|
1180 |
-
"كل ما سبق من الكاسكيدز هي حقوق تكوين الووردبريس الافتراضي. على سبيل المثال "
|
1181 |
-
"عند اختيار publish_posts يمنح حقوق المؤلف,المحرر,المدير,المسؤول."
|
1182 |
-
|
1183 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:88
|
1184 |
-
msgid ""
|
1185 |
-
"If you need a more robust solution to delegate access you might want to look "
|
1186 |
-
"at %s in the WordPress plugin directory."
|
1187 |
-
msgstr ""
|
1188 |
-
"إذا كنت في حاجة الى حل أكثر قوة لتفويض الوصول التي قد ترغب في النظر في %s "
|
1189 |
-
"الدليل المساعد لووردبريس."
|
1190 |
-
|
1191 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:62
|
1192 |
-
msgid "Required user level to view WP Statistics"
|
1193 |
-
msgstr "مطلوب مستوى المستخدم لعرض الاحصائيات"
|
1194 |
-
|
1195 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:77
|
1196 |
-
msgid "Required user level to manage WP Statistics"
|
1197 |
-
msgstr "مطلوب مستوى المستخدم لإدارة الاحصائيات"
|
1198 |
-
|
1199 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:56
|
1200 |
-
msgid "Schedule monthly update of GeoIP DB"
|
1201 |
-
msgstr "جدولة التحديث الشهري لGeoIP DB"
|
1202 |
-
|
1203 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:82
|
1204 |
-
msgid ""
|
1205 |
-
"Download of the GeoIP database will be scheduled for 2 days after the first "
|
1206 |
-
"Tuesday of the month."
|
1207 |
-
msgstr ""
|
1208 |
-
"سيتم جدولة التحميل من قاعدة البيانات GeoIP لمدة 2 يوما بعد يوم الثلاثاء "
|
1209 |
-
"الأول من الشهر."
|
1210 |
-
|
1211 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:83
|
1212 |
-
msgid ""
|
1213 |
-
"This option will also download the database if the local filesize is less "
|
1214 |
-
"than 1k (which usually means the stub that comes with the plugin is still in "
|
1215 |
-
"place)."
|
1216 |
-
msgstr ""
|
1217 |
-
"وهذا الخيار أيضا تحميل قاعدة البيانات إذا كان حجم الملف المحلي أقل من 1K "
|
1218 |
-
"(الذي يعني عادة أن طرف البرنامج التي تأتي مع البرنامج المساعد لا يزال في "
|
1219 |
-
"مكانه)."
|
1220 |
-
|
1221 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:89
|
1222 |
-
msgid "Populate missing GeoIP after update of GeoIP DB"
|
1223 |
-
msgstr "تعبئة GeoIP في عداد المفقودين بعد التحديث من GeoIP DB"
|
1224 |
-
|
1225 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:95
|
1226 |
-
msgid "Update any missing GeoIP data after downloading a new database."
|
1227 |
-
msgstr "تحديث أي بيانات GeoIP مفقودة بعد تحميل قاعدة البيانات الجديدة."
|
1228 |
-
|
1229 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:50
|
1230 |
-
msgid "Updated %s GeoIP records in the visitors database."
|
1231 |
-
msgstr "تحديث السجلات %s GeoIP في قاعدة بيانات الزوار."
|
1232 |
-
|
1233 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:86
|
1234 |
-
msgid "Version Info"
|
1235 |
-
msgstr "معلومات الإصدار"
|
1236 |
-
|
1237 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:91
|
1238 |
-
msgid "WP Statistics Version"
|
1239 |
-
msgstr "نسخة WP Statistics"
|
1240 |
-
|
1241 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:96
|
1242 |
-
msgid "The WP Statistics version you are running."
|
1243 |
-
msgstr "إصدار WP Statistics."
|
1244 |
-
|
1245 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:102
|
1246 |
-
msgid "PHP Version"
|
1247 |
-
msgstr "نسخة PHP"
|
1248 |
-
|
1249 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:107
|
1250 |
-
msgid "The PHP version you are running."
|
1251 |
-
msgstr "إصدار PHP."
|
1252 |
-
|
1253 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:124
|
1254 |
-
msgid "jQuery Version"
|
1255 |
-
msgstr "نسخة jQuery"
|
1256 |
-
|
1257 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:129
|
1258 |
-
msgid "The jQuery version you are running."
|
1259 |
-
msgstr "إصدار jQuery."
|
1260 |
-
|
1261 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:587
|
1262 |
-
msgid "Error could not open downloaded GeoIP database for reading: %s"
|
1263 |
-
msgstr "خطأ لا يمكن فتح قاعدة البيانات GeoIP التي تم تحميلها للقراءة: %s"
|
1264 |
-
|
1265 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:594
|
1266 |
-
msgid "Error could not open destination GeoIP database for writing %s"
|
1267 |
-
msgstr "خطأ لا يمكن فتح قاعدة البيانات GeoIP لجهة الكتابة %s"
|
1268 |
-
|
1269 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:610
|
1270 |
-
msgid "GeoIP Database updated successfully!"
|
1271 |
-
msgstr "تم تحديث قاعدة بيانات GeoIP بنجاح!"
|
1272 |
-
|
1273 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:156
|
1274 |
-
msgid "Client Info"
|
1275 |
-
msgstr "معلومات العميل"
|
1276 |
-
|
1277 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:161
|
1278 |
-
msgid "Client IP"
|
1279 |
-
msgstr "IP العميل"
|
1280 |
-
|
1281 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:166
|
1282 |
-
msgid "The client IP address."
|
1283 |
-
msgstr "عنوان IP للعميل."
|
1284 |
-
|
1285 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:172
|
1286 |
-
msgid "User Agent"
|
1287 |
-
msgstr "وكيل المستخدم"
|
1288 |
-
|
1289 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:177
|
1290 |
-
msgid "The client user agent string."
|
1291 |
-
msgstr "سلسلة عامل المستخدم العميل."
|
1292 |
-
|
1293 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:105
|
1294 |
-
msgid "Exclude User Roles"
|
1295 |
-
msgstr "استبعاد أدوار المستخدم"
|
1296 |
-
|
1297 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:119
|
1298 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:174
|
1299 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:181
|
1300 |
-
msgid "Exclude"
|
1301 |
-
msgstr "منع"
|
1302 |
-
|
1303 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:120
|
1304 |
-
msgid "Exclude %s role from data collection."
|
1305 |
-
msgstr "استبعاد دور %s من جمع البيانات."
|
1306 |
-
|
1307 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:126
|
1308 |
-
msgid "IP/Robot Exclusions"
|
1309 |
-
msgstr "استثناءات IP/Robot"
|
1310 |
-
|
1311 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:143
|
1312 |
-
msgid ""
|
1313 |
-
"A list of words (one per line) to match against to detect robots. Entries "
|
1314 |
-
"must be at least 4 characters long or they will be ignored."
|
1315 |
-
msgstr ""
|
1316 |
-
"قائمة من الكلمات (واحد في كل سطر) لمطابقة ضد للكشف عن الروبوتات. يجب أن تكون "
|
1317 |
-
"إدخالات 4 أحرف على الأقل أو أنها سيتم تجاهلها."
|
1318 |
-
|
1319 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:144
|
1320 |
-
msgid "Reset to Default"
|
1321 |
-
msgstr "إعادة تعيين إلى الافتراضي"
|
1322 |
-
|
1323 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:161
|
1324 |
-
msgid "Add 10.0.0.0"
|
1325 |
-
msgstr "إضافة 10.0.0.0"
|
1326 |
-
|
1327 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:162
|
1328 |
-
msgid "Add 172.16.0.0"
|
1329 |
-
msgstr "إضافة 172.16.0.0"
|
1330 |
-
|
1331 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:163
|
1332 |
-
msgid "Add 192.168.0.0"
|
1333 |
-
msgstr "إضافة 192.168.0.0"
|
1334 |
-
|
1335 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:264
|
1336 |
-
msgid "Charts"
|
1337 |
-
msgstr "الرسوم البيانية"
|
1338 |
-
|
1339 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:38
|
1340 |
-
msgid ""
|
1341 |
-
"For get more information and location (country) from visitor, enable this "
|
1342 |
-
"feature."
|
1343 |
-
msgstr ""
|
1344 |
-
"للحصول على مزيد من المعلومات، والمكان (البلد) من الزوار، تمكين هذه الميزة."
|
1345 |
-
|
1346 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:81
|
1347 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:230
|
1348 |
-
msgid "Overview"
|
1349 |
-
msgstr "نظرة عامة"
|
1350 |
-
|
1351 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:10
|
1352 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:67
|
1353 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:233
|
1354 |
-
msgid "Countries"
|
1355 |
-
msgstr "الدول"
|
1356 |
-
|
1357 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:158
|
1358 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:235
|
1359 |
-
msgid "Hits"
|
1360 |
-
msgstr "نقرات"
|
1361 |
-
|
1362 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:237
|
1363 |
-
msgid "Referers"
|
1364 |
-
msgstr "المراجع"
|
1365 |
-
|
1366 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:238
|
1367 |
-
msgid "Searches"
|
1368 |
-
msgstr "عمليات البحث"
|
1369 |
-
|
1370 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:239
|
1371 |
-
msgid "Search Words"
|
1372 |
-
msgstr "كلمات البحث"
|
1373 |
-
|
1374 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:94
|
1375 |
-
msgid "Second"
|
1376 |
-
msgstr "ثانية"
|
1377 |
-
|
1378 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:17
|
1379 |
-
msgid "Browser Statistics"
|
1380 |
-
msgstr "إحصائيات المتصفح"
|
1381 |
-
|
1382 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:107
|
1383 |
-
msgid "Platform"
|
1384 |
-
msgstr "المنصة"
|
1385 |
-
|
1386 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:241
|
1387 |
-
msgid "%s Version"
|
1388 |
-
msgstr "الإصدار %s"
|
1389 |
-
|
1390 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:17
|
1391 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:8
|
1392 |
-
msgid "Hit Statistics"
|
1393 |
-
msgstr "احصائية النقرات"
|
1394 |
-
|
1395 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:57
|
1396 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:21
|
1397 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:33
|
1398 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
|
1399 |
-
msgid "10 Days"
|
1400 |
-
msgstr "10 أيام"
|
1401 |
-
|
1402 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:58
|
1403 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:22
|
1404 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:34
|
1405 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
|
1406 |
-
msgid "20 Days"
|
1407 |
-
msgstr "20 يوم"
|
1408 |
-
|
1409 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:59
|
1410 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:23
|
1411 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:35
|
1412 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:23
|
1413 |
-
msgid "30 Days"
|
1414 |
-
msgstr "30 يو م"
|
1415 |
-
|
1416 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:60
|
1417 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:24
|
1418 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:36
|
1419 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:24
|
1420 |
-
msgid "2 Months"
|
1421 |
-
msgstr "شهرين"
|
1422 |
-
|
1423 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:61
|
1424 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:25
|
1425 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:37
|
1426 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:25
|
1427 |
-
msgid "3 Months"
|
1428 |
-
msgstr "3 أشهر"
|
1429 |
-
|
1430 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:62
|
1431 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
|
1432 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:38
|
1433 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:26
|
1434 |
-
msgid "6 Months"
|
1435 |
-
msgstr "6 أشهر"
|
1436 |
-
|
1437 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:63
|
1438 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:27
|
1439 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:39
|
1440 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:27
|
1441 |
-
msgid "9 Months"
|
1442 |
-
msgstr "9 أشهر"
|
1443 |
-
|
1444 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:64
|
1445 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:28
|
1446 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:40
|
1447 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:28
|
1448 |
-
msgid "1 Year"
|
1449 |
-
msgstr "سنة"
|
1450 |
-
|
1451 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
1452 |
-
msgid "Hits Statistical Chart"
|
1453 |
-
msgstr "الرسم البياني لعدد النقرات"
|
1454 |
-
|
1455 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:95
|
1456 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:67
|
1457 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:75
|
1458 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:39
|
1459 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:46
|
1460 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:150
|
1461 |
-
msgid "days"
|
1462 |
-
msgstr "أيام"
|
1463 |
-
|
1464 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:11
|
1465 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:27
|
1466 |
-
msgid "Top 10 Countries"
|
1467 |
-
msgstr "أعلى 10 دول"
|
1468 |
-
|
1469 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:28
|
1470 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:17
|
1471 |
-
msgid "Rank"
|
1472 |
-
msgstr "الترتيب"
|
1473 |
-
|
1474 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:29
|
1475 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:18
|
1476 |
-
msgid "Flag"
|
1477 |
-
msgstr "العلم"
|
1478 |
-
|
1479 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:31
|
1480 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:20
|
1481 |
-
msgid "Visitor Count"
|
1482 |
-
msgstr "عدد الزوار"
|
1483 |
-
|
1484 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:35
|
1485 |
-
msgid "Search Engine Referrers Statistical Chart"
|
1486 |
-
msgstr "الرسم البياني لمحركات البحث"
|
1487 |
-
|
1488 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:19
|
1489 |
-
msgid "Top Countries"
|
1490 |
-
msgstr "أفضل الدول"
|
1491 |
-
|
1492 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:14
|
1493 |
-
msgid "<code>%s</code> agent data deleted successfully."
|
1494 |
-
msgstr "<code>%s</code> حذف بيانات الوكيل بنجاح."
|
1495 |
-
|
1496 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:14
|
1497 |
-
msgid "<code>%s</code> platform data deleted successfully."
|
1498 |
-
msgstr "<code>%s</code> حذف بيانات المنصة بنجاح."
|
1499 |
-
|
1500 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:159
|
1501 |
-
msgid "Delete User Agent Types"
|
1502 |
-
msgstr "حذف أنواع وكيل العضو"
|
1503 |
-
|
1504 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:164
|
1505 |
-
msgid "Delete Agents"
|
1506 |
-
msgstr "حذف الوكلاء"
|
1507 |
-
|
1508 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:179
|
1509 |
-
msgid "All visitor data will be lost for this agent type."
|
1510 |
-
msgstr "سيتم فقد جميع البيانات الزائر لهذا النوع."
|
1511 |
-
|
1512 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:180
|
1513 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:204
|
1514 |
-
msgid "Delete now!"
|
1515 |
-
msgstr "حذف الآن!"
|
1516 |
-
|
1517 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:188
|
1518 |
-
msgid "Delete Platforms"
|
1519 |
-
msgstr "حذف المنصات"
|
1520 |
-
|
1521 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:203
|
1522 |
-
msgid "All visitor data will be lost for this platform type."
|
1523 |
-
msgstr "سيتم فقد جميع البيانات الزائر لنوع هذه المنصة."
|
1524 |
-
|
1525 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:62
|
1526 |
-
msgid "GeoIP Options"
|
1527 |
-
msgstr "خيارات GeoIP"
|
1528 |
-
|
1529 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:133
|
1530 |
-
msgid "Store entire user agent string"
|
1531 |
-
msgstr "تخزين كامل سلسلة عامل المستخدم"
|
1532 |
-
|
1533 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:139
|
1534 |
-
msgid "Only enabled for debugging"
|
1535 |
-
msgstr "تمكين فقط من أجل التصحيح"
|
1536 |
-
|
1537 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:17
|
1538 |
-
msgid "GeoIP settings"
|
1539 |
-
msgstr "إعدادات GeoIP"
|
1540 |
-
|
1541 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:32
|
1542 |
-
msgid "GeoIP collection"
|
1543 |
-
msgstr "مجموعة GeoIP"
|
1544 |
-
|
1545 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:44
|
1546 |
-
msgid "Update GeoIP Info"
|
1547 |
-
msgstr "تحديث معلومات GeoIP"
|
1548 |
-
|
1549 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:49
|
1550 |
-
msgid "Download GeoIP Database"
|
1551 |
-
msgstr "تحميل قاعدة بيانات GeoIP"
|
1552 |
-
|
1553 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:50
|
1554 |
-
msgid "Save changes on this page to download the update."
|
1555 |
-
msgstr "حفظ التغييرات على هذه الصفحة لتحميل التحديث."
|
1556 |
-
|
1557 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:10
|
1558 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:36
|
1559 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:62
|
1560 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:90
|
1561 |
-
msgid "Are you sure?"
|
1562 |
-
msgstr "هل أنت متأكد؟"
|
1563 |
-
|
1564 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:137
|
1565 |
-
msgid "Clear now!"
|
1566 |
-
msgstr "مسح الآن!"
|
1567 |
-
|
1568 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:243
|
1569 |
-
msgid "Optimization"
|
1570 |
-
msgstr "التحسين"
|
1571 |
-
|
1572 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:5
|
1573 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:5
|
1574 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:5
|
1575 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:5
|
1576 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:5
|
1577 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:3
|
1578 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/manual/manual.php:5
|
1579 |
-
msgid "Access denied!"
|
1580 |
-
msgstr "تم رفض الوصول!"
|
1581 |
-
|
1582 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:53
|
1583 |
-
msgid "<code>%s</code> table data deleted successfully."
|
1584 |
-
msgstr "<code>%s</code> حذف بيانات الجدول بنجاح."
|
1585 |
-
|
1586 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:18
|
1587 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:18
|
1588 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:42
|
1589 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:57
|
1590 |
-
msgid "Please select the desired items."
|
1591 |
-
msgstr "يرجى تحديد العناصر المطلوبة."
|
1592 |
-
|
1593 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:5
|
1594 |
-
msgid "Resources"
|
1595 |
-
msgstr "الموارد"
|
1596 |
-
|
1597 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:10
|
1598 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:15
|
1599 |
-
msgid "Memory usage in PHP"
|
1600 |
-
msgstr "استخدام الذاكرة في PHP"
|
1601 |
-
|
1602 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:14
|
1603 |
-
msgid "Byte"
|
1604 |
-
msgstr "بايت"
|
1605 |
-
|
1606 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:36
|
1607 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:47
|
1608 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:58
|
1609 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:69
|
1610 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:80
|
1611 |
-
msgid "Row"
|
1612 |
-
msgstr "صف"
|
1613 |
-
|
1614 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:37
|
1615 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:48
|
1616 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:59
|
1617 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:70
|
1618 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:81
|
1619 |
-
msgid "Number of rows"
|
1620 |
-
msgstr "عدد الصفوف"
|
1621 |
-
|
1622 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:7
|
1623 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:116
|
1624 |
-
msgid "Export"
|
1625 |
-
msgstr "تصدير"
|
1626 |
-
|
1627 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:12
|
1628 |
-
msgid "Export from"
|
1629 |
-
msgstr "التصدير من"
|
1630 |
-
|
1631 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:24
|
1632 |
-
msgid "Select the table for the output file."
|
1633 |
-
msgstr "حدد الجدول لملف الإخراج."
|
1634 |
-
|
1635 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:30
|
1636 |
-
msgid "Export To"
|
1637 |
-
msgstr "التصدير إلى"
|
1638 |
-
|
1639 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:41
|
1640 |
-
msgid "Select the output file type."
|
1641 |
-
msgstr "حدد نوع ملف الإخراج."
|
1642 |
-
|
1643 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:53
|
1644 |
-
msgid "Start Now!"
|
1645 |
-
msgstr "ابدأ الآن!"
|
1646 |
-
|
1647 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:123
|
1648 |
-
msgid "Empty Table"
|
1649 |
-
msgstr "تفريغ الجدول"
|
1650 |
-
|
1651 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:136
|
1652 |
-
msgid "All data table will be lost."
|
1653 |
-
msgstr "سيتم فقدان جميع البيانات الجدول."
|
1654 |
-
|
1655 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:40
|
1656 |
-
msgid "Support"
|
1657 |
-
msgstr "دعم"
|
1658 |
-
|
1659 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:47
|
1660 |
-
msgid "Referring sites from"
|
1661 |
-
msgstr "مواقع اشارة من"
|
1662 |
-
|
1663 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:32
|
1664 |
-
msgid "Translations"
|
1665 |
-
msgstr "الترجمات"
|
1666 |
-
|
1667 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:4
|
1668 |
-
msgid "To be added soon"
|
1669 |
-
msgstr "تضاف قريبا"
|
1670 |
-
|
1671 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:102
|
1672 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:99
|
1673 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:78
|
1674 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:27
|
1675 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:32
|
1676 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:33
|
1677 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:71
|
1678 |
-
msgid "Map"
|
1679 |
-
msgstr "خريطة"
|
1680 |
-
|
1681 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:139
|
1682 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:132
|
1683 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:170
|
1684 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:132
|
1685 |
-
msgid "Page"
|
1686 |
-
msgstr "صفحة"
|
1687 |
-
|
1688 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:139
|
1689 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:132
|
1690 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:170
|
1691 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:132
|
1692 |
-
msgid "From"
|
1693 |
-
msgstr "من"
|
1694 |
-
|
1695 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:435
|
1696 |
-
msgid "Table plugin does not exist! Please disable and re-enable the plugin."
|
1697 |
-
msgstr ""
|
1698 |
-
"هناك جدول مفقود في البرنامج المساعد! الرجاء تعطيل البرنامج المساعد ومن ثم "
|
1699 |
-
"تفعيلة مرة أخرى."
|
1700 |
-
|
1701 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:280
|
1702 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:285
|
1703 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:154
|
1704 |
-
msgid "Statistical reporting"
|
1705 |
-
msgstr "تقارير الإحصائيات"
|
1706 |
-
|
1707 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:4
|
1708 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:6
|
1709 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:227
|
1710 |
-
msgid "Statistics"
|
1711 |
-
msgstr "الاحصائيات"
|
1712 |
-
|
1713 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:5
|
1714 |
-
msgid "Show site stats in sidebar"
|
1715 |
-
msgstr "إظهار إحصائيات الموقع في الشريط الجانبي"
|
1716 |
-
|
1717 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:369
|
1718 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:15
|
1719 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:23
|
1720 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:290
|
1721 |
-
msgid "User Online"
|
1722 |
-
msgstr "المتواجدين الآن"
|
1723 |
-
|
1724 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:371
|
1725 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:18
|
1726 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:30
|
1727 |
-
msgid "Today Visit"
|
1728 |
-
msgstr "زيارات اليوم"
|
1729 |
-
|
1730 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:370
|
1731 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:21
|
1732 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:37
|
1733 |
-
msgid "Today Visitor"
|
1734 |
-
msgstr "زوار اليوم"
|
1735 |
-
|
1736 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:373
|
1737 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:44
|
1738 |
-
msgid "Yesterday Visit"
|
1739 |
-
msgstr "زيارات الأمس"
|
1740 |
-
|
1741 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:372
|
1742 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:27
|
1743 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:51
|
1744 |
-
msgid "Yesterday Visitor"
|
1745 |
-
msgstr "زوار الأمس"
|
1746 |
-
|
1747 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:30
|
1748 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:58
|
1749 |
-
msgid "Week Visit"
|
1750 |
-
msgstr "زيارات الأسبوع"
|
1751 |
-
|
1752 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:33
|
1753 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:65
|
1754 |
-
msgid "Month Visit"
|
1755 |
-
msgstr "زيارات الشهر"
|
1756 |
-
|
1757 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:36
|
1758 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:72
|
1759 |
-
msgid "Years Visit"
|
1760 |
-
msgstr "زيارات السنة"
|
1761 |
-
|
1762 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:375
|
1763 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:39
|
1764 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:79
|
1765 |
-
msgid "Total Visit"
|
1766 |
-
msgstr "مجموع الزيارات"
|
1767 |
-
|
1768 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:374
|
1769 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:42
|
1770 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:86
|
1771 |
-
msgid "Total Visitor"
|
1772 |
-
msgstr "مجموع الزوار"
|
1773 |
-
|
1774 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:68
|
1775 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:108
|
1776 |
-
msgid "Total Posts"
|
1777 |
-
msgstr "إجمالي المشاركات"
|
1778 |
-
|
1779 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:71
|
1780 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:115
|
1781 |
-
msgid "Total Pages"
|
1782 |
-
msgstr "إجمالي الصفحات"
|
1783 |
-
|
1784 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:74
|
1785 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:122
|
1786 |
-
msgid "Total Comments"
|
1787 |
-
msgstr "إجمالي التعليقات"
|
1788 |
-
|
1789 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:77
|
1790 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:129
|
1791 |
-
msgid "Total Spams"
|
1792 |
-
msgstr "إجمالي السبام"
|
1793 |
-
|
1794 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:80
|
1795 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:136
|
1796 |
-
msgid "Total Users"
|
1797 |
-
msgstr "عدد الاعضاء"
|
1798 |
-
|
1799 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:83
|
1800 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:143
|
1801 |
-
msgid "Average Posts"
|
1802 |
-
msgstr "متوسط المشاركات"
|
1803 |
-
|
1804 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:86
|
1805 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:150
|
1806 |
-
msgid "Average Comments"
|
1807 |
-
msgstr "متوسط التعليقات"
|
1808 |
-
|
1809 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:89
|
1810 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:157
|
1811 |
-
msgid "Average Users"
|
1812 |
-
msgstr "متوسط الاعضاء"
|
1813 |
-
|
1814 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:92
|
1815 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:164
|
1816 |
-
msgid "Last Post Date"
|
1817 |
-
msgstr "تاريخ آخر مشاركة"
|
1818 |
-
|
1819 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:320
|
1820 |
-
msgid "View Stats"
|
1821 |
-
msgstr "عرض الإحصائيات"
|
1822 |
-
|
1823 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:134
|
1824 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:244
|
1825 |
-
msgid "Settings"
|
1826 |
-
msgstr "الإعدادات"
|
1827 |
-
|
1828 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:296
|
1829 |
-
msgid "Today visitor"
|
1830 |
-
msgstr "زوار اليوم"
|
1831 |
-
|
1832 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:302
|
1833 |
-
msgid "Today visit"
|
1834 |
-
msgstr "زيارات اليوم"
|
1835 |
-
|
1836 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:308
|
1837 |
-
msgid "Yesterday visitor"
|
1838 |
-
msgstr "زيارات الأمس"
|
1839 |
-
|
1840 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:24
|
1841 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:314
|
1842 |
-
msgid "Yesterday visit"
|
1843 |
-
msgstr "زيارات الأمس"
|
1844 |
-
|
1845 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:424
|
1846 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:524
|
1847 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:635
|
1848 |
-
msgid "You do not have sufficient permissions to access this page."
|
1849 |
-
msgstr "ليس لديك الصلاحيات الكافية لدخول هذه الصفحة."
|
1850 |
-
|
1851 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:23
|
1852 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:106
|
1853 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:240
|
1854 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:74
|
1855 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:35
|
1856 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:61
|
1857 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:57
|
1858 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:47
|
1859 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:35
|
1860 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:19
|
1861 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:120
|
1862 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:45
|
1863 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:7
|
1864 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:9
|
1865 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:64
|
1866 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:8
|
1867 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:7
|
1868 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:8
|
1869 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:11
|
1870 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:7
|
1871 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:11
|
1872 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:7
|
1873 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:7
|
1874 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:14
|
1875 |
-
msgid "Click to toggle"
|
1876 |
-
msgstr "انقر للتبديل"
|
1877 |
-
|
1878 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:24
|
1879 |
-
msgid "Summary Statistics"
|
1880 |
-
msgstr "ملخص الاحصائيات"
|
1881 |
-
|
1882 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:101
|
1883 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:73
|
1884 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:19
|
1885 |
-
msgid "Visitor"
|
1886 |
-
msgstr "زائر"
|
1887 |
-
|
1888 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:101
|
1889 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:73
|
1890 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:20
|
1891 |
-
msgid "Visit"
|
1892 |
-
msgstr "زيارة"
|
1893 |
-
|
1894 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:24
|
1895 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:69
|
1896 |
-
msgid "Today"
|
1897 |
-
msgstr "اليوم"
|
1898 |
-
|
1899 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:30
|
1900 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:70
|
1901 |
-
msgid "Yesterday"
|
1902 |
-
msgstr "الأمس"
|
1903 |
-
|
1904 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:36
|
1905 |
-
msgid "Week"
|
1906 |
-
msgstr "أسبوع"
|
1907 |
-
|
1908 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:42
|
1909 |
-
msgid "Month"
|
1910 |
-
msgstr "الشهر"
|
1911 |
-
|
1912 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:48
|
1913 |
-
msgid "Year"
|
1914 |
-
msgstr "سنة"
|
1915 |
-
|
1916 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:109
|
1917 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:80
|
1918 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:54
|
1919 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:94
|
1920 |
-
msgid "Total"
|
1921 |
-
msgstr "المجموع"
|
1922 |
-
|
1923 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:102
|
1924 |
-
msgid "(Adjustment)"
|
1925 |
-
msgstr "(التوافق)"
|
1926 |
-
|
1927 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:24
|
1928 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:8
|
1929 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:25
|
1930 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:231
|
1931 |
-
msgid "Browsers"
|
1932 |
-
msgstr "المتصفحات"
|
1933 |
-
|
1934 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:38
|
1935 |
-
msgid "Other"
|
1936 |
-
msgstr "أخرى"
|
1937 |
-
|
1938 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:20
|
1939 |
-
msgid "Address"
|
1940 |
-
msgstr "العنوان"
|
1941 |
-
|
1942 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:87
|
1943 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:59
|
1944 |
-
msgid "Number of visits and visitors"
|
1945 |
-
msgstr "عدد الزيارات والزوار"
|
1946 |
-
|
1947 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:86
|
1948 |
-
msgid "Google"
|
1949 |
-
msgstr "جوجل"
|
1950 |
-
|
1951 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:27
|
1952 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:9
|
1953 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:38
|
1954 |
-
msgid "Recent Visitors"
|
1955 |
-
msgstr "الزيارات الأخيرة"
|
1956 |
-
|
1957 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:30
|
1958 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:19
|
1959 |
-
msgid "Country"
|
1960 |
-
msgstr "الدولة"
|
1961 |
-
|
1962 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:66
|
1963 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:82
|
1964 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:110
|
1965 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:126
|
1966 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:138
|
1967 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:165
|
1968 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:177
|
1969 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:189
|
1970 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:219
|
1971 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:231
|
1972 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:274
|
1973 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:290
|
1974 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:37
|
1975 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:61
|
1976 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:94
|
1977 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:40
|
1978 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:105
|
1979 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:117
|
1980 |
-
msgid "Active"
|
1981 |
-
msgstr "تفعيل"
|
1982 |
-
|
1983 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:83
|
1984 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:111
|
1985 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:127
|
1986 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:166
|
1987 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:178
|
1988 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:190
|
1989 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:291
|
1990 |
-
msgid "Enable or disable this feature"
|
1991 |
-
msgstr "تمكين أو تعطيل هذه الميزة"
|
1992 |
-
|
1993 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:152
|
1994 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:30
|
1995 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:100
|
1996 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:105
|
1997 |
-
msgid "Visits"
|
1998 |
-
msgstr "مرة"
|
1999 |
-
|
2000 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:116
|
2001 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:121
|
2002 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:240
|
2003 |
-
msgid "Visitors"
|
2004 |
-
msgstr "الزوار"
|
2005 |
-
|
2006 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:89
|
2007 |
-
msgid "Check for online users every"
|
2008 |
-
msgstr "تحقق من المتصلين في الموقع في كل"
|
2009 |
-
|
2010 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:95
|
2011 |
-
msgid "Time for the check accurate online user in the site. Now: %s Second"
|
2012 |
-
msgstr "وقت التحقق من المستخدمين المتصلين في الموقع. الآن: %s ثانية"
|
2013 |
-
|
2014 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:200
|
2015 |
-
msgid "Show stats in menu bar"
|
2016 |
-
msgstr "إظهار الاحصائيات في شريط القوائم"
|
2017 |
-
|
2018 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:205
|
2019 |
-
msgid "No"
|
2020 |
-
msgstr "لا"
|
2021 |
-
|
2022 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:206
|
2023 |
-
msgid "Yes"
|
2024 |
-
msgstr "نعم"
|
2025 |
-
|
2026 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:208
|
2027 |
-
msgid "Show stats in admin menu bar"
|
2028 |
-
msgstr "اظهار الاحصائيات في شريط القوائم الإداري"
|
2029 |
-
|
2030 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:145
|
2031 |
-
msgid "Coefficient per visitor"
|
2032 |
-
msgstr "درجة لكل زائر"
|
2033 |
-
|
2034 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:150
|
2035 |
-
msgid "For each visit to account for several hits. Currently %s."
|
2036 |
-
msgstr "حساب توجيه النقرات لكل زائر. حالياً %s."
|
2037 |
-
|
2038 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:322
|
2039 |
-
msgid "Select when receiving statistics report."
|
2040 |
-
msgstr "حدد عند استلام إحصاءات التقرير."
|
2041 |
-
|
2042 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:334
|
2043 |
-
msgid "Email"
|
2044 |
-
msgstr "البريد الإلكتروني"
|
2045 |
-
|
2046 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:335
|
2047 |
-
msgid "SMS"
|
2048 |
-
msgstr "رسائل نصية"
|
2049 |
-
|
2050 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:337
|
2051 |
-
msgid "Type Select Get Status Report."
|
2052 |
-
msgstr "حدد نوع الحصول على التقرير."
|
2053 |
-
|
2054 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:340
|
2055 |
-
msgid ""
|
2056 |
-
"Note: To send SMS text messages please install the <a href=\"%s\" target="
|
2057 |
-
"\"_blank\">Wordpress SMS</a> plugin."
|
2058 |
-
msgstr ""
|
2059 |
-
"ملاحظة: لإرسال الرسائل النصية SMS الرجاء تثبيت البرنامج المساعد <a href=\"%s"
|
2060 |
-
"\" target=\"_blank\">Wordpress SMS</a>."
|
2061 |
-
|
2062 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:363
|
2063 |
-
msgid "Enter the contents of the reports received."
|
2064 |
-
msgstr "أدخل محتويات التقارير الواردة."
|
2065 |
-
|
2066 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:8
|
2067 |
-
msgid "Name"
|
2068 |
-
msgstr "الأسم"
|
2069 |
-
|
2070 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:12
|
2071 |
-
msgid "Items"
|
2072 |
-
msgstr "البنود"
|
2073 |
-
|
2074 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:51
|
2075 |
-
msgid "Select type of search engine"
|
2076 |
-
msgstr "حدد نوع من محرك البحث"
|
2077 |
-
|
2078 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:29
|
2079 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:36
|
2080 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:134
|
2081 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:64
|
2082 |
-
msgid "All"
|
2083 |
-
msgstr "الكل"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/wp_statistics-ar.mo
CHANGED
Binary file
|
languages/wp_statistics-ar.po
CHANGED
@@ -2,89 +2,848 @@
|
|
2 |
# This file is distributed under the same license as the Wordpress Statistics package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"PO-Revision-Date: 2014-
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
|
10 |
"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
11 |
-
"X-Generator: Poedit 1.6.
|
12 |
"Project-Id-Version: Wordpress Statistics\n"
|
13 |
"POT-Creation-Date: \n"
|
14 |
"Last-Translator: \n"
|
15 |
"Language-Team: \n"
|
16 |
"Language: ar\n"
|
17 |
|
18 |
-
#:
|
19 |
-
msgid "About WP Statistics
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
msgstr ""
|
|
|
|
|
21 |
|
22 |
-
#:
|
23 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
|
26 |
-
#:
|
27 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
msgid "References"
|
29 |
msgstr "المراجع"
|
30 |
|
31 |
-
#:
|
32 |
msgid "PHP Memory Limit"
|
33 |
msgstr "حد ذاكرة PHP"
|
34 |
|
35 |
-
#:
|
36 |
msgid "The memory limit a script is allowed to consume, set in php.ini."
|
37 |
msgstr "حد الذاكرة المسموحبه في السكربت, محدد في php.ini."
|
38 |
|
39 |
-
#:
|
40 |
msgid "WP Statistics"
|
41 |
msgstr "احصائيات ووردبريس"
|
42 |
|
43 |
-
#:
|
44 |
-
msgid ""
|
45 |
-
"WP Statistics is not enabled! Please go to <a href=\"%s\">setting page</a> "
|
46 |
-
"and enable statistics"
|
47 |
-
msgstr ""
|
48 |
-
"احصائيات ووردبريس غير مفعلة! يرجى الدخول إلى <a href=\"%s\">صفحة الإعدادات</"
|
49 |
-
"a> وتمكين الإحصائيات"
|
50 |
-
|
51 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:127
|
52 |
msgid "Visit WordPress.org page"
|
53 |
msgstr "زيارة صفحة الووردبريس"
|
54 |
|
55 |
-
#:
|
56 |
msgid "Page Trend for Post ID"
|
57 |
msgstr "صفحة الأكثر رواجاً بمعرف المشاركة"
|
58 |
|
59 |
-
#:
|
60 |
msgid "Page Trend"
|
61 |
msgstr "الصفحة الأكثر رواجاً"
|
62 |
|
63 |
-
#:
|
64 |
msgid "Page Trending Stats"
|
65 |
msgstr "احصائيات الصفحة الاكثر رواجاً"
|
66 |
|
67 |
-
#:
|
68 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:52
|
69 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:63
|
70 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:74
|
71 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:85
|
72 |
-
msgid "Number of rows in the <code>%s</code> table"
|
73 |
-
msgstr "عدد الصفوف في الجدول <code>%s</code>"
|
74 |
-
|
75 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:96
|
76 |
msgid "Record exclusions"
|
77 |
msgstr "سجل الاستثناءات"
|
78 |
|
79 |
-
#:
|
80 |
msgid "Robot list"
|
81 |
msgstr "قائمة الروبوت"
|
82 |
|
83 |
-
#:
|
84 |
msgid "Excluded IP address list"
|
85 |
msgstr "قائمة عناوين IP المستبعدة"
|
86 |
|
87 |
-
#:
|
88 |
msgid ""
|
89 |
"A list of IP addresses and subnet masks (one per line) to exclude from "
|
90 |
"statistics collection (both 192.168.0.0/24 and 192.168.0.0/255.255.255.0 "
|
@@ -96,145 +855,140 @@ msgstr ""
|
|
96 |
"192.168.0.0/255.255.255.0 ). لتحديد عنوان IP فقط، استخدم قيمة الشبكة الفرعية "
|
97 |
"32 أو 255.255.255.255.255."
|
98 |
|
99 |
-
#:
|
100 |
msgid "Excluded login page"
|
101 |
msgstr "استبعاد صفحة تسجيل الدخول"
|
102 |
|
103 |
-
#:
|
104 |
msgid "Excluded admin pages"
|
105 |
msgstr "استبعاد الصفحات الإدارية"
|
106 |
|
107 |
-
#:
|
108 |
msgid "Users Online"
|
109 |
msgstr "الإعضاء المتواجدين"
|
110 |
|
111 |
-
#:
|
112 |
msgid "User online"
|
113 |
msgstr "المتواجدين الآن"
|
114 |
|
115 |
-
#:
|
116 |
msgid "Track all pages"
|
117 |
msgstr "تتبع جميع الصفحات"
|
118 |
|
119 |
-
#:
|
120 |
msgid "Disable hits column in post/pages list"
|
121 |
msgstr "تعطيل عمود النقرات في قائمة المقال/الصفحات"
|
122 |
|
123 |
-
#:
|
124 |
msgid "Miscellaneous"
|
125 |
msgstr "متفرقات"
|
126 |
|
127 |
-
#:
|
128 |
msgid "Click here to visit the plugin on WordPress.org"
|
129 |
msgstr "انقر هنا لزيارة صفحة الإضافة على WordPress.org"
|
130 |
|
131 |
-
#:
|
132 |
msgid "Click here to rate and review this plugin on WordPress.org"
|
133 |
msgstr "أنقر هنا لمراجهة وتقييم الإضافة على WordPress.org"
|
134 |
|
135 |
-
#:
|
136 |
msgid "Rate this plugin"
|
137 |
msgstr "ضع تقييمك لهذه الاضافة"
|
138 |
|
139 |
-
#:
|
140 |
msgid "WP Statistics - Hits"
|
141 |
msgstr "احصائيات ووردبريس - الزيارات"
|
142 |
|
143 |
-
#:
|
144 |
msgid "Error downloading GeoIP database from: %s - %s"
|
145 |
msgstr "خطأ تحميل قاعدة بيانات GeoIP من: %s - %s"
|
146 |
|
147 |
-
#:
|
148 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:89
|
149 |
msgid "Total Page Views"
|
150 |
msgstr "مجموع مشاهدات الصفحة"
|
151 |
|
152 |
-
#:
|
153 |
-
#:
|
154 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:214
|
155 |
msgid "Pages"
|
156 |
msgstr "الصفحات"
|
157 |
|
158 |
-
#:
|
159 |
msgid "Manual"
|
160 |
msgstr "الدليل"
|
161 |
|
162 |
-
#:
|
163 |
msgid "Download ODF file"
|
164 |
msgstr "تحميل ملف ODF"
|
165 |
|
166 |
-
#:
|
167 |
msgid "Download HTML file"
|
168 |
msgstr "تحميل ملف HTML"
|
169 |
|
170 |
-
#:
|
171 |
msgid "Manual file not found."
|
172 |
msgstr "لم يتم العثور على ملف الدليل."
|
173 |
|
174 |
-
#:
|
175 |
msgid "Exclusions Statistics"
|
176 |
msgstr "استثناءات الاحصائيات"
|
177 |
|
178 |
-
#:
|
179 |
msgid "Top Pages Visited"
|
180 |
msgstr "أعلى الصفحات زيارة"
|
181 |
|
182 |
-
#:
|
183 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:146
|
184 |
msgid "No page title found"
|
185 |
msgstr "لم يتم العثور على عنوان الصفحة"
|
186 |
|
187 |
-
#:
|
188 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:118
|
189 |
msgid "Top Pages"
|
190 |
msgstr "أفضل الصفحات"
|
191 |
|
192 |
-
#:
|
193 |
msgid "Top 5 Pages Trends"
|
194 |
msgstr "الصفحات الـ5 الأكثر رواجاً"
|
195 |
|
196 |
-
#:
|
197 |
msgid "Top 5 Page Trending Stats"
|
198 |
msgstr "احصائيات الصفحات الـ5 الأكثر رواجاً"
|
199 |
|
200 |
-
#:
|
201 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:59
|
202 |
msgid "Number of Hits"
|
203 |
msgstr "عدد الزيارات"
|
204 |
|
205 |
-
#:
|
206 |
msgid "Manual not found: %s"
|
207 |
msgstr "الدليل لم يعثر على: %s"
|
208 |
|
209 |
-
#:
|
210 |
msgid "Invalid file type selected: %s"
|
211 |
msgstr "نوع الملف المختار غير صالح: %s"
|
212 |
|
213 |
-
#:
|
214 |
msgid "Search Engine referred"
|
215 |
msgstr "محرك البحث المشار"
|
216 |
|
217 |
-
#:
|
218 |
msgid "Include Header Row"
|
219 |
msgstr "تضمين رأس الصف"
|
220 |
|
221 |
-
#:
|
222 |
msgid "Include a header row as the first line of the exported file."
|
223 |
msgstr "تضمين صف الرأس كما في السطر الأول من الملف الذي تم تصديره."
|
224 |
|
225 |
-
#:
|
226 |
msgid "PHP Safe Mode"
|
227 |
msgstr "الوضع الآمن PHP"
|
228 |
|
229 |
-
#:
|
230 |
msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
|
231 |
msgstr "الوضع الآمن نشط. الكود GeoIP غير معتمد في الوضع الآمن."
|
232 |
|
233 |
-
#:
|
234 |
msgid "GeoIP collection is disabled due to the following reasons:"
|
235 |
msgstr "تم تعطيل مجموعة GeoIP وذلك للأسباب التالية:"
|
236 |
|
237 |
-
#:
|
238 |
msgid ""
|
239 |
"PHP safe mode detected! GeoIP collection is not supported with PHP's safe "
|
240 |
"mode enabled!"
|
@@ -242,46 +996,38 @@ msgstr ""
|
|
242 |
"تم الكشف عن الوضع الآمن في PHP! مجموعة GeoIP غير معتمدة عند تمكين الوضع "
|
243 |
"الآمن في PHP!"
|
244 |
|
245 |
-
#:
|
246 |
msgid "Hide admin notices about non active features"
|
247 |
msgstr "اخفاء إشعارات المشرف حول الميزات غير نشطة"
|
248 |
|
249 |
-
#:
|
250 |
-
msgid ""
|
251 |
-
"By default WP Statistics displays an alert if any of the core features are "
|
252 |
-
"disbaled on every admin page, this option will disable these notices."
|
253 |
-
msgstr ""
|
254 |
-
"افتراضيا احصائيات ووردبريس يعرض تنبيها اذا تم تعطيل أي من الميزات الأساسية "
|
255 |
-
"على كل مشرف, فإن هذا الخيار يقوم بتعطيل الإشعارات."
|
256 |
-
|
257 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:185
|
258 |
msgid "Search Enginges"
|
259 |
msgstr "محرك البحث"
|
260 |
|
261 |
-
#:
|
262 |
msgid ""
|
263 |
"Disabling all search engines is not allowed, doing so will result in all "
|
264 |
"search engines being active."
|
265 |
msgstr ""
|
266 |
"تعطيل جميع محركات البحث غير مسموح, سيؤدي ذلك الى تنشيط جميع محركات البحث."
|
267 |
|
268 |
-
#:
|
269 |
msgid "disable"
|
270 |
msgstr "تعطيل"
|
271 |
|
272 |
-
#:
|
273 |
msgid "Disable %s from data collection and reporting."
|
274 |
msgstr "تعطيل %s من جمع البيانات وإعداد التقارير."
|
275 |
|
276 |
-
#:
|
277 |
msgid "cURL Version"
|
278 |
msgstr "إصدار cURL"
|
279 |
|
280 |
-
#:
|
281 |
msgid "cURL not installed"
|
282 |
msgstr "cURL غير مثبت"
|
283 |
|
284 |
-
#:
|
285 |
msgid ""
|
286 |
"The PHP cURL Extension version you are running. cURL is required for the "
|
287 |
"GeoIP code, if it is not installed GeoIP will be disabled."
|
@@ -289,39 +1035,31 @@ msgstr ""
|
|
289 |
"نسخة الملحق PHP cURL تعمل. الملحق cURL مطلوب لعمل كود GeoIP, وإذا لم يتم "
|
290 |
"تثبيته يتم تعطيل GeoIP."
|
291 |
|
292 |
-
#:
|
293 |
msgid "BC Math"
|
294 |
msgstr "BC Math"
|
295 |
|
296 |
-
#:
|
297 |
msgid "Installed"
|
298 |
msgstr "مثبت"
|
299 |
|
300 |
-
#:
|
301 |
msgid "Not installed"
|
302 |
msgstr "غير مثبت"
|
303 |
|
304 |
-
#:
|
305 |
-
msgid ""
|
306 |
-
"If the PHP BC Math Extension is installed. BC Math is required for the "
|
307 |
-
"GeoIP code, if it is not installed GeoIP will be disabled."
|
308 |
-
msgstr ""
|
309 |
-
"إذا تم تثبيت الملحق PHP BC Math. فأن كود GeoIP مطلوب في BC Math, واذا لم "
|
310 |
-
"يتم تثبيته يتم تعطيل GeoIP."
|
311 |
-
|
312 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:124
|
313 |
msgid ""
|
314 |
"GeoIP collection requires the cURL PHP extension and it is not loaded on "
|
315 |
"your version of PHP!"
|
316 |
msgstr "مجموعة GeoIP تتطلب الملحق cURL PHP و هو غير مفعل على إصدار الـ PHP!"
|
317 |
|
318 |
-
#:
|
319 |
msgid ""
|
320 |
"GeoIP collection requires the BC Math PHP extension and it is not loaded on "
|
321 |
"your version of PHP!"
|
322 |
msgstr "مجموعة GeoIP تتطلب الملحق BC Math PHP و هو غير مفعل على إصدار الـ PHP!"
|
323 |
|
324 |
-
#:
|
325 |
msgid ""
|
326 |
"Unable to load the GeoIP database, make sure you have downloaded it in the "
|
327 |
"settings page."
|
@@ -329,96 +1067,44 @@ msgstr ""
|
|
329 |
"غير قادر على تحميل قاعدة البيانات GeoIP، تأكد من أنك قمت بتنزيلها في صفحة "
|
330 |
"الإعدادات."
|
331 |
|
332 |
-
#:
|
333 |
msgid "Database file does not exist."
|
334 |
msgstr "لا وجود لملف قاعدة البيانات."
|
335 |
|
336 |
-
#:
|
337 |
msgid "Search for"
|
338 |
msgstr "البحث عن"
|
339 |
|
340 |
-
#:
|
341 |
-
#:
|
342 |
-
#:
|
343 |
-
#:
|
344 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:472
|
345 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:583
|
346 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:630
|
347 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:665
|
348 |
msgid "More"
|
349 |
msgstr "المزيد"
|
350 |
|
351 |
-
#:
|
352 |
-
msgid "Today visitors on map"
|
353 |
-
msgstr "زوار اليوم على الخريطة"
|
354 |
-
|
355 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:22
|
356 |
-
msgid "GeoIP File Info"
|
357 |
-
msgstr "معلومات ملف GeoIP"
|
358 |
-
|
359 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:27
|
360 |
-
msgid "File Date"
|
361 |
-
msgstr "ملف التاريخ"
|
362 |
-
|
363 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:40
|
364 |
-
msgid "The file date of the GeoIP database."
|
365 |
-
msgstr "تاريخ الملف من قاعدة البيانات GeoIP."
|
366 |
-
|
367 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:46
|
368 |
-
msgid "File Size"
|
369 |
-
msgstr "حجم الملف"
|
370 |
-
|
371 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:63
|
372 |
-
msgid "The file size of the GeoIP database."
|
373 |
-
msgstr "حجم ملف قاعدة البيانات GeoIP."
|
374 |
-
|
375 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:236
|
376 |
msgid "Include totals"
|
377 |
msgstr "تتضمن الاجماليات"
|
378 |
|
379 |
-
#:
|
380 |
msgid ""
|
381 |
"Add a total line to charts with multiple values, like the search engine "
|
382 |
"referrals"
|
383 |
msgstr "إضافة سطر مجموع المخططات مع قيم متعددة، مثل إحالات محرك البحث"
|
384 |
|
385 |
-
#:
|
386 |
msgid "Disable map"
|
387 |
msgstr "تعطيل الخريطة"
|
388 |
|
389 |
-
#:
|
390 |
msgid "Disable the map display"
|
391 |
msgstr "تعطيل عرض الخريطة"
|
392 |
|
393 |
-
#:
|
394 |
-
msgid "Alternate map location"
|
395 |
-
msgstr "خريطة الموقع البديل"
|
396 |
-
|
397 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:270
|
398 |
-
msgid ""
|
399 |
-
"Place the map above the recent visitors area instead of at the top of the "
|
400 |
-
"page."
|
401 |
-
msgstr ""
|
402 |
-
"وضع الخريطة فوق منطقة الزوار الأخيرة بدلا من في الجزء العلوي من الصفحة."
|
403 |
-
|
404 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:276
|
405 |
msgid "Get country location from Google"
|
406 |
msgstr "الحصول على موقع البلد من جوجل"
|
407 |
|
408 |
-
#:
|
409 |
-
msgid ""
|
410 |
-
"This feature may cause a performance degradation when viewing statistics."
|
411 |
-
msgstr "قد تسبب هذه الميزة انخفاض أداء الموقع عند عرض الإحصائيات."
|
412 |
-
|
413 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:69
|
414 |
-
msgid ""
|
415 |
-
"GeoIP collection is not active! Please go to <a href=\"%s\">Setting page > "
|
416 |
-
"GeoIP</a> and enable this feature (GeoIP can detect the visitors country)"
|
417 |
-
msgstr ""
|
418 |
-
"مجموعة GeoIP غير نشطة! يرجى الذهاب الى <a href=\"%s\">صفحة الإعدادات > "
|
419 |
-
"GeoIP</a> وقم بتمكين هذه الميزة (GeoIP يمكن الكشف عن بلد آخر)"
|
420 |
-
|
421 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:8
|
422 |
msgid ""
|
423 |
"Attention: Exclusion are not currently set to be recorded, the results below "
|
424 |
"may not reflect current statistics!"
|
@@ -426,15 +1112,11 @@ msgstr ""
|
|
426 |
"تنبيه: لم يتم تعيين الاستثناءات حاليا ليتم تسجيلها، قد لا تستطيع عكس نتائج "
|
427 |
"الإحصائيات الحالية أدناه!"
|
428 |
|
429 |
-
#:
|
430 |
-
msgid "Excluded hits chart in the last"
|
431 |
-
msgstr "مشاهدة الرسم البياني للنقرات المستبعدة في المشاركة"
|
432 |
-
|
433 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:111
|
434 |
msgid "Number of excluded hits"
|
435 |
msgstr "عدد الزيارات المستبعدة"
|
436 |
|
437 |
-
#:
|
438 |
msgid ""
|
439 |
"Hint: manage_network = Super Admin Network, manage_options = Administrator, "
|
440 |
"edit_others_posts = Editor, publish_posts = Author, edit_posts = "
|
@@ -443,11 +1125,12 @@ msgstr ""
|
|
443 |
"تلميح: manage_network = مسؤول, manage_options = مدير, edit_others_posts = "
|
444 |
"محرر, publish_posts = كاتب, edit_posts = مساهم, read = الجميع"
|
445 |
|
446 |
-
#:
|
|
|
447 |
msgid "Enable"
|
448 |
msgstr "تمكين"
|
449 |
|
450 |
-
#:
|
451 |
msgid ""
|
452 |
"This will record all the excluded hits in a separate table with the reasons "
|
453 |
"why it was excluded but no other information. This will generate a lot of "
|
@@ -459,90 +1142,75 @@ msgstr ""
|
|
459 |
"مفيد إذا كنت تريد أن ترى العدد الكلي من المشاهدات التي يحصل عليها موقعك، "
|
460 |
"وليس فقط المستخدم الفعلي للموقع."
|
461 |
|
462 |
-
#:
|
463 |
msgid "Site URL Exclusions"
|
464 |
msgstr "رابط الموقع المستثنى"
|
465 |
|
466 |
-
#:
|
467 |
msgid "Exclude the login page for registering as a hit."
|
468 |
msgstr "استبعاد صفحة الدخول للتسجيل كنقرة."
|
469 |
|
470 |
-
#:
|
471 |
msgid "Exclude the admin pages for registering as a hit."
|
472 |
msgstr "استبعاد الصفحات الادارية للتسجيل كنقرة."
|
473 |
|
474 |
-
#:
|
475 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:209
|
476 |
msgid "Exclusions"
|
477 |
msgstr "الاستثناءات"
|
478 |
|
479 |
-
#:
|
480 |
msgid "Total Exclusions: %s"
|
481 |
msgstr "مجموع الاستثناءات: %s"
|
482 |
|
483 |
-
#:
|
484 |
msgid "Exclusions Statistical Chart"
|
485 |
msgstr "الرسم البياني لإحصائيات الاستثناءات"
|
486 |
|
487 |
-
#:
|
488 |
msgid "Access Levels"
|
489 |
msgstr "مستويات الوصول"
|
490 |
|
491 |
-
#:
|
492 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:116
|
493 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:11
|
494 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:3
|
495 |
msgid "Resources/Information"
|
496 |
msgstr "الموارد/معلومات"
|
497 |
|
498 |
-
#:
|
499 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:118
|
500 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:13
|
501 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:5
|
502 |
msgid "Purging"
|
503 |
msgstr "تطهير"
|
504 |
|
505 |
-
#:
|
506 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:120
|
507 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:15
|
508 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:7
|
509 |
msgid "Updates"
|
510 |
msgstr "تحديثات"
|
511 |
|
512 |
-
#:
|
513 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:22
|
514 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:22
|
515 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:22
|
516 |
msgid "Access/Exclusions"
|
517 |
msgstr "وصول/استثناءات"
|
518 |
|
519 |
-
#:
|
520 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:24
|
521 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:24
|
522 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:24
|
523 |
msgid "Maintenance"
|
524 |
msgstr "صيانة"
|
525 |
|
526 |
-
#:
|
527 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:149
|
528 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:65
|
529 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:364
|
530 |
msgid "Update"
|
531 |
msgstr "تحديث"
|
532 |
|
533 |
-
#:
|
|
|
|
|
|
|
|
|
534 |
msgid "Error, %s not emptied!"
|
535 |
msgstr "خطأ, %s لم يتم التفريغ!"
|
536 |
|
537 |
-
#:
|
538 |
msgid "Data"
|
539 |
msgstr "المعطيات"
|
540 |
|
541 |
-
#:
|
542 |
msgid "Purge records older than"
|
543 |
msgstr "سجلات الضخ أقدم من"
|
544 |
|
545 |
-
#:
|
546 |
msgid ""
|
547 |
"Deleted user statistics data older than the selected number of days. "
|
548 |
"Minimum value is 30 days."
|
@@ -550,34 +1218,15 @@ msgstr ""
|
|
550 |
"بيانات الاحصائيات المستخدم المحذوف أقدم من الرقم المحدد من الأيام. قيمة الحد "
|
551 |
"الأدنى هو 30 يوما."
|
552 |
|
553 |
-
#:
|
554 |
msgid "Purge now!"
|
555 |
msgstr "ضخ الآن!"
|
556 |
|
557 |
-
#:
|
558 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:27
|
559 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:37
|
560 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:47
|
561 |
-
msgid ""
|
562 |
-
"<code>%s</code> data older than <code>%s</code> days purged successfully."
|
563 |
-
msgstr ""
|
564 |
-
"بيانات <code>%s</code> مضى عليها أكثر من <code>%s</code> أيام ضخ بنجاح."
|
565 |
-
|
566 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:19
|
567 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:29
|
568 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:39
|
569 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:49
|
570 |
-
msgid "No records found to purge from <code>%s</code>!"
|
571 |
-
msgstr "لاتوجد سجلات للضخ من <code>%s</code>!"
|
572 |
-
|
573 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:55
|
574 |
msgid "Please select a value over 30 days."
|
575 |
msgstr "يرجى تحديد قيمة أكثر من 30 يوما."
|
576 |
|
577 |
-
#:
|
578 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:11
|
579 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:11
|
580 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:11
|
581 |
msgid ""
|
582 |
"This will permanently delete data from the database each day, are you sure "
|
583 |
"you want to enable this option?"
|
@@ -585,15 +1234,15 @@ msgstr ""
|
|
585 |
"سيؤدي ذلك إلى حذف البيانات من قاعدة البيانات بشكل دائم كل يوم، هل أنت متأكد "
|
586 |
"من أنك تريد تمكين هذا الخيار؟"
|
587 |
|
588 |
-
#:
|
589 |
msgid "Database Maintenance"
|
590 |
msgstr "صيانة قاعدة البيانات"
|
591 |
|
592 |
-
#:
|
593 |
msgid "Run a daily WP Cron job to prune the databases"
|
594 |
msgstr "تشغيل مهام ووردبريس يوميا للضخ في قاعدة البيانات"
|
595 |
|
596 |
-
#:
|
597 |
msgid ""
|
598 |
"A WP Cron job will be run daily to prune any data older than a set number of "
|
599 |
"days."
|
@@ -601,15 +1250,15 @@ msgstr ""
|
|
601 |
"سيتم تشغيل ألف وظيفة في مهام ووردبريس يوميا لضخ أي بيانات أقدم من العدد "
|
602 |
"المحدد من الأيام."
|
603 |
|
604 |
-
#:
|
605 |
msgid "Prune data older than"
|
606 |
msgstr "ضخ البيانات الأقدم من"
|
607 |
|
608 |
-
#:
|
609 |
msgid "Days"
|
610 |
msgstr "أيام"
|
611 |
|
612 |
-
#:
|
613 |
msgid ""
|
614 |
"The number of days to keep statistics for. Minimum value is 30 days. "
|
615 |
"Invalid values will disable the daily maintenance."
|
@@ -617,55 +1266,41 @@ msgstr ""
|
|
617 |
"عدد الأيام للحفاظ على الإحصاءات المتعلقة. قيمة الحد الأدنى هو 30 يوما. سيتم "
|
618 |
"تعطيل الصيانة اليومية في حال ادخال قيم غير صالحة."
|
619 |
|
620 |
-
#:
|
621 |
-
msgid "Date: <code dir=\"ltr\">%s</code></code>"
|
622 |
-
msgstr "التاريخ: <code dir=\"rtl\">%s</code></code>"
|
623 |
-
|
624 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:133
|
625 |
-
msgid "Time: <code dir=\"ltr\">%s</code>"
|
626 |
-
msgstr "الوقت: <code dir=\"rtl\">%s</code></code>"
|
627 |
-
|
628 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:23
|
629 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:23
|
630 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:23
|
631 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:23
|
632 |
msgid "GeoIP"
|
633 |
msgstr "GeoIP"
|
634 |
|
635 |
-
#:
|
|
|
636 |
msgid "Next update will be"
|
637 |
msgstr "التحديث القادم سيكون في"
|
638 |
|
639 |
-
#:
|
640 |
msgid ""
|
641 |
"GeoIP collection requires PHP %s or above, it is currently disabled due to "
|
642 |
"the installed PHP version being "
|
643 |
msgstr ""
|
644 |
"جمع GeoIP يتطلب PHP %s أو أعلى، يتم تعطيله حاليا نظرا لكونها نسخة PHP مثبتة"
|
645 |
|
646 |
-
#:
|
647 |
msgid "Search Engine Referrals"
|
648 |
msgstr "محرك البحث الدعوات"
|
649 |
|
650 |
-
#:
|
651 |
msgid "Daily Total"
|
652 |
msgstr "المجموع اليومي"
|
653 |
|
654 |
-
#:
|
655 |
msgid "Current Time and Date"
|
656 |
msgstr "التوقيت الحالي و التاريخ"
|
657 |
|
658 |
-
#:
|
|
|
|
|
659 |
msgid "Update Now!"
|
660 |
msgstr "تحديث الآن!"
|
661 |
|
662 |
-
#:
|
663 |
-
msgid ""
|
664 |
-
"See the %sWordPress Roles and Capabilities page%s for details on capability "
|
665 |
-
"levels."
|
666 |
-
msgstr "انظر أدوار %s ووردبريس وقدرات الصفحة %s للتفاصيل على مستويات القدرة."
|
667 |
-
|
668 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:86
|
669 |
msgid ""
|
670 |
"Each of the above casscades the rights upwards in the default WordPress "
|
671 |
"configuration. So for example selecting publish_posts grants the right to "
|
@@ -674,7 +1309,7 @@ msgstr ""
|
|
674 |
"كل ما سبق من الكاسكيدز هي حقوق تكوين الووردبريس الافتراضي. على سبيل المثال "
|
675 |
"عند اختيار publish_posts يمنح حقوق المؤلف,المحرر,المدير,المسؤول."
|
676 |
|
677 |
-
#:
|
678 |
msgid ""
|
679 |
"If you need a more robust solution to delegate access you might want to look "
|
680 |
"at %s in the WordPress plugin directory."
|
@@ -682,19 +1317,19 @@ msgstr ""
|
|
682 |
"إذا كنت في حاجة الى حل أكثر قوة لتفويض الوصول التي قد ترغب في النظر في %s "
|
683 |
"الدليل المساعد لووردبريس."
|
684 |
|
685 |
-
#:
|
686 |
msgid "Required user level to view WP Statistics"
|
687 |
msgstr "مطلوب مستوى المستخدم لعرض الاحصائيات"
|
688 |
|
689 |
-
#:
|
690 |
msgid "Required user level to manage WP Statistics"
|
691 |
msgstr "مطلوب مستوى المستخدم لإدارة الاحصائيات"
|
692 |
|
693 |
-
#:
|
694 |
msgid "Schedule monthly update of GeoIP DB"
|
695 |
msgstr "جدولة التحديث الشهري لGeoIP DB"
|
696 |
|
697 |
-
#:
|
698 |
msgid ""
|
699 |
"Download of the GeoIP database will be scheduled for 2 days after the first "
|
700 |
"Tuesday of the month."
|
@@ -702,7 +1337,7 @@ msgstr ""
|
|
702 |
"سيتم جدولة التحميل من قاعدة البيانات GeoIP لمدة 2 يوما بعد يوم الثلاثاء "
|
703 |
"الأول من الشهر."
|
704 |
|
705 |
-
#:
|
706 |
msgid ""
|
707 |
"This option will also download the database if the local filesize is less "
|
708 |
"than 1k (which usually means the stub that comes with the plugin is still in "
|
@@ -712,101 +1347,97 @@ msgstr ""
|
|
712 |
"(الذي يعني عادة أن طرف البرنامج التي تأتي مع البرنامج المساعد لا يزال في "
|
713 |
"مكانه)."
|
714 |
|
715 |
-
#:
|
716 |
msgid "Populate missing GeoIP after update of GeoIP DB"
|
717 |
msgstr "تعبئة GeoIP في عداد المفقودين بعد التحديث من GeoIP DB"
|
718 |
|
719 |
-
#:
|
720 |
msgid "Update any missing GeoIP data after downloading a new database."
|
721 |
msgstr "تحديث أي بيانات GeoIP مفقودة بعد تحميل قاعدة البيانات الجديدة."
|
722 |
|
723 |
-
#:
|
724 |
msgid "Updated %s GeoIP records in the visitors database."
|
725 |
msgstr "تحديث السجلات %s GeoIP في قاعدة بيانات الزوار."
|
726 |
|
727 |
-
#:
|
728 |
msgid "Version Info"
|
729 |
msgstr "معلومات الإصدار"
|
730 |
|
731 |
-
#:
|
732 |
msgid "WP Statistics Version"
|
733 |
msgstr "نسخة WP Statistics"
|
734 |
|
735 |
-
#:
|
736 |
msgid "The WP Statistics version you are running."
|
737 |
msgstr "إصدار WP Statistics."
|
738 |
|
739 |
-
#:
|
740 |
msgid "PHP Version"
|
741 |
msgstr "نسخة PHP"
|
742 |
|
743 |
-
#:
|
744 |
msgid "The PHP version you are running."
|
745 |
msgstr "إصدار PHP."
|
746 |
|
747 |
-
#:
|
748 |
msgid "jQuery Version"
|
749 |
msgstr "نسخة jQuery"
|
750 |
|
751 |
-
#:
|
752 |
msgid "The jQuery version you are running."
|
753 |
msgstr "إصدار jQuery."
|
754 |
|
755 |
-
#:
|
756 |
msgid "Error could not open downloaded GeoIP database for reading: %s"
|
757 |
msgstr "خطأ لا يمكن فتح قاعدة البيانات GeoIP التي تم تحميلها للقراءة: %s"
|
758 |
|
759 |
-
#:
|
760 |
msgid "Error could not open destination GeoIP database for writing %s"
|
761 |
msgstr "خطأ لا يمكن فتح قاعدة البيانات GeoIP لجهة الكتابة %s"
|
762 |
|
763 |
-
#:
|
764 |
msgid "GeoIP Database updated successfully!"
|
765 |
msgstr "تم تحديث قاعدة بيانات GeoIP بنجاح!"
|
766 |
|
767 |
-
#:
|
768 |
msgid "Client Info"
|
769 |
msgstr "معلومات العميل"
|
770 |
|
771 |
-
#:
|
772 |
msgid "Client IP"
|
773 |
msgstr "IP العميل"
|
774 |
|
775 |
-
#:
|
776 |
msgid "The client IP address."
|
777 |
msgstr "عنوان IP للعميل."
|
778 |
|
779 |
-
#:
|
780 |
msgid "User Agent"
|
781 |
msgstr "وكيل المستخدم"
|
782 |
|
783 |
-
#:
|
784 |
msgid "The client user agent string."
|
785 |
msgstr "سلسلة عامل المستخدم العميل."
|
786 |
|
787 |
-
#:
|
788 |
-
msgid "Get updates for the location and the countries, this may take a while"
|
789 |
-
msgstr "الحصول على تحديثات للموقع والدول، وهذا قد يستغرق بعض الوقت"
|
790 |
-
|
791 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:104
|
792 |
msgid "Exclude User Roles"
|
793 |
msgstr "استبعاد أدوار المستخدم"
|
794 |
|
795 |
-
#:
|
796 |
-
#:
|
797 |
-
#:
|
798 |
msgid "Exclude"
|
799 |
msgstr "منع"
|
800 |
|
801 |
-
#:
|
802 |
msgid "Exclude %s role from data collection."
|
803 |
msgstr "استبعاد دور %s من جمع البيانات."
|
804 |
|
805 |
-
#:
|
806 |
msgid "IP/Robot Exclusions"
|
807 |
msgstr "استثناءات IP/Robot"
|
808 |
|
809 |
-
#:
|
810 |
msgid ""
|
811 |
"A list of words (one per line) to match against to detect robots. Entries "
|
812 |
"must be at least 4 characters long or they will be ignored."
|
@@ -814,926 +1445,659 @@ msgstr ""
|
|
814 |
"قائمة من الكلمات (واحد في كل سطر) لمطابقة ضد للكشف عن الروبوتات. يجب أن تكون "
|
815 |
"إدخالات 4 أحرف على الأقل أو أنها سيتم تجاهلها."
|
816 |
|
817 |
-
#:
|
818 |
msgid "Reset to Default"
|
819 |
msgstr "إعادة تعيين إلى الافتراضي"
|
820 |
|
821 |
-
#:
|
822 |
msgid "Add 10.0.0.0"
|
823 |
msgstr "إضافة 10.0.0.0"
|
824 |
|
825 |
-
#:
|
826 |
msgid "Add 172.16.0.0"
|
827 |
msgstr "إضافة 172.16.0.0"
|
828 |
|
829 |
-
#:
|
830 |
msgid "Add 192.168.0.0"
|
831 |
msgstr "إضافة 192.168.0.0"
|
832 |
|
833 |
-
#:
|
834 |
msgid "Charts"
|
835 |
msgstr "الرسوم البيانية"
|
836 |
|
837 |
-
#:
|
838 |
msgid ""
|
839 |
"For get more information and location (country) from visitor, enable this "
|
840 |
"feature."
|
841 |
msgstr ""
|
842 |
"للحصول على مزيد من المعلومات، والمكان (البلد) من الزوار، تمكين هذه الميزة."
|
843 |
|
844 |
-
#:
|
845 |
-
msgid "Complete statistics for your blog."
|
846 |
-
msgstr "الإحصائيات الكاملة للمدونة الخاصة بك."
|
847 |
-
|
848 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:203
|
849 |
msgid "Overview"
|
850 |
msgstr "نظرة عامة"
|
851 |
|
852 |
-
#:
|
853 |
-
#:
|
|
|
854 |
msgid "Countries"
|
855 |
msgstr "الدول"
|
856 |
|
857 |
-
#:
|
858 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:208
|
859 |
msgid "Hits"
|
860 |
msgstr "نقرات"
|
861 |
|
862 |
-
#:
|
863 |
msgid "Referers"
|
864 |
msgstr "المراجع"
|
865 |
|
866 |
-
#:
|
867 |
msgid "Searches"
|
868 |
msgstr "عمليات البحث"
|
869 |
|
870 |
-
#:
|
871 |
msgid "Search Words"
|
872 |
msgstr "كلمات البحث"
|
873 |
|
874 |
-
#:
|
875 |
msgid "Second"
|
876 |
msgstr "ثانية"
|
877 |
|
878 |
-
#:
|
879 |
msgid "Browser Statistics"
|
880 |
msgstr "إحصائيات المتصفح"
|
881 |
|
882 |
-
#:
|
883 |
-
msgid "Browsers by Type"
|
884 |
-
msgstr "المتصفحات حسب النوع"
|
885 |
-
|
886 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:130
|
887 |
msgid "Platform"
|
888 |
msgstr "المنصة"
|
889 |
|
890 |
-
#:
|
891 |
-
msgid "Browsers by Platform"
|
892 |
-
msgstr "المتصفحات حسب المنصة"
|
893 |
-
|
894 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:194
|
895 |
-
msgid "Platform share"
|
896 |
-
msgstr "مشاركة المنصة"
|
897 |
-
|
898 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:274
|
899 |
msgid "%s Version"
|
900 |
msgstr "الإصدار %s"
|
901 |
|
902 |
-
#:
|
903 |
-
msgid "Browser version share"
|
904 |
-
msgstr "نسخة متصفح المشارك"
|
905 |
-
|
906 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:17
|
907 |
msgid "Hit Statistics"
|
908 |
msgstr "احصائية النقرات"
|
909 |
|
910 |
-
#:
|
911 |
-
#:
|
912 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:33
|
913 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
|
914 |
msgid "10 Days"
|
915 |
msgstr "10 أيام"
|
916 |
|
917 |
-
#:
|
918 |
-
#:
|
919 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:34
|
920 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
|
921 |
msgid "20 Days"
|
922 |
msgstr "20 يوم"
|
923 |
|
924 |
-
#:
|
925 |
-
#:
|
926 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:35
|
927 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:23
|
928 |
msgid "30 Days"
|
929 |
msgstr "30 يو م"
|
930 |
|
931 |
-
#:
|
932 |
-
#:
|
933 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:36
|
934 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:24
|
935 |
msgid "2 Months"
|
936 |
msgstr "شهرين"
|
937 |
|
938 |
-
#:
|
939 |
-
#:
|
940 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:37
|
941 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:25
|
942 |
msgid "3 Months"
|
943 |
msgstr "3 أشهر"
|
944 |
|
945 |
-
#:
|
946 |
-
#:
|
947 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:38
|
948 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:26
|
949 |
msgid "6 Months"
|
950 |
msgstr "6 أشهر"
|
951 |
|
952 |
-
#:
|
953 |
-
#:
|
954 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:39
|
955 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:27
|
956 |
msgid "9 Months"
|
957 |
msgstr "9 أشهر"
|
958 |
|
959 |
-
#:
|
960 |
-
#:
|
961 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:40
|
962 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:28
|
963 |
msgid "1 Year"
|
964 |
msgstr "سنة"
|
965 |
|
966 |
-
#:
|
967 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:377
|
968 |
msgid "Hits Statistical Chart"
|
969 |
msgstr "الرسم البياني لعدد النقرات"
|
970 |
|
971 |
-
#:
|
972 |
-
|
973 |
-
|
974 |
-
|
975 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:87
|
976 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:52
|
977 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:52
|
978 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:159
|
979 |
msgid "days"
|
980 |
msgstr "أيام"
|
981 |
|
982 |
-
#:
|
|
|
983 |
msgid "Top 10 Countries"
|
984 |
msgstr "أعلى 10 دول"
|
985 |
|
986 |
-
#:
|
987 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:28
|
988 |
msgid "Rank"
|
989 |
msgstr "الترتيب"
|
990 |
|
991 |
-
#:
|
992 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:29
|
993 |
msgid "Flag"
|
994 |
msgstr "العلم"
|
995 |
|
996 |
-
#:
|
997 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:31
|
998 |
msgid "Visitor Count"
|
999 |
msgstr "عدد الزوار"
|
1000 |
|
1001 |
-
#:
|
1002 |
-
msgid ""
|
1003 |
-
"Please donate to WP Statistics. With your help WP Statistics will rule the "
|
1004 |
-
"world!"
|
1005 |
-
msgstr ""
|
1006 |
-
"يرجى التبرع لمنتج WP Statistics, فبتبرعكم سوف نصل بمنتج WP Statistics الى "
|
1007 |
-
"سيادة الووردبريس."
|
1008 |
-
|
1009 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:472
|
1010 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:36
|
1011 |
msgid "Search Engine Referrers Statistical Chart"
|
1012 |
msgstr "الرسم البياني لمحركات البحث"
|
1013 |
|
1014 |
-
#:
|
1015 |
-
msgid "Search Engine Referrers Statistics"
|
1016 |
-
msgstr "احصائيات محركات البحث"
|
1017 |
-
|
1018 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:52
|
1019 |
-
msgid "Referrer search engine chart in the last"
|
1020 |
-
msgstr "الرسم البياني لمحرك بحث المرجعية في الماضي"
|
1021 |
-
|
1022 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:19
|
1023 |
msgid "Top Countries"
|
1024 |
msgstr "أفضل الدول"
|
1025 |
|
1026 |
-
#:
|
1027 |
-
msgid "<code>%s</code> agent data deleted successfully."
|
1028 |
-
msgstr "<code>%s</code> حذف بيانات الوكيل بنجاح."
|
1029 |
-
|
1030 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:14
|
1031 |
-
msgid "<code>%s</code> platform data deleted successfully."
|
1032 |
-
msgstr "<code>%s</code> حذف بيانات المنصة بنجاح."
|
1033 |
-
|
1034 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:168
|
1035 |
msgid "Delete User Agent Types"
|
1036 |
msgstr "حذف أنواع وكيل العضو"
|
1037 |
|
1038 |
-
#:
|
1039 |
msgid "Delete Agents"
|
1040 |
msgstr "حذف الوكلاء"
|
1041 |
|
1042 |
-
#:
|
1043 |
msgid "All visitor data will be lost for this agent type."
|
1044 |
msgstr "سيتم فقد جميع البيانات الزائر لهذا النوع."
|
1045 |
|
1046 |
-
#:
|
1047 |
-
#:
|
1048 |
msgid "Delete now!"
|
1049 |
msgstr "حذف الآن!"
|
1050 |
|
1051 |
-
#:
|
1052 |
msgid "Delete Platforms"
|
1053 |
msgstr "حذف المنصات"
|
1054 |
|
1055 |
-
#:
|
1056 |
msgid "All visitor data will be lost for this platform type."
|
1057 |
msgstr "سيتم فقد جميع البيانات الزائر لنوع هذه المنصة."
|
1058 |
|
1059 |
-
#:
|
1060 |
msgid "GeoIP Options"
|
1061 |
msgstr "خيارات GeoIP"
|
1062 |
|
1063 |
-
#:
|
1064 |
msgid "Store entire user agent string"
|
1065 |
msgstr "تخزين كامل سلسلة عامل المستخدم"
|
1066 |
|
1067 |
-
#:
|
1068 |
msgid "Only enabled for debugging"
|
1069 |
msgstr "تمكين فقط من أجل التصحيح"
|
1070 |
|
1071 |
-
#:
|
1072 |
msgid "GeoIP settings"
|
1073 |
msgstr "إعدادات GeoIP"
|
1074 |
|
1075 |
-
#:
|
1076 |
msgid "GeoIP collection"
|
1077 |
msgstr "مجموعة GeoIP"
|
1078 |
|
1079 |
-
#:
|
1080 |
msgid "Update GeoIP Info"
|
1081 |
msgstr "تحديث معلومات GeoIP"
|
1082 |
|
1083 |
-
#:
|
1084 |
msgid "Download GeoIP Database"
|
1085 |
msgstr "تحميل قاعدة بيانات GeoIP"
|
1086 |
|
1087 |
-
#:
|
|
|
1088 |
msgid "Save changes on this page to download the update."
|
1089 |
msgstr "حفظ التغييرات على هذه الصفحة لتحميل التحديث."
|
1090 |
|
1091 |
-
#:
|
1092 |
-
#:
|
1093 |
-
#:
|
1094 |
-
#:
|
1095 |
msgid "Are you sure?"
|
1096 |
msgstr "هل أنت متأكد؟"
|
1097 |
|
1098 |
-
#:
|
1099 |
msgid "Clear now!"
|
1100 |
msgstr "مسح الآن!"
|
1101 |
|
1102 |
-
#:
|
1103 |
msgid "Optimization"
|
1104 |
msgstr "التحسين"
|
1105 |
|
1106 |
-
#:
|
1107 |
-
#:
|
1108 |
-
#:
|
1109 |
-
#:
|
1110 |
-
#:
|
1111 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/manual/manual.php:5
|
1112 |
msgid "Access denied!"
|
1113 |
msgstr "تم رفض الوصول!"
|
1114 |
|
1115 |
-
#:
|
1116 |
-
|
1117 |
-
|
1118 |
-
|
1119 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:18
|
1120 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:18
|
1121 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:44
|
1122 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:59
|
1123 |
msgid "Please select the desired items."
|
1124 |
msgstr "يرجى تحديد العناصر المطلوبة."
|
1125 |
|
1126 |
-
#:
|
1127 |
msgid "Resources"
|
1128 |
msgstr "الموارد"
|
1129 |
|
1130 |
-
#:
|
1131 |
-
#:
|
1132 |
msgid "Memory usage in PHP"
|
1133 |
msgstr "استخدام الذاكرة في PHP"
|
1134 |
|
1135 |
-
#:
|
1136 |
msgid "Byte"
|
1137 |
msgstr "بايت"
|
1138 |
|
1139 |
-
#:
|
1140 |
-
#:
|
1141 |
-
#:
|
1142 |
-
#:
|
1143 |
-
#:
|
1144 |
msgid "Row"
|
1145 |
msgstr "صف"
|
1146 |
|
1147 |
-
#:
|
1148 |
-
#:
|
1149 |
-
#:
|
1150 |
-
#:
|
1151 |
-
#:
|
1152 |
msgid "Number of rows"
|
1153 |
msgstr "عدد الصفوف"
|
1154 |
|
1155 |
-
#:
|
1156 |
-
#:
|
1157 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:117
|
1158 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:12
|
1159 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:4
|
1160 |
msgid "Export"
|
1161 |
msgstr "تصدير"
|
1162 |
|
1163 |
-
#:
|
1164 |
msgid "Export from"
|
1165 |
msgstr "التصدير من"
|
1166 |
|
1167 |
-
#:
|
1168 |
msgid "Select the table for the output file."
|
1169 |
msgstr "حدد الجدول لملف الإخراج."
|
1170 |
|
1171 |
-
#:
|
1172 |
msgid "Export To"
|
1173 |
msgstr "التصدير إلى"
|
1174 |
|
1175 |
-
#:
|
1176 |
msgid "Select the output file type."
|
1177 |
msgstr "حدد نوع ملف الإخراج."
|
1178 |
|
1179 |
-
#:
|
1180 |
msgid "Start Now!"
|
1181 |
msgstr "ابدأ الآن!"
|
1182 |
|
1183 |
-
#:
|
1184 |
msgid "Empty Table"
|
1185 |
msgstr "تفريغ الجدول"
|
1186 |
|
1187 |
-
#:
|
1188 |
msgid "All data table will be lost."
|
1189 |
msgstr "سيتم فقدان جميع البيانات الجدول."
|
1190 |
|
1191 |
-
#:
|
1192 |
-
msgid "Hits chart in the last 20 days"
|
1193 |
-
msgstr "مخطط الفعاليات في الـ20 يوماً الماضية"
|
1194 |
-
|
1195 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:488
|
1196 |
-
msgid "Referrer search engine chart in the last 20 days"
|
1197 |
-
msgstr "مرجعية محرك البحث التخطيطي في الـ20 يوما الماضية"
|
1198 |
-
|
1199 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:511
|
1200 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:76
|
1201 |
-
msgid "Number of referrer"
|
1202 |
-
msgstr "عدد الإحالات"
|
1203 |
-
|
1204 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:216
|
1205 |
-
msgid "Chart type"
|
1206 |
-
msgstr "نوع الرسم البياني"
|
1207 |
-
|
1208 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:222
|
1209 |
-
msgid "Line"
|
1210 |
-
msgstr "سطر"
|
1211 |
-
|
1212 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:223
|
1213 |
-
msgid "Spline"
|
1214 |
-
msgstr "شريحة"
|
1215 |
-
|
1216 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:224
|
1217 |
-
msgid "Area"
|
1218 |
-
msgstr "منطقة"
|
1219 |
-
|
1220 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:225
|
1221 |
-
msgid "Area Spline"
|
1222 |
-
msgstr "منطقة منحنية"
|
1223 |
-
|
1224 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:226
|
1225 |
-
msgid "Column"
|
1226 |
-
msgstr "عمود"
|
1227 |
-
|
1228 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:227
|
1229 |
-
msgid "Bar"
|
1230 |
-
msgstr "شريط"
|
1231 |
-
|
1232 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:228
|
1233 |
-
msgid "Scatter"
|
1234 |
-
msgstr "تبعثر"
|
1235 |
-
|
1236 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:230
|
1237 |
-
msgid "Chart type in view stats."
|
1238 |
-
msgstr "نوع الرسم البياني في مشاهدة البيانات."
|
1239 |
-
|
1240 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:337
|
1241 |
msgid "Support"
|
1242 |
msgstr "دعم"
|
1243 |
|
1244 |
-
#:
|
1245 |
msgid "Farsi"
|
1246 |
msgstr "فارسي"
|
1247 |
|
1248 |
-
#:
|
1249 |
msgid "Referring sites from"
|
1250 |
msgstr "مواقع اشارة من"
|
1251 |
|
1252 |
-
#:
|
1253 |
msgid "Translations"
|
1254 |
msgstr "الترجمات"
|
1255 |
|
1256 |
-
#:
|
1257 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:4
|
1258 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:4
|
1259 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:4
|
1260 |
msgid "To be added soon"
|
1261 |
msgstr "تضاف قريبا"
|
1262 |
|
1263 |
-
#:
|
1264 |
-
#:
|
1265 |
-
#:
|
1266 |
-
#:
|
1267 |
-
#:
|
1268 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:247
|
1269 |
msgid "Map"
|
1270 |
msgstr "خريطة"
|
1271 |
|
1272 |
-
#:
|
1273 |
-
#:
|
1274 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:167
|
1275 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:132
|
1276 |
msgid "Page"
|
1277 |
msgstr "صفحة"
|
1278 |
|
1279 |
-
#:
|
1280 |
-
#:
|
1281 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:167
|
1282 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:132
|
1283 |
msgid "From"
|
1284 |
msgstr "من"
|
1285 |
|
1286 |
-
#:
|
1287 |
msgid "Table plugin does not exist! Please disable and re-enable the plugin."
|
1288 |
msgstr ""
|
1289 |
"هناك جدول مفقود في البرنامج المساعد! الرجاء تعطيل البرنامج المساعد ومن ثم "
|
1290 |
"تفعيلة مرة أخرى."
|
1291 |
|
1292 |
-
#:
|
1293 |
-
#:
|
1294 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:110
|
1295 |
msgid "Statistical reporting"
|
1296 |
msgstr "تقارير الإحصائيات"
|
1297 |
|
1298 |
-
#:
|
1299 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:6
|
1300 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:201
|
1301 |
msgid "Statistics"
|
1302 |
msgstr "الاحصائيات"
|
1303 |
|
1304 |
-
#:
|
1305 |
-
|
1306 |
-
msgstr "إظهار إحصائيات الموقع في الشريط الجانبي"
|
1307 |
-
|
1308 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:36
|
1309 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:9
|
1310 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:348
|
1311 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:19
|
1312 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:256
|
1313 |
msgid "User Online"
|
1314 |
msgstr "المتواجدين الآن"
|
1315 |
|
1316 |
-
#:
|
1317 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:350
|
1318 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:26
|
1319 |
msgid "Today Visit"
|
1320 |
msgstr "زيارات اليوم"
|
1321 |
|
1322 |
-
#:
|
1323 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:349
|
1324 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:33
|
1325 |
msgid "Today Visitor"
|
1326 |
msgstr "زوار اليوم"
|
1327 |
|
1328 |
-
#:
|
1329 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:40
|
1330 |
msgid "Yesterday Visit"
|
1331 |
msgstr "زيارات الأمس"
|
1332 |
|
1333 |
-
#:
|
1334 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:351
|
1335 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:47
|
1336 |
msgid "Yesterday Visitor"
|
1337 |
msgstr "زوار الأمس"
|
1338 |
|
1339 |
-
#:
|
1340 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:54
|
1341 |
msgid "Week Visit"
|
1342 |
msgstr "زيارات الأسبوع"
|
1343 |
|
1344 |
-
#:
|
1345 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:61
|
1346 |
msgid "Month Visit"
|
1347 |
msgstr "زيارات الشهر"
|
1348 |
|
1349 |
-
#:
|
1350 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:68
|
1351 |
msgid "Years Visit"
|
1352 |
msgstr "زيارات السنة"
|
1353 |
|
1354 |
-
#:
|
1355 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:354
|
1356 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:75
|
1357 |
msgid "Total Visit"
|
1358 |
msgstr "مجموع الزيارات"
|
1359 |
|
1360 |
-
#:
|
1361 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:353
|
1362 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:82
|
1363 |
msgid "Total Visitor"
|
1364 |
msgstr "مجموع الزوار"
|
1365 |
|
1366 |
-
#:
|
1367 |
-
msgid "Search Engine reffered"
|
1368 |
-
msgstr "محركات البحث"
|
1369 |
-
|
1370 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:62
|
1371 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:104
|
1372 |
msgid "Total Posts"
|
1373 |
msgstr "إجمالي المشاركات"
|
1374 |
|
1375 |
-
#:
|
1376 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:111
|
1377 |
msgid "Total Pages"
|
1378 |
msgstr "إجمالي الصفحات"
|
1379 |
|
1380 |
-
#:
|
1381 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:118
|
1382 |
msgid "Total Comments"
|
1383 |
msgstr "إجمالي التعليقات"
|
1384 |
|
1385 |
-
#:
|
1386 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:125
|
1387 |
msgid "Total Spams"
|
1388 |
msgstr "إجمالي السبام"
|
1389 |
|
1390 |
-
#:
|
1391 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:132
|
1392 |
msgid "Total Users"
|
1393 |
msgstr "عدد الاعضاء"
|
1394 |
|
1395 |
-
#:
|
1396 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:139
|
1397 |
msgid "Average Posts"
|
1398 |
msgstr "متوسط المشاركات"
|
1399 |
|
1400 |
-
#:
|
1401 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:146
|
1402 |
msgid "Average Comments"
|
1403 |
msgstr "متوسط التعليقات"
|
1404 |
|
1405 |
-
#:
|
1406 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:153
|
1407 |
msgid "Average Users"
|
1408 |
msgstr "متوسط الاعضاء"
|
1409 |
|
1410 |
-
#:
|
1411 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:160
|
1412 |
msgid "Last Post Date"
|
1413 |
msgstr "تاريخ آخر مشاركة"
|
1414 |
|
1415 |
-
#:
|
1416 |
msgid "View Stats"
|
1417 |
msgstr "عرض الإحصائيات"
|
1418 |
|
1419 |
-
#:
|
1420 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:217
|
1421 |
msgid "Settings"
|
1422 |
msgstr "الإعدادات"
|
1423 |
|
1424 |
-
#:
|
1425 |
msgid "Today visitor"
|
1426 |
msgstr "زوار اليوم"
|
1427 |
|
1428 |
-
#:
|
1429 |
msgid "Today visit"
|
1430 |
msgstr "زيارات اليوم"
|
1431 |
|
1432 |
-
#:
|
1433 |
msgid "Yesterday visitor"
|
1434 |
msgstr "زيارات الأمس"
|
1435 |
|
1436 |
-
#:
|
1437 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:276
|
1438 |
msgid "Yesterday visit"
|
1439 |
msgstr "زيارات الأمس"
|
1440 |
|
1441 |
-
#:
|
1442 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:450
|
1443 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:543
|
1444 |
msgid "You do not have sufficient permissions to access this page."
|
1445 |
msgstr "ليس لديك الصلاحيات الكافية لدخول هذه الصفحة."
|
1446 |
|
1447 |
-
#:
|
1448 |
-
#:
|
1449 |
-
#:
|
1450 |
-
#:
|
1451 |
-
#:
|
1452 |
-
#:
|
1453 |
-
#:
|
1454 |
-
#:
|
1455 |
-
#:
|
1456 |
-
#:
|
1457 |
-
#:
|
1458 |
-
#:
|
1459 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:376
|
1460 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:471
|
1461 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:581
|
1462 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:628
|
1463 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:663
|
1464 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:712
|
1465 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:47
|
1466 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:35
|
1467 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:18
|
1468 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:117
|
1469 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:45
|
1470 |
msgid "Click to toggle"
|
1471 |
msgstr "انقر للتبديل"
|
1472 |
|
1473 |
-
#:
|
1474 |
msgid "Summary Statistics"
|
1475 |
msgstr "ملخص الاحصائيات"
|
1476 |
|
1477 |
-
#:
|
1478 |
-
#:
|
1479 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:442
|
1480 |
msgid "Visitor"
|
1481 |
msgstr "زائر"
|
1482 |
|
1483 |
-
#:
|
1484 |
-
#:
|
1485 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:452
|
1486 |
msgid "Visit"
|
1487 |
msgstr "زيارة"
|
1488 |
|
1489 |
-
#:
|
1490 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:92
|
1491 |
msgid "Today"
|
1492 |
msgstr "اليوم"
|
1493 |
|
1494 |
-
#:
|
1495 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:93
|
1496 |
msgid "Yesterday"
|
1497 |
msgstr "الأمس"
|
1498 |
|
1499 |
-
#:
|
1500 |
msgid "Week"
|
1501 |
msgstr "أسبوع"
|
1502 |
|
1503 |
-
#:
|
1504 |
msgid "Month"
|
1505 |
msgstr "الشهر"
|
1506 |
|
1507 |
-
#:
|
1508 |
msgid "Year"
|
1509 |
msgstr "سنة"
|
1510 |
|
1511 |
-
#:
|
1512 |
-
#:
|
1513 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:558
|
1514 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:123
|
1515 |
msgid "Total"
|
1516 |
msgstr "المجموع"
|
1517 |
|
1518 |
-
#:
|
1519 |
msgid "(Adjustment)"
|
1520 |
msgstr "(التوافق)"
|
1521 |
|
1522 |
-
#:
|
1523 |
-
#:
|
1524 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:204
|
1525 |
msgid "Browsers"
|
1526 |
msgstr "المتصفحات"
|
1527 |
|
1528 |
-
#:
|
1529 |
-
msgid "
|
1530 |
-
msgstr "
|
1531 |
-
|
1532 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:99
|
1533 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:217
|
1534 |
-
msgid "Browser share"
|
1535 |
-
msgstr "مشاركة بالمتصفح"
|
1536 |
|
1537 |
-
#:
|
1538 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:34
|
1539 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:49
|
1540 |
-
msgid "Top referring sites"
|
1541 |
-
msgstr "أعلى المواقع زيارة"
|
1542 |
-
|
1543 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:250
|
1544 |
msgid "Address"
|
1545 |
msgstr "العنوان"
|
1546 |
|
1547 |
-
#:
|
1548 |
-
msgid "Donate"
|
1549 |
-
msgstr "تبرع"
|
1550 |
-
|
1551 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:76
|
1552 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:416
|
1553 |
msgid "Number of visits and visitors"
|
1554 |
msgstr "عدد الزيارات والزوار"
|
1555 |
|
1556 |
-
#:
|
1557 |
-
|
1558 |
-
|
1559 |
-
msgid "Latest search words"
|
1560 |
-
msgstr "آخر كلمات البحث"
|
1561 |
|
1562 |
-
#:
|
1563 |
-
#:
|
1564 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:665
|
1565 |
msgid "Recent Visitors"
|
1566 |
msgstr "الزيارات الأخيرة"
|
1567 |
|
1568 |
-
#:
|
1569 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:30
|
1570 |
msgid "Country"
|
1571 |
msgstr "الدولة"
|
1572 |
|
1573 |
-
#:
|
1574 |
-
#:
|
1575 |
-
#:
|
1576 |
-
#:
|
1577 |
-
|
1578 |
-
|
1579 |
-
|
1580 |
-
#:
|
1581 |
-
#:
|
1582 |
-
#:
|
1583 |
-
#:
|
1584 |
-
#:
|
1585 |
-
#:
|
1586 |
-
#:
|
1587 |
-
#:
|
1588 |
-
#:
|
1589 |
-
#:
|
1590 |
-
#:
|
1591 |
-
#:
|
1592 |
-
#:
|
1593 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:257
|
1594 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:269
|
1595 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:281
|
1596 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:297
|
1597 |
msgid "Active"
|
1598 |
msgstr "تفعيل"
|
1599 |
|
1600 |
-
#:
|
1601 |
-
#:
|
1602 |
-
#:
|
1603 |
-
#:
|
1604 |
-
#:
|
1605 |
-
#:
|
1606 |
-
#:
|
1607 |
msgid "Enable or disable this feature"
|
1608 |
msgstr "تمكين أو تعطيل هذه الميزة"
|
1609 |
|
1610 |
-
#:
|
1611 |
-
#:
|
1612 |
-
#:
|
1613 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:65
|
1614 |
msgid "Visits"
|
1615 |
msgstr "مرة"
|
1616 |
|
1617 |
-
#:
|
1618 |
-
#:
|
1619 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:213
|
1620 |
msgid "Visitors"
|
1621 |
msgstr "الزوار"
|
1622 |
|
1623 |
-
#:
|
1624 |
msgid "Check for online users every"
|
1625 |
msgstr "تحقق من المتصلين في الموقع في كل"
|
1626 |
|
1627 |
-
#:
|
1628 |
msgid "Time for the check accurate online user in the site. Now: %s Second"
|
1629 |
msgstr "وقت التحقق من المستخدمين المتصلين في الموقع. الآن: %s ثانية"
|
1630 |
|
1631 |
-
#:
|
1632 |
msgid "Show stats in menu bar"
|
1633 |
msgstr "إظهار الاحصائيات في شريط القوائم"
|
1634 |
|
1635 |
-
#:
|
1636 |
msgid "No"
|
1637 |
msgstr "لا"
|
1638 |
|
1639 |
-
#:
|
1640 |
msgid "Yes"
|
1641 |
msgstr "نعم"
|
1642 |
|
1643 |
-
#:
|
1644 |
msgid "Show stats in admin menu bar"
|
1645 |
msgstr "اظهار الاحصائيات في شريط القوائم الإداري"
|
1646 |
|
1647 |
-
#:
|
1648 |
msgid "Coefficient per visitor"
|
1649 |
msgstr "درجة لكل زائر"
|
1650 |
|
1651 |
-
#:
|
1652 |
msgid "For each visit to account for several hits. Currently %s."
|
1653 |
msgstr "حساب توجيه النقرات لكل زائر. حالياً %s."
|
1654 |
|
1655 |
-
#:
|
1656 |
-
msgid "Time send"
|
1657 |
-
msgstr "وقت الارسال"
|
1658 |
-
|
1659 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:25
|
1660 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:43
|
1661 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:137
|
1662 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:178
|
1663 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:202
|
1664 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:221
|
1665 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:310
|
1666 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:326
|
1667 |
-
msgid "Please select."
|
1668 |
-
msgstr "الرجاء اختيار."
|
1669 |
-
|
1670 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:311
|
1671 |
-
msgid "Hourly"
|
1672 |
-
msgstr "كل ساعة"
|
1673 |
-
|
1674 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:312
|
1675 |
-
msgid "Twice daily"
|
1676 |
-
msgstr "مرتين يوميا"
|
1677 |
-
|
1678 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:313
|
1679 |
-
msgid "daily"
|
1680 |
-
msgstr "يوميا"
|
1681 |
-
|
1682 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:315
|
1683 |
msgid "Select when receiving statistics report."
|
1684 |
msgstr "حدد عند استلام إحصاءات التقرير."
|
1685 |
|
1686 |
-
#:
|
1687 |
-
msgid "Send Statistical reporting to"
|
1688 |
-
msgstr "إرسال تقارير الإحصائيات إلى"
|
1689 |
-
|
1690 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:327
|
1691 |
msgid "Email"
|
1692 |
msgstr "البريد الإلكتروني"
|
1693 |
|
1694 |
-
#:
|
1695 |
msgid "SMS"
|
1696 |
msgstr "رسائل نصية"
|
1697 |
|
1698 |
-
#:
|
1699 |
msgid "Type Select Get Status Report."
|
1700 |
msgstr "حدد نوع الحصول على التقرير."
|
1701 |
|
1702 |
-
#:
|
1703 |
-
msgid ""
|
1704 |
-
"Note: To send SMS text messages please install the <a href=\"%s\" target="
|
1705 |
-
"\"_blank\">Wordpress SMS</a> plugin."
|
1706 |
-
msgstr ""
|
1707 |
-
"ملاحظة: لإرسال الرسائل النصية SMS الرجاء تثبيت البرنامج المساعد <a href=\"%s"
|
1708 |
-
"\" target=\"_blank\">Wordpress SMS</a>."
|
1709 |
-
|
1710 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:340
|
1711 |
-
msgid "Send Content Report"
|
1712 |
-
msgstr "أرسل المحتوى"
|
1713 |
-
|
1714 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:345
|
1715 |
msgid "Enter the contents of the reports received."
|
1716 |
msgstr "أدخل محتويات التقارير الواردة."
|
1717 |
|
1718 |
-
#:
|
1719 |
-
msgid "Input data:"
|
1720 |
-
msgstr "إدخال البيانات:"
|
1721 |
-
|
1722 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:2
|
1723 |
msgid "Name"
|
1724 |
msgstr "الأسم"
|
1725 |
|
1726 |
-
#:
|
1727 |
msgid "Items"
|
1728 |
msgstr "البنود"
|
1729 |
|
1730 |
-
#:
|
1731 |
msgid "Select type of search engine"
|
1732 |
msgstr "حدد نوع من محرك البحث"
|
1733 |
|
1734 |
-
#:
|
1735 |
-
#:
|
1736 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:143
|
1737 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:58
|
1738 |
msgid "All"
|
1739 |
msgstr "الكل"
|
2 |
# This file is distributed under the same license as the Wordpress Statistics package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2014-10-14 17:14-0500\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
|
10 |
"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
11 |
+
"X-Generator: Poedit 1.6.9\n"
|
12 |
"Project-Id-Version: Wordpress Statistics\n"
|
13 |
"POT-Creation-Date: \n"
|
14 |
"Last-Translator: \n"
|
15 |
"Language-Team: \n"
|
16 |
"Language: ar\n"
|
17 |
|
18 |
+
#: includes/log/widgets/about.php:8
|
19 |
+
msgid "About WP Statistics Version %s"
|
20 |
+
msgstr "حول إحصائيات الفسفور الأبيض الإصدار %s"
|
21 |
+
|
22 |
+
#: includes/log/widgets/summary.php:106
|
23 |
+
msgid "Date: %s"
|
24 |
+
msgstr "تاريخ: %s"
|
25 |
+
|
26 |
+
#: includes/log/widgets/summary.php:110
|
27 |
+
msgid "Time: %s"
|
28 |
+
msgstr "الوقت: %s"
|
29 |
+
|
30 |
+
#: includes/optimization/delete-agents.php:14
|
31 |
+
msgid "%s agent data deleted successfully."
|
32 |
+
msgstr "%s عامل البيانات المحذوفة بنجاح."
|
33 |
+
|
34 |
+
#: includes/optimization/delete-platforms.php:14
|
35 |
+
msgid "%s platform data deleted successfully."
|
36 |
+
msgstr "%s منصة البيانات المحذوفة بنجاح."
|
37 |
+
|
38 |
+
#: includes/optimization/empty.php:53
|
39 |
+
msgid "%s table data deleted successfully."
|
40 |
+
msgstr "بيانات الجدول %s حذف بنجاح."
|
41 |
+
|
42 |
+
#: includes/optimization/purge-data.php:17
|
43 |
+
#: includes/optimization/purge-data.php:27
|
44 |
+
#: includes/optimization/purge-data.php:37
|
45 |
+
#: includes/optimization/purge-data.php:47
|
46 |
+
msgid "%s data older than %s days purged successfully."
|
47 |
+
msgstr "%s البيانات الأقدم من الأيام %s إزالة بنجاح."
|
48 |
+
|
49 |
+
#: includes/optimization/purge-data.php:19
|
50 |
+
#: includes/optimization/purge-data.php:29
|
51 |
+
#: includes/optimization/purge-data.php:39
|
52 |
+
#: includes/optimization/purge-data.php:49
|
53 |
+
msgid "No records found to purge from %s!"
|
54 |
+
msgstr "لا توجد سجلات وجدت لتطهير من %s!"
|
55 |
+
|
56 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:44
|
57 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:55
|
58 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:66
|
59 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:77
|
60 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:88
|
61 |
+
msgid "Number of rows in the %s table"
|
62 |
+
msgstr "عدد الصفوف في الجدول %s"
|
63 |
+
|
64 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:211
|
65 |
+
msgid "browscap Cache File"
|
66 |
+
msgstr "برووسكاب \"ملف ذاكرة التخزين المؤقت\""
|
67 |
+
|
68 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:220
|
69 |
+
msgid "browscap cache file does not exist."
|
70 |
+
msgstr "برووسكاب ذاكرة التخزين المؤقت للملف غير موجود."
|
71 |
+
|
72 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:224
|
73 |
+
msgid "The file size and date of the browscap cache file."
|
74 |
+
msgstr "حجم الملف وتاريخ من ملف ذاكرة التخزين المؤقت browscap."
|
75 |
+
|
76 |
+
#: includes/settings/tabs/wps-about.php:24
|
77 |
+
msgid ""
|
78 |
+
"Come visit our great new %s and keep up to date on the latest news about WP "
|
79 |
+
"Statistics."
|
80 |
msgstr ""
|
81 |
+
"تأتي زيارة لدينا %s جديدة كبيرة وتبقى حتى الآن على آخر الأخبار حول إحصائيات "
|
82 |
+
"الفسفور الأبيض."
|
83 |
|
84 |
+
#: includes/settings/tabs/wps-about.php:24
|
85 |
+
msgid "website"
|
86 |
+
msgstr "موقع على شبكة الإنترنت"
|
87 |
+
|
88 |
+
#: includes/settings/tabs/wps-about.php:40
|
89 |
+
msgid ""
|
90 |
+
"WP Statistics supports internationalization and we encourage our users to "
|
91 |
+
"submit translations, please visit our %s to see the current status and %s if "
|
92 |
+
"you would like to help."
|
93 |
+
msgstr ""
|
94 |
+
"الفسفور الأبيض إحصائيات تؤيد التدويل ونحن نشجع مستخدمينا تقديم ترجمات، يرجى "
|
95 |
+
"زيارة لنا %s لرؤية الوضع الحالي و %s إذا كنت ترغب في المساعدة."
|
96 |
+
|
97 |
+
#: includes/settings/tabs/wps-about.php:40
|
98 |
+
msgid "translation collaboration site"
|
99 |
+
msgstr "ترجمة التعاون الموقع"
|
100 |
+
|
101 |
+
#: includes/settings/tabs/wps-about.php:40
|
102 |
+
msgid "drop us a line"
|
103 |
+
msgstr "انخفاض خط لنا"
|
104 |
+
|
105 |
+
#: includes/settings/tabs/wps-about.php:52
|
106 |
+
#: includes/settings/tabs/wps-about.php:53
|
107 |
+
msgid "Have you read the %s?"
|
108 |
+
msgstr "هل قرأت %s؟"
|
109 |
+
|
110 |
+
#: includes/settings/tabs/wps-about.php:52
|
111 |
+
msgid "FAQs"
|
112 |
+
msgstr "أسئلة وأجوبة"
|
113 |
+
|
114 |
+
#: includes/settings/tabs/wps-about.php:53
|
115 |
+
msgid "manual"
|
116 |
+
msgstr "دليل"
|
117 |
+
|
118 |
+
#: includes/settings/tabs/wps-about.php:54
|
119 |
+
msgid "Have you search the %s for a similar issue?"
|
120 |
+
msgstr "قد يمكنك البحث عن %s لمشكلة مشابهة؟"
|
121 |
+
|
122 |
+
#: includes/settings/tabs/wps-about.php:54
|
123 |
+
msgid "support forum"
|
124 |
+
msgstr "منتدى الدعم"
|
125 |
+
|
126 |
+
#: includes/settings/tabs/wps-about.php:70
|
127 |
+
msgid ""
|
128 |
+
"Then please open a new thread on the %s and we'll respond as soon as "
|
129 |
+
"possible."
|
130 |
+
msgstr "ثم يرجى فتح موضوع جديد في %s وسوف نرد في أقرب وقت ممكن."
|
131 |
+
|
132 |
+
#: includes/settings/tabs/wps-about.php:70
|
133 |
+
msgid "WordPress.org support forum"
|
134 |
+
msgstr "منتدى الدعم WordPress.org"
|
135 |
+
|
136 |
+
#: includes/settings/tabs/wps-about.php:74
|
137 |
+
msgid "Alternatively %s support is available as well."
|
138 |
+
msgstr "وبدلاً من ذلك دعم %s يتوفر كذلك."
|
139 |
+
|
140 |
+
#: includes/settings/tabs/wps-access-level.php:85
|
141 |
+
msgid "See the %s for details on capability levels."
|
142 |
+
msgstr "انظر %s للحصول على تفاصيل بشأن مستويات القدرة."
|
143 |
+
|
144 |
+
#: includes/settings/tabs/wps-access-level.php:85
|
145 |
+
msgid "WordPress Roles and Capabilities page"
|
146 |
+
msgstr "صفحة وورد الأدوار والقدرات"
|
147 |
+
|
148 |
+
#: includes/settings/tabs/wps-general.php:67
|
149 |
+
msgid ""
|
150 |
+
"This feature will not store IP addresses in the database but instead used a "
|
151 |
+
"unique hash. The \"Store entire user agent string\" setting will be "
|
152 |
+
"disabled if this is selected. You will not be able to recover the IP "
|
153 |
+
"addresses in the future to recover location information if this is enabled."
|
154 |
+
msgstr ""
|
155 |
+
"هذه الميزة لن يقوم بتخزين عناوين IP في قاعدة البيانات ولكن بدلاً من ذلك "
|
156 |
+
"استخدام تجزئة فريدة من نوعها. String عامل المستخدم بأكمله \"Store\" سيتم "
|
157 |
+
"تعطيل الإعداد في حالة تحديد هذا الخيار. لا يمكنك استرداد عناوين IP في "
|
158 |
+
"المستقبل استرداد معلومات الموقع إذا كان هذا ممكناً."
|
159 |
+
|
160 |
+
#: includes/settings/tabs/wps-general.php:340
|
161 |
+
msgid "Note: To send SMS text messages please install the %s plugin."
|
162 |
+
msgstr ""
|
163 |
+
"ملاحظة: لإرسال الرسائل القصيرة نص الرسائل الرجاء تثبيت البرنامج المساعد %s."
|
164 |
+
|
165 |
+
#: includes/settings/tabs/wps-general.php:340
|
166 |
+
msgid "WordPress SMS"
|
167 |
+
msgstr "وورد SMS"
|
168 |
+
|
169 |
+
#: wp-statistics.php:27
|
170 |
+
msgid ""
|
171 |
+
"ERROR: WP Statistics has detected an unsupported version of PHP, WP "
|
172 |
+
"Statistics will not function without PHP Version "
|
173 |
+
msgstr ""
|
174 |
+
"خطأ: كشف الفسفور الأبيض إحصائيات عن إصدار غير معتمد من بي إتش بي، الفسفور "
|
175 |
+
"الأبيض إحصائيات لن تعمل دون \"إصدار بي إتش بي\" "
|
176 |
+
|
177 |
+
#: wp-statistics.php:27
|
178 |
+
msgid " or higher!"
|
179 |
+
msgstr "أو أعلى!"
|
180 |
+
|
181 |
+
#: wp-statistics.php:81
|
182 |
+
msgid ""
|
183 |
+
"Online user tracking in WP Statistics is not enabled, please go to %s and "
|
184 |
+
"enable it."
|
185 |
+
msgstr ""
|
186 |
+
"لم يتم تمكين تعقب في إحصائيات الفسفور الأبيض المستخدم عبر الإنترنت، يرجى "
|
187 |
+
"الذهاب إلى %s وتمكينه."
|
188 |
+
|
189 |
+
#: wp-statistics.php:81 wp-statistics.php:84 wp-statistics.php:87
|
190 |
+
msgid "setting page"
|
191 |
+
msgstr "صفحة الإعداد"
|
192 |
+
|
193 |
+
#: wp-statistics.php:84
|
194 |
+
msgid ""
|
195 |
+
"Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
|
196 |
+
msgstr ""
|
197 |
+
"لم يتم تمكين تعقب ضرب في إحصائيات الفسفور الأبيض، الرجاء الذهاب إلى %s "
|
198 |
+
"وتمكينه."
|
199 |
+
|
200 |
+
#: wp-statistics.php:87
|
201 |
+
msgid ""
|
202 |
+
"Visitor tracking in WP Statistics is not enabled, please go to %s and enable "
|
203 |
+
"it."
|
204 |
+
msgstr ""
|
205 |
+
"لم يتم تمكين الزائر تتبع في إحصائيات الفسفور الأبيض، الرجاء الذهاب إلى %s "
|
206 |
+
"وتمكينه."
|
207 |
+
|
208 |
+
#: wp-statistics.php:90
|
209 |
+
msgid ""
|
210 |
+
"GeoIP collection is not active, please go to %s and enable this feature."
|
211 |
+
msgstr "جمع GeoIP غير نشط، الرجاء الذهاب إلى %s، وتمكين هذه الميزة."
|
212 |
+
|
213 |
+
#: wp-statistics.php:90
|
214 |
+
msgid "Setting page > GeoIP"
|
215 |
+
msgstr "إعداد الصفحة > GeoIP"
|
216 |
+
|
217 |
+
msgid "http://wp-statistics.com/"
|
218 |
+
msgstr "http://wp-statistics.com/"
|
219 |
+
|
220 |
+
msgid "Mostafa Soufi & Greg Ross"
|
221 |
+
msgstr "مصطفى الصوفي & غريغ روس"
|
222 |
+
|
223 |
+
#: includes/settings/wps-settings.php:90
|
224 |
+
msgid "browscap"
|
225 |
+
msgstr "برووسكاب"
|
226 |
+
|
227 |
+
#: wp-statistics.php:706
|
228 |
+
msgid "Error downloading browscap database from: %s - %s"
|
229 |
+
msgstr "خطأ في تحميل قاعدة البيانات برووسكاب من: %s-%s"
|
230 |
+
|
231 |
+
#: wp-statistics.php:794
|
232 |
+
msgid "browscap database updated successfully!"
|
233 |
+
msgstr "برووسكاب قاعدة البيانات تحديث بنجاح!"
|
234 |
+
|
235 |
+
#: wp-statistics.php:802
|
236 |
+
msgid "browscap already at current version!"
|
237 |
+
msgstr "برووسكاب بالفعل في الإصدار الحالي!"
|
238 |
+
|
239 |
+
#: includes/optimization/tabs/wps-optimization-database.php:5
|
240 |
+
msgid "Database Setup"
|
241 |
+
msgstr "إعداد قاعدة البيانات"
|
242 |
+
|
243 |
+
#: includes/optimization/tabs/wps-optimization-database.php:10
|
244 |
+
msgid "Re-run Install"
|
245 |
+
msgstr "إعادة تشغيل التثبيت"
|
246 |
+
|
247 |
+
#: includes/optimization/tabs/wps-optimization-database.php:14
|
248 |
+
msgid "Install Now!"
|
249 |
+
msgstr "تثبيت الآن!"
|
250 |
+
|
251 |
+
#: includes/optimization/tabs/wps-optimization-database.php:15
|
252 |
+
msgid ""
|
253 |
+
"If for some reason your installation of WP Statistics is missing the "
|
254 |
+
"database tables or other core items, this will re-execute the install "
|
255 |
+
"process."
|
256 |
msgstr ""
|
257 |
+
"إذا كان لسبب ما يفتقد التثبيت الخاص بك من الفسفور الأبيض إحصائيات جداول "
|
258 |
+
"قاعدة البيانات أو العناصر الأساسية الأخرى، وهذا سوف إعادة تنفيذ عملية تثبيت."
|
259 |
+
|
260 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:163
|
261 |
+
msgid ""
|
262 |
+
"If the PHP BC Math Extension is installed. BC Math is no longer required "
|
263 |
+
"for the GeoIP code and is listed here only for historical reasons."
|
264 |
+
msgstr ""
|
265 |
+
"إذا كان يتم تثبيت \"ملحق الرياضيات\" قبل الميلاد بي. لم تعد مطلوبة للتعليمات "
|
266 |
+
"البرمجية GeoIP الرياضيات قبل الميلاد ويتم سرد هنا فقط لأسباب تاريخية."
|
267 |
+
|
268 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:168
|
269 |
+
msgid "File Info"
|
270 |
+
msgstr "معلومات الملف"
|
271 |
+
|
272 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:173
|
273 |
+
msgid "GeoIP Database"
|
274 |
+
msgstr "قاعدة GeoIP"
|
275 |
+
|
276 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:184
|
277 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:203
|
278 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:222
|
279 |
+
msgid ", created on "
|
280 |
+
msgstr "، التي تم إنشاؤها على "
|
281 |
+
|
282 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:186
|
283 |
+
msgid "The file size and date of the GeoIP database."
|
284 |
+
msgstr "حجم الملف وتاريخ من قاعدة GeoIP."
|
285 |
+
|
286 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:192
|
287 |
+
msgid "browscap.ini File"
|
288 |
+
msgstr "الملف browscap.ini"
|
289 |
+
|
290 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:201
|
291 |
+
msgid "browscap.ini file does not exist."
|
292 |
+
msgstr "عدم وجود الملف browscap.ini."
|
293 |
+
|
294 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:205
|
295 |
+
msgid "The file size and date of the browscap.ini file."
|
296 |
+
msgstr "حجم الملف وتاريخ من الملف browscap.ini."
|
297 |
+
|
298 |
+
#: includes/optimization/wps-optimization.php:51
|
299 |
+
msgid "Install routine complete."
|
300 |
+
msgstr "تثبيت روتين إكمال."
|
301 |
+
|
302 |
+
#: includes/settings/tabs/wps-browscap.php:17
|
303 |
+
msgid "browscap settings"
|
304 |
+
msgstr "إعدادات برووسكاب"
|
305 |
+
|
306 |
+
#: includes/settings/tabs/wps-browscap.php:22
|
307 |
+
msgid "browscap usage"
|
308 |
+
msgstr "استخدام برووسكاب"
|
309 |
+
|
310 |
+
#: includes/settings/tabs/wps-browscap.php:28
|
311 |
+
msgid "The browscap database will be downloaded and used to detect robots."
|
312 |
+
msgstr "سيتم تحميل قاعدة البيانات برووسكاب والمستخدمة للكشف عن الروبوتات."
|
313 |
+
|
314 |
+
#: includes/settings/tabs/wps-browscap.php:34
|
315 |
+
msgid "Update browscap Info"
|
316 |
+
msgstr "برووسكاب تحديث معلومات"
|
317 |
+
|
318 |
+
#: includes/settings/tabs/wps-browscap.php:39
|
319 |
+
msgid "Download browscap Database"
|
320 |
+
msgstr "تحميل برووسكاب قاعدة البيانات"
|
321 |
+
|
322 |
+
#: includes/settings/tabs/wps-browscap.php:46
|
323 |
+
msgid "Schedule weekly update of browscap DB"
|
324 |
+
msgstr "الجدول الأسبوعي ل browscap DB"
|
325 |
+
|
326 |
+
#: includes/settings/tabs/wps-browscap.php:69
|
327 |
+
msgid "Download of the browscap database will be scheduled for once a week."
|
328 |
+
msgstr "ستتم جدولة التحميل من قاعدة البيانات برووسكاب لمرة واحدة في أسبوع."
|
329 |
+
|
330 |
+
#: includes/optimization/tabs/wps-optimization-database.php:40
|
331 |
+
msgid ""
|
332 |
+
"Older installs of WP Statistics allow for duplicate entries in the visitors "
|
333 |
+
"table in a corner case. Newer installs protect against this with a unique "
|
334 |
+
"index on the table. To create the index on the older installs duplicate "
|
335 |
+
"entries must be deleted first. Clicking \"Update Now\" will scan the "
|
336 |
+
"vistitors table, delete duplicate entries and add the index."
|
337 |
+
msgstr ""
|
338 |
+
"السماح تثبيت أقدم من الفسفور الأبيض إحصائيات عن إدخالات مكررة في الجدول "
|
339 |
+
"الزائرين في حالة زاوية. تثبيت أحدث حماية ضد هذا مع فهرس فريد في الجدول. "
|
340 |
+
"لإنشاء الفهرس على تثبيت كبار السن إدخالات مكررة يجب حذف أولاً. النقر فوق "
|
341 |
+
"\"Update Now\" سوف تفحص الجدول فيستيتورس وحذف إدخالات مكررة وإضافة الفهرس."
|
342 |
+
|
343 |
+
#: includes/optimization/tabs/wps-optimization-database.php:46
|
344 |
+
msgid ""
|
345 |
+
"Older installs of WP Statistics allow for duplicate entries in the visitors "
|
346 |
+
"table in a corner case. Newer installs protect against this with a unique "
|
347 |
+
"index on the table."
|
348 |
+
msgstr ""
|
349 |
+
"السماح تثبيت أقدم من الفسفور الأبيض إحصائيات عن إدخالات مكررة في الجدول "
|
350 |
+
"الزائرين في حالة زاوية. تثبيت أحدث حماية ضد هذا مع فهرس فريد في الجدول."
|
351 |
+
|
352 |
+
#: includes/optimization/tabs/wps-optimization-database.php:47
|
353 |
+
msgid ""
|
354 |
+
"Congratulations, your installation is already up to date, nothing to do."
|
355 |
+
msgstr "تهانينا، التثبيت بالفعل حتى الآن، لا علاقة له."
|
356 |
+
|
357 |
+
#: includes/settings/tabs/wps-about.php:55
|
358 |
+
msgid "Have you search the Internet for any error messages you are receiving?"
|
359 |
+
msgstr "قد يمكنك البحث في إنترنت عن أي رسائل الخطأ التي يتم تلقي؟"
|
360 |
+
|
361 |
+
#: includes/settings/tabs/wps-about.php:66
|
362 |
+
msgid ""
|
363 |
+
"Are you getting a blank or incomplete page displayed in your browser? Did "
|
364 |
+
"you view the source for the page and check for any fatal errors?"
|
365 |
+
msgstr ""
|
366 |
+
"أنت تحصل على صفحة فارغة أو غير كاملة عرض في المتصفح الخاص بك؟ هل عرض المصدر "
|
367 |
+
"للصفحة والتحقق من وجود أي أخطاء قاتلة؟"
|
368 |
+
|
369 |
+
#: includes/settings/tabs/wps-about.php:67
|
370 |
+
msgid "Have you checked your PHP and web server error logs?"
|
371 |
+
msgstr "هل راجعت الخاص بك PHP والويب سجلات الخطأ الملقم؟"
|
372 |
+
|
373 |
+
#: widget.php:15
|
374 |
+
msgid "Show site stats in sidebar."
|
375 |
+
msgstr "إظهار إحصائيات الموقع في الشريط الجانبي."
|
376 |
+
|
377 |
+
#: includes/log/last-search.php:97 includes/log/last-visitor.php:94
|
378 |
+
#: includes/log/widgets/google.map.php:65 includes/log/widgets/jqv.map.php:59
|
379 |
+
#: includes/log/widgets/recent.php:22 includes/log/widgets/words.php:25
|
380 |
+
msgid "#hash#"
|
381 |
+
msgstr "#هاش#"
|
382 |
+
|
383 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:4
|
384 |
+
msgid ""
|
385 |
+
"This will replace all IP addresses in the database with hash values and "
|
386 |
+
"cannot be undo, are you sure?"
|
387 |
+
msgstr ""
|
388 |
+
"سيؤدي ذلك إلى استبدال كافة عناوين IP في قاعدة البيانات مع القيم هاش ولا يمكن "
|
389 |
+
"التراجع، هل أنت متأكد؟"
|
390 |
+
|
391 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:26
|
392 |
+
msgid ""
|
393 |
+
"Updates any unknown location data in the database, this may take a while"
|
394 |
+
msgstr ""
|
395 |
+
"تحديث أي بيانات عن مواقع مجهولة في قاعدة البيانات, هذا قد يستغرق بعض الوقت"
|
396 |
+
|
397 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:31
|
398 |
+
#: includes/settings/tabs/wps-general.php:56
|
399 |
+
msgid "IP Addresses"
|
400 |
+
msgstr "عناوين IP"
|
401 |
+
|
402 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:36
|
403 |
+
#: includes/settings/tabs/wps-general.php:61
|
404 |
+
msgid "Hash IP Addresses"
|
405 |
+
msgstr "هاش عناوين IP"
|
406 |
+
|
407 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:41
|
408 |
+
msgid ""
|
409 |
+
"Replace IP addresses in the database with hash values, you will not be able "
|
410 |
+
"to recover the IP addresses in the future to populate location information "
|
411 |
+
"afterwards and this may take a while"
|
412 |
+
msgstr ""
|
413 |
+
"استبدال عناوين IP في قاعدة البيانات مع قيم التجزئة، فإنك لن تكون قادرا على "
|
414 |
+
"استرداد عناوين IP في المستقبل لتجميع معلومات الموقع بعد ذلك وهذا قد يستغرق "
|
415 |
+
"بعض الوقت"
|
416 |
+
|
417 |
+
#: includes/optimization/wps-optimization.php:43
|
418 |
+
msgid "IP Addresses replaced with hash values."
|
419 |
+
msgstr "عناوين IP مع استبدال قيم التجزئة."
|
420 |
+
|
421 |
+
#: includes/settings/tabs/wps-access-level.php:149
|
422 |
+
msgid "Force robot list update after upgrades"
|
423 |
+
msgstr "قائمة تحديث فرقة الروبوت بعد الترقيات"
|
424 |
+
|
425 |
+
#: includes/settings/tabs/wps-access-level.php:152
|
426 |
+
msgid ""
|
427 |
+
"Force the robot list to be reset to the default after an update to WP "
|
428 |
+
"Statistics takes place. Note if this option is enabled any custom robots "
|
429 |
+
"you have added to the list will be lost."
|
430 |
+
msgstr ""
|
431 |
+
"إجبار قائمة الروبوت لإعادة تعيين إلى الافتراضي بعد تحديث احصائيات ووردبريس "
|
432 |
+
"لتأخذ مكان. ملاحظة إذا تم تمكين هذا الخيار أي الروبوتات المخصصة التي قمت "
|
433 |
+
"بإضافتها إلى القائمة سوف تضيع."
|
434 |
+
|
435 |
+
#: includes/settings/tabs/wps-general.php:40
|
436 |
+
msgid "This will delete the manual when you save the settings, are you sure?"
|
437 |
+
msgstr "سيتم حذف هذا الدليل عند حفظ الإعدادات، هل أنت متأكد؟"
|
438 |
+
|
439 |
+
#: includes/settings/tabs/wps-general.php:220
|
440 |
+
msgid ""
|
441 |
+
"By default WP Statistics displays an alert if any of the core features are "
|
442 |
+
"disabled on every admin page, this option will disable these notices."
|
443 |
+
msgstr ""
|
444 |
+
"افتراضيا احصائيات ووردبريس يعرض تنبيها إذا تم تعطيل أي من الميزات الأساسية "
|
445 |
+
"في كل صفحة مشرف، هذا الخيار يقوم بتعطيل هذه الإشعارات."
|
446 |
+
|
447 |
+
#: includes/settings/tabs/wps-general.php:226
|
448 |
+
msgid "Delete the manual"
|
449 |
+
msgstr "حذف الدليل"
|
450 |
+
|
451 |
+
#: includes/settings/tabs/wps-general.php:232
|
452 |
+
msgid ""
|
453 |
+
"By default WP Statistics stores the admin manual in the plugin directory (~5 "
|
454 |
+
"meg), if this option is enabled it will be deleted now and during upgrades "
|
455 |
+
"in the future."
|
456 |
+
msgstr ""
|
457 |
+
"افتراضيا احصائيات ووردبريس يخزن دليل المشرف في الدليل المساعد (~ 5 ميج)، إذا "
|
458 |
+
"تم تمكين هذا الخيار سيتم حذفه الآن وخلال الترقيات في المستقبل."
|
459 |
+
|
460 |
+
#: includes/optimization/tabs/wps-optimization-database.php:20
|
461 |
+
msgid "Database Index"
|
462 |
+
msgstr "مؤشر قاعدة البيانات"
|
463 |
+
|
464 |
+
#: includes/optimization/tabs/wps-optimization-database.php:41
|
465 |
+
msgid ""
|
466 |
+
"This operation could take a long time on installs with many rows in the "
|
467 |
+
"visitors table."
|
468 |
+
msgstr ""
|
469 |
+
"هذه العملية يمكن أن تستغرق وقتا طويلا لتثبيت العديد من الصفوف في جدول الزوار."
|
470 |
+
|
471 |
+
#: includes/optimization/wps-optimization.php:129
|
472 |
+
msgid "Database"
|
473 |
+
msgstr "قاعدة البيانات"
|
474 |
+
|
475 |
+
#: includes/settings/tabs/wps-general.php:298
|
476 |
+
msgid "Schedule"
|
477 |
+
msgstr "الجدول"
|
478 |
+
|
479 |
+
#: includes/settings/tabs/wps-general.php:328
|
480 |
+
msgid "Send reports via"
|
481 |
+
msgstr "إرسال التقارير عبر"
|
482 |
+
|
483 |
+
#: includes/settings/tabs/wps-general.php:347
|
484 |
+
msgid "E-mail addresses"
|
485 |
+
msgstr "عناوين البريد الإلكتروني"
|
486 |
+
|
487 |
+
#: includes/settings/tabs/wps-general.php:352
|
488 |
+
msgid ""
|
489 |
+
"A comma separated list of e-mail addresses to send the reports to if e-mail "
|
490 |
+
"is selected above."
|
491 |
+
msgstr ""
|
492 |
+
"أفصل بين قائمة عناوين البريد الإلكتروني بفاصلة في حال تحديد عناوين أعلاه."
|
493 |
+
|
494 |
+
#: includes/settings/tabs/wps-general.php:358
|
495 |
+
msgid "Report body"
|
496 |
+
msgstr "تقرير الهيئة"
|
497 |
+
|
498 |
+
#: includes/settings/tabs/wps-overview-display.php:75
|
499 |
+
msgid "The following three items are global to all users."
|
500 |
+
msgstr "البنود الثلاثة التالية هي عالمية لجميع المستخدمين."
|
501 |
+
|
502 |
+
#: includes/settings/tabs/wps-overview-display.php:80
|
503 |
+
msgid "Map type"
|
504 |
+
msgstr "نوع الخريطة"
|
505 |
+
|
506 |
+
#: includes/settings/tabs/wps-overview-display.php:86
|
507 |
+
msgid "JQVMap"
|
508 |
+
msgstr "JQVMap"
|
509 |
+
|
510 |
+
#: includes/settings/tabs/wps-overview-display.php:93
|
511 |
+
msgid ""
|
512 |
+
"The \"Google\" option will use Google's mapping service to plot the recent "
|
513 |
+
"visitors (requires access to Google)."
|
514 |
+
msgstr ""
|
515 |
+
"(يتطلب الوصول إلى جوجل) الخيار يتوجب استخدام خدمة خرائط جوجل لرسم زوار مؤخرا."
|
516 |
+
|
517 |
+
#: includes/settings/tabs/wps-overview-display.php:94
|
518 |
+
msgid ""
|
519 |
+
"The \"JQVMap\" option will use JQVMap javascript mapping library to plot the "
|
520 |
+
"recent visitors (requires no extenral services)."
|
521 |
+
msgstr ""
|
522 |
+
"أن خيار \"JQVMap\" سوف يستخدم الجافا سكربت لعرض مكتبة خرائط رسم الزوار "
|
523 |
+
"مؤخرا. (لا يتطلب أي خدمات)"
|
524 |
+
|
525 |
+
#: includes/settings/tabs/wps-overview-display.php:118
|
526 |
+
msgid ""
|
527 |
+
"This feature may cause a performance degradation when viewing statistics and "
|
528 |
+
"is only valid if the map type is set to \"Google\"."
|
529 |
+
msgstr ""
|
530 |
+
"قد تؤدي هذه الميزة تدهور الأداء عند عرض الإحصاءات وصالحة فقط إذا تم تعيين "
|
531 |
+
"نوع الخريطة لـ\"جوجل\"."
|
532 |
+
|
533 |
+
#: includes/log/all-browsers.php:50
|
534 |
+
msgid "Browsers by type"
|
535 |
+
msgstr "المتصفحات حسب النوع"
|
536 |
+
|
537 |
+
#: includes/log/all-browsers.php:133
|
538 |
+
msgid "Browsers by platform"
|
539 |
+
msgstr "المتصفحات حسب المنصة"
|
540 |
+
|
541 |
+
#: includes/log/exclusions.php:97
|
542 |
+
msgid "Excluded hits in the last"
|
543 |
+
msgstr "استبعاد الفعالية في الأخير"
|
544 |
|
545 |
+
#: includes/log/hit-statistics.php:36
|
546 |
+
msgid "Hits Statistics Chart"
|
547 |
+
msgstr "الرسم البياني لاحصائيات الفعالية"
|
548 |
+
|
549 |
+
#: includes/log/hit-statistics.php:69 includes/log/widgets/hits.php:39
|
550 |
+
msgid "Hits in the last"
|
551 |
+
msgstr "الفعالية في الأخير"
|
552 |
+
|
553 |
+
#: includes/log/last-search.php:30 includes/log/widgets/words.php:16
|
554 |
+
#: includes/settings/tabs/wps-overview-display.php:36
|
555 |
+
msgid "Latest Search Words"
|
556 |
+
msgstr "أحدث كلمات البحث"
|
557 |
+
|
558 |
+
#: includes/log/last-search.php:62
|
559 |
+
msgid "Latest Search Word Statistics"
|
560 |
+
msgstr "أحدث الإحصائيات - كلمة البحث"
|
561 |
+
|
562 |
+
#: includes/log/last-visitor.php:61
|
563 |
+
msgid "Recent Visitor Statistics"
|
564 |
+
msgstr "احصائيات الزوار الأخيرة"
|
565 |
+
|
566 |
+
#: includes/log/widgets/google.map.php:9 includes/log/widgets/jqv.map.php:9
|
567 |
+
msgid "Today Visitors Map"
|
568 |
+
msgstr "خريطة زوار اليوم"
|
569 |
+
|
570 |
+
#: includes/log/widgets/summary.php:8
|
571 |
+
msgid "Summary"
|
572 |
+
msgstr "ملخص"
|
573 |
+
|
574 |
+
#: includes/log/widgets/summary.php:13
|
575 |
+
msgid "User(s) Online"
|
576 |
+
msgstr "الأعضاء المتصلين"
|
577 |
+
|
578 |
+
#: includes/log/widgets/browsers.php:45
|
579 |
+
msgid "Top 10 Browsers"
|
580 |
+
msgstr "أفضل 10 متصفحات"
|
581 |
+
|
582 |
+
#: includes/log/top-referring.php:34 includes/log/top-referring.php:49
|
583 |
+
#: includes/log/widgets/referring.php:13
|
584 |
+
#: includes/settings/tabs/wps-overview-display.php:26
|
585 |
+
msgid "Top Referring Sites"
|
586 |
+
msgstr "أعلى المواقع اشارة"
|
587 |
+
|
588 |
+
#: includes/log/widgets/about.php:16
|
589 |
+
msgid "Rate and Review"
|
590 |
+
msgstr "المعدل والاستعراض"
|
591 |
+
|
592 |
+
#: includes/log/widgets/about.php:20
|
593 |
+
msgid "More Information"
|
594 |
+
msgstr "مزيد من المعلومات"
|
595 |
+
|
596 |
+
#: includes/log/widgets/about.php:29 includes/settings/tabs/wps-about.php:12
|
597 |
+
msgid ""
|
598 |
+
"This product includes GeoLite2 data created by MaxMind, available from %s."
|
599 |
+
msgstr ""
|
600 |
+
"يتضمن هذا المنتج GeoLite2 البيانات التي أنشأتها MaxMind، وهي متاحة من %s."
|
601 |
+
|
602 |
+
#: includes/log/search-statistics.php:77 includes/log/widgets/search.php:46
|
603 |
+
msgid "Search engine referrals in the last"
|
604 |
+
msgstr "إحالات محرك البحث في الماضي"
|
605 |
+
|
606 |
+
#: includes/log/search-statistics.php:98 includes/log/widgets/search.php:67
|
607 |
+
msgid "Number of referrals"
|
608 |
+
msgstr "عدد الإحالات"
|
609 |
+
|
610 |
+
#: includes/log/widgets/pages.php:13
|
611 |
+
msgid "Top 10 Pages"
|
612 |
+
msgstr "أفضل 10 صفحات"
|
613 |
+
|
614 |
+
#: includes/log/search-statistics.php:17 includes/log/search-statistics.php:36
|
615 |
+
msgid "Search Engine Referral Statistics"
|
616 |
+
msgstr "احصائيات إحالات محركات البحث"
|
617 |
+
|
618 |
+
#: includes/settings/tabs/wps-about.php:8
|
619 |
+
msgid "WP Statistics V%s"
|
620 |
+
msgstr "نسخة الإحصائيات %s"
|
621 |
+
|
622 |
+
#: includes/settings/tabs/wps-about.php:20
|
623 |
+
msgid "Visit Us Online"
|
624 |
+
msgstr "زيارة موقعنا على الانترنت"
|
625 |
+
|
626 |
+
#: includes/settings/tabs/wps-about.php:28
|
627 |
+
msgid "Rate and Review at WordPress.org"
|
628 |
+
msgstr "قيم وأستعرض على WordPress.org"
|
629 |
+
|
630 |
+
#: includes/settings/tabs/wps-about.php:32
|
631 |
+
msgid "Thanks for installing WP Statistics, we encourage you to submit a "
|
632 |
+
msgstr "شكرا لتثبيت إحصائيات ووردبريس، ونحن نشجعكم على تقديم"
|
633 |
+
|
634 |
+
#: includes/settings/tabs/wps-about.php:32
|
635 |
+
msgid "rating and review"
|
636 |
+
msgstr "التقييم والاستعراض"
|
637 |
+
|
638 |
+
#: includes/settings/tabs/wps-about.php:32
|
639 |
+
msgid "over at WordPress.org. Your feedback is greatly appreciated!"
|
640 |
+
msgstr "زيادة على WordPress.org. ملاحظاتك هي موضع تقدير!"
|
641 |
+
|
642 |
+
#: includes/settings/tabs/wps-about.php:49
|
643 |
+
msgid ""
|
644 |
+
"We're sorry you're having problem with WP Statistics and we're happy to help "
|
645 |
+
"out. Here are a few things to do before contacting us:"
|
646 |
+
msgstr ""
|
647 |
+
"نحن آسفون كنت تواجه مشكلة مع احصائيات ووردبريس ونحن سعداء للمساعدة. وهنا عدد "
|
648 |
+
"قليل من الأشياء يجب القيام به قبل الاتصال بنا:"
|
649 |
+
|
650 |
+
#: includes/settings/tabs/wps-about.php:58
|
651 |
+
msgid "And a few things to double-check:"
|
652 |
+
msgstr "و عدد قليل من التحقق المزدوج:"
|
653 |
+
|
654 |
+
#: includes/settings/tabs/wps-about.php:61
|
655 |
+
msgid "How's your memory_limit in php.ini?"
|
656 |
+
msgstr "كيف memory_limit الخاصة بك في ملف php.ini؟"
|
657 |
+
|
658 |
+
#: includes/settings/tabs/wps-about.php:62
|
659 |
+
msgid "Have you tried disabling any other plugins you may have installed?"
|
660 |
+
msgstr "هل حاولت تعطيل أي ملحقات أخرى عندما قمت بالتثبيت؟"
|
661 |
+
|
662 |
+
#: includes/settings/tabs/wps-about.php:63
|
663 |
+
msgid "Have you tried using the default WordPress theme?"
|
664 |
+
msgstr "هل حاولت استخدام المظهر الافتراضي لووردبريس؟"
|
665 |
+
|
666 |
+
#: includes/settings/tabs/wps-about.php:64
|
667 |
+
msgid "Have you double checked the plugin settings?"
|
668 |
+
msgstr "هل قمت بمضاعفة فحص إعدادات البرنامج المساعد؟"
|
669 |
+
|
670 |
+
#: includes/settings/tabs/wps-about.php:65
|
671 |
+
msgid "Do you have all the required PHP extensions installed?"
|
672 |
+
msgstr "هل لديك جميع الملحقات المطلوبة لتثبيت PHP؟"
|
673 |
+
|
674 |
+
#: includes/settings/tabs/wps-about.php:70
|
675 |
+
msgid "Still not having any luck?"
|
676 |
+
msgstr "هل ما زالت المشكلة قائمة؟"
|
677 |
+
|
678 |
+
#: includes/optimization/tabs/wps-optimization-export.php:17
|
679 |
+
#: includes/optimization/tabs/wps-optimization-export.php:35
|
680 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:128
|
681 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:169
|
682 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:193
|
683 |
+
#: includes/settings/tabs/wps-general.php:303
|
684 |
+
#: includes/settings/tabs/wps-general.php:333
|
685 |
+
msgid "Please select"
|
686 |
+
msgstr "الرجاء اختيار"
|
687 |
+
|
688 |
+
#: includes/settings/tabs/wps-general.php:365
|
689 |
+
msgid ""
|
690 |
+
"Any shortcode supported by your installation of WordPress, include all "
|
691 |
+
"shortcodes for WP Statistics (see the admin manual for a list of codes "
|
692 |
+
"available) are supported in the body of the message."
|
693 |
+
msgstr ""
|
694 |
+
"أي رمز قصير مدعوم في تنصيب ووردبريس، مشمولة في احصائيات ووردبريس (انظر الى "
|
695 |
+
"دليل المشرف للحصول على قائمة الرموز المتوفرة) ومعتمدة في نص الرسالة. "
|
696 |
+
|
697 |
+
#: includes/settings/tabs/wps-general.php:368
|
698 |
+
msgid ""
|
699 |
+
"Input data codes are now deprecated and will be removed in a future version "
|
700 |
+
"of WP Statistics, please use the appropriate shortcodes, they are included "
|
701 |
+
"here only for historical purposes:"
|
702 |
+
msgstr ""
|
703 |
+
"رموز البيانات المهملة المدخلة سيتم ازالتها في إصدار مستقبلي من احصائيات "
|
704 |
+
"ووردبريس، يرجى استخدام الرموز القصيرة المناسبة، يتم تضمينها هنا فقط لأغراض "
|
705 |
+
"تاريخية:"
|
706 |
+
|
707 |
+
#: includes/settings/tabs/wps-geoip.php:22
|
708 |
+
msgid ""
|
709 |
+
"IP location services provided by GeoLite2 data created by MaxMind, available "
|
710 |
+
"from %s."
|
711 |
+
msgstr ""
|
712 |
+
"خدمات الموقع IP المقدمة من البيانات GeoLite2 التي أنشأتها MaxMind، وهي متاحة "
|
713 |
+
"من %s."
|
714 |
+
|
715 |
+
#: includes/settings/tabs/wps-overview-display.php:23
|
716 |
+
#: includes/settings/tabs/wps-overview-display.php:32
|
717 |
+
msgid "None"
|
718 |
+
msgstr "لا شيء"
|
719 |
+
|
720 |
+
#: includes/settings/tabs/wps-overview-display.php:28
|
721 |
+
#: includes/settings/wps-settings.php:92
|
722 |
+
msgid "About"
|
723 |
+
msgstr "حول"
|
724 |
+
|
725 |
+
#: includes/settings/tabs/wps-overview-display.php:123
|
726 |
+
msgid "Widgets to Display"
|
727 |
+
msgstr "المربعات الجانبية إلى العرض"
|
728 |
+
|
729 |
+
#: includes/settings/tabs/wps-overview-display.php:132
|
730 |
+
msgid ""
|
731 |
+
"The following items are unique to each user. If you do not select the "
|
732 |
+
"'About' widget it will automatically be displayed in the last positon of "
|
733 |
+
"column A."
|
734 |
+
msgstr ""
|
735 |
+
"البنود التالية هي فريدة من نوعها لكل مستخدم. إذا لم تقم بتحديد موقع المربع "
|
736 |
+
"الجانبي 'حول' سيتم تلقائيا إظهارها في الأخير من العمود A."
|
737 |
+
|
738 |
+
#: includes/settings/tabs/wps-overview-display.php:137
|
739 |
+
msgid "Slot"
|
740 |
+
msgstr "الشريحة"
|
741 |
+
|
742 |
+
#: includes/settings/tabs/wps-overview-display.php:141
|
743 |
+
msgid "Column A"
|
744 |
+
msgstr "العمود A"
|
745 |
+
|
746 |
+
#: includes/settings/tabs/wps-overview-display.php:145
|
747 |
+
msgid "Column B"
|
748 |
+
msgstr "العمود B"
|
749 |
+
|
750 |
+
#: includes/settings/tabs/wps-overview-display.php:151
|
751 |
+
msgid "Slot 1"
|
752 |
+
msgstr "الشريحة 1"
|
753 |
+
|
754 |
+
#: includes/settings/tabs/wps-overview-display.php:181
|
755 |
+
msgid "Slot 2"
|
756 |
+
msgstr "الشريحة 2"
|
757 |
+
|
758 |
+
#: includes/settings/tabs/wps-overview-display.php:211
|
759 |
+
msgid "Slot 3"
|
760 |
+
msgstr "الشريحة 3"
|
761 |
+
|
762 |
+
#: includes/settings/tabs/wps-overview-display.php:241
|
763 |
+
msgid "Slot 4"
|
764 |
+
msgstr "الشريحة 4"
|
765 |
+
|
766 |
+
#: includes/settings/tabs/wps-overview-display.php:271
|
767 |
+
msgid "Slot 5"
|
768 |
+
msgstr "الشريحة 5"
|
769 |
+
|
770 |
+
#: includes/settings/tabs/wps-overview-display.php:301
|
771 |
+
msgid "Slot 6"
|
772 |
+
msgstr "الشريحة 6"
|
773 |
+
|
774 |
+
#: includes/settings/tabs/wps-overview-display.php:305
|
775 |
+
msgid "N/A"
|
776 |
+
msgstr "N/A"
|
777 |
+
|
778 |
+
#: widget.php:280
|
779 |
+
msgid "Search Engine Referred"
|
780 |
+
msgstr "محرك البحث المشار اليه"
|
781 |
+
|
782 |
+
#: schedule.php:10
|
783 |
+
msgid "Once Weekly"
|
784 |
+
msgstr "مرة واحدة أسبوعيا"
|
785 |
+
|
786 |
+
#: schedule.php:17
|
787 |
+
msgid "Once Every 2 Weeks"
|
788 |
+
msgstr "مرة واحدة كل أسبوعين"
|
789 |
+
|
790 |
+
#: schedule.php:24
|
791 |
+
msgid "Once Every 4 Weeks"
|
792 |
+
msgstr "مرة واحدة كل 4 أسابيع"
|
793 |
+
|
794 |
+
#: wp-statistics.php:39
|
795 |
+
msgid "Complete statistics for your WordPress site."
|
796 |
+
msgstr "الإحصائيات الكاملة للموقع الخاص بك."
|
797 |
+
|
798 |
+
#: includes/log/widgets/about.php:15
|
799 |
+
msgid "Website"
|
800 |
+
msgstr "الموقع"
|
801 |
+
|
802 |
+
#: includes/log/top-referring.php:117 includes/log/widgets/referring.php:19
|
803 |
msgid "References"
|
804 |
msgstr "المراجع"
|
805 |
|
806 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:33
|
807 |
msgid "PHP Memory Limit"
|
808 |
msgstr "حد ذاكرة PHP"
|
809 |
|
810 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:38
|
811 |
msgid "The memory limit a script is allowed to consume, set in php.ini."
|
812 |
msgstr "حد الذاكرة المسموحبه في السكربت, محدد في php.ini."
|
813 |
|
814 |
+
#: wp-statistics.php:38
|
815 |
msgid "WP Statistics"
|
816 |
msgstr "احصائيات ووردبريس"
|
817 |
|
818 |
+
#: wp-statistics.php:164
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
819 |
msgid "Visit WordPress.org page"
|
820 |
msgstr "زيارة صفحة الووردبريس"
|
821 |
|
822 |
+
#: includes/log/page-statistics.php:29
|
823 |
msgid "Page Trend for Post ID"
|
824 |
msgstr "صفحة الأكثر رواجاً بمعرف المشاركة"
|
825 |
|
826 |
+
#: includes/log/page-statistics.php:48
|
827 |
msgid "Page Trend"
|
828 |
msgstr "الصفحة الأكثر رواجاً"
|
829 |
|
830 |
+
#: includes/log/page-statistics.php:68
|
831 |
msgid "Page Trending Stats"
|
832 |
msgstr "احصائيات الصفحة الاكثر رواجاً"
|
833 |
|
834 |
+
#: includes/settings/tabs/wps-access-level.php:97
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
835 |
msgid "Record exclusions"
|
836 |
msgstr "سجل الاستثناءات"
|
837 |
|
838 |
+
#: includes/settings/tabs/wps-access-level.php:130
|
839 |
msgid "Robot list"
|
840 |
msgstr "قائمة الروبوت"
|
841 |
|
842 |
+
#: includes/settings/tabs/wps-access-level.php:157
|
843 |
msgid "Excluded IP address list"
|
844 |
msgstr "قائمة عناوين IP المستبعدة"
|
845 |
|
846 |
+
#: includes/settings/tabs/wps-access-level.php:160
|
847 |
msgid ""
|
848 |
"A list of IP addresses and subnet masks (one per line) to exclude from "
|
849 |
"statistics collection (both 192.168.0.0/24 and 192.168.0.0/255.255.255.0 "
|
855 |
"192.168.0.0/255.255.255.0 ). لتحديد عنوان IP فقط، استخدم قيمة الشبكة الفرعية "
|
856 |
"32 أو 255.255.255.255.255."
|
857 |
|
858 |
+
#: includes/settings/tabs/wps-access-level.php:172
|
859 |
msgid "Excluded login page"
|
860 |
msgstr "استبعاد صفحة تسجيل الدخول"
|
861 |
|
862 |
+
#: includes/settings/tabs/wps-access-level.php:179
|
863 |
msgid "Excluded admin pages"
|
864 |
msgstr "استبعاد الصفحات الإدارية"
|
865 |
|
866 |
+
#: includes/settings/tabs/wps-general.php:72
|
867 |
msgid "Users Online"
|
868 |
msgstr "الإعضاء المتواجدين"
|
869 |
|
870 |
+
#: includes/settings/tabs/wps-general.php:77
|
871 |
msgid "User online"
|
872 |
msgstr "المتواجدين الآن"
|
873 |
|
874 |
+
#: includes/settings/tabs/wps-general.php:172
|
875 |
msgid "Track all pages"
|
876 |
msgstr "تتبع جميع الصفحات"
|
877 |
|
878 |
+
#: includes/settings/tabs/wps-general.php:184
|
879 |
msgid "Disable hits column in post/pages list"
|
880 |
msgstr "تعطيل عمود النقرات في قائمة المقال/الصفحات"
|
881 |
|
882 |
+
#: includes/settings/tabs/wps-general.php:195
|
883 |
msgid "Miscellaneous"
|
884 |
msgstr "متفرقات"
|
885 |
|
886 |
+
#: wp-statistics.php:164
|
887 |
msgid "Click here to visit the plugin on WordPress.org"
|
888 |
msgstr "انقر هنا لزيارة صفحة الإضافة على WordPress.org"
|
889 |
|
890 |
+
#: wp-statistics.php:167
|
891 |
msgid "Click here to rate and review this plugin on WordPress.org"
|
892 |
msgstr "أنقر هنا لمراجهة وتقييم الإضافة على WordPress.org"
|
893 |
|
894 |
+
#: wp-statistics.php:167
|
895 |
msgid "Rate this plugin"
|
896 |
msgstr "ضع تقييمك لهذه الاضافة"
|
897 |
|
898 |
+
#: wp-statistics.php:211
|
899 |
msgid "WP Statistics - Hits"
|
900 |
msgstr "احصائيات ووردبريس - الزيارات"
|
901 |
|
902 |
+
#: wp-statistics.php:599
|
903 |
msgid "Error downloading GeoIP database from: %s - %s"
|
904 |
msgstr "خطأ تحميل قاعدة بيانات GeoIP من: %s - %s"
|
905 |
|
906 |
+
#: widget.php:108 widget.php:277
|
|
|
907 |
msgid "Total Page Views"
|
908 |
msgstr "مجموع مشاهدات الصفحة"
|
909 |
|
910 |
+
#: includes/settings/tabs/wps-general.php:155
|
911 |
+
#: includes/settings/tabs/wps-general.php:160 wp-statistics.php:259
|
|
|
912 |
msgid "Pages"
|
913 |
msgstr "الصفحات"
|
914 |
|
915 |
+
#: wp-statistics.php:266
|
916 |
msgid "Manual"
|
917 |
msgstr "الدليل"
|
918 |
|
919 |
+
#: wp-statistics.php:364
|
920 |
msgid "Download ODF file"
|
921 |
msgstr "تحميل ملف ODF"
|
922 |
|
923 |
+
#: wp-statistics.php:365
|
924 |
msgid "Download HTML file"
|
925 |
msgstr "تحميل ملف HTML"
|
926 |
|
927 |
+
#: wp-statistics.php:369
|
928 |
msgid "Manual file not found."
|
929 |
msgstr "لم يتم العثور على ملف الدليل."
|
930 |
|
931 |
+
#: includes/log/exclusions.php:54
|
932 |
msgid "Exclusions Statistics"
|
933 |
msgstr "استثناءات الاحصائيات"
|
934 |
|
935 |
+
#: includes/settings/tabs/wps-overview-display.php:37
|
936 |
msgid "Top Pages Visited"
|
937 |
msgstr "أعلى الصفحات زيارة"
|
938 |
|
939 |
+
#: includes/log/top-pages.php:160 includes/log/widgets/pages.php:27
|
|
|
940 |
msgid "No page title found"
|
941 |
msgstr "لم يتم العثور على عنوان الصفحة"
|
942 |
|
943 |
+
#: includes/log/top-pages.php:13 includes/log/top-pages.php:132
|
|
|
944 |
msgid "Top Pages"
|
945 |
msgstr "أفضل الصفحات"
|
946 |
|
947 |
+
#: includes/log/top-pages.php:20
|
948 |
msgid "Top 5 Pages Trends"
|
949 |
msgstr "الصفحات الـ5 الأكثر رواجاً"
|
950 |
|
951 |
+
#: includes/log/top-pages.php:49
|
952 |
msgid "Top 5 Page Trending Stats"
|
953 |
msgstr "احصائيات الصفحات الـ5 الأكثر رواجاً"
|
954 |
|
955 |
+
#: includes/log/page-statistics.php:89 includes/log/top-pages.php:70
|
|
|
956 |
msgid "Number of Hits"
|
957 |
msgstr "عدد الزيارات"
|
958 |
|
959 |
+
#: manual/manual.php:29
|
960 |
msgid "Manual not found: %s"
|
961 |
msgstr "الدليل لم يعثر على: %s"
|
962 |
|
963 |
+
#: manual/manual.php:39
|
964 |
msgid "Invalid file type selected: %s"
|
965 |
msgstr "نوع الملف المختار غير صالح: %s"
|
966 |
|
967 |
+
#: widget.php:116
|
968 |
msgid "Search Engine referred"
|
969 |
msgstr "محرك البحث المشار"
|
970 |
|
971 |
+
#: includes/optimization/tabs/wps-optimization-export.php:47
|
972 |
msgid "Include Header Row"
|
973 |
msgstr "تضمين رأس الصف"
|
974 |
|
975 |
+
#: includes/optimization/tabs/wps-optimization-export.php:52
|
976 |
msgid "Include a header row as the first line of the exported file."
|
977 |
msgstr "تضمين صف الرأس كما في السطر الأول من الملف الذي تم تصديره."
|
978 |
|
979 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:125
|
980 |
msgid "PHP Safe Mode"
|
981 |
msgstr "الوضع الآمن PHP"
|
982 |
|
983 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:130
|
984 |
msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
|
985 |
msgstr "الوضع الآمن نشط. الكود GeoIP غير معتمد في الوضع الآمن."
|
986 |
|
987 |
+
#: includes/settings/tabs/wps-geoip.php:106
|
988 |
msgid "GeoIP collection is disabled due to the following reasons:"
|
989 |
msgstr "تم تعطيل مجموعة GeoIP وذلك للأسباب التالية:"
|
990 |
|
991 |
+
#: includes/settings/tabs/wps-geoip.php:126
|
992 |
msgid ""
|
993 |
"PHP safe mode detected! GeoIP collection is not supported with PHP's safe "
|
994 |
"mode enabled!"
|
996 |
"تم الكشف عن الوضع الآمن في PHP! مجموعة GeoIP غير معتمدة عند تمكين الوضع "
|
997 |
"الآمن في PHP!"
|
998 |
|
999 |
+
#: includes/settings/tabs/wps-general.php:214
|
1000 |
msgid "Hide admin notices about non active features"
|
1001 |
msgstr "اخفاء إشعارات المشرف حول الميزات غير نشطة"
|
1002 |
|
1003 |
+
#: includes/settings/tabs/wps-general.php:237
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1004 |
msgid "Search Enginges"
|
1005 |
msgstr "محرك البحث"
|
1006 |
|
1007 |
+
#: includes/settings/tabs/wps-general.php:242
|
1008 |
msgid ""
|
1009 |
"Disabling all search engines is not allowed, doing so will result in all "
|
1010 |
"search engines being active."
|
1011 |
msgstr ""
|
1012 |
"تعطيل جميع محركات البحث غير مسموح, سيؤدي ذلك الى تنشيط جميع محركات البحث."
|
1013 |
|
1014 |
+
#: includes/settings/tabs/wps-general.php:257
|
1015 |
msgid "disable"
|
1016 |
msgstr "تعطيل"
|
1017 |
|
1018 |
+
#: includes/settings/tabs/wps-general.php:258
|
1019 |
msgid "Disable %s from data collection and reporting."
|
1020 |
msgstr "تعطيل %s من جمع البيانات وإعداد التقارير."
|
1021 |
|
1022 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:147
|
1023 |
msgid "cURL Version"
|
1024 |
msgstr "إصدار cURL"
|
1025 |
|
1026 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:151
|
1027 |
msgid "cURL not installed"
|
1028 |
msgstr "cURL غير مثبت"
|
1029 |
|
1030 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:152
|
1031 |
msgid ""
|
1032 |
"The PHP cURL Extension version you are running. cURL is required for the "
|
1033 |
"GeoIP code, if it is not installed GeoIP will be disabled."
|
1035 |
"نسخة الملحق PHP cURL تعمل. الملحق cURL مطلوب لعمل كود GeoIP, وإذا لم يتم "
|
1036 |
"تثبيته يتم تعطيل GeoIP."
|
1037 |
|
1038 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:158
|
1039 |
msgid "BC Math"
|
1040 |
msgstr "BC Math"
|
1041 |
|
1042 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:162
|
1043 |
msgid "Installed"
|
1044 |
msgstr "مثبت"
|
1045 |
|
1046 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:162
|
1047 |
msgid "Not installed"
|
1048 |
msgstr "غير مثبت"
|
1049 |
|
1050 |
+
#: includes/settings/tabs/wps-geoip.php:114
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1051 |
msgid ""
|
1052 |
"GeoIP collection requires the cURL PHP extension and it is not loaded on "
|
1053 |
"your version of PHP!"
|
1054 |
msgstr "مجموعة GeoIP تتطلب الملحق cURL PHP و هو غير مفعل على إصدار الـ PHP!"
|
1055 |
|
1056 |
+
#: includes/settings/tabs/wps-geoip.php:120
|
1057 |
msgid ""
|
1058 |
"GeoIP collection requires the BC Math PHP extension and it is not loaded on "
|
1059 |
"your version of PHP!"
|
1060 |
msgstr "مجموعة GeoIP تتطلب الملحق BC Math PHP و هو غير مفعل على إصدار الـ PHP!"
|
1061 |
|
1062 |
+
#: includes/functions/geoip-populate.php:26
|
1063 |
msgid ""
|
1064 |
"Unable to load the GeoIP database, make sure you have downloaded it in the "
|
1065 |
"settings page."
|
1067 |
"غير قادر على تحميل قاعدة البيانات GeoIP، تأكد من أنك قمت بتنزيلها في صفحة "
|
1068 |
"الإعدادات."
|
1069 |
|
1070 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:182
|
1071 |
msgid "Database file does not exist."
|
1072 |
msgstr "لا وجود لملف قاعدة البيانات."
|
1073 |
|
1074 |
+
#: includes/log/last-visitor.php:59
|
1075 |
msgid "Search for"
|
1076 |
msgstr "البحث عن"
|
1077 |
|
1078 |
+
#: includes/log/widgets/browsers.php:8 includes/log/widgets/countries.php:11
|
1079 |
+
#: includes/log/widgets/hits.php:8 includes/log/widgets/pages.php:13
|
1080 |
+
#: includes/log/widgets/recent.php:9 includes/log/widgets/referring.php:13
|
1081 |
+
#: includes/log/widgets/search.php:8 includes/log/widgets/words.php:16
|
|
|
|
|
|
|
|
|
1082 |
msgid "More"
|
1083 |
msgstr "المزيد"
|
1084 |
|
1085 |
+
#: includes/settings/tabs/wps-general.php:269
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1086 |
msgid "Include totals"
|
1087 |
msgstr "تتضمن الاجماليات"
|
1088 |
|
1089 |
+
#: includes/settings/tabs/wps-general.php:275
|
1090 |
msgid ""
|
1091 |
"Add a total line to charts with multiple values, like the search engine "
|
1092 |
"referrals"
|
1093 |
msgstr "إضافة سطر مجموع المخططات مع قيم متعددة، مثل إحالات محرك البحث"
|
1094 |
|
1095 |
+
#: includes/settings/tabs/wps-overview-display.php:100
|
1096 |
msgid "Disable map"
|
1097 |
msgstr "تعطيل الخريطة"
|
1098 |
|
1099 |
+
#: includes/settings/tabs/wps-overview-display.php:106
|
1100 |
msgid "Disable the map display"
|
1101 |
msgstr "تعطيل عرض الخريطة"
|
1102 |
|
1103 |
+
#: includes/settings/tabs/wps-overview-display.php:112
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1104 |
msgid "Get country location from Google"
|
1105 |
msgstr "الحصول على موقع البلد من جوجل"
|
1106 |
|
1107 |
+
#: includes/log/exclusions.php:8
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1108 |
msgid ""
|
1109 |
"Attention: Exclusion are not currently set to be recorded, the results below "
|
1110 |
"may not reflect current statistics!"
|
1112 |
"تنبيه: لم يتم تعيين الاستثناءات حاليا ليتم تسجيلها، قد لا تستطيع عكس نتائج "
|
1113 |
"الإحصائيات الحالية أدناه!"
|
1114 |
|
1115 |
+
#: includes/log/exclusions.php:118
|
|
|
|
|
|
|
|
|
1116 |
msgid "Number of excluded hits"
|
1117 |
msgstr "عدد الزيارات المستبعدة"
|
1118 |
|
1119 |
+
#: includes/settings/tabs/wps-access-level.php:86
|
1120 |
msgid ""
|
1121 |
"Hint: manage_network = Super Admin Network, manage_options = Administrator, "
|
1122 |
"edit_others_posts = Editor, publish_posts = Author, edit_posts = "
|
1125 |
"تلميح: manage_network = مسؤول, manage_options = مدير, edit_others_posts = "
|
1126 |
"محرر, publish_posts = كاتب, edit_posts = مساهم, read = الجميع"
|
1127 |
|
1128 |
+
#: includes/settings/tabs/wps-access-level.php:99
|
1129 |
+
#: includes/settings/tabs/wps-access-level.php:151
|
1130 |
msgid "Enable"
|
1131 |
msgstr "تمكين"
|
1132 |
|
1133 |
+
#: includes/settings/tabs/wps-access-level.php:100
|
1134 |
msgid ""
|
1135 |
"This will record all the excluded hits in a separate table with the reasons "
|
1136 |
"why it was excluded but no other information. This will generate a lot of "
|
1142 |
"مفيد إذا كنت تريد أن ترى العدد الكلي من المشاهدات التي يحصل عليها موقعك، "
|
1143 |
"وليس فقط المستخدم الفعلي للموقع."
|
1144 |
|
1145 |
+
#: includes/settings/tabs/wps-access-level.php:168
|
1146 |
msgid "Site URL Exclusions"
|
1147 |
msgstr "رابط الموقع المستثنى"
|
1148 |
|
1149 |
+
#: includes/settings/tabs/wps-access-level.php:175
|
1150 |
msgid "Exclude the login page for registering as a hit."
|
1151 |
msgstr "استبعاد صفحة الدخول للتسجيل كنقرة."
|
1152 |
|
1153 |
+
#: includes/settings/tabs/wps-access-level.php:182
|
1154 |
msgid "Exclude the admin pages for registering as a hit."
|
1155 |
msgstr "استبعاد الصفحات الادارية للتسجيل كنقرة."
|
1156 |
|
1157 |
+
#: includes/settings/tabs/wps-access-level.php:93 wp-statistics.php:254
|
|
|
1158 |
msgid "Exclusions"
|
1159 |
msgstr "الاستثناءات"
|
1160 |
|
1161 |
+
#: includes/log/exclusions.php:68
|
1162 |
msgid "Total Exclusions: %s"
|
1163 |
msgstr "مجموع الاستثناءات: %s"
|
1164 |
|
1165 |
+
#: includes/log/exclusions.php:75
|
1166 |
msgid "Exclusions Statistical Chart"
|
1167 |
msgstr "الرسم البياني لإحصائيات الاستثناءات"
|
1168 |
|
1169 |
+
#: includes/settings/tabs/wps-access-level.php:33
|
1170 |
msgid "Access Levels"
|
1171 |
msgstr "مستويات الوصول"
|
1172 |
|
1173 |
+
#: includes/optimization/wps-optimization.php:126
|
|
|
|
|
|
|
1174 |
msgid "Resources/Information"
|
1175 |
msgstr "الموارد/معلومات"
|
1176 |
|
1177 |
+
#: includes/optimization/wps-optimization.php:128
|
|
|
|
|
|
|
1178 |
msgid "Purging"
|
1179 |
msgstr "تطهير"
|
1180 |
|
1181 |
+
#: includes/optimization/wps-optimization.php:130
|
|
|
|
|
|
|
1182 |
msgid "Updates"
|
1183 |
msgstr "تحديثات"
|
1184 |
|
1185 |
+
#: includes/settings/wps-settings.php:88
|
|
|
|
|
|
|
1186 |
msgid "Access/Exclusions"
|
1187 |
msgstr "وصول/استثناءات"
|
1188 |
|
1189 |
+
#: includes/settings/wps-settings.php:91
|
|
|
|
|
|
|
1190 |
msgid "Maintenance"
|
1191 |
msgstr "صيانة"
|
1192 |
|
1193 |
+
#: includes/settings/wps-settings.php:126
|
|
|
|
|
|
|
1194 |
msgid "Update"
|
1195 |
msgstr "تحديث"
|
1196 |
|
1197 |
+
#: includes/settings/wps-settings.php:86
|
1198 |
+
msgid "General"
|
1199 |
+
msgstr "عام"
|
1200 |
+
|
1201 |
+
#: includes/optimization/empty.php:57
|
1202 |
msgid "Error, %s not emptied!"
|
1203 |
msgstr "خطأ, %s لم يتم التفريغ!"
|
1204 |
|
1205 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:118
|
1206 |
msgid "Data"
|
1207 |
msgstr "المعطيات"
|
1208 |
|
1209 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:145
|
1210 |
msgid "Purge records older than"
|
1211 |
msgstr "سجلات الضخ أقدم من"
|
1212 |
|
1213 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:151
|
1214 |
msgid ""
|
1215 |
"Deleted user statistics data older than the selected number of days. "
|
1216 |
"Minimum value is 30 days."
|
1218 |
"بيانات الاحصائيات المستخدم المحذوف أقدم من الرقم المحدد من الأيام. قيمة الحد "
|
1219 |
"الأدنى هو 30 يوما."
|
1220 |
|
1221 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:152
|
1222 |
msgid "Purge now!"
|
1223 |
msgstr "ضخ الآن!"
|
1224 |
|
1225 |
+
#: includes/optimization/purge-data.php:55
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1226 |
msgid "Please select a value over 30 days."
|
1227 |
msgstr "يرجى تحديد قيمة أكثر من 30 يوما."
|
1228 |
|
1229 |
+
#: includes/settings/tabs/wps-maintenance.php:20
|
|
|
|
|
|
|
1230 |
msgid ""
|
1231 |
"This will permanently delete data from the database each day, are you sure "
|
1232 |
"you want to enable this option?"
|
1234 |
"سيؤدي ذلك إلى حذف البيانات من قاعدة البيانات بشكل دائم كل يوم، هل أنت متأكد "
|
1235 |
"من أنك تريد تمكين هذا الخيار؟"
|
1236 |
|
1237 |
+
#: includes/settings/tabs/wps-maintenance.php:30
|
1238 |
msgid "Database Maintenance"
|
1239 |
msgstr "صيانة قاعدة البيانات"
|
1240 |
|
1241 |
+
#: includes/settings/tabs/wps-maintenance.php:35
|
1242 |
msgid "Run a daily WP Cron job to prune the databases"
|
1243 |
msgstr "تشغيل مهام ووردبريس يوميا للضخ في قاعدة البيانات"
|
1244 |
|
1245 |
+
#: includes/settings/tabs/wps-maintenance.php:41
|
1246 |
msgid ""
|
1247 |
"A WP Cron job will be run daily to prune any data older than a set number of "
|
1248 |
"days."
|
1250 |
"سيتم تشغيل ألف وظيفة في مهام ووردبريس يوميا لضخ أي بيانات أقدم من العدد "
|
1251 |
"المحدد من الأيام."
|
1252 |
|
1253 |
+
#: includes/settings/tabs/wps-maintenance.php:47
|
1254 |
msgid "Prune data older than"
|
1255 |
msgstr "ضخ البيانات الأقدم من"
|
1256 |
|
1257 |
+
#: includes/settings/tabs/wps-maintenance.php:52
|
1258 |
msgid "Days"
|
1259 |
msgstr "أيام"
|
1260 |
|
1261 |
+
#: includes/settings/tabs/wps-maintenance.php:53
|
1262 |
msgid ""
|
1263 |
"The number of days to keep statistics for. Minimum value is 30 days. "
|
1264 |
"Invalid values will disable the daily maintenance."
|
1266 |
"عدد الأيام للحفاظ على الإحصاءات المتعلقة. قيمة الحد الأدنى هو 30 يوما. سيتم "
|
1267 |
"تعطيل الصيانة اليومية في حال ادخال قيم غير صالحة."
|
1268 |
|
1269 |
+
#: includes/settings/wps-settings.php:89
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1270 |
msgid "GeoIP"
|
1271 |
msgstr "GeoIP"
|
1272 |
|
1273 |
+
#: includes/settings/tabs/wps-browscap.php:54
|
1274 |
+
#: includes/settings/tabs/wps-geoip.php:64
|
1275 |
msgid "Next update will be"
|
1276 |
msgstr "التحديث القادم سيكون في"
|
1277 |
|
1278 |
+
#: includes/settings/tabs/wps-geoip.php:109
|
1279 |
msgid ""
|
1280 |
"GeoIP collection requires PHP %s or above, it is currently disabled due to "
|
1281 |
"the installed PHP version being "
|
1282 |
msgstr ""
|
1283 |
"جمع GeoIP يتطلب PHP %s أو أعلى، يتم تعطيله حاليا نظرا لكونها نسخة PHP مثبتة"
|
1284 |
|
1285 |
+
#: includes/log/widgets/search.php:8 includes/log/widgets/summary.php:64
|
1286 |
msgid "Search Engine Referrals"
|
1287 |
msgstr "محرك البحث الدعوات"
|
1288 |
|
1289 |
+
#: includes/log/widgets/summary.php:88
|
1290 |
msgid "Daily Total"
|
1291 |
msgstr "المجموع اليومي"
|
1292 |
|
1293 |
+
#: includes/log/widgets/summary.php:102
|
1294 |
msgid "Current Time and Date"
|
1295 |
msgstr "التوقيت الحالي و التاريخ"
|
1296 |
|
1297 |
+
#: includes/optimization/tabs/wps-optimization-database.php:39
|
1298 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:25
|
1299 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:40
|
1300 |
msgid "Update Now!"
|
1301 |
msgstr "تحديث الآن!"
|
1302 |
|
1303 |
+
#: includes/settings/tabs/wps-access-level.php:87
|
|
|
|
|
|
|
|
|
|
|
|
|
1304 |
msgid ""
|
1305 |
"Each of the above casscades the rights upwards in the default WordPress "
|
1306 |
"configuration. So for example selecting publish_posts grants the right to "
|
1309 |
"كل ما سبق من الكاسكيدز هي حقوق تكوين الووردبريس الافتراضي. على سبيل المثال "
|
1310 |
"عند اختيار publish_posts يمنح حقوق المؤلف,المحرر,المدير,المسؤول."
|
1311 |
|
1312 |
+
#: includes/settings/tabs/wps-access-level.php:88
|
1313 |
msgid ""
|
1314 |
"If you need a more robust solution to delegate access you might want to look "
|
1315 |
"at %s in the WordPress plugin directory."
|
1317 |
"إذا كنت في حاجة الى حل أكثر قوة لتفويض الوصول التي قد ترغب في النظر في %s "
|
1318 |
"الدليل المساعد لووردبريس."
|
1319 |
|
1320 |
+
#: includes/settings/tabs/wps-access-level.php:62
|
1321 |
msgid "Required user level to view WP Statistics"
|
1322 |
msgstr "مطلوب مستوى المستخدم لعرض الاحصائيات"
|
1323 |
|
1324 |
+
#: includes/settings/tabs/wps-access-level.php:77
|
1325 |
msgid "Required user level to manage WP Statistics"
|
1326 |
msgstr "مطلوب مستوى المستخدم لإدارة الاحصائيات"
|
1327 |
|
1328 |
+
#: includes/settings/tabs/wps-geoip.php:56
|
1329 |
msgid "Schedule monthly update of GeoIP DB"
|
1330 |
msgstr "جدولة التحديث الشهري لGeoIP DB"
|
1331 |
|
1332 |
+
#: includes/settings/tabs/wps-geoip.php:82
|
1333 |
msgid ""
|
1334 |
"Download of the GeoIP database will be scheduled for 2 days after the first "
|
1335 |
"Tuesday of the month."
|
1337 |
"سيتم جدولة التحميل من قاعدة البيانات GeoIP لمدة 2 يوما بعد يوم الثلاثاء "
|
1338 |
"الأول من الشهر."
|
1339 |
|
1340 |
+
#: includes/settings/tabs/wps-geoip.php:83
|
1341 |
msgid ""
|
1342 |
"This option will also download the database if the local filesize is less "
|
1343 |
"than 1k (which usually means the stub that comes with the plugin is still in "
|
1347 |
"(الذي يعني عادة أن طرف البرنامج التي تأتي مع البرنامج المساعد لا يزال في "
|
1348 |
"مكانه)."
|
1349 |
|
1350 |
+
#: includes/settings/tabs/wps-geoip.php:89
|
1351 |
msgid "Populate missing GeoIP after update of GeoIP DB"
|
1352 |
msgstr "تعبئة GeoIP في عداد المفقودين بعد التحديث من GeoIP DB"
|
1353 |
|
1354 |
+
#: includes/settings/tabs/wps-geoip.php:95
|
1355 |
msgid "Update any missing GeoIP data after downloading a new database."
|
1356 |
msgstr "تحديث أي بيانات GeoIP مفقودة بعد تحميل قاعدة البيانات الجديدة."
|
1357 |
|
1358 |
+
#: includes/functions/geoip-populate.php:50
|
1359 |
msgid "Updated %s GeoIP records in the visitors database."
|
1360 |
msgstr "تحديث السجلات %s GeoIP في قاعدة بيانات الزوار."
|
1361 |
|
1362 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:98
|
1363 |
msgid "Version Info"
|
1364 |
msgstr "معلومات الإصدار"
|
1365 |
|
1366 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:103
|
1367 |
msgid "WP Statistics Version"
|
1368 |
msgstr "نسخة WP Statistics"
|
1369 |
|
1370 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:108
|
1371 |
msgid "The WP Statistics version you are running."
|
1372 |
msgstr "إصدار WP Statistics."
|
1373 |
|
1374 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:114
|
1375 |
msgid "PHP Version"
|
1376 |
msgstr "نسخة PHP"
|
1377 |
|
1378 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:119
|
1379 |
msgid "The PHP version you are running."
|
1380 |
msgstr "إصدار PHP."
|
1381 |
|
1382 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:136
|
1383 |
msgid "jQuery Version"
|
1384 |
msgstr "نسخة jQuery"
|
1385 |
|
1386 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:141
|
1387 |
msgid "The jQuery version you are running."
|
1388 |
msgstr "إصدار jQuery."
|
1389 |
|
1390 |
+
#: wp-statistics.php:610
|
1391 |
msgid "Error could not open downloaded GeoIP database for reading: %s"
|
1392 |
msgstr "خطأ لا يمكن فتح قاعدة البيانات GeoIP التي تم تحميلها للقراءة: %s"
|
1393 |
|
1394 |
+
#: wp-statistics.php:617
|
1395 |
msgid "Error could not open destination GeoIP database for writing %s"
|
1396 |
msgstr "خطأ لا يمكن فتح قاعدة البيانات GeoIP لجهة الكتابة %s"
|
1397 |
|
1398 |
+
#: wp-statistics.php:633
|
1399 |
msgid "GeoIP Database updated successfully!"
|
1400 |
msgstr "تم تحديث قاعدة بيانات GeoIP بنجاح!"
|
1401 |
|
1402 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:229
|
1403 |
msgid "Client Info"
|
1404 |
msgstr "معلومات العميل"
|
1405 |
|
1406 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:234
|
1407 |
msgid "Client IP"
|
1408 |
msgstr "IP العميل"
|
1409 |
|
1410 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:239
|
1411 |
msgid "The client IP address."
|
1412 |
msgstr "عنوان IP للعميل."
|
1413 |
|
1414 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:245
|
1415 |
msgid "User Agent"
|
1416 |
msgstr "وكيل المستخدم"
|
1417 |
|
1418 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:250
|
1419 |
msgid "The client user agent string."
|
1420 |
msgstr "سلسلة عامل المستخدم العميل."
|
1421 |
|
1422 |
+
#: includes/settings/tabs/wps-access-level.php:105
|
|
|
|
|
|
|
|
|
1423 |
msgid "Exclude User Roles"
|
1424 |
msgstr "استبعاد أدوار المستخدم"
|
1425 |
|
1426 |
+
#: includes/settings/tabs/wps-access-level.php:119
|
1427 |
+
#: includes/settings/tabs/wps-access-level.php:174
|
1428 |
+
#: includes/settings/tabs/wps-access-level.php:181
|
1429 |
msgid "Exclude"
|
1430 |
msgstr "منع"
|
1431 |
|
1432 |
+
#: includes/settings/tabs/wps-access-level.php:120
|
1433 |
msgid "Exclude %s role from data collection."
|
1434 |
msgstr "استبعاد دور %s من جمع البيانات."
|
1435 |
|
1436 |
+
#: includes/settings/tabs/wps-access-level.php:126
|
1437 |
msgid "IP/Robot Exclusions"
|
1438 |
msgstr "استثناءات IP/Robot"
|
1439 |
|
1440 |
+
#: includes/settings/tabs/wps-access-level.php:143
|
1441 |
msgid ""
|
1442 |
"A list of words (one per line) to match against to detect robots. Entries "
|
1443 |
"must be at least 4 characters long or they will be ignored."
|
1445 |
"قائمة من الكلمات (واحد في كل سطر) لمطابقة ضد للكشف عن الروبوتات. يجب أن تكون "
|
1446 |
"إدخالات 4 أحرف على الأقل أو أنها سيتم تجاهلها."
|
1447 |
|
1448 |
+
#: includes/settings/tabs/wps-access-level.php:144
|
1449 |
msgid "Reset to Default"
|
1450 |
msgstr "إعادة تعيين إلى الافتراضي"
|
1451 |
|
1452 |
+
#: includes/settings/tabs/wps-access-level.php:161
|
1453 |
msgid "Add 10.0.0.0"
|
1454 |
msgstr "إضافة 10.0.0.0"
|
1455 |
|
1456 |
+
#: includes/settings/tabs/wps-access-level.php:162
|
1457 |
msgid "Add 172.16.0.0"
|
1458 |
msgstr "إضافة 172.16.0.0"
|
1459 |
|
1460 |
+
#: includes/settings/tabs/wps-access-level.php:163
|
1461 |
msgid "Add 192.168.0.0"
|
1462 |
msgstr "إضافة 192.168.0.0"
|
1463 |
|
1464 |
+
#: includes/settings/tabs/wps-general.php:264
|
1465 |
msgid "Charts"
|
1466 |
msgstr "الرسوم البيانية"
|
1467 |
|
1468 |
+
#: includes/settings/tabs/wps-geoip.php:38
|
1469 |
msgid ""
|
1470 |
"For get more information and location (country) from visitor, enable this "
|
1471 |
"feature."
|
1472 |
msgstr ""
|
1473 |
"للحصول على مزيد من المعلومات، والمكان (البلد) من الزوار، تمكين هذه الميزة."
|
1474 |
|
1475 |
+
#: includes/settings/wps-settings.php:87 wp-statistics.php:248
|
|
|
|
|
|
|
|
|
1476 |
msgid "Overview"
|
1477 |
msgstr "نظرة عامة"
|
1478 |
|
1479 |
+
#: includes/optimization/tabs/wps-optimization-database.php:25
|
1480 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:21
|
1481 |
+
#: wp-statistics.php:251
|
1482 |
msgid "Countries"
|
1483 |
msgstr "الدول"
|
1484 |
|
1485 |
+
#: wp-statistics.php:176 wp-statistics.php:253
|
|
|
1486 |
msgid "Hits"
|
1487 |
msgstr "نقرات"
|
1488 |
|
1489 |
+
#: wp-statistics.php:255
|
1490 |
msgid "Referers"
|
1491 |
msgstr "المراجع"
|
1492 |
|
1493 |
+
#: wp-statistics.php:256
|
1494 |
msgid "Searches"
|
1495 |
msgstr "عمليات البحث"
|
1496 |
|
1497 |
+
#: wp-statistics.php:257
|
1498 |
msgid "Search Words"
|
1499 |
msgstr "كلمات البحث"
|
1500 |
|
1501 |
+
#: includes/settings/tabs/wps-general.php:94
|
1502 |
msgid "Second"
|
1503 |
msgstr "ثانية"
|
1504 |
|
1505 |
+
#: includes/log/all-browsers.php:17
|
1506 |
msgid "Browser Statistics"
|
1507 |
msgstr "إحصائيات المتصفح"
|
1508 |
|
1509 |
+
#: includes/log/all-browsers.php:107
|
|
|
|
|
|
|
|
|
1510 |
msgid "Platform"
|
1511 |
msgstr "المنصة"
|
1512 |
|
1513 |
+
#: includes/log/all-browsers.php:241
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1514 |
msgid "%s Version"
|
1515 |
msgstr "الإصدار %s"
|
1516 |
|
1517 |
+
#: includes/log/hit-statistics.php:17 includes/log/widgets/hits.php:8
|
|
|
|
|
|
|
|
|
1518 |
msgid "Hit Statistics"
|
1519 |
msgstr "احصائية النقرات"
|
1520 |
|
1521 |
+
#: includes/log/exclusions.php:57 includes/log/hit-statistics.php:21
|
1522 |
+
#: includes/log/page-statistics.php:33 includes/log/search-statistics.php:21
|
|
|
|
|
1523 |
msgid "10 Days"
|
1524 |
msgstr "10 أيام"
|
1525 |
|
1526 |
+
#: includes/log/exclusions.php:58 includes/log/hit-statistics.php:22
|
1527 |
+
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:22
|
|
|
|
|
1528 |
msgid "20 Days"
|
1529 |
msgstr "20 يوم"
|
1530 |
|
1531 |
+
#: includes/log/exclusions.php:59 includes/log/hit-statistics.php:23
|
1532 |
+
#: includes/log/page-statistics.php:35 includes/log/search-statistics.php:23
|
|
|
|
|
1533 |
msgid "30 Days"
|
1534 |
msgstr "30 يو م"
|
1535 |
|
1536 |
+
#: includes/log/exclusions.php:60 includes/log/hit-statistics.php:24
|
1537 |
+
#: includes/log/page-statistics.php:36 includes/log/search-statistics.php:24
|
|
|
|
|
1538 |
msgid "2 Months"
|
1539 |
msgstr "شهرين"
|
1540 |
|
1541 |
+
#: includes/log/exclusions.php:61 includes/log/hit-statistics.php:25
|
1542 |
+
#: includes/log/page-statistics.php:37 includes/log/search-statistics.php:25
|
|
|
|
|
1543 |
msgid "3 Months"
|
1544 |
msgstr "3 أشهر"
|
1545 |
|
1546 |
+
#: includes/log/exclusions.php:62 includes/log/hit-statistics.php:26
|
1547 |
+
#: includes/log/page-statistics.php:38 includes/log/search-statistics.php:26
|
|
|
|
|
1548 |
msgid "6 Months"
|
1549 |
msgstr "6 أشهر"
|
1550 |
|
1551 |
+
#: includes/log/exclusions.php:63 includes/log/hit-statistics.php:27
|
1552 |
+
#: includes/log/page-statistics.php:39 includes/log/search-statistics.php:27
|
|
|
|
|
1553 |
msgid "9 Months"
|
1554 |
msgstr "9 أشهر"
|
1555 |
|
1556 |
+
#: includes/log/exclusions.php:64 includes/log/hit-statistics.php:28
|
1557 |
+
#: includes/log/page-statistics.php:40 includes/log/search-statistics.php:28
|
|
|
|
|
1558 |
msgid "1 Year"
|
1559 |
msgstr "سنة"
|
1560 |
|
1561 |
+
#: includes/settings/tabs/wps-overview-display.php:34
|
|
|
1562 |
msgid "Hits Statistical Chart"
|
1563 |
msgstr "الرسم البياني لعدد النقرات"
|
1564 |
|
1565 |
+
#: includes/log/exclusions.php:97 includes/log/hit-statistics.php:69
|
1566 |
+
#: includes/log/search-statistics.php:77 includes/log/widgets/hits.php:39
|
1567 |
+
#: includes/log/widgets/search.php:46
|
1568 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:150
|
|
|
|
|
|
|
|
|
1569 |
msgid "days"
|
1570 |
msgstr "أيام"
|
1571 |
|
1572 |
+
#: includes/log/widgets/countries.php:11
|
1573 |
+
#: includes/settings/tabs/wps-overview-display.php:27
|
1574 |
msgid "Top 10 Countries"
|
1575 |
msgstr "أعلى 10 دول"
|
1576 |
|
1577 |
+
#: includes/log/top-countries.php:28 includes/log/widgets/countries.php:17
|
|
|
1578 |
msgid "Rank"
|
1579 |
msgstr "الترتيب"
|
1580 |
|
1581 |
+
#: includes/log/top-countries.php:29 includes/log/widgets/countries.php:18
|
|
|
1582 |
msgid "Flag"
|
1583 |
msgstr "العلم"
|
1584 |
|
1585 |
+
#: includes/log/top-countries.php:31 includes/log/widgets/countries.php:20
|
|
|
1586 |
msgid "Visitor Count"
|
1587 |
msgstr "عدد الزوار"
|
1588 |
|
1589 |
+
#: includes/settings/tabs/wps-overview-display.php:35
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1590 |
msgid "Search Engine Referrers Statistical Chart"
|
1591 |
msgstr "الرسم البياني لمحركات البحث"
|
1592 |
|
1593 |
+
#: includes/log/top-countries.php:19
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1594 |
msgid "Top Countries"
|
1595 |
msgstr "أفضل الدول"
|
1596 |
|
1597 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:159
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1598 |
msgid "Delete User Agent Types"
|
1599 |
msgstr "حذف أنواع وكيل العضو"
|
1600 |
|
1601 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:164
|
1602 |
msgid "Delete Agents"
|
1603 |
msgstr "حذف الوكلاء"
|
1604 |
|
1605 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:179
|
1606 |
msgid "All visitor data will be lost for this agent type."
|
1607 |
msgstr "سيتم فقد جميع البيانات الزائر لهذا النوع."
|
1608 |
|
1609 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:180
|
1610 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:204
|
1611 |
msgid "Delete now!"
|
1612 |
msgstr "حذف الآن!"
|
1613 |
|
1614 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:188
|
1615 |
msgid "Delete Platforms"
|
1616 |
msgstr "حذف المنصات"
|
1617 |
|
1618 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:203
|
1619 |
msgid "All visitor data will be lost for this platform type."
|
1620 |
msgstr "سيتم فقد جميع البيانات الزائر لنوع هذه المنصة."
|
1621 |
|
1622 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:16
|
1623 |
msgid "GeoIP Options"
|
1624 |
msgstr "خيارات GeoIP"
|
1625 |
|
1626 |
+
#: includes/settings/tabs/wps-general.php:133
|
1627 |
msgid "Store entire user agent string"
|
1628 |
msgstr "تخزين كامل سلسلة عامل المستخدم"
|
1629 |
|
1630 |
+
#: includes/settings/tabs/wps-general.php:139
|
1631 |
msgid "Only enabled for debugging"
|
1632 |
msgstr "تمكين فقط من أجل التصحيح"
|
1633 |
|
1634 |
+
#: includes/settings/tabs/wps-geoip.php:17
|
1635 |
msgid "GeoIP settings"
|
1636 |
msgstr "إعدادات GeoIP"
|
1637 |
|
1638 |
+
#: includes/settings/tabs/wps-geoip.php:32
|
1639 |
msgid "GeoIP collection"
|
1640 |
msgstr "مجموعة GeoIP"
|
1641 |
|
1642 |
+
#: includes/settings/tabs/wps-geoip.php:44
|
1643 |
msgid "Update GeoIP Info"
|
1644 |
msgstr "تحديث معلومات GeoIP"
|
1645 |
|
1646 |
+
#: includes/settings/tabs/wps-geoip.php:49
|
1647 |
msgid "Download GeoIP Database"
|
1648 |
msgstr "تحميل قاعدة بيانات GeoIP"
|
1649 |
|
1650 |
+
#: includes/settings/tabs/wps-browscap.php:40
|
1651 |
+
#: includes/settings/tabs/wps-geoip.php:50
|
1652 |
msgid "Save changes on this page to download the update."
|
1653 |
msgstr "حفظ التغييرات على هذه الصفحة لتحميل التحديث."
|
1654 |
|
1655 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:10
|
1656 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:36
|
1657 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:62
|
1658 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:90
|
1659 |
msgid "Are you sure?"
|
1660 |
msgstr "هل أنت متأكد؟"
|
1661 |
|
1662 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:137
|
1663 |
msgid "Clear now!"
|
1664 |
msgstr "مسح الآن!"
|
1665 |
|
1666 |
+
#: wp-statistics.php:261
|
1667 |
msgid "Optimization"
|
1668 |
msgstr "التحسين"
|
1669 |
|
1670 |
+
#: includes/optimization/delete-agents.php:5
|
1671 |
+
#: includes/optimization/delete-platforms.php:5
|
1672 |
+
#: includes/optimization/empty.php:5 includes/optimization/export.php:5
|
1673 |
+
#: includes/optimization/purge-data.php:5
|
1674 |
+
#: includes/optimization/wps-optimization.php:3 manual/manual.php:5
|
|
|
1675 |
msgid "Access denied!"
|
1676 |
msgstr "تم رفض الوصول!"
|
1677 |
|
1678 |
+
#: includes/optimization/delete-agents.php:18
|
1679 |
+
#: includes/optimization/delete-platforms.php:18
|
1680 |
+
#: includes/optimization/empty.php:42 includes/optimization/export.php:57
|
|
|
|
|
|
|
|
|
|
|
1681 |
msgid "Please select the desired items."
|
1682 |
msgstr "يرجى تحديد العناصر المطلوبة."
|
1683 |
|
1684 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:17
|
1685 |
msgid "Resources"
|
1686 |
msgstr "الموارد"
|
1687 |
|
1688 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:22
|
1689 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:27
|
1690 |
msgid "Memory usage in PHP"
|
1691 |
msgstr "استخدام الذاكرة في PHP"
|
1692 |
|
1693 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:26
|
1694 |
msgid "Byte"
|
1695 |
msgstr "بايت"
|
1696 |
|
1697 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:48
|
1698 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:59
|
1699 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:70
|
1700 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:81
|
1701 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:92
|
1702 |
msgid "Row"
|
1703 |
msgstr "صف"
|
1704 |
|
1705 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:49
|
1706 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:60
|
1707 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:71
|
1708 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:82
|
1709 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:93
|
1710 |
msgid "Number of rows"
|
1711 |
msgstr "عدد الصفوف"
|
1712 |
|
1713 |
+
#: includes/optimization/tabs/wps-optimization-export.php:7
|
1714 |
+
#: includes/optimization/wps-optimization.php:127
|
|
|
|
|
|
|
1715 |
msgid "Export"
|
1716 |
msgstr "تصدير"
|
1717 |
|
1718 |
+
#: includes/optimization/tabs/wps-optimization-export.php:12
|
1719 |
msgid "Export from"
|
1720 |
msgstr "التصدير من"
|
1721 |
|
1722 |
+
#: includes/optimization/tabs/wps-optimization-export.php:24
|
1723 |
msgid "Select the table for the output file."
|
1724 |
msgstr "حدد الجدول لملف الإخراج."
|
1725 |
|
1726 |
+
#: includes/optimization/tabs/wps-optimization-export.php:30
|
1727 |
msgid "Export To"
|
1728 |
msgstr "التصدير إلى"
|
1729 |
|
1730 |
+
#: includes/optimization/tabs/wps-optimization-export.php:41
|
1731 |
msgid "Select the output file type."
|
1732 |
msgstr "حدد نوع ملف الإخراج."
|
1733 |
|
1734 |
+
#: includes/optimization/tabs/wps-optimization-export.php:53
|
1735 |
msgid "Start Now!"
|
1736 |
msgstr "ابدأ الآن!"
|
1737 |
|
1738 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:123
|
1739 |
msgid "Empty Table"
|
1740 |
msgstr "تفريغ الجدول"
|
1741 |
|
1742 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:136
|
1743 |
msgid "All data table will be lost."
|
1744 |
msgstr "سيتم فقدان جميع البيانات الجدول."
|
1745 |
|
1746 |
+
#: includes/settings/tabs/wps-about.php:44
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1747 |
msgid "Support"
|
1748 |
msgstr "دعم"
|
1749 |
|
1750 |
+
#: includes/settings/tabs/wps-about.php:74
|
1751 |
msgid "Farsi"
|
1752 |
msgstr "فارسي"
|
1753 |
|
1754 |
+
#: includes/log/top-referring.php:47
|
1755 |
msgid "Referring sites from"
|
1756 |
msgstr "مواقع اشارة من"
|
1757 |
|
1758 |
+
#: includes/settings/tabs/wps-about.php:36
|
1759 |
msgid "Translations"
|
1760 |
msgstr "الترجمات"
|
1761 |
|
1762 |
+
#: includes/log/top-referring.php:4
|
|
|
|
|
|
|
1763 |
msgid "To be added soon"
|
1764 |
msgstr "تضاف قريبا"
|
1765 |
|
1766 |
+
#: includes/log/last-search.php:102 includes/log/last-visitor.php:99
|
1767 |
+
#: includes/log/top-referring.php:78 includes/log/widgets/recent.php:27
|
1768 |
+
#: includes/log/widgets/words.php:32
|
1769 |
+
#: includes/settings/tabs/wps-overview-display.php:33
|
1770 |
+
#: includes/settings/tabs/wps-overview-display.php:71
|
|
|
1771 |
msgid "Map"
|
1772 |
msgstr "خريطة"
|
1773 |
|
1774 |
+
#: includes/log/last-search.php:139 includes/log/last-visitor.php:132
|
1775 |
+
#: includes/log/top-pages.php:181 includes/log/top-referring.php:132
|
|
|
|
|
1776 |
msgid "Page"
|
1777 |
msgstr "صفحة"
|
1778 |
|
1779 |
+
#: includes/log/last-search.php:139 includes/log/last-visitor.php:132
|
1780 |
+
#: includes/log/top-pages.php:181 includes/log/top-referring.php:132
|
|
|
|
|
1781 |
msgid "From"
|
1782 |
msgstr "من"
|
1783 |
|
1784 |
+
#: wp-statistics.php:455
|
1785 |
msgid "Table plugin does not exist! Please disable and re-enable the plugin."
|
1786 |
msgstr ""
|
1787 |
"هناك جدول مفقود في البرنامج المساعد! الرجاء تعطيل البرنامج المساعد ومن ثم "
|
1788 |
"تفعيلة مرة أخرى."
|
1789 |
|
1790 |
+
#: includes/settings/tabs/wps-general.php:280
|
1791 |
+
#: includes/settings/tabs/wps-general.php:285 schedule.php:161
|
|
|
1792 |
msgid "Statistical reporting"
|
1793 |
msgstr "تقارير الإحصائيات"
|
1794 |
|
1795 |
+
#: widget.php:14 wp-statistics.php:245
|
|
|
|
|
1796 |
msgid "Statistics"
|
1797 |
msgstr "الاحصائيات"
|
1798 |
|
1799 |
+
#: includes/settings/tabs/wps-general.php:369 widget.php:38 widget.php:247
|
1800 |
+
#: wp-statistics.php:310
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1801 |
msgid "User Online"
|
1802 |
msgstr "المتواجدين الآن"
|
1803 |
|
1804 |
+
#: includes/settings/tabs/wps-general.php:371 widget.php:45 widget.php:250
|
|
|
|
|
1805 |
msgid "Today Visit"
|
1806 |
msgstr "زيارات اليوم"
|
1807 |
|
1808 |
+
#: includes/settings/tabs/wps-general.php:370 widget.php:52 widget.php:253
|
|
|
|
|
1809 |
msgid "Today Visitor"
|
1810 |
msgstr "زوار اليوم"
|
1811 |
|
1812 |
+
#: includes/settings/tabs/wps-general.php:373 widget.php:59
|
|
|
1813 |
msgid "Yesterday Visit"
|
1814 |
msgstr "زيارات الأمس"
|
1815 |
|
1816 |
+
#: includes/settings/tabs/wps-general.php:372 widget.php:66 widget.php:259
|
|
|
|
|
1817 |
msgid "Yesterday Visitor"
|
1818 |
msgstr "زوار الأمس"
|
1819 |
|
1820 |
+
#: widget.php:73 widget.php:262
|
|
|
1821 |
msgid "Week Visit"
|
1822 |
msgstr "زيارات الأسبوع"
|
1823 |
|
1824 |
+
#: widget.php:80 widget.php:265
|
|
|
1825 |
msgid "Month Visit"
|
1826 |
msgstr "زيارات الشهر"
|
1827 |
|
1828 |
+
#: widget.php:87 widget.php:268
|
|
|
1829 |
msgid "Years Visit"
|
1830 |
msgstr "زيارات السنة"
|
1831 |
|
1832 |
+
#: includes/settings/tabs/wps-general.php:375 widget.php:94 widget.php:271
|
|
|
|
|
1833 |
msgid "Total Visit"
|
1834 |
msgstr "مجموع الزيارات"
|
1835 |
|
1836 |
+
#: includes/settings/tabs/wps-general.php:374 widget.php:101 widget.php:274
|
|
|
|
|
1837 |
msgid "Total Visitor"
|
1838 |
msgstr "مجموع الزوار"
|
1839 |
|
1840 |
+
#: widget.php:123 widget.php:300
|
|
|
|
|
|
|
|
|
|
|
1841 |
msgid "Total Posts"
|
1842 |
msgstr "إجمالي المشاركات"
|
1843 |
|
1844 |
+
#: widget.php:130 widget.php:303
|
|
|
1845 |
msgid "Total Pages"
|
1846 |
msgstr "إجمالي الصفحات"
|
1847 |
|
1848 |
+
#: widget.php:137 widget.php:306
|
|
|
1849 |
msgid "Total Comments"
|
1850 |
msgstr "إجمالي التعليقات"
|
1851 |
|
1852 |
+
#: widget.php:144 widget.php:309
|
|
|
1853 |
msgid "Total Spams"
|
1854 |
msgstr "إجمالي السبام"
|
1855 |
|
1856 |
+
#: widget.php:151 widget.php:312
|
|
|
1857 |
msgid "Total Users"
|
1858 |
msgstr "عدد الاعضاء"
|
1859 |
|
1860 |
+
#: widget.php:158 widget.php:315
|
|
|
1861 |
msgid "Average Posts"
|
1862 |
msgstr "متوسط المشاركات"
|
1863 |
|
1864 |
+
#: widget.php:165 widget.php:318
|
|
|
1865 |
msgid "Average Comments"
|
1866 |
msgstr "متوسط التعليقات"
|
1867 |
|
1868 |
+
#: widget.php:172 widget.php:321
|
|
|
1869 |
msgid "Average Users"
|
1870 |
msgstr "متوسط الاعضاء"
|
1871 |
|
1872 |
+
#: widget.php:179 widget.php:324
|
|
|
1873 |
msgid "Last Post Date"
|
1874 |
msgstr "تاريخ آخر مشاركة"
|
1875 |
|
1876 |
+
#: wp-statistics.php:340
|
1877 |
msgid "View Stats"
|
1878 |
msgstr "عرض الإحصائيات"
|
1879 |
|
1880 |
+
#: wp-statistics.php:152 wp-statistics.php:262
|
|
|
1881 |
msgid "Settings"
|
1882 |
msgstr "الإعدادات"
|
1883 |
|
1884 |
+
#: wp-statistics.php:316
|
1885 |
msgid "Today visitor"
|
1886 |
msgstr "زوار اليوم"
|
1887 |
|
1888 |
+
#: wp-statistics.php:322
|
1889 |
msgid "Today visit"
|
1890 |
msgstr "زيارات اليوم"
|
1891 |
|
1892 |
+
#: wp-statistics.php:328
|
1893 |
msgid "Yesterday visitor"
|
1894 |
msgstr "زيارات الأمس"
|
1895 |
|
1896 |
+
#: widget.php:256 wp-statistics.php:334
|
|
|
1897 |
msgid "Yesterday visit"
|
1898 |
msgstr "زيارات الأمس"
|
1899 |
|
1900 |
+
#: wp-statistics.php:444 wp-statistics.php:544 wp-statistics.php:815
|
|
|
|
|
1901 |
msgid "You do not have sufficient permissions to access this page."
|
1902 |
msgstr "ليس لديك الصلاحيات الكافية لدخول هذه الصفحة."
|
1903 |
|
1904 |
+
#: includes/log/all-browsers.php:23 includes/log/all-browsers.php:106
|
1905 |
+
#: includes/log/all-browsers.php:240 includes/log/exclusions.php:74
|
1906 |
+
#: includes/log/hit-statistics.php:35 includes/log/last-search.php:61
|
1907 |
+
#: includes/log/last-visitor.php:57 includes/log/page-statistics.php:47
|
1908 |
+
#: includes/log/search-statistics.php:35 includes/log/top-pages.php:19
|
1909 |
+
#: includes/log/top-pages.php:131 includes/log/top-referring.php:45
|
1910 |
+
#: includes/log/widgets/about.php:7 includes/log/widgets/browsers.php:7
|
1911 |
+
#: includes/log/widgets/countries.php:9 includes/log/widgets/google.map.php:8
|
1912 |
+
#: includes/log/widgets/hits.php:7 includes/log/widgets/jqv.map.php:8
|
1913 |
+
#: includes/log/widgets/pages.php:11 includes/log/widgets/recent.php:7
|
1914 |
+
#: includes/log/widgets/referring.php:11 includes/log/widgets/search.php:7
|
1915 |
+
#: includes/log/widgets/summary.php:7 includes/log/widgets/words.php:14
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1916 |
msgid "Click to toggle"
|
1917 |
msgstr "انقر للتبديل"
|
1918 |
|
1919 |
+
#: includes/settings/tabs/wps-overview-display.php:24
|
1920 |
msgid "Summary Statistics"
|
1921 |
msgstr "ملخص الاحصائيات"
|
1922 |
|
1923 |
+
#: includes/log/hit-statistics.php:104 includes/log/widgets/hits.php:74
|
1924 |
+
#: includes/log/widgets/summary.php:19
|
|
|
1925 |
msgid "Visitor"
|
1926 |
msgstr "زائر"
|
1927 |
|
1928 |
+
#: includes/log/hit-statistics.php:104 includes/log/widgets/hits.php:74
|
1929 |
+
#: includes/log/widgets/summary.php:20
|
|
|
1930 |
msgid "Visit"
|
1931 |
msgstr "زيارة"
|
1932 |
|
1933 |
+
#: includes/log/widgets/summary.php:24 includes/log/widgets/summary.php:69
|
|
|
1934 |
msgid "Today"
|
1935 |
msgstr "اليوم"
|
1936 |
|
1937 |
+
#: includes/log/widgets/summary.php:30 includes/log/widgets/summary.php:70
|
|
|
1938 |
msgid "Yesterday"
|
1939 |
msgstr "الأمس"
|
1940 |
|
1941 |
+
#: includes/log/widgets/summary.php:36
|
1942 |
msgid "Week"
|
1943 |
msgstr "أسبوع"
|
1944 |
|
1945 |
+
#: includes/log/widgets/summary.php:42
|
1946 |
msgid "Month"
|
1947 |
msgstr "الشهر"
|
1948 |
|
1949 |
+
#: includes/log/widgets/summary.php:48
|
1950 |
msgid "Year"
|
1951 |
msgstr "سنة"
|
1952 |
|
1953 |
+
#: includes/log/search-statistics.php:112 includes/log/widgets/search.php:81
|
1954 |
+
#: includes/log/widgets/summary.php:54 includes/log/widgets/summary.php:94
|
|
|
|
|
1955 |
msgid "Total"
|
1956 |
msgstr "المجموع"
|
1957 |
|
1958 |
+
#: includes/log/widgets/summary.php:102
|
1959 |
msgid "(Adjustment)"
|
1960 |
msgstr "(التوافق)"
|
1961 |
|
1962 |
+
#: includes/log/all-browsers.php:24 includes/log/widgets/browsers.php:8
|
1963 |
+
#: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:249
|
|
|
1964 |
msgid "Browsers"
|
1965 |
msgstr "المتصفحات"
|
1966 |
|
1967 |
+
#: includes/log/widgets/browsers.php:38
|
1968 |
+
msgid "Other"
|
1969 |
+
msgstr "أخرى"
|
|
|
|
|
|
|
|
|
|
|
1970 |
|
1971 |
+
#: includes/log/widgets/referring.php:20
|
|
|
|
|
|
|
|
|
|
|
|
|
1972 |
msgid "Address"
|
1973 |
msgstr "العنوان"
|
1974 |
|
1975 |
+
#: includes/log/hit-statistics.php:90 includes/log/widgets/hits.php:60
|
|
|
|
|
|
|
|
|
|
|
1976 |
msgid "Number of visits and visitors"
|
1977 |
msgstr "عدد الزيارات والزوار"
|
1978 |
|
1979 |
+
#: includes/settings/tabs/wps-overview-display.php:86
|
1980 |
+
msgid "Google"
|
1981 |
+
msgstr "جوجل"
|
|
|
|
|
1982 |
|
1983 |
+
#: includes/log/last-visitor.php:27 includes/log/widgets/recent.php:9
|
1984 |
+
#: includes/settings/tabs/wps-overview-display.php:38
|
|
|
1985 |
msgid "Recent Visitors"
|
1986 |
msgstr "الزيارات الأخيرة"
|
1987 |
|
1988 |
+
#: includes/log/top-countries.php:30 includes/log/widgets/countries.php:19
|
|
|
1989 |
msgid "Country"
|
1990 |
msgstr "الدولة"
|
1991 |
|
1992 |
+
#: includes/settings/tabs/wps-browscap.php:27
|
1993 |
+
#: includes/settings/tabs/wps-browscap.php:51
|
1994 |
+
#: includes/settings/tabs/wps-general.php:66
|
1995 |
+
#: includes/settings/tabs/wps-general.php:82
|
1996 |
+
#: includes/settings/tabs/wps-general.php:110
|
1997 |
+
#: includes/settings/tabs/wps-general.php:126
|
1998 |
+
#: includes/settings/tabs/wps-general.php:138
|
1999 |
+
#: includes/settings/tabs/wps-general.php:165
|
2000 |
+
#: includes/settings/tabs/wps-general.php:177
|
2001 |
+
#: includes/settings/tabs/wps-general.php:189
|
2002 |
+
#: includes/settings/tabs/wps-general.php:219
|
2003 |
+
#: includes/settings/tabs/wps-general.php:231
|
2004 |
+
#: includes/settings/tabs/wps-general.php:274
|
2005 |
+
#: includes/settings/tabs/wps-general.php:290
|
2006 |
+
#: includes/settings/tabs/wps-geoip.php:37
|
2007 |
+
#: includes/settings/tabs/wps-geoip.php:61
|
2008 |
+
#: includes/settings/tabs/wps-geoip.php:94
|
2009 |
+
#: includes/settings/tabs/wps-maintenance.php:40
|
2010 |
+
#: includes/settings/tabs/wps-overview-display.php:105
|
2011 |
+
#: includes/settings/tabs/wps-overview-display.php:117
|
|
|
|
|
|
|
|
|
2012 |
msgid "Active"
|
2013 |
msgstr "تفعيل"
|
2014 |
|
2015 |
+
#: includes/settings/tabs/wps-general.php:83
|
2016 |
+
#: includes/settings/tabs/wps-general.php:111
|
2017 |
+
#: includes/settings/tabs/wps-general.php:127
|
2018 |
+
#: includes/settings/tabs/wps-general.php:166
|
2019 |
+
#: includes/settings/tabs/wps-general.php:178
|
2020 |
+
#: includes/settings/tabs/wps-general.php:190
|
2021 |
+
#: includes/settings/tabs/wps-general.php:291
|
2022 |
msgid "Enable or disable this feature"
|
2023 |
msgstr "تمكين أو تعطيل هذه الميزة"
|
2024 |
|
2025 |
+
#: includes/log/top-pages.php:163 includes/log/widgets/pages.php:30
|
2026 |
+
#: includes/settings/tabs/wps-general.php:100
|
2027 |
+
#: includes/settings/tabs/wps-general.php:105
|
|
|
2028 |
msgid "Visits"
|
2029 |
msgstr "مرة"
|
2030 |
|
2031 |
+
#: includes/settings/tabs/wps-general.php:116
|
2032 |
+
#: includes/settings/tabs/wps-general.php:121 wp-statistics.php:258
|
|
|
2033 |
msgid "Visitors"
|
2034 |
msgstr "الزوار"
|
2035 |
|
2036 |
+
#: includes/settings/tabs/wps-general.php:89
|
2037 |
msgid "Check for online users every"
|
2038 |
msgstr "تحقق من المتصلين في الموقع في كل"
|
2039 |
|
2040 |
+
#: includes/settings/tabs/wps-general.php:95
|
2041 |
msgid "Time for the check accurate online user in the site. Now: %s Second"
|
2042 |
msgstr "وقت التحقق من المستخدمين المتصلين في الموقع. الآن: %s ثانية"
|
2043 |
|
2044 |
+
#: includes/settings/tabs/wps-general.php:200
|
2045 |
msgid "Show stats in menu bar"
|
2046 |
msgstr "إظهار الاحصائيات في شريط القوائم"
|
2047 |
|
2048 |
+
#: includes/settings/tabs/wps-general.php:205
|
2049 |
msgid "No"
|
2050 |
msgstr "لا"
|
2051 |
|
2052 |
+
#: includes/settings/tabs/wps-general.php:206
|
2053 |
msgid "Yes"
|
2054 |
msgstr "نعم"
|
2055 |
|
2056 |
+
#: includes/settings/tabs/wps-general.php:208
|
2057 |
msgid "Show stats in admin menu bar"
|
2058 |
msgstr "اظهار الاحصائيات في شريط القوائم الإداري"
|
2059 |
|
2060 |
+
#: includes/settings/tabs/wps-general.php:145
|
2061 |
msgid "Coefficient per visitor"
|
2062 |
msgstr "درجة لكل زائر"
|
2063 |
|
2064 |
+
#: includes/settings/tabs/wps-general.php:150
|
2065 |
msgid "For each visit to account for several hits. Currently %s."
|
2066 |
msgstr "حساب توجيه النقرات لكل زائر. حالياً %s."
|
2067 |
|
2068 |
+
#: includes/settings/tabs/wps-general.php:322
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2069 |
msgid "Select when receiving statistics report."
|
2070 |
msgstr "حدد عند استلام إحصاءات التقرير."
|
2071 |
|
2072 |
+
#: includes/settings/tabs/wps-general.php:334
|
|
|
|
|
|
|
|
|
2073 |
msgid "Email"
|
2074 |
msgstr "البريد الإلكتروني"
|
2075 |
|
2076 |
+
#: includes/settings/tabs/wps-general.php:335
|
2077 |
msgid "SMS"
|
2078 |
msgstr "رسائل نصية"
|
2079 |
|
2080 |
+
#: includes/settings/tabs/wps-general.php:337
|
2081 |
msgid "Type Select Get Status Report."
|
2082 |
msgstr "حدد نوع الحصول على التقرير."
|
2083 |
|
2084 |
+
#: includes/settings/tabs/wps-general.php:363
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2085 |
msgid "Enter the contents of the reports received."
|
2086 |
msgstr "أدخل محتويات التقارير الواردة."
|
2087 |
|
2088 |
+
#: widget.php:240
|
|
|
|
|
|
|
|
|
2089 |
msgid "Name"
|
2090 |
msgstr "الأسم"
|
2091 |
|
2092 |
+
#: widget.php:244
|
2093 |
msgid "Items"
|
2094 |
msgstr "البنود"
|
2095 |
|
2096 |
+
#: widget.php:283
|
2097 |
msgid "Select type of search engine"
|
2098 |
msgstr "حدد نوع من محرك البحث"
|
2099 |
|
2100 |
+
#: includes/log/last-visitor.php:29 includes/log/top-referring.php:36
|
2101 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:134 widget.php:296
|
|
|
|
|
2102 |
msgid "All"
|
2103 |
msgstr "الكل"
|
languages/wp_statistics-bg_BG.mo
CHANGED
Binary file
|
languages/wp_statistics-bg_BG.po
CHANGED
@@ -1,892 +1,2138 @@
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-01-28 19:00+0330\n"
|
6 |
-
"PO-Revision-Date: 2013-01-28 19:00+0330\n"
|
7 |
-
"Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
|
8 |
-
"Language-Team: \n"
|
9 |
-
"Language: en\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"
|
14 |
-
"X-
|
15 |
-
"
|
16 |
-
"
|
17 |
-
"
|
18 |
-
"
|
19 |
-
|
20 |
-
|
21 |
-
#:
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
|
27 |
-
#:
|
28 |
-
|
29 |
-
|
30 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:58
|
31 |
-
msgid "Statistics"
|
32 |
-
msgstr "Статистики"
|
33 |
|
34 |
-
#:
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:14
|
44 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:159
|
45 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:9
|
46 |
-
msgid "User Online"
|
47 |
-
msgstr "Онлайн потребители"
|
48 |
|
49 |
-
#:
|
50 |
-
|
51 |
-
|
52 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:12
|
53 |
-
msgid "Today Visit"
|
54 |
-
msgstr "Посещения от днес"
|
55 |
|
56 |
-
#:
|
57 |
-
|
58 |
-
|
59 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:15
|
60 |
-
#, fuzzy
|
61 |
-
msgid "Today Visitor"
|
62 |
-
msgstr "Посещения от днес"
|
63 |
|
64 |
-
#:
|
65 |
-
#:
|
66 |
-
|
67 |
-
|
68 |
-
msgstr "Вчерашни посещения"
|
69 |
|
70 |
-
#:
|
71 |
-
|
72 |
-
|
73 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:21
|
74 |
-
#, fuzzy
|
75 |
-
msgid "Yesterday Visitor"
|
76 |
-
msgstr "Вчерашни посещения"
|
77 |
|
78 |
-
#:
|
79 |
-
|
80 |
-
|
81 |
-
msgid "Week Visit"
|
82 |
-
msgstr "Седмични посещения"
|
83 |
|
84 |
-
#:
|
85 |
-
|
86 |
-
|
87 |
-
msgid "Month Visit"
|
88 |
-
msgstr "Месечни посещения"
|
89 |
|
90 |
-
#:
|
91 |
-
|
92 |
-
|
93 |
-
msgid "Years Visit"
|
94 |
-
msgstr "Годишни посещения"
|
95 |
|
96 |
-
#:
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
|
103 |
-
#:
|
104 |
-
|
105 |
-
|
106 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:36
|
107 |
-
#, fuzzy
|
108 |
-
msgid "Total Visitor"
|
109 |
-
msgstr "Общо посещения"
|
110 |
|
111 |
-
#:
|
112 |
-
|
113 |
-
|
114 |
-
msgid "Search Engine reffered"
|
115 |
-
msgstr "От търсачки"
|
116 |
|
117 |
-
#:
|
118 |
-
|
119 |
-
|
120 |
-
msgid "Total Posts"
|
121 |
-
msgstr "Общо публикации"
|
122 |
|
123 |
-
#:
|
124 |
-
|
125 |
-
|
126 |
-
msgid "Total Pages"
|
127 |
-
msgstr "Общо страници"
|
128 |
|
129 |
-
#:
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
134 |
|
135 |
-
#:
|
136 |
-
|
137 |
-
|
138 |
-
msgid "Total Spams"
|
139 |
-
msgstr "Общо спам"
|
140 |
|
141 |
-
#:
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
msgstr "
|
|
|
|
|
146 |
|
147 |
-
#:
|
148 |
-
|
149 |
-
|
150 |
-
msgid "Average Posts"
|
151 |
-
msgstr "Средно публикации"
|
152 |
|
153 |
-
#:
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
msgstr "
|
|
|
|
|
158 |
|
159 |
-
#:
|
160 |
-
|
161 |
-
|
162 |
-
msgid "Average Users"
|
163 |
-
msgstr "Средно потребители"
|
164 |
|
165 |
-
#:
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
|
|
170 |
|
171 |
-
#:
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
msgstr ""
|
|
|
|
|
176 |
|
177 |
-
#:
|
178 |
-
|
179 |
-
|
180 |
-
msgstr "
|
|
|
181 |
|
182 |
-
#:
|
183 |
-
|
184 |
-
|
185 |
-
msgid "Today visitor"
|
186 |
-
msgstr "Посещения от днес"
|
187 |
|
188 |
-
|
189 |
-
|
190 |
-
#, fuzzy
|
191 |
-
msgid "Today visit"
|
192 |
-
msgstr "Посещения от днес"
|
193 |
|
194 |
-
|
195 |
-
|
196 |
-
#, fuzzy
|
197 |
-
msgid "Yesterday visitor"
|
198 |
-
msgstr "Вчерашни посещения"
|
199 |
|
200 |
-
#:
|
201 |
-
|
202 |
-
|
203 |
-
msgid "Yesterday visit"
|
204 |
-
msgstr "Вчерашни посещения"
|
205 |
|
206 |
-
#:
|
207 |
-
|
208 |
-
|
209 |
-
msgid "You do not have sufficient permissions to access this page."
|
210 |
-
msgstr "Нямате права за тази страница"
|
211 |
|
212 |
-
#:
|
213 |
-
|
214 |
-
|
215 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:165
|
216 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:209
|
217 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:244
|
218 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:334
|
219 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:374
|
220 |
-
msgid "Click to toggle"
|
221 |
-
msgstr ""
|
222 |
|
223 |
-
#:
|
224 |
-
|
225 |
-
|
226 |
-
msgid "Summary Statistics"
|
227 |
-
msgstr "Статистики"
|
228 |
|
229 |
-
#:
|
230 |
-
|
231 |
-
|
232 |
-
msgid "Visitor"
|
233 |
-
msgstr ""
|
234 |
|
235 |
-
#:
|
236 |
-
|
237 |
-
|
238 |
-
#, fuzzy
|
239 |
-
msgid "Visit"
|
240 |
-
msgstr "Седмични посещения"
|
241 |
|
242 |
-
#:
|
243 |
-
|
244 |
-
|
245 |
-
msgid "Today"
|
246 |
-
msgstr "Посещения от днес"
|
247 |
|
248 |
-
#:
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
|
|
|
|
|
|
|
|
253 |
|
254 |
-
#:
|
255 |
-
|
256 |
-
|
|
|
257 |
msgstr ""
|
|
|
|
|
258 |
|
259 |
-
#:
|
260 |
-
|
261 |
-
|
262 |
-
msgid "Month"
|
263 |
-
msgstr "Месечни посещения"
|
264 |
|
265 |
-
#:
|
266 |
-
|
267 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
268 |
msgstr ""
|
|
|
|
|
269 |
|
270 |
-
#:
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
275 |
|
276 |
-
#:
|
277 |
-
|
278 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
279 |
msgid ""
|
280 |
-
"
|
|
|
|
|
281 |
msgstr ""
|
|
|
|
|
|
|
282 |
|
283 |
-
#:
|
284 |
-
|
285 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
286 |
msgstr ""
|
|
|
|
|
287 |
|
288 |
-
#:
|
289 |
-
|
290 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
291 |
msgstr ""
|
|
|
|
|
292 |
|
293 |
-
#:
|
294 |
-
|
295 |
-
|
296 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
297 |
|
298 |
-
#:
|
299 |
-
|
300 |
-
|
|
|
|
|
301 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
302 |
|
303 |
-
#:
|
304 |
-
|
305 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
306 |
msgstr ""
|
|
|
|
|
|
|
307 |
|
308 |
-
#:
|
309 |
-
|
310 |
-
|
|
|
|
|
|
|
|
|
|
|
311 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
312 |
|
313 |
-
#:
|
314 |
-
|
315 |
-
|
|
|
|
|
316 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
317 |
|
318 |
-
#:
|
319 |
-
|
320 |
-
|
|
|
321 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
322 |
|
323 |
-
#:
|
324 |
-
|
325 |
-
|
|
|
326 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
327 |
|
328 |
-
#:
|
329 |
-
|
330 |
-
|
|
|
|
|
|
|
|
|
|
|
331 |
msgstr ""
|
|
|
|
|
332 |
|
333 |
-
#:
|
334 |
-
|
335 |
-
|
|
|
336 |
msgstr ""
|
|
|
|
|
337 |
|
338 |
-
#:
|
339 |
-
|
340 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
341 |
msgstr ""
|
|
|
342 |
|
343 |
-
#:
|
344 |
-
|
345 |
-
|
346 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:386
|
347 |
-
#, fuzzy
|
348 |
-
msgid "Reference"
|
349 |
-
msgstr "Пренасочване"
|
350 |
|
351 |
-
#:
|
352 |
-
|
353 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
354 |
msgstr ""
|
|
|
355 |
|
356 |
-
#:
|
357 |
-
|
358 |
-
|
359 |
-
msgid "About plugin"
|
360 |
-
msgstr "Форуми на плъгина"
|
361 |
|
362 |
-
#:
|
363 |
-
|
364 |
-
|
365 |
-
msgid "Plugin version: %s"
|
366 |
-
msgstr "Преводачи на плъгина"
|
367 |
|
368 |
-
#:
|
369 |
-
|
370 |
-
|
|
|
371 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
372 |
|
373 |
-
#:
|
374 |
-
|
375 |
-
|
376 |
-
msgid "Support plugin"
|
377 |
-
msgstr "Форуми на плъгина"
|
378 |
|
379 |
-
#:
|
380 |
-
|
381 |
-
msgid "Weblog"
|
382 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
383 |
|
384 |
-
#:
|
385 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:221
|
386 |
msgid ""
|
387 |
-
"
|
388 |
-
"
|
|
|
389 |
msgstr ""
|
|
|
|
|
|
|
390 |
|
391 |
-
#:
|
392 |
-
|
393 |
-
|
|
|
394 |
msgstr ""
|
|
|
|
|
395 |
|
396 |
-
#:
|
397 |
-
#:
|
398 |
-
|
399 |
-
|
400 |
-
msgstr "Статистики"
|
401 |
|
402 |
-
#:
|
403 |
-
#:
|
404 |
-
msgid "
|
405 |
-
msgstr ""
|
406 |
|
407 |
-
#:
|
408 |
-
|
409 |
-
|
410 |
-
msgstr ""
|
411 |
|
412 |
-
#:
|
413 |
-
|
414 |
-
|
|
|
|
|
415 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
416 |
|
417 |
-
#:
|
418 |
-
|
419 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
420 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
421 |
|
422 |
-
#:
|
423 |
-
|
424 |
-
|
425 |
-
|
|
|
|
|
426 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
427 |
|
428 |
-
#:
|
429 |
-
|
430 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
431 |
msgstr ""
|
|
|
432 |
|
433 |
-
#:
|
434 |
-
|
435 |
-
|
436 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
437 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
438 |
|
439 |
-
#:
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
msgstr ""
|
|
|
|
|
444 |
|
445 |
-
#:
|
446 |
-
|
447 |
-
|
448 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
449 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
450 |
|
451 |
-
#:
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:420
|
456 |
-
msgid "Unknown"
|
457 |
msgstr ""
|
|
|
|
|
458 |
|
459 |
-
#:
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
|
|
|
|
|
464 |
|
465 |
-
#:
|
466 |
-
|
467 |
-
|
|
|
|
|
|
|
|
|
|
|
468 |
msgstr ""
|
|
|
|
|
469 |
|
470 |
-
#:
|
471 |
-
|
472 |
-
|
|
|
473 |
msgstr ""
|
|
|
|
|
474 |
|
475 |
-
#:
|
476 |
-
|
477 |
-
|
|
|
478 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
479 |
|
480 |
-
#:
|
481 |
-
#:
|
482 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
483 |
msgstr ""
|
|
|
|
|
484 |
|
485 |
-
#:
|
486 |
-
|
487 |
-
|
488 |
-
msgid "General Settings"
|
489 |
-
msgstr "Настройки"
|
490 |
|
491 |
-
#:
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
#:
|
496 |
-
|
497 |
-
|
|
|
|
|
|
|
|
|
|
|
498 |
msgstr ""
|
|
|
|
|
499 |
|
500 |
-
#:
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
#:
|
505 |
-
msgid "
|
|
|
|
|
|
|
506 |
msgstr ""
|
|
|
|
|
|
|
507 |
|
508 |
-
#:
|
509 |
-
#:
|
510 |
-
|
511 |
-
|
512 |
-
msgstr "Седмични посещения"
|
513 |
|
514 |
-
#:
|
515 |
-
|
516 |
-
|
|
|
|
|
|
|
517 |
msgstr ""
|
|
|
|
|
|
|
|
|
518 |
|
519 |
-
#:
|
520 |
-
|
521 |
-
|
522 |
-
msgstr "Проверявай за онлайн потребители на всеки"
|
523 |
|
524 |
-
#:
|
525 |
-
|
526 |
-
|
527 |
-
msgid "Secound"
|
528 |
-
msgstr "Секунди"
|
529 |
|
530 |
-
#:
|
531 |
-
|
532 |
-
|
533 |
-
msgid "Time for the check accurate online user in the site. Now: %s Second"
|
534 |
-
msgstr ""
|
535 |
-
"Време е за проверка на онлайн потребител в сайта. По подразбиране: %s "
|
536 |
-
"секунди"
|
537 |
|
538 |
-
#:
|
539 |
-
|
540 |
-
|
541 |
-
msgstr "Покажи статистиките в менюто"
|
542 |
|
543 |
-
#:
|
544 |
-
|
545 |
-
|
546 |
-
msgstr ""
|
547 |
|
548 |
-
#:
|
549 |
-
|
550 |
-
|
551 |
-
msgstr "Да"
|
552 |
|
553 |
-
#:
|
554 |
-
|
555 |
-
|
556 |
-
msgstr "Покажи статистиките в админ менюто"
|
557 |
|
558 |
-
#:
|
559 |
-
|
560 |
-
|
561 |
-
msgstr "Коефициент за потребител"
|
562 |
|
563 |
-
#:
|
564 |
-
|
565 |
-
|
566 |
-
msgid "For each visit to account for several hits. Currently %s."
|
567 |
-
msgstr "За всеки посетител да се вземат предвид няколко хита."
|
568 |
|
569 |
-
#:
|
570 |
-
|
571 |
-
|
572 |
-
msgstr ""
|
573 |
|
574 |
-
#:
|
575 |
-
|
576 |
-
|
577 |
-
msgstr ""
|
578 |
|
579 |
-
#:
|
580 |
-
|
581 |
-
|
582 |
-
msgstr ""
|
583 |
|
584 |
-
#:
|
585 |
-
|
586 |
-
|
587 |
-
msgid "Time send"
|
588 |
-
msgstr "Време"
|
589 |
|
590 |
-
#:
|
591 |
-
|
592 |
-
|
593 |
-
#, fuzzy
|
594 |
-
msgid "Please select."
|
595 |
-
msgstr "Моля въведете стойност!"
|
596 |
|
597 |
-
#:
|
598 |
-
|
599 |
-
|
600 |
-
msgstr ""
|
601 |
|
602 |
-
#:
|
603 |
-
|
604 |
-
|
605 |
-
|
|
|
|
|
|
|
606 |
|
607 |
-
#:
|
608 |
-
|
609 |
-
|
|
|
610 |
msgstr ""
|
|
|
|
|
611 |
|
612 |
-
#:
|
613 |
-
|
614 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
615 |
msgstr ""
|
|
|
|
|
616 |
|
617 |
-
#:
|
618 |
-
|
619 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
620 |
msgstr ""
|
|
|
|
|
621 |
|
622 |
-
#:
|
623 |
-
|
624 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
625 |
msgstr ""
|
|
|
|
|
626 |
|
627 |
-
#:
|
628 |
-
|
629 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
630 |
msgstr ""
|
|
|
|
|
631 |
|
632 |
-
#:
|
633 |
-
|
634 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
635 |
msgstr ""
|
|
|
|
|
|
|
636 |
|
637 |
-
#:
|
638 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:144
|
639 |
-
#, php-format
|
640 |
msgid ""
|
641 |
-
"
|
642 |
-
"
|
643 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
644 |
|
645 |
-
#:
|
646 |
-
|
647 |
-
|
|
|
648 |
msgstr ""
|
|
|
|
|
649 |
|
650 |
-
#:
|
651 |
-
|
652 |
-
|
|
|
|
|
653 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
654 |
|
655 |
-
#:
|
656 |
-
|
657 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
658 |
msgstr ""
|
|
|
659 |
|
660 |
-
#:
|
661 |
-
|
662 |
-
|
663 |
-
msgstr "Име"
|
664 |
|
665 |
-
#:
|
666 |
-
|
667 |
-
|
668 |
-
msgstr "Броя"
|
669 |
|
670 |
-
#:
|
671 |
-
|
672 |
-
|
673 |
-
msgstr "Изберете тип търсачка"
|
674 |
|
675 |
-
#:
|
676 |
-
|
677 |
-
|
678 |
-
|
|
|
|
|
|
|
679 |
|
680 |
-
#:
|
681 |
-
|
682 |
-
|
683 |
-
msgstr "Изберете дата за последно обновяване"
|
684 |
|
685 |
-
#:
|
686 |
-
|
687 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
688 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
689 |
|
690 |
-
#:
|
691 |
-
|
692 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
693 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
694 |
|
695 |
-
|
696 |
-
|
|
|
|
|
697 |
|
698 |
-
|
699 |
-
|
|
|
700 |
|
701 |
-
|
702 |
-
|
|
|
|
|
703 |
|
704 |
-
|
705 |
-
|
|
|
706 |
|
707 |
-
|
708 |
-
|
|
|
709 |
|
710 |
-
|
711 |
-
|
|
|
712 |
|
713 |
-
|
714 |
-
|
|
|
715 |
|
716 |
-
|
717 |
-
|
|
|
718 |
|
719 |
-
|
720 |
-
|
|
|
721 |
|
722 |
-
|
723 |
-
|
|
|
724 |
|
725 |
-
|
726 |
-
|
|
|
727 |
|
728 |
-
|
729 |
-
|
|
|
730 |
|
731 |
-
|
732 |
-
|
|
|
733 |
|
734 |
-
|
735 |
-
|
|
|
736 |
|
737 |
-
|
738 |
-
|
|
|
739 |
|
740 |
-
|
741 |
-
|
742 |
-
|
743 |
-
#~ msgstr ""
|
744 |
-
#~ "WP-Statistics не са включени! Моля, влезте в <a href=\"%s\">страницата с "
|
745 |
-
#~ "настройките</a> и ги включете !"
|
746 |
|
747 |
-
|
748 |
-
|
|
|
749 |
|
750 |
-
|
751 |
-
|
|
|
752 |
|
753 |
-
|
754 |
-
|
|
|
755 |
|
756 |
-
|
757 |
-
|
|
|
758 |
|
759 |
-
|
760 |
-
|
|
|
761 |
|
762 |
-
|
763 |
-
|
|
|
764 |
|
765 |
-
|
766 |
-
|
|
|
767 |
|
768 |
-
|
769 |
-
|
|
|
770 |
|
771 |
-
|
772 |
-
|
|
|
773 |
|
774 |
-
|
775 |
-
|
|
|
776 |
|
777 |
-
|
778 |
-
|
|
|
779 |
|
780 |
-
|
781 |
-
|
|
|
782 |
|
783 |
-
|
784 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
785 |
|
786 |
-
|
787 |
-
|
|
|
788 |
|
789 |
-
|
790 |
-
|
|
|
|
|
791 |
|
792 |
-
|
793 |
-
|
|
|
|
|
794 |
|
795 |
-
|
796 |
-
|
|
|
797 |
|
798 |
-
|
799 |
-
|
|
|
800 |
|
801 |
-
|
802 |
-
|
|
|
803 |
|
804 |
-
|
805 |
-
|
|
|
806 |
|
807 |
-
|
808 |
-
|
|
|
809 |
|
810 |
-
|
811 |
-
|
|
|
|
|
812 |
|
813 |
-
|
814 |
-
|
|
|
815 |
|
816 |
-
|
817 |
-
|
|
|
|
|
818 |
|
819 |
-
|
820 |
-
|
821 |
-
|
822 |
-
#~ "сек."
|
823 |
|
824 |
-
|
825 |
-
|
|
|
826 |
|
827 |
-
|
828 |
-
|
|
|
829 |
|
830 |
-
|
831 |
-
|
|
|
832 |
|
833 |
-
|
834 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
835 |
|
836 |
-
|
837 |
-
|
|
|
|
|
|
|
838 |
|
839 |
-
|
840 |
-
|
|
|
|
|
841 |
|
842 |
-
|
843 |
-
|
|
|
844 |
|
845 |
-
|
846 |
-
|
|
|
847 |
|
848 |
-
|
849 |
-
|
|
|
850 |
|
851 |
-
|
852 |
-
|
|
|
853 |
|
854 |
-
|
855 |
-
|
|
|
856 |
|
857 |
-
|
858 |
-
|
|
|
859 |
|
860 |
-
|
861 |
-
|
|
|
862 |
|
863 |
-
|
864 |
-
|
|
|
865 |
|
866 |
-
|
867 |
-
|
|
|
868 |
|
869 |
-
|
870 |
-
|
|
|
871 |
|
872 |
-
|
873 |
-
|
|
|
874 |
|
875 |
-
|
876 |
-
|
|
|
877 |
|
878 |
-
|
879 |
-
|
|
|
880 |
|
881 |
-
|
882 |
-
|
883 |
-
|
884 |
|
885 |
-
|
886 |
-
|
|
|
887 |
|
888 |
-
|
889 |
-
|
|
|
890 |
|
891 |
-
|
892 |
-
|
|
|
|
1 |
+
# Translation of Wordpress Statistics in Bulgarian
|
2 |
+
# This file is distributed under the same license as the Wordpress Statistics package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2014-10-14 17:14-0500\n"
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
+
"X-Generator: Poedit 1.6.9\n"
|
11 |
+
"Project-Id-Version: Wordpress Statistics\n"
|
12 |
+
"POT-Creation-Date: \n"
|
13 |
+
"Last-Translator: \n"
|
14 |
+
"Language-Team: \n"
|
15 |
+
"Language: bg_BG\n"
|
16 |
+
|
17 |
+
#: includes/log/widgets/about.php:8
|
18 |
+
msgid "About WP Statistics Version %s"
|
19 |
+
msgstr "За WP Statistics версия %s"
|
20 |
+
|
21 |
+
#: includes/log/widgets/summary.php:106
|
22 |
+
msgid "Date: %s"
|
23 |
+
msgstr "Дата: %s"
|
24 |
+
|
25 |
+
#: includes/log/widgets/summary.php:110
|
26 |
+
msgid "Time: %s"
|
27 |
+
msgstr "Време: %s"
|
28 |
+
|
29 |
+
#: includes/optimization/delete-agents.php:14
|
30 |
+
msgid "%s agent data deleted successfully."
|
31 |
+
msgstr "%s агент данни изтрито успешно."
|
32 |
+
|
33 |
+
#: includes/optimization/delete-platforms.php:14
|
34 |
+
msgid "%s platform data deleted successfully."
|
35 |
+
msgstr "%s платформа данни изтрито успешно."
|
36 |
+
|
37 |
+
#: includes/optimization/empty.php:53
|
38 |
+
msgid "%s table data deleted successfully."
|
39 |
+
msgstr "%s таблични данни изтрито успешно."
|
40 |
+
|
41 |
+
#: includes/optimization/purge-data.php:17
|
42 |
+
#: includes/optimization/purge-data.php:27
|
43 |
+
#: includes/optimization/purge-data.php:37
|
44 |
+
#: includes/optimization/purge-data.php:47
|
45 |
+
msgid "%s data older than %s days purged successfully."
|
46 |
+
msgstr "%s данни по-стари от %s дни, прочистват успешно."
|
47 |
+
|
48 |
+
#: includes/optimization/purge-data.php:19
|
49 |
+
#: includes/optimization/purge-data.php:29
|
50 |
+
#: includes/optimization/purge-data.php:39
|
51 |
+
#: includes/optimization/purge-data.php:49
|
52 |
+
msgid "No records found to purge from %s!"
|
53 |
+
msgstr "Няма намерени за продухване от %s записи!"
|
54 |
+
|
55 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:44
|
56 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:55
|
57 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:66
|
58 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:77
|
59 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:88
|
60 |
+
msgid "Number of rows in the %s table"
|
61 |
+
msgstr "Брой редове в таблицата на %s"
|
62 |
+
|
63 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:211
|
64 |
+
msgid "browscap Cache File"
|
65 |
+
msgstr "browscap кеш файл"
|
66 |
+
|
67 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:220
|
68 |
+
msgid "browscap cache file does not exist."
|
69 |
+
msgstr "browscap кеш файл не съществува."
|
70 |
+
|
71 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:224
|
72 |
+
msgid "The file size and date of the browscap cache file."
|
73 |
+
msgstr "Размера на файла и датата на кеш файла на browscap."
|
74 |
+
|
75 |
+
#: includes/settings/tabs/wps-about.php:24
|
76 |
+
msgid ""
|
77 |
+
"Come visit our great new %s and keep up to date on the latest news about WP "
|
78 |
+
"Statistics."
|
79 |
+
msgstr ""
|
80 |
+
"Елате ни голям нов %s и поддържа актуална с последните новини за WP "
|
81 |
+
"Statistics."
|
82 |
|
83 |
+
#: includes/settings/tabs/wps-about.php:24
|
84 |
+
msgid "website"
|
85 |
+
msgstr "уебсайт"
|
|
|
|
|
|
|
86 |
|
87 |
+
#: includes/settings/tabs/wps-about.php:40
|
88 |
+
msgid ""
|
89 |
+
"WP Statistics supports internationalization and we encourage our users to "
|
90 |
+
"submit translations, please visit our %s to see the current status and %s if "
|
91 |
+
"you would like to help."
|
92 |
+
msgstr ""
|
93 |
+
"WP Statistics подкрепя интернационализацията и ние насърчаваме потребителите "
|
94 |
+
"да представят преводи, моля посетете нашия %s да видите текущото състояние и "
|
95 |
+
"%s, ако искате да помогне."
|
|
|
|
|
|
|
|
|
|
|
96 |
|
97 |
+
#: includes/settings/tabs/wps-about.php:40
|
98 |
+
msgid "translation collaboration site"
|
99 |
+
msgstr "сайт за съвместна работа на превод"
|
|
|
|
|
|
|
100 |
|
101 |
+
#: includes/settings/tabs/wps-about.php:40
|
102 |
+
msgid "drop us a line"
|
103 |
+
msgstr "пишете ни линия"
|
|
|
|
|
|
|
|
|
104 |
|
105 |
+
#: includes/settings/tabs/wps-about.php:52
|
106 |
+
#: includes/settings/tabs/wps-about.php:53
|
107 |
+
msgid "Have you read the %s?"
|
108 |
+
msgstr "Чели ли сте на %s?"
|
|
|
109 |
|
110 |
+
#: includes/settings/tabs/wps-about.php:52
|
111 |
+
msgid "FAQs"
|
112 |
+
msgstr "Често задавани въпроси"
|
|
|
|
|
|
|
|
|
113 |
|
114 |
+
#: includes/settings/tabs/wps-about.php:53
|
115 |
+
msgid "manual"
|
116 |
+
msgstr "ръководство"
|
|
|
|
|
117 |
|
118 |
+
#: includes/settings/tabs/wps-about.php:54
|
119 |
+
msgid "Have you search the %s for a similar issue?"
|
120 |
+
msgstr "Имате ли търси %s за подобен проблем?"
|
|
|
|
|
121 |
|
122 |
+
#: includes/settings/tabs/wps-about.php:54
|
123 |
+
msgid "support forum"
|
124 |
+
msgstr "подкрепа форум"
|
|
|
|
|
125 |
|
126 |
+
#: includes/settings/tabs/wps-about.php:70
|
127 |
+
msgid ""
|
128 |
+
"Then please open a new thread on the %s and we'll respond as soon as "
|
129 |
+
"possible."
|
130 |
+
msgstr ""
|
131 |
+
"След това отворете нова тема на %s и ние ще отговорим възможно най-скоро."
|
132 |
|
133 |
+
#: includes/settings/tabs/wps-about.php:70
|
134 |
+
msgid "WordPress.org support forum"
|
135 |
+
msgstr "WordPress.org подкрепа форум"
|
|
|
|
|
|
|
|
|
136 |
|
137 |
+
#: includes/settings/tabs/wps-about.php:74
|
138 |
+
msgid "Alternatively %s support is available as well."
|
139 |
+
msgstr "Алтернативно %s поддръжка е наличен."
|
|
|
|
|
140 |
|
141 |
+
#: includes/settings/tabs/wps-access-level.php:85
|
142 |
+
msgid "See the %s for details on capability levels."
|
143 |
+
msgstr "Вижте %s за повече информация на способности."
|
|
|
|
|
144 |
|
145 |
+
#: includes/settings/tabs/wps-access-level.php:85
|
146 |
+
msgid "WordPress Roles and Capabilities page"
|
147 |
+
msgstr "Страница WordPress роли и възможности"
|
|
|
|
|
148 |
|
149 |
+
#: includes/settings/tabs/wps-general.php:67
|
150 |
+
msgid ""
|
151 |
+
"This feature will not store IP addresses in the database but instead used a "
|
152 |
+
"unique hash. The \"Store entire user agent string\" setting will be "
|
153 |
+
"disabled if this is selected. You will not be able to recover the IP "
|
154 |
+
"addresses in the future to recover location information if this is enabled."
|
155 |
+
msgstr ""
|
156 |
+
"Тази функция няма да съхранява IP адреси в базата данни, но вместо това "
|
157 |
+
"използва уникален хашиш. \"Store целия потребителски агент string\" "
|
158 |
+
"настройка ще бъде забранена, ако тази опция е избрана. Вие няма да можете да "
|
159 |
+
"възстановите IP адресите в бъдеще да се възстанови информацията за "
|
160 |
+
"местоположението, ако това е разрешено."
|
161 |
+
|
162 |
+
#: includes/settings/tabs/wps-general.php:340
|
163 |
+
msgid "Note: To send SMS text messages please install the %s plugin."
|
164 |
+
msgstr ""
|
165 |
+
"Забележка: За да изпратите SMS текстови съобщения моля инсталирайте %s "
|
166 |
+
"плъгин."
|
167 |
|
168 |
+
#: includes/settings/tabs/wps-general.php:340
|
169 |
+
msgid "WordPress SMS"
|
170 |
+
msgstr "WordPress SMS"
|
|
|
|
|
171 |
|
172 |
+
#: wp-statistics.php:27
|
173 |
+
msgid ""
|
174 |
+
"ERROR: WP Statistics has detected an unsupported version of PHP, WP "
|
175 |
+
"Statistics will not function without PHP Version "
|
176 |
+
msgstr ""
|
177 |
+
"ГРЕШКА: WP Statistics откри неподдържана версия на PHP, WP Statistics няма "
|
178 |
+
"да функционира без PHP версия "
|
179 |
|
180 |
+
#: wp-statistics.php:27
|
181 |
+
msgid " or higher!"
|
182 |
+
msgstr "или по-висока!"
|
|
|
|
|
183 |
|
184 |
+
#: wp-statistics.php:81
|
185 |
+
msgid ""
|
186 |
+
"Online user tracking in WP Statistics is not enabled, please go to %s and "
|
187 |
+
"enable it."
|
188 |
+
msgstr ""
|
189 |
+
"Онлайн потребител, проследяване в WP Statistics не е разрешен, моля отидете "
|
190 |
+
"на %s и го активирате."
|
191 |
|
192 |
+
#: wp-statistics.php:81 wp-statistics.php:84 wp-statistics.php:87
|
193 |
+
msgid "setting page"
|
194 |
+
msgstr "определянето страница"
|
|
|
|
|
195 |
|
196 |
+
#: wp-statistics.php:84
|
197 |
+
msgid ""
|
198 |
+
"Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
|
199 |
+
msgstr ""
|
200 |
+
"Хита проследяващия в WP Statistics не е разрешен, моля отидете на %s и го "
|
201 |
+
"активирате."
|
202 |
|
203 |
+
#: wp-statistics.php:87
|
204 |
+
msgid ""
|
205 |
+
"Visitor tracking in WP Statistics is not enabled, please go to %s and enable "
|
206 |
+
"it."
|
207 |
msgstr ""
|
208 |
+
"Посетител проследяване в WP Statistics не е разрешен, моля отидете на %s и "
|
209 |
+
"го активирате."
|
210 |
|
211 |
+
#: wp-statistics.php:90
|
212 |
+
msgid ""
|
213 |
+
"GeoIP collection is not active, please go to %s and enable this feature."
|
214 |
+
msgstr ""
|
215 |
+
"GeoIP колекция не е активен, моля отидете на %s и активирате тази функция."
|
216 |
|
217 |
+
#: wp-statistics.php:90
|
218 |
+
msgid "Setting page > GeoIP"
|
219 |
+
msgstr "Определянето страница > GeoIP"
|
|
|
|
|
220 |
|
221 |
+
msgid "http://wp-statistics.com/"
|
222 |
+
msgstr "http://WP-Statistics.com/"
|
|
|
|
|
|
|
223 |
|
224 |
+
msgid "Mostafa Soufi & Greg Ross"
|
225 |
+
msgstr "Mostafa Soufi & Грег Рос"
|
|
|
|
|
|
|
226 |
|
227 |
+
#: includes/settings/wps-settings.php:90
|
228 |
+
msgid "browscap"
|
229 |
+
msgstr "browscap"
|
|
|
|
|
230 |
|
231 |
+
#: wp-statistics.php:706
|
232 |
+
msgid "Error downloading browscap database from: %s - %s"
|
233 |
+
msgstr "Грешка при изтегляне на browscap база данни от: %s - %s"
|
|
|
|
|
234 |
|
235 |
+
#: wp-statistics.php:794
|
236 |
+
msgid "browscap database updated successfully!"
|
237 |
+
msgstr "browscap база данни, актуализирани успешно!"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
238 |
|
239 |
+
#: wp-statistics.php:802
|
240 |
+
msgid "browscap already at current version!"
|
241 |
+
msgstr "browscap вече в текущата версия!"
|
|
|
|
|
242 |
|
243 |
+
#: includes/optimization/tabs/wps-optimization-database.php:5
|
244 |
+
msgid "Database Setup"
|
245 |
+
msgstr "Настройка на база данни"
|
|
|
|
|
246 |
|
247 |
+
#: includes/optimization/tabs/wps-optimization-database.php:10
|
248 |
+
msgid "Re-run Install"
|
249 |
+
msgstr "Изпълнете отново инсталиране"
|
|
|
|
|
|
|
250 |
|
251 |
+
#: includes/optimization/tabs/wps-optimization-database.php:14
|
252 |
+
msgid "Install Now!"
|
253 |
+
msgstr "Инсталирай сега!"
|
|
|
|
|
254 |
|
255 |
+
#: includes/optimization/tabs/wps-optimization-database.php:15
|
256 |
+
msgid ""
|
257 |
+
"If for some reason your installation of WP Statistics is missing the "
|
258 |
+
"database tables or other core items, this will re-execute the install "
|
259 |
+
"process."
|
260 |
+
msgstr ""
|
261 |
+
"Ако по някаква причина вашата инсталация на WP Statistics липсва таблиците в "
|
262 |
+
"базата данни или други основни елементи, това отново ще изпълни процеса на "
|
263 |
+
"инсталиране."
|
264 |
|
265 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:163
|
266 |
+
msgid ""
|
267 |
+
"If the PHP BC Math Extension is installed. BC Math is no longer required "
|
268 |
+
"for the GeoIP code and is listed here only for historical reasons."
|
269 |
msgstr ""
|
270 |
+
"Ако PHP ПР.н.е математика разширението е инсталирано. ПР.н.е математика вече "
|
271 |
+
"не е необходима за GeoIP код и е изброени тук само с исторически причини."
|
272 |
|
273 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:168
|
274 |
+
msgid "File Info"
|
275 |
+
msgstr "Инфо за файла"
|
|
|
|
|
276 |
|
277 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:173
|
278 |
+
msgid "GeoIP Database"
|
279 |
+
msgstr "GeoIP база данни"
|
280 |
+
|
281 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:184
|
282 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:203
|
283 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:222
|
284 |
+
msgid ", created on "
|
285 |
+
msgstr ", създаден на "
|
286 |
+
|
287 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:186
|
288 |
+
msgid "The file size and date of the GeoIP database."
|
289 |
+
msgstr "Размера на файла и датата на GeoIP базата данни."
|
290 |
+
|
291 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:192
|
292 |
+
msgid "browscap.ini File"
|
293 |
+
msgstr "browscap.ini файл"
|
294 |
+
|
295 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:201
|
296 |
+
msgid "browscap.ini file does not exist."
|
297 |
+
msgstr "browscap.ini файл не съществува."
|
298 |
+
|
299 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:205
|
300 |
+
msgid "The file size and date of the browscap.ini file."
|
301 |
+
msgstr "Размера на файла и датата на файла browscap.ini."
|
302 |
+
|
303 |
+
#: includes/optimization/wps-optimization.php:51
|
304 |
+
msgid "Install routine complete."
|
305 |
+
msgstr "Инсталиране на ежедневието пълна."
|
306 |
+
|
307 |
+
#: includes/settings/tabs/wps-browscap.php:17
|
308 |
+
msgid "browscap settings"
|
309 |
+
msgstr "browscap настройки"
|
310 |
+
|
311 |
+
#: includes/settings/tabs/wps-browscap.php:22
|
312 |
+
msgid "browscap usage"
|
313 |
+
msgstr "използване на browscap"
|
314 |
+
|
315 |
+
#: includes/settings/tabs/wps-browscap.php:28
|
316 |
+
msgid "The browscap database will be downloaded and used to detect robots."
|
317 |
msgstr ""
|
318 |
+
"Базата данни на browscap ще бъдат изтеглени и използвани за откриване на "
|
319 |
+
"роботи."
|
320 |
|
321 |
+
#: includes/settings/tabs/wps-browscap.php:34
|
322 |
+
msgid "Update browscap Info"
|
323 |
+
msgstr "Актуализиране на browscap информация"
|
324 |
+
|
325 |
+
#: includes/settings/tabs/wps-browscap.php:39
|
326 |
+
msgid "Download browscap Database"
|
327 |
+
msgstr "Изтегли browscap база данни"
|
328 |
+
|
329 |
+
#: includes/settings/tabs/wps-browscap.php:46
|
330 |
+
msgid "Schedule weekly update of browscap DB"
|
331 |
+
msgstr "Планиране на седмична актуализация на browscap DB"
|
332 |
|
333 |
+
#: includes/settings/tabs/wps-browscap.php:69
|
334 |
+
msgid "Download of the browscap database will be scheduled for once a week."
|
335 |
+
msgstr ""
|
336 |
+
"Изтегляне на базата данни на browscap ще бъде насрочено за един път седмично."
|
337 |
+
|
338 |
+
#: includes/optimization/tabs/wps-optimization-database.php:40
|
339 |
+
msgid ""
|
340 |
+
"Older installs of WP Statistics allow for duplicate entries in the visitors "
|
341 |
+
"table in a corner case. Newer installs protect against this with a unique "
|
342 |
+
"index on the table. To create the index on the older installs duplicate "
|
343 |
+
"entries must be deleted first. Clicking \"Update Now\" will scan the "
|
344 |
+
"vistitors table, delete duplicate entries and add the index."
|
345 |
+
msgstr ""
|
346 |
+
"По-старите инсталации на WP Statistics позволяват дублиране на записи в "
|
347 |
+
"таблицата на посетителите в ъгъла случай. По-новите инсталира защита срещу "
|
348 |
+
"това с уникален индекс на масата. За да създадете индекса на на по-старите "
|
349 |
+
"инсталира дублираните записи трябва да бъдат изтрити първи. Щракнете върху "
|
350 |
+
"\"Update Now\" ще сканира таблицата vistitors, изтриване на дублиращи се "
|
351 |
+
"записи и да добавите към индекса."
|
352 |
+
|
353 |
+
#: includes/optimization/tabs/wps-optimization-database.php:46
|
354 |
msgid ""
|
355 |
+
"Older installs of WP Statistics allow for duplicate entries in the visitors "
|
356 |
+
"table in a corner case. Newer installs protect against this with a unique "
|
357 |
+
"index on the table."
|
358 |
msgstr ""
|
359 |
+
"По-старите инсталации на WP Statistics позволяват дублиране на записи в "
|
360 |
+
"таблицата на посетителите в ъгъла случай. По-новите инсталира защита срещу "
|
361 |
+
"това с уникален индекс на масата."
|
362 |
|
363 |
+
#: includes/optimization/tabs/wps-optimization-database.php:47
|
364 |
+
msgid ""
|
365 |
+
"Congratulations, your installation is already up to date, nothing to do."
|
366 |
+
msgstr "Поздравления вашата инсталация е вече до дата, нищо общо."
|
367 |
+
|
368 |
+
#: includes/settings/tabs/wps-about.php:55
|
369 |
+
msgid "Have you search the Internet for any error messages you are receiving?"
|
370 |
+
msgstr "Има ли търсене в интернет за всички съобщения за грешка, получавате?"
|
371 |
+
|
372 |
+
#: includes/settings/tabs/wps-about.php:66
|
373 |
+
msgid ""
|
374 |
+
"Are you getting a blank or incomplete page displayed in your browser? Did "
|
375 |
+
"you view the source for the page and check for any fatal errors?"
|
376 |
msgstr ""
|
377 |
+
"Получавате ли празни или непълни страница показва в браузъра си? Видя ли "
|
378 |
+
"преглед на източника на страницата и проверете за фатални грешки?"
|
379 |
|
380 |
+
#: includes/settings/tabs/wps-about.php:67
|
381 |
+
msgid "Have you checked your PHP and web server error logs?"
|
382 |
+
msgstr "Проверихте ли вашия PHP и уеб сървър грешка логове?"
|
383 |
+
|
384 |
+
#: widget.php:15
|
385 |
+
msgid "Show site stats in sidebar."
|
386 |
+
msgstr "Показване на статистика на сайт в страничната лента."
|
387 |
+
|
388 |
+
#: includes/log/last-search.php:97 includes/log/last-visitor.php:94
|
389 |
+
#: includes/log/widgets/google.map.php:65 includes/log/widgets/jqv.map.php:59
|
390 |
+
#: includes/log/widgets/recent.php:22 includes/log/widgets/words.php:25
|
391 |
+
msgid "#hash#"
|
392 |
+
msgstr "#hash #"
|
393 |
+
|
394 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:4
|
395 |
+
msgid ""
|
396 |
+
"This will replace all IP addresses in the database with hash values and "
|
397 |
+
"cannot be undo, are you sure?"
|
398 |
msgstr ""
|
399 |
+
"Това ще замести всички IP адреси в базата данни с хашиш стойности и не може "
|
400 |
+
"да се отмени, сигурен ли сте?"
|
401 |
|
402 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:26
|
403 |
+
msgid ""
|
404 |
+
"Updates any unknown location data in the database, this may take a while"
|
405 |
msgstr ""
|
406 |
+
"Актуализира неизвестно местоположение данни в базата данни, това може да "
|
407 |
+
"отнеме известно време"
|
408 |
+
|
409 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:31
|
410 |
+
#: includes/settings/tabs/wps-general.php:56
|
411 |
+
msgid "IP Addresses"
|
412 |
+
msgstr "IP адреси"
|
413 |
+
|
414 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:36
|
415 |
+
#: includes/settings/tabs/wps-general.php:61
|
416 |
+
msgid "Hash IP Addresses"
|
417 |
+
msgstr "Хеш IP адреси"
|
418 |
|
419 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:41
|
420 |
+
msgid ""
|
421 |
+
"Replace IP addresses in the database with hash values, you will not be able "
|
422 |
+
"to recover the IP addresses in the future to populate location information "
|
423 |
+
"afterwards and this may take a while"
|
424 |
msgstr ""
|
425 |
+
"Замени IP адреси в базата данни с хашиш стойности, вие няма да можете да "
|
426 |
+
"възстановите IP адресите в бъдеще да попълните местоположението информация "
|
427 |
+
"след това и това може да отнеме известно време"
|
428 |
+
|
429 |
+
#: includes/optimization/wps-optimization.php:43
|
430 |
+
msgid "IP Addresses replaced with hash values."
|
431 |
+
msgstr "IP адреси се заменят с хеш стойности."
|
432 |
|
433 |
+
#: includes/settings/tabs/wps-access-level.php:149
|
434 |
+
msgid "Force robot list update after upgrades"
|
435 |
+
msgstr "Сила робот списък актуализация след ъпгрейд"
|
436 |
+
|
437 |
+
#: includes/settings/tabs/wps-access-level.php:152
|
438 |
+
msgid ""
|
439 |
+
"Force the robot list to be reset to the default after an update to WP "
|
440 |
+
"Statistics takes place. Note if this option is enabled any custom robots "
|
441 |
+
"you have added to the list will be lost."
|
442 |
msgstr ""
|
443 |
+
"Сила списъка на робот, за да се възстанови по подразбиране след актуализация "
|
444 |
+
"на WP Statistics се провежда. Забележка Ако тази опция е разрешена по "
|
445 |
+
"потребителски роботи, вие сте добавили към списъка ще бъдат загубени."
|
446 |
|
447 |
+
#: includes/settings/tabs/wps-general.php:40
|
448 |
+
msgid "This will delete the manual when you save the settings, are you sure?"
|
449 |
+
msgstr "Това ще изтрие ръчно, когато запишете настройките, сигурен ли сте?"
|
450 |
+
|
451 |
+
#: includes/settings/tabs/wps-general.php:220
|
452 |
+
msgid ""
|
453 |
+
"By default WP Statistics displays an alert if any of the core features are "
|
454 |
+
"disabled on every admin page, this option will disable these notices."
|
455 |
msgstr ""
|
456 |
+
"По подразбиране WP Statistics показва предупреждение, ако някой от основните "
|
457 |
+
"функции са забранени на всяка страница, Админ, тази опция ще забраните тези "
|
458 |
+
"съобщения."
|
459 |
+
|
460 |
+
#: includes/settings/tabs/wps-general.php:226
|
461 |
+
msgid "Delete the manual"
|
462 |
+
msgstr "Изтриване на наръчника"
|
463 |
|
464 |
+
#: includes/settings/tabs/wps-general.php:232
|
465 |
+
msgid ""
|
466 |
+
"By default WP Statistics stores the admin manual in the plugin directory (~5 "
|
467 |
+
"meg), if this option is enabled it will be deleted now and during upgrades "
|
468 |
+
"in the future."
|
469 |
msgstr ""
|
470 |
+
"По подразбиране WP Statistics съхранява администратор ръководство в плъгин "
|
471 |
+
"директорията (~ 5 Мег), ако тази опция е включена тя ще бъде изтрита сега и "
|
472 |
+
"по време на ъпгрейд в бъдеще."
|
473 |
+
|
474 |
+
#: includes/optimization/tabs/wps-optimization-database.php:20
|
475 |
+
msgid "Database Index"
|
476 |
+
msgstr "Индекс на база данни"
|
477 |
|
478 |
+
#: includes/optimization/tabs/wps-optimization-database.php:41
|
479 |
+
msgid ""
|
480 |
+
"This operation could take a long time on installs with many rows in the "
|
481 |
+
"visitors table."
|
482 |
msgstr ""
|
483 |
+
"Тази операция може да отнеме много време на настанявам с много редове в "
|
484 |
+
"таблицата на посетителите."
|
485 |
+
|
486 |
+
#: includes/optimization/wps-optimization.php:129
|
487 |
+
msgid "Database"
|
488 |
+
msgstr "База данни"
|
489 |
+
|
490 |
+
#: includes/settings/tabs/wps-general.php:298
|
491 |
+
msgid "Schedule"
|
492 |
+
msgstr "График"
|
493 |
+
|
494 |
+
#: includes/settings/tabs/wps-general.php:328
|
495 |
+
msgid "Send reports via"
|
496 |
+
msgstr "Изпрати отчетите чрез"
|
497 |
+
|
498 |
+
#: includes/settings/tabs/wps-general.php:347
|
499 |
+
msgid "E-mail addresses"
|
500 |
+
msgstr "Имейл адреси"
|
501 |
|
502 |
+
#: includes/settings/tabs/wps-general.php:352
|
503 |
+
msgid ""
|
504 |
+
"A comma separated list of e-mail addresses to send the reports to if e-mail "
|
505 |
+
"is selected above."
|
506 |
msgstr ""
|
507 |
+
"Списък на имейл адреси за изпращане на доклади до ако имейл е избран по-"
|
508 |
+
"горе, разделени със запетая."
|
509 |
+
|
510 |
+
#: includes/settings/tabs/wps-general.php:358
|
511 |
+
msgid "Report body"
|
512 |
+
msgstr "Тялото на доклада"
|
513 |
+
|
514 |
+
#: includes/settings/tabs/wps-overview-display.php:75
|
515 |
+
msgid "The following three items are global to all users."
|
516 |
+
msgstr "Следните три елемента са глобални за всички потребители."
|
517 |
+
|
518 |
+
#: includes/settings/tabs/wps-overview-display.php:80
|
519 |
+
msgid "Map type"
|
520 |
+
msgstr "Тип карта"
|
521 |
|
522 |
+
#: includes/settings/tabs/wps-overview-display.php:86
|
523 |
+
msgid "JQVMap"
|
524 |
+
msgstr "JQVMap"
|
525 |
+
|
526 |
+
#: includes/settings/tabs/wps-overview-display.php:93
|
527 |
+
msgid ""
|
528 |
+
"The \"Google\" option will use Google's mapping service to plot the recent "
|
529 |
+
"visitors (requires access to Google)."
|
530 |
msgstr ""
|
531 |
+
"\"Google\" опция ще използва на Google картографска услуга да начертаете "
|
532 |
+
"последните посетители (изисква достъп до Google)."
|
533 |
|
534 |
+
#: includes/settings/tabs/wps-overview-display.php:94
|
535 |
+
msgid ""
|
536 |
+
"The \"JQVMap\" option will use JQVMap javascript mapping library to plot the "
|
537 |
+
"recent visitors (requires no extenral services)."
|
538 |
msgstr ""
|
539 |
+
"\"JQVMap\" опция ще използва JQVMap библиотека javascript картографиране да "
|
540 |
+
"начертаете последните посетители (изисква extenral услуги)."
|
541 |
|
542 |
+
#: includes/settings/tabs/wps-overview-display.php:118
|
543 |
+
msgid ""
|
544 |
+
"This feature may cause a performance degradation when viewing statistics and "
|
545 |
+
"is only valid if the map type is set to \"Google\"."
|
546 |
+
msgstr ""
|
547 |
+
"Тази функция може да доведе до намаляване на производителността, когато "
|
548 |
+
"разглеждате статистиката и е валидно, ако типът на картата е настроено на "
|
549 |
+
"\"Google само\"."
|
550 |
+
|
551 |
+
#: includes/log/all-browsers.php:50
|
552 |
+
msgid "Browsers by type"
|
553 |
+
msgstr "Браузъри по вид"
|
554 |
+
|
555 |
+
#: includes/log/all-browsers.php:133
|
556 |
+
msgid "Browsers by platform"
|
557 |
+
msgstr "Браузъри по платформа"
|
558 |
+
|
559 |
+
#: includes/log/exclusions.php:97
|
560 |
+
msgid "Excluded hits in the last"
|
561 |
+
msgstr "Изключени хитове през последните"
|
562 |
+
|
563 |
+
#: includes/log/hit-statistics.php:36
|
564 |
+
msgid "Hits Statistics Chart"
|
565 |
+
msgstr "Хитове статистика диаграма"
|
566 |
+
|
567 |
+
#: includes/log/hit-statistics.php:69 includes/log/widgets/hits.php:39
|
568 |
+
msgid "Hits in the last"
|
569 |
+
msgstr "Хитове през последните"
|
570 |
+
|
571 |
+
#: includes/log/last-search.php:30 includes/log/widgets/words.php:16
|
572 |
+
#: includes/settings/tabs/wps-overview-display.php:36
|
573 |
+
msgid "Latest Search Words"
|
574 |
+
msgstr "Последни думи за търсене"
|
575 |
+
|
576 |
+
#: includes/log/last-search.php:62
|
577 |
+
msgid "Latest Search Word Statistics"
|
578 |
+
msgstr "Последни Търсене дума статистика"
|
579 |
+
|
580 |
+
#: includes/log/last-visitor.php:61
|
581 |
+
msgid "Recent Visitor Statistics"
|
582 |
+
msgstr "Последните посетител статистика"
|
583 |
+
|
584 |
+
#: includes/log/widgets/google.map.php:9 includes/log/widgets/jqv.map.php:9
|
585 |
+
msgid "Today Visitors Map"
|
586 |
+
msgstr "Днес посетителите карта"
|
587 |
+
|
588 |
+
#: includes/log/widgets/summary.php:8
|
589 |
+
msgid "Summary"
|
590 |
+
msgstr "Резюме"
|
591 |
+
|
592 |
+
#: includes/log/widgets/summary.php:13
|
593 |
+
msgid "User(s) Online"
|
594 |
+
msgstr "Потребител(и) онлайн"
|
595 |
+
|
596 |
+
#: includes/log/widgets/browsers.php:45
|
597 |
+
msgid "Top 10 Browsers"
|
598 |
+
msgstr "Топ 10 браузъри"
|
599 |
+
|
600 |
+
#: includes/log/top-referring.php:34 includes/log/top-referring.php:49
|
601 |
+
#: includes/log/widgets/referring.php:13
|
602 |
+
#: includes/settings/tabs/wps-overview-display.php:26
|
603 |
+
msgid "Top Referring Sites"
|
604 |
+
msgstr "Топ Препращащи сайтове"
|
605 |
+
|
606 |
+
#: includes/log/widgets/about.php:16
|
607 |
+
msgid "Rate and Review"
|
608 |
+
msgstr "И преглед"
|
609 |
+
|
610 |
+
#: includes/log/widgets/about.php:20
|
611 |
+
msgid "More Information"
|
612 |
+
msgstr "Повече информация"
|
613 |
+
|
614 |
+
#: includes/log/widgets/about.php:29 includes/settings/tabs/wps-about.php:12
|
615 |
+
msgid ""
|
616 |
+
"This product includes GeoLite2 data created by MaxMind, available from %s."
|
617 |
msgstr ""
|
618 |
+
"Този продукт съдържа GeoLite2 данни, създадени от MaxMind, достъпни от %s."
|
619 |
|
620 |
+
#: includes/log/search-statistics.php:77 includes/log/widgets/search.php:46
|
621 |
+
msgid "Search engine referrals in the last"
|
622 |
+
msgstr "Търсене двигател референции в последните"
|
|
|
|
|
|
|
|
|
623 |
|
624 |
+
#: includes/log/search-statistics.php:98 includes/log/widgets/search.php:67
|
625 |
+
msgid "Number of referrals"
|
626 |
+
msgstr "Брой препращания"
|
627 |
+
|
628 |
+
#: includes/log/widgets/pages.php:13
|
629 |
+
msgid "Top 10 Pages"
|
630 |
+
msgstr "Топ 10 страници"
|
631 |
+
|
632 |
+
#: includes/log/search-statistics.php:17 includes/log/search-statistics.php:36
|
633 |
+
msgid "Search Engine Referral Statistics"
|
634 |
+
msgstr "Търсене двигател сезиране статистика"
|
635 |
+
|
636 |
+
#: includes/settings/tabs/wps-about.php:8
|
637 |
+
msgid "WP Statistics V%s"
|
638 |
+
msgstr "WP Statistics V %s"
|
639 |
+
|
640 |
+
#: includes/settings/tabs/wps-about.php:20
|
641 |
+
msgid "Visit Us Online"
|
642 |
+
msgstr "Посетете ни онлайн"
|
643 |
+
|
644 |
+
#: includes/settings/tabs/wps-about.php:28
|
645 |
+
msgid "Rate and Review at WordPress.org"
|
646 |
+
msgstr "И преглед в WordPress.org"
|
647 |
+
|
648 |
+
#: includes/settings/tabs/wps-about.php:32
|
649 |
+
msgid "Thanks for installing WP Statistics, we encourage you to submit a "
|
650 |
msgstr ""
|
651 |
+
"Благодаря за инсталиране на WP Statistics, ние ви препоръчваме да изпратите "
|
652 |
|
653 |
+
#: includes/settings/tabs/wps-about.php:32
|
654 |
+
msgid "rating and review"
|
655 |
+
msgstr "Оценка и преглед"
|
|
|
|
|
656 |
|
657 |
+
#: includes/settings/tabs/wps-about.php:32
|
658 |
+
msgid "over at WordPress.org. Your feedback is greatly appreciated!"
|
659 |
+
msgstr "над в WordPress.org. Вашето мнение е много оценявам!"
|
|
|
|
|
660 |
|
661 |
+
#: includes/settings/tabs/wps-about.php:49
|
662 |
+
msgid ""
|
663 |
+
"We're sorry you're having problem with WP Statistics and we're happy to help "
|
664 |
+
"out. Here are a few things to do before contacting us:"
|
665 |
msgstr ""
|
666 |
+
"Ние сме съжалявам, имате проблем с WP Statistics и ние сме щастливи да "
|
667 |
+
"помогне. Ето няколко неща, за да направите преди да се свържете с нас:"
|
668 |
+
|
669 |
+
#: includes/settings/tabs/wps-about.php:58
|
670 |
+
msgid "And a few things to double-check:"
|
671 |
+
msgstr "И няколко неща, за да проверете отново:"
|
672 |
|
673 |
+
#: includes/settings/tabs/wps-about.php:61
|
674 |
+
msgid "How's your memory_limit in php.ini?"
|
675 |
+
msgstr "Как е вашата memory_limit в php.ini?"
|
|
|
|
|
676 |
|
677 |
+
#: includes/settings/tabs/wps-about.php:62
|
678 |
+
msgid "Have you tried disabling any other plugins you may have installed?"
|
|
|
679 |
msgstr ""
|
680 |
+
"Били ли сте опитвали Деактивирането на всички други плъгини, които сте "
|
681 |
+
"инсталирали?"
|
682 |
+
|
683 |
+
#: includes/settings/tabs/wps-about.php:63
|
684 |
+
msgid "Have you tried using the default WordPress theme?"
|
685 |
+
msgstr "Били ли сте опитвали използване на подразбиране WordPress тема?"
|
686 |
+
|
687 |
+
#: includes/settings/tabs/wps-about.php:64
|
688 |
+
msgid "Have you double checked the plugin settings?"
|
689 |
+
msgstr "Имате ли двойно проверени настройките на плъгин?"
|
690 |
+
|
691 |
+
#: includes/settings/tabs/wps-about.php:65
|
692 |
+
msgid "Do you have all the required PHP extensions installed?"
|
693 |
+
msgstr "Имате ли всички необходими PHP разширения инсталирани?"
|
694 |
+
|
695 |
+
#: includes/settings/tabs/wps-about.php:70
|
696 |
+
msgid "Still not having any luck?"
|
697 |
+
msgstr "Все още не е късм?"
|
698 |
+
|
699 |
+
#: includes/optimization/tabs/wps-optimization-export.php:17
|
700 |
+
#: includes/optimization/tabs/wps-optimization-export.php:35
|
701 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:128
|
702 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:169
|
703 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:193
|
704 |
+
#: includes/settings/tabs/wps-general.php:303
|
705 |
+
#: includes/settings/tabs/wps-general.php:333
|
706 |
+
msgid "Please select"
|
707 |
+
msgstr "Моля изберете"
|
708 |
+
|
709 |
+
#: includes/settings/tabs/wps-general.php:365
|
710 |
+
msgid ""
|
711 |
+
"Any shortcode supported by your installation of WordPress, include all "
|
712 |
+
"shortcodes for WP Statistics (see the admin manual for a list of codes "
|
713 |
+
"available) are supported in the body of the message."
|
714 |
+
msgstr ""
|
715 |
+
"Някакви shortcode, се поддържат от вашата инсталация на WordPress, включва "
|
716 |
+
"всички shortcodes за WP Statistics (виж ръководство за списък на наличните "
|
717 |
+
"кодове на администратор) се поддържат в тялото на съобщението."
|
718 |
|
719 |
+
#: includes/settings/tabs/wps-general.php:368
|
|
|
720 |
msgid ""
|
721 |
+
"Input data codes are now deprecated and will be removed in a future version "
|
722 |
+
"of WP Statistics, please use the appropriate shortcodes, they are included "
|
723 |
+
"here only for historical purposes:"
|
724 |
msgstr ""
|
725 |
+
"Кодове за въвеждане на данни сега са остарели и ще бъдат отстранени в бъдеща "
|
726 |
+
"версия на WP Statistics, моля, използвайте подходящи shortcodes, тук са "
|
727 |
+
"включени само за исторически цели:"
|
728 |
|
729 |
+
#: includes/settings/tabs/wps-geoip.php:22
|
730 |
+
msgid ""
|
731 |
+
"IP location services provided by GeoLite2 data created by MaxMind, available "
|
732 |
+
"from %s."
|
733 |
msgstr ""
|
734 |
+
"IP местоположение услуги, предоставяни от GeoLite2 данни, създадени от "
|
735 |
+
"MaxMind, достъпни от %s."
|
736 |
|
737 |
+
#: includes/settings/tabs/wps-overview-display.php:23
|
738 |
+
#: includes/settings/tabs/wps-overview-display.php:32
|
739 |
+
msgid "None"
|
740 |
+
msgstr "Няма"
|
|
|
741 |
|
742 |
+
#: includes/settings/tabs/wps-overview-display.php:28
|
743 |
+
#: includes/settings/wps-settings.php:92
|
744 |
+
msgid "About"
|
745 |
+
msgstr "За"
|
746 |
|
747 |
+
#: includes/settings/tabs/wps-overview-display.php:123
|
748 |
+
msgid "Widgets to Display"
|
749 |
+
msgstr "Джаджи за показване"
|
|
|
750 |
|
751 |
+
#: includes/settings/tabs/wps-overview-display.php:132
|
752 |
+
msgid ""
|
753 |
+
"The following items are unique to each user. If you do not select the "
|
754 |
+
"'About' widget it will automatically be displayed in the last positon of "
|
755 |
+
"column A."
|
756 |
msgstr ""
|
757 |
+
"Следните елементи са уникални за всеки потребител. Ако не изберете \"За\" "
|
758 |
+
"джаджа автоматично ще бъдат показани в на последните позицията на колоната A."
|
759 |
+
|
760 |
+
#: includes/settings/tabs/wps-overview-display.php:137
|
761 |
+
msgid "Slot"
|
762 |
+
msgstr "Слот"
|
763 |
+
|
764 |
+
#: includes/settings/tabs/wps-overview-display.php:141
|
765 |
+
msgid "Column A"
|
766 |
+
msgstr "Колона А"
|
767 |
+
|
768 |
+
#: includes/settings/tabs/wps-overview-display.php:145
|
769 |
+
msgid "Column B"
|
770 |
+
msgstr "Колона B"
|
771 |
+
|
772 |
+
#: includes/settings/tabs/wps-overview-display.php:151
|
773 |
+
msgid "Slot 1"
|
774 |
+
msgstr "Слот 1"
|
775 |
+
|
776 |
+
#: includes/settings/tabs/wps-overview-display.php:181
|
777 |
+
msgid "Slot 2"
|
778 |
+
msgstr "Слот 2"
|
779 |
+
|
780 |
+
#: includes/settings/tabs/wps-overview-display.php:211
|
781 |
+
msgid "Slot 3"
|
782 |
+
msgstr "Слот 3"
|
783 |
+
|
784 |
+
#: includes/settings/tabs/wps-overview-display.php:241
|
785 |
+
msgid "Slot 4"
|
786 |
+
msgstr "Слот 4"
|
787 |
+
|
788 |
+
#: includes/settings/tabs/wps-overview-display.php:271
|
789 |
+
msgid "Slot 5"
|
790 |
+
msgstr "Слот 5"
|
791 |
+
|
792 |
+
#: includes/settings/tabs/wps-overview-display.php:301
|
793 |
+
msgid "Slot 6"
|
794 |
+
msgstr "Слот за 6"
|
795 |
+
|
796 |
+
#: includes/settings/tabs/wps-overview-display.php:305
|
797 |
+
msgid "N/A"
|
798 |
+
msgstr "N/A"
|
799 |
+
|
800 |
+
#: widget.php:280
|
801 |
+
msgid "Search Engine Referred"
|
802 |
+
msgstr "Търсачката по"
|
803 |
+
|
804 |
+
#: schedule.php:10
|
805 |
+
msgid "Once Weekly"
|
806 |
+
msgstr "Веднъж седмично"
|
807 |
+
|
808 |
+
#: schedule.php:17
|
809 |
+
msgid "Once Every 2 Weeks"
|
810 |
+
msgstr "Веднъж на всеки 2 седмици"
|
811 |
|
812 |
+
#: schedule.php:24
|
813 |
+
msgid "Once Every 4 Weeks"
|
814 |
+
msgstr "Веднъж на всеки 4 седмици"
|
815 |
+
|
816 |
+
#: wp-statistics.php:39
|
817 |
+
msgid "Complete statistics for your WordPress site."
|
818 |
+
msgstr "Пълна статистика за вашия сайт WordPress."
|
819 |
+
|
820 |
+
#: includes/log/widgets/about.php:15
|
821 |
+
msgid "Website"
|
822 |
+
msgstr "Уебсайт"
|
823 |
+
|
824 |
+
#: includes/log/top-referring.php:117 includes/log/widgets/referring.php:19
|
825 |
+
msgid "References"
|
826 |
+
msgstr "Препратки"
|
827 |
+
|
828 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:33
|
829 |
+
msgid "PHP Memory Limit"
|
830 |
+
msgstr "PHP памет граница"
|
831 |
+
|
832 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:38
|
833 |
+
msgid "The memory limit a script is allowed to consume, set in php.ini."
|
834 |
msgstr ""
|
835 |
+
"Памет граница скрипт е разрешено да се консумират, определени в php.ini."
|
836 |
+
|
837 |
+
#: wp-statistics.php:38
|
838 |
+
msgid "WP Statistics"
|
839 |
+
msgstr "WP Statistics"
|
840 |
+
|
841 |
+
#: wp-statistics.php:164
|
842 |
+
msgid "Visit WordPress.org page"
|
843 |
+
msgstr "Посетете страницата на WordPress.org"
|
844 |
+
|
845 |
+
#: includes/log/page-statistics.php:29
|
846 |
+
msgid "Page Trend for Post ID"
|
847 |
+
msgstr "Страница тенденция за пост номер"
|
848 |
+
|
849 |
+
#: includes/log/page-statistics.php:48
|
850 |
+
msgid "Page Trend"
|
851 |
+
msgstr "Страница тенденция"
|
852 |
+
|
853 |
+
#: includes/log/page-statistics.php:68
|
854 |
+
msgid "Page Trending Stats"
|
855 |
+
msgstr "Страница тенденция статистика"
|
856 |
+
|
857 |
+
#: includes/settings/tabs/wps-access-level.php:97
|
858 |
+
msgid "Record exclusions"
|
859 |
+
msgstr "Запис изключения"
|
860 |
+
|
861 |
+
#: includes/settings/tabs/wps-access-level.php:130
|
862 |
+
msgid "Robot list"
|
863 |
+
msgstr "Робот списък"
|
864 |
+
|
865 |
+
#: includes/settings/tabs/wps-access-level.php:157
|
866 |
+
msgid "Excluded IP address list"
|
867 |
+
msgstr "Изключените IP адресен списък"
|
868 |
|
869 |
+
#: includes/settings/tabs/wps-access-level.php:160
|
870 |
+
msgid ""
|
871 |
+
"A list of IP addresses and subnet masks (one per line) to exclude from "
|
872 |
+
"statistics collection (both 192.168.0.0/24 and 192.168.0.0/255.255.255.0 "
|
873 |
+
"formats are accepted). To specify an IP address only, use a subnet value of "
|
874 |
+
"32 or 255.255.255.255."
|
875 |
msgstr ""
|
876 |
+
"Списък на IP адреси и подмрежа маски (по един на ред) да се изключат от "
|
877 |
+
"статистиката колекция (192.168.0.0/24 и 192.168.0.0/255.255.255.0 формати се "
|
878 |
+
"приемат). За да зададете IP адрес само, използвайте подмрежа стойност на 32 "
|
879 |
+
"или 255.255.255.255."
|
880 |
+
|
881 |
+
#: includes/settings/tabs/wps-access-level.php:172
|
882 |
+
msgid "Excluded login page"
|
883 |
+
msgstr "Изключените вход страница"
|
884 |
+
|
885 |
+
#: includes/settings/tabs/wps-access-level.php:179
|
886 |
+
msgid "Excluded admin pages"
|
887 |
+
msgstr "Изключените администратор страници"
|
888 |
+
|
889 |
+
#: includes/settings/tabs/wps-general.php:72
|
890 |
+
msgid "Users Online"
|
891 |
+
msgstr "Потребители онлайн"
|
892 |
+
|
893 |
+
#: includes/settings/tabs/wps-general.php:77
|
894 |
+
msgid "User online"
|
895 |
+
msgstr "Потребител онлайн"
|
896 |
+
|
897 |
+
#: includes/settings/tabs/wps-general.php:172
|
898 |
+
msgid "Track all pages"
|
899 |
+
msgstr "Проследяване на всички страници"
|
900 |
+
|
901 |
+
#: includes/settings/tabs/wps-general.php:184
|
902 |
+
msgid "Disable hits column in post/pages list"
|
903 |
+
msgstr "Забрани хитове колона пост/страници списък"
|
904 |
|
905 |
+
#: includes/settings/tabs/wps-general.php:195
|
906 |
+
msgid "Miscellaneous"
|
907 |
+
msgstr "Разни"
|
908 |
+
|
909 |
+
#: wp-statistics.php:164
|
910 |
+
msgid "Click here to visit the plugin on WordPress.org"
|
911 |
+
msgstr "Щракнете тук, за да посетите плъгин от WordPress.org"
|
912 |
+
|
913 |
+
#: wp-statistics.php:167
|
914 |
+
msgid "Click here to rate and review this plugin on WordPress.org"
|
915 |
msgstr ""
|
916 |
+
"Щракнете тук, за да оцените и да преразгледа този плъгин от WordPress.org"
|
917 |
|
918 |
+
#: wp-statistics.php:167
|
919 |
+
msgid "Rate this plugin"
|
920 |
+
msgstr "Оцени този плъгин"
|
921 |
+
|
922 |
+
#: wp-statistics.php:211
|
923 |
+
msgid "WP Statistics - Hits"
|
924 |
+
msgstr "WP-статистика - хитове"
|
925 |
+
|
926 |
+
#: wp-statistics.php:599
|
927 |
+
msgid "Error downloading GeoIP database from: %s - %s"
|
928 |
+
msgstr "Грешка при изтегляне на базата от данни от GeoIP: %s - %s"
|
929 |
+
|
930 |
+
#: widget.php:108 widget.php:277
|
931 |
+
msgid "Total Page Views"
|
932 |
+
msgstr "Общо изгледи на страница"
|
933 |
+
|
934 |
+
#: includes/settings/tabs/wps-general.php:155
|
935 |
+
#: includes/settings/tabs/wps-general.php:160 wp-statistics.php:259
|
936 |
+
msgid "Pages"
|
937 |
+
msgstr "Страници"
|
938 |
+
|
939 |
+
#: wp-statistics.php:266
|
940 |
+
msgid "Manual"
|
941 |
+
msgstr "Ръководство"
|
942 |
+
|
943 |
+
#: wp-statistics.php:364
|
944 |
+
msgid "Download ODF file"
|
945 |
+
msgstr "Изтегляне на ODF файл"
|
946 |
+
|
947 |
+
#: wp-statistics.php:365
|
948 |
+
msgid "Download HTML file"
|
949 |
+
msgstr "Изтегли HTML файл"
|
950 |
+
|
951 |
+
#: wp-statistics.php:369
|
952 |
+
msgid "Manual file not found."
|
953 |
+
msgstr "Ръчно файлът не е намерен."
|
954 |
+
|
955 |
+
#: includes/log/exclusions.php:54
|
956 |
+
msgid "Exclusions Statistics"
|
957 |
+
msgstr "Изключения статистика"
|
958 |
+
|
959 |
+
#: includes/settings/tabs/wps-overview-display.php:37
|
960 |
+
msgid "Top Pages Visited"
|
961 |
+
msgstr "Най-посещаваните страници"
|
962 |
+
|
963 |
+
#: includes/log/top-pages.php:160 includes/log/widgets/pages.php:27
|
964 |
+
msgid "No page title found"
|
965 |
+
msgstr "Няма намерени заглавието на страницата"
|
966 |
+
|
967 |
+
#: includes/log/top-pages.php:13 includes/log/top-pages.php:132
|
968 |
+
msgid "Top Pages"
|
969 |
+
msgstr "Топ страници"
|
970 |
+
|
971 |
+
#: includes/log/top-pages.php:20
|
972 |
+
msgid "Top 5 Pages Trends"
|
973 |
+
msgstr "Топ 5 страници тенденции"
|
974 |
+
|
975 |
+
#: includes/log/top-pages.php:49
|
976 |
+
msgid "Top 5 Page Trending Stats"
|
977 |
+
msgstr "Топ 5 страница тенденция статистика"
|
978 |
+
|
979 |
+
#: includes/log/page-statistics.php:89 includes/log/top-pages.php:70
|
980 |
+
msgid "Number of Hits"
|
981 |
+
msgstr "Брой посещения"
|
982 |
+
|
983 |
+
#: manual/manual.php:29
|
984 |
+
msgid "Manual not found: %s"
|
985 |
+
msgstr "Ръководството не е намерен: %s"
|
986 |
+
|
987 |
+
#: manual/manual.php:39
|
988 |
+
msgid "Invalid file type selected: %s"
|
989 |
+
msgstr "Невалиден тип файл избран: %s"
|
990 |
+
|
991 |
+
#: widget.php:116
|
992 |
+
msgid "Search Engine referred"
|
993 |
+
msgstr "Търсачката по"
|
994 |
+
|
995 |
+
#: includes/optimization/tabs/wps-optimization-export.php:47
|
996 |
+
msgid "Include Header Row"
|
997 |
+
msgstr "Включва заглавен ред"
|
998 |
+
|
999 |
+
#: includes/optimization/tabs/wps-optimization-export.php:52
|
1000 |
+
msgid "Include a header row as the first line of the exported file."
|
1001 |
+
msgstr "Включва заглавен ред на първия ред от експортирания файл."
|
1002 |
+
|
1003 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:125
|
1004 |
+
msgid "PHP Safe Mode"
|
1005 |
+
msgstr "PHP безопасен режим"
|
1006 |
+
|
1007 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:130
|
1008 |
+
msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
|
1009 |
msgstr ""
|
1010 |
+
"Се сигурния режим на PHP активни. GeoIP код не се поддържа в безопасен режим."
|
1011 |
+
|
1012 |
+
#: includes/settings/tabs/wps-geoip.php:106
|
1013 |
+
msgid "GeoIP collection is disabled due to the following reasons:"
|
1014 |
+
msgstr "GeoIP колекция е забранена поради следните причини:"
|
1015 |
|
1016 |
+
#: includes/settings/tabs/wps-geoip.php:126
|
1017 |
+
msgid ""
|
1018 |
+
"PHP safe mode detected! GeoIP collection is not supported with PHP's safe "
|
1019 |
+
"mode enabled!"
|
1020 |
msgstr ""
|
1021 |
+
"Безопасен режим PHP открити! GeoIP колекция не се поддържа на PHP защитен "
|
1022 |
+
"режим!"
|
1023 |
|
1024 |
+
#: includes/settings/tabs/wps-general.php:214
|
1025 |
+
msgid "Hide admin notices about non active features"
|
1026 |
+
msgstr "Скрий администратор обявления за не са активни функции"
|
1027 |
+
|
1028 |
+
#: includes/settings/tabs/wps-general.php:237
|
1029 |
+
msgid "Search Enginges"
|
1030 |
+
msgstr "Търсене Enginges"
|
1031 |
+
|
1032 |
+
#: includes/settings/tabs/wps-general.php:242
|
1033 |
+
msgid ""
|
1034 |
+
"Disabling all search engines is not allowed, doing so will result in all "
|
1035 |
+
"search engines being active."
|
1036 |
msgstr ""
|
1037 |
+
"Деактивирането на всички търсещи машини не е позволено, това ще доведе до "
|
1038 |
+
"всички търсещи машини са активни."
|
1039 |
+
|
1040 |
+
#: includes/settings/tabs/wps-general.php:257
|
1041 |
+
msgid "disable"
|
1042 |
+
msgstr "забрани"
|
1043 |
+
|
1044 |
+
#: includes/settings/tabs/wps-general.php:258
|
1045 |
+
msgid "Disable %s from data collection and reporting."
|
1046 |
+
msgstr "Изключете %s от събирането на данни и докладване."
|
1047 |
+
|
1048 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:147
|
1049 |
+
msgid "cURL Version"
|
1050 |
+
msgstr "Навийте версия"
|
1051 |
+
|
1052 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:151
|
1053 |
+
msgid "cURL not installed"
|
1054 |
+
msgstr "Навийте не е инсталиран"
|
1055 |
|
1056 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:152
|
1057 |
+
msgid ""
|
1058 |
+
"The PHP cURL Extension version you are running. cURL is required for the "
|
1059 |
+
"GeoIP code, if it is not installed GeoIP will be disabled."
|
|
|
|
|
1060 |
msgstr ""
|
1061 |
+
"PHP къдря версия на разширение, която изпълнявате. Навийте се изисква за "
|
1062 |
+
"GeoIP код, ако не е инсталиран GeoIP ще бъде забранена."
|
1063 |
|
1064 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:158
|
1065 |
+
msgid "BC Math"
|
1066 |
+
msgstr "Математика ПР.н.е."
|
1067 |
+
|
1068 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:162
|
1069 |
+
msgid "Installed"
|
1070 |
+
msgstr "Инсталирани"
|
1071 |
|
1072 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:162
|
1073 |
+
msgid "Not installed"
|
1074 |
+
msgstr "Не е инсталиран"
|
1075 |
+
|
1076 |
+
#: includes/settings/tabs/wps-geoip.php:114
|
1077 |
+
msgid ""
|
1078 |
+
"GeoIP collection requires the cURL PHP extension and it is not loaded on "
|
1079 |
+
"your version of PHP!"
|
1080 |
msgstr ""
|
1081 |
+
"GeoIP колекция изисква разширение на PHP къдря и тя не е заредена на вашата "
|
1082 |
+
"версия на PHP!"
|
1083 |
|
1084 |
+
#: includes/settings/tabs/wps-geoip.php:120
|
1085 |
+
msgid ""
|
1086 |
+
"GeoIP collection requires the BC Math PHP extension and it is not loaded on "
|
1087 |
+
"your version of PHP!"
|
1088 |
msgstr ""
|
1089 |
+
"GeoIP колекция изисква ПР.н.е математика PHP продължаване и то не е заредена "
|
1090 |
+
"на вашата версия на PHP!"
|
1091 |
|
1092 |
+
#: includes/functions/geoip-populate.php:26
|
1093 |
+
msgid ""
|
1094 |
+
"Unable to load the GeoIP database, make sure you have downloaded it in the "
|
1095 |
+
"settings page."
|
1096 |
msgstr ""
|
1097 |
+
"Не може да зареди GeoIP базата данни, се уверете, че сте го изтеглили в "
|
1098 |
+
"страницата Настройки."
|
1099 |
+
|
1100 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:182
|
1101 |
+
msgid "Database file does not exist."
|
1102 |
+
msgstr "Файл от база данни не съществува."
|
1103 |
+
|
1104 |
+
#: includes/log/last-visitor.php:59
|
1105 |
+
msgid "Search for"
|
1106 |
+
msgstr "Търсене за"
|
1107 |
|
1108 |
+
#: includes/log/widgets/browsers.php:8 includes/log/widgets/countries.php:11
|
1109 |
+
#: includes/log/widgets/hits.php:8 includes/log/widgets/pages.php:13
|
1110 |
+
#: includes/log/widgets/recent.php:9 includes/log/widgets/referring.php:13
|
1111 |
+
#: includes/log/widgets/search.php:8 includes/log/widgets/words.php:16
|
1112 |
+
msgid "More"
|
1113 |
+
msgstr "Повече"
|
1114 |
+
|
1115 |
+
#: includes/settings/tabs/wps-general.php:269
|
1116 |
+
msgid "Include totals"
|
1117 |
+
msgstr "Включва общи суми"
|
1118 |
+
|
1119 |
+
#: includes/settings/tabs/wps-general.php:275
|
1120 |
+
msgid ""
|
1121 |
+
"Add a total line to charts with multiple values, like the search engine "
|
1122 |
+
"referrals"
|
1123 |
msgstr ""
|
1124 |
+
"Добавяне на обща линия за диаграми с множество стойности, като търсене "
|
1125 |
+
"двигател референции"
|
1126 |
|
1127 |
+
#: includes/settings/tabs/wps-overview-display.php:100
|
1128 |
+
msgid "Disable map"
|
1129 |
+
msgstr "Забраняване на картата"
|
|
|
|
|
1130 |
|
1131 |
+
#: includes/settings/tabs/wps-overview-display.php:106
|
1132 |
+
msgid "Disable the map display"
|
1133 |
+
msgstr "Забраняване на показването на картите"
|
1134 |
+
|
1135 |
+
#: includes/settings/tabs/wps-overview-display.php:112
|
1136 |
+
msgid "Get country location from Google"
|
1137 |
+
msgstr "Се страна местоположение от Google"
|
1138 |
+
|
1139 |
+
#: includes/log/exclusions.php:8
|
1140 |
+
msgid ""
|
1141 |
+
"Attention: Exclusion are not currently set to be recorded, the results below "
|
1142 |
+
"may not reflect current statistics!"
|
1143 |
msgstr ""
|
1144 |
+
"Внимание: Изключване не са в момента зададени да се отчита, по-долу "
|
1145 |
+
"резултатите може да не отразява текущата статистика!"
|
1146 |
|
1147 |
+
#: includes/log/exclusions.php:118
|
1148 |
+
msgid "Number of excluded hits"
|
1149 |
+
msgstr "Броя на изключените хитове"
|
1150 |
+
|
1151 |
+
#: includes/settings/tabs/wps-access-level.php:86
|
1152 |
+
msgid ""
|
1153 |
+
"Hint: manage_network = Super Admin Network, manage_options = Administrator, "
|
1154 |
+
"edit_others_posts = Editor, publish_posts = Author, edit_posts = "
|
1155 |
+
"Contributor, read = Everyone."
|
1156 |
msgstr ""
|
1157 |
+
"Съвет: manage_network = супер администратор мрежа, manage_options = "
|
1158 |
+
"администратор, edit_others_posts = редактор, publish_posts = автор, "
|
1159 |
+
"edit_posts = сътрудник, прочетете = всеки."
|
1160 |
|
1161 |
+
#: includes/settings/tabs/wps-access-level.php:99
|
1162 |
+
#: includes/settings/tabs/wps-access-level.php:151
|
1163 |
+
msgid "Enable"
|
1164 |
+
msgstr "Разреши"
|
|
|
1165 |
|
1166 |
+
#: includes/settings/tabs/wps-access-level.php:100
|
1167 |
+
msgid ""
|
1168 |
+
"This will record all the excluded hits in a separate table with the reasons "
|
1169 |
+
"why it was excluded but no other information. This will generate a lot of "
|
1170 |
+
"data but is useful if you want to see the total number of hits your site "
|
1171 |
+
"gets, not just actual user visits."
|
1172 |
msgstr ""
|
1173 |
+
"Това ще запише всички изключени хитове в отделна таблица с причините, защо е "
|
1174 |
+
"изключен, но никаква друга информация. Това ще генерира много данни, но е "
|
1175 |
+
"полезно, ако искате да видите общия брой на посещения вашия сайт получава, "
|
1176 |
+
"не само действителен потребител посещения."
|
1177 |
|
1178 |
+
#: includes/settings/tabs/wps-access-level.php:168
|
1179 |
+
msgid "Site URL Exclusions"
|
1180 |
+
msgstr "Сайт URL изключения"
|
|
|
1181 |
|
1182 |
+
#: includes/settings/tabs/wps-access-level.php:175
|
1183 |
+
msgid "Exclude the login page for registering as a hit."
|
1184 |
+
msgstr "Изключване на страницата за вход за регистриране като хит."
|
|
|
|
|
1185 |
|
1186 |
+
#: includes/settings/tabs/wps-access-level.php:182
|
1187 |
+
msgid "Exclude the admin pages for registering as a hit."
|
1188 |
+
msgstr "Изключи администратор страници за регистриране като хит."
|
|
|
|
|
|
|
|
|
1189 |
|
1190 |
+
#: includes/settings/tabs/wps-access-level.php:93 wp-statistics.php:254
|
1191 |
+
msgid "Exclusions"
|
1192 |
+
msgstr "Изключения"
|
|
|
1193 |
|
1194 |
+
#: includes/log/exclusions.php:68
|
1195 |
+
msgid "Total Exclusions: %s"
|
1196 |
+
msgstr "Общо изключения: %s"
|
|
|
1197 |
|
1198 |
+
#: includes/log/exclusions.php:75
|
1199 |
+
msgid "Exclusions Statistical Chart"
|
1200 |
+
msgstr "Изключения статистически диаграма"
|
|
|
1201 |
|
1202 |
+
#: includes/settings/tabs/wps-access-level.php:33
|
1203 |
+
msgid "Access Levels"
|
1204 |
+
msgstr "Нива на достъп"
|
|
|
1205 |
|
1206 |
+
#: includes/optimization/wps-optimization.php:126
|
1207 |
+
msgid "Resources/Information"
|
1208 |
+
msgstr "Ресурси/информация"
|
|
|
1209 |
|
1210 |
+
#: includes/optimization/wps-optimization.php:128
|
1211 |
+
msgid "Purging"
|
1212 |
+
msgstr "Прочистване"
|
|
|
|
|
1213 |
|
1214 |
+
#: includes/optimization/wps-optimization.php:130
|
1215 |
+
msgid "Updates"
|
1216 |
+
msgstr "Актуализации"
|
|
|
1217 |
|
1218 |
+
#: includes/settings/wps-settings.php:88
|
1219 |
+
msgid "Access/Exclusions"
|
1220 |
+
msgstr "Достъп/изключвания"
|
|
|
1221 |
|
1222 |
+
#: includes/settings/wps-settings.php:91
|
1223 |
+
msgid "Maintenance"
|
1224 |
+
msgstr "Поддръжка"
|
|
|
1225 |
|
1226 |
+
#: includes/settings/wps-settings.php:126
|
1227 |
+
msgid "Update"
|
1228 |
+
msgstr "Актуализация"
|
|
|
|
|
1229 |
|
1230 |
+
#: includes/settings/wps-settings.php:86
|
1231 |
+
msgid "General"
|
1232 |
+
msgstr "Общи"
|
|
|
|
|
|
|
1233 |
|
1234 |
+
#: includes/optimization/empty.php:57
|
1235 |
+
msgid "Error, %s not emptied!"
|
1236 |
+
msgstr "Грешка, %s не се изпразва!"
|
|
|
1237 |
|
1238 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:118
|
1239 |
+
msgid "Data"
|
1240 |
+
msgstr "Данни"
|
1241 |
+
|
1242 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:145
|
1243 |
+
msgid "Purge records older than"
|
1244 |
+
msgstr "Изтриване на записи по-стари от"
|
1245 |
|
1246 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:151
|
1247 |
+
msgid ""
|
1248 |
+
"Deleted user statistics data older than the selected number of days. "
|
1249 |
+
"Minimum value is 30 days."
|
1250 |
msgstr ""
|
1251 |
+
"Изтрит потребител статистика данни по-стари от определен брой дни. "
|
1252 |
+
"Минималната стойност е 30 дни."
|
1253 |
|
1254 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:152
|
1255 |
+
msgid "Purge now!"
|
1256 |
+
msgstr "Чистка сега!"
|
1257 |
+
|
1258 |
+
#: includes/optimization/purge-data.php:55
|
1259 |
+
msgid "Please select a value over 30 days."
|
1260 |
+
msgstr "Моля изберете стойност над 30 дни."
|
1261 |
+
|
1262 |
+
#: includes/settings/tabs/wps-maintenance.php:20
|
1263 |
+
msgid ""
|
1264 |
+
"This will permanently delete data from the database each day, are you sure "
|
1265 |
+
"you want to enable this option?"
|
1266 |
msgstr ""
|
1267 |
+
"Това ще изтрие данни от базата данни всеки ден, наистина ли искате да "
|
1268 |
+
"разрешите тази опция?"
|
1269 |
|
1270 |
+
#: includes/settings/tabs/wps-maintenance.php:30
|
1271 |
+
msgid "Database Maintenance"
|
1272 |
+
msgstr "Поддръжка на база данни"
|
1273 |
+
|
1274 |
+
#: includes/settings/tabs/wps-maintenance.php:35
|
1275 |
+
msgid "Run a daily WP Cron job to prune the databases"
|
1276 |
+
msgstr "Изпълни ежедневно WP Cron работа да режеш на бази данни"
|
1277 |
+
|
1278 |
+
#: includes/settings/tabs/wps-maintenance.php:41
|
1279 |
+
msgid ""
|
1280 |
+
"A WP Cron job will be run daily to prune any data older than a set number of "
|
1281 |
+
"days."
|
1282 |
msgstr ""
|
1283 |
+
"WP Cron работни места ще се изпълнява ежедневно да се режат всякакви данни, "
|
1284 |
+
"по-стари от определен брой дни."
|
1285 |
|
1286 |
+
#: includes/settings/tabs/wps-maintenance.php:47
|
1287 |
+
msgid "Prune data older than"
|
1288 |
+
msgstr "Премахване на данните по-стари от"
|
1289 |
+
|
1290 |
+
#: includes/settings/tabs/wps-maintenance.php:52
|
1291 |
+
msgid "Days"
|
1292 |
+
msgstr "Дни"
|
1293 |
+
|
1294 |
+
#: includes/settings/tabs/wps-maintenance.php:53
|
1295 |
+
msgid ""
|
1296 |
+
"The number of days to keep statistics for. Minimum value is 30 days. "
|
1297 |
+
"Invalid values will disable the daily maintenance."
|
1298 |
msgstr ""
|
1299 |
+
"Броят на дните за запазване на статистика за. Минималната стойност е 30 дни. "
|
1300 |
+
"Невалидни стойности ще забрани ежедневна поддръжка."
|
1301 |
|
1302 |
+
#: includes/settings/wps-settings.php:89
|
1303 |
+
msgid "GeoIP"
|
1304 |
+
msgstr "GeoIP"
|
1305 |
+
|
1306 |
+
#: includes/settings/tabs/wps-browscap.php:54
|
1307 |
+
#: includes/settings/tabs/wps-geoip.php:64
|
1308 |
+
msgid "Next update will be"
|
1309 |
+
msgstr "Следващата актуализация ще бъде"
|
1310 |
+
|
1311 |
+
#: includes/settings/tabs/wps-geoip.php:109
|
1312 |
+
msgid ""
|
1313 |
+
"GeoIP collection requires PHP %s or above, it is currently disabled due to "
|
1314 |
+
"the installed PHP version being "
|
1315 |
msgstr ""
|
1316 |
+
"GeoIP колекция изисква PHP %s или по-горе, в момента е забранен поради "
|
1317 |
+
"инсталирани PHP версия са "
|
1318 |
|
1319 |
+
#: includes/log/widgets/search.php:8 includes/log/widgets/summary.php:64
|
1320 |
+
msgid "Search Engine Referrals"
|
1321 |
+
msgstr "Търсене двигател референции"
|
1322 |
+
|
1323 |
+
#: includes/log/widgets/summary.php:88
|
1324 |
+
msgid "Daily Total"
|
1325 |
+
msgstr "Ежедневно общо"
|
1326 |
+
|
1327 |
+
#: includes/log/widgets/summary.php:102
|
1328 |
+
msgid "Current Time and Date"
|
1329 |
+
msgstr "Текущия час и дата"
|
1330 |
+
|
1331 |
+
#: includes/optimization/tabs/wps-optimization-database.php:39
|
1332 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:25
|
1333 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:40
|
1334 |
+
msgid "Update Now!"
|
1335 |
+
msgstr "Актуализирай сега!"
|
1336 |
+
|
1337 |
+
#: includes/settings/tabs/wps-access-level.php:87
|
1338 |
+
msgid ""
|
1339 |
+
"Each of the above casscades the rights upwards in the default WordPress "
|
1340 |
+
"configuration. So for example selecting publish_posts grants the right to "
|
1341 |
+
"Authors, Editors, Admins and Super Admins."
|
1342 |
msgstr ""
|
1343 |
+
"Всяка една от горните casscades правата нагоре в конфигурацията по "
|
1344 |
+
"подразбиране на WordPress. Така например избора на publish_posts предоставя "
|
1345 |
+
"правото на автори, редактори, администратори и супер администратори."
|
1346 |
|
1347 |
+
#: includes/settings/tabs/wps-access-level.php:88
|
|
|
|
|
1348 |
msgid ""
|
1349 |
+
"If you need a more robust solution to delegate access you might want to look "
|
1350 |
+
"at %s in the WordPress plugin directory."
|
1351 |
msgstr ""
|
1352 |
+
"Ако имате нужда от по-силен решение за делегиране на достъп, може да искате "
|
1353 |
+
"да погледнете %s в WordPress плъгин директорията."
|
1354 |
+
|
1355 |
+
#: includes/settings/tabs/wps-access-level.php:62
|
1356 |
+
msgid "Required user level to view WP Statistics"
|
1357 |
+
msgstr "Изисква ниво на потребител за да видите статистика за WP"
|
1358 |
+
|
1359 |
+
#: includes/settings/tabs/wps-access-level.php:77
|
1360 |
+
msgid "Required user level to manage WP Statistics"
|
1361 |
+
msgstr "Изисква потребителско ниво, за да управлявате WP Statistics"
|
1362 |
+
|
1363 |
+
#: includes/settings/tabs/wps-geoip.php:56
|
1364 |
+
msgid "Schedule monthly update of GeoIP DB"
|
1365 |
+
msgstr "Месечна актуализация график на GeoIP DB"
|
1366 |
|
1367 |
+
#: includes/settings/tabs/wps-geoip.php:82
|
1368 |
+
msgid ""
|
1369 |
+
"Download of the GeoIP database will be scheduled for 2 days after the first "
|
1370 |
+
"Tuesday of the month."
|
1371 |
msgstr ""
|
1372 |
+
"Изтегляне на GeoIP базата данни ще бъде насрочено за 2 дни след първия "
|
1373 |
+
"вторник на месеца."
|
1374 |
|
1375 |
+
#: includes/settings/tabs/wps-geoip.php:83
|
1376 |
+
msgid ""
|
1377 |
+
"This option will also download the database if the local filesize is less "
|
1378 |
+
"than 1k (which usually means the stub that comes with the plugin is still in "
|
1379 |
+
"place)."
|
1380 |
msgstr ""
|
1381 |
+
"Тази опция ще изтеглите базата данни ако местните големина е по-малко от 1k, "
|
1382 |
+
"(което обикновено означава пън, която идва с приставката е все още на място)."
|
1383 |
+
|
1384 |
+
#: includes/settings/tabs/wps-geoip.php:89
|
1385 |
+
msgid "Populate missing GeoIP after update of GeoIP DB"
|
1386 |
+
msgstr "Попълни липсващите GeoIP след актуализация на GeoIP DB"
|
1387 |
+
|
1388 |
+
#: includes/settings/tabs/wps-geoip.php:95
|
1389 |
+
msgid "Update any missing GeoIP data after downloading a new database."
|
1390 |
+
msgstr "Липсващи GeoIP данни се актуализира след свалянето на нова база данни."
|
1391 |
+
|
1392 |
+
#: includes/functions/geoip-populate.php:50
|
1393 |
+
msgid "Updated %s GeoIP records in the visitors database."
|
1394 |
+
msgstr "Актуализиран %s GeoIP записи в базата данни на посетителите."
|
1395 |
+
|
1396 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:98
|
1397 |
+
msgid "Version Info"
|
1398 |
+
msgstr "Информация за версията"
|
1399 |
+
|
1400 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:103
|
1401 |
+
msgid "WP Statistics Version"
|
1402 |
+
msgstr "Статистика на WP версия"
|
1403 |
+
|
1404 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:108
|
1405 |
+
msgid "The WP Statistics version you are running."
|
1406 |
+
msgstr "Версията на WP Statistics, която изпълнявате."
|
1407 |
+
|
1408 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:114
|
1409 |
+
msgid "PHP Version"
|
1410 |
+
msgstr "PHP версия"
|
1411 |
|
1412 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:119
|
1413 |
+
msgid "The PHP version you are running."
|
1414 |
+
msgstr "Версията на PHP, която изпълнявате."
|
1415 |
+
|
1416 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:136
|
1417 |
+
msgid "jQuery Version"
|
1418 |
+
msgstr "jQuery версия"
|
1419 |
+
|
1420 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:141
|
1421 |
+
msgid "The jQuery version you are running."
|
1422 |
+
msgstr "JQuery версия, която изпълнявате."
|
1423 |
+
|
1424 |
+
#: wp-statistics.php:610
|
1425 |
+
msgid "Error could not open downloaded GeoIP database for reading: %s"
|
1426 |
+
msgstr "Грешка не може да отвори изтегления GeoIP база данни за четене: %s"
|
1427 |
+
|
1428 |
+
#: wp-statistics.php:617
|
1429 |
+
msgid "Error could not open destination GeoIP database for writing %s"
|
1430 |
msgstr ""
|
1431 |
+
"Грешка не може да отвори GeoIP база данни местоназначение за писане на %s"
|
1432 |
|
1433 |
+
#: wp-statistics.php:633
|
1434 |
+
msgid "GeoIP Database updated successfully!"
|
1435 |
+
msgstr "GeoIP базата данни се актуализира успешно!"
|
|
|
1436 |
|
1437 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:229
|
1438 |
+
msgid "Client Info"
|
1439 |
+
msgstr "Информация за клиента"
|
|
|
1440 |
|
1441 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:234
|
1442 |
+
msgid "Client IP"
|
1443 |
+
msgstr "Клиент IP"
|
|
|
1444 |
|
1445 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:239
|
1446 |
+
msgid "The client IP address."
|
1447 |
+
msgstr "IP адреса на клиента."
|
1448 |
+
|
1449 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:245
|
1450 |
+
msgid "User Agent"
|
1451 |
+
msgstr "Потребителски агент"
|
1452 |
|
1453 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:250
|
1454 |
+
msgid "The client user agent string."
|
1455 |
+
msgstr "Клиент потребител фактор канап."
|
|
|
1456 |
|
1457 |
+
#: includes/settings/tabs/wps-access-level.php:105
|
1458 |
+
msgid "Exclude User Roles"
|
1459 |
+
msgstr "Изключване на потребителски роли"
|
1460 |
+
|
1461 |
+
#: includes/settings/tabs/wps-access-level.php:119
|
1462 |
+
#: includes/settings/tabs/wps-access-level.php:174
|
1463 |
+
#: includes/settings/tabs/wps-access-level.php:181
|
1464 |
+
msgid "Exclude"
|
1465 |
+
msgstr "Изключи"
|
1466 |
+
|
1467 |
+
#: includes/settings/tabs/wps-access-level.php:120
|
1468 |
+
msgid "Exclude %s role from data collection."
|
1469 |
+
msgstr "%S роля да изключат от събирането на данни."
|
1470 |
+
|
1471 |
+
#: includes/settings/tabs/wps-access-level.php:126
|
1472 |
+
msgid "IP/Robot Exclusions"
|
1473 |
+
msgstr "IP/робот изключвания"
|
1474 |
+
|
1475 |
+
#: includes/settings/tabs/wps-access-level.php:143
|
1476 |
+
msgid ""
|
1477 |
+
"A list of words (one per line) to match against to detect robots. Entries "
|
1478 |
+
"must be at least 4 characters long or they will be ignored."
|
1479 |
msgstr ""
|
1480 |
+
"Списък на думи, (по един на ред) за мач срещу за откриване на роботи. "
|
1481 |
+
"Записите трябва да бъдат най-малко 4 символа или те ще бъдат игнорирани."
|
1482 |
+
|
1483 |
+
#: includes/settings/tabs/wps-access-level.php:144
|
1484 |
+
msgid "Reset to Default"
|
1485 |
+
msgstr "Възстанови по подразбиране"
|
1486 |
+
|
1487 |
+
#: includes/settings/tabs/wps-access-level.php:161
|
1488 |
+
msgid "Add 10.0.0.0"
|
1489 |
+
msgstr "Добави 10.0.0.0"
|
1490 |
|
1491 |
+
#: includes/settings/tabs/wps-access-level.php:162
|
1492 |
+
msgid "Add 172.16.0.0"
|
1493 |
+
msgstr "Добави 172.16.0.0"
|
1494 |
+
|
1495 |
+
#: includes/settings/tabs/wps-access-level.php:163
|
1496 |
+
msgid "Add 192.168.0.0"
|
1497 |
+
msgstr "Добави 192.168.0.0"
|
1498 |
+
|
1499 |
+
#: includes/settings/tabs/wps-general.php:264
|
1500 |
+
msgid "Charts"
|
1501 |
+
msgstr "Диаграми"
|
1502 |
+
|
1503 |
+
#: includes/settings/tabs/wps-geoip.php:38
|
1504 |
+
msgid ""
|
1505 |
+
"For get more information and location (country) from visitor, enable this "
|
1506 |
+
"feature."
|
1507 |
msgstr ""
|
1508 |
+
"За да получите повече информация и местоположението (страната) от посетител, "
|
1509 |
+
"активирате тази функция."
|
1510 |
+
|
1511 |
+
#: includes/settings/wps-settings.php:87 wp-statistics.php:248
|
1512 |
+
msgid "Overview"
|
1513 |
+
msgstr "Общ преглед"
|
1514 |
+
|
1515 |
+
#: includes/optimization/tabs/wps-optimization-database.php:25
|
1516 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:21
|
1517 |
+
#: wp-statistics.php:251
|
1518 |
+
msgid "Countries"
|
1519 |
+
msgstr "Страни"
|
1520 |
+
|
1521 |
+
#: wp-statistics.php:176 wp-statistics.php:253
|
1522 |
+
msgid "Hits"
|
1523 |
+
msgstr "Посещения"
|
1524 |
+
|
1525 |
+
#: wp-statistics.php:255
|
1526 |
+
msgid "Referers"
|
1527 |
+
msgstr "Препоръчители"
|
1528 |
+
|
1529 |
+
#: wp-statistics.php:256
|
1530 |
+
msgid "Searches"
|
1531 |
+
msgstr "Търсения"
|
1532 |
+
|
1533 |
+
#: wp-statistics.php:257
|
1534 |
+
msgid "Search Words"
|
1535 |
+
msgstr "Думи за търсене"
|
1536 |
+
|
1537 |
+
#: includes/settings/tabs/wps-general.php:94
|
1538 |
+
msgid "Second"
|
1539 |
+
msgstr "Секунда"
|
1540 |
+
|
1541 |
+
#: includes/log/all-browsers.php:17
|
1542 |
+
msgid "Browser Statistics"
|
1543 |
+
msgstr "Браузър статистика"
|
1544 |
+
|
1545 |
+
#: includes/log/all-browsers.php:107
|
1546 |
+
msgid "Platform"
|
1547 |
+
msgstr "Платформа"
|
1548 |
+
|
1549 |
+
#: includes/log/all-browsers.php:241
|
1550 |
+
msgid "%s Version"
|
1551 |
+
msgstr "версия на %s"
|
1552 |
+
|
1553 |
+
#: includes/log/hit-statistics.php:17 includes/log/widgets/hits.php:8
|
1554 |
+
msgid "Hit Statistics"
|
1555 |
+
msgstr "Удари статистика"
|
1556 |
+
|
1557 |
+
#: includes/log/exclusions.php:57 includes/log/hit-statistics.php:21
|
1558 |
+
#: includes/log/page-statistics.php:33 includes/log/search-statistics.php:21
|
1559 |
+
msgid "10 Days"
|
1560 |
+
msgstr "10 дни"
|
1561 |
+
|
1562 |
+
#: includes/log/exclusions.php:58 includes/log/hit-statistics.php:22
|
1563 |
+
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:22
|
1564 |
+
msgid "20 Days"
|
1565 |
+
msgstr "20 дни"
|
1566 |
+
|
1567 |
+
#: includes/log/exclusions.php:59 includes/log/hit-statistics.php:23
|
1568 |
+
#: includes/log/page-statistics.php:35 includes/log/search-statistics.php:23
|
1569 |
+
msgid "30 Days"
|
1570 |
+
msgstr "30 дни"
|
1571 |
+
|
1572 |
+
#: includes/log/exclusions.php:60 includes/log/hit-statistics.php:24
|
1573 |
+
#: includes/log/page-statistics.php:36 includes/log/search-statistics.php:24
|
1574 |
+
msgid "2 Months"
|
1575 |
+
msgstr "2 месеца"
|
1576 |
+
|
1577 |
+
#: includes/log/exclusions.php:61 includes/log/hit-statistics.php:25
|
1578 |
+
#: includes/log/page-statistics.php:37 includes/log/search-statistics.php:25
|
1579 |
+
msgid "3 Months"
|
1580 |
+
msgstr "3 месеца"
|
1581 |
+
|
1582 |
+
#: includes/log/exclusions.php:62 includes/log/hit-statistics.php:26
|
1583 |
+
#: includes/log/page-statistics.php:38 includes/log/search-statistics.php:26
|
1584 |
+
msgid "6 Months"
|
1585 |
+
msgstr "6 месеца"
|
1586 |
+
|
1587 |
+
#: includes/log/exclusions.php:63 includes/log/hit-statistics.php:27
|
1588 |
+
#: includes/log/page-statistics.php:39 includes/log/search-statistics.php:27
|
1589 |
+
msgid "9 Months"
|
1590 |
+
msgstr "9 месеца"
|
1591 |
+
|
1592 |
+
#: includes/log/exclusions.php:64 includes/log/hit-statistics.php:28
|
1593 |
+
#: includes/log/page-statistics.php:40 includes/log/search-statistics.php:28
|
1594 |
+
msgid "1 Year"
|
1595 |
+
msgstr "1 година"
|
1596 |
+
|
1597 |
+
#: includes/settings/tabs/wps-overview-display.php:34
|
1598 |
+
msgid "Hits Statistical Chart"
|
1599 |
+
msgstr "Статистически диаграма хитове"
|
1600 |
+
|
1601 |
+
#: includes/log/exclusions.php:97 includes/log/hit-statistics.php:69
|
1602 |
+
#: includes/log/search-statistics.php:77 includes/log/widgets/hits.php:39
|
1603 |
+
#: includes/log/widgets/search.php:46
|
1604 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:150
|
1605 |
+
msgid "days"
|
1606 |
+
msgstr "дни"
|
1607 |
+
|
1608 |
+
#: includes/log/widgets/countries.php:11
|
1609 |
+
#: includes/settings/tabs/wps-overview-display.php:27
|
1610 |
+
msgid "Top 10 Countries"
|
1611 |
+
msgstr "Топ 10 страни"
|
1612 |
+
|
1613 |
+
#: includes/log/top-countries.php:28 includes/log/widgets/countries.php:17
|
1614 |
+
msgid "Rank"
|
1615 |
+
msgstr "Ранг"
|
1616 |
+
|
1617 |
+
#: includes/log/top-countries.php:29 includes/log/widgets/countries.php:18
|
1618 |
+
msgid "Flag"
|
1619 |
+
msgstr "Флаг"
|
1620 |
+
|
1621 |
+
#: includes/log/top-countries.php:31 includes/log/widgets/countries.php:20
|
1622 |
+
msgid "Visitor Count"
|
1623 |
+
msgstr "Посетител брой"
|
1624 |
+
|
1625 |
+
#: includes/settings/tabs/wps-overview-display.php:35
|
1626 |
+
msgid "Search Engine Referrers Statistical Chart"
|
1627 |
+
msgstr "Търсене двигател референтите статистически диаграма"
|
1628 |
+
|
1629 |
+
#: includes/log/top-countries.php:19
|
1630 |
+
msgid "Top Countries"
|
1631 |
+
msgstr "Топ страни"
|
1632 |
+
|
1633 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:159
|
1634 |
+
msgid "Delete User Agent Types"
|
1635 |
+
msgstr "Изтриване на потребителски агент типове"
|
1636 |
+
|
1637 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:164
|
1638 |
+
msgid "Delete Agents"
|
1639 |
+
msgstr "Изтриване на агенти"
|
1640 |
+
|
1641 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:179
|
1642 |
+
msgid "All visitor data will be lost for this agent type."
|
1643 |
+
msgstr "Всички посетител данни ще бъдат загубени за този агент тип."
|
1644 |
+
|
1645 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:180
|
1646 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:204
|
1647 |
+
msgid "Delete now!"
|
1648 |
+
msgstr "Изтриване сега!"
|
1649 |
+
|
1650 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:188
|
1651 |
+
msgid "Delete Platforms"
|
1652 |
+
msgstr "Изтриване на платформи"
|
1653 |
+
|
1654 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:203
|
1655 |
+
msgid "All visitor data will be lost for this platform type."
|
1656 |
+
msgstr "Всички посетител данни ще бъдат загубени за тази платформа тип."
|
1657 |
+
|
1658 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:16
|
1659 |
+
msgid "GeoIP Options"
|
1660 |
+
msgstr "GeoIP опции"
|
1661 |
+
|
1662 |
+
#: includes/settings/tabs/wps-general.php:133
|
1663 |
+
msgid "Store entire user agent string"
|
1664 |
+
msgstr "Съхранява цялата потребител фактор канап"
|
1665 |
+
|
1666 |
+
#: includes/settings/tabs/wps-general.php:139
|
1667 |
+
msgid "Only enabled for debugging"
|
1668 |
+
msgstr "Разрешена за отстраняване на грешки"
|
1669 |
+
|
1670 |
+
#: includes/settings/tabs/wps-geoip.php:17
|
1671 |
+
msgid "GeoIP settings"
|
1672 |
+
msgstr "GeoIP настройки"
|
1673 |
+
|
1674 |
+
#: includes/settings/tabs/wps-geoip.php:32
|
1675 |
+
msgid "GeoIP collection"
|
1676 |
+
msgstr "GeoIP колекция"
|
1677 |
+
|
1678 |
+
#: includes/settings/tabs/wps-geoip.php:44
|
1679 |
+
msgid "Update GeoIP Info"
|
1680 |
+
msgstr "GeoIP информация актуализация"
|
1681 |
+
|
1682 |
+
#: includes/settings/tabs/wps-geoip.php:49
|
1683 |
+
msgid "Download GeoIP Database"
|
1684 |
+
msgstr "Изтегли GeoIP база данни"
|
1685 |
+
|
1686 |
+
#: includes/settings/tabs/wps-browscap.php:40
|
1687 |
+
#: includes/settings/tabs/wps-geoip.php:50
|
1688 |
+
msgid "Save changes on this page to download the update."
|
1689 |
+
msgstr "Запишете промените на тази страница, за да изтеглите актуализацията."
|
1690 |
+
|
1691 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:10
|
1692 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:36
|
1693 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:62
|
1694 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:90
|
1695 |
+
msgid "Are you sure?"
|
1696 |
+
msgstr "Сигурни ли сте?"
|
1697 |
+
|
1698 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:137
|
1699 |
+
msgid "Clear now!"
|
1700 |
+
msgstr "Изчистване сега!"
|
1701 |
+
|
1702 |
+
#: wp-statistics.php:261
|
1703 |
+
msgid "Optimization"
|
1704 |
+
msgstr "Оптимизация"
|
1705 |
+
|
1706 |
+
#: includes/optimization/delete-agents.php:5
|
1707 |
+
#: includes/optimization/delete-platforms.php:5
|
1708 |
+
#: includes/optimization/empty.php:5 includes/optimization/export.php:5
|
1709 |
+
#: includes/optimization/purge-data.php:5
|
1710 |
+
#: includes/optimization/wps-optimization.php:3 manual/manual.php:5
|
1711 |
+
msgid "Access denied!"
|
1712 |
+
msgstr "Отказан достъп!"
|
1713 |
+
|
1714 |
+
#: includes/optimization/delete-agents.php:18
|
1715 |
+
#: includes/optimization/delete-platforms.php:18
|
1716 |
+
#: includes/optimization/empty.php:42 includes/optimization/export.php:57
|
1717 |
+
msgid "Please select the desired items."
|
1718 |
+
msgstr "Моля изберете желаните елементи."
|
1719 |
+
|
1720 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:17
|
1721 |
+
msgid "Resources"
|
1722 |
+
msgstr "Ресурси"
|
1723 |
+
|
1724 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:22
|
1725 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:27
|
1726 |
+
msgid "Memory usage in PHP"
|
1727 |
+
msgstr "Памет отнасяне в PHP"
|
1728 |
+
|
1729 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:26
|
1730 |
+
msgid "Byte"
|
1731 |
+
msgstr "Байт"
|
1732 |
+
|
1733 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:48
|
1734 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:59
|
1735 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:70
|
1736 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:81
|
1737 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:92
|
1738 |
+
msgid "Row"
|
1739 |
+
msgstr "Ред"
|
1740 |
+
|
1741 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:49
|
1742 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:60
|
1743 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:71
|
1744 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:82
|
1745 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:93
|
1746 |
+
msgid "Number of rows"
|
1747 |
+
msgstr "Брой редове"
|
1748 |
+
|
1749 |
+
#: includes/optimization/tabs/wps-optimization-export.php:7
|
1750 |
+
#: includes/optimization/wps-optimization.php:127
|
1751 |
+
msgid "Export"
|
1752 |
+
msgstr "Износ"
|
1753 |
+
|
1754 |
+
#: includes/optimization/tabs/wps-optimization-export.php:12
|
1755 |
+
msgid "Export from"
|
1756 |
+
msgstr "Износ от"
|
1757 |
+
|
1758 |
+
#: includes/optimization/tabs/wps-optimization-export.php:24
|
1759 |
+
msgid "Select the table for the output file."
|
1760 |
+
msgstr "Изберете таблицата за изходния файл."
|
1761 |
+
|
1762 |
+
#: includes/optimization/tabs/wps-optimization-export.php:30
|
1763 |
+
msgid "Export To"
|
1764 |
+
msgstr "Експортиране в"
|
1765 |
+
|
1766 |
+
#: includes/optimization/tabs/wps-optimization-export.php:41
|
1767 |
+
msgid "Select the output file type."
|
1768 |
+
msgstr "Изберете типа на изходния файл."
|
1769 |
+
|
1770 |
+
#: includes/optimization/tabs/wps-optimization-export.php:53
|
1771 |
+
msgid "Start Now!"
|
1772 |
+
msgstr "Започнете сега!"
|
1773 |
+
|
1774 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:123
|
1775 |
+
msgid "Empty Table"
|
1776 |
+
msgstr "Празна таблица"
|
1777 |
+
|
1778 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:136
|
1779 |
+
msgid "All data table will be lost."
|
1780 |
+
msgstr "Таблица с всички данни ще бъдат загубени."
|
1781 |
+
|
1782 |
+
#: includes/settings/tabs/wps-about.php:44
|
1783 |
+
msgid "Support"
|
1784 |
+
msgstr "Поддръжка"
|
1785 |
+
|
1786 |
+
#: includes/settings/tabs/wps-about.php:74
|
1787 |
+
msgid "Farsi"
|
1788 |
+
msgstr "Фарси"
|
1789 |
+
|
1790 |
+
#: includes/log/top-referring.php:47
|
1791 |
+
msgid "Referring sites from"
|
1792 |
+
msgstr "Препращащи сайтове от"
|
1793 |
+
|
1794 |
+
#: includes/settings/tabs/wps-about.php:36
|
1795 |
+
msgid "Translations"
|
1796 |
+
msgstr "Преводи"
|
1797 |
+
|
1798 |
+
#: includes/log/top-referring.php:4
|
1799 |
+
msgid "To be added soon"
|
1800 |
+
msgstr "Да бъде добавена скоро"
|
1801 |
+
|
1802 |
+
#: includes/log/last-search.php:102 includes/log/last-visitor.php:99
|
1803 |
+
#: includes/log/top-referring.php:78 includes/log/widgets/recent.php:27
|
1804 |
+
#: includes/log/widgets/words.php:32
|
1805 |
+
#: includes/settings/tabs/wps-overview-display.php:33
|
1806 |
+
#: includes/settings/tabs/wps-overview-display.php:71
|
1807 |
+
msgid "Map"
|
1808 |
+
msgstr "Карта"
|
1809 |
+
|
1810 |
+
#: includes/log/last-search.php:139 includes/log/last-visitor.php:132
|
1811 |
+
#: includes/log/top-pages.php:181 includes/log/top-referring.php:132
|
1812 |
+
msgid "Page"
|
1813 |
+
msgstr "Страница"
|
1814 |
+
|
1815 |
+
#: includes/log/last-search.php:139 includes/log/last-visitor.php:132
|
1816 |
+
#: includes/log/top-pages.php:181 includes/log/top-referring.php:132
|
1817 |
+
msgid "From"
|
1818 |
+
msgstr "От"
|
1819 |
+
|
1820 |
+
#: wp-statistics.php:455
|
1821 |
+
msgid "Table plugin does not exist! Please disable and re-enable the plugin."
|
1822 |
+
msgstr ""
|
1823 |
+
"Таблица плъгин не съществува! Моля, деактивирайте и пак Активирайте плъгин."
|
1824 |
|
1825 |
+
#: includes/settings/tabs/wps-general.php:280
|
1826 |
+
#: includes/settings/tabs/wps-general.php:285 schedule.php:161
|
1827 |
+
msgid "Statistical reporting"
|
1828 |
+
msgstr "Статистическата отчетност"
|
1829 |
|
1830 |
+
#: widget.php:14 wp-statistics.php:245
|
1831 |
+
msgid "Statistics"
|
1832 |
+
msgstr "Статистики"
|
1833 |
|
1834 |
+
#: includes/settings/tabs/wps-general.php:369 widget.php:38 widget.php:247
|
1835 |
+
#: wp-statistics.php:310
|
1836 |
+
msgid "User Online"
|
1837 |
+
msgstr "Онлайн потребители"
|
1838 |
|
1839 |
+
#: includes/settings/tabs/wps-general.php:371 widget.php:45 widget.php:250
|
1840 |
+
msgid "Today Visit"
|
1841 |
+
msgstr "Посещения от днес"
|
1842 |
|
1843 |
+
#: includes/settings/tabs/wps-general.php:370 widget.php:52 widget.php:253
|
1844 |
+
msgid "Today Visitor"
|
1845 |
+
msgstr "Днес посетителите"
|
1846 |
|
1847 |
+
#: includes/settings/tabs/wps-general.php:373 widget.php:59
|
1848 |
+
msgid "Yesterday Visit"
|
1849 |
+
msgstr "Вчерашни посещения"
|
1850 |
|
1851 |
+
#: includes/settings/tabs/wps-general.php:372 widget.php:66 widget.php:259
|
1852 |
+
msgid "Yesterday Visitor"
|
1853 |
+
msgstr "Вчера посетител"
|
1854 |
|
1855 |
+
#: widget.php:73 widget.php:262
|
1856 |
+
msgid "Week Visit"
|
1857 |
+
msgstr "Седмични посещения"
|
1858 |
|
1859 |
+
#: widget.php:80 widget.php:265
|
1860 |
+
msgid "Month Visit"
|
1861 |
+
msgstr "Месечни посещения"
|
1862 |
|
1863 |
+
#: widget.php:87 widget.php:268
|
1864 |
+
msgid "Years Visit"
|
1865 |
+
msgstr "Годишни посещения"
|
1866 |
|
1867 |
+
#: includes/settings/tabs/wps-general.php:375 widget.php:94 widget.php:271
|
1868 |
+
msgid "Total Visit"
|
1869 |
+
msgstr "Общо посещения"
|
1870 |
|
1871 |
+
#: includes/settings/tabs/wps-general.php:374 widget.php:101 widget.php:274
|
1872 |
+
msgid "Total Visitor"
|
1873 |
+
msgstr "Общо посетител"
|
1874 |
|
1875 |
+
#: widget.php:123 widget.php:300
|
1876 |
+
msgid "Total Posts"
|
1877 |
+
msgstr "Общо публикации"
|
1878 |
|
1879 |
+
#: widget.php:130 widget.php:303
|
1880 |
+
msgid "Total Pages"
|
1881 |
+
msgstr "Общо страници"
|
1882 |
|
1883 |
+
#: widget.php:137 widget.php:306
|
1884 |
+
msgid "Total Comments"
|
1885 |
+
msgstr "Общо коментари"
|
1886 |
|
1887 |
+
#: widget.php:144 widget.php:309
|
1888 |
+
msgid "Total Spams"
|
1889 |
+
msgstr "Общо спам"
|
|
|
|
|
|
|
1890 |
|
1891 |
+
#: widget.php:151 widget.php:312
|
1892 |
+
msgid "Total Users"
|
1893 |
+
msgstr "Общо потребители"
|
1894 |
|
1895 |
+
#: widget.php:158 widget.php:315
|
1896 |
+
msgid "Average Posts"
|
1897 |
+
msgstr "Средно публикации"
|
1898 |
|
1899 |
+
#: widget.php:165 widget.php:318
|
1900 |
+
msgid "Average Comments"
|
1901 |
+
msgstr "Средно коментари"
|
1902 |
|
1903 |
+
#: widget.php:172 widget.php:321
|
1904 |
+
msgid "Average Users"
|
1905 |
+
msgstr "Средно потребители"
|
1906 |
|
1907 |
+
#: widget.php:179 widget.php:324
|
1908 |
+
msgid "Last Post Date"
|
1909 |
+
msgstr "Последно добавена публикация"
|
1910 |
|
1911 |
+
#: wp-statistics.php:340
|
1912 |
+
msgid "View Stats"
|
1913 |
+
msgstr "Преглед на статистиките"
|
1914 |
|
1915 |
+
#: wp-statistics.php:152 wp-statistics.php:262
|
1916 |
+
msgid "Settings"
|
1917 |
+
msgstr "Настройки"
|
1918 |
|
1919 |
+
#: wp-statistics.php:316
|
1920 |
+
msgid "Today visitor"
|
1921 |
+
msgstr "Днес посетителите"
|
1922 |
|
1923 |
+
#: wp-statistics.php:322
|
1924 |
+
msgid "Today visit"
|
1925 |
+
msgstr "Днес, посетете"
|
1926 |
|
1927 |
+
#: wp-statistics.php:328
|
1928 |
+
msgid "Yesterday visitor"
|
1929 |
+
msgstr "Вчера посетител"
|
1930 |
|
1931 |
+
#: widget.php:256 wp-statistics.php:334
|
1932 |
+
msgid "Yesterday visit"
|
1933 |
+
msgstr "Вчерашни посещения"
|
1934 |
|
1935 |
+
#: wp-statistics.php:444 wp-statistics.php:544 wp-statistics.php:815
|
1936 |
+
msgid "You do not have sufficient permissions to access this page."
|
1937 |
+
msgstr "Нямате права за тази страница"
|
1938 |
|
1939 |
+
#: includes/log/all-browsers.php:23 includes/log/all-browsers.php:106
|
1940 |
+
#: includes/log/all-browsers.php:240 includes/log/exclusions.php:74
|
1941 |
+
#: includes/log/hit-statistics.php:35 includes/log/last-search.php:61
|
1942 |
+
#: includes/log/last-visitor.php:57 includes/log/page-statistics.php:47
|
1943 |
+
#: includes/log/search-statistics.php:35 includes/log/top-pages.php:19
|
1944 |
+
#: includes/log/top-pages.php:131 includes/log/top-referring.php:45
|
1945 |
+
#: includes/log/widgets/about.php:7 includes/log/widgets/browsers.php:7
|
1946 |
+
#: includes/log/widgets/countries.php:9 includes/log/widgets/google.map.php:8
|
1947 |
+
#: includes/log/widgets/hits.php:7 includes/log/widgets/jqv.map.php:8
|
1948 |
+
#: includes/log/widgets/pages.php:11 includes/log/widgets/recent.php:7
|
1949 |
+
#: includes/log/widgets/referring.php:11 includes/log/widgets/search.php:7
|
1950 |
+
#: includes/log/widgets/summary.php:7 includes/log/widgets/words.php:14
|
1951 |
+
msgid "Click to toggle"
|
1952 |
+
msgstr "Щракнете за превключване"
|
1953 |
|
1954 |
+
#: includes/settings/tabs/wps-overview-display.php:24
|
1955 |
+
msgid "Summary Statistics"
|
1956 |
+
msgstr "Обобщена статистика"
|
1957 |
|
1958 |
+
#: includes/log/hit-statistics.php:104 includes/log/widgets/hits.php:74
|
1959 |
+
#: includes/log/widgets/summary.php:19
|
1960 |
+
msgid "Visitor"
|
1961 |
+
msgstr "Посетител"
|
1962 |
|
1963 |
+
#: includes/log/hit-statistics.php:104 includes/log/widgets/hits.php:74
|
1964 |
+
#: includes/log/widgets/summary.php:20
|
1965 |
+
msgid "Visit"
|
1966 |
+
msgstr "Посетете"
|
1967 |
|
1968 |
+
#: includes/log/widgets/summary.php:24 includes/log/widgets/summary.php:69
|
1969 |
+
msgid "Today"
|
1970 |
+
msgstr "Днес"
|
1971 |
|
1972 |
+
#: includes/log/widgets/summary.php:30 includes/log/widgets/summary.php:70
|
1973 |
+
msgid "Yesterday"
|
1974 |
+
msgstr "Вчера"
|
1975 |
|
1976 |
+
#: includes/log/widgets/summary.php:36
|
1977 |
+
msgid "Week"
|
1978 |
+
msgstr "Седмица"
|
1979 |
|
1980 |
+
#: includes/log/widgets/summary.php:42
|
1981 |
+
msgid "Month"
|
1982 |
+
msgstr "Месец"
|
1983 |
|
1984 |
+
#: includes/log/widgets/summary.php:48
|
1985 |
+
msgid "Year"
|
1986 |
+
msgstr "Година"
|
1987 |
|
1988 |
+
#: includes/log/search-statistics.php:112 includes/log/widgets/search.php:81
|
1989 |
+
#: includes/log/widgets/summary.php:54 includes/log/widgets/summary.php:94
|
1990 |
+
msgid "Total"
|
1991 |
+
msgstr "Общо"
|
1992 |
|
1993 |
+
#: includes/log/widgets/summary.php:102
|
1994 |
+
msgid "(Adjustment)"
|
1995 |
+
msgstr "(Корекция)"
|
1996 |
|
1997 |
+
#: includes/log/all-browsers.php:24 includes/log/widgets/browsers.php:8
|
1998 |
+
#: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:249
|
1999 |
+
msgid "Browsers"
|
2000 |
+
msgstr "Браузъри"
|
2001 |
|
2002 |
+
#: includes/log/widgets/browsers.php:38
|
2003 |
+
msgid "Other"
|
2004 |
+
msgstr "Други"
|
|
|
2005 |
|
2006 |
+
#: includes/log/widgets/referring.php:20
|
2007 |
+
msgid "Address"
|
2008 |
+
msgstr "Адрес"
|
2009 |
|
2010 |
+
#: includes/log/hit-statistics.php:90 includes/log/widgets/hits.php:60
|
2011 |
+
msgid "Number of visits and visitors"
|
2012 |
+
msgstr "Броят на посещенията и посетителите"
|
2013 |
|
2014 |
+
#: includes/settings/tabs/wps-overview-display.php:86
|
2015 |
+
msgid "Google"
|
2016 |
+
msgstr "Google"
|
2017 |
|
2018 |
+
#: includes/log/last-visitor.php:27 includes/log/widgets/recent.php:9
|
2019 |
+
#: includes/settings/tabs/wps-overview-display.php:38
|
2020 |
+
msgid "Recent Visitors"
|
2021 |
+
msgstr "Последните посетители"
|
2022 |
+
|
2023 |
+
#: includes/log/top-countries.php:30 includes/log/widgets/countries.php:19
|
2024 |
+
msgid "Country"
|
2025 |
+
msgstr "Страна"
|
2026 |
+
|
2027 |
+
#: includes/settings/tabs/wps-browscap.php:27
|
2028 |
+
#: includes/settings/tabs/wps-browscap.php:51
|
2029 |
+
#: includes/settings/tabs/wps-general.php:66
|
2030 |
+
#: includes/settings/tabs/wps-general.php:82
|
2031 |
+
#: includes/settings/tabs/wps-general.php:110
|
2032 |
+
#: includes/settings/tabs/wps-general.php:126
|
2033 |
+
#: includes/settings/tabs/wps-general.php:138
|
2034 |
+
#: includes/settings/tabs/wps-general.php:165
|
2035 |
+
#: includes/settings/tabs/wps-general.php:177
|
2036 |
+
#: includes/settings/tabs/wps-general.php:189
|
2037 |
+
#: includes/settings/tabs/wps-general.php:219
|
2038 |
+
#: includes/settings/tabs/wps-general.php:231
|
2039 |
+
#: includes/settings/tabs/wps-general.php:274
|
2040 |
+
#: includes/settings/tabs/wps-general.php:290
|
2041 |
+
#: includes/settings/tabs/wps-geoip.php:37
|
2042 |
+
#: includes/settings/tabs/wps-geoip.php:61
|
2043 |
+
#: includes/settings/tabs/wps-geoip.php:94
|
2044 |
+
#: includes/settings/tabs/wps-maintenance.php:40
|
2045 |
+
#: includes/settings/tabs/wps-overview-display.php:105
|
2046 |
+
#: includes/settings/tabs/wps-overview-display.php:117
|
2047 |
+
msgid "Active"
|
2048 |
+
msgstr "Активен"
|
2049 |
+
|
2050 |
+
#: includes/settings/tabs/wps-general.php:83
|
2051 |
+
#: includes/settings/tabs/wps-general.php:111
|
2052 |
+
#: includes/settings/tabs/wps-general.php:127
|
2053 |
+
#: includes/settings/tabs/wps-general.php:166
|
2054 |
+
#: includes/settings/tabs/wps-general.php:178
|
2055 |
+
#: includes/settings/tabs/wps-general.php:190
|
2056 |
+
#: includes/settings/tabs/wps-general.php:291
|
2057 |
+
msgid "Enable or disable this feature"
|
2058 |
+
msgstr "Разрешаване или забраняване на тази функция"
|
2059 |
|
2060 |
+
#: includes/log/top-pages.php:163 includes/log/widgets/pages.php:30
|
2061 |
+
#: includes/settings/tabs/wps-general.php:100
|
2062 |
+
#: includes/settings/tabs/wps-general.php:105
|
2063 |
+
msgid "Visits"
|
2064 |
+
msgstr "Посещения"
|
2065 |
|
2066 |
+
#: includes/settings/tabs/wps-general.php:116
|
2067 |
+
#: includes/settings/tabs/wps-general.php:121 wp-statistics.php:258
|
2068 |
+
msgid "Visitors"
|
2069 |
+
msgstr "Посетители"
|
2070 |
|
2071 |
+
#: includes/settings/tabs/wps-general.php:89
|
2072 |
+
msgid "Check for online users every"
|
2073 |
+
msgstr "Проверявай за онлайн потребители на всеки"
|
2074 |
|
2075 |
+
#: includes/settings/tabs/wps-general.php:95
|
2076 |
+
msgid "Time for the check accurate online user in the site. Now: %s Second"
|
2077 |
+
msgstr "Времето за точна проверка онлайн потребителя в сайта. Сега: %s втори"
|
2078 |
|
2079 |
+
#: includes/settings/tabs/wps-general.php:200
|
2080 |
+
msgid "Show stats in menu bar"
|
2081 |
+
msgstr "Покажи статистиките в менюто"
|
2082 |
|
2083 |
+
#: includes/settings/tabs/wps-general.php:205
|
2084 |
+
msgid "No"
|
2085 |
+
msgstr "Не"
|
2086 |
|
2087 |
+
#: includes/settings/tabs/wps-general.php:206
|
2088 |
+
msgid "Yes"
|
2089 |
+
msgstr "Да"
|
2090 |
|
2091 |
+
#: includes/settings/tabs/wps-general.php:208
|
2092 |
+
msgid "Show stats in admin menu bar"
|
2093 |
+
msgstr "Покажи статистиките в админ менюто"
|
2094 |
|
2095 |
+
#: includes/settings/tabs/wps-general.php:145
|
2096 |
+
msgid "Coefficient per visitor"
|
2097 |
+
msgstr "Коефициент за потребител"
|
2098 |
|
2099 |
+
#: includes/settings/tabs/wps-general.php:150
|
2100 |
+
msgid "For each visit to account for several hits. Currently %s."
|
2101 |
+
msgstr "За всяко посещение на сметка за няколко хитове. В момента %s."
|
2102 |
|
2103 |
+
#: includes/settings/tabs/wps-general.php:322
|
2104 |
+
msgid "Select when receiving statistics report."
|
2105 |
+
msgstr "Изберете при получаване на доклад за статистики."
|
2106 |
|
2107 |
+
#: includes/settings/tabs/wps-general.php:334
|
2108 |
+
msgid "Email"
|
2109 |
+
msgstr "Имейл"
|
2110 |
|
2111 |
+
#: includes/settings/tabs/wps-general.php:335
|
2112 |
+
msgid "SMS"
|
2113 |
+
msgstr "SMS"
|
2114 |
|
2115 |
+
#: includes/settings/tabs/wps-general.php:337
|
2116 |
+
msgid "Type Select Get Status Report."
|
2117 |
+
msgstr "Тип изберете Get отчет за състоянието."
|
2118 |
|
2119 |
+
#: includes/settings/tabs/wps-general.php:363
|
2120 |
+
msgid "Enter the contents of the reports received."
|
2121 |
+
msgstr "Въведете съдържанието на получените отчети."
|
2122 |
|
2123 |
+
#: widget.php:240
|
2124 |
+
msgid "Name"
|
2125 |
+
msgstr "Име"
|
2126 |
|
2127 |
+
#: widget.php:244
|
2128 |
+
msgid "Items"
|
2129 |
+
msgstr "Броя"
|
2130 |
|
2131 |
+
#: widget.php:283
|
2132 |
+
msgid "Select type of search engine"
|
2133 |
+
msgstr "Изберете тип търсачка"
|
2134 |
|
2135 |
+
#: includes/log/last-visitor.php:29 includes/log/top-referring.php:36
|
2136 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:134 widget.php:296
|
2137 |
+
msgid "All"
|
2138 |
+
msgstr "Всички"
|
languages/wp_statistics-bn_BD.mo
CHANGED
Binary file
|
languages/wp_statistics-bn_BD.po
CHANGED
@@ -3,7 +3,7 @@ msgstr ""
|
|
3 |
"Project-Id-Version: wp-statistics\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2013-01-28 19:03+0330\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: en\n"
|
@@ -13,7 +13,7 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: gettext;gettext_noop;_e;__\n"
|
14 |
"X-Poedit-Basepath: F:\\Program Files\\xampp\\htdocs\\wordpress\\wp-content"
|
15 |
"\\plugins\\wp-statistics\n"
|
16 |
-
"X-Generator: Poedit 1.
|
17 |
"X-Poedit-SearchPath-0: F:\\Program Files\\xampp\\htdocs\\wordpress\\wp-"
|
18 |
"content\\plugins\\wp-statistics\n"
|
19 |
|
3 |
"Project-Id-Version: wp-statistics\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2013-01-28 19:03+0330\n"
|
6 |
+
"PO-Revision-Date: 2014-10-14 17:15-0500\n"
|
7 |
"Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: en\n"
|
13 |
"X-Poedit-KeywordsList: gettext;gettext_noop;_e;__\n"
|
14 |
"X-Poedit-Basepath: F:\\Program Files\\xampp\\htdocs\\wordpress\\wp-content"
|
15 |
"\\plugins\\wp-statistics\n"
|
16 |
+
"X-Generator: Poedit 1.6.9\n"
|
17 |
"X-Poedit-SearchPath-0: F:\\Program Files\\xampp\\htdocs\\wordpress\\wp-"
|
18 |
"content\\plugins\\wp-statistics\n"
|
19 |
|
languages/wp_statistics-cs.mo
ADDED
Binary file
|
languages/wp_statistics-cs.po
ADDED
@@ -0,0 +1,2119 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of Wordpress Statistics in Czech
|
2 |
+
# This file is distributed under the same license as the Wordpress Statistics package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"PO-Revision-Date: 2014-10-14 17:15-0500\n"
|
6 |
+
"MIME-Version: 1.0\n"
|
7 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
+
"Content-Transfer-Encoding: 8bit\n"
|
9 |
+
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
10 |
+
"X-Generator: Poedit 1.6.9\n"
|
11 |
+
"Project-Id-Version: Wordpress Statistics\n"
|
12 |
+
"POT-Creation-Date: \n"
|
13 |
+
"Last-Translator: \n"
|
14 |
+
"Language-Team: \n"
|
15 |
+
"Language: cs\n"
|
16 |
+
|
17 |
+
#: includes/log/widgets/about.php:8
|
18 |
+
msgid "About WP Statistics Version %s"
|
19 |
+
msgstr "O WP Statistics Verze %s"
|
20 |
+
|
21 |
+
#: includes/log/widgets/summary.php:106
|
22 |
+
msgid "Date: %s"
|
23 |
+
msgstr "Datum: %s"
|
24 |
+
|
25 |
+
#: includes/log/widgets/summary.php:110
|
26 |
+
msgid "Time: %s"
|
27 |
+
msgstr "Čas: %s"
|
28 |
+
|
29 |
+
#: includes/optimization/delete-agents.php:14
|
30 |
+
msgid "%s agent data deleted successfully."
|
31 |
+
msgstr "%s agenta data úspěšně smazána."
|
32 |
+
|
33 |
+
#: includes/optimization/delete-platforms.php:14
|
34 |
+
msgid "%s platform data deleted successfully."
|
35 |
+
msgstr "údaje platforma %s úspěšně smazána."
|
36 |
+
|
37 |
+
#: includes/optimization/empty.php:53
|
38 |
+
msgid "%s table data deleted successfully."
|
39 |
+
msgstr "data tabulky %s úspěšně smazána."
|
40 |
+
|
41 |
+
#: includes/optimization/purge-data.php:17
|
42 |
+
#: includes/optimization/purge-data.php:27
|
43 |
+
#: includes/optimization/purge-data.php:37
|
44 |
+
#: includes/optimization/purge-data.php:47
|
45 |
+
msgid "%s data older than %s days purged successfully."
|
46 |
+
msgstr "%s data starší než %s dnφ úspěšně vyprázdněna."
|
47 |
+
|
48 |
+
#: includes/optimization/purge-data.php:19
|
49 |
+
#: includes/optimization/purge-data.php:29
|
50 |
+
#: includes/optimization/purge-data.php:39
|
51 |
+
#: includes/optimization/purge-data.php:49
|
52 |
+
msgid "No records found to purge from %s!"
|
53 |
+
msgstr "Žádné záznamy nalezeny očistit od %s!"
|
54 |
+
|
55 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:44
|
56 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:55
|
57 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:66
|
58 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:77
|
59 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:88
|
60 |
+
msgid "Number of rows in the %s table"
|
61 |
+
msgstr "Počet řádků v tabulce %s"
|
62 |
+
|
63 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:211
|
64 |
+
msgid "browscap Cache File"
|
65 |
+
msgstr "Browscap soubor mezipaměti"
|
66 |
+
|
67 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:220
|
68 |
+
msgid "browscap cache file does not exist."
|
69 |
+
msgstr "Browscap cache soubor neexistuje."
|
70 |
+
|
71 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:224
|
72 |
+
msgid "The file size and date of the browscap cache file."
|
73 |
+
msgstr "Velikost souboru a datum tohoto souboru browscap."
|
74 |
+
|
75 |
+
#: includes/settings/tabs/wps-about.php:24
|
76 |
+
msgid ""
|
77 |
+
"Come visit our great new %s and keep up to date on the latest news about WP "
|
78 |
+
"Statistics."
|
79 |
+
msgstr ""
|
80 |
+
"Přijďte navštívit naše skvělé nové %s a aktualizuje na nejnovější zprávy o "
|
81 |
+
"WP Statistics."
|
82 |
+
|
83 |
+
#: includes/settings/tabs/wps-about.php:24
|
84 |
+
msgid "website"
|
85 |
+
msgstr "webové stránky"
|
86 |
+
|
87 |
+
#: includes/settings/tabs/wps-about.php:40
|
88 |
+
msgid ""
|
89 |
+
"WP Statistics supports internationalization and we encourage our users to "
|
90 |
+
"submit translations, please visit our %s to see the current status and %s if "
|
91 |
+
"you would like to help."
|
92 |
+
msgstr ""
|
93 |
+
"WP Statistics podporuje internacionalizaci a doporučujeme našim uživatelům "
|
94 |
+
"odeslat překlady, navštivte prosím naši %s Chcete-li zobrazit aktuální stav "
|
95 |
+
"a %s, pokud byste chtěli pomoci."
|
96 |
+
|
97 |
+
#: includes/settings/tabs/wps-about.php:40
|
98 |
+
msgid "translation collaboration site"
|
99 |
+
msgstr "Web pro spolupráci Překlad"
|
100 |
+
|
101 |
+
#: includes/settings/tabs/wps-about.php:40
|
102 |
+
msgid "drop us a line"
|
103 |
+
msgstr "Podejte nám zprávu"
|
104 |
+
|
105 |
+
#: includes/settings/tabs/wps-about.php:52
|
106 |
+
#: includes/settings/tabs/wps-about.php:53
|
107 |
+
msgid "Have you read the %s?"
|
108 |
+
msgstr "Četli jste %s?"
|
109 |
+
|
110 |
+
#: includes/settings/tabs/wps-about.php:52
|
111 |
+
msgid "FAQs"
|
112 |
+
msgstr "Nejčastější dotazy"
|
113 |
+
|
114 |
+
#: includes/settings/tabs/wps-about.php:53
|
115 |
+
msgid "manual"
|
116 |
+
msgstr "manuál"
|
117 |
+
|
118 |
+
#: includes/settings/tabs/wps-about.php:54
|
119 |
+
msgid "Have you search the %s for a similar issue?"
|
120 |
+
msgstr "Už jste Hledat %s pro podobný problém?"
|
121 |
+
|
122 |
+
#: includes/settings/tabs/wps-about.php:54
|
123 |
+
msgid "support forum"
|
124 |
+
msgstr "fórum podpory"
|
125 |
+
|
126 |
+
#: includes/settings/tabs/wps-about.php:70
|
127 |
+
msgid ""
|
128 |
+
"Then please open a new thread on the %s and we'll respond as soon as "
|
129 |
+
"possible."
|
130 |
+
msgstr "Pak prosím otevřít nové vlákno na %s a odpovíme co nejdříve."
|
131 |
+
|
132 |
+
#: includes/settings/tabs/wps-about.php:70
|
133 |
+
msgid "WordPress.org support forum"
|
134 |
+
msgstr "Fórum podpory WordPress.org"
|
135 |
+
|
136 |
+
#: includes/settings/tabs/wps-about.php:74
|
137 |
+
msgid "Alternatively %s support is available as well."
|
138 |
+
msgstr "Další možností %s podpora je k dispozici také."
|
139 |
+
|
140 |
+
#: includes/settings/tabs/wps-access-level.php:85
|
141 |
+
msgid "See the %s for details on capability levels."
|
142 |
+
msgstr "Viz %s další informace o úrovních schopností."
|
143 |
+
|
144 |
+
#: includes/settings/tabs/wps-access-level.php:85
|
145 |
+
msgid "WordPress Roles and Capabilities page"
|
146 |
+
msgstr "Stránky WordPress rolí a funkcí"
|
147 |
+
|
148 |
+
#: includes/settings/tabs/wps-general.php:67
|
149 |
+
msgid ""
|
150 |
+
"This feature will not store IP addresses in the database but instead used a "
|
151 |
+
"unique hash. The \"Store entire user agent string\" setting will be "
|
152 |
+
"disabled if this is selected. You will not be able to recover the IP "
|
153 |
+
"addresses in the future to recover location information if this is enabled."
|
154 |
+
msgstr ""
|
155 |
+
"Tato funkce nebude ukládat IP adresy do databáze, ale místo toho používá "
|
156 |
+
"jedinečný algoritmus hash. \"Store celé uživatelské agent string\" nastavení "
|
157 |
+
"bude zakázáno, pokud je vybrána tato možnost. Nebude schopen obnovit adresy "
|
158 |
+
"IP v budoucnosti obnovit informace o poloze, pokud je to povoleno."
|
159 |
+
|
160 |
+
#: includes/settings/tabs/wps-general.php:340
|
161 |
+
msgid "Note: To send SMS text messages please install the %s plugin."
|
162 |
+
msgstr ""
|
163 |
+
"Poznámka: Poslat SMS textové zprávy prosím nainstalovat zásuvný modul %s."
|
164 |
+
|
165 |
+
#: includes/settings/tabs/wps-general.php:340
|
166 |
+
msgid "WordPress SMS"
|
167 |
+
msgstr "WordPress SMS"
|
168 |
+
|
169 |
+
#: wp-statistics.php:27
|
170 |
+
msgid ""
|
171 |
+
"ERROR: WP Statistics has detected an unsupported version of PHP, WP "
|
172 |
+
"Statistics will not function without PHP Version "
|
173 |
+
msgstr ""
|
174 |
+
"Chyba: WP Statistics zjistila nepodporovanou verzi PHP, WP Statistics nebude "
|
175 |
+
"fungovat bez verze PHP "
|
176 |
+
|
177 |
+
#: wp-statistics.php:27
|
178 |
+
msgid " or higher!"
|
179 |
+
msgstr "nebo vyšší!"
|
180 |
+
|
181 |
+
#: wp-statistics.php:81
|
182 |
+
msgid ""
|
183 |
+
"Online user tracking in WP Statistics is not enabled, please go to %s and "
|
184 |
+
"enable it."
|
185 |
+
msgstr ""
|
186 |
+
"On-line sledování v WP Statistics uživatelů není povoleno, přejděte na %s a "
|
187 |
+
"umožňují."
|
188 |
+
|
189 |
+
#: wp-statistics.php:81 wp-statistics.php:84 wp-statistics.php:87
|
190 |
+
msgid "setting page"
|
191 |
+
msgstr "nastavení stránky"
|
192 |
+
|
193 |
+
#: wp-statistics.php:84
|
194 |
+
msgid ""
|
195 |
+
"Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
|
196 |
+
msgstr ""
|
197 |
+
"Sledování přístupů v WP Statistics není povoleno, přejděte na %s a umožňují."
|
198 |
+
|
199 |
+
#: wp-statistics.php:87
|
200 |
+
msgid ""
|
201 |
+
"Visitor tracking in WP Statistics is not enabled, please go to %s and enable "
|
202 |
+
"it."
|
203 |
+
msgstr ""
|
204 |
+
"Návštěvník v WP Statistics sledování není povoleno, přejděte na %s a "
|
205 |
+
"umožňují."
|
206 |
+
|
207 |
+
#: wp-statistics.php:90
|
208 |
+
msgid ""
|
209 |
+
"GeoIP collection is not active, please go to %s and enable this feature."
|
210 |
+
msgstr "GeoIP kolekce není aktivní, přejděte na %s a tuto funkci povolit."
|
211 |
+
|
212 |
+
#: wp-statistics.php:90
|
213 |
+
msgid "Setting page > GeoIP"
|
214 |
+
msgstr "Nastavení stránky > GeoIP"
|
215 |
+
|
216 |
+
msgid "http://wp-statistics.com/"
|
217 |
+
msgstr "http://WP-STATISTICS.com/"
|
218 |
+
|
219 |
+
msgid "Mostafa Soufi & Greg Ross"
|
220 |
+
msgstr "Mostafa Lucie & Greg Ross"
|
221 |
+
|
222 |
+
#: includes/settings/wps-settings.php:90
|
223 |
+
msgid "browscap"
|
224 |
+
msgstr "Browscap"
|
225 |
+
|
226 |
+
#: wp-statistics.php:706
|
227 |
+
msgid "Error downloading browscap database from: %s - %s"
|
228 |
+
msgstr "Chyba při stahování browscap databáze od: %s - %s"
|
229 |
+
|
230 |
+
#: wp-statistics.php:794
|
231 |
+
msgid "browscap database updated successfully!"
|
232 |
+
msgstr "Browscap databáze úspěšně aktualizován!"
|
233 |
+
|
234 |
+
#: wp-statistics.php:802
|
235 |
+
msgid "browscap already at current version!"
|
236 |
+
msgstr "Browscap již v aktuální verzi!"
|
237 |
+
|
238 |
+
#: includes/optimization/tabs/wps-optimization-database.php:5
|
239 |
+
msgid "Database Setup"
|
240 |
+
msgstr "Nastavení databáze"
|
241 |
+
|
242 |
+
#: includes/optimization/tabs/wps-optimization-database.php:10
|
243 |
+
msgid "Re-run Install"
|
244 |
+
msgstr "Spusťte znovu instalaci"
|
245 |
+
|
246 |
+
#: includes/optimization/tabs/wps-optimization-database.php:14
|
247 |
+
msgid "Install Now!"
|
248 |
+
msgstr "Nainstalujte nyní!"
|
249 |
+
|
250 |
+
#: includes/optimization/tabs/wps-optimization-database.php:15
|
251 |
+
msgid ""
|
252 |
+
"If for some reason your installation of WP Statistics is missing the "
|
253 |
+
"database tables or other core items, this will re-execute the install "
|
254 |
+
"process."
|
255 |
+
msgstr ""
|
256 |
+
"Pokud z nějakého důvodu instalace WP Statistics chybí, databázové tabulky "
|
257 |
+
"nebo jiné položky jádro, to bude znovu provést instalačního procesu."
|
258 |
+
|
259 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:163
|
260 |
+
msgid ""
|
261 |
+
"If the PHP BC Math Extension is installed. BC Math is no longer required "
|
262 |
+
"for the GeoIP code and is listed here only for historical reasons."
|
263 |
+
msgstr ""
|
264 |
+
"Pokud je nainstalováno rozšíření PHP BC Math. BCMath již není zapotřebí pro "
|
265 |
+
"kód GeoIP a je zde uveden pouze z historických důvodů."
|
266 |
+
|
267 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:168
|
268 |
+
msgid "File Info"
|
269 |
+
msgstr "Informace o souboru"
|
270 |
+
|
271 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:173
|
272 |
+
msgid "GeoIP Database"
|
273 |
+
msgstr "GeoIP databáze"
|
274 |
+
|
275 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:184
|
276 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:203
|
277 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:222
|
278 |
+
msgid ", created on "
|
279 |
+
msgstr ", na "
|
280 |
+
|
281 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:186
|
282 |
+
msgid "The file size and date of the GeoIP database."
|
283 |
+
msgstr "Velikost souboru a datum GeoIP databáze."
|
284 |
+
|
285 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:192
|
286 |
+
msgid "browscap.ini File"
|
287 |
+
msgstr "Soubor Browscap.ini"
|
288 |
+
|
289 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:201
|
290 |
+
msgid "browscap.ini file does not exist."
|
291 |
+
msgstr "Soubor Browscap.ini neexistuje."
|
292 |
+
|
293 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:205
|
294 |
+
msgid "The file size and date of the browscap.ini file."
|
295 |
+
msgstr "Velikost souboru a datum souboru browscap.ini."
|
296 |
+
|
297 |
+
#: includes/optimization/wps-optimization.php:51
|
298 |
+
msgid "Install routine complete."
|
299 |
+
msgstr "Instalujte kompletní rutina."
|
300 |
+
|
301 |
+
#: includes/settings/tabs/wps-browscap.php:17
|
302 |
+
msgid "browscap settings"
|
303 |
+
msgstr "Browscap nastavení"
|
304 |
+
|
305 |
+
#: includes/settings/tabs/wps-browscap.php:22
|
306 |
+
msgid "browscap usage"
|
307 |
+
msgstr "Browscap využití"
|
308 |
+
|
309 |
+
#: includes/settings/tabs/wps-browscap.php:28
|
310 |
+
msgid "The browscap database will be downloaded and used to detect robots."
|
311 |
+
msgstr "Browscap databáze bude stáhnout a slouží k detekci roboty."
|
312 |
+
|
313 |
+
#: includes/settings/tabs/wps-browscap.php:34
|
314 |
+
msgid "Update browscap Info"
|
315 |
+
msgstr "Aktualizovat browscap Info"
|
316 |
+
|
317 |
+
#: includes/settings/tabs/wps-browscap.php:39
|
318 |
+
msgid "Download browscap Database"
|
319 |
+
msgstr "Stáhnout browscap databáze"
|
320 |
+
|
321 |
+
#: includes/settings/tabs/wps-browscap.php:46
|
322 |
+
msgid "Schedule weekly update of browscap DB"
|
323 |
+
msgstr "Rozvrh týdenní aktualizace browscap DB"
|
324 |
+
|
325 |
+
#: includes/settings/tabs/wps-browscap.php:69
|
326 |
+
msgid "Download of the browscap database will be scheduled for once a week."
|
327 |
+
msgstr "Ke stažení browscap databáze bude naplánován pro jednou za týden."
|
328 |
+
|
329 |
+
#: includes/optimization/tabs/wps-optimization-database.php:40
|
330 |
+
msgid ""
|
331 |
+
"Older installs of WP Statistics allow for duplicate entries in the visitors "
|
332 |
+
"table in a corner case. Newer installs protect against this with a unique "
|
333 |
+
"index on the table. To create the index on the older installs duplicate "
|
334 |
+
"entries must be deleted first. Clicking \"Update Now\" will scan the "
|
335 |
+
"vistitors table, delete duplicate entries and add the index."
|
336 |
+
msgstr ""
|
337 |
+
"Starší instalace WP Statistics umožňují Duplicitní položky v tabulce "
|
338 |
+
"návštěvníků v případě rohové. Novější instalace se proti tomu bránit s "
|
339 |
+
"jedinečný index v tabulce. Chcete-li vytvořit index na starší instaluje "
|
340 |
+
"duplicitní položky musí být odstraněny jako první. Klepnutím na \"Update Now"
|
341 |
+
"\" prohledá tabulku vistitors, odstranit duplicitní položky a přidat indexu."
|
342 |
+
|
343 |
+
#: includes/optimization/tabs/wps-optimization-database.php:46
|
344 |
+
msgid ""
|
345 |
+
"Older installs of WP Statistics allow for duplicate entries in the visitors "
|
346 |
+
"table in a corner case. Newer installs protect against this with a unique "
|
347 |
+
"index on the table."
|
348 |
+
msgstr ""
|
349 |
+
"Starší instalace WP Statistics umožňují Duplicitní položky v tabulce "
|
350 |
+
"návštěvníků v případě rohové. Novější instalace se proti tomu bránit s "
|
351 |
+
"jedinečný index v tabulce."
|
352 |
+
|
353 |
+
#: includes/optimization/tabs/wps-optimization-database.php:47
|
354 |
+
msgid ""
|
355 |
+
"Congratulations, your installation is already up to date, nothing to do."
|
356 |
+
msgstr "Gratulujeme vaše instalace je již datum, nic společného."
|
357 |
+
|
358 |
+
#: includes/settings/tabs/wps-about.php:55
|
359 |
+
msgid "Have you search the Internet for any error messages you are receiving?"
|
360 |
+
msgstr ""
|
361 |
+
"Už jste Hledat na internetu pro všechny chybové zprávy, které obdržíte?"
|
362 |
+
|
363 |
+
#: includes/settings/tabs/wps-about.php:66
|
364 |
+
msgid ""
|
365 |
+
"Are you getting a blank or incomplete page displayed in your browser? Did "
|
366 |
+
"you view the source for the page and check for any fatal errors?"
|
367 |
+
msgstr ""
|
368 |
+
"Dostáváš prázdné nebo neúplné stránky zobrazené v prohlížeči? Jste zobrazit "
|
369 |
+
"zdroj jazyk pro stránku a zkontrolujte případné závažné chyby?"
|
370 |
+
|
371 |
+
#: includes/settings/tabs/wps-about.php:67
|
372 |
+
msgid "Have you checked your PHP and web server error logs?"
|
373 |
+
msgstr "Zkontrolovali jste protokolů chyb serveru PHP a web?"
|
374 |
+
|
375 |
+
#: widget.php:15
|
376 |
+
msgid "Show site stats in sidebar."
|
377 |
+
msgstr "Zobrazit statistiky stránek v postranním panelu."
|
378 |
+
|
379 |
+
#: includes/log/last-search.php:97 includes/log/last-visitor.php:94
|
380 |
+
#: includes/log/widgets/google.map.php:65 includes/log/widgets/jqv.map.php:59
|
381 |
+
#: includes/log/widgets/recent.php:22 includes/log/widgets/words.php:25
|
382 |
+
msgid "#hash#"
|
383 |
+
msgstr "#hash #"
|
384 |
+
|
385 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:4
|
386 |
+
msgid ""
|
387 |
+
"This will replace all IP addresses in the database with hash values and "
|
388 |
+
"cannot be undo, are you sure?"
|
389 |
+
msgstr ""
|
390 |
+
"To nahradí všechny IP adresy v databázi hodnoty hash a nemůže být zpět, jste "
|
391 |
+
"si jisti?"
|
392 |
+
|
393 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:26
|
394 |
+
msgid ""
|
395 |
+
"Updates any unknown location data in the database, this may take a while"
|
396 |
+
msgstr ""
|
397 |
+
"Aktualizuje všechny neznámé lokalizační údaje v databázi, to může chvíli "
|
398 |
+
"trvat"
|
399 |
+
|
400 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:31
|
401 |
+
#: includes/settings/tabs/wps-general.php:56
|
402 |
+
msgid "IP Addresses"
|
403 |
+
msgstr "Adresy IP"
|
404 |
+
|
405 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:36
|
406 |
+
#: includes/settings/tabs/wps-general.php:61
|
407 |
+
msgid "Hash IP Addresses"
|
408 |
+
msgstr "Algoritmus hash IP adresy"
|
409 |
+
|
410 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:41
|
411 |
+
msgid ""
|
412 |
+
"Replace IP addresses in the database with hash values, you will not be able "
|
413 |
+
"to recover the IP addresses in the future to populate location information "
|
414 |
+
"afterwards and this may take a while"
|
415 |
+
msgstr ""
|
416 |
+
"Nahradit hodnoty hash, adresy IP v databázi nebude možné obnovit adresy IP v "
|
417 |
+
"budoucnu k vyplnění informací o umístění později a to může chvíli trvat"
|
418 |
+
|
419 |
+
#: includes/optimization/wps-optimization.php:43
|
420 |
+
msgid "IP Addresses replaced with hash values."
|
421 |
+
msgstr "IP adresy nahrazeny hodnoty hash."
|
422 |
+
|
423 |
+
#: includes/settings/tabs/wps-access-level.php:149
|
424 |
+
msgid "Force robot list update after upgrades"
|
425 |
+
msgstr "Vynutit robota seznamu aktualizaci po inovaci"
|
426 |
+
|
427 |
+
#: includes/settings/tabs/wps-access-level.php:152
|
428 |
+
msgid ""
|
429 |
+
"Force the robot list to be reset to the default after an update to WP "
|
430 |
+
"Statistics takes place. Note if this option is enabled any custom robots "
|
431 |
+
"you have added to the list will be lost."
|
432 |
+
msgstr ""
|
433 |
+
"Platnost seznamu robota tak, aby obnovit na výchozí po aktualizaci "
|
434 |
+
"statistiky WP se koná. Poznámka: je-li tato možnost povolena, žádné vlastní "
|
435 |
+
"roboty, které jste přidali do seznamu budou ztraceny."
|
436 |
+
|
437 |
+
#: includes/settings/tabs/wps-general.php:40
|
438 |
+
msgid "This will delete the manual when you save the settings, are you sure?"
|
439 |
+
msgstr "To odstraní ruční, když uložíte nastavení, jste si jisti?"
|
440 |
+
|
441 |
+
#: includes/settings/tabs/wps-general.php:220
|
442 |
+
msgid ""
|
443 |
+
"By default WP Statistics displays an alert if any of the core features are "
|
444 |
+
"disabled on every admin page, this option will disable these notices."
|
445 |
+
msgstr ""
|
446 |
+
"Ve výchozím nastavení WP Statistics zobrazí výstrahu, pokud některý ze "
|
447 |
+
"základních funkcí jsou zakázány na každé stránce správce, tato možnost "
|
448 |
+
"zakáže tato oznámení."
|
449 |
+
|
450 |
+
#: includes/settings/tabs/wps-general.php:226
|
451 |
+
msgid "Delete the manual"
|
452 |
+
msgstr "Odstranit manuál"
|
453 |
+
|
454 |
+
#: includes/settings/tabs/wps-general.php:232
|
455 |
+
msgid ""
|
456 |
+
"By default WP Statistics stores the admin manual in the plugin directory (~5 "
|
457 |
+
"meg), if this option is enabled it will be deleted now and during upgrades "
|
458 |
+
"in the future."
|
459 |
+
msgstr ""
|
460 |
+
"Ve výchozím nastavení ukládá statistiky WP admin ruční v adresáři plugin (~ "
|
461 |
+
"5 meg), je-li tato možnost povolena, bude odstraněn dnes a během upgrade v "
|
462 |
+
"budoucnu."
|
463 |
+
|
464 |
+
#: includes/optimization/tabs/wps-optimization-database.php:20
|
465 |
+
msgid "Database Index"
|
466 |
+
msgstr "Databáze Index"
|
467 |
+
|
468 |
+
#: includes/optimization/tabs/wps-optimization-database.php:41
|
469 |
+
msgid ""
|
470 |
+
"This operation could take a long time on installs with many rows in the "
|
471 |
+
"visitors table."
|
472 |
+
msgstr ""
|
473 |
+
"Tato operace může trvat dlouhou dobu na nainstaluje s mnoha řádků v tabulce "
|
474 |
+
"návštěvníků."
|
475 |
+
|
476 |
+
#: includes/optimization/wps-optimization.php:129
|
477 |
+
msgid "Database"
|
478 |
+
msgstr "Databáze"
|
479 |
+
|
480 |
+
#: includes/settings/tabs/wps-general.php:298
|
481 |
+
msgid "Schedule"
|
482 |
+
msgstr "Plán"
|
483 |
+
|
484 |
+
#: includes/settings/tabs/wps-general.php:328
|
485 |
+
msgid "Send reports via"
|
486 |
+
msgstr "Zaslat reporty via"
|
487 |
+
|
488 |
+
#: includes/settings/tabs/wps-general.php:347
|
489 |
+
msgid "E-mail addresses"
|
490 |
+
msgstr "E-mail adresy"
|
491 |
+
|
492 |
+
#: includes/settings/tabs/wps-general.php:352
|
493 |
+
msgid ""
|
494 |
+
"A comma separated list of e-mail addresses to send the reports to if e-mail "
|
495 |
+
"is selected above."
|
496 |
+
msgstr ""
|
497 |
+
"Čárkami oddělený seznam e-mailových adres k odesílání zpráv, pokud je výše "
|
498 |
+
"vybrané e-mailové."
|
499 |
+
|
500 |
+
#: includes/settings/tabs/wps-general.php:358
|
501 |
+
msgid "Report body"
|
502 |
+
msgstr "Tělo reportu"
|
503 |
+
|
504 |
+
#: includes/settings/tabs/wps-overview-display.php:75
|
505 |
+
msgid "The following three items are global to all users."
|
506 |
+
msgstr "Násleedující tři položky jsou globální pro všechny uživatele."
|
507 |
+
|
508 |
+
#: includes/settings/tabs/wps-overview-display.php:80
|
509 |
+
msgid "Map type"
|
510 |
+
msgstr "Typ mapy"
|
511 |
+
|
512 |
+
#: includes/settings/tabs/wps-overview-display.php:86
|
513 |
+
msgid "JQVMap"
|
514 |
+
msgstr "JQVMap"
|
515 |
+
|
516 |
+
#: includes/settings/tabs/wps-overview-display.php:93
|
517 |
+
msgid ""
|
518 |
+
"The \"Google\" option will use Google's mapping service to plot the recent "
|
519 |
+
"visitors (requires access to Google)."
|
520 |
+
msgstr ""
|
521 |
+
"Zvolením \"Google\" bude použity mapové službý Google pro vykreslení návštěv "
|
522 |
+
"(požaduje přístup na Google(. "
|
523 |
+
|
524 |
+
#: includes/settings/tabs/wps-overview-display.php:94
|
525 |
+
msgid ""
|
526 |
+
"The \"JQVMap\" option will use JQVMap javascript mapping library to plot the "
|
527 |
+
"recent visitors (requires no extenral services)."
|
528 |
+
msgstr ""
|
529 |
+
" \"JQVMap\" volba použije JQVMap javascript mapovou knihovnu k vykreslení "
|
530 |
+
"návštěv (vyžaduje externí služby)."
|
531 |
+
|
532 |
+
#: includes/settings/tabs/wps-overview-display.php:118
|
533 |
+
msgid ""
|
534 |
+
"This feature may cause a performance degradation when viewing statistics and "
|
535 |
+
"is only valid if the map type is set to \"Google\"."
|
536 |
+
msgstr ""
|
537 |
+
"Tato funkce může způsobit snížení výkonu při prohlížení statistiky a je "
|
538 |
+
"platná pouze pokud typ mapy je nastavena na \"Google\"."
|
539 |
+
|
540 |
+
#: includes/log/all-browsers.php:50
|
541 |
+
msgid "Browsers by type"
|
542 |
+
msgstr "Prohlížeče podle typu"
|
543 |
+
|
544 |
+
#: includes/log/all-browsers.php:133
|
545 |
+
msgid "Browsers by platform"
|
546 |
+
msgstr "Platforma prohlížečů"
|
547 |
+
|
548 |
+
#: includes/log/exclusions.php:97
|
549 |
+
msgid "Excluded hits in the last"
|
550 |
+
msgstr "Vyloučené hity v posledních"
|
551 |
+
|
552 |
+
#: includes/log/hit-statistics.php:36
|
553 |
+
msgid "Hits Statistics Chart"
|
554 |
+
msgstr "Graf statistiky přístupů"
|
555 |
+
|
556 |
+
#: includes/log/hit-statistics.php:69 includes/log/widgets/hits.php:39
|
557 |
+
msgid "Hits in the last"
|
558 |
+
msgstr "Hity v posledních"
|
559 |
+
|
560 |
+
#: includes/log/last-search.php:30 includes/log/widgets/words.php:16
|
561 |
+
#: includes/settings/tabs/wps-overview-display.php:36
|
562 |
+
msgid "Latest Search Words"
|
563 |
+
msgstr "Poslední vyhledávaný slova"
|
564 |
+
|
565 |
+
#: includes/log/last-search.php:62
|
566 |
+
msgid "Latest Search Word Statistics"
|
567 |
+
msgstr "Stastiky posledně vyhledávaných slov"
|
568 |
+
|
569 |
+
#: includes/log/last-visitor.php:61
|
570 |
+
msgid "Recent Visitor Statistics"
|
571 |
+
msgstr "Nedávné statistiky návštěvnosti"
|
572 |
+
|
573 |
+
#: includes/log/widgets/google.map.php:9 includes/log/widgets/jqv.map.php:9
|
574 |
+
msgid "Today Visitors Map"
|
575 |
+
msgstr "Dnešní mapa návštšvníků"
|
576 |
+
|
577 |
+
#: includes/log/widgets/summary.php:8
|
578 |
+
msgid "Summary"
|
579 |
+
msgstr "Souhrn"
|
580 |
+
|
581 |
+
#: includes/log/widgets/summary.php:13
|
582 |
+
msgid "User(s) Online"
|
583 |
+
msgstr "Online uživatelé"
|
584 |
+
|
585 |
+
#: includes/log/widgets/browsers.php:45
|
586 |
+
msgid "Top 10 Browsers"
|
587 |
+
msgstr "Top 10 Prohlížečů"
|
588 |
+
|
589 |
+
#: includes/log/top-referring.php:34 includes/log/top-referring.php:49
|
590 |
+
#: includes/log/widgets/referring.php:13
|
591 |
+
#: includes/settings/tabs/wps-overview-display.php:26
|
592 |
+
msgid "Top Referring Sites"
|
593 |
+
msgstr "Nejlepší odkazující stránky"
|
594 |
+
|
595 |
+
#: includes/log/widgets/about.php:16
|
596 |
+
msgid "Rate and Review"
|
597 |
+
msgstr "Hodnotit a recenzovat"
|
598 |
+
|
599 |
+
#: includes/log/widgets/about.php:20
|
600 |
+
msgid "More Information"
|
601 |
+
msgstr "Více informací"
|
602 |
+
|
603 |
+
#: includes/log/widgets/about.php:29 includes/settings/tabs/wps-about.php:12
|
604 |
+
msgid ""
|
605 |
+
"This product includes GeoLite2 data created by MaxMind, available from %s."
|
606 |
+
msgstr ""
|
607 |
+
"Tento produkt obsahuje GeoLite2 data vytvořená MaxMind, k dispozici od %s."
|
608 |
+
|
609 |
+
#: includes/log/search-statistics.php:77 includes/log/widgets/search.php:46
|
610 |
+
msgid "Search engine referrals in the last"
|
611 |
+
msgstr "Vyhledávací stroj doporučení v posledních"
|
612 |
+
|
613 |
+
#: includes/log/search-statistics.php:98 includes/log/widgets/search.php:67
|
614 |
+
msgid "Number of referrals"
|
615 |
+
msgstr "Počet odkazů"
|
616 |
+
|
617 |
+
#: includes/log/widgets/pages.php:13
|
618 |
+
msgid "Top 10 Pages"
|
619 |
+
msgstr "Top 10 stránek"
|
620 |
+
|
621 |
+
#: includes/log/search-statistics.php:17 includes/log/search-statistics.php:36
|
622 |
+
msgid "Search Engine Referral Statistics"
|
623 |
+
msgstr "Vyhledávací Engine referenční Statistika"
|
624 |
+
|
625 |
+
#: includes/settings/tabs/wps-about.php:8
|
626 |
+
msgid "WP Statistics V%s"
|
627 |
+
msgstr "WP Statistiky V%s"
|
628 |
+
|
629 |
+
#: includes/settings/tabs/wps-about.php:20
|
630 |
+
msgid "Visit Us Online"
|
631 |
+
msgstr "Navštivte nás Online"
|
632 |
+
|
633 |
+
#: includes/settings/tabs/wps-about.php:28
|
634 |
+
msgid "Rate and Review at WordPress.org"
|
635 |
+
msgstr "Ohodnoť a prohlédni WordPress.org"
|
636 |
+
|
637 |
+
#: includes/settings/tabs/wps-about.php:32
|
638 |
+
msgid "Thanks for installing WP Statistics, we encourage you to submit a "
|
639 |
+
msgstr "Děkujeme za instalaci WP Stastiky, doporučujeme ti zaslat"
|
640 |
+
|
641 |
+
#: includes/settings/tabs/wps-about.php:32
|
642 |
+
msgid "rating and review"
|
643 |
+
msgstr "Hodnocení a recenze"
|
644 |
+
|
645 |
+
#: includes/settings/tabs/wps-about.php:32
|
646 |
+
msgid "over at WordPress.org. Your feedback is greatly appreciated!"
|
647 |
+
msgstr "více než na WordPress.org. Vaše zpětná vazba je velmi ceněn!"
|
648 |
+
|
649 |
+
#: includes/settings/tabs/wps-about.php:49
|
650 |
+
msgid ""
|
651 |
+
"We're sorry you're having problem with WP Statistics and we're happy to help "
|
652 |
+
"out. Here are a few things to do before contacting us:"
|
653 |
+
msgstr ""
|
654 |
+
"Omlouváme se, máte problémy s WP Statistics a my jsme rádi pomohli. Zde je "
|
655 |
+
"pár věci na práci než se obrátíte na nás:"
|
656 |
+
|
657 |
+
#: includes/settings/tabs/wps-about.php:58
|
658 |
+
msgid "And a few things to double-check:"
|
659 |
+
msgstr "A pár věcí na dvakrát:"
|
660 |
+
|
661 |
+
#: includes/settings/tabs/wps-about.php:61
|
662 |
+
msgid "How's your memory_limit in php.ini?"
|
663 |
+
msgstr "Jak máš nastaven memory_limit v php.ini?"
|
664 |
+
|
665 |
+
#: includes/settings/tabs/wps-about.php:62
|
666 |
+
msgid "Have you tried disabling any other plugins you may have installed?"
|
667 |
+
msgstr "Už jste vyzkoušeli, zakázání jiné pluginy, které jste nainstalovali?"
|
668 |
+
|
669 |
+
#: includes/settings/tabs/wps-about.php:63
|
670 |
+
msgid "Have you tried using the default WordPress theme?"
|
671 |
+
msgstr "Už jste vyzkoušeli pomocí výchozí WordPress téma?"
|
672 |
+
|
673 |
+
#: includes/settings/tabs/wps-about.php:64
|
674 |
+
msgid "Have you double checked the plugin settings?"
|
675 |
+
msgstr "Zkontrolovali jste dvojí nastavení pluginu?"
|
676 |
+
|
677 |
+
#: includes/settings/tabs/wps-about.php:65
|
678 |
+
msgid "Do you have all the required PHP extensions installed?"
|
679 |
+
msgstr "Máte instalované všechny vyžadované PHP rozšíření?"
|
680 |
+
|
681 |
+
#: includes/settings/tabs/wps-about.php:70
|
682 |
+
msgid "Still not having any luck?"
|
683 |
+
msgstr "Ještě nemají žádné štěstí?"
|
684 |
+
|
685 |
+
#: includes/optimization/tabs/wps-optimization-export.php:17
|
686 |
+
#: includes/optimization/tabs/wps-optimization-export.php:35
|
687 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:128
|
688 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:169
|
689 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:193
|
690 |
+
#: includes/settings/tabs/wps-general.php:303
|
691 |
+
#: includes/settings/tabs/wps-general.php:333
|
692 |
+
msgid "Please select"
|
693 |
+
msgstr "Prosím vyber"
|
694 |
+
|
695 |
+
#: includes/settings/tabs/wps-general.php:365
|
696 |
+
msgid ""
|
697 |
+
"Any shortcode supported by your installation of WordPress, include all "
|
698 |
+
"shortcodes for WP Statistics (see the admin manual for a list of codes "
|
699 |
+
"available) are supported in the body of the message."
|
700 |
+
msgstr ""
|
701 |
+
"Nějaký nedostatek, podporované instalace WordPress, zahrnout všechny "
|
702 |
+
"shortcodes pro WP Statistics (viz příručka správce seznam kódů, které jsou k "
|
703 |
+
"dispozici) jsou podporovány v těle zprávy."
|
704 |
+
|
705 |
+
#: includes/settings/tabs/wps-general.php:368
|
706 |
+
msgid ""
|
707 |
+
"Input data codes are now deprecated and will be removed in a future version "
|
708 |
+
"of WP Statistics, please use the appropriate shortcodes, they are included "
|
709 |
+
"here only for historical purposes:"
|
710 |
+
msgstr ""
|
711 |
+
"Vstupní data kódy jsou nyní zastaralé a budou odstraněny v budoucí verzi WP "
|
712 |
+
"Statistics, použijte odpovídající shortcodes, jsou zde zahrnuty pouze pro "
|
713 |
+
"historické účely:"
|
714 |
+
|
715 |
+
#: includes/settings/tabs/wps-geoip.php:22
|
716 |
+
msgid ""
|
717 |
+
"IP location services provided by GeoLite2 data created by MaxMind, available "
|
718 |
+
"from %s."
|
719 |
+
msgstr ""
|
720 |
+
"IP umístění služby poskytované GeoLite2 data vytvořená MaxMind, k dispozici "
|
721 |
+
"od %s."
|
722 |
+
|
723 |
+
#: includes/settings/tabs/wps-overview-display.php:23
|
724 |
+
#: includes/settings/tabs/wps-overview-display.php:32
|
725 |
+
msgid "None"
|
726 |
+
msgstr "Žádný"
|
727 |
+
|
728 |
+
#: includes/settings/tabs/wps-overview-display.php:28
|
729 |
+
#: includes/settings/wps-settings.php:92
|
730 |
+
msgid "About"
|
731 |
+
msgstr "O"
|
732 |
+
|
733 |
+
#: includes/settings/tabs/wps-overview-display.php:123
|
734 |
+
msgid "Widgets to Display"
|
735 |
+
msgstr "Widgety k zobrazení"
|
736 |
+
|
737 |
+
#: includes/settings/tabs/wps-overview-display.php:132
|
738 |
+
msgid ""
|
739 |
+
"The following items are unique to each user. If you do not select the "
|
740 |
+
"'About' widget it will automatically be displayed in the last positon of "
|
741 |
+
"column A."
|
742 |
+
msgstr ""
|
743 |
+
"Následující položky jsou jedinečné pro každého uživatele. Pokud nezaškrtnete "
|
744 |
+
"políčko \"O mně\" widget bude automaticky zobrazen v poslední pozici sloupce "
|
745 |
+
"A."
|
746 |
+
|
747 |
+
#: includes/settings/tabs/wps-overview-display.php:137
|
748 |
+
msgid "Slot"
|
749 |
+
msgstr "Slot"
|
750 |
+
|
751 |
+
#: includes/settings/tabs/wps-overview-display.php:141
|
752 |
+
msgid "Column A"
|
753 |
+
msgstr "Sloupec A"
|
754 |
+
|
755 |
+
#: includes/settings/tabs/wps-overview-display.php:145
|
756 |
+
msgid "Column B"
|
757 |
+
msgstr "Sloupec B"
|
758 |
+
|
759 |
+
#: includes/settings/tabs/wps-overview-display.php:151
|
760 |
+
msgid "Slot 1"
|
761 |
+
msgstr "Slot 1"
|
762 |
+
|
763 |
+
#: includes/settings/tabs/wps-overview-display.php:181
|
764 |
+
msgid "Slot 2"
|
765 |
+
msgstr "Slot 2"
|
766 |
+
|
767 |
+
#: includes/settings/tabs/wps-overview-display.php:211
|
768 |
+
msgid "Slot 3"
|
769 |
+
msgstr "Slot 3"
|
770 |
+
|
771 |
+
#: includes/settings/tabs/wps-overview-display.php:241
|
772 |
+
msgid "Slot 4"
|
773 |
+
msgstr "Slot 4"
|
774 |
+
|
775 |
+
#: includes/settings/tabs/wps-overview-display.php:271
|
776 |
+
msgid "Slot 5"
|
777 |
+
msgstr "Slot 5"
|
778 |
+
|
779 |
+
#: includes/settings/tabs/wps-overview-display.php:301
|
780 |
+
msgid "Slot 6"
|
781 |
+
msgstr "Slot 6"
|
782 |
+
|
783 |
+
#: includes/settings/tabs/wps-overview-display.php:305
|
784 |
+
msgid "N/A"
|
785 |
+
msgstr "N/A"
|
786 |
+
|
787 |
+
#: widget.php:280
|
788 |
+
msgid "Search Engine Referred"
|
789 |
+
msgstr "Vyhledávač podle"
|
790 |
+
|
791 |
+
#: schedule.php:10
|
792 |
+
msgid "Once Weekly"
|
793 |
+
msgstr "Jednou týdně"
|
794 |
+
|
795 |
+
#: schedule.php:17
|
796 |
+
msgid "Once Every 2 Weeks"
|
797 |
+
msgstr "Jednou za 2 týdny"
|
798 |
+
|
799 |
+
#: schedule.php:24
|
800 |
+
msgid "Once Every 4 Weeks"
|
801 |
+
msgstr "Jednou za 4 týdny"
|
802 |
+
|
803 |
+
#: wp-statistics.php:39
|
804 |
+
msgid "Complete statistics for your WordPress site."
|
805 |
+
msgstr "Kompletní statistiky pro váš web WordPress."
|
806 |
+
|
807 |
+
#: includes/log/widgets/about.php:15
|
808 |
+
msgid "Website"
|
809 |
+
msgstr "Web stránky"
|
810 |
+
|
811 |
+
#: includes/log/top-referring.php:117 includes/log/widgets/referring.php:19
|
812 |
+
msgid "References"
|
813 |
+
msgstr "Odkazy"
|
814 |
+
|
815 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:33
|
816 |
+
msgid "PHP Memory Limit"
|
817 |
+
msgstr "PHP Paměť Limit"
|
818 |
+
|
819 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:38
|
820 |
+
msgid "The memory limit a script is allowed to consume, set in php.ini."
|
821 |
+
msgstr "Limit paměti skriptu je dovoleno konzumovat, v php.ini."
|
822 |
+
|
823 |
+
#: wp-statistics.php:38
|
824 |
+
msgid "WP Statistics"
|
825 |
+
msgstr "WP Statistiky"
|
826 |
+
|
827 |
+
#: wp-statistics.php:164
|
828 |
+
msgid "Visit WordPress.org page"
|
829 |
+
msgstr "Navštivte stránku WordPress.org"
|
830 |
+
|
831 |
+
#: includes/log/page-statistics.php:29
|
832 |
+
msgid "Page Trend for Post ID"
|
833 |
+
msgstr "Stránky Trend pro ID příspěvku"
|
834 |
+
|
835 |
+
#: includes/log/page-statistics.php:48
|
836 |
+
msgid "Page Trend"
|
837 |
+
msgstr "Stránky Trend"
|
838 |
+
|
839 |
+
#: includes/log/page-statistics.php:68
|
840 |
+
msgid "Page Trending Stats"
|
841 |
+
msgstr "Stránky trendy statistiky"
|
842 |
+
|
843 |
+
#: includes/settings/tabs/wps-access-level.php:97
|
844 |
+
msgid "Record exclusions"
|
845 |
+
msgstr "Vyloučení záznamů"
|
846 |
+
|
847 |
+
#: includes/settings/tabs/wps-access-level.php:130
|
848 |
+
msgid "Robot list"
|
849 |
+
msgstr "Seznam robotů"
|
850 |
+
|
851 |
+
#: includes/settings/tabs/wps-access-level.php:157
|
852 |
+
msgid "Excluded IP address list"
|
853 |
+
msgstr "Vyloučené seznam adres IP"
|
854 |
+
|
855 |
+
#: includes/settings/tabs/wps-access-level.php:160
|
856 |
+
msgid ""
|
857 |
+
"A list of IP addresses and subnet masks (one per line) to exclude from "
|
858 |
+
"statistics collection (both 192.168.0.0/24 and 192.168.0.0/255.255.255.0 "
|
859 |
+
"formats are accepted). To specify an IP address only, use a subnet value of "
|
860 |
+
"32 or 255.255.255.255."
|
861 |
+
msgstr ""
|
862 |
+
"Seznam adres IP a podsítě masky (jeden na řádek) vyloučit ze sběru "
|
863 |
+
"statistických údajů (192.168.0.0/24 a 192.168.0.0/255.255.255.0 formáty jsou "
|
864 |
+
"přijímány). Chcete-li určit adresu IP, použijte podsítě hodnotu 32 nebo "
|
865 |
+
"255.255.255.255."
|
866 |
+
|
867 |
+
#: includes/settings/tabs/wps-access-level.php:172
|
868 |
+
msgid "Excluded login page"
|
869 |
+
msgstr "Vyloučené přihlašovací stránka"
|
870 |
+
|
871 |
+
#: includes/settings/tabs/wps-access-level.php:179
|
872 |
+
msgid "Excluded admin pages"
|
873 |
+
msgstr "Vyloučené admin stránky"
|
874 |
+
|
875 |
+
#: includes/settings/tabs/wps-general.php:72
|
876 |
+
msgid "Users Online"
|
877 |
+
msgstr "Uživatelé online"
|
878 |
+
|
879 |
+
#: includes/settings/tabs/wps-general.php:77
|
880 |
+
msgid "User online"
|
881 |
+
msgstr "Uživatel online"
|
882 |
+
|
883 |
+
#: includes/settings/tabs/wps-general.php:172
|
884 |
+
msgid "Track all pages"
|
885 |
+
msgstr "Sledovat všechny stránky"
|
886 |
+
|
887 |
+
#: includes/settings/tabs/wps-general.php:184
|
888 |
+
msgid "Disable hits column in post/pages list"
|
889 |
+
msgstr "Zakázat hity sloupec v seznamu post/stránky"
|
890 |
+
|
891 |
+
#: includes/settings/tabs/wps-general.php:195
|
892 |
+
msgid "Miscellaneous"
|
893 |
+
msgstr "Různé"
|
894 |
+
|
895 |
+
#: wp-statistics.php:164
|
896 |
+
msgid "Click here to visit the plugin on WordPress.org"
|
897 |
+
msgstr "Chcete-li navštívit plugin WordPress.org"
|
898 |
+
|
899 |
+
#: wp-statistics.php:167
|
900 |
+
msgid "Click here to rate and review this plugin on WordPress.org"
|
901 |
+
msgstr "Klikněte zde pro hodnocení a recenzování tento plugin na WordPress.org"
|
902 |
+
|
903 |
+
#: wp-statistics.php:167
|
904 |
+
msgid "Rate this plugin"
|
905 |
+
msgstr "Ohodnoť tento plugin"
|
906 |
+
|
907 |
+
#: wp-statistics.php:211
|
908 |
+
msgid "WP Statistics - Hits"
|
909 |
+
msgstr "WP Statistics - Hits"
|
910 |
+
|
911 |
+
#: wp-statistics.php:599
|
912 |
+
msgid "Error downloading GeoIP database from: %s - %s"
|
913 |
+
msgstr "Chyba při stahování GeoIP databáze od: %s - %s"
|
914 |
+
|
915 |
+
#: widget.php:108 widget.php:277
|
916 |
+
msgid "Total Page Views"
|
917 |
+
msgstr "Celkový počet zobrazení stránky"
|
918 |
+
|
919 |
+
#: includes/settings/tabs/wps-general.php:155
|
920 |
+
#: includes/settings/tabs/wps-general.php:160 wp-statistics.php:259
|
921 |
+
msgid "Pages"
|
922 |
+
msgstr "Stránky"
|
923 |
+
|
924 |
+
#: wp-statistics.php:266
|
925 |
+
msgid "Manual"
|
926 |
+
msgstr "Manuál"
|
927 |
+
|
928 |
+
#: wp-statistics.php:364
|
929 |
+
msgid "Download ODF file"
|
930 |
+
msgstr "Stáhnout soubor ODF"
|
931 |
+
|
932 |
+
#: wp-statistics.php:365
|
933 |
+
msgid "Download HTML file"
|
934 |
+
msgstr "Stáhnout HTML soubor"
|
935 |
+
|
936 |
+
#: wp-statistics.php:369
|
937 |
+
msgid "Manual file not found."
|
938 |
+
msgstr "Ruční soubor nebyl nalezen."
|
939 |
+
|
940 |
+
#: includes/log/exclusions.php:54
|
941 |
+
msgid "Exclusions Statistics"
|
942 |
+
msgstr "Vyloučení statistiky"
|
943 |
+
|
944 |
+
#: includes/settings/tabs/wps-overview-display.php:37
|
945 |
+
msgid "Top Pages Visited"
|
946 |
+
msgstr "Top navštívené stránky"
|
947 |
+
|
948 |
+
#: includes/log/top-pages.php:160 includes/log/widgets/pages.php:27
|
949 |
+
msgid "No page title found"
|
950 |
+
msgstr "Žádný titulek stránky nalézt"
|
951 |
+
|
952 |
+
#: includes/log/top-pages.php:13 includes/log/top-pages.php:132
|
953 |
+
msgid "Top Pages"
|
954 |
+
msgstr "Nejlepší stránky"
|
955 |
+
|
956 |
+
#: includes/log/top-pages.php:20
|
957 |
+
msgid "Top 5 Pages Trends"
|
958 |
+
msgstr "Top 5 stránek trendy"
|
959 |
+
|
960 |
+
#: includes/log/top-pages.php:49
|
961 |
+
msgid "Top 5 Page Trending Stats"
|
962 |
+
msgstr "Top 5 stránek trendy statistiky"
|
963 |
+
|
964 |
+
#: includes/log/page-statistics.php:89 includes/log/top-pages.php:70
|
965 |
+
msgid "Number of Hits"
|
966 |
+
msgstr "Počet přístupů"
|
967 |
+
|
968 |
+
#: manual/manual.php:29
|
969 |
+
msgid "Manual not found: %s"
|
970 |
+
msgstr "Manuál nebyl nalezen: %s"
|
971 |
+
|
972 |
+
#: manual/manual.php:39
|
973 |
+
msgid "Invalid file type selected: %s"
|
974 |
+
msgstr "Vybraný typ souboru je neplatná: %s"
|
975 |
+
|
976 |
+
#: widget.php:116
|
977 |
+
msgid "Search Engine referred"
|
978 |
+
msgstr "Vyhledávač podle"
|
979 |
+
|
980 |
+
#: includes/optimization/tabs/wps-optimization-export.php:47
|
981 |
+
msgid "Include Header Row"
|
982 |
+
msgstr "Zahrnout řádek záhlaví"
|
983 |
+
|
984 |
+
#: includes/optimization/tabs/wps-optimization-export.php:52
|
985 |
+
msgid "Include a header row as the first line of the exported file."
|
986 |
+
msgstr "Zahrnout řádek záhlaví jako první řádek v exportovaném souboru."
|
987 |
+
|
988 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:125
|
989 |
+
msgid "PHP Safe Mode"
|
990 |
+
msgstr "PHP Bezpečný mód"
|
991 |
+
|
992 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:130
|
993 |
+
msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
|
994 |
+
msgstr ""
|
995 |
+
"Je PHP nouzovém režimu aktivní. GeoIP kód není podporován v nouzovém režimu."
|
996 |
+
|
997 |
+
#: includes/settings/tabs/wps-geoip.php:106
|
998 |
+
msgid "GeoIP collection is disabled due to the following reasons:"
|
999 |
+
msgstr "Kolekce GeoIP je zakázáno z následujících důvodů:"
|
1000 |
+
|
1001 |
+
#: includes/settings/tabs/wps-geoip.php:126
|
1002 |
+
msgid ""
|
1003 |
+
"PHP safe mode detected! GeoIP collection is not supported with PHP's safe "
|
1004 |
+
"mode enabled!"
|
1005 |
+
msgstr ""
|
1006 |
+
"PHP nouzový režim zjištěn! GeoIP kolekce není podporován s PHP je nouzový "
|
1007 |
+
"režim povolen!"
|
1008 |
+
|
1009 |
+
#: includes/settings/tabs/wps-general.php:214
|
1010 |
+
msgid "Hide admin notices about non active features"
|
1011 |
+
msgstr "SKrýt admin oznámení o neaktivních vlastnostech"
|
1012 |
+
|
1013 |
+
#: includes/settings/tabs/wps-general.php:237
|
1014 |
+
msgid "Search Enginges"
|
1015 |
+
msgstr "Vyhledávače"
|
1016 |
+
|
1017 |
+
#: includes/settings/tabs/wps-general.php:242
|
1018 |
+
msgid ""
|
1019 |
+
"Disabling all search engines is not allowed, doing so will result in all "
|
1020 |
+
"search engines being active."
|
1021 |
+
msgstr ""
|
1022 |
+
"Zakázání všech vyhledávačů není dovoleno, to povede ve všech vyhledávačích "
|
1023 |
+
"je aktivní."
|
1024 |
+
|
1025 |
+
#: includes/settings/tabs/wps-general.php:257
|
1026 |
+
msgid "disable"
|
1027 |
+
msgstr "vypnout"
|
1028 |
+
|
1029 |
+
#: includes/settings/tabs/wps-general.php:258
|
1030 |
+
msgid "Disable %s from data collection and reporting."
|
1031 |
+
msgstr "Zakážete %s ze shromažďování údajů a výkaznictví."
|
1032 |
+
|
1033 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:147
|
1034 |
+
msgid "cURL Version"
|
1035 |
+
msgstr "cURL Verze"
|
1036 |
+
|
1037 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:151
|
1038 |
+
msgid "cURL not installed"
|
1039 |
+
msgstr "cURL není instalováno"
|
1040 |
+
|
1041 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:152
|
1042 |
+
msgid ""
|
1043 |
+
"The PHP cURL Extension version you are running. cURL is required for the "
|
1044 |
+
"GeoIP code, if it is not installed GeoIP will be disabled."
|
1045 |
+
msgstr ""
|
1046 |
+
"PHP cURL Extension verze kterou používáte. cURL je požadováno pro GeoIP "
|
1047 |
+
"kód, jestliže neni instalování GeoIP bude vypnuté."
|
1048 |
+
|
1049 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:158
|
1050 |
+
msgid "BC Math"
|
1051 |
+
msgstr "BC Math"
|
1052 |
+
|
1053 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:162
|
1054 |
+
msgid "Installed"
|
1055 |
+
msgstr "Instalováno"
|
1056 |
+
|
1057 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:162
|
1058 |
+
msgid "Not installed"
|
1059 |
+
msgstr "Neinstalováno"
|
1060 |
+
|
1061 |
+
#: includes/settings/tabs/wps-geoip.php:114
|
1062 |
+
msgid ""
|
1063 |
+
"GeoIP collection requires the cURL PHP extension and it is not loaded on "
|
1064 |
+
"your version of PHP!"
|
1065 |
+
msgstr ""
|
1066 |
+
"GeoIP kolekce vyžaduje cURL PHP rozšíření a to není nahrané ve Vaší verzi "
|
1067 |
+
"PHP!"
|
1068 |
+
|
1069 |
+
#: includes/settings/tabs/wps-geoip.php:120
|
1070 |
+
msgid ""
|
1071 |
+
"GeoIP collection requires the BC Math PHP extension and it is not loaded on "
|
1072 |
+
"your version of PHP!"
|
1073 |
+
msgstr ""
|
1074 |
+
"GeoIP kolekce vyžaduje BC Math PHP rozšíření a to není nahrané ve Vaší verzi "
|
1075 |
+
"PHP!"
|
1076 |
+
|
1077 |
+
#: includes/functions/geoip-populate.php:26
|
1078 |
+
msgid ""
|
1079 |
+
"Unable to load the GeoIP database, make sure you have downloaded it in the "
|
1080 |
+
"settings page."
|
1081 |
+
msgstr "Nemožné nahrát GeoIP databázi, zajistěte stažení v nastavení."
|
1082 |
+
|
1083 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:182
|
1084 |
+
msgid "Database file does not exist."
|
1085 |
+
msgstr "Databáze neexistuje"
|
1086 |
+
|
1087 |
+
#: includes/log/last-visitor.php:59
|
1088 |
+
msgid "Search for"
|
1089 |
+
msgstr "Hledat"
|
1090 |
+
|
1091 |
+
#: includes/log/widgets/browsers.php:8 includes/log/widgets/countries.php:11
|
1092 |
+
#: includes/log/widgets/hits.php:8 includes/log/widgets/pages.php:13
|
1093 |
+
#: includes/log/widgets/recent.php:9 includes/log/widgets/referring.php:13
|
1094 |
+
#: includes/log/widgets/search.php:8 includes/log/widgets/words.php:16
|
1095 |
+
msgid "More"
|
1096 |
+
msgstr "Více"
|
1097 |
+
|
1098 |
+
#: includes/settings/tabs/wps-general.php:269
|
1099 |
+
msgid "Include totals"
|
1100 |
+
msgstr "Zahrnout součty"
|
1101 |
+
|
1102 |
+
#: includes/settings/tabs/wps-general.php:275
|
1103 |
+
msgid ""
|
1104 |
+
"Add a total line to charts with multiple values, like the search engine "
|
1105 |
+
"referrals"
|
1106 |
+
msgstr ""
|
1107 |
+
"Přidání řádku Celkem se grafy s více hodnotami, jako je hledání vyhledávač "
|
1108 |
+
"doporučováním"
|
1109 |
+
|
1110 |
+
#: includes/settings/tabs/wps-overview-display.php:100
|
1111 |
+
msgid "Disable map"
|
1112 |
+
msgstr "Vypnout mapu"
|
1113 |
+
|
1114 |
+
#: includes/settings/tabs/wps-overview-display.php:106
|
1115 |
+
msgid "Disable the map display"
|
1116 |
+
msgstr "Vypnout zobrazení mapy"
|
1117 |
+
|
1118 |
+
#: includes/settings/tabs/wps-overview-display.php:112
|
1119 |
+
msgid "Get country location from Google"
|
1120 |
+
msgstr "Získat polohu země z Google"
|
1121 |
+
|
1122 |
+
#: includes/log/exclusions.php:8
|
1123 |
+
msgid ""
|
1124 |
+
"Attention: Exclusion are not currently set to be recorded, the results below "
|
1125 |
+
"may not reflect current statistics!"
|
1126 |
+
msgstr ""
|
1127 |
+
"Pozor: Vyloučení nejsou nastaveny v současnosti zaznamenávají, výsledky níže "
|
1128 |
+
"nemusí odrážet aktuální statistiky!"
|
1129 |
+
|
1130 |
+
#: includes/log/exclusions.php:118
|
1131 |
+
msgid "Number of excluded hits"
|
1132 |
+
msgstr "Počet vyjmutých hitů"
|
1133 |
+
|
1134 |
+
#: includes/settings/tabs/wps-access-level.php:86
|
1135 |
+
msgid ""
|
1136 |
+
"Hint: manage_network = Super Admin Network, manage_options = Administrator, "
|
1137 |
+
"edit_others_posts = Editor, publish_posts = Author, edit_posts = "
|
1138 |
+
"Contributor, read = Everyone."
|
1139 |
+
msgstr ""
|
1140 |
+
"Tip: manage_network = Super Admin síť, manage_options = správce, "
|
1141 |
+
"edit_others_posts = Editor, publish_posts = autor, edit_posts = přispěvatel, "
|
1142 |
+
"číst = všichni."
|
1143 |
+
|
1144 |
+
#: includes/settings/tabs/wps-access-level.php:99
|
1145 |
+
#: includes/settings/tabs/wps-access-level.php:151
|
1146 |
+
msgid "Enable"
|
1147 |
+
msgstr "Zapnout"
|
1148 |
+
|
1149 |
+
#: includes/settings/tabs/wps-access-level.php:100
|
1150 |
+
msgid ""
|
1151 |
+
"This will record all the excluded hits in a separate table with the reasons "
|
1152 |
+
"why it was excluded but no other information. This will generate a lot of "
|
1153 |
+
"data but is useful if you want to see the total number of hits your site "
|
1154 |
+
"gets, not just actual user visits."
|
1155 |
+
msgstr ""
|
1156 |
+
"To bude zaznamenávat všechny vyloučené hity v samostatné tabulce s důvody, "
|
1157 |
+
"proč byla vyloučena, ale žádné další informace. To bude generovat velké "
|
1158 |
+
"množství dat, ale je užitečné, pokud chcete zobrazit celkový počet přístupů "
|
1159 |
+
"vašich stránek dostane, ne jen skutečné uživatele návštěvy."
|
1160 |
+
|
1161 |
+
#: includes/settings/tabs/wps-access-level.php:168
|
1162 |
+
msgid "Site URL Exclusions"
|
1163 |
+
msgstr "URL vyjímky"
|
1164 |
+
|
1165 |
+
#: includes/settings/tabs/wps-access-level.php:175
|
1166 |
+
msgid "Exclude the login page for registering as a hit."
|
1167 |
+
msgstr "Vylučte přihlašovací stránku pro registraci jako hit."
|
1168 |
+
|
1169 |
+
#: includes/settings/tabs/wps-access-level.php:182
|
1170 |
+
msgid "Exclude the admin pages for registering as a hit."
|
1171 |
+
msgstr "Vylučte admin stránky pro registraci jako hit."
|
1172 |
+
|
1173 |
+
#: includes/settings/tabs/wps-access-level.php:93 wp-statistics.php:254
|
1174 |
+
msgid "Exclusions"
|
1175 |
+
msgstr "Vyjímky"
|
1176 |
+
|
1177 |
+
#: includes/log/exclusions.php:68
|
1178 |
+
msgid "Total Exclusions: %s"
|
1179 |
+
msgstr "Celkem vyjímek: %s"
|
1180 |
+
|
1181 |
+
#: includes/log/exclusions.php:75
|
1182 |
+
msgid "Exclusions Statistical Chart"
|
1183 |
+
msgstr "Statistický graf vyjímek"
|
1184 |
+
|
1185 |
+
#: includes/settings/tabs/wps-access-level.php:33
|
1186 |
+
msgid "Access Levels"
|
1187 |
+
msgstr "Úrovně přístupů"
|
1188 |
+
|
1189 |
+
#: includes/optimization/wps-optimization.php:126
|
1190 |
+
msgid "Resources/Information"
|
1191 |
+
msgstr "Zdroje/Informace"
|
1192 |
+
|
1193 |
+
#: includes/optimization/wps-optimization.php:128
|
1194 |
+
msgid "Purging"
|
1195 |
+
msgstr "Pročištění"
|
1196 |
+
|
1197 |
+
#: includes/optimization/wps-optimization.php:130
|
1198 |
+
msgid "Updates"
|
1199 |
+
msgstr "Aktualizace"
|
1200 |
+
|
1201 |
+
#: includes/settings/wps-settings.php:88
|
1202 |
+
msgid "Access/Exclusions"
|
1203 |
+
msgstr "Přístupy/Vyjímky"
|
1204 |
+
|
1205 |
+
#: includes/settings/wps-settings.php:91
|
1206 |
+
msgid "Maintenance"
|
1207 |
+
msgstr "Údržba"
|
1208 |
+
|
1209 |
+
#: includes/settings/wps-settings.php:126
|
1210 |
+
msgid "Update"
|
1211 |
+
msgstr "Aktualizovat"
|
1212 |
+
|
1213 |
+
#: includes/settings/wps-settings.php:86
|
1214 |
+
msgid "General"
|
1215 |
+
msgstr "Obecné"
|
1216 |
+
|
1217 |
+
#: includes/optimization/empty.php:57
|
1218 |
+
msgid "Error, %s not emptied!"
|
1219 |
+
msgstr "Chyba, %s není vyprázdněno!"
|
1220 |
+
|
1221 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:118
|
1222 |
+
msgid "Data"
|
1223 |
+
msgstr "Data"
|
1224 |
+
|
1225 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:145
|
1226 |
+
msgid "Purge records older than"
|
1227 |
+
msgstr "Pročistit záznamy starší než"
|
1228 |
+
|
1229 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:151
|
1230 |
+
msgid ""
|
1231 |
+
"Deleted user statistics data older than the selected number of days. "
|
1232 |
+
"Minimum value is 30 days."
|
1233 |
+
msgstr ""
|
1234 |
+
"Odstraněný uživatel statistická data starší než zvolený počet dní. Minimální "
|
1235 |
+
"hodnota je 30 dní."
|
1236 |
+
|
1237 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:152
|
1238 |
+
msgid "Purge now!"
|
1239 |
+
msgstr "Pročistit nyní!"
|
1240 |
+
|
1241 |
+
#: includes/optimization/purge-data.php:55
|
1242 |
+
msgid "Please select a value over 30 days."
|
1243 |
+
msgstr "Prosím vyber hodnotu nad 30 dní."
|
1244 |
+
|
1245 |
+
#: includes/settings/tabs/wps-maintenance.php:20
|
1246 |
+
msgid ""
|
1247 |
+
"This will permanently delete data from the database each day, are you sure "
|
1248 |
+
"you want to enable this option?"
|
1249 |
+
msgstr ""
|
1250 |
+
"To bude trvale odstranit data z databáze každý den, jste si jisti, že chcete "
|
1251 |
+
"povolit tuto možnost?"
|
1252 |
+
|
1253 |
+
#: includes/settings/tabs/wps-maintenance.php:30
|
1254 |
+
msgid "Database Maintenance"
|
1255 |
+
msgstr "Údržba databáze"
|
1256 |
+
|
1257 |
+
#: includes/settings/tabs/wps-maintenance.php:35
|
1258 |
+
msgid "Run a daily WP Cron job to prune the databases"
|
1259 |
+
msgstr "Spustit denní WP cronu prořezávat databáze"
|
1260 |
+
|
1261 |
+
#: includes/settings/tabs/wps-maintenance.php:41
|
1262 |
+
msgid ""
|
1263 |
+
"A WP Cron job will be run daily to prune any data older than a set number of "
|
1264 |
+
"days."
|
1265 |
+
msgstr ""
|
1266 |
+
"WP má úloha poběží denně vyřadit všechna data, která je starší než stanovený "
|
1267 |
+
"počet dní."
|
1268 |
+
|
1269 |
+
#: includes/settings/tabs/wps-maintenance.php:47
|
1270 |
+
msgid "Prune data older than"
|
1271 |
+
msgstr "Vyřadit data starší než"
|
1272 |
+
|
1273 |
+
#: includes/settings/tabs/wps-maintenance.php:52
|
1274 |
+
msgid "Days"
|
1275 |
+
msgstr "Dny"
|
1276 |
+
|
1277 |
+
#: includes/settings/tabs/wps-maintenance.php:53
|
1278 |
+
msgid ""
|
1279 |
+
"The number of days to keep statistics for. Minimum value is 30 days. "
|
1280 |
+
"Invalid values will disable the daily maintenance."
|
1281 |
+
msgstr ""
|
1282 |
+
"Počet dnů zachovat statistiky. Minimální hodnota je 30 dní. Neplatné hodnoty "
|
1283 |
+
"zakáže každodenní údržbu."
|
1284 |
+
|
1285 |
+
#: includes/settings/wps-settings.php:89
|
1286 |
+
msgid "GeoIP"
|
1287 |
+
msgstr "GeoIP"
|
1288 |
+
|
1289 |
+
#: includes/settings/tabs/wps-browscap.php:54
|
1290 |
+
#: includes/settings/tabs/wps-geoip.php:64
|
1291 |
+
msgid "Next update will be"
|
1292 |
+
msgstr "Další update bude"
|
1293 |
+
|
1294 |
+
#: includes/settings/tabs/wps-geoip.php:109
|
1295 |
+
msgid ""
|
1296 |
+
"GeoIP collection requires PHP %s or above, it is currently disabled due to "
|
1297 |
+
"the installed PHP version being "
|
1298 |
+
msgstr ""
|
1299 |
+
"GeoIP kolekce vyžaduje PHP %s nebo vyšš, z důvodu instalované verze PHP je "
|
1300 |
+
"vlastnost vypnuta"
|
1301 |
+
|
1302 |
+
#: includes/log/widgets/search.php:8 includes/log/widgets/summary.php:64
|
1303 |
+
msgid "Search Engine Referrals"
|
1304 |
+
msgstr "Vyhledávací Engine odkazy"
|
1305 |
+
|
1306 |
+
#: includes/log/widgets/summary.php:88
|
1307 |
+
msgid "Daily Total"
|
1308 |
+
msgstr "Denně celkem"
|
1309 |
+
|
1310 |
+
#: includes/log/widgets/summary.php:102
|
1311 |
+
msgid "Current Time and Date"
|
1312 |
+
msgstr "Aktuální čas a datum"
|
1313 |
+
|
1314 |
+
#: includes/optimization/tabs/wps-optimization-database.php:39
|
1315 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:25
|
1316 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:40
|
1317 |
+
msgid "Update Now!"
|
1318 |
+
msgstr "!Aktualizovat nyní"
|
1319 |
+
|
1320 |
+
#: includes/settings/tabs/wps-access-level.php:87
|
1321 |
+
msgid ""
|
1322 |
+
"Each of the above casscades the rights upwards in the default WordPress "
|
1323 |
+
"configuration. So for example selecting publish_posts grants the right to "
|
1324 |
+
"Authors, Editors, Admins and Super Admins."
|
1325 |
+
msgstr ""
|
1326 |
+
"Každý z výše uvedených casscades práva směrem nahoru v WordPress výchozí "
|
1327 |
+
"konfiguraci. Tak například výběrem publish_posts uděluje právo autorů, "
|
1328 |
+
"redaktoři, administrátoři a Super Admins."
|
1329 |
+
|
1330 |
+
#: includes/settings/tabs/wps-access-level.php:88
|
1331 |
+
msgid ""
|
1332 |
+
"If you need a more robust solution to delegate access you might want to look "
|
1333 |
+
"at %s in the WordPress plugin directory."
|
1334 |
+
msgstr ""
|
1335 |
+
"Pokud budete potřebovat robustnější řešení pro přístup delegáta budete chtít "
|
1336 |
+
"podívat na %s do WordPress plugin adresáři."
|
1337 |
+
|
1338 |
+
#: includes/settings/tabs/wps-access-level.php:62
|
1339 |
+
msgid "Required user level to view WP Statistics"
|
1340 |
+
msgstr "Požadována uživatelská úrověn k prohlížení WP Statistik"
|
1341 |
+
|
1342 |
+
#: includes/settings/tabs/wps-access-level.php:77
|
1343 |
+
msgid "Required user level to manage WP Statistics"
|
1344 |
+
msgstr "Uživatelská úroveň pro správu statistiky WP"
|
1345 |
+
|
1346 |
+
#: includes/settings/tabs/wps-geoip.php:56
|
1347 |
+
msgid "Schedule monthly update of GeoIP DB"
|
1348 |
+
msgstr "Naplánovat měsíční aktualizaci GeoIP DB"
|
1349 |
+
|
1350 |
+
#: includes/settings/tabs/wps-geoip.php:82
|
1351 |
+
msgid ""
|
1352 |
+
"Download of the GeoIP database will be scheduled for 2 days after the first "
|
1353 |
+
"Tuesday of the month."
|
1354 |
+
msgstr ""
|
1355 |
+
"Stažení databáze GeoIP bude naplánováno na 2 dny po první úterý v měsíci."
|
1356 |
+
|
1357 |
+
#: includes/settings/tabs/wps-geoip.php:83
|
1358 |
+
msgid ""
|
1359 |
+
"This option will also download the database if the local filesize is less "
|
1360 |
+
"than 1k (which usually means the stub that comes with the plugin is still in "
|
1361 |
+
"place)."
|
1362 |
+
msgstr ""
|
1363 |
+
"Tato možnost bude také stáhnout databáze, je-li místní velikost souboru je "
|
1364 |
+
"menší než 1 KB (což obvykle znamená, že se zakázaným inzerováním, který je "
|
1365 |
+
"dodáván s plugin je stále na svém místě)."
|
1366 |
+
|
1367 |
+
#: includes/settings/tabs/wps-geoip.php:89
|
1368 |
+
msgid "Populate missing GeoIP after update of GeoIP DB"
|
1369 |
+
msgstr "Vyplnit chybějící GeoIP po aktualizaci GeoIP DB"
|
1370 |
+
|
1371 |
+
#: includes/settings/tabs/wps-geoip.php:95
|
1372 |
+
msgid "Update any missing GeoIP data after downloading a new database."
|
1373 |
+
msgstr "Aktualizovat chybějící GeoIP data po stažení nové databáze."
|
1374 |
+
|
1375 |
+
#: includes/functions/geoip-populate.php:50
|
1376 |
+
msgid "Updated %s GeoIP records in the visitors database."
|
1377 |
+
msgstr "Aktualizovat %s GeoIP záznamy v databázi návětěvníků."
|
1378 |
+
|
1379 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:98
|
1380 |
+
msgid "Version Info"
|
1381 |
+
msgstr "Verze info"
|
1382 |
+
|
1383 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:103
|
1384 |
+
msgid "WP Statistics Version"
|
1385 |
+
msgstr "WP Statistics Verze"
|
1386 |
+
|
1387 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:108
|
1388 |
+
msgid "The WP Statistics version you are running."
|
1389 |
+
msgstr "Používáte verzi WP Statistics."
|
1390 |
+
|
1391 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:114
|
1392 |
+
msgid "PHP Version"
|
1393 |
+
msgstr "PHP Verze"
|
1394 |
+
|
1395 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:119
|
1396 |
+
msgid "The PHP version you are running."
|
1397 |
+
msgstr "PHP verze kterou používáte."
|
1398 |
+
|
1399 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:136
|
1400 |
+
msgid "jQuery Version"
|
1401 |
+
msgstr "jQuery Verze"
|
1402 |
+
|
1403 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:141
|
1404 |
+
msgid "The jQuery version you are running."
|
1405 |
+
msgstr " Query verze kterou používáte."
|
1406 |
+
|
1407 |
+
#: wp-statistics.php:610
|
1408 |
+
msgid "Error could not open downloaded GeoIP database for reading: %s"
|
1409 |
+
msgstr "Chyba nelze otevřít stažené GeoIP databázi pro čtení: %s"
|
1410 |
+
|
1411 |
+
#: wp-statistics.php:617
|
1412 |
+
msgid "Error could not open destination GeoIP database for writing %s"
|
1413 |
+
msgstr "Chyba nelze otevřít cílovou databázi GeoIP pro psaní %s"
|
1414 |
+
|
1415 |
+
#: wp-statistics.php:633
|
1416 |
+
msgid "GeoIP Database updated successfully!"
|
1417 |
+
msgstr "GeoIP Databáze byla úspěšně aktualizována!"
|
1418 |
+
|
1419 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:229
|
1420 |
+
msgid "Client Info"
|
1421 |
+
msgstr "Klient Info"
|
1422 |
+
|
1423 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:234
|
1424 |
+
msgid "Client IP"
|
1425 |
+
msgstr "Klient IP"
|
1426 |
+
|
1427 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:239
|
1428 |
+
msgid "The client IP address."
|
1429 |
+
msgstr "Klientovo IP adresa"
|
1430 |
+
|
1431 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:245
|
1432 |
+
msgid "User Agent"
|
1433 |
+
msgstr "Uživatelský agent"
|
1434 |
+
|
1435 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:250
|
1436 |
+
msgid "The client user agent string."
|
1437 |
+
msgstr "Řetězec agenta uživatele klienta."
|
1438 |
+
|
1439 |
+
#: includes/settings/tabs/wps-access-level.php:105
|
1440 |
+
msgid "Exclude User Roles"
|
1441 |
+
msgstr "Vyloučení rolí uživatelů"
|
1442 |
+
|
1443 |
+
#: includes/settings/tabs/wps-access-level.php:119
|
1444 |
+
#: includes/settings/tabs/wps-access-level.php:174
|
1445 |
+
#: includes/settings/tabs/wps-access-level.php:181
|
1446 |
+
msgid "Exclude"
|
1447 |
+
msgstr "Vyjímka"
|
1448 |
+
|
1449 |
+
#: includes/settings/tabs/wps-access-level.php:120
|
1450 |
+
msgid "Exclude %s role from data collection."
|
1451 |
+
msgstr "Vylučte úlohu %s ze sběru údajů."
|
1452 |
+
|
1453 |
+
#: includes/settings/tabs/wps-access-level.php:126
|
1454 |
+
msgid "IP/Robot Exclusions"
|
1455 |
+
msgstr "IP/Robot vyjímky"
|
1456 |
+
|
1457 |
+
#: includes/settings/tabs/wps-access-level.php:143
|
1458 |
+
msgid ""
|
1459 |
+
"A list of words (one per line) to match against to detect robots. Entries "
|
1460 |
+
"must be at least 4 characters long or they will be ignored."
|
1461 |
+
msgstr ""
|
1462 |
+
"Seznam slov, (jeden na řádek) porovnávat odhalit roboty. Položky musí být "
|
1463 |
+
"dlouhé nejméně 4 znaky, nebo budou ignorovány."
|
1464 |
+
|
1465 |
+
#: includes/settings/tabs/wps-access-level.php:144
|
1466 |
+
msgid "Reset to Default"
|
1467 |
+
msgstr "Reset do Defaultního nastavení"
|
1468 |
+
|
1469 |
+
#: includes/settings/tabs/wps-access-level.php:161
|
1470 |
+
msgid "Add 10.0.0.0"
|
1471 |
+
msgstr "Přidat 10.0.0.0"
|
1472 |
+
|
1473 |
+
#: includes/settings/tabs/wps-access-level.php:162
|
1474 |
+
msgid "Add 172.16.0.0"
|
1475 |
+
msgstr "Přidat 172.16.0.0"
|
1476 |
+
|
1477 |
+
#: includes/settings/tabs/wps-access-level.php:163
|
1478 |
+
msgid "Add 192.168.0.0"
|
1479 |
+
msgstr "Přidat 192.168.0.0"
|
1480 |
+
|
1481 |
+
#: includes/settings/tabs/wps-general.php:264
|
1482 |
+
msgid "Charts"
|
1483 |
+
msgstr "Grafy"
|
1484 |
+
|
1485 |
+
#: includes/settings/tabs/wps-geoip.php:38
|
1486 |
+
msgid ""
|
1487 |
+
"For get more information and location (country) from visitor, enable this "
|
1488 |
+
"feature."
|
1489 |
+
msgstr ""
|
1490 |
+
"Zapněte tuto vlastnost pro získání více informací a lokace (země) "
|
1491 |
+
"návštěvníka."
|
1492 |
+
|
1493 |
+
#: includes/settings/wps-settings.php:87 wp-statistics.php:248
|
1494 |
+
msgid "Overview"
|
1495 |
+
msgstr "Přehled"
|
1496 |
+
|
1497 |
+
#: includes/optimization/tabs/wps-optimization-database.php:25
|
1498 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:21
|
1499 |
+
#: wp-statistics.php:251
|
1500 |
+
msgid "Countries"
|
1501 |
+
msgstr "Země"
|
1502 |
+
|
1503 |
+
#: wp-statistics.php:176 wp-statistics.php:253
|
1504 |
+
msgid "Hits"
|
1505 |
+
msgstr "Hity"
|
1506 |
+
|
1507 |
+
#: wp-statistics.php:255
|
1508 |
+
msgid "Referers"
|
1509 |
+
msgstr "Odkazující"
|
1510 |
+
|
1511 |
+
#: wp-statistics.php:256
|
1512 |
+
msgid "Searches"
|
1513 |
+
msgstr "Vyhledávání"
|
1514 |
+
|
1515 |
+
#: wp-statistics.php:257
|
1516 |
+
msgid "Search Words"
|
1517 |
+
msgstr "Hledaná slova"
|
1518 |
+
|
1519 |
+
#: includes/settings/tabs/wps-general.php:94
|
1520 |
+
msgid "Second"
|
1521 |
+
msgstr "Sekunda"
|
1522 |
+
|
1523 |
+
#: includes/log/all-browsers.php:17
|
1524 |
+
msgid "Browser Statistics"
|
1525 |
+
msgstr "Statistiky prohlížečů"
|
1526 |
+
|
1527 |
+
#: includes/log/all-browsers.php:107
|
1528 |
+
msgid "Platform"
|
1529 |
+
msgstr "Platforma"
|
1530 |
+
|
1531 |
+
#: includes/log/all-browsers.php:241
|
1532 |
+
msgid "%s Version"
|
1533 |
+
msgstr "%s Verze"
|
1534 |
+
|
1535 |
+
#: includes/log/hit-statistics.php:17 includes/log/widgets/hits.php:8
|
1536 |
+
msgid "Hit Statistics"
|
1537 |
+
msgstr "Statistika hitů"
|
1538 |
+
|
1539 |
+
#: includes/log/exclusions.php:57 includes/log/hit-statistics.php:21
|
1540 |
+
#: includes/log/page-statistics.php:33 includes/log/search-statistics.php:21
|
1541 |
+
msgid "10 Days"
|
1542 |
+
msgstr "10 Dnů"
|
1543 |
+
|
1544 |
+
#: includes/log/exclusions.php:58 includes/log/hit-statistics.php:22
|
1545 |
+
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:22
|
1546 |
+
msgid "20 Days"
|
1547 |
+
msgstr "20 Dnů"
|
1548 |
+
|
1549 |
+
#: includes/log/exclusions.php:59 includes/log/hit-statistics.php:23
|
1550 |
+
#: includes/log/page-statistics.php:35 includes/log/search-statistics.php:23
|
1551 |
+
msgid "30 Days"
|
1552 |
+
msgstr "30 Dnů"
|
1553 |
+
|
1554 |
+
#: includes/log/exclusions.php:60 includes/log/hit-statistics.php:24
|
1555 |
+
#: includes/log/page-statistics.php:36 includes/log/search-statistics.php:24
|
1556 |
+
msgid "2 Months"
|
1557 |
+
msgstr "2 Měsíce"
|
1558 |
+
|
1559 |
+
#: includes/log/exclusions.php:61 includes/log/hit-statistics.php:25
|
1560 |
+
#: includes/log/page-statistics.php:37 includes/log/search-statistics.php:25
|
1561 |
+
msgid "3 Months"
|
1562 |
+
msgstr "3 Měsíce"
|
1563 |
+
|
1564 |
+
#: includes/log/exclusions.php:62 includes/log/hit-statistics.php:26
|
1565 |
+
#: includes/log/page-statistics.php:38 includes/log/search-statistics.php:26
|
1566 |
+
msgid "6 Months"
|
1567 |
+
msgstr "6 Měsíců"
|
1568 |
+
|
1569 |
+
#: includes/log/exclusions.php:63 includes/log/hit-statistics.php:27
|
1570 |
+
#: includes/log/page-statistics.php:39 includes/log/search-statistics.php:27
|
1571 |
+
msgid "9 Months"
|
1572 |
+
msgstr "9 Měsíců"
|
1573 |
+
|
1574 |
+
#: includes/log/exclusions.php:64 includes/log/hit-statistics.php:28
|
1575 |
+
#: includes/log/page-statistics.php:40 includes/log/search-statistics.php:28
|
1576 |
+
msgid "1 Year"
|
1577 |
+
msgstr "1 Rok"
|
1578 |
+
|
1579 |
+
#: includes/settings/tabs/wps-overview-display.php:34
|
1580 |
+
msgid "Hits Statistical Chart"
|
1581 |
+
msgstr "Statistický graf hitů"
|
1582 |
+
|
1583 |
+
#: includes/log/exclusions.php:97 includes/log/hit-statistics.php:69
|
1584 |
+
#: includes/log/search-statistics.php:77 includes/log/widgets/hits.php:39
|
1585 |
+
#: includes/log/widgets/search.php:46
|
1586 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:150
|
1587 |
+
msgid "days"
|
1588 |
+
msgstr "dnů"
|
1589 |
+
|
1590 |
+
#: includes/log/widgets/countries.php:11
|
1591 |
+
#: includes/settings/tabs/wps-overview-display.php:27
|
1592 |
+
msgid "Top 10 Countries"
|
1593 |
+
msgstr "Pořadí"
|
1594 |
+
|
1595 |
+
#: includes/log/top-countries.php:28 includes/log/widgets/countries.php:17
|
1596 |
+
msgid "Rank"
|
1597 |
+
msgstr "Vlajka"
|
1598 |
+
|
1599 |
+
#: includes/log/top-countries.php:29 includes/log/widgets/countries.php:18
|
1600 |
+
msgid "Flag"
|
1601 |
+
msgstr "Počet návštěvníků"
|
1602 |
+
|
1603 |
+
#: includes/log/top-countries.php:31 includes/log/widgets/countries.php:20
|
1604 |
+
msgid "Visitor Count"
|
1605 |
+
msgstr "Počet návštěvníků"
|
1606 |
+
|
1607 |
+
#: includes/settings/tabs/wps-overview-display.php:35
|
1608 |
+
msgid "Search Engine Referrers Statistical Chart"
|
1609 |
+
msgstr "Statistický graf odkazujících vyhledávačů"
|
1610 |
+
|
1611 |
+
#: includes/log/top-countries.php:19
|
1612 |
+
msgid "Top Countries"
|
1613 |
+
msgstr "Top zemí"
|
1614 |
+
|
1615 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:159
|
1616 |
+
msgid "Delete User Agent Types"
|
1617 |
+
msgstr "Odstranit typy uživatelských agentů"
|
1618 |
+
|
1619 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:164
|
1620 |
+
msgid "Delete Agents"
|
1621 |
+
msgstr "Smazat Agenty"
|
1622 |
+
|
1623 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:179
|
1624 |
+
msgid "All visitor data will be lost for this agent type."
|
1625 |
+
msgstr "Všechna data návštěvníků budou ztraceny pro tento typ agenta."
|
1626 |
+
|
1627 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:180
|
1628 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:204
|
1629 |
+
msgid "Delete now!"
|
1630 |
+
msgstr "Smazat nyní!"
|
1631 |
+
|
1632 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:188
|
1633 |
+
msgid "Delete Platforms"
|
1634 |
+
msgstr "Vymazat platformy"
|
1635 |
+
|
1636 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:203
|
1637 |
+
msgid "All visitor data will be lost for this platform type."
|
1638 |
+
msgstr "Všechna data návštěvníků budou ztraceny pro tento typ platformy."
|
1639 |
+
|
1640 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:16
|
1641 |
+
msgid "GeoIP Options"
|
1642 |
+
msgstr "GeoIP Vlastnosti"
|
1643 |
+
|
1644 |
+
#: includes/settings/tabs/wps-general.php:133
|
1645 |
+
msgid "Store entire user agent string"
|
1646 |
+
msgstr "Uložení celé identifikační řetězec prohlížeče"
|
1647 |
+
|
1648 |
+
#: includes/settings/tabs/wps-general.php:139
|
1649 |
+
msgid "Only enabled for debugging"
|
1650 |
+
msgstr "Jen zapnout pro debugging"
|
1651 |
+
|
1652 |
+
#: includes/settings/tabs/wps-geoip.php:17
|
1653 |
+
msgid "GeoIP settings"
|
1654 |
+
msgstr "GeoIP nastavení"
|
1655 |
+
|
1656 |
+
#: includes/settings/tabs/wps-geoip.php:32
|
1657 |
+
msgid "GeoIP collection"
|
1658 |
+
msgstr "GeoIP kolekce"
|
1659 |
+
|
1660 |
+
#: includes/settings/tabs/wps-geoip.php:44
|
1661 |
+
msgid "Update GeoIP Info"
|
1662 |
+
msgstr "Aktualizovat GeoIP Info"
|
1663 |
+
|
1664 |
+
#: includes/settings/tabs/wps-geoip.php:49
|
1665 |
+
msgid "Download GeoIP Database"
|
1666 |
+
msgstr "Stáhnout GeoIP Databázi"
|
1667 |
+
|
1668 |
+
#: includes/settings/tabs/wps-browscap.php:40
|
1669 |
+
#: includes/settings/tabs/wps-geoip.php:50
|
1670 |
+
msgid "Save changes on this page to download the update."
|
1671 |
+
msgstr "Uložte změny na této stránce můžete stáhnout aktualizaci."
|
1672 |
+
|
1673 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:10
|
1674 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:36
|
1675 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:62
|
1676 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:90
|
1677 |
+
msgid "Are you sure?"
|
1678 |
+
msgstr "Jste si jistý?"
|
1679 |
+
|
1680 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:137
|
1681 |
+
msgid "Clear now!"
|
1682 |
+
msgstr "Vyčistit nyní!"
|
1683 |
+
|
1684 |
+
#: wp-statistics.php:261
|
1685 |
+
msgid "Optimization"
|
1686 |
+
msgstr "Optimalizace"
|
1687 |
+
|
1688 |
+
#: includes/optimization/delete-agents.php:5
|
1689 |
+
#: includes/optimization/delete-platforms.php:5
|
1690 |
+
#: includes/optimization/empty.php:5 includes/optimization/export.php:5
|
1691 |
+
#: includes/optimization/purge-data.php:5
|
1692 |
+
#: includes/optimization/wps-optimization.php:3 manual/manual.php:5
|
1693 |
+
msgid "Access denied!"
|
1694 |
+
msgstr "Přístup zakázán!"
|
1695 |
+
|
1696 |
+
#: includes/optimization/delete-agents.php:18
|
1697 |
+
#: includes/optimization/delete-platforms.php:18
|
1698 |
+
#: includes/optimization/empty.php:42 includes/optimization/export.php:57
|
1699 |
+
msgid "Please select the desired items."
|
1700 |
+
msgstr "Prosím vyber požadované položky."
|
1701 |
+
|
1702 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:17
|
1703 |
+
msgid "Resources"
|
1704 |
+
msgstr "Zdroje"
|
1705 |
+
|
1706 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:22
|
1707 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:27
|
1708 |
+
msgid "Memory usage in PHP"
|
1709 |
+
msgstr "Využití paměti v PHP"
|
1710 |
+
|
1711 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:26
|
1712 |
+
msgid "Byte"
|
1713 |
+
msgstr "Bytů"
|
1714 |
+
|
1715 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:48
|
1716 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:59
|
1717 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:70
|
1718 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:81
|
1719 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:92
|
1720 |
+
msgid "Row"
|
1721 |
+
msgstr "Řádek"
|
1722 |
+
|
1723 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:49
|
1724 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:60
|
1725 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:71
|
1726 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:82
|
1727 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:93
|
1728 |
+
msgid "Number of rows"
|
1729 |
+
msgstr "Počet řádků"
|
1730 |
+
|
1731 |
+
#: includes/optimization/tabs/wps-optimization-export.php:7
|
1732 |
+
#: includes/optimization/wps-optimization.php:127
|
1733 |
+
msgid "Export"
|
1734 |
+
msgstr "Export"
|
1735 |
+
|
1736 |
+
#: includes/optimization/tabs/wps-optimization-export.php:12
|
1737 |
+
msgid "Export from"
|
1738 |
+
msgstr "Export od"
|
1739 |
+
|
1740 |
+
#: includes/optimization/tabs/wps-optimization-export.php:24
|
1741 |
+
msgid "Select the table for the output file."
|
1742 |
+
msgstr "Vyberte tabulku pro výstupní soubor."
|
1743 |
+
|
1744 |
+
#: includes/optimization/tabs/wps-optimization-export.php:30
|
1745 |
+
msgid "Export To"
|
1746 |
+
msgstr "Exportovat do"
|
1747 |
+
|
1748 |
+
#: includes/optimization/tabs/wps-optimization-export.php:41
|
1749 |
+
msgid "Select the output file type."
|
1750 |
+
msgstr "Vyber typ výstupní souboru."
|
1751 |
+
|
1752 |
+
#: includes/optimization/tabs/wps-optimization-export.php:53
|
1753 |
+
msgid "Start Now!"
|
1754 |
+
msgstr "Start Nyní!"
|
1755 |
+
|
1756 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:123
|
1757 |
+
msgid "Empty Table"
|
1758 |
+
msgstr "Prázdná tabulka"
|
1759 |
+
|
1760 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:136
|
1761 |
+
msgid "All data table will be lost."
|
1762 |
+
msgstr "Všechna data budou ztracena!"
|
1763 |
+
|
1764 |
+
#: includes/settings/tabs/wps-about.php:44
|
1765 |
+
msgid "Support"
|
1766 |
+
msgstr "Podpora"
|
1767 |
+
|
1768 |
+
#: includes/settings/tabs/wps-about.php:74
|
1769 |
+
msgid "Farsi"
|
1770 |
+
msgstr "Farsi"
|
1771 |
+
|
1772 |
+
#: includes/log/top-referring.php:47
|
1773 |
+
msgid "Referring sites from"
|
1774 |
+
msgstr "Odkazující stránky od"
|
1775 |
+
|
1776 |
+
#: includes/settings/tabs/wps-about.php:36
|
1777 |
+
msgid "Translations"
|
1778 |
+
msgstr "Překlady"
|
1779 |
+
|
1780 |
+
#: includes/log/top-referring.php:4
|
1781 |
+
msgid "To be added soon"
|
1782 |
+
msgstr "Brzy bude přidáno"
|
1783 |
+
|
1784 |
+
#: includes/log/last-search.php:102 includes/log/last-visitor.php:99
|
1785 |
+
#: includes/log/top-referring.php:78 includes/log/widgets/recent.php:27
|
1786 |
+
#: includes/log/widgets/words.php:32
|
1787 |
+
#: includes/settings/tabs/wps-overview-display.php:33
|
1788 |
+
#: includes/settings/tabs/wps-overview-display.php:71
|
1789 |
+
msgid "Map"
|
1790 |
+
msgstr "Mapa"
|
1791 |
+
|
1792 |
+
#: includes/log/last-search.php:139 includes/log/last-visitor.php:132
|
1793 |
+
#: includes/log/top-pages.php:181 includes/log/top-referring.php:132
|
1794 |
+
msgid "Page"
|
1795 |
+
msgstr "Stránka"
|
1796 |
+
|
1797 |
+
#: includes/log/last-search.php:139 includes/log/last-visitor.php:132
|
1798 |
+
#: includes/log/top-pages.php:181 includes/log/top-referring.php:132
|
1799 |
+
msgid "From"
|
1800 |
+
msgstr "Od"
|
1801 |
+
|
1802 |
+
#: wp-statistics.php:455
|
1803 |
+
msgid "Table plugin does not exist! Please disable and re-enable the plugin."
|
1804 |
+
msgstr "Tabulka pluginu neexistuje! Prosím vypni and znovu zapni plugin."
|
1805 |
+
|
1806 |
+
#: includes/settings/tabs/wps-general.php:280
|
1807 |
+
#: includes/settings/tabs/wps-general.php:285 schedule.php:161
|
1808 |
+
msgid "Statistical reporting"
|
1809 |
+
msgstr "Statistický reporting"
|
1810 |
+
|
1811 |
+
#: widget.php:14 wp-statistics.php:245
|
1812 |
+
msgid "Statistics"
|
1813 |
+
msgstr "Statistiky"
|
1814 |
+
|
1815 |
+
#: includes/settings/tabs/wps-general.php:369 widget.php:38 widget.php:247
|
1816 |
+
#: wp-statistics.php:310
|
1817 |
+
msgid "User Online"
|
1818 |
+
msgstr "Online uživatelé"
|
1819 |
+
|
1820 |
+
#: includes/settings/tabs/wps-general.php:371 widget.php:45 widget.php:250
|
1821 |
+
msgid "Today Visit"
|
1822 |
+
msgstr "Dnešní návštěva"
|
1823 |
+
|
1824 |
+
#: includes/settings/tabs/wps-general.php:370 widget.php:52 widget.php:253
|
1825 |
+
msgid "Today Visitor"
|
1826 |
+
msgstr "Dnešní návštěvník"
|
1827 |
+
|
1828 |
+
#: includes/settings/tabs/wps-general.php:373 widget.php:59
|
1829 |
+
msgid "Yesterday Visit"
|
1830 |
+
msgstr "Včerejší návštěva"
|
1831 |
+
|
1832 |
+
#: includes/settings/tabs/wps-general.php:372 widget.php:66 widget.php:259
|
1833 |
+
msgid "Yesterday Visitor"
|
1834 |
+
msgstr "Včerejší návštěvník"
|
1835 |
+
|
1836 |
+
#: widget.php:73 widget.php:262
|
1837 |
+
msgid "Week Visit"
|
1838 |
+
msgstr "Týdenní návštěva"
|
1839 |
+
|
1840 |
+
#: widget.php:80 widget.php:265
|
1841 |
+
msgid "Month Visit"
|
1842 |
+
msgstr "Měsíční návštěva"
|
1843 |
+
|
1844 |
+
#: widget.php:87 widget.php:268
|
1845 |
+
msgid "Years Visit"
|
1846 |
+
msgstr "Roční návštěvnost"
|
1847 |
+
|
1848 |
+
#: includes/settings/tabs/wps-general.php:375 widget.php:94 widget.php:271
|
1849 |
+
msgid "Total Visit"
|
1850 |
+
msgstr "Celkem návštěv"
|
1851 |
+
|
1852 |
+
#: includes/settings/tabs/wps-general.php:374 widget.php:101 widget.php:274
|
1853 |
+
msgid "Total Visitor"
|
1854 |
+
msgstr "Celkem návštěvníků"
|
1855 |
+
|
1856 |
+
#: widget.php:123 widget.php:300
|
1857 |
+
msgid "Total Posts"
|
1858 |
+
msgstr "Celkem příspěvků"
|
1859 |
+
|
1860 |
+
#: widget.php:130 widget.php:303
|
1861 |
+
msgid "Total Pages"
|
1862 |
+
msgstr "Celkem stránek"
|
1863 |
+
|
1864 |
+
#: widget.php:137 widget.php:306
|
1865 |
+
msgid "Total Comments"
|
1866 |
+
msgstr "Celkem komentářů"
|
1867 |
+
|
1868 |
+
#: widget.php:144 widget.php:309
|
1869 |
+
msgid "Total Spams"
|
1870 |
+
msgstr "Celkem Spamů"
|
1871 |
+
|
1872 |
+
#: widget.php:151 widget.php:312
|
1873 |
+
msgid "Total Users"
|
1874 |
+
msgstr "Celkem uživatelů"
|
1875 |
+
|
1876 |
+
#: widget.php:158 widget.php:315
|
1877 |
+
msgid "Average Posts"
|
1878 |
+
msgstr "Průměr příspěvků"
|
1879 |
+
|
1880 |
+
#: widget.php:165 widget.php:318
|
1881 |
+
msgid "Average Comments"
|
1882 |
+
msgstr "Průměr komentářů"
|
1883 |
+
|
1884 |
+
#: widget.php:172 widget.php:321
|
1885 |
+
msgid "Average Users"
|
1886 |
+
msgstr "Průměr uživatelů"
|
1887 |
+
|
1888 |
+
#: widget.php:179 widget.php:324
|
1889 |
+
msgid "Last Post Date"
|
1890 |
+
msgstr "Datum posledního příspěvku"
|
1891 |
+
|
1892 |
+
#: wp-statistics.php:340
|
1893 |
+
msgid "View Stats"
|
1894 |
+
msgstr "Zobrazit statistiky"
|
1895 |
+
|
1896 |
+
#: wp-statistics.php:152 wp-statistics.php:262
|
1897 |
+
msgid "Settings"
|
1898 |
+
msgstr "Nastavení"
|
1899 |
+
|
1900 |
+
#: wp-statistics.php:316
|
1901 |
+
msgid "Today visitor"
|
1902 |
+
msgstr "Dnešní návštěvník"
|
1903 |
+
|
1904 |
+
#: wp-statistics.php:322
|
1905 |
+
msgid "Today visit"
|
1906 |
+
msgstr "Dnešní návštěva"
|
1907 |
+
|
1908 |
+
#: wp-statistics.php:328
|
1909 |
+
msgid "Yesterday visitor"
|
1910 |
+
msgstr "Včera návštěvníků"
|
1911 |
+
|
1912 |
+
#: widget.php:256 wp-statistics.php:334
|
1913 |
+
msgid "Yesterday visit"
|
1914 |
+
msgstr "Včera návštěv"
|
1915 |
+
|
1916 |
+
#: wp-statistics.php:444 wp-statistics.php:544 wp-statistics.php:815
|
1917 |
+
msgid "You do not have sufficient permissions to access this page."
|
1918 |
+
msgstr "Nemáte dostatečná práva pro přístup na tuto stránku."
|
1919 |
+
|
1920 |
+
#: includes/log/all-browsers.php:23 includes/log/all-browsers.php:106
|
1921 |
+
#: includes/log/all-browsers.php:240 includes/log/exclusions.php:74
|
1922 |
+
#: includes/log/hit-statistics.php:35 includes/log/last-search.php:61
|
1923 |
+
#: includes/log/last-visitor.php:57 includes/log/page-statistics.php:47
|
1924 |
+
#: includes/log/search-statistics.php:35 includes/log/top-pages.php:19
|
1925 |
+
#: includes/log/top-pages.php:131 includes/log/top-referring.php:45
|
1926 |
+
#: includes/log/widgets/about.php:7 includes/log/widgets/browsers.php:7
|
1927 |
+
#: includes/log/widgets/countries.php:9 includes/log/widgets/google.map.php:8
|
1928 |
+
#: includes/log/widgets/hits.php:7 includes/log/widgets/jqv.map.php:8
|
1929 |
+
#: includes/log/widgets/pages.php:11 includes/log/widgets/recent.php:7
|
1930 |
+
#: includes/log/widgets/referring.php:11 includes/log/widgets/search.php:7
|
1931 |
+
#: includes/log/widgets/summary.php:7 includes/log/widgets/words.php:14
|
1932 |
+
msgid "Click to toggle"
|
1933 |
+
msgstr "Klik na vypínač"
|
1934 |
+
|
1935 |
+
#: includes/settings/tabs/wps-overview-display.php:24
|
1936 |
+
msgid "Summary Statistics"
|
1937 |
+
msgstr "Souhrné statistiky"
|
1938 |
+
|
1939 |
+
#: includes/log/hit-statistics.php:104 includes/log/widgets/hits.php:74
|
1940 |
+
#: includes/log/widgets/summary.php:19
|
1941 |
+
msgid "Visitor"
|
1942 |
+
msgstr "Návštěvník"
|
1943 |
+
|
1944 |
+
#: includes/log/hit-statistics.php:104 includes/log/widgets/hits.php:74
|
1945 |
+
#: includes/log/widgets/summary.php:20
|
1946 |
+
msgid "Visit"
|
1947 |
+
msgstr "Návštěva"
|
1948 |
+
|
1949 |
+
#: includes/log/widgets/summary.php:24 includes/log/widgets/summary.php:69
|
1950 |
+
msgid "Today"
|
1951 |
+
msgstr "Dnes"
|
1952 |
+
|
1953 |
+
#: includes/log/widgets/summary.php:30 includes/log/widgets/summary.php:70
|
1954 |
+
msgid "Yesterday"
|
1955 |
+
msgstr "Včera"
|
1956 |
+
|
1957 |
+
#: includes/log/widgets/summary.php:36
|
1958 |
+
msgid "Week"
|
1959 |
+
msgstr "Týden"
|
1960 |
+
|
1961 |
+
#: includes/log/widgets/summary.php:42
|
1962 |
+
msgid "Month"
|
1963 |
+
msgstr "Měsíc"
|
1964 |
+
|
1965 |
+
#: includes/log/widgets/summary.php:48
|
1966 |
+
msgid "Year"
|
1967 |
+
msgstr "Rok"
|
1968 |
+
|
1969 |
+
#: includes/log/search-statistics.php:112 includes/log/widgets/search.php:81
|
1970 |
+
#: includes/log/widgets/summary.php:54 includes/log/widgets/summary.php:94
|
1971 |
+
msgid "Total"
|
1972 |
+
msgstr "Celkem"
|
1973 |
+
|
1974 |
+
#: includes/log/widgets/summary.php:102
|
1975 |
+
msgid "(Adjustment)"
|
1976 |
+
msgstr "(Nastavení)"
|
1977 |
+
|
1978 |
+
#: includes/log/all-browsers.php:24 includes/log/widgets/browsers.php:8
|
1979 |
+
#: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:249
|
1980 |
+
msgid "Browsers"
|
1981 |
+
msgstr "Prohlížeče"
|
1982 |
+
|
1983 |
+
#: includes/log/widgets/browsers.php:38
|
1984 |
+
msgid "Other"
|
1985 |
+
msgstr "Jiný"
|
1986 |
+
|
1987 |
+
#: includes/log/widgets/referring.php:20
|
1988 |
+
msgid "Address"
|
1989 |
+
msgstr "Adresa"
|
1990 |
+
|
1991 |
+
#: includes/log/hit-statistics.php:90 includes/log/widgets/hits.php:60
|
1992 |
+
msgid "Number of visits and visitors"
|
1993 |
+
msgstr "Počet návštěv a návštěvníků"
|
1994 |
+
|
1995 |
+
#: includes/settings/tabs/wps-overview-display.php:86
|
1996 |
+
msgid "Google"
|
1997 |
+
msgstr "Google"
|
1998 |
+
|
1999 |
+
#: includes/log/last-visitor.php:27 includes/log/widgets/recent.php:9
|
2000 |
+
#: includes/settings/tabs/wps-overview-display.php:38
|
2001 |
+
msgid "Recent Visitors"
|
2002 |
+
msgstr "Aktuální návštěvníci"
|
2003 |
+
|
2004 |
+
#: includes/log/top-countries.php:30 includes/log/widgets/countries.php:19
|
2005 |
+
msgid "Country"
|
2006 |
+
msgstr "Země"
|
2007 |
+
|
2008 |
+
#: includes/settings/tabs/wps-browscap.php:27
|
2009 |
+
#: includes/settings/tabs/wps-browscap.php:51
|
2010 |
+
#: includes/settings/tabs/wps-general.php:66
|
2011 |
+
#: includes/settings/tabs/wps-general.php:82
|
2012 |
+
#: includes/settings/tabs/wps-general.php:110
|
2013 |
+
#: includes/settings/tabs/wps-general.php:126
|
2014 |
+
#: includes/settings/tabs/wps-general.php:138
|
2015 |
+
#: includes/settings/tabs/wps-general.php:165
|
2016 |
+
#: includes/settings/tabs/wps-general.php:177
|
2017 |
+
#: includes/settings/tabs/wps-general.php:189
|
2018 |
+
#: includes/settings/tabs/wps-general.php:219
|
2019 |
+
#: includes/settings/tabs/wps-general.php:231
|
2020 |
+
#: includes/settings/tabs/wps-general.php:274
|
2021 |
+
#: includes/settings/tabs/wps-general.php:290
|
2022 |
+
#: includes/settings/tabs/wps-geoip.php:37
|
2023 |
+
#: includes/settings/tabs/wps-geoip.php:61
|
2024 |
+
#: includes/settings/tabs/wps-geoip.php:94
|
2025 |
+
#: includes/settings/tabs/wps-maintenance.php:40
|
2026 |
+
#: includes/settings/tabs/wps-overview-display.php:105
|
2027 |
+
#: includes/settings/tabs/wps-overview-display.php:117
|
2028 |
+
msgid "Active"
|
2029 |
+
msgstr "Aktivní"
|
2030 |
+
|
2031 |
+
#: includes/settings/tabs/wps-general.php:83
|
2032 |
+
#: includes/settings/tabs/wps-general.php:111
|
2033 |
+
#: includes/settings/tabs/wps-general.php:127
|
2034 |
+
#: includes/settings/tabs/wps-general.php:166
|
2035 |
+
#: includes/settings/tabs/wps-general.php:178
|
2036 |
+
#: includes/settings/tabs/wps-general.php:190
|
2037 |
+
#: includes/settings/tabs/wps-general.php:291
|
2038 |
+
msgid "Enable or disable this feature"
|
2039 |
+
msgstr "Zapnout nebo vypnout tuto vlastnost"
|
2040 |
+
|
2041 |
+
#: includes/log/top-pages.php:163 includes/log/widgets/pages.php:30
|
2042 |
+
#: includes/settings/tabs/wps-general.php:100
|
2043 |
+
#: includes/settings/tabs/wps-general.php:105
|
2044 |
+
msgid "Visits"
|
2045 |
+
msgstr "Návštěvy"
|
2046 |
+
|
2047 |
+
#: includes/settings/tabs/wps-general.php:116
|
2048 |
+
#: includes/settings/tabs/wps-general.php:121 wp-statistics.php:258
|
2049 |
+
msgid "Visitors"
|
2050 |
+
msgstr "Návštěvníci"
|
2051 |
+
|
2052 |
+
#: includes/settings/tabs/wps-general.php:89
|
2053 |
+
msgid "Check for online users every"
|
2054 |
+
msgstr "Kontrola online uživatelů každých"
|
2055 |
+
|
2056 |
+
#: includes/settings/tabs/wps-general.php:95
|
2057 |
+
msgid "Time for the check accurate online user in the site. Now: %s Second"
|
2058 |
+
msgstr "Čas pro kontrolu přesné online uživatele v síti. Nyní: %s druhé"
|
2059 |
+
|
2060 |
+
#: includes/settings/tabs/wps-general.php:200
|
2061 |
+
msgid "Show stats in menu bar"
|
2062 |
+
msgstr "Zobrazit statistiky v menu baru"
|
2063 |
+
|
2064 |
+
#: includes/settings/tabs/wps-general.php:205
|
2065 |
+
msgid "No"
|
2066 |
+
msgstr "Ne"
|
2067 |
+
|
2068 |
+
#: includes/settings/tabs/wps-general.php:206
|
2069 |
+
msgid "Yes"
|
2070 |
+
msgstr "Ano"
|
2071 |
+
|
2072 |
+
#: includes/settings/tabs/wps-general.php:208
|
2073 |
+
msgid "Show stats in admin menu bar"
|
2074 |
+
msgstr "Zobrazit statistiku v admin menu baru"
|
2075 |
+
|
2076 |
+
#: includes/settings/tabs/wps-general.php:145
|
2077 |
+
msgid "Coefficient per visitor"
|
2078 |
+
msgstr "Koeficient na návštěvníka"
|
2079 |
+
|
2080 |
+
#: includes/settings/tabs/wps-general.php:150
|
2081 |
+
msgid "For each visit to account for several hits. Currently %s."
|
2082 |
+
msgstr "Pro každou návštěvu k účtu pro několik hitů. V současné době %s."
|
2083 |
+
|
2084 |
+
#: includes/settings/tabs/wps-general.php:322
|
2085 |
+
msgid "Select when receiving statistics report."
|
2086 |
+
msgstr "Vyberte kdy získat statistický report."
|
2087 |
+
|
2088 |
+
#: includes/settings/tabs/wps-general.php:334
|
2089 |
+
msgid "Email"
|
2090 |
+
msgstr "Email"
|
2091 |
+
|
2092 |
+
#: includes/settings/tabs/wps-general.php:335
|
2093 |
+
msgid "SMS"
|
2094 |
+
msgstr "SMS"
|
2095 |
+
|
2096 |
+
#: includes/settings/tabs/wps-general.php:337
|
2097 |
+
msgid "Type Select Get Status Report."
|
2098 |
+
msgstr "Typ vyberte možnost Get Status zpráva."
|
2099 |
+
|
2100 |
+
#: includes/settings/tabs/wps-general.php:363
|
2101 |
+
msgid "Enter the contents of the reports received."
|
2102 |
+
msgstr "Zadejte obsah hlášení, která obdržel."
|
2103 |
+
|
2104 |
+
#: widget.php:240
|
2105 |
+
msgid "Name"
|
2106 |
+
msgstr "Jméno"
|
2107 |
+
|
2108 |
+
#: widget.php:244
|
2109 |
+
msgid "Items"
|
2110 |
+
msgstr "Položky"
|
2111 |
+
|
2112 |
+
#: widget.php:283
|
2113 |
+
msgid "Select type of search engine"
|
2114 |
+
msgstr "Vyberte typ vyhledávače"
|
2115 |
+
|
2116 |
+
#: includes/log/last-visitor.php:29 includes/log/top-referring.php:36
|
2117 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:134 widget.php:296
|
2118 |
+
msgid "All"
|
2119 |
+
msgstr "Všechno"
|
languages/wp_statistics-de_DE.mo
CHANGED
Binary file
|
languages/wp_statistics-de_DE.po
CHANGED
@@ -2,2104 +2,2163 @@
|
|
2 |
# This file is distributed under the same license as the Wordpress Statistics package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"PO-Revision-Date: 2014-
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
-
"X-Generator: Poedit 1.6.
|
11 |
"Project-Id-Version: Wordpress Statistics\n"
|
12 |
"POT-Creation-Date: \n"
|
13 |
"Last-Translator: \n"
|
14 |
"Language-Team: \n"
|
15 |
"Language: de_DE\n"
|
16 |
|
17 |
-
#:
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
#:
|
22 |
-
|
23 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
msgstr ""
|
|
|
|
|
|
|
25 |
|
26 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
msgid ""
|
28 |
"This will replace all IP addresses in the database with hash values and "
|
29 |
"cannot be undo, are you sure?"
|
30 |
msgstr ""
|
|
|
|
|
31 |
|
32 |
-
#:
|
33 |
msgid ""
|
34 |
"Updates any unknown location data in the database, this may take a while"
|
35 |
msgstr ""
|
36 |
-
"
|
37 |
-
"
|
38 |
|
39 |
-
#:
|
40 |
-
#:
|
41 |
msgid "IP Addresses"
|
42 |
msgstr "IP-Adressen"
|
43 |
|
44 |
-
#:
|
45 |
-
#:
|
46 |
msgid "Hash IP Addresses"
|
47 |
-
msgstr "IP-Adressen
|
48 |
|
49 |
-
#:
|
50 |
msgid ""
|
51 |
"Replace IP addresses in the database with hash values, you will not be able "
|
52 |
"to recover the IP addresses in the future to populate location information "
|
53 |
"afterwards and this may take a while"
|
54 |
msgstr ""
|
55 |
-
"
|
56 |
-
"
|
57 |
-
"
|
58 |
-
"Ermittlungen wiederherzustellen!"
|
59 |
|
60 |
-
#:
|
61 |
msgid "IP Addresses replaced with hash values."
|
62 |
-
msgstr "IP-Adressen
|
63 |
|
64 |
-
#:
|
65 |
msgid "Force robot list update after upgrades"
|
66 |
-
msgstr "
|
67 |
|
68 |
-
#:
|
69 |
msgid ""
|
70 |
"Force the robot list to be reset to the default after an update to WP "
|
71 |
"Statistics takes place. Note if this option is enabled any custom robots "
|
72 |
"you have added to the list will be lost."
|
73 |
msgstr ""
|
74 |
-
"
|
75 |
-
"
|
76 |
-
"
|
|
|
77 |
|
78 |
-
#:
|
79 |
msgid "This will delete the manual when you save the settings, are you sure?"
|
80 |
msgstr ""
|
81 |
-
"
|
82 |
-
"
|
83 |
-
|
84 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:67
|
85 |
-
msgid ""
|
86 |
-
"BETA: This feature will not store IP addresses in the database but instead "
|
87 |
-
"used a unique hash. The \"Store entire user agent string\" setting will be "
|
88 |
-
"disabled if this is selected. You will not be able to recover the IP "
|
89 |
-
"addresses in the future to recover location information if this is enabled."
|
90 |
-
msgstr ""
|
91 |
-
"BETA: Dieses Feature speichert keine IP-Adressen in der Datenbank, sondern "
|
92 |
-
"ersetzt diese mit einer eindeutigen Hash-Summe. Wenn diese Einstellung "
|
93 |
-
"aktiviert ist, ist es nicht möglich die IP-Adressen später fü"
|
94 |
-
"r Standort-Ermittlungen wiederherzustellen! Außerdem wird die "
|
95 |
-
"Einstellung \"Gesamten User Agent-String speichern\" deaktiviert, wenn "
|
96 |
-
"dieses Feature aktiviert wird."
|
97 |
|
98 |
-
#:
|
99 |
msgid ""
|
100 |
"By default WP Statistics displays an alert if any of the core features are "
|
101 |
"disabled on every admin page, this option will disable these notices."
|
102 |
msgstr ""
|
103 |
-
"WP
|
104 |
-
"
|
105 |
-
"
|
106 |
|
107 |
-
#:
|
108 |
msgid "Delete the manual"
|
109 |
-
msgstr "
|
110 |
|
111 |
-
#:
|
112 |
msgid ""
|
113 |
"By default WP Statistics stores the admin manual in the plugin directory (~5 "
|
114 |
"meg), if this option is enabled it will be deleted now and during upgrades "
|
115 |
"in the future."
|
116 |
msgstr ""
|
117 |
-
"WP
|
118 |
-
"
|
|
|
119 |
|
120 |
-
#:
|
121 |
msgid "Database Index"
|
122 |
-
msgstr "
|
123 |
|
124 |
-
#:
|
125 |
-
msgid ""
|
126 |
-
"Older installs of WP Statistics allow for duplicate entires in the visitors "
|
127 |
-
"table in a corner case. Newer installs protect against this with a unique "
|
128 |
-
"index on the table. To create the index on the older installs duplicate "
|
129 |
-
"entries must be deleted first. Clicking \"Update Now\" will scan the "
|
130 |
-
"vistitors table, delete duplicate entries and add the index."
|
131 |
-
msgstr ""
|
132 |
-
|
133 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
134 |
msgid ""
|
135 |
"This operation could take a long time on installs with many rows in the "
|
136 |
"visitors table."
|
137 |
msgstr ""
|
|
|
|
|
138 |
|
139 |
-
#:
|
140 |
-
msgid ""
|
141 |
-
"Older installs of WP Statistics allow for duplicate entires in the visitors "
|
142 |
-
"table in a corner case. Newer installs protect against this with a unique "
|
143 |
-
"index on the table."
|
144 |
-
msgstr ""
|
145 |
-
"Ältere Versionen von WP-Statistics erlauben in manchen Fällen "
|
146 |
-
"mehrfache Einträge in der Besucher-Tabelle. Aktuellere Versionen "
|
147 |
-
"verhindern das mit einem eindeutigen Index für diese Tabelle."
|
148 |
-
|
149 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:31
|
150 |
-
msgid ""
|
151 |
-
"Congradulations, your installation is already up to date, nothing to do."
|
152 |
-
msgstr ""
|
153 |
-
"Glückwunsch - die installierte Version ist aktuell und erfordert keine "
|
154 |
-
"Änderungen."
|
155 |
-
|
156 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:118
|
157 |
msgid "Database"
|
158 |
msgstr "Datenbank"
|
159 |
|
160 |
-
#:
|
161 |
msgid "Schedule"
|
162 |
-
msgstr ""
|
163 |
|
164 |
-
#:
|
165 |
msgid "Send reports via"
|
166 |
-
msgstr ""
|
167 |
|
168 |
-
#:
|
169 |
msgid "E-mail addresses"
|
170 |
-
msgstr ""
|
171 |
|
172 |
-
#:
|
173 |
msgid ""
|
174 |
"A comma separated list of e-mail addresses to send the reports to if e-mail "
|
175 |
"is selected above."
|
176 |
msgstr ""
|
|
|
|
|
177 |
|
178 |
-
#:
|
179 |
msgid "Report body"
|
180 |
-
msgstr ""
|
181 |
|
182 |
-
#:
|
183 |
msgid "The following three items are global to all users."
|
184 |
-
msgstr "Die folgenden drei
|
185 |
|
186 |
-
#:
|
187 |
msgid "Map type"
|
188 |
-
msgstr "
|
189 |
|
190 |
-
#:
|
191 |
msgid "JQVMap"
|
192 |
-
msgstr ""
|
193 |
|
194 |
-
#:
|
195 |
msgid ""
|
196 |
"The \"Google\" option will use Google's mapping service to plot the recent "
|
197 |
"visitors (requires access to Google)."
|
198 |
msgstr ""
|
199 |
-
"\"Google\"
|
200 |
-
"
|
201 |
-
"Karten-Service."
|
202 |
|
203 |
-
#:
|
204 |
msgid ""
|
205 |
"The \"JQVMap\" option will use JQVMap javascript mapping library to plot the "
|
206 |
"recent visitors (requires no extenral services)."
|
207 |
msgstr ""
|
208 |
-
"\"JQVMap\"
|
209 |
-
"
|
210 |
|
211 |
-
#:
|
212 |
msgid ""
|
213 |
"This feature may cause a performance degradation when viewing statistics and "
|
214 |
"is only valid if the map type is set to \"Google\"."
|
215 |
msgstr ""
|
216 |
-
"
|
217 |
-
"
|
218 |
-
"
|
219 |
|
220 |
-
#:
|
221 |
msgid "Browsers by type"
|
222 |
-
msgstr "Browser
|
223 |
|
224 |
-
#:
|
225 |
msgid "Browsers by platform"
|
226 |
-
msgstr "Browser-
|
227 |
|
228 |
-
#:
|
229 |
msgid "Excluded hits in the last"
|
230 |
-
msgstr "
|
231 |
|
232 |
-
#:
|
233 |
msgid "Hits Statistics Chart"
|
234 |
-
msgstr "
|
235 |
|
236 |
-
#:
|
237 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:39
|
238 |
msgid "Hits in the last"
|
239 |
-
msgstr "
|
240 |
|
241 |
-
#:
|
242 |
-
#:
|
243 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:36
|
244 |
msgid "Latest Search Words"
|
245 |
-
msgstr "Suchbegriffe"
|
246 |
|
247 |
-
#:
|
248 |
msgid "Latest Search Word Statistics"
|
249 |
-
msgstr "
|
250 |
|
251 |
-
#:
|
252 |
msgid "Recent Visitor Statistics"
|
253 |
-
msgstr "
|
254 |
|
255 |
-
#:
|
256 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:9
|
257 |
msgid "Today Visitors Map"
|
258 |
-
msgstr "
|
259 |
|
260 |
-
#:
|
261 |
msgid "Summary"
|
262 |
msgstr "Zusammenfassung"
|
263 |
|
264 |
-
#:
|
265 |
msgid "User(s) Online"
|
266 |
-
msgstr "Benutzer
|
267 |
|
268 |
-
#:
|
269 |
msgid "Top 10 Browsers"
|
270 |
-
msgstr "Top 10
|
271 |
|
272 |
-
#:
|
273 |
-
#:
|
274 |
-
#:
|
275 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:26
|
276 |
msgid "Top Referring Sites"
|
277 |
msgstr "Top verweisende Websites"
|
278 |
|
279 |
-
#:
|
280 |
msgid "Rate and Review"
|
281 |
-
msgstr "
|
282 |
|
283 |
-
#:
|
284 |
msgid "More Information"
|
285 |
msgstr "Weitere Informationen"
|
286 |
|
287 |
-
#:
|
288 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:8
|
289 |
msgid ""
|
290 |
"This product includes GeoLite2 data created by MaxMind, available from %s."
|
291 |
msgstr ""
|
292 |
-
"Dieses
|
293 |
-
"%s."
|
294 |
|
295 |
-
#:
|
296 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:46
|
297 |
msgid "Search engine referrals in the last"
|
298 |
-
msgstr "
|
299 |
|
300 |
-
#:
|
301 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:66
|
302 |
msgid "Number of referrals"
|
303 |
msgstr "Anzahl der Verweise"
|
304 |
|
305 |
-
#:
|
306 |
msgid "Top 10 Pages"
|
307 |
msgstr "Top 10 Seiten"
|
308 |
|
309 |
-
#:
|
310 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:36
|
311 |
msgid "Search Engine Referral Statistics"
|
312 |
-
msgstr "
|
313 |
|
314 |
-
#:
|
315 |
msgid "WP Statistics V%s"
|
316 |
-
msgstr ""
|
317 |
|
318 |
-
#:
|
319 |
msgid "Visit Us Online"
|
320 |
-
msgstr "
|
321 |
-
|
322 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:20
|
323 |
-
msgid ""
|
324 |
-
"Come visit our great new <a href=\"http://wp-statistics.com\" target=\"_blank"
|
325 |
-
"\">website</a> and keep up to date on the latest news about WP Statistics."
|
326 |
-
msgstr ""
|
327 |
-
"Besuche unsere neue <a href=\"http://wp-statistics.com\" target=\"_blank"
|
328 |
-
"\">Website</a> und bleib am Laufenden über die Neuerungen von WP-"
|
329 |
-
"Statistics."
|
330 |
|
331 |
-
#:
|
332 |
msgid "Rate and Review at WordPress.org"
|
333 |
-
msgstr "
|
334 |
|
335 |
-
#:
|
336 |
msgid "Thanks for installing WP Statistics, we encourage you to submit a "
|
337 |
msgstr ""
|
338 |
-
"
|
339 |
-
"
|
340 |
|
341 |
-
#:
|
342 |
msgid "rating and review"
|
343 |
-
msgstr "Bewertung
|
344 |
|
345 |
-
#:
|
346 |
msgid "over at WordPress.org. Your feedback is greatly appreciated!"
|
347 |
-
msgstr "
|
348 |
|
349 |
-
#:
|
350 |
-
msgid ""
|
351 |
-
"WP Statistics supports internationalization and we encourage our users to "
|
352 |
-
"submit translations, please visit our <a href=\"http://teamwork.wp-parsi.com/"
|
353 |
-
"projects/wp-statistics\" target=\"_blank\">translation collaboration site</"
|
354 |
-
"a> to see the current status and <a href=\"http://wp-statistics.com/contact/"
|
355 |
-
"\" target=\"_blank\">drop us a line</a> if you would like to help."
|
356 |
-
msgstr ""
|
357 |
-
"WP Statistics unterstützt die Übersetzung in jede gewünschte "
|
358 |
-
"Sprache, den aktuellen Stand der Übersetzungen kannst du auf unserer <a "
|
359 |
-
"href=\"http://teamwork.wp-parsi.com/projects/wp-statistics\" target=\"_blank"
|
360 |
-
"\">Übersetzungsseite</a> einsehen. <a href=\"http://wp-statistics.com/"
|
361 |
-
"contact/\" target=\"_blank\">Kontaktiere uns</a>, wenn du uns unterstü"
|
362 |
-
"tzen möchtest."
|
363 |
-
|
364 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:45
|
365 |
msgid ""
|
366 |
"We're sorry you're having problem with WP Statistics and we're happy to help "
|
367 |
"out. Here are a few things to do before contacting us:"
|
368 |
msgstr ""
|
369 |
-
"
|
370 |
-
"helfen.
|
371 |
|
372 |
-
#:
|
373 |
-
msgid ""
|
374 |
-
"Have you read the <a title=\"FAQs\" href=\"http://wp-statistics.com/?"
|
375 |
-
"page_id=19\" target=_blank>FAQs</a>?"
|
376 |
-
msgstr ""
|
377 |
-
"du die <a title=\"FAQs\" href=\"http://wp-statistics.com/?page_id=19\" "
|
378 |
-
"target=_blank>FAQs</a> gelesen hast"
|
379 |
-
|
380 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:49
|
381 |
-
msgid ""
|
382 |
-
"Have you read the <a title=\"Manual\" href=\"?page=wps_manual_menu\">manual</"
|
383 |
-
"a>?"
|
384 |
-
msgstr ""
|
385 |
-
"du die <a title=\"Manual\" href=\"?page=wps_manual_menu"
|
386 |
-
"\">Benutzerdokumentation</a> gelesen hast"
|
387 |
-
|
388 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:50
|
389 |
-
msgid ""
|
390 |
-
"Have you search the <a href=\"http://wordpress.org/support/plugin/wp-"
|
391 |
-
"statistics\" target=\"_blank\">support forum</a> for a similar issue?"
|
392 |
-
msgstr ""
|
393 |
-
"du im <a href=\"http://wordpress.org/support/plugin/wp-statistics\" target="
|
394 |
-
"\"_blank\">Support Forum</a> nach gleichen/ähnlichen Problemen gesucht "
|
395 |
-
"und keine Antwort gefunden hast"
|
396 |
-
|
397 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:53
|
398 |
msgid "And a few things to double-check:"
|
399 |
-
msgstr "
|
400 |
|
401 |
-
#:
|
402 |
msgid "How's your memory_limit in php.ini?"
|
403 |
-
msgstr "Wie ist
|
404 |
|
405 |
-
#:
|
406 |
msgid "Have you tried disabling any other plugins you may have installed?"
|
407 |
-
msgstr "
|
|
|
|
|
408 |
|
409 |
-
#:
|
410 |
msgid "Have you tried using the default WordPress theme?"
|
411 |
-
msgstr "
|
412 |
|
413 |
-
#:
|
414 |
msgid "Have you double checked the plugin settings?"
|
415 |
-
msgstr "
|
416 |
|
417 |
-
#:
|
418 |
msgid "Do you have all the required PHP extensions installed?"
|
419 |
-
msgstr "
|
420 |
|
421 |
-
#:
|
422 |
msgid "Still not having any luck?"
|
423 |
-
msgstr "
|
424 |
-
|
425 |
-
#:
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
"support/plugin/wp-statistics\" target=\"_blank\">WordPress.org Support "
|
433 |
-
"Forum</a>, wir werden uns so schnell wie möglich darum kümmern."
|
434 |
-
|
435 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:67
|
436 |
-
msgid ""
|
437 |
-
"Alternatively <a href=\"http://forum.wp-parsi.com/forum/17-%D9%85%D8%B4%DA"
|
438 |
-
"%A9%D9%84%D8%A7%D8%AA-%D8%AF%DB%8C%DA%AF%D8%B1/\" target=\"_blank\">Farsi</"
|
439 |
-
"a> support is available as well."
|
440 |
-
msgstr ""
|
441 |
-
"Alternativ ist auch <a href=\"http://forum.wp-parsi.com/forum/17-"
|
442 |
-
"%D9%85%D8%B4%DA%A9%D9%84%D8%A7%D8%AA-%D8%AF%DB%8C%DA%AF%D8%B1/\" target="
|
443 |
-
"\"_blank\">Farsi</a>-Support verfügbar."
|
444 |
-
|
445 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:17
|
446 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:35
|
447 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:128
|
448 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:169
|
449 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:193
|
450 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:303
|
451 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:333
|
452 |
msgid "Please select"
|
453 |
-
msgstr "Bitte
|
454 |
|
455 |
-
#:
|
456 |
msgid ""
|
457 |
"Any shortcode supported by your installation of WordPress, include all "
|
458 |
"shortcodes for WP Statistics (see the admin manual for a list of codes "
|
459 |
"available) are supported in the body of the message."
|
460 |
msgstr ""
|
|
|
|
|
|
|
|
|
461 |
|
462 |
-
#:
|
463 |
msgid ""
|
464 |
"Input data codes are now deprecated and will be removed in a future version "
|
465 |
"of WP Statistics, please use the appropriate shortcodes, they are included "
|
466 |
"here only for historical purposes:"
|
467 |
msgstr ""
|
|
|
|
|
|
|
468 |
|
469 |
-
#:
|
470 |
msgid ""
|
471 |
"IP location services provided by GeoLite2 data created by MaxMind, available "
|
472 |
"from %s."
|
473 |
msgstr ""
|
474 |
-
"IP-
|
475 |
-
"
|
476 |
|
477 |
-
#:
|
478 |
-
#:
|
479 |
msgid "None"
|
480 |
-
msgstr ""
|
481 |
|
482 |
-
#:
|
483 |
-
#:
|
484 |
msgid "About"
|
485 |
-
msgstr "
|
486 |
|
487 |
-
#:
|
488 |
msgid "Widgets to Display"
|
489 |
-
msgstr "Widgets
|
490 |
|
491 |
-
#:
|
492 |
msgid ""
|
493 |
"The following items are unique to each user. If you do not select the "
|
494 |
"'About' widget it will automatically be displayed in the last positon of "
|
495 |
"column A."
|
496 |
msgstr ""
|
497 |
-
"Die folgenden
|
498 |
-
"
|
499 |
-
"
|
500 |
|
501 |
-
#:
|
502 |
msgid "Slot"
|
503 |
-
msgstr "
|
504 |
|
505 |
-
#:
|
506 |
msgid "Column A"
|
507 |
msgstr "Spalte A"
|
508 |
|
509 |
-
#:
|
510 |
msgid "Column B"
|
511 |
msgstr "Spalte B"
|
512 |
|
513 |
-
#:
|
514 |
msgid "Slot 1"
|
515 |
-
msgstr "
|
516 |
|
517 |
-
#:
|
518 |
msgid "Slot 2"
|
519 |
-
msgstr "
|
520 |
|
521 |
-
#:
|
522 |
msgid "Slot 3"
|
523 |
-
msgstr "
|
524 |
|
525 |
-
#:
|
526 |
msgid "Slot 4"
|
527 |
-
msgstr "
|
528 |
|
529 |
-
#:
|
530 |
msgid "Slot 5"
|
531 |
-
msgstr "
|
532 |
|
533 |
-
#:
|
534 |
msgid "Slot 6"
|
535 |
-
msgstr "
|
536 |
|
537 |
-
#:
|
538 |
msgid "N/A"
|
539 |
-
msgstr ""
|
540 |
|
541 |
-
#:
|
542 |
msgid "Search Engine Referred"
|
543 |
-
msgstr ""
|
544 |
|
545 |
-
#:
|
546 |
msgid "Once Weekly"
|
547 |
-
msgstr ""
|
548 |
|
549 |
-
#:
|
550 |
msgid "Once Every 2 Weeks"
|
551 |
-
msgstr ""
|
552 |
|
553 |
-
#:
|
554 |
msgid "Once Every 4 Weeks"
|
555 |
-
msgstr ""
|
556 |
|
557 |
-
#:
|
558 |
msgid "Complete statistics for your WordPress site."
|
559 |
-
msgstr ""
|
560 |
-
|
561 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:67
|
562 |
-
msgid ""
|
563 |
-
"Online user tracking in WP Statistics is not enabled, please go to <a href="
|
564 |
-
"\"%s\">setting page</a> and enable it."
|
565 |
-
msgstr ""
|
566 |
-
|
567 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:70
|
568 |
-
msgid ""
|
569 |
-
"Hit tracking in WP Statistics is not enabled, please go to <a href=\"%s"
|
570 |
-
"\">setting page</a> and enable it."
|
571 |
-
msgstr ""
|
572 |
-
|
573 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:73
|
574 |
-
msgid ""
|
575 |
-
"Visitor tracking in WP Statistics is not enabled, please go to <a href=\"%s"
|
576 |
-
"\">setting page</a> and enable it."
|
577 |
-
msgstr ""
|
578 |
|
579 |
-
#:
|
580 |
-
msgid ""
|
581 |
-
"GeoIP collection is not active, please go to <a href=\"%s\">Setting page > "
|
582 |
-
"GeoIP</a> and enable this feature (GeoIP can detect the visitors country)"
|
583 |
-
msgstr ""
|
584 |
-
|
585 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:65
|
586 |
-
msgid "About WP Statistics V%s"
|
587 |
-
msgstr "Über WP Statistics %s"
|
588 |
-
|
589 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:72
|
590 |
msgid "Website"
|
591 |
-
msgstr ""
|
592 |
|
593 |
-
#:
|
594 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:19
|
595 |
msgid "References"
|
596 |
-
msgstr "
|
597 |
|
598 |
-
#:
|
599 |
msgid "PHP Memory Limit"
|
600 |
-
msgstr "PHP
|
601 |
|
602 |
-
#:
|
603 |
msgid "The memory limit a script is allowed to consume, set in php.ini."
|
604 |
msgstr ""
|
605 |
-
"
|
606 |
-
"<code>php.ini</code>."
|
607 |
|
608 |
-
#:
|
609 |
msgid "WP Statistics"
|
610 |
-
msgstr ""
|
611 |
|
612 |
-
#:
|
613 |
msgid "Visit WordPress.org page"
|
614 |
-
msgstr ""
|
615 |
|
616 |
-
#:
|
617 |
msgid "Page Trend for Post ID"
|
618 |
-
msgstr "
|
619 |
|
620 |
-
#:
|
621 |
msgid "Page Trend"
|
622 |
-
msgstr "
|
623 |
|
624 |
-
#:
|
625 |
msgid "Page Trending Stats"
|
626 |
-
msgstr ""
|
627 |
|
628 |
-
#:
|
629 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:43
|
630 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:54
|
631 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:65
|
632 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:76
|
633 |
-
msgid "Number of rows in the <code>%s</code> table"
|
634 |
-
msgstr "Anzahl der Zeilen in der Tabelle <code>%s</code>"
|
635 |
-
|
636 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:97
|
637 |
msgid "Record exclusions"
|
638 |
-
msgstr "
|
639 |
|
640 |
-
#:
|
641 |
msgid "Robot list"
|
642 |
-
msgstr "
|
643 |
|
644 |
-
#:
|
645 |
msgid "Excluded IP address list"
|
646 |
-
msgstr "IP-
|
647 |
|
648 |
-
#:
|
649 |
msgid ""
|
650 |
"A list of IP addresses and subnet masks (one per line) to exclude from "
|
651 |
"statistics collection (both 192.168.0.0/24 and 192.168.0.0/255.255.255.0 "
|
652 |
"formats are accepted). To specify an IP address only, use a subnet value of "
|
653 |
"32 or 255.255.255.255."
|
654 |
msgstr ""
|
655 |
-
"Eine Liste
|
656 |
-
"
|
657 |
-
"
|
658 |
-
"
|
659 |
-
"255.255.255.255 verwendet werden."
|
660 |
|
661 |
-
#:
|
662 |
msgid "Excluded login page"
|
663 |
-
msgstr "Login-Seite
|
664 |
|
665 |
-
#:
|
666 |
msgid "Excluded admin pages"
|
667 |
-
msgstr "Admin-Seiten
|
668 |
|
669 |
-
#:
|
670 |
msgid "Users Online"
|
671 |
-
msgstr "Benutzer
|
672 |
|
673 |
-
#:
|
674 |
msgid "User online"
|
675 |
msgstr "Benutzer online"
|
676 |
|
677 |
-
#:
|
678 |
msgid "Track all pages"
|
679 |
-
msgstr "Alle Seiten
|
680 |
|
681 |
-
#:
|
682 |
msgid "Disable hits column in post/pages list"
|
683 |
-
msgstr ""
|
684 |
-
"\"Aufrufe\"-Spalte in Beiträgen/Seiten-Listen im Admin-Bereich "
|
685 |
-
"deaktivieren"
|
686 |
|
687 |
-
#:
|
688 |
msgid "Miscellaneous"
|
689 |
-
msgstr "
|
690 |
|
691 |
-
#:
|
692 |
msgid "Click here to visit the plugin on WordPress.org"
|
693 |
-
msgstr ""
|
694 |
|
695 |
-
#:
|
696 |
msgid "Click here to rate and review this plugin on WordPress.org"
|
697 |
msgstr ""
|
|
|
|
|
698 |
|
699 |
-
#:
|
700 |
msgid "Rate this plugin"
|
701 |
-
msgstr ""
|
702 |
|
703 |
-
#:
|
704 |
msgid "WP Statistics - Hits"
|
705 |
-
msgstr ""
|
706 |
|
707 |
-
#:
|
708 |
msgid "Error downloading GeoIP database from: %s - %s"
|
709 |
-
msgstr ""
|
710 |
|
711 |
-
#:
|
712 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:93
|
713 |
msgid "Total Page Views"
|
714 |
-
msgstr ""
|
715 |
|
716 |
-
#:
|
717 |
-
#:
|
718 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:241
|
719 |
msgid "Pages"
|
720 |
-
msgstr "
|
721 |
|
722 |
-
#:
|
723 |
msgid "Manual"
|
724 |
-
msgstr ""
|
725 |
|
726 |
-
#:
|
727 |
msgid "Download ODF file"
|
728 |
-
msgstr ""
|
729 |
|
730 |
-
#:
|
731 |
msgid "Download HTML file"
|
732 |
-
msgstr ""
|
733 |
|
734 |
-
#:
|
735 |
msgid "Manual file not found."
|
736 |
-
msgstr ""
|
737 |
|
738 |
-
#:
|
739 |
msgid "Exclusions Statistics"
|
740 |
-
msgstr "
|
741 |
|
742 |
-
#:
|
743 |
msgid "Top Pages Visited"
|
744 |
-
msgstr "
|
745 |
|
746 |
-
#:
|
747 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:27
|
748 |
msgid "No page title found"
|
749 |
-
msgstr "
|
750 |
|
751 |
-
#:
|
752 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:121
|
753 |
msgid "Top Pages"
|
754 |
-
msgstr "
|
755 |
|
756 |
-
#:
|
757 |
msgid "Top 5 Pages Trends"
|
758 |
-
msgstr "Top 5
|
759 |
|
760 |
-
#:
|
761 |
msgid "Top 5 Page Trending Stats"
|
762 |
-
msgstr "
|
763 |
|
764 |
-
#:
|
765 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:69
|
766 |
msgid "Number of Hits"
|
767 |
-
msgstr "Anzahl der
|
768 |
|
769 |
-
#:
|
770 |
msgid "Manual not found: %s"
|
771 |
-
msgstr ""
|
772 |
|
773 |
-
#:
|
774 |
msgid "Invalid file type selected: %s"
|
775 |
-
msgstr ""
|
776 |
|
777 |
-
#:
|
778 |
msgid "Search Engine referred"
|
779 |
-
msgstr ""
|
780 |
|
781 |
-
#:
|
782 |
msgid "Include Header Row"
|
783 |
-
msgstr "Kopfzeile
|
784 |
|
785 |
-
#:
|
786 |
msgid "Include a header row as the first line of the exported file."
|
787 |
-
msgstr "
|
788 |
|
789 |
-
#:
|
790 |
msgid "PHP Safe Mode"
|
791 |
-
msgstr "PHP
|
792 |
|
793 |
-
#:
|
794 |
msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
|
795 |
msgstr ""
|
796 |
-
"PHP
|
797 |
-
"
|
798 |
|
799 |
-
#:
|
800 |
msgid "GeoIP collection is disabled due to the following reasons:"
|
801 |
-
msgstr "
|
802 |
|
803 |
-
#:
|
804 |
msgid ""
|
805 |
"PHP safe mode detected! GeoIP collection is not supported with PHP's safe "
|
806 |
"mode enabled!"
|
807 |
msgstr ""
|
|
|
|
|
808 |
|
809 |
-
#:
|
810 |
msgid "Hide admin notices about non active features"
|
811 |
-
msgstr "
|
812 |
|
813 |
-
#:
|
814 |
msgid "Search Enginges"
|
815 |
-
msgstr "
|
816 |
|
817 |
-
#:
|
818 |
msgid ""
|
819 |
"Disabling all search engines is not allowed, doing so will result in all "
|
820 |
"search engines being active."
|
821 |
msgstr ""
|
822 |
-
"
|
823 |
-
"
|
824 |
|
825 |
-
#:
|
826 |
msgid "disable"
|
827 |
msgstr "Deaktivieren"
|
828 |
|
829 |
-
#:
|
830 |
msgid "Disable %s from data collection and reporting."
|
831 |
-
msgstr "
|
832 |
|
833 |
-
#:
|
834 |
msgid "cURL Version"
|
835 |
-
msgstr "cURL
|
836 |
|
837 |
-
#:
|
838 |
msgid "cURL not installed"
|
839 |
-
msgstr "cURL
|
840 |
|
841 |
-
#:
|
842 |
msgid ""
|
843 |
"The PHP cURL Extension version you are running. cURL is required for the "
|
844 |
"GeoIP code, if it is not installed GeoIP will be disabled."
|
845 |
msgstr ""
|
846 |
-
"
|
847 |
-
"
|
848 |
|
849 |
-
#:
|
850 |
msgid "BC Math"
|
851 |
msgstr "BC Math"
|
852 |
|
853 |
-
#:
|
854 |
msgid "Installed"
|
855 |
msgstr "Installiert"
|
856 |
|
857 |
-
#:
|
858 |
msgid "Not installed"
|
859 |
msgstr "Nicht installiert"
|
860 |
|
861 |
-
#:
|
862 |
-
msgid ""
|
863 |
-
"If the PHP BC Math Extension is installed. BC Math is required for the "
|
864 |
-
"GeoIP code, if it is not installed GeoIP will be disabled."
|
865 |
-
msgstr ""
|
866 |
-
"PHP \"BC Math\"-Erweiterung installiert/nicht installiert. Die Funktion von "
|
867 |
-
"GeoIP wird deaktiviert, wenn die Erweiterung nicht installiert ist."
|
868 |
-
|
869 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:114
|
870 |
msgid ""
|
871 |
"GeoIP collection requires the cURL PHP extension and it is not loaded on "
|
872 |
"your version of PHP!"
|
873 |
msgstr ""
|
|
|
|
|
874 |
|
875 |
-
#:
|
876 |
msgid ""
|
877 |
"GeoIP collection requires the BC Math PHP extension and it is not loaded on "
|
878 |
"your version of PHP!"
|
879 |
msgstr ""
|
|
|
|
|
880 |
|
881 |
-
#:
|
882 |
msgid ""
|
883 |
"Unable to load the GeoIP database, make sure you have downloaded it in the "
|
884 |
"settings page."
|
885 |
msgstr ""
|
|
|
|
|
886 |
|
887 |
-
#:
|
888 |
msgid "Database file does not exist."
|
889 |
-
msgstr ""
|
890 |
|
891 |
-
#:
|
892 |
msgid "Search for"
|
893 |
-
msgstr ""
|
894 |
|
895 |
-
#:
|
896 |
-
#:
|
897 |
-
#:
|
898 |
-
#:
|
899 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:9
|
900 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:13
|
901 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:8
|
902 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:16
|
903 |
msgid "More"
|
904 |
-
msgstr "Mehr
|
905 |
-
|
906 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:16
|
907 |
-
msgid "GeoIP File Info"
|
908 |
-
msgstr "GeoIP-Informationen"
|
909 |
|
910 |
-
#:
|
911 |
-
msgid "File Date"
|
912 |
-
msgstr "Datei-Datum"
|
913 |
-
|
914 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:34
|
915 |
-
msgid "The file date of the GeoIP database."
|
916 |
-
msgstr "Änderungs- oder Erstellungsdatum der GeoIP-Datenbank-Datei."
|
917 |
-
|
918 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:40
|
919 |
-
msgid "File Size"
|
920 |
-
msgstr "Dateigröße"
|
921 |
-
|
922 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:57
|
923 |
-
msgid "The file size of the GeoIP database."
|
924 |
-
msgstr "Dateigröße der GeoIP-Datenbank-Datei."
|
925 |
-
|
926 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:269
|
927 |
msgid "Include totals"
|
928 |
-
msgstr "
|
929 |
|
930 |
-
#:
|
931 |
msgid ""
|
932 |
"Add a total line to charts with multiple values, like the search engine "
|
933 |
"referrals"
|
934 |
msgstr ""
|
935 |
-
"
|
936 |
-
"
|
937 |
|
938 |
-
#:
|
939 |
msgid "Disable map"
|
940 |
-
msgstr "Karte deaktivieren"
|
941 |
|
942 |
-
#:
|
943 |
msgid "Disable the map display"
|
944 |
-
msgstr "
|
945 |
|
946 |
-
#:
|
947 |
msgid "Get country location from Google"
|
948 |
-
msgstr "
|
949 |
|
950 |
-
#:
|
951 |
msgid ""
|
952 |
"Attention: Exclusion are not currently set to be recorded, the results below "
|
953 |
"may not reflect current statistics!"
|
954 |
msgstr ""
|
955 |
-
"Achtung:
|
956 |
-
"
|
957 |
|
958 |
-
#:
|
959 |
msgid "Number of excluded hits"
|
960 |
-
msgstr "Anzahl der
|
961 |
|
962 |
-
#:
|
963 |
msgid ""
|
964 |
"Hint: manage_network = Super Admin Network, manage_options = Administrator, "
|
965 |
"edit_others_posts = Editor, publish_posts = Author, edit_posts = "
|
966 |
"Contributor, read = Everyone."
|
967 |
msgstr ""
|
968 |
-
"Hinweis:
|
969 |
-
"
|
970 |
-
"
|
971 |
|
972 |
-
#:
|
973 |
-
#:
|
974 |
msgid "Enable"
|
975 |
msgstr "Aktivieren"
|
976 |
|
977 |
-
#:
|
978 |
msgid ""
|
979 |
"This will record all the excluded hits in a separate table with the reasons "
|
980 |
"why it was excluded but no other information. This will generate a lot of "
|
981 |
"data but is useful if you want to see the total number of hits your site "
|
982 |
"gets, not just actual user visits."
|
983 |
msgstr ""
|
984 |
-
"
|
985 |
-
"
|
986 |
-
"
|
987 |
-
"
|
988 |
-
"
|
989 |
-
"verfolgen, und nicht nur reine Besucher-Zugriffe."
|
990 |
|
991 |
-
#:
|
992 |
msgid "Site URL Exclusions"
|
993 |
-
msgstr "URL-
|
994 |
|
995 |
-
#:
|
996 |
msgid "Exclude the login page for registering as a hit."
|
997 |
-
msgstr "
|
998 |
|
999 |
-
#:
|
1000 |
msgid "Exclude the admin pages for registering as a hit."
|
1001 |
-
msgstr ""
|
1002 |
-
"Alle Seiten des Administrationsbereichs von der Statistik ausschließen."
|
1003 |
|
1004 |
-
#:
|
1005 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:236
|
1006 |
msgid "Exclusions"
|
1007 |
-
msgstr "
|
1008 |
|
1009 |
-
#:
|
1010 |
msgid "Total Exclusions: %s"
|
1011 |
-
msgstr "
|
1012 |
|
1013 |
-
#:
|
1014 |
msgid "Exclusions Statistical Chart"
|
1015 |
-
msgstr "
|
1016 |
|
1017 |
-
#:
|
1018 |
msgid "Access Levels"
|
1019 |
-
msgstr "
|
1020 |
|
1021 |
-
#:
|
1022 |
msgid "Resources/Information"
|
1023 |
-
msgstr "Ressourcen/
|
1024 |
|
1025 |
-
#:
|
1026 |
msgid "Purging"
|
1027 |
-
msgstr "
|
1028 |
|
1029 |
-
#:
|
1030 |
msgid "Updates"
|
1031 |
-
msgstr ""
|
1032 |
|
1033 |
-
#:
|
1034 |
msgid "Access/Exclusions"
|
1035 |
-
msgstr "
|
1036 |
|
1037 |
-
#:
|
1038 |
msgid "Maintenance"
|
1039 |
-
msgstr "
|
1040 |
|
1041 |
-
#:
|
1042 |
msgid "Update"
|
1043 |
-
msgstr "
|
1044 |
|
1045 |
-
#:
|
1046 |
msgid "General"
|
1047 |
-
msgstr "
|
1048 |
|
1049 |
-
#:
|
1050 |
msgid "Error, %s not emptied!"
|
1051 |
-
msgstr ""
|
1052 |
|
1053 |
-
#:
|
1054 |
msgid "Data"
|
1055 |
msgstr "Daten"
|
1056 |
|
1057 |
-
#:
|
1058 |
msgid "Purge records older than"
|
1059 |
-
msgstr "
|
1060 |
|
1061 |
-
#:
|
1062 |
msgid ""
|
1063 |
"Deleted user statistics data older than the selected number of days. "
|
1064 |
"Minimum value is 30 days."
|
1065 |
msgstr ""
|
1066 |
-
"Daten
|
1067 |
-
"
|
1068 |
|
1069 |
-
#:
|
1070 |
msgid "Purge now!"
|
1071 |
-
msgstr "
|
1072 |
|
1073 |
-
#:
|
1074 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:27
|
1075 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:37
|
1076 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:47
|
1077 |
-
msgid ""
|
1078 |
-
"<code>%s</code> data older than <code>%s</code> days purged successfully."
|
1079 |
-
msgstr ""
|
1080 |
-
|
1081 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:19
|
1082 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:29
|
1083 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:39
|
1084 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:49
|
1085 |
-
msgid "No records found to purge from <code>%s</code>!"
|
1086 |
-
msgstr ""
|
1087 |
-
|
1088 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:55
|
1089 |
msgid "Please select a value over 30 days."
|
1090 |
-
msgstr ""
|
1091 |
|
1092 |
-
#:
|
1093 |
msgid ""
|
1094 |
"This will permanently delete data from the database each day, are you sure "
|
1095 |
"you want to enable this option?"
|
1096 |
msgstr ""
|
|
|
|
|
1097 |
|
1098 |
-
#:
|
1099 |
msgid "Database Maintenance"
|
1100 |
-
msgstr "
|
1101 |
|
1102 |
-
#:
|
1103 |
msgid "Run a daily WP Cron job to prune the databases"
|
1104 |
-
msgstr "
|
|
|
1105 |
|
1106 |
-
#:
|
1107 |
msgid ""
|
1108 |
"A WP Cron job will be run daily to prune any data older than a set number of "
|
1109 |
"days."
|
1110 |
msgstr ""
|
1111 |
-
"
|
1112 |
-
"
|
1113 |
|
1114 |
-
#:
|
1115 |
msgid "Prune data older than"
|
1116 |
-
msgstr "
|
1117 |
|
1118 |
-
#:
|
1119 |
msgid "Days"
|
1120 |
msgstr "Tage"
|
1121 |
|
1122 |
-
#:
|
1123 |
msgid ""
|
1124 |
"The number of days to keep statistics for. Minimum value is 30 days. "
|
1125 |
"Invalid values will disable the daily maintenance."
|
1126 |
msgstr ""
|
1127 |
-
"Anzahl der Tage,
|
1128 |
-
"
|
1129 |
-
"automatisierte tägliche Wartung."
|
1130 |
-
|
1131 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:106
|
1132 |
-
msgid "Date: <code dir=\"ltr\">%s</code></code>"
|
1133 |
-
msgstr "Datum: <code dir=\"ltr\">%s</code>"
|
1134 |
|
1135 |
-
#:
|
1136 |
-
msgid "Time: <code dir=\"ltr\">%s</code>"
|
1137 |
-
msgstr "Zeit: <code dir=\"ltr\">%s</code>"
|
1138 |
-
|
1139 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:83
|
1140 |
msgid "GeoIP"
|
1141 |
msgstr "GeoIP"
|
1142 |
|
1143 |
-
#:
|
|
|
1144 |
msgid "Next update will be"
|
1145 |
-
msgstr ""
|
1146 |
|
1147 |
-
#:
|
1148 |
msgid ""
|
1149 |
"GeoIP collection requires PHP %s or above, it is currently disabled due to "
|
1150 |
"the installed PHP version being "
|
1151 |
msgstr ""
|
1152 |
-
"GeoIP
|
1153 |
-
"Version
|
1154 |
|
1155 |
-
#:
|
1156 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:64
|
1157 |
msgid "Search Engine Referrals"
|
1158 |
-
msgstr "
|
1159 |
|
1160 |
-
#:
|
1161 |
msgid "Daily Total"
|
1162 |
-
msgstr "
|
1163 |
|
1164 |
-
#:
|
1165 |
msgid "Current Time and Date"
|
1166 |
-
msgstr "Aktuelle Uhrzeit
|
1167 |
|
1168 |
-
#:
|
1169 |
-
#:
|
1170 |
-
#:
|
1171 |
msgid "Update Now!"
|
1172 |
-
msgstr "Jetzt aktualisieren"
|
1173 |
-
|
1174 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:85
|
1175 |
-
msgid ""
|
1176 |
-
"See the %sWordPress Roles and Capabilities page%s for details on capability "
|
1177 |
-
"levels."
|
1178 |
-
msgstr ""
|
1179 |
-
"Besuche die %sWordPress Roles and Capabilities%s-Seite, um Details zu Rollen "
|
1180 |
-
"und Berechtigungen in WordPress zu sehen."
|
1181 |
|
1182 |
-
#:
|
1183 |
msgid ""
|
1184 |
"Each of the above casscades the rights upwards in the default WordPress "
|
1185 |
"configuration. So for example selecting publish_posts grants the right to "
|
1186 |
"Authors, Editors, Admins and Super Admins."
|
1187 |
msgstr ""
|
1188 |
-
"
|
1189 |
-
"
|
1190 |
-
"
|
1191 |
-
"und Super-Administratoren vererbt."
|
1192 |
|
1193 |
-
#:
|
1194 |
msgid ""
|
1195 |
"If you need a more robust solution to delegate access you might want to look "
|
1196 |
"at %s in the WordPress plugin directory."
|
1197 |
msgstr ""
|
1198 |
-
"
|
1199 |
-
"
|
1200 |
-
"Verzeichnis."
|
1201 |
|
1202 |
-
#:
|
1203 |
msgid "Required user level to view WP Statistics"
|
1204 |
-
msgstr "
|
1205 |
|
1206 |
-
#:
|
1207 |
msgid "Required user level to manage WP Statistics"
|
1208 |
-
msgstr "
|
1209 |
|
1210 |
-
#:
|
1211 |
msgid "Schedule monthly update of GeoIP DB"
|
1212 |
-
msgstr "
|
1213 |
|
1214 |
-
#:
|
1215 |
msgid ""
|
1216 |
"Download of the GeoIP database will be scheduled for 2 days after the first "
|
1217 |
"Tuesday of the month."
|
1218 |
msgstr ""
|
1219 |
-
"
|
1220 |
-
"
|
1221 |
|
1222 |
-
#:
|
1223 |
msgid ""
|
1224 |
"This option will also download the database if the local filesize is less "
|
1225 |
"than 1k (which usually means the stub that comes with the plugin is still in "
|
1226 |
"place)."
|
1227 |
msgstr ""
|
1228 |
-
"Diese Option
|
1229 |
-
"
|
1230 |
-
"
|
1231 |
-
"heruntergeladen wurde)."
|
1232 |
|
1233 |
-
#:
|
1234 |
msgid "Populate missing GeoIP after update of GeoIP DB"
|
1235 |
-
msgstr "Fehlende GeoIP
|
1236 |
|
1237 |
-
#:
|
1238 |
msgid "Update any missing GeoIP data after downloading a new database."
|
1239 |
msgstr ""
|
1240 |
-
"
|
1241 |
-
"
|
1242 |
|
1243 |
-
#:
|
1244 |
msgid "Updated %s GeoIP records in the visitors database."
|
1245 |
-
msgstr ""
|
1246 |
|
1247 |
-
#:
|
1248 |
msgid "Version Info"
|
1249 |
-
msgstr "
|
1250 |
|
1251 |
-
#:
|
1252 |
msgid "WP Statistics Version"
|
1253 |
-
msgstr "
|
1254 |
|
1255 |
-
#:
|
1256 |
msgid "The WP Statistics version you are running."
|
1257 |
-
msgstr "
|
1258 |
|
1259 |
-
#:
|
1260 |
msgid "PHP Version"
|
1261 |
msgstr "PHP-Version"
|
1262 |
|
1263 |
-
#:
|
1264 |
msgid "The PHP version you are running."
|
1265 |
-
msgstr "PHP-Version, die
|
1266 |
|
1267 |
-
#:
|
1268 |
msgid "jQuery Version"
|
1269 |
-
msgstr "jQuery
|
1270 |
|
1271 |
-
#:
|
1272 |
msgid "The jQuery version you are running."
|
1273 |
-
msgstr "jQuery-Version
|
1274 |
|
1275 |
-
#:
|
1276 |
msgid "Error could not open downloaded GeoIP database for reading: %s"
|
1277 |
msgstr ""
|
|
|
|
|
1278 |
|
1279 |
-
#:
|
1280 |
msgid "Error could not open destination GeoIP database for writing %s"
|
1281 |
msgstr ""
|
|
|
|
|
1282 |
|
1283 |
-
#:
|
1284 |
msgid "GeoIP Database updated successfully!"
|
1285 |
-
msgstr ""
|
1286 |
|
1287 |
-
#:
|
1288 |
msgid "Client Info"
|
1289 |
-
msgstr "
|
1290 |
|
1291 |
-
#:
|
1292 |
msgid "Client IP"
|
1293 |
-
msgstr "Client
|
1294 |
|
1295 |
-
#:
|
1296 |
msgid "The client IP address."
|
1297 |
-
msgstr "IP-Adresse
|
1298 |
|
1299 |
-
#:
|
1300 |
msgid "User Agent"
|
1301 |
-
msgstr "User
|
1302 |
|
1303 |
-
#:
|
1304 |
msgid "The client user agent string."
|
1305 |
-
msgstr "
|
1306 |
|
1307 |
-
#:
|
1308 |
msgid "Exclude User Roles"
|
1309 |
-
msgstr "Benutzerrollen
|
1310 |
|
1311 |
-
#:
|
1312 |
-
#:
|
1313 |
-
#:
|
1314 |
msgid "Exclude"
|
1315 |
-
msgstr "
|
1316 |
|
1317 |
-
#:
|
1318 |
msgid "Exclude %s role from data collection."
|
1319 |
-
msgstr "
|
1320 |
|
1321 |
-
#:
|
1322 |
msgid "IP/Robot Exclusions"
|
1323 |
-
msgstr "
|
1324 |
|
1325 |
-
#:
|
1326 |
msgid ""
|
1327 |
"A list of words (one per line) to match against to detect robots. Entries "
|
1328 |
"must be at least 4 characters long or they will be ignored."
|
1329 |
msgstr ""
|
1330 |
-
"Eine Liste
|
1331 |
-
"
|
1332 |
-
"
|
1333 |
|
1334 |
-
#:
|
1335 |
msgid "Reset to Default"
|
1336 |
-
msgstr "Auf
|
1337 |
|
1338 |
-
#:
|
1339 |
msgid "Add 10.0.0.0"
|
1340 |
-
msgstr ""
|
1341 |
|
1342 |
-
#:
|
1343 |
msgid "Add 172.16.0.0"
|
1344 |
-
msgstr ""
|
1345 |
|
1346 |
-
#:
|
1347 |
msgid "Add 192.168.0.0"
|
1348 |
-
msgstr ""
|
1349 |
|
1350 |
-
#:
|
1351 |
msgid "Charts"
|
1352 |
msgstr "Diagramme"
|
1353 |
|
1354 |
-
#:
|
1355 |
msgid ""
|
1356 |
"For get more information and location (country) from visitor, enable this "
|
1357 |
"feature."
|
1358 |
msgstr ""
|
1359 |
-
"
|
1360 |
-
"
|
1361 |
|
1362 |
-
#:
|
1363 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:230
|
1364 |
msgid "Overview"
|
1365 |
-
msgstr "
|
1366 |
|
1367 |
-
#:
|
1368 |
-
#:
|
1369 |
-
#:
|
1370 |
msgid "Countries"
|
1371 |
-
msgstr "
|
1372 |
|
1373 |
-
#:
|
1374 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:235
|
1375 |
msgid "Hits"
|
1376 |
-
msgstr "
|
1377 |
|
1378 |
-
#:
|
1379 |
msgid "Referers"
|
1380 |
-
msgstr "
|
1381 |
|
1382 |
-
#:
|
1383 |
msgid "Searches"
|
1384 |
-
msgstr "
|
1385 |
|
1386 |
-
#:
|
1387 |
msgid "Search Words"
|
1388 |
-
msgstr "
|
1389 |
|
1390 |
-
#:
|
1391 |
msgid "Second"
|
1392 |
-
msgstr "
|
1393 |
|
1394 |
-
#:
|
1395 |
msgid "Browser Statistics"
|
1396 |
-
msgstr "Browser-
|
1397 |
|
1398 |
-
#:
|
1399 |
msgid "Platform"
|
1400 |
msgstr "Plattform"
|
1401 |
|
1402 |
-
#:
|
1403 |
msgid "%s Version"
|
1404 |
-
msgstr "%s-
|
1405 |
|
1406 |
-
#:
|
1407 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:8
|
1408 |
msgid "Hit Statistics"
|
1409 |
-
msgstr "
|
1410 |
|
1411 |
-
#:
|
1412 |
-
#:
|
1413 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:33
|
1414 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
|
1415 |
msgid "10 Days"
|
1416 |
msgstr "10 Tage"
|
1417 |
|
1418 |
-
#:
|
1419 |
-
#:
|
1420 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:34
|
1421 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
|
1422 |
msgid "20 Days"
|
1423 |
msgstr "20 Tage"
|
1424 |
|
1425 |
-
#:
|
1426 |
-
#:
|
1427 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:35
|
1428 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:23
|
1429 |
msgid "30 Days"
|
1430 |
msgstr "30 Tage"
|
1431 |
|
1432 |
-
#:
|
1433 |
-
#:
|
1434 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:36
|
1435 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:24
|
1436 |
msgid "2 Months"
|
1437 |
msgstr "2 Monate"
|
1438 |
|
1439 |
-
#:
|
1440 |
-
#:
|
1441 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:37
|
1442 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:25
|
1443 |
msgid "3 Months"
|
1444 |
msgstr "3 Monate"
|
1445 |
|
1446 |
-
#:
|
1447 |
-
#:
|
1448 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:38
|
1449 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:26
|
1450 |
msgid "6 Months"
|
1451 |
msgstr "6 Monate"
|
1452 |
|
1453 |
-
#:
|
1454 |
-
#:
|
1455 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:39
|
1456 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:27
|
1457 |
msgid "9 Months"
|
1458 |
msgstr "9 Monate"
|
1459 |
|
1460 |
-
#:
|
1461 |
-
#:
|
1462 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:40
|
1463 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:28
|
1464 |
msgid "1 Year"
|
1465 |
msgstr "1 Jahr"
|
1466 |
|
1467 |
-
#:
|
1468 |
msgid "Hits Statistical Chart"
|
1469 |
-
msgstr "
|
1470 |
-
|
1471 |
-
#:
|
1472 |
-
#:
|
1473 |
-
#:
|
1474 |
-
#:
|
1475 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:46
|
1476 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:150
|
1477 |
msgid "days"
|
1478 |
-
msgstr "
|
1479 |
|
1480 |
-
#:
|
1481 |
-
#:
|
1482 |
msgid "Top 10 Countries"
|
1483 |
-
msgstr "Top 10
|
1484 |
|
1485 |
-
#:
|
1486 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:17
|
1487 |
msgid "Rank"
|
1488 |
msgstr "Rang"
|
1489 |
|
1490 |
-
#:
|
1491 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:18
|
1492 |
msgid "Flag"
|
1493 |
msgstr "Flagge"
|
1494 |
|
1495 |
-
#:
|
1496 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:20
|
1497 |
msgid "Visitor Count"
|
1498 |
-
msgstr "
|
1499 |
|
1500 |
-
#:
|
1501 |
msgid "Search Engine Referrers Statistical Chart"
|
1502 |
-
msgstr "
|
1503 |
|
1504 |
-
#:
|
1505 |
msgid "Top Countries"
|
1506 |
-
msgstr "Top
|
1507 |
-
|
1508 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:14
|
1509 |
-
msgid "<code>%s</code> agent data deleted successfully."
|
1510 |
-
msgstr "<code>%s</code>-Daten wurden gelöscht."
|
1511 |
-
|
1512 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:14
|
1513 |
-
msgid "<code>%s</code> platform data deleted successfully."
|
1514 |
-
msgstr "<code>%s</code>-Plattform-Daten wurden gelöscht."
|
1515 |
|
1516 |
-
#:
|
1517 |
msgid "Delete User Agent Types"
|
1518 |
-
msgstr "
|
1519 |
|
1520 |
-
#:
|
1521 |
msgid "Delete Agents"
|
1522 |
-
msgstr "
|
1523 |
|
1524 |
-
#:
|
1525 |
msgid "All visitor data will be lost for this agent type."
|
1526 |
-
msgstr ""
|
1527 |
-
"Alle Daten für diesen Browser-Typ werden unwiderruflich gelöscht."
|
1528 |
|
1529 |
-
#:
|
1530 |
-
#:
|
1531 |
msgid "Delete now!"
|
1532 |
-
msgstr "
|
1533 |
|
1534 |
-
#:
|
1535 |
msgid "Delete Platforms"
|
1536 |
-
msgstr "
|
1537 |
|
1538 |
-
#:
|
1539 |
msgid "All visitor data will be lost for this platform type."
|
1540 |
-
msgstr ""
|
1541 |
-
"Alle Daten für diesen Plattform-Typ werden unwiderruflich gelöscht."
|
1542 |
|
1543 |
-
#:
|
1544 |
msgid "GeoIP Options"
|
1545 |
msgstr "GeoIP-Optionen"
|
1546 |
|
1547 |
-
#:
|
1548 |
msgid "Store entire user agent string"
|
1549 |
-
msgstr "
|
1550 |
|
1551 |
-
#:
|
1552 |
msgid "Only enabled for debugging"
|
1553 |
-
msgstr ""
|
1554 |
-
"Sollte nur bei Problemen bei der Bestimmung der User Agent-Strings aktiviert "
|
1555 |
-
"werden."
|
1556 |
|
1557 |
-
#:
|
1558 |
msgid "GeoIP settings"
|
1559 |
msgstr "GeoIP-Einstellungen"
|
1560 |
|
1561 |
-
#:
|
1562 |
msgid "GeoIP collection"
|
1563 |
-
msgstr "GeoIP
|
1564 |
|
1565 |
-
#:
|
1566 |
msgid "Update GeoIP Info"
|
1567 |
-
msgstr "GeoIP
|
1568 |
|
1569 |
-
#:
|
1570 |
msgid "Download GeoIP Database"
|
1571 |
-
msgstr "GeoIP-
|
1572 |
|
1573 |
-
#:
|
|
|
1574 |
msgid "Save changes on this page to download the update."
|
1575 |
msgstr ""
|
1576 |
-
"
|
1577 |
-
"herunterzuladen."
|
1578 |
|
1579 |
-
#:
|
1580 |
-
#:
|
1581 |
-
#:
|
1582 |
-
#:
|
1583 |
msgid "Are you sure?"
|
1584 |
msgstr "Bist du sicher?"
|
1585 |
|
1586 |
-
#:
|
1587 |
msgid "Clear now!"
|
1588 |
-
msgstr "
|
1589 |
|
1590 |
-
#:
|
1591 |
msgid "Optimization"
|
1592 |
msgstr "Optimierung"
|
1593 |
|
1594 |
-
#:
|
1595 |
-
#:
|
1596 |
-
#:
|
1597 |
-
#:
|
1598 |
-
#:
|
1599 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:3
|
1600 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/manual/manual.php:5
|
1601 |
msgid "Access denied!"
|
1602 |
-
msgstr "Zugriff verweigert
|
1603 |
-
|
1604 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:53
|
1605 |
-
msgid "<code>%s</code> table data deleted successfully."
|
1606 |
-
msgstr "<code>%s</code> Tabellendaten erfolgreich gelöscht."
|
1607 |
|
1608 |
-
#:
|
1609 |
-
#:
|
1610 |
-
#:
|
1611 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:57
|
1612 |
msgid "Please select the desired items."
|
1613 |
-
msgstr "Bitte
|
1614 |
|
1615 |
-
#:
|
1616 |
msgid "Resources"
|
1617 |
msgstr "Ressourcen"
|
1618 |
|
1619 |
-
#:
|
1620 |
-
#:
|
1621 |
msgid "Memory usage in PHP"
|
1622 |
-
msgstr "PHP
|
1623 |
|
1624 |
-
#:
|
1625 |
msgid "Byte"
|
1626 |
msgstr "Byte"
|
1627 |
|
1628 |
-
#:
|
1629 |
-
#:
|
1630 |
-
#:
|
1631 |
-
#:
|
1632 |
-
#:
|
1633 |
msgid "Row"
|
1634 |
-
msgstr "Zeile
|
1635 |
|
1636 |
-
#:
|
1637 |
-
#:
|
1638 |
-
#:
|
1639 |
-
#:
|
1640 |
-
#:
|
1641 |
msgid "Number of rows"
|
1642 |
msgstr "Anzahl der Zeilen"
|
1643 |
|
1644 |
-
#:
|
1645 |
-
#:
|
1646 |
msgid "Export"
|
1647 |
msgstr "Export"
|
1648 |
|
1649 |
-
#:
|
1650 |
msgid "Export from"
|
1651 |
-
msgstr "Exportieren
|
1652 |
|
1653 |
-
#:
|
1654 |
msgid "Select the table for the output file."
|
1655 |
-
msgstr "
|
1656 |
|
1657 |
-
#:
|
1658 |
msgid "Export To"
|
1659 |
-
msgstr "Exportieren
|
1660 |
|
1661 |
-
#:
|
1662 |
msgid "Select the output file type."
|
1663 |
-
msgstr "
|
1664 |
|
1665 |
-
#:
|
1666 |
msgid "Start Now!"
|
1667 |
-
msgstr "
|
1668 |
|
1669 |
-
#:
|
1670 |
msgid "Empty Table"
|
1671 |
-
msgstr "Tabelle
|
1672 |
|
1673 |
-
#:
|
1674 |
msgid "All data table will be lost."
|
1675 |
-
msgstr "Alle
|
1676 |
|
1677 |
-
#:
|
1678 |
msgid "Support"
|
1679 |
-
msgstr "
|
1680 |
|
1681 |
-
#:
|
|
|
|
|
|
|
|
|
1682 |
msgid "Referring sites from"
|
1683 |
-
msgstr "
|
1684 |
|
1685 |
-
#:
|
1686 |
msgid "Translations"
|
1687 |
msgstr "Übersetzungen"
|
1688 |
|
1689 |
-
#:
|
1690 |
msgid "To be added soon"
|
1691 |
-
msgstr "Bald
|
1692 |
-
|
1693 |
-
#:
|
1694 |
-
#:
|
1695 |
-
#:
|
1696 |
-
#:
|
1697 |
-
#:
|
1698 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:33
|
1699 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:71
|
1700 |
msgid "Map"
|
1701 |
-
msgstr "
|
1702 |
|
1703 |
-
#:
|
1704 |
-
#:
|
1705 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:170
|
1706 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:132
|
1707 |
msgid "Page"
|
1708 |
msgstr "Seite"
|
1709 |
|
1710 |
-
#:
|
1711 |
-
#:
|
1712 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:170
|
1713 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:132
|
1714 |
msgid "From"
|
1715 |
-
msgstr "
|
1716 |
|
1717 |
-
#:
|
1718 |
msgid "Table plugin does not exist! Please disable and re-enable the plugin."
|
1719 |
msgstr ""
|
1720 |
-
"
|
|
|
1721 |
|
1722 |
-
#:
|
1723 |
-
#:
|
1724 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:154
|
1725 |
msgid "Statistical reporting"
|
1726 |
-
msgstr "
|
1727 |
|
1728 |
-
#:
|
1729 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:6
|
1730 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:227
|
1731 |
msgid "Statistics"
|
1732 |
msgstr "Statistik"
|
1733 |
|
1734 |
-
#:
|
1735 |
-
|
1736 |
-
msgstr "Seitenstatistik in der Sidebar anzeigen"
|
1737 |
-
|
1738 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:369
|
1739 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:15
|
1740 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:23
|
1741 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:290
|
1742 |
msgid "User Online"
|
1743 |
-
msgstr "
|
1744 |
|
1745 |
-
#:
|
1746 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:18
|
1747 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:30
|
1748 |
msgid "Today Visit"
|
1749 |
-
msgstr "
|
1750 |
|
1751 |
-
#:
|
1752 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:21
|
1753 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:37
|
1754 |
msgid "Today Visitor"
|
1755 |
-
msgstr "Besucher
|
1756 |
|
1757 |
-
#:
|
1758 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:44
|
1759 |
msgid "Yesterday Visit"
|
1760 |
-
msgstr "
|
1761 |
|
1762 |
-
#:
|
1763 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:27
|
1764 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:51
|
1765 |
msgid "Yesterday Visitor"
|
1766 |
-
msgstr "Besucher
|
1767 |
|
1768 |
-
#:
|
1769 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:58
|
1770 |
msgid "Week Visit"
|
1771 |
-
msgstr "
|
1772 |
|
1773 |
-
#:
|
1774 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:65
|
1775 |
msgid "Month Visit"
|
1776 |
-
msgstr "
|
1777 |
|
1778 |
-
#:
|
1779 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:72
|
1780 |
msgid "Years Visit"
|
1781 |
-
msgstr "
|
1782 |
|
1783 |
-
#:
|
1784 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:39
|
1785 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:79
|
1786 |
msgid "Total Visit"
|
1787 |
-
msgstr "
|
1788 |
|
1789 |
-
#:
|
1790 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:42
|
1791 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:86
|
1792 |
msgid "Total Visitor"
|
1793 |
-
msgstr "Besucher
|
1794 |
|
1795 |
-
#:
|
1796 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:108
|
1797 |
msgid "Total Posts"
|
1798 |
-
msgstr "
|
1799 |
|
1800 |
-
#:
|
1801 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:115
|
1802 |
msgid "Total Pages"
|
1803 |
-
msgstr "
|
1804 |
|
1805 |
-
#:
|
1806 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:122
|
1807 |
msgid "Total Comments"
|
1808 |
-
msgstr "
|
1809 |
|
1810 |
-
#:
|
1811 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:129
|
1812 |
msgid "Total Spams"
|
1813 |
-
msgstr "
|
1814 |
|
1815 |
-
#:
|
1816 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:136
|
1817 |
msgid "Total Users"
|
1818 |
-
msgstr "
|
1819 |
|
1820 |
-
#:
|
1821 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:143
|
1822 |
msgid "Average Posts"
|
1823 |
-
msgstr "
|
1824 |
|
1825 |
-
#:
|
1826 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:150
|
1827 |
msgid "Average Comments"
|
1828 |
msgstr "Durchschnittliche Kommentare"
|
1829 |
|
1830 |
-
#:
|
1831 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:157
|
1832 |
msgid "Average Users"
|
1833 |
-
msgstr "Durchschnittliche
|
1834 |
|
1835 |
-
#:
|
1836 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:164
|
1837 |
msgid "Last Post Date"
|
1838 |
-
msgstr "
|
1839 |
|
1840 |
-
#:
|
1841 |
msgid "View Stats"
|
1842 |
-
msgstr "
|
1843 |
|
1844 |
-
#:
|
1845 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:244
|
1846 |
msgid "Settings"
|
1847 |
msgstr "Einstellungen"
|
1848 |
|
1849 |
-
#:
|
1850 |
msgid "Today visitor"
|
1851 |
-
msgstr "
|
1852 |
|
1853 |
-
#:
|
1854 |
msgid "Today visit"
|
1855 |
-
msgstr "
|
1856 |
|
1857 |
-
#:
|
1858 |
msgid "Yesterday visitor"
|
1859 |
-
msgstr "Besucher
|
1860 |
|
1861 |
-
#:
|
1862 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:314
|
1863 |
msgid "Yesterday visit"
|
1864 |
-
msgstr "
|
1865 |
|
1866 |
-
#:
|
1867 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:524
|
1868 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:635
|
1869 |
msgid "You do not have sufficient permissions to access this page."
|
1870 |
-
msgstr "Sie haben nicht
|
1871 |
-
|
1872 |
-
#:
|
1873 |
-
#:
|
1874 |
-
#:
|
1875 |
-
#:
|
1876 |
-
#:
|
1877 |
-
#:
|
1878 |
-
#:
|
1879 |
-
#:
|
1880 |
-
#:
|
1881 |
-
#:
|
1882 |
-
#:
|
1883 |
-
#:
|
1884 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:7
|
1885 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:9
|
1886 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:64
|
1887 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:8
|
1888 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:7
|
1889 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:8
|
1890 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:11
|
1891 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:7
|
1892 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:11
|
1893 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:7
|
1894 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:7
|
1895 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:14
|
1896 |
msgid "Click to toggle"
|
1897 |
-
msgstr "
|
1898 |
|
1899 |
-
#:
|
1900 |
msgid "Summary Statistics"
|
1901 |
-
msgstr "
|
1902 |
|
1903 |
-
#:
|
1904 |
-
#:
|
1905 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:19
|
1906 |
msgid "Visitor"
|
1907 |
msgstr "Besucher"
|
1908 |
|
1909 |
-
#:
|
1910 |
-
#:
|
1911 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:20
|
1912 |
msgid "Visit"
|
1913 |
-
msgstr "
|
1914 |
|
1915 |
-
#:
|
1916 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:69
|
1917 |
msgid "Today"
|
1918 |
msgstr "Heute"
|
1919 |
|
1920 |
-
#:
|
1921 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:70
|
1922 |
msgid "Yesterday"
|
1923 |
msgstr "Gestern"
|
1924 |
|
1925 |
-
#:
|
1926 |
msgid "Week"
|
1927 |
msgstr "Woche"
|
1928 |
|
1929 |
-
#:
|
1930 |
msgid "Month"
|
1931 |
msgstr "Monat"
|
1932 |
|
1933 |
-
#:
|
1934 |
msgid "Year"
|
1935 |
msgstr "Jahr"
|
1936 |
|
1937 |
-
#:
|
1938 |
-
#:
|
1939 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:54
|
1940 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:94
|
1941 |
msgid "Total"
|
1942 |
msgstr "Gesamt"
|
1943 |
|
1944 |
-
#:
|
1945 |
msgid "(Adjustment)"
|
1946 |
-
msgstr "(
|
1947 |
|
1948 |
-
#:
|
1949 |
-
#:
|
1950 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:25
|
1951 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:231
|
1952 |
msgid "Browsers"
|
1953 |
msgstr "Browser"
|
1954 |
|
1955 |
-
#:
|
1956 |
msgid "Other"
|
1957 |
msgstr "Andere"
|
1958 |
|
1959 |
-
#:
|
1960 |
msgid "Address"
|
1961 |
msgstr "Adresse"
|
1962 |
|
1963 |
-
#:
|
1964 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:59
|
1965 |
msgid "Number of visits and visitors"
|
1966 |
-
msgstr "Anzahl der
|
1967 |
|
1968 |
-
#:
|
1969 |
msgid "Google"
|
1970 |
msgstr "Google"
|
1971 |
|
1972 |
-
#:
|
1973 |
-
#:
|
1974 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:38
|
1975 |
msgid "Recent Visitors"
|
1976 |
-
msgstr "
|
1977 |
|
1978 |
-
#:
|
1979 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:19
|
1980 |
msgid "Country"
|
1981 |
msgstr "Land"
|
1982 |
|
1983 |
-
#:
|
1984 |
-
#:
|
1985 |
-
#:
|
1986 |
-
#:
|
1987 |
-
#:
|
1988 |
-
#:
|
1989 |
-
#:
|
1990 |
-
#:
|
1991 |
-
#:
|
1992 |
-
#:
|
1993 |
-
#:
|
1994 |
-
#:
|
1995 |
-
#:
|
1996 |
-
#:
|
1997 |
-
#:
|
1998 |
-
#:
|
1999 |
-
#:
|
2000 |
-
#:
|
|
|
|
|
2001 |
msgid "Active"
|
2002 |
-
msgstr "
|
2003 |
-
|
2004 |
-
#:
|
2005 |
-
#:
|
2006 |
-
#:
|
2007 |
-
#:
|
2008 |
-
#:
|
2009 |
-
#:
|
2010 |
-
#:
|
2011 |
msgid "Enable or disable this feature"
|
2012 |
-
msgstr "
|
2013 |
|
2014 |
-
#:
|
2015 |
-
#:
|
2016 |
-
#:
|
2017 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:105
|
2018 |
msgid "Visits"
|
2019 |
-
msgstr "
|
2020 |
|
2021 |
-
#:
|
2022 |
-
#:
|
2023 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:240
|
2024 |
msgid "Visitors"
|
2025 |
msgstr "Besucher"
|
2026 |
|
2027 |
-
#:
|
2028 |
msgid "Check for online users every"
|
2029 |
-
msgstr "
|
2030 |
|
2031 |
-
#:
|
2032 |
msgid "Time for the check accurate online user in the site. Now: %s Second"
|
2033 |
-
msgstr "
|
|
|
2034 |
|
2035 |
-
#:
|
2036 |
msgid "Show stats in menu bar"
|
2037 |
-
msgstr "
|
2038 |
|
2039 |
-
#:
|
2040 |
msgid "No"
|
2041 |
msgstr "Nein"
|
2042 |
|
2043 |
-
#:
|
2044 |
msgid "Yes"
|
2045 |
msgstr "Ja"
|
2046 |
|
2047 |
-
#:
|
2048 |
msgid "Show stats in admin menu bar"
|
2049 |
-
msgstr "
|
2050 |
|
2051 |
-
#:
|
2052 |
msgid "Coefficient per visitor"
|
2053 |
msgstr "Koeffizient pro Besucher"
|
2054 |
|
2055 |
-
#:
|
2056 |
msgid "For each visit to account for several hits. Currently %s."
|
2057 |
-
msgstr "
|
2058 |
|
2059 |
-
#:
|
2060 |
msgid "Select when receiving statistics report."
|
2061 |
-
msgstr ""
|
2062 |
-
"Bitte wählen Sie, wann Sie die statistische Auswertung bekommen möchten."
|
2063 |
|
2064 |
-
#:
|
2065 |
msgid "Email"
|
2066 |
msgstr "E-Mail"
|
2067 |
|
2068 |
-
#:
|
2069 |
msgid "SMS"
|
2070 |
msgstr "SMS"
|
2071 |
|
2072 |
-
#:
|
2073 |
msgid "Type Select Get Status Report."
|
2074 |
-
msgstr "
|
2075 |
-
|
2076 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:340
|
2077 |
-
msgid ""
|
2078 |
-
"Note: To send SMS text messages please install the <a href=\"%s\" target="
|
2079 |
-
"\"_blank\">Wordpress SMS</a> plugin."
|
2080 |
-
msgstr ""
|
2081 |
-
"Bitte beachten: Um SMS versenden zu können, installieren Sie das <a href=\"%s"
|
2082 |
-
"\" target=\"_blank\">Wordpress SMS</a> Plugin."
|
2083 |
|
2084 |
-
#:
|
2085 |
msgid "Enter the contents of the reports received."
|
2086 |
-
msgstr "Geben
|
2087 |
|
2088 |
-
#:
|
2089 |
msgid "Name"
|
2090 |
msgstr "Name"
|
2091 |
|
2092 |
-
#:
|
2093 |
msgid "Items"
|
2094 |
msgstr "Elemente"
|
2095 |
|
2096 |
-
#:
|
2097 |
msgid "Select type of search engine"
|
2098 |
-
msgstr "
|
2099 |
|
2100 |
-
#:
|
2101 |
-
#:
|
2102 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:134
|
2103 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:64
|
2104 |
msgid "All"
|
2105 |
msgstr "Alle"
|
2 |
# This file is distributed under the same license as the Wordpress Statistics package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2014-10-14 17:15-0500\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
+
"X-Generator: Poedit 1.6.9\n"
|
11 |
"Project-Id-Version: Wordpress Statistics\n"
|
12 |
"POT-Creation-Date: \n"
|
13 |
"Last-Translator: \n"
|
14 |
"Language-Team: \n"
|
15 |
"Language: de_DE\n"
|
16 |
|
17 |
+
#: includes/log/widgets/about.php:8
|
18 |
+
msgid "About WP Statistics Version %s"
|
19 |
+
msgstr "Über WP Statistics Version %s"
|
20 |
+
|
21 |
+
#: includes/log/widgets/summary.php:106
|
22 |
+
msgid "Date: %s"
|
23 |
+
msgstr "Datum: %s"
|
24 |
+
|
25 |
+
#: includes/log/widgets/summary.php:110
|
26 |
+
msgid "Time: %s"
|
27 |
+
msgstr "Zeit: %s"
|
28 |
+
|
29 |
+
#: includes/optimization/delete-agents.php:14
|
30 |
+
msgid "%s agent data deleted successfully."
|
31 |
+
msgstr "%s-Agentdaten erfolgreich gelöscht."
|
32 |
+
|
33 |
+
#: includes/optimization/delete-platforms.php:14
|
34 |
+
msgid "%s platform data deleted successfully."
|
35 |
+
msgstr "%s Plattform Daten erfolgreich gelöscht."
|
36 |
+
|
37 |
+
#: includes/optimization/empty.php:53
|
38 |
+
msgid "%s table data deleted successfully."
|
39 |
+
msgstr "%s-Tabellendaten erfolgreich gelöscht."
|
40 |
+
|
41 |
+
#: includes/optimization/purge-data.php:17
|
42 |
+
#: includes/optimization/purge-data.php:27
|
43 |
+
#: includes/optimization/purge-data.php:37
|
44 |
+
#: includes/optimization/purge-data.php:47
|
45 |
+
msgid "%s data older than %s days purged successfully."
|
46 |
+
msgstr "%s Daten älter als %s Tage erfolgreich gelöscht."
|
47 |
+
|
48 |
+
#: includes/optimization/purge-data.php:19
|
49 |
+
#: includes/optimization/purge-data.php:29
|
50 |
+
#: includes/optimization/purge-data.php:39
|
51 |
+
#: includes/optimization/purge-data.php:49
|
52 |
+
msgid "No records found to purge from %s!"
|
53 |
+
msgstr "Keine Datensätze löschen von %s gefunden!"
|
54 |
+
|
55 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:44
|
56 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:55
|
57 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:66
|
58 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:77
|
59 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:88
|
60 |
+
msgid "Number of rows in the %s table"
|
61 |
+
msgstr "Anzahl der Zeilen in der Tabelle %s"
|
62 |
+
|
63 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:211
|
64 |
+
msgid "browscap Cache File"
|
65 |
+
msgstr "Browscap Cache-Datei"
|
66 |
+
|
67 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:220
|
68 |
+
msgid "browscap cache file does not exist."
|
69 |
+
msgstr "Browscap-Cache-Datei ist nicht vorhanden."
|
70 |
+
|
71 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:224
|
72 |
+
msgid "The file size and date of the browscap cache file."
|
73 |
+
msgstr "Die Dateigröße und das Datum der Cachedatei Browscap."
|
74 |
+
|
75 |
+
#: includes/settings/tabs/wps-about.php:24
|
76 |
+
msgid ""
|
77 |
+
"Come visit our great new %s and keep up to date on the latest news about WP "
|
78 |
+
"Statistics."
|
79 |
+
msgstr ""
|
80 |
+
"Kommen Sie, besuchen Sie unsere große neue %s und informieren Sie über die "
|
81 |
+
"neuesten Nachrichten über WP Statistics."
|
82 |
+
|
83 |
+
#: includes/settings/tabs/wps-about.php:24
|
84 |
+
msgid "website"
|
85 |
+
msgstr "Webseite"
|
86 |
+
|
87 |
+
#: includes/settings/tabs/wps-about.php:40
|
88 |
+
msgid ""
|
89 |
+
"WP Statistics supports internationalization and we encourage our users to "
|
90 |
+
"submit translations, please visit our %s to see the current status and %s if "
|
91 |
+
"you would like to help."
|
92 |
+
msgstr ""
|
93 |
+
"WP Statistics unterstützt Internationalisierung und wir empfehlen unseren "
|
94 |
+
"Nutzern, Übersetzungen einreichen, besuchen Sie bitte den aktuellen Status "
|
95 |
+
"unserer %s und %s Wenn Sie helfen möchten."
|
96 |
+
|
97 |
+
#: includes/settings/tabs/wps-about.php:40
|
98 |
+
msgid "translation collaboration site"
|
99 |
+
msgstr "Website Übersetzung Zusammenarbeit"
|
100 |
+
|
101 |
+
#: includes/settings/tabs/wps-about.php:40
|
102 |
+
msgid "drop us a line"
|
103 |
+
msgstr "Schreiben Sie uns"
|
104 |
+
|
105 |
+
#: includes/settings/tabs/wps-about.php:52
|
106 |
+
#: includes/settings/tabs/wps-about.php:53
|
107 |
+
msgid "Have you read the %s?"
|
108 |
+
msgstr "Hast du die %s gelesen?"
|
109 |
+
|
110 |
+
#: includes/settings/tabs/wps-about.php:52
|
111 |
+
msgid "FAQs"
|
112 |
+
msgstr "Häufig gestellte Fragen"
|
113 |
+
|
114 |
+
#: includes/settings/tabs/wps-about.php:53
|
115 |
+
msgid "manual"
|
116 |
+
msgstr "Manuell"
|
117 |
+
|
118 |
+
#: includes/settings/tabs/wps-about.php:54
|
119 |
+
msgid "Have you search the %s for a similar issue?"
|
120 |
+
msgstr "Haben Sie das %s für ein ähnliches Problem zu suchen?"
|
121 |
+
|
122 |
+
#: includes/settings/tabs/wps-about.php:54
|
123 |
+
msgid "support forum"
|
124 |
+
msgstr "Support-forum"
|
125 |
+
|
126 |
+
#: includes/settings/tabs/wps-about.php:70
|
127 |
+
msgid ""
|
128 |
+
"Then please open a new thread on the %s and we'll respond as soon as "
|
129 |
+
"possible."
|
130 |
+
msgstr ""
|
131 |
+
"Dann öffnen Sie bitte einen neuen Thread auf \"% s\" und wir werden so bald "
|
132 |
+
"wie möglich."
|
133 |
+
|
134 |
+
#: includes/settings/tabs/wps-about.php:70
|
135 |
+
msgid "WordPress.org support forum"
|
136 |
+
msgstr "WordPress.org-Support-forum"
|
137 |
+
|
138 |
+
#: includes/settings/tabs/wps-about.php:74
|
139 |
+
msgid "Alternatively %s support is available as well."
|
140 |
+
msgstr "Alternativ ist %s-Unterstützung ebenfalls verfügbar."
|
141 |
+
|
142 |
+
#: includes/settings/tabs/wps-access-level.php:85
|
143 |
+
msgid "See the %s for details on capability levels."
|
144 |
+
msgstr "Fähigkeitsstufen entnehmen Sie %s Einzelheiten."
|
145 |
+
|
146 |
+
#: includes/settings/tabs/wps-access-level.php:85
|
147 |
+
msgid "WordPress Roles and Capabilities page"
|
148 |
+
msgstr "WordPress Rollen und Fähigkeiten Seite"
|
149 |
+
|
150 |
+
#: includes/settings/tabs/wps-general.php:67
|
151 |
+
msgid ""
|
152 |
+
"This feature will not store IP addresses in the database but instead used a "
|
153 |
+
"unique hash. The \"Store entire user agent string\" setting will be "
|
154 |
+
"disabled if this is selected. You will not be able to recover the IP "
|
155 |
+
"addresses in the future to recover location information if this is enabled."
|
156 |
+
msgstr ""
|
157 |
+
"Diese Funktion speichert keine IP-Adressen in der Datenbank aber stattdessen "
|
158 |
+
"einen eindeutigen Hash verwendet. Die \"Store gesamte Benutzer-Agent-String"
|
159 |
+
"\" Einstellung wird deaktiviert, wenn diese Option ausgewählt ist. Sie "
|
160 |
+
"werden nicht wiederherstellen die IP-Adressen in der Zukunft, um "
|
161 |
+
"Standortinformationen zu erholen, wenn diese Option aktiviert ist."
|
162 |
+
|
163 |
+
#: includes/settings/tabs/wps-general.php:340
|
164 |
+
msgid "Note: To send SMS text messages please install the %s plugin."
|
165 |
+
msgstr ""
|
166 |
+
"Hinweis: Zum Senden von SMS-Text Nachrichten bitte das %s Plugin "
|
167 |
+
"installieren."
|
168 |
+
|
169 |
+
#: includes/settings/tabs/wps-general.php:340
|
170 |
+
msgid "WordPress SMS"
|
171 |
+
msgstr "WordPress SMS"
|
172 |
+
|
173 |
+
#: wp-statistics.php:27
|
174 |
+
msgid ""
|
175 |
+
"ERROR: WP Statistics has detected an unsupported version of PHP, WP "
|
176 |
+
"Statistics will not function without PHP Version "
|
177 |
+
msgstr ""
|
178 |
+
"Fehler: WP Statistics festgestellt eine nicht unterstützte Version von PHP, "
|
179 |
+
"WP Statistics funktioniert nicht ohne PHP-Version "
|
180 |
+
|
181 |
+
#: wp-statistics.php:27
|
182 |
+
msgid " or higher!"
|
183 |
+
msgstr "oder höher!"
|
184 |
+
|
185 |
+
#: wp-statistics.php:81
|
186 |
+
msgid ""
|
187 |
+
"Online user tracking in WP Statistics is not enabled, please go to %s and "
|
188 |
+
"enable it."
|
189 |
+
msgstr ""
|
190 |
+
"Online User tracking im WP Statistics ist nicht aktiviert, gehen Sie zu %s "
|
191 |
+
"und aktivieren es."
|
192 |
+
|
193 |
+
#: wp-statistics.php:81 wp-statistics.php:84 wp-statistics.php:87
|
194 |
+
msgid "setting page"
|
195 |
+
msgstr "Einstellungsseite"
|
196 |
+
|
197 |
+
#: wp-statistics.php:84
|
198 |
+
msgid ""
|
199 |
+
"Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
|
200 |
+
msgstr ""
|
201 |
+
"Hit Änderungsnachverfolgung in der WP Statistics ist nicht aktiviert, gehen "
|
202 |
+
"Sie zu %s und aktivieren es."
|
203 |
+
|
204 |
+
#: wp-statistics.php:87
|
205 |
+
msgid ""
|
206 |
+
"Visitor tracking in WP Statistics is not enabled, please go to %s and enable "
|
207 |
+
"it."
|
208 |
+
msgstr ""
|
209 |
+
"Besucher-tracking in der WP Statistics nicht aktiviert ist, gehen Sie zu %s "
|
210 |
+
"und aktivieren es."
|
211 |
+
|
212 |
+
#: wp-statistics.php:90
|
213 |
+
msgid ""
|
214 |
+
"GeoIP collection is not active, please go to %s and enable this feature."
|
215 |
+
msgstr ""
|
216 |
+
"GeoIP-Sammlung ist nicht aktiv, bitte gehen Sie auf %s und aktivieren Sie "
|
217 |
+
"diese Funktion."
|
218 |
+
|
219 |
+
#: wp-statistics.php:90
|
220 |
+
msgid "Setting page > GeoIP"
|
221 |
+
msgstr "Einstellungsseite > GeoIP"
|
222 |
+
|
223 |
+
msgid "http://wp-statistics.com/"
|
224 |
+
msgstr "http://WP-Statistics.com/"
|
225 |
+
|
226 |
+
msgid "Mostafa Soufi & Greg Ross"
|
227 |
+
msgstr "Mostafa Soufi & Greg Ross"
|
228 |
+
|
229 |
+
#: includes/settings/wps-settings.php:90
|
230 |
+
msgid "browscap"
|
231 |
+
msgstr "Browscap"
|
232 |
+
|
233 |
+
#: wp-statistics.php:706
|
234 |
+
msgid "Error downloading browscap database from: %s - %s"
|
235 |
+
msgstr "Fehler beim Herunterladen der Browscap-Datenbank von: %s - %s"
|
236 |
+
|
237 |
+
#: wp-statistics.php:794
|
238 |
+
msgid "browscap database updated successfully!"
|
239 |
+
msgstr "Browscap-Datenbank erfolgreich aktualisiert!"
|
240 |
+
|
241 |
+
#: wp-statistics.php:802
|
242 |
+
msgid "browscap already at current version!"
|
243 |
+
msgstr "Browscap bereits in der aktuellen Version!"
|
244 |
+
|
245 |
+
#: includes/optimization/tabs/wps-optimization-database.php:5
|
246 |
+
msgid "Database Setup"
|
247 |
+
msgstr "Setup der Datenbank"
|
248 |
+
|
249 |
+
#: includes/optimization/tabs/wps-optimization-database.php:10
|
250 |
+
msgid "Re-run Install"
|
251 |
+
msgstr "Führen Sie erneut installieren"
|
252 |
+
|
253 |
+
#: includes/optimization/tabs/wps-optimization-database.php:14
|
254 |
+
msgid "Install Now!"
|
255 |
+
msgstr "Installieren Sie jetzt!"
|
256 |
+
|
257 |
+
#: includes/optimization/tabs/wps-optimization-database.php:15
|
258 |
+
msgid ""
|
259 |
+
"If for some reason your installation of WP Statistics is missing the "
|
260 |
+
"database tables or other core items, this will re-execute the install "
|
261 |
+
"process."
|
262 |
+
msgstr ""
|
263 |
+
"Wenn aus irgendeinem Grund die Installation von WP Statistics die "
|
264 |
+
"Datenbanktabellen oder andere Kern-Elemente fehlen, wird dies der "
|
265 |
+
"Installationsvorgang erneut ausführen."
|
266 |
+
|
267 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:163
|
268 |
+
msgid ""
|
269 |
+
"If the PHP BC Math Extension is installed. BC Math is no longer required "
|
270 |
+
"for the GeoIP code and is listed here only for historical reasons."
|
271 |
+
msgstr ""
|
272 |
+
"Wenn die PHP-BC Math-Erweiterung installiert ist. BC Math ist nicht mehr für "
|
273 |
+
"die GeoIP-Code erforderlich und wird hier nur aus historischen Gründen "
|
274 |
+
"aufgeführt."
|
275 |
+
|
276 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:168
|
277 |
+
msgid "File Info"
|
278 |
+
msgstr "Datei-Info"
|
279 |
+
|
280 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:173
|
281 |
+
msgid "GeoIP Database"
|
282 |
+
msgstr "GeoIP-Datenbank"
|
283 |
+
|
284 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:184
|
285 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:203
|
286 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:222
|
287 |
+
msgid ", created on "
|
288 |
+
msgstr ", erstellt am "
|
289 |
+
|
290 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:186
|
291 |
+
msgid "The file size and date of the GeoIP database."
|
292 |
+
msgstr "Die Dateigröße und das Datum der GeoIP-Datenbank."
|
293 |
+
|
294 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:192
|
295 |
+
msgid "browscap.ini File"
|
296 |
+
msgstr "Browscap.ini File"
|
297 |
+
|
298 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:201
|
299 |
+
msgid "browscap.ini file does not exist."
|
300 |
+
msgstr "Datei Browscap.ini ist nicht vorhanden."
|
301 |
+
|
302 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:205
|
303 |
+
msgid "The file size and date of the browscap.ini file."
|
304 |
+
msgstr "Die Dateigröße und das Datum der Datei browscap.ini."
|
305 |
+
|
306 |
+
#: includes/optimization/wps-optimization.php:51
|
307 |
+
msgid "Install routine complete."
|
308 |
+
msgstr "Installieren Sie vollständige Routine."
|
309 |
+
|
310 |
+
#: includes/settings/tabs/wps-browscap.php:17
|
311 |
+
msgid "browscap settings"
|
312 |
+
msgstr "Browscap-Einstellungen"
|
313 |
+
|
314 |
+
#: includes/settings/tabs/wps-browscap.php:22
|
315 |
+
msgid "browscap usage"
|
316 |
+
msgstr "Browscap-Nutzung"
|
317 |
+
|
318 |
+
#: includes/settings/tabs/wps-browscap.php:28
|
319 |
+
msgid "The browscap database will be downloaded and used to detect robots."
|
320 |
+
msgstr ""
|
321 |
+
"Die Browscap-Datenbank heruntergeladen und verwendet, um Roboter zu erkennen."
|
322 |
+
|
323 |
+
#: includes/settings/tabs/wps-browscap.php:34
|
324 |
+
msgid "Update browscap Info"
|
325 |
+
msgstr "Update Browscap Info"
|
326 |
+
|
327 |
+
#: includes/settings/tabs/wps-browscap.php:39
|
328 |
+
msgid "Download browscap Database"
|
329 |
+
msgstr "Download Database browscap"
|
330 |
+
|
331 |
+
#: includes/settings/tabs/wps-browscap.php:46
|
332 |
+
msgid "Schedule weekly update of browscap DB"
|
333 |
+
msgstr "Zeitplan-pro-Update von Browscap DB"
|
334 |
+
|
335 |
+
#: includes/settings/tabs/wps-browscap.php:69
|
336 |
+
msgid "Download of the browscap database will be scheduled for once a week."
|
337 |
+
msgstr ""
|
338 |
+
"Download von der Browscap-Datenbank wird zum ersten Mal in der Woche geplant."
|
339 |
+
|
340 |
+
#: includes/optimization/tabs/wps-optimization-database.php:40
|
341 |
+
msgid ""
|
342 |
+
"Older installs of WP Statistics allow for duplicate entries in the visitors "
|
343 |
+
"table in a corner case. Newer installs protect against this with a unique "
|
344 |
+
"index on the table. To create the index on the older installs duplicate "
|
345 |
+
"entries must be deleted first. Clicking \"Update Now\" will scan the "
|
346 |
+
"vistitors table, delete duplicate entries and add the index."
|
347 |
+
msgstr ""
|
348 |
+
"Ältere Installationen von WP Statistics können doppelte Einträge in der "
|
349 |
+
"Tabelle der Besucher in einer Ecke-Fall. Neuere Installationen schützen "
|
350 |
+
"gegen diese mit einem eindeutigen Index für die Tabelle. Um den Index für "
|
351 |
+
"die älteren Installationen doppelte Einträge erstellen muss zuerst gelöscht "
|
352 |
+
"werden. Klicken \"Update Now\" durchsucht die Besucher-Tabelle, doppelte "
|
353 |
+
"Einträge löschen und fügen Sie den Index."
|
354 |
+
|
355 |
+
#: includes/optimization/tabs/wps-optimization-database.php:46
|
356 |
+
msgid ""
|
357 |
+
"Older installs of WP Statistics allow for duplicate entries in the visitors "
|
358 |
+
"table in a corner case. Newer installs protect against this with a unique "
|
359 |
+
"index on the table."
|
360 |
msgstr ""
|
361 |
+
"Ältere Installationen von WP Statistics können doppelte Einträge in der "
|
362 |
+
"Tabelle der Besucher in einer Ecke-Fall. Neuere Installationen schützen "
|
363 |
+
"gegen diese mit einem eindeutigen Index für die Tabelle."
|
364 |
|
365 |
+
#: includes/optimization/tabs/wps-optimization-database.php:47
|
366 |
+
msgid ""
|
367 |
+
"Congratulations, your installation is already up to date, nothing to do."
|
368 |
+
msgstr ""
|
369 |
+
"Herzlichen Glückwunsch, ist die Installation bereits auf dem neuesten Stand, "
|
370 |
+
"nichts zu tun."
|
371 |
+
|
372 |
+
#: includes/settings/tabs/wps-about.php:55
|
373 |
+
msgid "Have you search the Internet for any error messages you are receiving?"
|
374 |
+
msgstr ""
|
375 |
+
"Haben Sie im Internet nach Fehlermeldungen suchen, die Sie erhalten werden?"
|
376 |
+
|
377 |
+
#: includes/settings/tabs/wps-about.php:66
|
378 |
+
msgid ""
|
379 |
+
"Are you getting a blank or incomplete page displayed in your browser? Did "
|
380 |
+
"you view the source for the page and check for any fatal errors?"
|
381 |
+
msgstr ""
|
382 |
+
"Erhalten Sie eine leere oder unvollständige Seite in Ihrem Browser "
|
383 |
+
"angezeigt? Haben Sie anzeigen den Quelltext der Seite und überprüfen Sie "
|
384 |
+
"alle schwerwiegenden Fehler?"
|
385 |
+
|
386 |
+
#: includes/settings/tabs/wps-about.php:67
|
387 |
+
msgid "Have you checked your PHP and web server error logs?"
|
388 |
+
msgstr "Haben Sie Ihre PHP und Web-Server-Fehlerprotokolle überprüft?"
|
389 |
+
|
390 |
+
#: widget.php:15
|
391 |
+
msgid "Show site stats in sidebar."
|
392 |
+
msgstr "Website-Statistik in der Seitenleiste anzeigen."
|
393 |
+
|
394 |
+
#: includes/log/last-search.php:97 includes/log/last-visitor.php:94
|
395 |
+
#: includes/log/widgets/google.map.php:65 includes/log/widgets/jqv.map.php:59
|
396 |
+
#: includes/log/widgets/recent.php:22 includes/log/widgets/words.php:25
|
397 |
+
msgid "#hash#"
|
398 |
+
msgstr "#hash #"
|
399 |
+
|
400 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:4
|
401 |
msgid ""
|
402 |
"This will replace all IP addresses in the database with hash values and "
|
403 |
"cannot be undo, are you sure?"
|
404 |
msgstr ""
|
405 |
+
"Dies wird alle IP-Adressen in der Datenbank mit Hash-Werte ersetzen und "
|
406 |
+
"nicht rückgängig zu machen, bist du sicher?"
|
407 |
|
408 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:26
|
409 |
msgid ""
|
410 |
"Updates any unknown location data in the database, this may take a while"
|
411 |
msgstr ""
|
412 |
+
"Aktualisiert alle unbekannten Ort-Daten in der Datenbank kann dies eine "
|
413 |
+
"Weile dauern"
|
414 |
|
415 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:31
|
416 |
+
#: includes/settings/tabs/wps-general.php:56
|
417 |
msgid "IP Addresses"
|
418 |
msgstr "IP-Adressen"
|
419 |
|
420 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:36
|
421 |
+
#: includes/settings/tabs/wps-general.php:61
|
422 |
msgid "Hash IP Addresses"
|
423 |
+
msgstr "Hash-IP-Adressen"
|
424 |
|
425 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:41
|
426 |
msgid ""
|
427 |
"Replace IP addresses in the database with hash values, you will not be able "
|
428 |
"to recover the IP addresses in the future to populate location information "
|
429 |
"afterwards and this may take a while"
|
430 |
msgstr ""
|
431 |
+
"Ersetzen von IP-Adressen in der Datenbank mit Hash-Werte, Sie werden nicht "
|
432 |
+
"in der Lage, die IP-Adressen in der Zukunft, um Standortinformationen danach "
|
433 |
+
"füllen erholen und dies kann eine Weile dauern"
|
|
|
434 |
|
435 |
+
#: includes/optimization/wps-optimization.php:43
|
436 |
msgid "IP Addresses replaced with hash values."
|
437 |
+
msgstr "IP-Adressen mit Hash-Werte ersetzt."
|
438 |
|
439 |
+
#: includes/settings/tabs/wps-access-level.php:149
|
440 |
msgid "Force robot list update after upgrades"
|
441 |
+
msgstr "Roboter Listenaktualisierung nach Upgrades Kraft"
|
442 |
|
443 |
+
#: includes/settings/tabs/wps-access-level.php:152
|
444 |
msgid ""
|
445 |
"Force the robot list to be reset to the default after an update to WP "
|
446 |
"Statistics takes place. Note if this option is enabled any custom robots "
|
447 |
"you have added to the list will be lost."
|
448 |
msgstr ""
|
449 |
+
"Kraft der Roboter-Liste auf den Standardwert zurückgesetzt werden, nachdem "
|
450 |
+
"ein Update für WP Statistics erfolgt ist. Hinweis Wenn diese Option, "
|
451 |
+
"beliebiges aktiviert ist Roboter, die Sie der Liste hinzugefügt haben "
|
452 |
+
"verloren."
|
453 |
|
454 |
+
#: includes/settings/tabs/wps-general.php:40
|
455 |
msgid "This will delete the manual when you save the settings, are you sure?"
|
456 |
msgstr ""
|
457 |
+
"Dies löscht das Handbuch, wenn Sie die Einstellungen zu speichern, sind Sie "
|
458 |
+
"sicher?"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
459 |
|
460 |
+
#: includes/settings/tabs/wps-general.php:220
|
461 |
msgid ""
|
462 |
"By default WP Statistics displays an alert if any of the core features are "
|
463 |
"disabled on every admin page, this option will disable these notices."
|
464 |
msgstr ""
|
465 |
+
"Standardmäßig WP Statistics zeigt eine Warnung, wenn der Kern-Features auf "
|
466 |
+
"jeder Administrationsseite deaktiviert sind, wird diese Option deaktivieren, "
|
467 |
+
"diese Mitteilungen."
|
468 |
|
469 |
+
#: includes/settings/tabs/wps-general.php:226
|
470 |
msgid "Delete the manual"
|
471 |
+
msgstr "Löschen Sie das Handbuch"
|
472 |
|
473 |
+
#: includes/settings/tabs/wps-general.php:232
|
474 |
msgid ""
|
475 |
"By default WP Statistics stores the admin manual in the plugin directory (~5 "
|
476 |
"meg), if this option is enabled it will be deleted now and during upgrades "
|
477 |
"in the future."
|
478 |
msgstr ""
|
479 |
+
"Standardmäßig speichert WP Statistics den Admin Handbuch in das "
|
480 |
+
"Pluginverzeichnis (~ 5 Meg), wenn diese Option aktiviert, ist es gelöscht "
|
481 |
+
"werden jetzt und während Aktualisierungen in der Zukunft."
|
482 |
|
483 |
+
#: includes/optimization/tabs/wps-optimization-database.php:20
|
484 |
msgid "Database Index"
|
485 |
+
msgstr "Datenbankindex"
|
486 |
|
487 |
+
#: includes/optimization/tabs/wps-optimization-database.php:41
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
488 |
msgid ""
|
489 |
"This operation could take a long time on installs with many rows in the "
|
490 |
"visitors table."
|
491 |
msgstr ""
|
492 |
+
"Dieser Vorgang kann auf Installationen mit vielen Zeilen in der Tabelle der "
|
493 |
+
"Besucher eine lange Zeit dauern."
|
494 |
|
495 |
+
#: includes/optimization/wps-optimization.php:129
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
496 |
msgid "Database"
|
497 |
msgstr "Datenbank"
|
498 |
|
499 |
+
#: includes/settings/tabs/wps-general.php:298
|
500 |
msgid "Schedule"
|
501 |
+
msgstr "Zeitplan"
|
502 |
|
503 |
+
#: includes/settings/tabs/wps-general.php:328
|
504 |
msgid "Send reports via"
|
505 |
+
msgstr "Senden Sie Berichte über"
|
506 |
|
507 |
+
#: includes/settings/tabs/wps-general.php:347
|
508 |
msgid "E-mail addresses"
|
509 |
+
msgstr "E-Mail-Adressen"
|
510 |
|
511 |
+
#: includes/settings/tabs/wps-general.php:352
|
512 |
msgid ""
|
513 |
"A comma separated list of e-mail addresses to send the reports to if e-mail "
|
514 |
"is selected above."
|
515 |
msgstr ""
|
516 |
+
"Eine durch Kommas getrennte Liste der E-mail-Adressen, um die Berichte zu "
|
517 |
+
"senden, wenn E-mail oben ausgewählt ist."
|
518 |
|
519 |
+
#: includes/settings/tabs/wps-general.php:358
|
520 |
msgid "Report body"
|
521 |
+
msgstr "Hauptteil des Berichts"
|
522 |
|
523 |
+
#: includes/settings/tabs/wps-overview-display.php:75
|
524 |
msgid "The following three items are global to all users."
|
525 |
+
msgstr "Die folgenden drei Elemente gelten global für alle Benutzer."
|
526 |
|
527 |
+
#: includes/settings/tabs/wps-overview-display.php:80
|
528 |
msgid "Map type"
|
529 |
+
msgstr "Kartentyp"
|
530 |
|
531 |
+
#: includes/settings/tabs/wps-overview-display.php:86
|
532 |
msgid "JQVMap"
|
533 |
+
msgstr "JQVMap"
|
534 |
|
535 |
+
#: includes/settings/tabs/wps-overview-display.php:93
|
536 |
msgid ""
|
537 |
"The \"Google\" option will use Google's mapping service to plot the recent "
|
538 |
"visitors (requires access to Google)."
|
539 |
msgstr ""
|
540 |
+
"Die \"Google\" Option wird Googles-Mapping-Dienst um die letzten Besucher zu "
|
541 |
+
"zeichnen (erfordert Zugriff auf Google) verwenden."
|
|
|
542 |
|
543 |
+
#: includes/settings/tabs/wps-overview-display.php:94
|
544 |
msgid ""
|
545 |
"The \"JQVMap\" option will use JQVMap javascript mapping library to plot the "
|
546 |
"recent visitors (requires no extenral services)."
|
547 |
msgstr ""
|
548 |
+
"Die \"JQVMap\" Option wird JQVMap Javascript-Zuordnung-Bibliothek um die "
|
549 |
+
"letzten Besucher zu zeichnen (erfordert keine Extenral-Dienste) verwenden."
|
550 |
|
551 |
+
#: includes/settings/tabs/wps-overview-display.php:118
|
552 |
msgid ""
|
553 |
"This feature may cause a performance degradation when viewing statistics and "
|
554 |
"is only valid if the map type is set to \"Google\"."
|
555 |
msgstr ""
|
556 |
+
"Dieses Feature kann einen Leistungsabfall verursachen, beim Anzeigen von "
|
557 |
+
"Statistiken und ist nur gültig, wenn die Karte auf \"Google eingestellt ist"
|
558 |
+
"\"."
|
559 |
|
560 |
+
#: includes/log/all-browsers.php:50
|
561 |
msgid "Browsers by type"
|
562 |
+
msgstr "Browser vom Typ"
|
563 |
|
564 |
+
#: includes/log/all-browsers.php:133
|
565 |
msgid "Browsers by platform"
|
566 |
+
msgstr "Browser-Plattform"
|
567 |
|
568 |
+
#: includes/log/exclusions.php:97
|
569 |
msgid "Excluded hits in the last"
|
570 |
+
msgstr "Treffer in den letzten ausgeschlossen"
|
571 |
|
572 |
+
#: includes/log/hit-statistics.php:36
|
573 |
msgid "Hits Statistics Chart"
|
574 |
+
msgstr "Hits Statistiken Diagramm"
|
575 |
|
576 |
+
#: includes/log/hit-statistics.php:69 includes/log/widgets/hits.php:39
|
|
|
577 |
msgid "Hits in the last"
|
578 |
+
msgstr "Treffer in den letzten"
|
579 |
|
580 |
+
#: includes/log/last-search.php:30 includes/log/widgets/words.php:16
|
581 |
+
#: includes/settings/tabs/wps-overview-display.php:36
|
|
|
582 |
msgid "Latest Search Words"
|
583 |
+
msgstr "Neueste Suchbegriffe"
|
584 |
|
585 |
+
#: includes/log/last-search.php:62
|
586 |
msgid "Latest Search Word Statistics"
|
587 |
+
msgstr "Neueste Statistiken für Search Word"
|
588 |
|
589 |
+
#: includes/log/last-visitor.php:61
|
590 |
msgid "Recent Visitor Statistics"
|
591 |
+
msgstr "Aktuelle Besucherstatistik"
|
592 |
|
593 |
+
#: includes/log/widgets/google.map.php:9 includes/log/widgets/jqv.map.php:9
|
|
|
594 |
msgid "Today Visitors Map"
|
595 |
+
msgstr "Heute Landkarte Besucher"
|
596 |
|
597 |
+
#: includes/log/widgets/summary.php:8
|
598 |
msgid "Summary"
|
599 |
msgstr "Zusammenfassung"
|
600 |
|
601 |
+
#: includes/log/widgets/summary.php:13
|
602 |
msgid "User(s) Online"
|
603 |
+
msgstr "Benutzer Online"
|
604 |
|
605 |
+
#: includes/log/widgets/browsers.php:45
|
606 |
msgid "Top 10 Browsers"
|
607 |
+
msgstr "Top 10-Browser"
|
608 |
|
609 |
+
#: includes/log/top-referring.php:34 includes/log/top-referring.php:49
|
610 |
+
#: includes/log/widgets/referring.php:13
|
611 |
+
#: includes/settings/tabs/wps-overview-display.php:26
|
|
|
612 |
msgid "Top Referring Sites"
|
613 |
msgstr "Top verweisende Websites"
|
614 |
|
615 |
+
#: includes/log/widgets/about.php:16
|
616 |
msgid "Rate and Review"
|
617 |
+
msgstr "Bewertung und Überprüfung"
|
618 |
|
619 |
+
#: includes/log/widgets/about.php:20
|
620 |
msgid "More Information"
|
621 |
msgstr "Weitere Informationen"
|
622 |
|
623 |
+
#: includes/log/widgets/about.php:29 includes/settings/tabs/wps-about.php:12
|
|
|
624 |
msgid ""
|
625 |
"This product includes GeoLite2 data created by MaxMind, available from %s."
|
626 |
msgstr ""
|
627 |
+
"Dieses Produkt enthält GeoLite2 Daten erstellt von MaxMind, %s verfügbar."
|
|
|
628 |
|
629 |
+
#: includes/log/search-statistics.php:77 includes/log/widgets/search.php:46
|
|
|
630 |
msgid "Search engine referrals in the last"
|
631 |
+
msgstr "Suche Motor Verweise in den letzten"
|
632 |
|
633 |
+
#: includes/log/search-statistics.php:98 includes/log/widgets/search.php:67
|
|
|
634 |
msgid "Number of referrals"
|
635 |
msgstr "Anzahl der Verweise"
|
636 |
|
637 |
+
#: includes/log/widgets/pages.php:13
|
638 |
msgid "Top 10 Pages"
|
639 |
msgstr "Top 10 Seiten"
|
640 |
|
641 |
+
#: includes/log/search-statistics.php:17 includes/log/search-statistics.php:36
|
|
|
642 |
msgid "Search Engine Referral Statistics"
|
643 |
+
msgstr "Suche Motor Referral-Statistik"
|
644 |
|
645 |
+
#: includes/settings/tabs/wps-about.php:8
|
646 |
msgid "WP Statistics V%s"
|
647 |
+
msgstr "WP Statistics V %s"
|
648 |
|
649 |
+
#: includes/settings/tabs/wps-about.php:20
|
650 |
msgid "Visit Us Online"
|
651 |
+
msgstr "Besuchen Sie uns Online"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
652 |
|
653 |
+
#: includes/settings/tabs/wps-about.php:28
|
654 |
msgid "Rate and Review at WordPress.org"
|
655 |
+
msgstr "Bewertung und Überprüfung auf WordPress.org"
|
656 |
|
657 |
+
#: includes/settings/tabs/wps-about.php:32
|
658 |
msgid "Thanks for installing WP Statistics, we encourage you to submit a "
|
659 |
msgstr ""
|
660 |
+
"Vielen Dank für die Installation von WP Statistics, wir empfehlen Ihnen, "
|
661 |
+
"senden eine "
|
662 |
|
663 |
+
#: includes/settings/tabs/wps-about.php:32
|
664 |
msgid "rating and review"
|
665 |
+
msgstr "Bewertung und Überprüfung"
|
666 |
|
667 |
+
#: includes/settings/tabs/wps-about.php:32
|
668 |
msgid "over at WordPress.org. Your feedback is greatly appreciated!"
|
669 |
+
msgstr "drüben bei WordPress.org. Ihr Feedback ist sehr willkommen!"
|
670 |
|
671 |
+
#: includes/settings/tabs/wps-about.php:49
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
672 |
msgid ""
|
673 |
"We're sorry you're having problem with WP Statistics and we're happy to help "
|
674 |
"out. Here are a few things to do before contacting us:"
|
675 |
msgstr ""
|
676 |
+
"Wir bedauern, Sie haben Problem mit WP Statistics und wir freuen uns, Ihnen "
|
677 |
+
"zu helfen. Hier sind ein paar Dinge zu tun, bevor Sie uns kontaktieren:"
|
678 |
|
679 |
+
#: includes/settings/tabs/wps-about.php:58
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
680 |
msgid "And a few things to double-check:"
|
681 |
+
msgstr "Und ein paar Dinge zu überprüfen:"
|
682 |
|
683 |
+
#: includes/settings/tabs/wps-about.php:61
|
684 |
msgid "How's your memory_limit in php.ini?"
|
685 |
+
msgstr "Wie ist Ihre Memory_limit in der php.ini?"
|
686 |
|
687 |
+
#: includes/settings/tabs/wps-about.php:62
|
688 |
msgid "Have you tried disabling any other plugins you may have installed?"
|
689 |
+
msgstr ""
|
690 |
+
"Haben Sie versucht, andere Plugins, die Sie installiert haben, können "
|
691 |
+
"deaktivieren?"
|
692 |
|
693 |
+
#: includes/settings/tabs/wps-about.php:63
|
694 |
msgid "Have you tried using the default WordPress theme?"
|
695 |
+
msgstr "Haben Sie versucht, unter Verwendung der Standard-WordPress-Theme?"
|
696 |
|
697 |
+
#: includes/settings/tabs/wps-about.php:64
|
698 |
msgid "Have you double checked the plugin settings?"
|
699 |
+
msgstr "Haben Sie doppelte die Plugin-Einstellungen überprüft?"
|
700 |
|
701 |
+
#: includes/settings/tabs/wps-about.php:65
|
702 |
msgid "Do you have all the required PHP extensions installed?"
|
703 |
+
msgstr "Haben Sie alle benötigten PHP-Erweiterungen installiert?"
|
704 |
|
705 |
+
#: includes/settings/tabs/wps-about.php:70
|
706 |
msgid "Still not having any luck?"
|
707 |
+
msgstr "Haben Sie noch nicht Glück gehabt?"
|
708 |
+
|
709 |
+
#: includes/optimization/tabs/wps-optimization-export.php:17
|
710 |
+
#: includes/optimization/tabs/wps-optimization-export.php:35
|
711 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:128
|
712 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:169
|
713 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:193
|
714 |
+
#: includes/settings/tabs/wps-general.php:303
|
715 |
+
#: includes/settings/tabs/wps-general.php:333
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
716 |
msgid "Please select"
|
717 |
+
msgstr "Bitte wählen Sie"
|
718 |
|
719 |
+
#: includes/settings/tabs/wps-general.php:365
|
720 |
msgid ""
|
721 |
"Any shortcode supported by your installation of WordPress, include all "
|
722 |
"shortcodes for WP Statistics (see the admin manual for a list of codes "
|
723 |
"available) are supported in the body of the message."
|
724 |
msgstr ""
|
725 |
+
"Eine Kurzwahlnummer, unterstützt durch die Installation von WordPress, "
|
726 |
+
"umfassen alle Kurzwahlnummern für WP Statistics (siehe Administratorhandbuch "
|
727 |
+
"für eine Liste der verfügbaren Codes) in den Textkörper der Nachricht "
|
728 |
+
"unterstützt werden."
|
729 |
|
730 |
+
#: includes/settings/tabs/wps-general.php:368
|
731 |
msgid ""
|
732 |
"Input data codes are now deprecated and will be removed in a future version "
|
733 |
"of WP Statistics, please use the appropriate shortcodes, they are included "
|
734 |
"here only for historical purposes:"
|
735 |
msgstr ""
|
736 |
+
"Eingabedaten-Codes sind inzwischen veraltet und werden in einer zukünftigen "
|
737 |
+
"Version von WP Statistics, entfernt Bitte benutzen Sie die entsprechenden "
|
738 |
+
"Kurzwahlnummern, sie hier nur aus historischen Gründen enthalten sind:"
|
739 |
|
740 |
+
#: includes/settings/tabs/wps-geoip.php:22
|
741 |
msgid ""
|
742 |
"IP location services provided by GeoLite2 data created by MaxMind, available "
|
743 |
"from %s."
|
744 |
msgstr ""
|
745 |
+
"IP-Ortungsdienste bereitgestellt durch GeoLite2 Data erstellt von MaxMind, "
|
746 |
+
"%s verfügbar."
|
747 |
|
748 |
+
#: includes/settings/tabs/wps-overview-display.php:23
|
749 |
+
#: includes/settings/tabs/wps-overview-display.php:32
|
750 |
msgid "None"
|
751 |
+
msgstr "Keine"
|
752 |
|
753 |
+
#: includes/settings/tabs/wps-overview-display.php:28
|
754 |
+
#: includes/settings/wps-settings.php:92
|
755 |
msgid "About"
|
756 |
+
msgstr "Über"
|
757 |
|
758 |
+
#: includes/settings/tabs/wps-overview-display.php:123
|
759 |
msgid "Widgets to Display"
|
760 |
+
msgstr "Anzeige-Widgets"
|
761 |
|
762 |
+
#: includes/settings/tabs/wps-overview-display.php:132
|
763 |
msgid ""
|
764 |
"The following items are unique to each user. If you do not select the "
|
765 |
"'About' widget it will automatically be displayed in the last positon of "
|
766 |
"column A."
|
767 |
msgstr ""
|
768 |
+
"Die folgenden Elemente sind für jeden Benutzer eindeutig. Wenn Sie nicht das "
|
769 |
+
"\"About\"-Widget auswählen wird es automatisch in die letzte Position der "
|
770 |
+
"Spalte a angezeigt"
|
771 |
|
772 |
+
#: includes/settings/tabs/wps-overview-display.php:137
|
773 |
msgid "Slot"
|
774 |
+
msgstr "Steckplatz"
|
775 |
|
776 |
+
#: includes/settings/tabs/wps-overview-display.php:141
|
777 |
msgid "Column A"
|
778 |
msgstr "Spalte A"
|
779 |
|
780 |
+
#: includes/settings/tabs/wps-overview-display.php:145
|
781 |
msgid "Column B"
|
782 |
msgstr "Spalte B"
|
783 |
|
784 |
+
#: includes/settings/tabs/wps-overview-display.php:151
|
785 |
msgid "Slot 1"
|
786 |
+
msgstr "Steckplatz 1"
|
787 |
|
788 |
+
#: includes/settings/tabs/wps-overview-display.php:181
|
789 |
msgid "Slot 2"
|
790 |
+
msgstr "Steckplatz 2"
|
791 |
|
792 |
+
#: includes/settings/tabs/wps-overview-display.php:211
|
793 |
msgid "Slot 3"
|
794 |
+
msgstr "Steckplatz 3"
|
795 |
|
796 |
+
#: includes/settings/tabs/wps-overview-display.php:241
|
797 |
msgid "Slot 4"
|
798 |
+
msgstr "Slot 4"
|
799 |
|
800 |
+
#: includes/settings/tabs/wps-overview-display.php:271
|
801 |
msgid "Slot 5"
|
802 |
+
msgstr "Slot 5"
|
803 |
|
804 |
+
#: includes/settings/tabs/wps-overview-display.php:301
|
805 |
msgid "Slot 6"
|
806 |
+
msgstr "Steckplatz 6"
|
807 |
|
808 |
+
#: includes/settings/tabs/wps-overview-display.php:305
|
809 |
msgid "N/A"
|
810 |
+
msgstr "N/A"
|
811 |
|
812 |
+
#: widget.php:280
|
813 |
msgid "Search Engine Referred"
|
814 |
+
msgstr "Suchmaschine, die genannten"
|
815 |
|
816 |
+
#: schedule.php:10
|
817 |
msgid "Once Weekly"
|
818 |
+
msgstr "Einmal pro"
|
819 |
|
820 |
+
#: schedule.php:17
|
821 |
msgid "Once Every 2 Weeks"
|
822 |
+
msgstr "Einmal alle 2 Wochen"
|
823 |
|
824 |
+
#: schedule.php:24
|
825 |
msgid "Once Every 4 Weeks"
|
826 |
+
msgstr "Einmal alle 4 Wochen"
|
827 |
|
828 |
+
#: wp-statistics.php:39
|
829 |
msgid "Complete statistics for your WordPress site."
|
830 |
+
msgstr "Vollständige Statistiken für Ihre Website WordPress."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
831 |
|
832 |
+
#: includes/log/widgets/about.php:15
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
833 |
msgid "Website"
|
834 |
+
msgstr "Webseite"
|
835 |
|
836 |
+
#: includes/log/top-referring.php:117 includes/log/widgets/referring.php:19
|
|
|
837 |
msgid "References"
|
838 |
+
msgstr "Referenzen"
|
839 |
|
840 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:33
|
841 |
msgid "PHP Memory Limit"
|
842 |
+
msgstr "PHP Memory_limit"
|
843 |
|
844 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:38
|
845 |
msgid "The memory limit a script is allowed to consume, set in php.ini."
|
846 |
msgstr ""
|
847 |
+
"Die Speichergrenze ein Skript darf konsumieren, in der php.ini gesetzt."
|
|
|
848 |
|
849 |
+
#: wp-statistics.php:38
|
850 |
msgid "WP Statistics"
|
851 |
+
msgstr "WP Statistics"
|
852 |
|
853 |
+
#: wp-statistics.php:164
|
854 |
msgid "Visit WordPress.org page"
|
855 |
+
msgstr "WordPress.org Seite besuchen"
|
856 |
|
857 |
+
#: includes/log/page-statistics.php:29
|
858 |
msgid "Page Trend for Post ID"
|
859 |
+
msgstr "Seite Trend für Post-ID"
|
860 |
|
861 |
+
#: includes/log/page-statistics.php:48
|
862 |
msgid "Page Trend"
|
863 |
+
msgstr "Seite Trend"
|
864 |
|
865 |
+
#: includes/log/page-statistics.php:68
|
866 |
msgid "Page Trending Stats"
|
867 |
+
msgstr "Seite verlaufenden Stats"
|
868 |
|
869 |
+
#: includes/settings/tabs/wps-access-level.php:97
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
870 |
msgid "Record exclusions"
|
871 |
+
msgstr "Rekord-Ausschlüsse"
|
872 |
|
873 |
+
#: includes/settings/tabs/wps-access-level.php:130
|
874 |
msgid "Robot list"
|
875 |
+
msgstr "Roboter-Liste"
|
876 |
|
877 |
+
#: includes/settings/tabs/wps-access-level.php:157
|
878 |
msgid "Excluded IP address list"
|
879 |
+
msgstr "Liste der ausgeschlossenen IP-Adresse"
|
880 |
|
881 |
+
#: includes/settings/tabs/wps-access-level.php:160
|
882 |
msgid ""
|
883 |
"A list of IP addresses and subnet masks (one per line) to exclude from "
|
884 |
"statistics collection (both 192.168.0.0/24 and 192.168.0.0/255.255.255.0 "
|
885 |
"formats are accepted). To specify an IP address only, use a subnet value of "
|
886 |
"32 or 255.255.255.255."
|
887 |
msgstr ""
|
888 |
+
"Eine Liste von IP-Adressen und Subnet masks (eine pro Zeile) ausgeschlossen, "
|
889 |
+
"die Erfassung von Statistiken (192.168.0.0/24 und 192.168.0.0/255.255.255.0 "
|
890 |
+
"Formate werden akzeptiert). Um eine IP-Adresse nur anzugeben, verwenden Sie "
|
891 |
+
"einen Subnet-Wert von 32 oder 255.255.255.255."
|
|
|
892 |
|
893 |
+
#: includes/settings/tabs/wps-access-level.php:172
|
894 |
msgid "Excluded login page"
|
895 |
+
msgstr "Ausgeschlossene Login-Seite"
|
896 |
|
897 |
+
#: includes/settings/tabs/wps-access-level.php:179
|
898 |
msgid "Excluded admin pages"
|
899 |
+
msgstr "Ausgeschlossene Admin-Seiten"
|
900 |
|
901 |
+
#: includes/settings/tabs/wps-general.php:72
|
902 |
msgid "Users Online"
|
903 |
+
msgstr "Benutzer Online"
|
904 |
|
905 |
+
#: includes/settings/tabs/wps-general.php:77
|
906 |
msgid "User online"
|
907 |
msgstr "Benutzer online"
|
908 |
|
909 |
+
#: includes/settings/tabs/wps-general.php:172
|
910 |
msgid "Track all pages"
|
911 |
+
msgstr "Alle Seiten zu verfolgen"
|
912 |
|
913 |
+
#: includes/settings/tabs/wps-general.php:184
|
914 |
msgid "Disable hits column in post/pages list"
|
915 |
+
msgstr "Treffer-Spalte in Post-Seiten Liste deaktivieren"
|
|
|
|
|
916 |
|
917 |
+
#: includes/settings/tabs/wps-general.php:195
|
918 |
msgid "Miscellaneous"
|
919 |
+
msgstr "Sonstiges"
|
920 |
|
921 |
+
#: wp-statistics.php:164
|
922 |
msgid "Click here to visit the plugin on WordPress.org"
|
923 |
+
msgstr "Klicken Sie hier, um das Plugin auf WordPress.org zu besuchen"
|
924 |
|
925 |
+
#: wp-statistics.php:167
|
926 |
msgid "Click here to rate and review this plugin on WordPress.org"
|
927 |
msgstr ""
|
928 |
+
"Klicken Sie hier, um zu bewerten und überprüfen Sie dieses Plugin auf "
|
929 |
+
"WordPress.org"
|
930 |
|
931 |
+
#: wp-statistics.php:167
|
932 |
msgid "Rate this plugin"
|
933 |
+
msgstr "Bewerten Sie dieses plugin"
|
934 |
|
935 |
+
#: wp-statistics.php:211
|
936 |
msgid "WP Statistics - Hits"
|
937 |
+
msgstr "WP Statistics - Hits"
|
938 |
|
939 |
+
#: wp-statistics.php:599
|
940 |
msgid "Error downloading GeoIP database from: %s - %s"
|
941 |
+
msgstr "Fehler beim Herunterladen der GeoIP-Datenbank: %s - %s"
|
942 |
|
943 |
+
#: widget.php:108 widget.php:277
|
|
|
944 |
msgid "Total Page Views"
|
945 |
+
msgstr "Seitenaufrufe insgesamt"
|
946 |
|
947 |
+
#: includes/settings/tabs/wps-general.php:155
|
948 |
+
#: includes/settings/tabs/wps-general.php:160 wp-statistics.php:259
|
|
|
949 |
msgid "Pages"
|
950 |
+
msgstr "Seiten"
|
951 |
|
952 |
+
#: wp-statistics.php:266
|
953 |
msgid "Manual"
|
954 |
+
msgstr "Manuell"
|
955 |
|
956 |
+
#: wp-statistics.php:364
|
957 |
msgid "Download ODF file"
|
958 |
+
msgstr "ODF-Datei herunterladen"
|
959 |
|
960 |
+
#: wp-statistics.php:365
|
961 |
msgid "Download HTML file"
|
962 |
+
msgstr "Download HTML-Datei"
|
963 |
|
964 |
+
#: wp-statistics.php:369
|
965 |
msgid "Manual file not found."
|
966 |
+
msgstr "Manuelle Datei nicht gefunden."
|
967 |
|
968 |
+
#: includes/log/exclusions.php:54
|
969 |
msgid "Exclusions Statistics"
|
970 |
+
msgstr "Ausschlüsse-Statistik"
|
971 |
|
972 |
+
#: includes/settings/tabs/wps-overview-display.php:37
|
973 |
msgid "Top Pages Visited"
|
974 |
+
msgstr "Top Seiten besucht"
|
975 |
|
976 |
+
#: includes/log/top-pages.php:160 includes/log/widgets/pages.php:27
|
|
|
977 |
msgid "No page title found"
|
978 |
+
msgstr "Kein Titel gefunden"
|
979 |
|
980 |
+
#: includes/log/top-pages.php:13 includes/log/top-pages.php:132
|
|
|
981 |
msgid "Top Pages"
|
982 |
+
msgstr "Top Seiten"
|
983 |
|
984 |
+
#: includes/log/top-pages.php:20
|
985 |
msgid "Top 5 Pages Trends"
|
986 |
+
msgstr "Top 5 Seiten-Trends"
|
987 |
|
988 |
+
#: includes/log/top-pages.php:49
|
989 |
msgid "Top 5 Page Trending Stats"
|
990 |
+
msgstr "Top 5 Seite verlaufenden Statistik"
|
991 |
|
992 |
+
#: includes/log/page-statistics.php:89 includes/log/top-pages.php:70
|
|
|
993 |
msgid "Number of Hits"
|
994 |
+
msgstr "Anzahl der Hits"
|
995 |
|
996 |
+
#: manual/manual.php:29
|
997 |
msgid "Manual not found: %s"
|
998 |
+
msgstr "Handbuch nicht gefunden: %s"
|
999 |
|
1000 |
+
#: manual/manual.php:39
|
1001 |
msgid "Invalid file type selected: %s"
|
1002 |
+
msgstr "Ungültiger Dateityp ausgewählt: %s"
|
1003 |
|
1004 |
+
#: widget.php:116
|
1005 |
msgid "Search Engine referred"
|
1006 |
+
msgstr "Suchmaschine, die genannten"
|
1007 |
|
1008 |
+
#: includes/optimization/tabs/wps-optimization-export.php:47
|
1009 |
msgid "Include Header Row"
|
1010 |
+
msgstr "Kopfzeile enthalten"
|
1011 |
|
1012 |
+
#: includes/optimization/tabs/wps-optimization-export.php:52
|
1013 |
msgid "Include a header row as the first line of the exported file."
|
1014 |
+
msgstr "Fügen Sie eine Kopfzeile, als die erste Zeile der exportierten Datei."
|
1015 |
|
1016 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:125
|
1017 |
msgid "PHP Safe Mode"
|
1018 |
+
msgstr "PHP Safe Mode"
|
1019 |
|
1020 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:130
|
1021 |
msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
|
1022 |
msgstr ""
|
1023 |
+
"Ist PHP Safe Mode aktiv. Der GeoIP-Code wird im abgesicherten Modus nicht "
|
1024 |
+
"unterstützt."
|
1025 |
|
1026 |
+
#: includes/settings/tabs/wps-geoip.php:106
|
1027 |
msgid "GeoIP collection is disabled due to the following reasons:"
|
1028 |
+
msgstr "GeoIP-Kollektion ist aus den folgenden Gründen deaktiviert:"
|
1029 |
|
1030 |
+
#: includes/settings/tabs/wps-geoip.php:126
|
1031 |
msgid ""
|
1032 |
"PHP safe mode detected! GeoIP collection is not supported with PHP's safe "
|
1033 |
"mode enabled!"
|
1034 |
msgstr ""
|
1035 |
+
"PHP safe Mode erkannt! GeoIP-Auflistung wird mit aktiviertem PHP safe Mode "
|
1036 |
+
"nicht unterstützt!"
|
1037 |
|
1038 |
+
#: includes/settings/tabs/wps-general.php:214
|
1039 |
msgid "Hide admin notices about non active features"
|
1040 |
+
msgstr "Admin-Mitteilungen über nicht aktiven Funktionen ausblenden"
|
1041 |
|
1042 |
+
#: includes/settings/tabs/wps-general.php:237
|
1043 |
msgid "Search Enginges"
|
1044 |
+
msgstr "Suche adäquate"
|
1045 |
|
1046 |
+
#: includes/settings/tabs/wps-general.php:242
|
1047 |
msgid ""
|
1048 |
"Disabling all search engines is not allowed, doing so will result in all "
|
1049 |
"search engines being active."
|
1050 |
msgstr ""
|
1051 |
+
"Deaktivieren von allen Suchmaschinen ist nicht zulässig, tun also durchaus "
|
1052 |
+
"in allen Suchmaschinen aktiv."
|
1053 |
|
1054 |
+
#: includes/settings/tabs/wps-general.php:257
|
1055 |
msgid "disable"
|
1056 |
msgstr "Deaktivieren"
|
1057 |
|
1058 |
+
#: includes/settings/tabs/wps-general.php:258
|
1059 |
msgid "Disable %s from data collection and reporting."
|
1060 |
+
msgstr "Deaktivieren Sie %s von Datenerfassung und reporting."
|
1061 |
|
1062 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:147
|
1063 |
msgid "cURL Version"
|
1064 |
+
msgstr "cURL Version"
|
1065 |
|
1066 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:151
|
1067 |
msgid "cURL not installed"
|
1068 |
+
msgstr "cURL nicht installiert"
|
1069 |
|
1070 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:152
|
1071 |
msgid ""
|
1072 |
"The PHP cURL Extension version you are running. cURL is required for the "
|
1073 |
"GeoIP code, if it is not installed GeoIP will be disabled."
|
1074 |
msgstr ""
|
1075 |
+
"Die PHP cURL Extension-Version ausgeführt wird. cURL ist für die GeoIP-Code "
|
1076 |
+
"erforderlich, wenn es nicht installiert ist, dass GeoIP deaktiviert wird."
|
1077 |
|
1078 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:158
|
1079 |
msgid "BC Math"
|
1080 |
msgstr "BC Math"
|
1081 |
|
1082 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:162
|
1083 |
msgid "Installed"
|
1084 |
msgstr "Installiert"
|
1085 |
|
1086 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:162
|
1087 |
msgid "Not installed"
|
1088 |
msgstr "Nicht installiert"
|
1089 |
|
1090 |
+
#: includes/settings/tabs/wps-geoip.php:114
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1091 |
msgid ""
|
1092 |
"GeoIP collection requires the cURL PHP extension and it is not loaded on "
|
1093 |
"your version of PHP!"
|
1094 |
msgstr ""
|
1095 |
+
"GeoIP Sammlung erfordert die cURL-PHP-Erweiterung, und es wird nicht "
|
1096 |
+
"geladen, auf Ihre Version von PHP!"
|
1097 |
|
1098 |
+
#: includes/settings/tabs/wps-geoip.php:120
|
1099 |
msgid ""
|
1100 |
"GeoIP collection requires the BC Math PHP extension and it is not loaded on "
|
1101 |
"your version of PHP!"
|
1102 |
msgstr ""
|
1103 |
+
"GeoIP Sammlung erfordert die BC Math PHP-Erweiterung, und es wird nicht "
|
1104 |
+
"geladen, auf Ihre Version von PHP!"
|
1105 |
|
1106 |
+
#: includes/functions/geoip-populate.php:26
|
1107 |
msgid ""
|
1108 |
"Unable to load the GeoIP database, make sure you have downloaded it in the "
|
1109 |
"settings page."
|
1110 |
msgstr ""
|
1111 |
+
"Nicht in der Lage die GeoIP-Datenbank zu laden, stellen Sie sicher, dass Sie "
|
1112 |
+
"es in der Einstellungsseite heruntergeladen haben."
|
1113 |
|
1114 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:182
|
1115 |
msgid "Database file does not exist."
|
1116 |
+
msgstr "Datenbankdatei ist nicht vorhanden."
|
1117 |
|
1118 |
+
#: includes/log/last-visitor.php:59
|
1119 |
msgid "Search for"
|
1120 |
+
msgstr "Suche nach"
|
1121 |
|
1122 |
+
#: includes/log/widgets/browsers.php:8 includes/log/widgets/countries.php:11
|
1123 |
+
#: includes/log/widgets/hits.php:8 includes/log/widgets/pages.php:13
|
1124 |
+
#: includes/log/widgets/recent.php:9 includes/log/widgets/referring.php:13
|
1125 |
+
#: includes/log/widgets/search.php:8 includes/log/widgets/words.php:16
|
|
|
|
|
|
|
|
|
1126 |
msgid "More"
|
1127 |
+
msgstr "Mehr"
|
|
|
|
|
|
|
|
|
1128 |
|
1129 |
+
#: includes/settings/tabs/wps-general.php:269
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1130 |
msgid "Include totals"
|
1131 |
+
msgstr "Fügen Sie Gesamtsummen"
|
1132 |
|
1133 |
+
#: includes/settings/tabs/wps-general.php:275
|
1134 |
msgid ""
|
1135 |
"Add a total line to charts with multiple values, like the search engine "
|
1136 |
"referrals"
|
1137 |
msgstr ""
|
1138 |
+
"Diagramme mit mehreren Werten, wie die Suche Motor Empfehlungen eine totale-"
|
1139 |
+
"Zeile hinzufügen"
|
1140 |
|
1141 |
+
#: includes/settings/tabs/wps-overview-display.php:100
|
1142 |
msgid "Disable map"
|
1143 |
+
msgstr "Karte zu deaktivieren"
|
1144 |
|
1145 |
+
#: includes/settings/tabs/wps-overview-display.php:106
|
1146 |
msgid "Disable the map display"
|
1147 |
+
msgstr "Die Kartenanzeige deaktivieren"
|
1148 |
|
1149 |
+
#: includes/settings/tabs/wps-overview-display.php:112
|
1150 |
msgid "Get country location from Google"
|
1151 |
+
msgstr "Country Lage von Google zu bekommen"
|
1152 |
|
1153 |
+
#: includes/log/exclusions.php:8
|
1154 |
msgid ""
|
1155 |
"Attention: Exclusion are not currently set to be recorded, the results below "
|
1156 |
"may not reflect current statistics!"
|
1157 |
msgstr ""
|
1158 |
+
"Achtung: Ausgrenzung sind nicht gerade aufgezeichnet werden, die Ergebnisse "
|
1159 |
+
"unten spiegeln aktuelle Statistiken möglicherweise nicht wieder!"
|
1160 |
|
1161 |
+
#: includes/log/exclusions.php:118
|
1162 |
msgid "Number of excluded hits"
|
1163 |
+
msgstr "Anzahl der Hits ausgeschlossene"
|
1164 |
|
1165 |
+
#: includes/settings/tabs/wps-access-level.php:86
|
1166 |
msgid ""
|
1167 |
"Hint: manage_network = Super Admin Network, manage_options = Administrator, "
|
1168 |
"edit_others_posts = Editor, publish_posts = Author, edit_posts = "
|
1169 |
"Contributor, read = Everyone."
|
1170 |
msgstr ""
|
1171 |
+
"Hinweis: Manage_network = Super Admin Netzwerk, Manage_options = "
|
1172 |
+
"Administrator, Edit_others_posts = Editor, Publish_posts = Autor, Edit_posts "
|
1173 |
+
"= Mitwirkende, lesen = Everyone."
|
1174 |
|
1175 |
+
#: includes/settings/tabs/wps-access-level.php:99
|
1176 |
+
#: includes/settings/tabs/wps-access-level.php:151
|
1177 |
msgid "Enable"
|
1178 |
msgstr "Aktivieren"
|
1179 |
|
1180 |
+
#: includes/settings/tabs/wps-access-level.php:100
|
1181 |
msgid ""
|
1182 |
"This will record all the excluded hits in a separate table with the reasons "
|
1183 |
"why it was excluded but no other information. This will generate a lot of "
|
1184 |
"data but is useful if you want to see the total number of hits your site "
|
1185 |
"gets, not just actual user visits."
|
1186 |
msgstr ""
|
1187 |
+
"Dies zeichnet alle ausgeschlossenen Hits in einer separaten Tabelle mit den "
|
1188 |
+
"Gründen, warum es ausgeschlossen war, aber keine weiteren Informationen. "
|
1189 |
+
"Dies erzeugt eine große Datenmenge aber ist nützlich, wenn Sie die "
|
1190 |
+
"Gesamtanzahl der Treffer anzeigen möchten Ihre Site erhält, nicht nur die "
|
1191 |
+
"tatsächlichen Benutzer Besuche."
|
|
|
1192 |
|
1193 |
+
#: includes/settings/tabs/wps-access-level.php:168
|
1194 |
msgid "Site URL Exclusions"
|
1195 |
+
msgstr "Website-URL-Ausschlüsse"
|
1196 |
|
1197 |
+
#: includes/settings/tabs/wps-access-level.php:175
|
1198 |
msgid "Exclude the login page for registering as a hit."
|
1199 |
+
msgstr "Schließen Sie die Anmeldeseite für die Registrierung als Hit."
|
1200 |
|
1201 |
+
#: includes/settings/tabs/wps-access-level.php:182
|
1202 |
msgid "Exclude the admin pages for registering as a hit."
|
1203 |
+
msgstr "Schließen Sie die Admin-Seiten für die Registrierung als Hit."
|
|
|
1204 |
|
1205 |
+
#: includes/settings/tabs/wps-access-level.php:93 wp-statistics.php:254
|
|
|
1206 |
msgid "Exclusions"
|
1207 |
+
msgstr "Ausschlüsse"
|
1208 |
|
1209 |
+
#: includes/log/exclusions.php:68
|
1210 |
msgid "Total Exclusions: %s"
|
1211 |
+
msgstr "Insgesamt Ausschlüsse: %s"
|
1212 |
|
1213 |
+
#: includes/log/exclusions.php:75
|
1214 |
msgid "Exclusions Statistical Chart"
|
1215 |
+
msgstr "Ausschlüsse statistische Diagramm"
|
1216 |
|
1217 |
+
#: includes/settings/tabs/wps-access-level.php:33
|
1218 |
msgid "Access Levels"
|
1219 |
+
msgstr "Zugriffsebenen"
|
1220 |
|
1221 |
+
#: includes/optimization/wps-optimization.php:126
|
1222 |
msgid "Resources/Information"
|
1223 |
+
msgstr "Ressourcen/Informationen"
|
1224 |
|
1225 |
+
#: includes/optimization/wps-optimization.php:128
|
1226 |
msgid "Purging"
|
1227 |
+
msgstr "Aufräumen"
|
1228 |
|
1229 |
+
#: includes/optimization/wps-optimization.php:130
|
1230 |
msgid "Updates"
|
1231 |
+
msgstr "Aktuelles"
|
1232 |
|
1233 |
+
#: includes/settings/wps-settings.php:88
|
1234 |
msgid "Access/Exclusions"
|
1235 |
+
msgstr "Zugang/Ausschlüsse"
|
1236 |
|
1237 |
+
#: includes/settings/wps-settings.php:91
|
1238 |
msgid "Maintenance"
|
1239 |
+
msgstr "Wartung"
|
1240 |
|
1241 |
+
#: includes/settings/wps-settings.php:126
|
1242 |
msgid "Update"
|
1243 |
+
msgstr "Update"
|
1244 |
|
1245 |
+
#: includes/settings/wps-settings.php:86
|
1246 |
msgid "General"
|
1247 |
+
msgstr "Allgemeine"
|
1248 |
|
1249 |
+
#: includes/optimization/empty.php:57
|
1250 |
msgid "Error, %s not emptied!"
|
1251 |
+
msgstr "Fehler, %s nicht geleert!"
|
1252 |
|
1253 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:118
|
1254 |
msgid "Data"
|
1255 |
msgstr "Daten"
|
1256 |
|
1257 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:145
|
1258 |
msgid "Purge records older than"
|
1259 |
+
msgstr "Datensätze, die älter als bereinigen"
|
1260 |
|
1261 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:151
|
1262 |
msgid ""
|
1263 |
"Deleted user statistics data older than the selected number of days. "
|
1264 |
"Minimum value is 30 days."
|
1265 |
msgstr ""
|
1266 |
+
"Statistische Daten älter als die ausgewählte Anzahl von Tagen gelöscht. "
|
1267 |
+
"Mindestwert beträgt 30 Tage."
|
1268 |
|
1269 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:152
|
1270 |
msgid "Purge now!"
|
1271 |
+
msgstr "Jetzt bereinigen!"
|
1272 |
|
1273 |
+
#: includes/optimization/purge-data.php:55
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1274 |
msgid "Please select a value over 30 days."
|
1275 |
+
msgstr "Bitte wählen Sie einen Wert über 30 Tage."
|
1276 |
|
1277 |
+
#: includes/settings/tabs/wps-maintenance.php:20
|
1278 |
msgid ""
|
1279 |
"This will permanently delete data from the database each day, are you sure "
|
1280 |
"you want to enable this option?"
|
1281 |
msgstr ""
|
1282 |
+
"Dies wird dauerhaft Daten aus der Datenbank löschen jeden Tag, bist du "
|
1283 |
+
"sicher, dass Sie diese Option aktivieren möchten?"
|
1284 |
|
1285 |
+
#: includes/settings/tabs/wps-maintenance.php:30
|
1286 |
msgid "Database Maintenance"
|
1287 |
+
msgstr "Datenbankwartung"
|
1288 |
|
1289 |
+
#: includes/settings/tabs/wps-maintenance.php:35
|
1290 |
msgid "Run a daily WP Cron job to prune the databases"
|
1291 |
+
msgstr ""
|
1292 |
+
"Führen Sie einen täglichen WP-Cron-Job um die Datenbanken zu beschneiden"
|
1293 |
|
1294 |
+
#: includes/settings/tabs/wps-maintenance.php:41
|
1295 |
msgid ""
|
1296 |
"A WP Cron job will be run daily to prune any data older than a set number of "
|
1297 |
"days."
|
1298 |
msgstr ""
|
1299 |
+
"WP-Cron-Job läuft täglich bis alle Daten, die älter als eine bestimmte "
|
1300 |
+
"Anzahl von Tagen zu beschneiden."
|
1301 |
|
1302 |
+
#: includes/settings/tabs/wps-maintenance.php:47
|
1303 |
msgid "Prune data older than"
|
1304 |
+
msgstr "Prune-Daten, die älter als"
|
1305 |
|
1306 |
+
#: includes/settings/tabs/wps-maintenance.php:52
|
1307 |
msgid "Days"
|
1308 |
msgstr "Tage"
|
1309 |
|
1310 |
+
#: includes/settings/tabs/wps-maintenance.php:53
|
1311 |
msgid ""
|
1312 |
"The number of days to keep statistics for. Minimum value is 30 days. "
|
1313 |
"Invalid values will disable the daily maintenance."
|
1314 |
msgstr ""
|
1315 |
+
"Die Anzahl der Tage, Statistik für zu halten. Mindestwert beträgt 30 Tage. "
|
1316 |
+
"Ungültige Werte werden die tägliche Wartung deaktiviert."
|
|
|
|
|
|
|
|
|
|
|
1317 |
|
1318 |
+
#: includes/settings/wps-settings.php:89
|
|
|
|
|
|
|
|
|
1319 |
msgid "GeoIP"
|
1320 |
msgstr "GeoIP"
|
1321 |
|
1322 |
+
#: includes/settings/tabs/wps-browscap.php:54
|
1323 |
+
#: includes/settings/tabs/wps-geoip.php:64
|
1324 |
msgid "Next update will be"
|
1325 |
+
msgstr "Nächstes Update werden"
|
1326 |
|
1327 |
+
#: includes/settings/tabs/wps-geoip.php:109
|
1328 |
msgid ""
|
1329 |
"GeoIP collection requires PHP %s or above, it is currently disabled due to "
|
1330 |
"the installed PHP version being "
|
1331 |
msgstr ""
|
1332 |
+
"GeoIP Sammlung benötigt PHP %s oder oben, ist es derzeit deaktiviert durch "
|
1333 |
+
"die installierte PHP-Version-wird "
|
1334 |
|
1335 |
+
#: includes/log/widgets/search.php:8 includes/log/widgets/summary.php:64
|
|
|
1336 |
msgid "Search Engine Referrals"
|
1337 |
+
msgstr "Search-Engine-Empfehlungen"
|
1338 |
|
1339 |
+
#: includes/log/widgets/summary.php:88
|
1340 |
msgid "Daily Total"
|
1341 |
+
msgstr "Tägliche Gesamt"
|
1342 |
|
1343 |
+
#: includes/log/widgets/summary.php:102
|
1344 |
msgid "Current Time and Date"
|
1345 |
+
msgstr "Aktuelle Uhrzeit und Datum"
|
1346 |
|
1347 |
+
#: includes/optimization/tabs/wps-optimization-database.php:39
|
1348 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:25
|
1349 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:40
|
1350 |
msgid "Update Now!"
|
1351 |
+
msgstr "Jetzt aktualisieren!"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1352 |
|
1353 |
+
#: includes/settings/tabs/wps-access-level.php:87
|
1354 |
msgid ""
|
1355 |
"Each of the above casscades the rights upwards in the default WordPress "
|
1356 |
"configuration. So for example selecting publish_posts grants the right to "
|
1357 |
"Authors, Editors, Admins and Super Admins."
|
1358 |
msgstr ""
|
1359 |
+
"Jedes der oben genannten Casscades die Rechte nach oben in die Standard-"
|
1360 |
+
"WordPress-Konfiguration. So zum Beispiel Auswahl Publish_posts gewährt das "
|
1361 |
+
"Recht, Autoren, Redakteure, Administratoren und Super-Admins."
|
|
|
1362 |
|
1363 |
+
#: includes/settings/tabs/wps-access-level.php:88
|
1364 |
msgid ""
|
1365 |
"If you need a more robust solution to delegate access you might want to look "
|
1366 |
"at %s in the WordPress plugin directory."
|
1367 |
msgstr ""
|
1368 |
+
"Benötigen Sie eine robustere Lösung, Zugang zu delegieren möchten Sie %s in "
|
1369 |
+
"der WordPress-Plugin-Verzeichnis ansehen."
|
|
|
1370 |
|
1371 |
+
#: includes/settings/tabs/wps-access-level.php:62
|
1372 |
msgid "Required user level to view WP Statistics"
|
1373 |
+
msgstr "Erforderliche Benutzerebene WP Statistics anzeigen"
|
1374 |
|
1375 |
+
#: includes/settings/tabs/wps-access-level.php:77
|
1376 |
msgid "Required user level to manage WP Statistics"
|
1377 |
+
msgstr "Erforderliche Benutzerebene, WP Statistics zu verwalten"
|
1378 |
|
1379 |
+
#: includes/settings/tabs/wps-geoip.php:56
|
1380 |
msgid "Schedule monthly update of GeoIP DB"
|
1381 |
+
msgstr "Monatliche Aktualisierung der GeoIP DB planen"
|
1382 |
|
1383 |
+
#: includes/settings/tabs/wps-geoip.php:82
|
1384 |
msgid ""
|
1385 |
"Download of the GeoIP database will be scheduled for 2 days after the first "
|
1386 |
"Tuesday of the month."
|
1387 |
msgstr ""
|
1388 |
+
"Download von der GeoIP-Datenbank wird für 2 Tage nach dem ersten Dienstag im "
|
1389 |
+
"Monat eingeplant werden."
|
1390 |
|
1391 |
+
#: includes/settings/tabs/wps-geoip.php:83
|
1392 |
msgid ""
|
1393 |
"This option will also download the database if the local filesize is less "
|
1394 |
"than 1k (which usually means the stub that comes with the plugin is still in "
|
1395 |
"place)."
|
1396 |
msgstr ""
|
1397 |
+
"Diese Option wird auch die Datenbank herunterladen, wenn die lokale "
|
1398 |
+
"Dateigröße kleiner als 1 k ist (d.h. in der Regel, dass die Stub, die mit "
|
1399 |
+
"dem Plugin kommt noch in Kraft ist)."
|
|
|
1400 |
|
1401 |
+
#: includes/settings/tabs/wps-geoip.php:89
|
1402 |
msgid "Populate missing GeoIP after update of GeoIP DB"
|
1403 |
+
msgstr "Fehlende GeoIP nach Update von GeoIP-DB füllen"
|
1404 |
|
1405 |
+
#: includes/settings/tabs/wps-geoip.php:95
|
1406 |
msgid "Update any missing GeoIP data after downloading a new database."
|
1407 |
msgstr ""
|
1408 |
+
"Fehlenden GeoIP Daten nach dem Herunterladen einer neuen Datenbank zu "
|
1409 |
+
"aktualisieren."
|
1410 |
|
1411 |
+
#: includes/functions/geoip-populate.php:50
|
1412 |
msgid "Updated %s GeoIP records in the visitors database."
|
1413 |
+
msgstr "%S GeoIP Datensätze in der Besucher-Datenbank aktualisiert."
|
1414 |
|
1415 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:98
|
1416 |
msgid "Version Info"
|
1417 |
+
msgstr "Versionsinfo"
|
1418 |
|
1419 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:103
|
1420 |
msgid "WP Statistics Version"
|
1421 |
+
msgstr "WP Statistics Version"
|
1422 |
|
1423 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:108
|
1424 |
msgid "The WP Statistics version you are running."
|
1425 |
+
msgstr "Die WP Statistics-Version ausgeführt wird."
|
1426 |
|
1427 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:114
|
1428 |
msgid "PHP Version"
|
1429 |
msgstr "PHP-Version"
|
1430 |
|
1431 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:119
|
1432 |
msgid "The PHP version you are running."
|
1433 |
+
msgstr "Die PHP-Version, die Sie ausführen."
|
1434 |
|
1435 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:136
|
1436 |
msgid "jQuery Version"
|
1437 |
+
msgstr "jQuery Version"
|
1438 |
|
1439 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:141
|
1440 |
msgid "The jQuery version you are running."
|
1441 |
+
msgstr "Die jQuery-Version ausgeführt wird."
|
1442 |
|
1443 |
+
#: wp-statistics.php:610
|
1444 |
msgid "Error could not open downloaded GeoIP database for reading: %s"
|
1445 |
msgstr ""
|
1446 |
+
"Fehler konnte nicht geöffnet werden heruntergeladene GeoIP-Datenbank für die "
|
1447 |
+
"Lesung: %s"
|
1448 |
|
1449 |
+
#: wp-statistics.php:617
|
1450 |
msgid "Error could not open destination GeoIP database for writing %s"
|
1451 |
msgstr ""
|
1452 |
+
"Fehler konnte GeoIP Zieldatenbank für das Schreiben von %s nicht geöffnet "
|
1453 |
+
"werden."
|
1454 |
|
1455 |
+
#: wp-statistics.php:633
|
1456 |
msgid "GeoIP Database updated successfully!"
|
1457 |
+
msgstr "GeoIP-Datenbank aktualisiert erfolgreich!"
|
1458 |
|
1459 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:229
|
1460 |
msgid "Client Info"
|
1461 |
+
msgstr "Kunden-Info"
|
1462 |
|
1463 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:234
|
1464 |
msgid "Client IP"
|
1465 |
+
msgstr "Client IP"
|
1466 |
|
1467 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:239
|
1468 |
msgid "The client IP address."
|
1469 |
+
msgstr "Die Client-IP-Adresse."
|
1470 |
|
1471 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:245
|
1472 |
msgid "User Agent"
|
1473 |
+
msgstr "User-Agent"
|
1474 |
|
1475 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:250
|
1476 |
msgid "The client user agent string."
|
1477 |
+
msgstr "Der Client-Benutzer-Agent-Zeichenfolge."
|
1478 |
|
1479 |
+
#: includes/settings/tabs/wps-access-level.php:105
|
1480 |
msgid "Exclude User Roles"
|
1481 |
+
msgstr "Ausschließen von Benutzerrollen"
|
1482 |
|
1483 |
+
#: includes/settings/tabs/wps-access-level.php:119
|
1484 |
+
#: includes/settings/tabs/wps-access-level.php:174
|
1485 |
+
#: includes/settings/tabs/wps-access-level.php:181
|
1486 |
msgid "Exclude"
|
1487 |
+
msgstr "Ausschließen"
|
1488 |
|
1489 |
+
#: includes/settings/tabs/wps-access-level.php:120
|
1490 |
msgid "Exclude %s role from data collection."
|
1491 |
+
msgstr "%S-Rolle von Datensammlung ausschließen."
|
1492 |
|
1493 |
+
#: includes/settings/tabs/wps-access-level.php:126
|
1494 |
msgid "IP/Robot Exclusions"
|
1495 |
+
msgstr "IP/Roboter-Ausschlüsse"
|
1496 |
|
1497 |
+
#: includes/settings/tabs/wps-access-level.php:143
|
1498 |
msgid ""
|
1499 |
"A list of words (one per line) to match against to detect robots. Entries "
|
1500 |
"must be at least 4 characters long or they will be ignored."
|
1501 |
msgstr ""
|
1502 |
+
"Eine Liste von Wörtern (eines pro Zeile) um mit übereinzustimmen, um Roboter "
|
1503 |
+
"zu erkennen. Einträge müssen mindestens 4 Zeichen lang sein, oder sie "
|
1504 |
+
"ignoriert werden."
|
1505 |
|
1506 |
+
#: includes/settings/tabs/wps-access-level.php:144
|
1507 |
msgid "Reset to Default"
|
1508 |
+
msgstr "Auf Standard zurücksetzen"
|
1509 |
|
1510 |
+
#: includes/settings/tabs/wps-access-level.php:161
|
1511 |
msgid "Add 10.0.0.0"
|
1512 |
+
msgstr "Hinzufügen von 10.0.0.0"
|
1513 |
|
1514 |
+
#: includes/settings/tabs/wps-access-level.php:162
|
1515 |
msgid "Add 172.16.0.0"
|
1516 |
+
msgstr "172.16.0.0 hinzufügen"
|
1517 |
|
1518 |
+
#: includes/settings/tabs/wps-access-level.php:163
|
1519 |
msgid "Add 192.168.0.0"
|
1520 |
+
msgstr "Hinzufügen von 192.168.0.0"
|
1521 |
|
1522 |
+
#: includes/settings/tabs/wps-general.php:264
|
1523 |
msgid "Charts"
|
1524 |
msgstr "Diagramme"
|
1525 |
|
1526 |
+
#: includes/settings/tabs/wps-geoip.php:38
|
1527 |
msgid ""
|
1528 |
"For get more information and location (country) from visitor, enable this "
|
1529 |
"feature."
|
1530 |
msgstr ""
|
1531 |
+
"Für weitere Informationen und Standort (Land) von Besucher, aktivieren Sie "
|
1532 |
+
"diese Funktion."
|
1533 |
|
1534 |
+
#: includes/settings/wps-settings.php:87 wp-statistics.php:248
|
|
|
1535 |
msgid "Overview"
|
1536 |
+
msgstr "Übersicht"
|
1537 |
|
1538 |
+
#: includes/optimization/tabs/wps-optimization-database.php:25
|
1539 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:21
|
1540 |
+
#: wp-statistics.php:251
|
1541 |
msgid "Countries"
|
1542 |
+
msgstr "Länder"
|
1543 |
|
1544 |
+
#: wp-statistics.php:176 wp-statistics.php:253
|
|
|
1545 |
msgid "Hits"
|
1546 |
+
msgstr "Hits"
|
1547 |
|
1548 |
+
#: wp-statistics.php:255
|
1549 |
msgid "Referers"
|
1550 |
+
msgstr "Referer"
|
1551 |
|
1552 |
+
#: wp-statistics.php:256
|
1553 |
msgid "Searches"
|
1554 |
+
msgstr "Suche"
|
1555 |
|
1556 |
+
#: wp-statistics.php:257
|
1557 |
msgid "Search Words"
|
1558 |
+
msgstr "Suchwörter"
|
1559 |
|
1560 |
+
#: includes/settings/tabs/wps-general.php:94
|
1561 |
msgid "Second"
|
1562 |
+
msgstr "Sekunde"
|
1563 |
|
1564 |
+
#: includes/log/all-browsers.php:17
|
1565 |
msgid "Browser Statistics"
|
1566 |
+
msgstr "Browser-Statistik"
|
1567 |
|
1568 |
+
#: includes/log/all-browsers.php:107
|
1569 |
msgid "Platform"
|
1570 |
msgstr "Plattform"
|
1571 |
|
1572 |
+
#: includes/log/all-browsers.php:241
|
1573 |
msgid "%s Version"
|
1574 |
+
msgstr "%s-version"
|
1575 |
|
1576 |
+
#: includes/log/hit-statistics.php:17 includes/log/widgets/hits.php:8
|
|
|
1577 |
msgid "Hit Statistics"
|
1578 |
+
msgstr "Hit-Statistik"
|
1579 |
|
1580 |
+
#: includes/log/exclusions.php:57 includes/log/hit-statistics.php:21
|
1581 |
+
#: includes/log/page-statistics.php:33 includes/log/search-statistics.php:21
|
|
|
|
|
1582 |
msgid "10 Days"
|
1583 |
msgstr "10 Tage"
|
1584 |
|
1585 |
+
#: includes/log/exclusions.php:58 includes/log/hit-statistics.php:22
|
1586 |
+
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:22
|
|
|
|
|
1587 |
msgid "20 Days"
|
1588 |
msgstr "20 Tage"
|
1589 |
|
1590 |
+
#: includes/log/exclusions.php:59 includes/log/hit-statistics.php:23
|
1591 |
+
#: includes/log/page-statistics.php:35 includes/log/search-statistics.php:23
|
|
|
|
|
1592 |
msgid "30 Days"
|
1593 |
msgstr "30 Tage"
|
1594 |
|
1595 |
+
#: includes/log/exclusions.php:60 includes/log/hit-statistics.php:24
|
1596 |
+
#: includes/log/page-statistics.php:36 includes/log/search-statistics.php:24
|
|
|
|
|
1597 |
msgid "2 Months"
|
1598 |
msgstr "2 Monate"
|
1599 |
|
1600 |
+
#: includes/log/exclusions.php:61 includes/log/hit-statistics.php:25
|
1601 |
+
#: includes/log/page-statistics.php:37 includes/log/search-statistics.php:25
|
|
|
|
|
1602 |
msgid "3 Months"
|
1603 |
msgstr "3 Monate"
|
1604 |
|
1605 |
+
#: includes/log/exclusions.php:62 includes/log/hit-statistics.php:26
|
1606 |
+
#: includes/log/page-statistics.php:38 includes/log/search-statistics.php:26
|
|
|
|
|
1607 |
msgid "6 Months"
|
1608 |
msgstr "6 Monate"
|
1609 |
|
1610 |
+
#: includes/log/exclusions.php:63 includes/log/hit-statistics.php:27
|
1611 |
+
#: includes/log/page-statistics.php:39 includes/log/search-statistics.php:27
|
|
|
|
|
1612 |
msgid "9 Months"
|
1613 |
msgstr "9 Monate"
|
1614 |
|
1615 |
+
#: includes/log/exclusions.php:64 includes/log/hit-statistics.php:28
|
1616 |
+
#: includes/log/page-statistics.php:40 includes/log/search-statistics.php:28
|
|
|
|
|
1617 |
msgid "1 Year"
|
1618 |
msgstr "1 Jahr"
|
1619 |
|
1620 |
+
#: includes/settings/tabs/wps-overview-display.php:34
|
1621 |
msgid "Hits Statistical Chart"
|
1622 |
+
msgstr "Statistische Chart Hits"
|
1623 |
+
|
1624 |
+
#: includes/log/exclusions.php:97 includes/log/hit-statistics.php:69
|
1625 |
+
#: includes/log/search-statistics.php:77 includes/log/widgets/hits.php:39
|
1626 |
+
#: includes/log/widgets/search.php:46
|
1627 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:150
|
|
|
|
|
1628 |
msgid "days"
|
1629 |
+
msgstr "Tage"
|
1630 |
|
1631 |
+
#: includes/log/widgets/countries.php:11
|
1632 |
+
#: includes/settings/tabs/wps-overview-display.php:27
|
1633 |
msgid "Top 10 Countries"
|
1634 |
+
msgstr "Top 10 Länder"
|
1635 |
|
1636 |
+
#: includes/log/top-countries.php:28 includes/log/widgets/countries.php:17
|
|
|
1637 |
msgid "Rank"
|
1638 |
msgstr "Rang"
|
1639 |
|
1640 |
+
#: includes/log/top-countries.php:29 includes/log/widgets/countries.php:18
|
|
|
1641 |
msgid "Flag"
|
1642 |
msgstr "Flagge"
|
1643 |
|
1644 |
+
#: includes/log/top-countries.php:31 includes/log/widgets/countries.php:20
|
|
|
1645 |
msgid "Visitor Count"
|
1646 |
+
msgstr "Besucherzahlen"
|
1647 |
|
1648 |
+
#: includes/settings/tabs/wps-overview-display.php:35
|
1649 |
msgid "Search Engine Referrers Statistical Chart"
|
1650 |
+
msgstr "Suche Motor Referrer statistische Diagramm"
|
1651 |
|
1652 |
+
#: includes/log/top-countries.php:19
|
1653 |
msgid "Top Countries"
|
1654 |
+
msgstr "Top-Länder"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1655 |
|
1656 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:159
|
1657 |
msgid "Delete User Agent Types"
|
1658 |
+
msgstr "Löschen von Benutzer-Agent-Typen"
|
1659 |
|
1660 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:164
|
1661 |
msgid "Delete Agents"
|
1662 |
+
msgstr "Löschen Sie Agents"
|
1663 |
|
1664 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:179
|
1665 |
msgid "All visitor data will be lost for this agent type."
|
1666 |
+
msgstr "Alle Besucherdaten werden für diesen Agent verloren gehen."
|
|
|
1667 |
|
1668 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:180
|
1669 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:204
|
1670 |
msgid "Delete now!"
|
1671 |
+
msgstr "Löschen Sie jetzt!"
|
1672 |
|
1673 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:188
|
1674 |
msgid "Delete Platforms"
|
1675 |
+
msgstr "Plattformen zu löschen"
|
1676 |
|
1677 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:203
|
1678 |
msgid "All visitor data will be lost for this platform type."
|
1679 |
+
msgstr "Alle Besucherdaten werden für diese Plattform Art verloren."
|
|
|
1680 |
|
1681 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:16
|
1682 |
msgid "GeoIP Options"
|
1683 |
msgstr "GeoIP-Optionen"
|
1684 |
|
1685 |
+
#: includes/settings/tabs/wps-general.php:133
|
1686 |
msgid "Store entire user agent string"
|
1687 |
+
msgstr "Gesamte Benutzer-Agent-Zeichenfolge zu speichern"
|
1688 |
|
1689 |
+
#: includes/settings/tabs/wps-general.php:139
|
1690 |
msgid "Only enabled for debugging"
|
1691 |
+
msgstr "Nur aktiviert zum Debuggen"
|
|
|
|
|
1692 |
|
1693 |
+
#: includes/settings/tabs/wps-geoip.php:17
|
1694 |
msgid "GeoIP settings"
|
1695 |
msgstr "GeoIP-Einstellungen"
|
1696 |
|
1697 |
+
#: includes/settings/tabs/wps-geoip.php:32
|
1698 |
msgid "GeoIP collection"
|
1699 |
+
msgstr "GeoIP-Sammlung"
|
1700 |
|
1701 |
+
#: includes/settings/tabs/wps-geoip.php:44
|
1702 |
msgid "Update GeoIP Info"
|
1703 |
+
msgstr "Update GeoIP-Info"
|
1704 |
|
1705 |
+
#: includes/settings/tabs/wps-geoip.php:49
|
1706 |
msgid "Download GeoIP Database"
|
1707 |
+
msgstr "GeoIP-Database herunterladen"
|
1708 |
|
1709 |
+
#: includes/settings/tabs/wps-browscap.php:40
|
1710 |
+
#: includes/settings/tabs/wps-geoip.php:50
|
1711 |
msgid "Save changes on this page to download the update."
|
1712 |
msgstr ""
|
1713 |
+
"Speichern Sie die Änderungen auf dieser Seite, um das Update herunterzuladen."
|
|
|
1714 |
|
1715 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:10
|
1716 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:36
|
1717 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:62
|
1718 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:90
|
1719 |
msgid "Are you sure?"
|
1720 |
msgstr "Bist du sicher?"
|
1721 |
|
1722 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:137
|
1723 |
msgid "Clear now!"
|
1724 |
+
msgstr "Jetzt klar!"
|
1725 |
|
1726 |
+
#: wp-statistics.php:261
|
1727 |
msgid "Optimization"
|
1728 |
msgstr "Optimierung"
|
1729 |
|
1730 |
+
#: includes/optimization/delete-agents.php:5
|
1731 |
+
#: includes/optimization/delete-platforms.php:5
|
1732 |
+
#: includes/optimization/empty.php:5 includes/optimization/export.php:5
|
1733 |
+
#: includes/optimization/purge-data.php:5
|
1734 |
+
#: includes/optimization/wps-optimization.php:3 manual/manual.php:5
|
|
|
|
|
1735 |
msgid "Access denied!"
|
1736 |
+
msgstr "Zugriff verweigert!"
|
|
|
|
|
|
|
|
|
1737 |
|
1738 |
+
#: includes/optimization/delete-agents.php:18
|
1739 |
+
#: includes/optimization/delete-platforms.php:18
|
1740 |
+
#: includes/optimization/empty.php:42 includes/optimization/export.php:57
|
|
|
1741 |
msgid "Please select the desired items."
|
1742 |
+
msgstr "Bitte wählen Sie den gewünschten Artikel."
|
1743 |
|
1744 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:17
|
1745 |
msgid "Resources"
|
1746 |
msgstr "Ressourcen"
|
1747 |
|
1748 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:22
|
1749 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:27
|
1750 |
msgid "Memory usage in PHP"
|
1751 |
+
msgstr "Speichernutzung in PHP"
|
1752 |
|
1753 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:26
|
1754 |
msgid "Byte"
|
1755 |
msgstr "Byte"
|
1756 |
|
1757 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:48
|
1758 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:59
|
1759 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:70
|
1760 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:81
|
1761 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:92
|
1762 |
msgid "Row"
|
1763 |
+
msgstr "Zeile"
|
1764 |
|
1765 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:49
|
1766 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:60
|
1767 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:71
|
1768 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:82
|
1769 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:93
|
1770 |
msgid "Number of rows"
|
1771 |
msgstr "Anzahl der Zeilen"
|
1772 |
|
1773 |
+
#: includes/optimization/tabs/wps-optimization-export.php:7
|
1774 |
+
#: includes/optimization/wps-optimization.php:127
|
1775 |
msgid "Export"
|
1776 |
msgstr "Export"
|
1777 |
|
1778 |
+
#: includes/optimization/tabs/wps-optimization-export.php:12
|
1779 |
msgid "Export from"
|
1780 |
+
msgstr "Exportieren aus"
|
1781 |
|
1782 |
+
#: includes/optimization/tabs/wps-optimization-export.php:24
|
1783 |
msgid "Select the table for the output file."
|
1784 |
+
msgstr "Wählen Sie die Tabelle für die Ausgabedatei."
|
1785 |
|
1786 |
+
#: includes/optimization/tabs/wps-optimization-export.php:30
|
1787 |
msgid "Export To"
|
1788 |
+
msgstr "Exportieren in"
|
1789 |
|
1790 |
+
#: includes/optimization/tabs/wps-optimization-export.php:41
|
1791 |
msgid "Select the output file type."
|
1792 |
+
msgstr "Wählen Sie die Ausgabe-Datei-Typ."
|
1793 |
|
1794 |
+
#: includes/optimization/tabs/wps-optimization-export.php:53
|
1795 |
msgid "Start Now!"
|
1796 |
+
msgstr "Starten Sie jetzt!"
|
1797 |
|
1798 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:123
|
1799 |
msgid "Empty Table"
|
1800 |
+
msgstr "Leere Tabelle"
|
1801 |
|
1802 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:136
|
1803 |
msgid "All data table will be lost."
|
1804 |
+
msgstr "Alle Datentabelle werden gelöscht."
|
1805 |
|
1806 |
+
#: includes/settings/tabs/wps-about.php:44
|
1807 |
msgid "Support"
|
1808 |
+
msgstr "Unterstützung"
|
1809 |
|
1810 |
+
#: includes/settings/tabs/wps-about.php:74
|
1811 |
+
msgid "Farsi"
|
1812 |
+
msgstr "Farsi"
|
1813 |
+
|
1814 |
+
#: includes/log/top-referring.php:47
|
1815 |
msgid "Referring sites from"
|
1816 |
+
msgstr "Verweisende Websites aus"
|
1817 |
|
1818 |
+
#: includes/settings/tabs/wps-about.php:36
|
1819 |
msgid "Translations"
|
1820 |
msgstr "Übersetzungen"
|
1821 |
|
1822 |
+
#: includes/log/top-referring.php:4
|
1823 |
msgid "To be added soon"
|
1824 |
+
msgstr "Bald hinzugefügt werden"
|
1825 |
+
|
1826 |
+
#: includes/log/last-search.php:102 includes/log/last-visitor.php:99
|
1827 |
+
#: includes/log/top-referring.php:78 includes/log/widgets/recent.php:27
|
1828 |
+
#: includes/log/widgets/words.php:32
|
1829 |
+
#: includes/settings/tabs/wps-overview-display.php:33
|
1830 |
+
#: includes/settings/tabs/wps-overview-display.php:71
|
|
|
|
|
1831 |
msgid "Map"
|
1832 |
+
msgstr "Karte"
|
1833 |
|
1834 |
+
#: includes/log/last-search.php:139 includes/log/last-visitor.php:132
|
1835 |
+
#: includes/log/top-pages.php:181 includes/log/top-referring.php:132
|
|
|
|
|
1836 |
msgid "Page"
|
1837 |
msgstr "Seite"
|
1838 |
|
1839 |
+
#: includes/log/last-search.php:139 includes/log/last-visitor.php:132
|
1840 |
+
#: includes/log/top-pages.php:181 includes/log/top-referring.php:132
|
|
|
|
|
1841 |
msgid "From"
|
1842 |
+
msgstr "Von"
|
1843 |
|
1844 |
+
#: wp-statistics.php:455
|
1845 |
msgid "Table plugin does not exist! Please disable and re-enable the plugin."
|
1846 |
msgstr ""
|
1847 |
+
"Tabelle Plugin existiert nicht! Bitte deaktivieren Sie und reaktivieren Sie "
|
1848 |
+
"das Plugin."
|
1849 |
|
1850 |
+
#: includes/settings/tabs/wps-general.php:280
|
1851 |
+
#: includes/settings/tabs/wps-general.php:285 schedule.php:161
|
|
|
1852 |
msgid "Statistical reporting"
|
1853 |
+
msgstr "Statistische Berichte"
|
1854 |
|
1855 |
+
#: widget.php:14 wp-statistics.php:245
|
|
|
|
|
1856 |
msgid "Statistics"
|
1857 |
msgstr "Statistik"
|
1858 |
|
1859 |
+
#: includes/settings/tabs/wps-general.php:369 widget.php:38 widget.php:247
|
1860 |
+
#: wp-statistics.php:310
|
|
|
|
|
|
|
|
|
|
|
|
|
1861 |
msgid "User Online"
|
1862 |
+
msgstr "User Online"
|
1863 |
|
1864 |
+
#: includes/settings/tabs/wps-general.php:371 widget.php:45 widget.php:250
|
|
|
|
|
1865 |
msgid "Today Visit"
|
1866 |
+
msgstr "Heute Besuch"
|
1867 |
|
1868 |
+
#: includes/settings/tabs/wps-general.php:370 widget.php:52 widget.php:253
|
|
|
|
|
1869 |
msgid "Today Visitor"
|
1870 |
+
msgstr "Heute Besucher"
|
1871 |
|
1872 |
+
#: includes/settings/tabs/wps-general.php:373 widget.php:59
|
|
|
1873 |
msgid "Yesterday Visit"
|
1874 |
+
msgstr "Gestern besuchen"
|
1875 |
|
1876 |
+
#: includes/settings/tabs/wps-general.php:372 widget.php:66 widget.php:259
|
|
|
|
|
1877 |
msgid "Yesterday Visitor"
|
1878 |
+
msgstr "Gestern Besucher"
|
1879 |
|
1880 |
+
#: widget.php:73 widget.php:262
|
|
|
1881 |
msgid "Week Visit"
|
1882 |
+
msgstr "Woche Besuch"
|
1883 |
|
1884 |
+
#: widget.php:80 widget.php:265
|
|
|
1885 |
msgid "Month Visit"
|
1886 |
+
msgstr "Monat Besuch"
|
1887 |
|
1888 |
+
#: widget.php:87 widget.php:268
|
|
|
1889 |
msgid "Years Visit"
|
1890 |
+
msgstr "Jahren besuchen"
|
1891 |
|
1892 |
+
#: includes/settings/tabs/wps-general.php:375 widget.php:94 widget.php:271
|
|
|
|
|
1893 |
msgid "Total Visit"
|
1894 |
+
msgstr "Total Besuch"
|
1895 |
|
1896 |
+
#: includes/settings/tabs/wps-general.php:374 widget.php:101 widget.php:274
|
|
|
|
|
1897 |
msgid "Total Visitor"
|
1898 |
+
msgstr "Total Besucher"
|
1899 |
|
1900 |
+
#: widget.php:123 widget.php:300
|
|
|
1901 |
msgid "Total Posts"
|
1902 |
+
msgstr "Beiträge insgesamt"
|
1903 |
|
1904 |
+
#: widget.php:130 widget.php:303
|
|
|
1905 |
msgid "Total Pages"
|
1906 |
+
msgstr "Gesamtseiten"
|
1907 |
|
1908 |
+
#: widget.php:137 widget.php:306
|
|
|
1909 |
msgid "Total Comments"
|
1910 |
+
msgstr "Kommentare insgesamt"
|
1911 |
|
1912 |
+
#: widget.php:144 widget.php:309
|
|
|
1913 |
msgid "Total Spams"
|
1914 |
+
msgstr "Total Spams"
|
1915 |
|
1916 |
+
#: widget.php:151 widget.php:312
|
|
|
1917 |
msgid "Total Users"
|
1918 |
+
msgstr "Benutzer insgesamt"
|
1919 |
|
1920 |
+
#: widget.php:158 widget.php:315
|
|
|
1921 |
msgid "Average Posts"
|
1922 |
+
msgstr "Durchschnittlich Beiträge"
|
1923 |
|
1924 |
+
#: widget.php:165 widget.php:318
|
|
|
1925 |
msgid "Average Comments"
|
1926 |
msgstr "Durchschnittliche Kommentare"
|
1927 |
|
1928 |
+
#: widget.php:172 widget.php:321
|
|
|
1929 |
msgid "Average Users"
|
1930 |
+
msgstr "Durchschnittliche Anwender"
|
1931 |
|
1932 |
+
#: widget.php:179 widget.php:324
|
|
|
1933 |
msgid "Last Post Date"
|
1934 |
+
msgstr "Datum Letzter Beitrag"
|
1935 |
|
1936 |
+
#: wp-statistics.php:340
|
1937 |
msgid "View Stats"
|
1938 |
+
msgstr "Ansicht-Statistik"
|
1939 |
|
1940 |
+
#: wp-statistics.php:152 wp-statistics.php:262
|
|
|
1941 |
msgid "Settings"
|
1942 |
msgstr "Einstellungen"
|
1943 |
|
1944 |
+
#: wp-statistics.php:316
|
1945 |
msgid "Today visitor"
|
1946 |
+
msgstr "Heute Besucher"
|
1947 |
|
1948 |
+
#: wp-statistics.php:322
|
1949 |
msgid "Today visit"
|
1950 |
+
msgstr "Heute besuchen"
|
1951 |
|
1952 |
+
#: wp-statistics.php:328
|
1953 |
msgid "Yesterday visitor"
|
1954 |
+
msgstr "Gestern Besucher"
|
1955 |
|
1956 |
+
#: widget.php:256 wp-statistics.php:334
|
|
|
1957 |
msgid "Yesterday visit"
|
1958 |
+
msgstr "Gestern Besuch"
|
1959 |
|
1960 |
+
#: wp-statistics.php:444 wp-statistics.php:544 wp-statistics.php:815
|
|
|
|
|
1961 |
msgid "You do not have sufficient permissions to access this page."
|
1962 |
+
msgstr "Sie haben nicht ausreichende Berechtigungen Zugriff auf diese Seite."
|
1963 |
+
|
1964 |
+
#: includes/log/all-browsers.php:23 includes/log/all-browsers.php:106
|
1965 |
+
#: includes/log/all-browsers.php:240 includes/log/exclusions.php:74
|
1966 |
+
#: includes/log/hit-statistics.php:35 includes/log/last-search.php:61
|
1967 |
+
#: includes/log/last-visitor.php:57 includes/log/page-statistics.php:47
|
1968 |
+
#: includes/log/search-statistics.php:35 includes/log/top-pages.php:19
|
1969 |
+
#: includes/log/top-pages.php:131 includes/log/top-referring.php:45
|
1970 |
+
#: includes/log/widgets/about.php:7 includes/log/widgets/browsers.php:7
|
1971 |
+
#: includes/log/widgets/countries.php:9 includes/log/widgets/google.map.php:8
|
1972 |
+
#: includes/log/widgets/hits.php:7 includes/log/widgets/jqv.map.php:8
|
1973 |
+
#: includes/log/widgets/pages.php:11 includes/log/widgets/recent.php:7
|
1974 |
+
#: includes/log/widgets/referring.php:11 includes/log/widgets/search.php:7
|
1975 |
+
#: includes/log/widgets/summary.php:7 includes/log/widgets/words.php:14
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1976 |
msgid "Click to toggle"
|
1977 |
+
msgstr "Hier klicken, um zu wechseln"
|
1978 |
|
1979 |
+
#: includes/settings/tabs/wps-overview-display.php:24
|
1980 |
msgid "Summary Statistics"
|
1981 |
+
msgstr "Zusammenfassende Statistiken"
|
1982 |
|
1983 |
+
#: includes/log/hit-statistics.php:104 includes/log/widgets/hits.php:74
|
1984 |
+
#: includes/log/widgets/summary.php:19
|
|
|
1985 |
msgid "Visitor"
|
1986 |
msgstr "Besucher"
|
1987 |
|
1988 |
+
#: includes/log/hit-statistics.php:104 includes/log/widgets/hits.php:74
|
1989 |
+
#: includes/log/widgets/summary.php:20
|
|
|
1990 |
msgid "Visit"
|
1991 |
+
msgstr "Besuchen Sie"
|
1992 |
|
1993 |
+
#: includes/log/widgets/summary.php:24 includes/log/widgets/summary.php:69
|
|
|
1994 |
msgid "Today"
|
1995 |
msgstr "Heute"
|
1996 |
|
1997 |
+
#: includes/log/widgets/summary.php:30 includes/log/widgets/summary.php:70
|
|
|
1998 |
msgid "Yesterday"
|
1999 |
msgstr "Gestern"
|
2000 |
|
2001 |
+
#: includes/log/widgets/summary.php:36
|
2002 |
msgid "Week"
|
2003 |
msgstr "Woche"
|
2004 |
|
2005 |
+
#: includes/log/widgets/summary.php:42
|
2006 |
msgid "Month"
|
2007 |
msgstr "Monat"
|
2008 |
|
2009 |
+
#: includes/log/widgets/summary.php:48
|
2010 |
msgid "Year"
|
2011 |
msgstr "Jahr"
|
2012 |
|
2013 |
+
#: includes/log/search-statistics.php:112 includes/log/widgets/search.php:81
|
2014 |
+
#: includes/log/widgets/summary.php:54 includes/log/widgets/summary.php:94
|
|
|
|
|
2015 |
msgid "Total"
|
2016 |
msgstr "Gesamt"
|
2017 |
|
2018 |
+
#: includes/log/widgets/summary.php:102
|
2019 |
msgid "(Adjustment)"
|
2020 |
+
msgstr "(Anpassung)"
|
2021 |
|
2022 |
+
#: includes/log/all-browsers.php:24 includes/log/widgets/browsers.php:8
|
2023 |
+
#: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:249
|
|
|
|
|
2024 |
msgid "Browsers"
|
2025 |
msgstr "Browser"
|
2026 |
|
2027 |
+
#: includes/log/widgets/browsers.php:38
|
2028 |
msgid "Other"
|
2029 |
msgstr "Andere"
|
2030 |
|
2031 |
+
#: includes/log/widgets/referring.php:20
|
2032 |
msgid "Address"
|
2033 |
msgstr "Adresse"
|
2034 |
|
2035 |
+
#: includes/log/hit-statistics.php:90 includes/log/widgets/hits.php:60
|
|
|
2036 |
msgid "Number of visits and visitors"
|
2037 |
+
msgstr "Anzahl der Besuche und Besucher"
|
2038 |
|
2039 |
+
#: includes/settings/tabs/wps-overview-display.php:86
|
2040 |
msgid "Google"
|
2041 |
msgstr "Google"
|
2042 |
|
2043 |
+
#: includes/log/last-visitor.php:27 includes/log/widgets/recent.php:9
|
2044 |
+
#: includes/settings/tabs/wps-overview-display.php:38
|
|
|
2045 |
msgid "Recent Visitors"
|
2046 |
+
msgstr "Letzten Besucher"
|
2047 |
|
2048 |
+
#: includes/log/top-countries.php:30 includes/log/widgets/countries.php:19
|
|
|
2049 |
msgid "Country"
|
2050 |
msgstr "Land"
|
2051 |
|
2052 |
+
#: includes/settings/tabs/wps-browscap.php:27
|
2053 |
+
#: includes/settings/tabs/wps-browscap.php:51
|
2054 |
+
#: includes/settings/tabs/wps-general.php:66
|
2055 |
+
#: includes/settings/tabs/wps-general.php:82
|
2056 |
+
#: includes/settings/tabs/wps-general.php:110
|
2057 |
+
#: includes/settings/tabs/wps-general.php:126
|
2058 |
+
#: includes/settings/tabs/wps-general.php:138
|
2059 |
+
#: includes/settings/tabs/wps-general.php:165
|
2060 |
+
#: includes/settings/tabs/wps-general.php:177
|
2061 |
+
#: includes/settings/tabs/wps-general.php:189
|
2062 |
+
#: includes/settings/tabs/wps-general.php:219
|
2063 |
+
#: includes/settings/tabs/wps-general.php:231
|
2064 |
+
#: includes/settings/tabs/wps-general.php:274
|
2065 |
+
#: includes/settings/tabs/wps-general.php:290
|
2066 |
+
#: includes/settings/tabs/wps-geoip.php:37
|
2067 |
+
#: includes/settings/tabs/wps-geoip.php:61
|
2068 |
+
#: includes/settings/tabs/wps-geoip.php:94
|
2069 |
+
#: includes/settings/tabs/wps-maintenance.php:40
|
2070 |
+
#: includes/settings/tabs/wps-overview-display.php:105
|
2071 |
+
#: includes/settings/tabs/wps-overview-display.php:117
|
2072 |
msgid "Active"
|
2073 |
+
msgstr "Aktive"
|
2074 |
+
|
2075 |
+
#: includes/settings/tabs/wps-general.php:83
|
2076 |
+
#: includes/settings/tabs/wps-general.php:111
|
2077 |
+
#: includes/settings/tabs/wps-general.php:127
|
2078 |
+
#: includes/settings/tabs/wps-general.php:166
|
2079 |
+
#: includes/settings/tabs/wps-general.php:178
|
2080 |
+
#: includes/settings/tabs/wps-general.php:190
|
2081 |
+
#: includes/settings/tabs/wps-general.php:291
|
2082 |
msgid "Enable or disable this feature"
|
2083 |
+
msgstr "Aktivieren oder Deaktivieren dieses Features"
|
2084 |
|
2085 |
+
#: includes/log/top-pages.php:163 includes/log/widgets/pages.php:30
|
2086 |
+
#: includes/settings/tabs/wps-general.php:100
|
2087 |
+
#: includes/settings/tabs/wps-general.php:105
|
|
|
2088 |
msgid "Visits"
|
2089 |
+
msgstr "Besuche"
|
2090 |
|
2091 |
+
#: includes/settings/tabs/wps-general.php:116
|
2092 |
+
#: includes/settings/tabs/wps-general.php:121 wp-statistics.php:258
|
|
|
2093 |
msgid "Visitors"
|
2094 |
msgstr "Besucher"
|
2095 |
|
2096 |
+
#: includes/settings/tabs/wps-general.php:89
|
2097 |
msgid "Check for online users every"
|
2098 |
+
msgstr "Überprüfen Sie, ob Benutzer online jeden"
|
2099 |
|
2100 |
+
#: includes/settings/tabs/wps-general.php:95
|
2101 |
msgid "Time for the check accurate online user in the site. Now: %s Second"
|
2102 |
+
msgstr ""
|
2103 |
+
"Zeit für den Check-präzise-online-Benutzer am Standort. Jetzt: %s zweite"
|
2104 |
|
2105 |
+
#: includes/settings/tabs/wps-general.php:200
|
2106 |
msgid "Show stats in menu bar"
|
2107 |
+
msgstr "Statistik in Menüleiste anzeigen"
|
2108 |
|
2109 |
+
#: includes/settings/tabs/wps-general.php:205
|
2110 |
msgid "No"
|
2111 |
msgstr "Nein"
|
2112 |
|
2113 |
+
#: includes/settings/tabs/wps-general.php:206
|
2114 |
msgid "Yes"
|
2115 |
msgstr "Ja"
|
2116 |
|
2117 |
+
#: includes/settings/tabs/wps-general.php:208
|
2118 |
msgid "Show stats in admin menu bar"
|
2119 |
+
msgstr "Statistik in Admin-Menüleiste anzeigen"
|
2120 |
|
2121 |
+
#: includes/settings/tabs/wps-general.php:145
|
2122 |
msgid "Coefficient per visitor"
|
2123 |
msgstr "Koeffizient pro Besucher"
|
2124 |
|
2125 |
+
#: includes/settings/tabs/wps-general.php:150
|
2126 |
msgid "For each visit to account for several hits. Currently %s."
|
2127 |
+
msgstr "Für jeden Besuch um mehrere Hits zu berücksichtigen. Aktuell %s."
|
2128 |
|
2129 |
+
#: includes/settings/tabs/wps-general.php:322
|
2130 |
msgid "Select when receiving statistics report."
|
2131 |
+
msgstr "Wählen Sie beim Statistikbericht empfangen."
|
|
|
2132 |
|
2133 |
+
#: includes/settings/tabs/wps-general.php:334
|
2134 |
msgid "Email"
|
2135 |
msgstr "E-Mail"
|
2136 |
|
2137 |
+
#: includes/settings/tabs/wps-general.php:335
|
2138 |
msgid "SMS"
|
2139 |
msgstr "SMS"
|
2140 |
|
2141 |
+
#: includes/settings/tabs/wps-general.php:337
|
2142 |
msgid "Type Select Get Status Report."
|
2143 |
+
msgstr "Typ wählen Sie Get-Statusbericht."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2144 |
|
2145 |
+
#: includes/settings/tabs/wps-general.php:363
|
2146 |
msgid "Enter the contents of the reports received."
|
2147 |
+
msgstr "Geben Sie den Inhalt der Berichte empfangen."
|
2148 |
|
2149 |
+
#: widget.php:240
|
2150 |
msgid "Name"
|
2151 |
msgstr "Name"
|
2152 |
|
2153 |
+
#: widget.php:244
|
2154 |
msgid "Items"
|
2155 |
msgstr "Elemente"
|
2156 |
|
2157 |
+
#: widget.php:283
|
2158 |
msgid "Select type of search engine"
|
2159 |
+
msgstr "Wählen Sie Art der Suchmaschine"
|
2160 |
|
2161 |
+
#: includes/log/last-visitor.php:29 includes/log/top-referring.php:36
|
2162 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:134 widget.php:296
|
|
|
|
|
2163 |
msgid "All"
|
2164 |
msgstr "Alle"
|
languages/wp_statistics-es_ES.mo
CHANGED
Binary file
|
languages/wp_statistics-es_ES.po
CHANGED
@@ -1,723 +1,2152 @@
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-01-28 19:05+0330\n"
|
6 |
-
"PO-Revision-Date: 2013-01-28 19:05+0330\n"
|
7 |
-
"Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
|
8 |
-
"Language-Team: \n"
|
9 |
-
"Language: es_ES\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"
|
14 |
-
"X-
|
15 |
-
"
|
16 |
-
"
|
17 |
-
"
|
18 |
-
"
|
19 |
-
|
20 |
-
|
21 |
-
#:
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
#:
|
26 |
-
|
27 |
-
|
28 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
msgstr ""
|
|
|
|
|
30 |
|
31 |
-
#:
|
32 |
-
|
33 |
-
|
34 |
-
msgid "Summary Statistics"
|
35 |
-
msgstr "Activar Estadísticas"
|
36 |
|
37 |
-
#:
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
|
|
|
|
44 |
|
45 |
-
#:
|
46 |
-
|
47 |
-
|
48 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
msgstr ""
|
|
|
|
|
50 |
|
51 |
-
#:
|
52 |
-
|
53 |
-
|
54 |
-
#, fuzzy
|
55 |
-
msgid "Visit"
|
56 |
-
msgstr "Visitas semanales"
|
57 |
|
58 |
-
#:
|
59 |
-
|
60 |
-
|
61 |
-
msgid "Today"
|
62 |
-
msgstr "Visitas hoy"
|
63 |
|
64 |
-
#:
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
msgstr "Visitas ayer"
|
69 |
|
70 |
-
#:
|
71 |
-
|
72 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
73 |
msgstr ""
|
|
|
|
|
74 |
|
75 |
-
#:
|
76 |
-
|
77 |
-
|
78 |
-
msgid "Month"
|
79 |
-
msgstr "Visitas mensuales"
|
80 |
|
81 |
-
#:
|
82 |
-
|
83 |
-
|
|
|
84 |
msgstr ""
|
|
|
|
|
85 |
|
86 |
-
#:
|
87 |
-
|
88 |
-
|
89 |
-
msgid "Total"
|
90 |
-
msgstr "Total de visitas"
|
91 |
|
92 |
-
#:
|
93 |
-
|
94 |
-
|
|
|
95 |
msgstr ""
|
|
|
|
|
96 |
|
97 |
-
#:
|
98 |
-
|
99 |
-
|
|
|
|
|
|
|
|
|
100 |
msgstr ""
|
|
|
|
|
101 |
|
102 |
-
#:
|
103 |
-
|
104 |
-
|
|
|
105 |
msgstr ""
|
|
|
|
|
106 |
|
107 |
-
#:
|
108 |
-
|
109 |
-
|
110 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
111 |
|
112 |
-
|
113 |
-
|
114 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
115 |
msgstr ""
|
|
|
|
|
|
|
116 |
|
117 |
-
#:
|
118 |
-
|
119 |
-
|
|
|
120 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
121 |
|
122 |
-
#:
|
123 |
-
|
124 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
125 |
msgstr ""
|
|
|
|
|
126 |
|
127 |
-
#:
|
128 |
-
|
129 |
-
|
|
|
|
|
|
|
|
|
130 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
131 |
|
132 |
-
#:
|
133 |
-
|
134 |
-
msgid "Chrome"
|
135 |
msgstr ""
|
|
|
|
|
136 |
|
137 |
-
#:
|
138 |
-
|
139 |
-
|
|
|
140 |
msgstr ""
|
|
|
|
|
141 |
|
142 |
-
#:
|
143 |
-
|
144 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
145 |
msgstr ""
|
|
|
|
|
146 |
|
147 |
-
#:
|
148 |
-
|
149 |
-
|
150 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
151 |
|
152 |
-
#:
|
153 |
-
#:
|
154 |
-
|
155 |
-
|
156 |
-
|
|
|
|
|
|
|
|
|
|
|
157 |
msgstr ""
|
|
|
|
|
|
|
158 |
|
159 |
-
#:
|
160 |
-
|
161 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
162 |
msgstr ""
|
|
|
|
|
|
|
163 |
|
164 |
-
#:
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
|
169 |
-
#:
|
170 |
-
|
171 |
-
|
|
|
172 |
msgstr ""
|
|
|
|
|
|
|
173 |
|
174 |
-
#:
|
175 |
-
|
176 |
-
|
177 |
-
msgid "Support plugin"
|
178 |
-
msgstr "Sobre el plugin"
|
179 |
|
180 |
-
#:
|
181 |
-
|
182 |
-
|
|
|
|
|
183 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
184 |
|
185 |
-
#:
|
186 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:221
|
187 |
msgid ""
|
188 |
-
"
|
189 |
-
"
|
190 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
191 |
|
192 |
-
#:
|
193 |
-
|
194 |
-
|
|
|
195 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
196 |
|
197 |
-
#:
|
198 |
-
|
199 |
-
|
200 |
-
msgid "Statistical Chart"
|
201 |
-
msgstr "Estadísticas activadas."
|
202 |
|
203 |
-
#:
|
204 |
-
|
205 |
-
|
|
|
|
|
|
|
|
|
|
|
206 |
msgstr ""
|
|
|
|
|
207 |
|
208 |
-
#:
|
209 |
-
|
210 |
-
|
|
|
211 |
msgstr ""
|
|
|
|
|
212 |
|
213 |
-
#:
|
214 |
-
|
215 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
216 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
217 |
|
218 |
-
#:
|
219 |
-
|
220 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
221 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
222 |
|
223 |
-
#:
|
224 |
-
|
225 |
-
|
226 |
-
|
|
|
227 |
msgstr ""
|
|
|
|
|
|
|
228 |
|
229 |
-
#:
|
230 |
-
|
231 |
-
|
|
|
232 |
msgstr ""
|
|
|
|
|
233 |
|
234 |
-
#:
|
235 |
-
#:
|
236 |
-
|
237 |
-
|
238 |
-
msgstr "Visitas semanales"
|
239 |
|
240 |
-
#:
|
241 |
-
#:
|
242 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
243 |
msgstr ""
|
|
|
|
|
|
|
244 |
|
245 |
-
#:
|
246 |
-
|
247 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
248 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
249 |
|
250 |
-
#:
|
251 |
-
|
252 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
253 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
254 |
|
255 |
-
#:
|
256 |
-
|
257 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
258 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
259 |
|
260 |
-
#:
|
261 |
-
|
262 |
-
msgid "General Settings"
|
263 |
msgstr ""
|
|
|
264 |
|
265 |
-
#:
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
#:
|
270 |
-
|
271 |
-
|
|
|
272 |
msgstr ""
|
|
|
|
|
273 |
|
274 |
-
#:
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
#:
|
279 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
280 |
msgstr ""
|
|
|
|
|
281 |
|
282 |
-
#:
|
283 |
-
|
284 |
-
|
285 |
-
msgid "Visits"
|
286 |
-
msgstr "Visitas semanales"
|
287 |
|
288 |
-
#:
|
289 |
-
|
290 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
291 |
msgstr ""
|
|
|
|
|
292 |
|
293 |
-
#:
|
294 |
-
|
295 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
296 |
msgstr ""
|
|
|
|
|
297 |
|
298 |
-
#:
|
299 |
-
|
300 |
-
|
|
|
301 |
msgstr ""
|
|
|
|
|
302 |
|
303 |
-
#:
|
304 |
-
|
305 |
-
|
306 |
-
|
|
|
|
|
|
|
307 |
|
308 |
-
#:
|
309 |
-
|
310 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
311 |
msgstr ""
|
|
|
|
|
312 |
|
313 |
-
#:
|
314 |
-
|
315 |
-
|
316 |
-
msgstr "Si"
|
317 |
|
318 |
-
#:
|
319 |
-
|
320 |
-
|
321 |
-
msgstr "Muestra las estadísticas en la barra de menú de administración"
|
322 |
|
323 |
-
#:
|
324 |
-
|
325 |
-
|
|
|
|
|
|
|
|
|
|
|
326 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
327 |
|
328 |
-
#:
|
329 |
-
|
330 |
-
|
|
|
|
|
331 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
332 |
|
333 |
-
#:
|
334 |
-
|
335 |
-
|
|
|
|
|
|
|
336 |
msgstr ""
|
|
|
|
|
|
|
|
|
337 |
|
338 |
-
#:
|
339 |
-
|
340 |
-
|
|
|
|
|
|
|
341 |
msgstr ""
|
|
|
342 |
|
343 |
-
#:
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
348 |
|
349 |
-
#:
|
350 |
-
|
351 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
352 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
353 |
|
354 |
-
#:
|
355 |
-
|
356 |
-
|
357 |
-
#, fuzzy
|
358 |
-
msgid "Please select."
|
359 |
-
msgstr "¡Por favor introduce un valor!"
|
360 |
|
361 |
-
#:
|
362 |
-
|
363 |
-
|
|
|
364 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
365 |
|
366 |
-
#:
|
367 |
-
|
368 |
-
|
|
|
369 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
370 |
|
371 |
-
#:
|
372 |
-
|
373 |
-
|
|
|
374 |
msgstr ""
|
|
|
|
|
375 |
|
376 |
-
#:
|
377 |
-
|
378 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
379 |
msgstr ""
|
|
|
|
|
380 |
|
381 |
-
#:
|
382 |
-
|
383 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
384 |
msgstr ""
|
|
|
|
|
|
|
|
|
385 |
|
386 |
-
#:
|
387 |
-
|
388 |
-
|
|
|
389 |
msgstr ""
|
|
|
|
|
390 |
|
391 |
-
#:
|
392 |
-
|
393 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
394 |
msgstr ""
|
|
|
|
|
395 |
|
396 |
-
#:
|
397 |
-
|
398 |
-
|
|
|
|
|
399 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
400 |
|
401 |
-
#:
|
402 |
-
|
403 |
-
msgid "Send Content Report"
|
404 |
msgstr ""
|
|
|
|
|
405 |
|
406 |
-
#:
|
407 |
-
|
408 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
409 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
410 |
|
411 |
-
#:
|
412 |
-
|
413 |
-
|
|
|
414 |
msgstr ""
|
|
|
|
|
415 |
|
416 |
-
#:
|
417 |
-
|
418 |
-
|
419 |
-
#, fuzzy
|
420 |
-
msgid "Today Visitor"
|
421 |
-
msgstr "Visitas hoy"
|
422 |
|
423 |
-
#:
|
424 |
-
|
425 |
-
|
426 |
-
msgid "Today Visit"
|
427 |
-
msgstr "Visitas hoy"
|
428 |
|
429 |
-
#:
|
430 |
-
|
431 |
-
|
432 |
-
#, fuzzy
|
433 |
-
msgid "Yesterday Visitor"
|
434 |
-
msgstr "Visitas ayer"
|
435 |
|
436 |
-
#:
|
437 |
-
|
438 |
-
|
439 |
-
msgid "Yesterday Visit"
|
440 |
-
msgstr "Visitas ayer"
|
441 |
|
442 |
-
#:
|
443 |
-
|
444 |
-
|
445 |
-
#, fuzzy
|
446 |
-
msgid "Total Visitor"
|
447 |
-
msgstr "Total de visitas"
|
448 |
|
449 |
-
#:
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
454 |
|
455 |
-
#:
|
456 |
-
#:
|
457 |
-
msgid "
|
458 |
-
msgstr "
|
459 |
|
460 |
-
#:
|
461 |
-
|
462 |
-
|
463 |
-
msgstr "Elementos"
|
464 |
|
465 |
-
#:
|
466 |
-
#:
|
467 |
-
msgid "
|
468 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
469 |
|
470 |
-
#:
|
471 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:24
|
472 |
msgid "Week Visit"
|
473 |
msgstr "Visitas semanales"
|
474 |
|
475 |
-
#:
|
476 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:27
|
477 |
msgid "Month Visit"
|
478 |
msgstr "Visitas mensuales"
|
479 |
|
480 |
-
#:
|
481 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:30
|
482 |
msgid "Years Visit"
|
483 |
msgstr "Visitas anuales"
|
484 |
|
485 |
-
#:
|
486 |
-
|
487 |
-
|
488 |
-
msgstr "Motor de búsqueda referido"
|
489 |
-
|
490 |
-
#: F:\Program
|
491 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:42
|
492 |
-
msgid "Select type of search engine"
|
493 |
-
msgstr "Selecciona el tipo de motor de búsqueda"
|
494 |
-
|
495 |
-
#: F:\Program
|
496 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:44
|
497 |
-
msgid "Google"
|
498 |
-
msgstr "Google"
|
499 |
-
|
500 |
-
#: F:\Program
|
501 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:47
|
502 |
-
msgid "Yahoo!"
|
503 |
-
msgstr "Yahoo!"
|
504 |
-
|
505 |
-
#: F:\Program
|
506 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:50
|
507 |
-
msgid "Bing"
|
508 |
-
msgstr "Bing"
|
509 |
|
510 |
-
#:
|
511 |
-
|
512 |
-
|
513 |
-
msgstr "Todo"
|
514 |
|
515 |
-
#:
|
516 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:57
|
517 |
msgid "Total Posts"
|
518 |
msgstr "Total entradas"
|
519 |
|
520 |
-
#:
|
521 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:60
|
522 |
msgid "Total Pages"
|
523 |
msgstr "Total páginas"
|
524 |
|
525 |
-
#:
|
526 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:63
|
527 |
msgid "Total Comments"
|
528 |
msgstr "Total comentarios"
|
529 |
|
530 |
-
#:
|
531 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:66
|
532 |
msgid "Total Spams"
|
533 |
msgstr "Total spam"
|
534 |
|
535 |
-
#:
|
536 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:69
|
537 |
msgid "Total Users"
|
538 |
msgstr "Total usuarios"
|
539 |
|
540 |
-
#:
|
541 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:72
|
542 |
msgid "Average Posts"
|
543 |
msgstr "Medía por artículos"
|
544 |
|
545 |
-
#:
|
546 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:75
|
547 |
msgid "Average Comments"
|
548 |
msgstr "Media por comentarios"
|
549 |
|
550 |
-
#:
|
551 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:78
|
552 |
msgid "Average Users"
|
553 |
msgstr "Media por usuarios"
|
554 |
|
555 |
-
#:
|
556 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:81
|
557 |
msgid "Last Post Date"
|
558 |
msgstr "Fecha de última entrada"
|
559 |
|
560 |
-
#:
|
561 |
-
|
562 |
-
|
563 |
-
msgstr "Escribe la fecha para la última actualización"
|
564 |
-
|
565 |
-
#: F:\Program
|
566 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:86
|
567 |
-
msgid "English"
|
568 |
-
msgstr "Inglés"
|
569 |
-
|
570 |
-
#: F:\Program
|
571 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:89
|
572 |
-
msgid "Persian"
|
573 |
-
msgstr "Persa"
|
574 |
-
|
575 |
-
#~ msgid "Error! Please Enter all field"
|
576 |
-
#~ msgstr "¡Error! Por favor rellena todos los campos"
|
577 |
-
|
578 |
-
#~ msgid "Are you sure?"
|
579 |
-
#~ msgstr "¿Estás seguro?"
|
580 |
-
|
581 |
-
#~ msgid "Configuration"
|
582 |
-
#~ msgstr "Configuración"
|
583 |
|
584 |
-
|
585 |
-
|
|
|
586 |
|
587 |
-
|
588 |
-
|
|
|
589 |
|
590 |
-
|
591 |
-
|
|
|
592 |
|
593 |
-
|
594 |
-
|
595 |
-
|
596 |
|
597 |
-
|
598 |
-
|
599 |
-
|
600 |
-
#~ msgid "Each"
|
601 |
-
#~ msgstr "Cada"
|
602 |
-
|
603 |
-
#~ msgid "Compute min"
|
604 |
-
#~ msgstr "minutos"
|
605 |
-
|
606 |
-
#~ msgid ""
|
607 |
-
#~ "Time for the check accurate online user in the site. Default: 5 Minutes"
|
608 |
-
#~ msgstr ""
|
609 |
-
#~ "Tiempo para verificar la estancia de los usuarios en el sitio. Por "
|
610 |
-
#~ "defecto: 5 minutos"
|
611 |
|
612 |
-
|
613 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
614 |
|
615 |
-
|
616 |
-
|
|
|
617 |
|
618 |
-
|
619 |
-
|
|
|
|
|
620 |
|
621 |
-
|
622 |
-
|
|
|
|
|
623 |
|
624 |
-
|
625 |
-
|
|
|
626 |
|
627 |
-
|
628 |
-
|
|
|
629 |
|
630 |
-
|
631 |
-
|
|
|
632 |
|
633 |
-
|
634 |
-
|
|
|
635 |
|
636 |
-
|
637 |
-
|
|
|
638 |
|
639 |
-
|
640 |
-
|
|
|
|
|
641 |
|
642 |
-
|
643 |
-
|
|
|
644 |
|
645 |
-
|
646 |
-
|
647 |
-
|
648 |
-
|
649 |
|
650 |
-
|
651 |
-
|
|
|
652 |
|
653 |
-
|
654 |
-
|
|
|
655 |
|
656 |
-
|
657 |
-
|
|
|
658 |
|
659 |
-
|
660 |
-
|
|
|
661 |
|
662 |
-
|
663 |
-
|
|
|
|
|
664 |
|
665 |
-
|
666 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
667 |
|
668 |
-
|
669 |
-
|
|
|
|
|
|
|
670 |
|
671 |
-
|
672 |
-
|
|
|
|
|
673 |
|
674 |
-
|
675 |
-
|
|
|
676 |
|
677 |
-
|
678 |
-
|
|
|
|
|
|
|
679 |
|
680 |
-
|
681 |
-
|
|
|
682 |
|
683 |
-
|
684 |
-
|
|
|
685 |
|
686 |
-
|
687 |
-
|
|
|
688 |
|
689 |
-
|
690 |
-
|
|
|
691 |
|
692 |
-
|
693 |
-
|
|
|
694 |
|
695 |
-
|
696 |
-
|
|
|
697 |
|
698 |
-
|
699 |
-
|
|
|
700 |
|
701 |
-
|
702 |
-
|
|
|
703 |
|
704 |
-
|
705 |
-
|
|
|
706 |
|
707 |
-
|
708 |
-
|
|
|
709 |
|
710 |
-
|
711 |
-
|
|
|
712 |
|
713 |
-
|
714 |
-
|
|
|
715 |
|
716 |
-
|
717 |
-
|
|
|
718 |
|
719 |
-
|
720 |
-
|
|
|
721 |
|
722 |
-
|
723 |
-
|
|
|
|
1 |
+
# Translation of Wordpress Statistics in Spanish (Spain)
|
2 |
+
# This file is distributed under the same license as the Wordpress Statistics package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2014-10-14 17:15-0500\n"
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
+
"X-Generator: Poedit 1.6.9\n"
|
11 |
+
"Project-Id-Version: Wordpress Statistics\n"
|
12 |
+
"POT-Creation-Date: \n"
|
13 |
+
"Last-Translator: \n"
|
14 |
+
"Language-Team: \n"
|
15 |
+
"Language: es_ES\n"
|
16 |
+
|
17 |
+
#: includes/log/widgets/about.php:8
|
18 |
+
msgid "About WP Statistics Version %s"
|
19 |
+
msgstr "Acerca de las WP Statistics Versión %s"
|
20 |
+
|
21 |
+
#: includes/log/widgets/summary.php:106
|
22 |
+
msgid "Date: %s"
|
23 |
+
msgstr "Fecha: %s"
|
24 |
+
|
25 |
+
#: includes/log/widgets/summary.php:110
|
26 |
+
msgid "Time: %s"
|
27 |
+
msgstr "Tiempo: %s"
|
28 |
+
|
29 |
+
#: includes/optimization/delete-agents.php:14
|
30 |
+
msgid "%s agent data deleted successfully."
|
31 |
+
msgstr "datos de %s agente eliminados satisfactoriamente."
|
32 |
+
|
33 |
+
#: includes/optimization/delete-platforms.php:14
|
34 |
+
msgid "%s platform data deleted successfully."
|
35 |
+
msgstr "datos de %s plataforma eliminados satisfactoriamente."
|
36 |
+
|
37 |
+
#: includes/optimization/empty.php:53
|
38 |
+
msgid "%s table data deleted successfully."
|
39 |
+
msgstr "datos de la tabla de %s eliminados satisfactoriamente."
|
40 |
+
|
41 |
+
#: includes/optimization/purge-data.php:17
|
42 |
+
#: includes/optimization/purge-data.php:27
|
43 |
+
#: includes/optimization/purge-data.php:37
|
44 |
+
#: includes/optimization/purge-data.php:47
|
45 |
+
msgid "%s data older than %s days purged successfully."
|
46 |
+
msgstr "datos de %s mayores de %s días purgadas con éxito."
|
47 |
+
|
48 |
+
#: includes/optimization/purge-data.php:19
|
49 |
+
#: includes/optimization/purge-data.php:29
|
50 |
+
#: includes/optimization/purge-data.php:39
|
51 |
+
#: includes/optimization/purge-data.php:49
|
52 |
+
msgid "No records found to purge from %s!"
|
53 |
+
msgstr "No hay registros encontrados para purgar de %s!"
|
54 |
+
|
55 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:44
|
56 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:55
|
57 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:66
|
58 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:77
|
59 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:88
|
60 |
+
msgid "Number of rows in the %s table"
|
61 |
+
msgstr "Número de filas en la tabla de %s"
|
62 |
+
|
63 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:211
|
64 |
+
msgid "browscap Cache File"
|
65 |
+
msgstr "browscap archivo de caché"
|
66 |
+
|
67 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:220
|
68 |
+
msgid "browscap cache file does not exist."
|
69 |
+
msgstr "archivo de caché Browscap no existe."
|
70 |
+
|
71 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:224
|
72 |
+
msgid "The file size and date of the browscap cache file."
|
73 |
+
msgstr "El tamaño del archivo y la fecha del archivo de caché browscap."
|
74 |
+
|
75 |
+
#: includes/settings/tabs/wps-about.php:24
|
76 |
+
msgid ""
|
77 |
+
"Come visit our great new %s and keep up to date on the latest news about WP "
|
78 |
+
"Statistics."
|
79 |
msgstr ""
|
80 |
+
"Venga a visitar nuestra gran %s nueva y mantenerse al día sobre las últimas "
|
81 |
+
"noticias acerca de las WP Statistics."
|
82 |
|
83 |
+
#: includes/settings/tabs/wps-about.php:24
|
84 |
+
msgid "website"
|
85 |
+
msgstr "sitio web"
|
|
|
|
|
86 |
|
87 |
+
#: includes/settings/tabs/wps-about.php:40
|
88 |
+
msgid ""
|
89 |
+
"WP Statistics supports internationalization and we encourage our users to "
|
90 |
+
"submit translations, please visit our %s to see the current status and %s if "
|
91 |
+
"you would like to help."
|
92 |
+
msgstr ""
|
93 |
+
"WP Statistics soporta internacionalización y animamos a nuestros usuarios a "
|
94 |
+
"presentar las traducciones, por favor visite nuestro %s para ver el estado "
|
95 |
+
"actual y %s si desea ayudar."
|
96 |
|
97 |
+
#: includes/settings/tabs/wps-about.php:40
|
98 |
+
msgid "translation collaboration site"
|
99 |
+
msgstr "sitio de traducción en colaboración"
|
100 |
+
|
101 |
+
#: includes/settings/tabs/wps-about.php:40
|
102 |
+
msgid "drop us a line"
|
103 |
+
msgstr "Cáiganos una línea"
|
104 |
+
|
105 |
+
#: includes/settings/tabs/wps-about.php:52
|
106 |
+
#: includes/settings/tabs/wps-about.php:53
|
107 |
+
msgid "Have you read the %s?"
|
108 |
+
msgstr "¿Has leído el %s?"
|
109 |
+
|
110 |
+
#: includes/settings/tabs/wps-about.php:52
|
111 |
+
msgid "FAQs"
|
112 |
+
msgstr "Preguntas frecuentes"
|
113 |
+
|
114 |
+
#: includes/settings/tabs/wps-about.php:53
|
115 |
+
msgid "manual"
|
116 |
+
msgstr "Manual"
|
117 |
+
|
118 |
+
#: includes/settings/tabs/wps-about.php:54
|
119 |
+
msgid "Have you search the %s for a similar issue?"
|
120 |
+
msgstr "¿Tienes que buscar el %s para un problema similar?"
|
121 |
+
|
122 |
+
#: includes/settings/tabs/wps-about.php:54
|
123 |
+
msgid "support forum"
|
124 |
+
msgstr "Foro de soporte"
|
125 |
+
|
126 |
+
#: includes/settings/tabs/wps-about.php:70
|
127 |
+
msgid ""
|
128 |
+
"Then please open a new thread on the %s and we'll respond as soon as "
|
129 |
+
"possible."
|
130 |
msgstr ""
|
131 |
+
"Entonces por favor abre un nuevo hilo en el %s y responderemos tan pronto "
|
132 |
+
"como sea posible."
|
133 |
|
134 |
+
#: includes/settings/tabs/wps-about.php:70
|
135 |
+
msgid "WordPress.org support forum"
|
136 |
+
msgstr "Foro de soporte de WordPress.org"
|
|
|
|
|
|
|
137 |
|
138 |
+
#: includes/settings/tabs/wps-about.php:74
|
139 |
+
msgid "Alternatively %s support is available as well."
|
140 |
+
msgstr "Alternativamente %s ayuda también está disponible."
|
|
|
|
|
141 |
|
142 |
+
#: includes/settings/tabs/wps-access-level.php:85
|
143 |
+
msgid "See the %s for details on capability levels."
|
144 |
+
msgstr ""
|
145 |
+
"Ver el %s para obtener información detallada sobre los niveles de capacidad."
|
|
|
146 |
|
147 |
+
#: includes/settings/tabs/wps-access-level.php:85
|
148 |
+
msgid "WordPress Roles and Capabilities page"
|
149 |
+
msgstr "Página de capacidades y funciones de WordPress"
|
150 |
+
|
151 |
+
#: includes/settings/tabs/wps-general.php:67
|
152 |
+
msgid ""
|
153 |
+
"This feature will not store IP addresses in the database but instead used a "
|
154 |
+
"unique hash. The \"Store entire user agent string\" setting will be "
|
155 |
+
"disabled if this is selected. You will not be able to recover the IP "
|
156 |
+
"addresses in the future to recover location information if this is enabled."
|
157 |
+
msgstr ""
|
158 |
+
"Esta característica no almacenará direcciones IP en la base de datos pero en "
|
159 |
+
"su lugar utiliza un hash único. La string \"Store todo usuario agente\" "
|
160 |
+
"ajuste estará desactivada si éste está seleccionado. Usted no será capaz de "
|
161 |
+
"recuperar las direcciones IP en el futuro para recuperar información de "
|
162 |
+
"ubicación si esta opción está activada."
|
163 |
+
|
164 |
+
#: includes/settings/tabs/wps-general.php:340
|
165 |
+
msgid "Note: To send SMS text messages please install the %s plugin."
|
166 |
msgstr ""
|
167 |
+
"Nota: Para enviar mensajes de texto SMS mensajes por favor instalación el "
|
168 |
+
"plugin %s."
|
169 |
|
170 |
+
#: includes/settings/tabs/wps-general.php:340
|
171 |
+
msgid "WordPress SMS"
|
172 |
+
msgstr "SMS WordPress"
|
|
|
|
|
173 |
|
174 |
+
#: wp-statistics.php:27
|
175 |
+
msgid ""
|
176 |
+
"ERROR: WP Statistics has detected an unsupported version of PHP, WP "
|
177 |
+
"Statistics will not function without PHP Version "
|
178 |
msgstr ""
|
179 |
+
"ERROR: WP Statistics ha detectado una versión no compatible de PHP, WP "
|
180 |
+
"Statistics no funcionará sin la versión de PHP "
|
181 |
|
182 |
+
#: wp-statistics.php:27
|
183 |
+
msgid " or higher!"
|
184 |
+
msgstr "o superior."
|
|
|
|
|
185 |
|
186 |
+
#: wp-statistics.php:81
|
187 |
+
msgid ""
|
188 |
+
"Online user tracking in WP Statistics is not enabled, please go to %s and "
|
189 |
+
"enable it."
|
190 |
msgstr ""
|
191 |
+
"Usuario en línea de seguimiento en las WP Statistics no está habilitado, por "
|
192 |
+
"favor vaya a %s y habilitarlo."
|
193 |
|
194 |
+
#: wp-statistics.php:81 wp-statistics.php:84 wp-statistics.php:87
|
195 |
+
msgid "setting page"
|
196 |
+
msgstr "Página de configuración"
|
197 |
+
|
198 |
+
#: wp-statistics.php:84
|
199 |
+
msgid ""
|
200 |
+
"Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
|
201 |
msgstr ""
|
202 |
+
"Seguimiento golpe en las WP Statistics no está habilitado, por favor vaya a "
|
203 |
+
"%s y habilitarlo."
|
204 |
|
205 |
+
#: wp-statistics.php:87
|
206 |
+
msgid ""
|
207 |
+
"Visitor tracking in WP Statistics is not enabled, please go to %s and enable "
|
208 |
+
"it."
|
209 |
msgstr ""
|
210 |
+
"Visita de seguimiento en las WP Statistics no está habilitado, por favor "
|
211 |
+
"vaya a %s y habilitarlo."
|
212 |
|
213 |
+
#: wp-statistics.php:90
|
214 |
+
msgid ""
|
215 |
+
"GeoIP collection is not active, please go to %s and enable this feature."
|
216 |
msgstr ""
|
217 |
+
"GeoIP colección no está activo, por favor vaya a %s y activar esta función."
|
218 |
+
|
219 |
+
#: wp-statistics.php:90
|
220 |
+
msgid "Setting page > GeoIP"
|
221 |
+
msgstr "Página Configuración > GeoIP"
|
222 |
+
|
223 |
+
msgid "http://wp-statistics.com/"
|
224 |
+
msgstr "http://WP-Statistics.com/"
|
225 |
|
226 |
+
msgid "Mostafa Soufi & Greg Ross"
|
227 |
+
msgstr "Mostafa Soufi & Greg Ross"
|
228 |
+
|
229 |
+
#: includes/settings/wps-settings.php:90
|
230 |
+
msgid "browscap"
|
231 |
+
msgstr "browscap"
|
232 |
+
|
233 |
+
#: wp-statistics.php:706
|
234 |
+
msgid "Error downloading browscap database from: %s - %s"
|
235 |
+
msgstr "Error al descargar el browscap base de datos: %s - %s"
|
236 |
+
|
237 |
+
#: wp-statistics.php:794
|
238 |
+
msgid "browscap database updated successfully!"
|
239 |
+
msgstr "browscap base de datos actualizada!"
|
240 |
+
|
241 |
+
#: wp-statistics.php:802
|
242 |
+
msgid "browscap already at current version!"
|
243 |
+
msgstr "browscap ya en la versión actual."
|
244 |
+
|
245 |
+
#: includes/optimization/tabs/wps-optimization-database.php:5
|
246 |
+
msgid "Database Setup"
|
247 |
+
msgstr "Configuración de base de datos"
|
248 |
+
|
249 |
+
#: includes/optimization/tabs/wps-optimization-database.php:10
|
250 |
+
msgid "Re-run Install"
|
251 |
+
msgstr "Vuelva a ejecutar Install"
|
252 |
+
|
253 |
+
#: includes/optimization/tabs/wps-optimization-database.php:14
|
254 |
+
msgid "Install Now!"
|
255 |
+
msgstr "Instale ahora!"
|
256 |
+
|
257 |
+
#: includes/optimization/tabs/wps-optimization-database.php:15
|
258 |
+
msgid ""
|
259 |
+
"If for some reason your installation of WP Statistics is missing the "
|
260 |
+
"database tables or other core items, this will re-execute the install "
|
261 |
+
"process."
|
262 |
msgstr ""
|
263 |
+
"Si por alguna razón tu instalación de WP Statistics faltan las tablas de "
|
264 |
+
"base de datos u otros elementos fundamentales, esto se volver a ejecutar el "
|
265 |
+
"proceso de instalación."
|
266 |
|
267 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:163
|
268 |
+
msgid ""
|
269 |
+
"If the PHP BC Math Extension is installed. BC Math is no longer required "
|
270 |
+
"for the GeoIP code and is listed here only for historical reasons."
|
271 |
msgstr ""
|
272 |
+
"Si se instala la extensión PHP BC matemáticas. BCMath ya no es necesaria "
|
273 |
+
"para el código GeoIP y cotiza aquí sólo por razones históricas."
|
274 |
+
|
275 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:168
|
276 |
+
msgid "File Info"
|
277 |
+
msgstr "Información de archivo"
|
278 |
+
|
279 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:173
|
280 |
+
msgid "GeoIP Database"
|
281 |
+
msgstr "Base de datos de GeoIP"
|
282 |
+
|
283 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:184
|
284 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:203
|
285 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:222
|
286 |
+
msgid ", created on "
|
287 |
+
msgstr ", creado en "
|
288 |
+
|
289 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:186
|
290 |
+
msgid "The file size and date of the GeoIP database."
|
291 |
+
msgstr "El tamaño del archivo y la fecha de la base de datos GeoIP."
|
292 |
+
|
293 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:192
|
294 |
+
msgid "browscap.ini File"
|
295 |
+
msgstr "Archivo browscap.ini"
|
296 |
+
|
297 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:201
|
298 |
+
msgid "browscap.ini file does not exist."
|
299 |
+
msgstr "archivo browscap.ini no existe."
|
300 |
+
|
301 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:205
|
302 |
+
msgid "The file size and date of the browscap.ini file."
|
303 |
+
msgstr "El tamaño del archivo y la fecha del archivo browscap.ini."
|
304 |
+
|
305 |
+
#: includes/optimization/wps-optimization.php:51
|
306 |
+
msgid "Install routine complete."
|
307 |
+
msgstr "Instale la rutina completa."
|
308 |
+
|
309 |
+
#: includes/settings/tabs/wps-browscap.php:17
|
310 |
+
msgid "browscap settings"
|
311 |
+
msgstr "configuración de Browscap"
|
312 |
+
|
313 |
+
#: includes/settings/tabs/wps-browscap.php:22
|
314 |
+
msgid "browscap usage"
|
315 |
+
msgstr "uso Browscap"
|
316 |
+
|
317 |
+
#: includes/settings/tabs/wps-browscap.php:28
|
318 |
+
msgid "The browscap database will be downloaded and used to detect robots."
|
319 |
+
msgstr ""
|
320 |
+
"La base de datos browscap será descargado y utilizado para detectar los "
|
321 |
+
"robots."
|
322 |
+
|
323 |
+
#: includes/settings/tabs/wps-browscap.php:34
|
324 |
+
msgid "Update browscap Info"
|
325 |
+
msgstr "Actualización browscap información"
|
326 |
|
327 |
+
#: includes/settings/tabs/wps-browscap.php:39
|
328 |
+
msgid "Download browscap Database"
|
329 |
+
msgstr "Descargar browscap base de datos"
|
330 |
+
|
331 |
+
#: includes/settings/tabs/wps-browscap.php:46
|
332 |
+
msgid "Schedule weekly update of browscap DB"
|
333 |
+
msgstr "Actualización semanal de horario de browscap DB"
|
334 |
+
|
335 |
+
#: includes/settings/tabs/wps-browscap.php:69
|
336 |
+
msgid "Download of the browscap database will be scheduled for once a week."
|
337 |
msgstr ""
|
338 |
+
"La descarga de la base de datos browscap se programarán por primera vez a la "
|
339 |
+
"semana."
|
340 |
|
341 |
+
#: includes/optimization/tabs/wps-optimization-database.php:40
|
342 |
+
msgid ""
|
343 |
+
"Older installs of WP Statistics allow for duplicate entries in the visitors "
|
344 |
+
"table in a corner case. Newer installs protect against this with a unique "
|
345 |
+
"index on the table. To create the index on the older installs duplicate "
|
346 |
+
"entries must be deleted first. Clicking \"Update Now\" will scan the "
|
347 |
+
"vistitors table, delete duplicate entries and add the index."
|
348 |
msgstr ""
|
349 |
+
"Mayores instalaciones de WP Statistics permiten entradas duplicadas en la "
|
350 |
+
"tabla de visitantes en un caso de esquina. Instala nuevo protegerse de esto "
|
351 |
+
"con un índice único sobre la mesa. Para crear el índice en el instala mayor "
|
352 |
+
"entradas duplicadas debe ser suprimido primero. Haga clic en \"Update Now\" "
|
353 |
+
"explorará la mesa de los visitantes, eliminar entradas duplicadas y añadir "
|
354 |
+
"el índice."
|
355 |
+
|
356 |
+
#: includes/optimization/tabs/wps-optimization-database.php:46
|
357 |
+
msgid ""
|
358 |
+
"Older installs of WP Statistics allow for duplicate entries in the visitors "
|
359 |
+
"table in a corner case. Newer installs protect against this with a unique "
|
360 |
+
"index on the table."
|
361 |
+
msgstr ""
|
362 |
+
"Mayores instalaciones de WP Statistics permiten entradas duplicadas en la "
|
363 |
+
"tabla de visitantes en un caso de esquina. Instala nuevo protegerse de esto "
|
364 |
+
"con un índice único sobre la mesa."
|
365 |
+
|
366 |
+
#: includes/optimization/tabs/wps-optimization-database.php:47
|
367 |
+
msgid ""
|
368 |
+
"Congratulations, your installation is already up to date, nothing to do."
|
369 |
+
msgstr "Felicitaciones, su instalación es ya hasta la fecha, nada que ver."
|
370 |
|
371 |
+
#: includes/settings/tabs/wps-about.php:55
|
372 |
+
msgid "Have you search the Internet for any error messages you are receiving?"
|
|
|
373 |
msgstr ""
|
374 |
+
"¿Tienes que buscar en Internet para cualquier mensaje de error que está "
|
375 |
+
"recibiendo?"
|
376 |
|
377 |
+
#: includes/settings/tabs/wps-about.php:66
|
378 |
+
msgid ""
|
379 |
+
"Are you getting a blank or incomplete page displayed in your browser? Did "
|
380 |
+
"you view the source for the page and check for any fatal errors?"
|
381 |
msgstr ""
|
382 |
+
"¿Obtienes una página en blanco o incompleta Visualiza en su navegador? ¿Ver "
|
383 |
+
"el origen de la página y buscar cualquier error fatal?"
|
384 |
|
385 |
+
#: includes/settings/tabs/wps-about.php:67
|
386 |
+
msgid "Have you checked your PHP and web server error logs?"
|
387 |
+
msgstr "¿Has revisado tus logs de errores de servidor web y PHP?"
|
388 |
+
|
389 |
+
#: widget.php:15
|
390 |
+
msgid "Show site stats in sidebar."
|
391 |
+
msgstr "Mostrar las estadísticas del sitio en la barra lateral."
|
392 |
+
|
393 |
+
#: includes/log/last-search.php:97 includes/log/last-visitor.php:94
|
394 |
+
#: includes/log/widgets/google.map.php:65 includes/log/widgets/jqv.map.php:59
|
395 |
+
#: includes/log/widgets/recent.php:22 includes/log/widgets/words.php:25
|
396 |
+
msgid "#hash#"
|
397 |
+
msgstr "#hash #"
|
398 |
+
|
399 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:4
|
400 |
+
msgid ""
|
401 |
+
"This will replace all IP addresses in the database with hash values and "
|
402 |
+
"cannot be undo, are you sure?"
|
403 |
msgstr ""
|
404 |
+
"Esto reemplazará todas las direcciones IP en la base de datos con los "
|
405 |
+
"valores hash y no se puede deshacer, ¿estás seguro?"
|
406 |
|
407 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:26
|
408 |
+
msgid ""
|
409 |
+
"Updates any unknown location data in the database, this may take a while"
|
410 |
msgstr ""
|
411 |
+
"Actualiza los datos de ubicación desconocida en la base de datos, esto puede "
|
412 |
+
"tardar un poco"
|
413 |
+
|
414 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:31
|
415 |
+
#: includes/settings/tabs/wps-general.php:56
|
416 |
+
msgid "IP Addresses"
|
417 |
+
msgstr "Direcciones IP"
|
418 |
|
419 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:36
|
420 |
+
#: includes/settings/tabs/wps-general.php:61
|
421 |
+
msgid "Hash IP Addresses"
|
422 |
+
msgstr "Direcciones IP hash"
|
423 |
+
|
424 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:41
|
425 |
+
msgid ""
|
426 |
+
"Replace IP addresses in the database with hash values, you will not be able "
|
427 |
+
"to recover the IP addresses in the future to populate location information "
|
428 |
+
"afterwards and this may take a while"
|
429 |
msgstr ""
|
430 |
+
"Reemplace las direcciones IP en la base de datos con los valores hash, usted "
|
431 |
+
"no será capaz de recuperar las direcciones IP en el futuro para rellenar la "
|
432 |
+
"información de ubicación después y esto puede tomar un tiempo"
|
433 |
|
434 |
+
#: includes/optimization/wps-optimization.php:43
|
435 |
+
msgid "IP Addresses replaced with hash values."
|
436 |
+
msgstr "Direcciones IP reemplazado con valores hash."
|
437 |
+
|
438 |
+
#: includes/settings/tabs/wps-access-level.php:149
|
439 |
+
msgid "Force robot list update after upgrades"
|
440 |
+
msgstr "Actualización de la lista de fuerza robot después de actualizaciones"
|
441 |
+
|
442 |
+
#: includes/settings/tabs/wps-access-level.php:152
|
443 |
+
msgid ""
|
444 |
+
"Force the robot list to be reset to the default after an update to WP "
|
445 |
+
"Statistics takes place. Note if this option is enabled any custom robots "
|
446 |
+
"you have added to the list will be lost."
|
447 |
msgstr ""
|
448 |
+
"La lista de robot a restablecer por defecto después de una actualización de "
|
449 |
+
"las estadísticas de WP lleva a cabo la fuerza. Nota Si esta opción está "
|
450 |
+
"activada ninguna medida ha agregado a la lista de los robots se perderán."
|
451 |
|
452 |
+
#: includes/settings/tabs/wps-general.php:40
|
453 |
+
msgid "This will delete the manual when you save the settings, are you sure?"
|
454 |
+
msgstr ""
|
455 |
+
"Esto eliminará el manual cuando usted guardar los ajustes, ¿estás seguro?"
|
456 |
|
457 |
+
#: includes/settings/tabs/wps-general.php:220
|
458 |
+
msgid ""
|
459 |
+
"By default WP Statistics displays an alert if any of the core features are "
|
460 |
+
"disabled on every admin page, this option will disable these notices."
|
461 |
msgstr ""
|
462 |
+
"Por defecto WP Statistics muestra una alerta si cualquiera de las funciones "
|
463 |
+
"del núcleo están deshabilitado en cada página de admin, esta opción "
|
464 |
+
"desactivará estos avisos."
|
465 |
|
466 |
+
#: includes/settings/tabs/wps-general.php:226
|
467 |
+
msgid "Delete the manual"
|
468 |
+
msgstr "Eliminar el manual"
|
|
|
|
|
469 |
|
470 |
+
#: includes/settings/tabs/wps-general.php:232
|
471 |
+
msgid ""
|
472 |
+
"By default WP Statistics stores the admin manual in the plugin directory (~5 "
|
473 |
+
"meg), if this option is enabled it will be deleted now and during upgrades "
|
474 |
+
"in the future."
|
475 |
msgstr ""
|
476 |
+
"Por defecto las estadísticas WP almacena el admin manual en el directorio "
|
477 |
+
"del plugin (~ 5 meg), si esta opción está activada se borrará ahora y "
|
478 |
+
"durante las actualizaciones en el futuro."
|
479 |
+
|
480 |
+
#: includes/optimization/tabs/wps-optimization-database.php:20
|
481 |
+
msgid "Database Index"
|
482 |
+
msgstr "Índice de base de datos"
|
483 |
|
484 |
+
#: includes/optimization/tabs/wps-optimization-database.php:41
|
|
|
485 |
msgid ""
|
486 |
+
"This operation could take a long time on installs with many rows in the "
|
487 |
+
"visitors table."
|
488 |
msgstr ""
|
489 |
+
"Esta operación podría tomar mucho tiempo en instalaciones con muchas filas "
|
490 |
+
"en la tabla de visitantes."
|
491 |
+
|
492 |
+
#: includes/optimization/wps-optimization.php:129
|
493 |
+
msgid "Database"
|
494 |
+
msgstr "Base de datos"
|
495 |
+
|
496 |
+
#: includes/settings/tabs/wps-general.php:298
|
497 |
+
msgid "Schedule"
|
498 |
+
msgstr "Horario"
|
499 |
+
|
500 |
+
#: includes/settings/tabs/wps-general.php:328
|
501 |
+
msgid "Send reports via"
|
502 |
+
msgstr "Enviar informes a través de"
|
503 |
+
|
504 |
+
#: includes/settings/tabs/wps-general.php:347
|
505 |
+
msgid "E-mail addresses"
|
506 |
+
msgstr "Direcciones de correo electrónico"
|
507 |
|
508 |
+
#: includes/settings/tabs/wps-general.php:352
|
509 |
+
msgid ""
|
510 |
+
"A comma separated list of e-mail addresses to send the reports to if e-mail "
|
511 |
+
"is selected above."
|
512 |
msgstr ""
|
513 |
+
"Lista de direcciones de correo electrónico para enviar los informes a si "
|
514 |
+
"correo es seleccionado por encima de separados por una coma."
|
515 |
+
|
516 |
+
#: includes/settings/tabs/wps-general.php:358
|
517 |
+
msgid "Report body"
|
518 |
+
msgstr "Informe cuerpo"
|
519 |
+
|
520 |
+
#: includes/settings/tabs/wps-overview-display.php:75
|
521 |
+
msgid "The following three items are global to all users."
|
522 |
+
msgstr "Los tres artículos siguientes son globales para todos los usuarios."
|
523 |
|
524 |
+
#: includes/settings/tabs/wps-overview-display.php:80
|
525 |
+
msgid "Map type"
|
526 |
+
msgstr "Tipo de mapa"
|
|
|
|
|
527 |
|
528 |
+
#: includes/settings/tabs/wps-overview-display.php:86
|
529 |
+
msgid "JQVMap"
|
530 |
+
msgstr "JQVMap"
|
531 |
+
|
532 |
+
#: includes/settings/tabs/wps-overview-display.php:93
|
533 |
+
msgid ""
|
534 |
+
"The \"Google\" option will use Google's mapping service to plot the recent "
|
535 |
+
"visitors (requires access to Google)."
|
536 |
msgstr ""
|
537 |
+
"El \"Google\" opción usará servicio de mapeo de Google trazar los últimos "
|
538 |
+
"visitantes (requiere acceso a Google)."
|
539 |
|
540 |
+
#: includes/settings/tabs/wps-overview-display.php:94
|
541 |
+
msgid ""
|
542 |
+
"The \"JQVMap\" option will use JQVMap javascript mapping library to plot the "
|
543 |
+
"recent visitors (requires no extenral services)."
|
544 |
msgstr ""
|
545 |
+
"El \"JQVMap\" opción usará JQVMap biblioteca javascript de mapeo trazar los "
|
546 |
+
"últimos visitantes (no requiere ningún servicio extenral)."
|
547 |
|
548 |
+
#: includes/settings/tabs/wps-overview-display.php:118
|
549 |
+
msgid ""
|
550 |
+
"This feature may cause a performance degradation when viewing statistics and "
|
551 |
+
"is only valid if the map type is set to \"Google\"."
|
552 |
+
msgstr ""
|
553 |
+
"Esta característica puede provocar una degradación del rendimiento al ver "
|
554 |
+
"las estadísticas y sólo es válida si se establece el tipo de mapa en \"Google"
|
555 |
+
"\"."
|
556 |
+
|
557 |
+
#: includes/log/all-browsers.php:50
|
558 |
+
msgid "Browsers by type"
|
559 |
+
msgstr "Navegadores por tipo"
|
560 |
+
|
561 |
+
#: includes/log/all-browsers.php:133
|
562 |
+
msgid "Browsers by platform"
|
563 |
+
msgstr "Navegadores por plataforma"
|
564 |
+
|
565 |
+
#: includes/log/exclusions.php:97
|
566 |
+
msgid "Excluded hits in the last"
|
567 |
+
msgstr "Excluyen golpes en los últimos"
|
568 |
+
|
569 |
+
#: includes/log/hit-statistics.php:36
|
570 |
+
msgid "Hits Statistics Chart"
|
571 |
+
msgstr "Tabla de estadísticas Hits"
|
572 |
+
|
573 |
+
#: includes/log/hit-statistics.php:69 includes/log/widgets/hits.php:39
|
574 |
+
msgid "Hits in the last"
|
575 |
+
msgstr "Golpes en los últimos"
|
576 |
+
|
577 |
+
#: includes/log/last-search.php:30 includes/log/widgets/words.php:16
|
578 |
+
#: includes/settings/tabs/wps-overview-display.php:36
|
579 |
+
msgid "Latest Search Words"
|
580 |
+
msgstr "Las últimas palabras de búsqueda"
|
581 |
+
|
582 |
+
#: includes/log/last-search.php:62
|
583 |
+
msgid "Latest Search Word Statistics"
|
584 |
+
msgstr "Últimas estadísticas de la palabra de búsqueda"
|
585 |
+
|
586 |
+
#: includes/log/last-visitor.php:61
|
587 |
+
msgid "Recent Visitor Statistics"
|
588 |
+
msgstr "Estadísticas recientes de visitante"
|
589 |
+
|
590 |
+
#: includes/log/widgets/google.map.php:9 includes/log/widgets/jqv.map.php:9
|
591 |
+
msgid "Today Visitors Map"
|
592 |
+
msgstr "Hoy en día los visitantes mapa"
|
593 |
+
|
594 |
+
#: includes/log/widgets/summary.php:8
|
595 |
+
msgid "Summary"
|
596 |
+
msgstr "Resumen"
|
597 |
+
|
598 |
+
#: includes/log/widgets/summary.php:13
|
599 |
+
msgid "User(s) Online"
|
600 |
+
msgstr "Usuarios en línea"
|
601 |
+
|
602 |
+
#: includes/log/widgets/browsers.php:45
|
603 |
+
msgid "Top 10 Browsers"
|
604 |
+
msgstr "10 mejores navegadores"
|
605 |
+
|
606 |
+
#: includes/log/top-referring.php:34 includes/log/top-referring.php:49
|
607 |
+
#: includes/log/widgets/referring.php:13
|
608 |
+
#: includes/settings/tabs/wps-overview-display.php:26
|
609 |
+
msgid "Top Referring Sites"
|
610 |
+
msgstr "Principales sitios de referencia"
|
611 |
+
|
612 |
+
#: includes/log/widgets/about.php:16
|
613 |
+
msgid "Rate and Review"
|
614 |
+
msgstr "Tasa y revisión"
|
615 |
+
|
616 |
+
#: includes/log/widgets/about.php:20
|
617 |
+
msgid "More Information"
|
618 |
+
msgstr "Más información"
|
619 |
+
|
620 |
+
#: includes/log/widgets/about.php:29 includes/settings/tabs/wps-about.php:12
|
621 |
+
msgid ""
|
622 |
+
"This product includes GeoLite2 data created by MaxMind, available from %s."
|
623 |
msgstr ""
|
624 |
+
"Este producto incluye datos GeoLite2 creados por MaxMind, disponible desde "
|
625 |
+
"%s."
|
626 |
+
|
627 |
+
#: includes/log/search-statistics.php:77 includes/log/widgets/search.php:46
|
628 |
+
msgid "Search engine referrals in the last"
|
629 |
+
msgstr "Búsqueda motor referidos en los últimos"
|
630 |
+
|
631 |
+
#: includes/log/search-statistics.php:98 includes/log/widgets/search.php:67
|
632 |
+
msgid "Number of referrals"
|
633 |
+
msgstr "Número de referencias"
|
634 |
+
|
635 |
+
#: includes/log/widgets/pages.php:13
|
636 |
+
msgid "Top 10 Pages"
|
637 |
+
msgstr "Top 10 páginas"
|
638 |
+
|
639 |
+
#: includes/log/search-statistics.php:17 includes/log/search-statistics.php:36
|
640 |
+
msgid "Search Engine Referral Statistics"
|
641 |
+
msgstr "Búsqueda motor referencia estadística"
|
642 |
+
|
643 |
+
#: includes/settings/tabs/wps-about.php:8
|
644 |
+
msgid "WP Statistics V%s"
|
645 |
+
msgstr "WP Statistics V %s"
|
646 |
+
|
647 |
+
#: includes/settings/tabs/wps-about.php:20
|
648 |
+
msgid "Visit Us Online"
|
649 |
+
msgstr "Visítenos en línea"
|
650 |
+
|
651 |
+
#: includes/settings/tabs/wps-about.php:28
|
652 |
+
msgid "Rate and Review at WordPress.org"
|
653 |
+
msgstr "Tasa y revisión en WordPress.org."
|
654 |
+
|
655 |
+
#: includes/settings/tabs/wps-about.php:32
|
656 |
+
msgid "Thanks for installing WP Statistics, we encourage you to submit a "
|
657 |
+
msgstr "Gracias por instalar WP Statistics, os animamos a presentar un "
|
658 |
|
659 |
+
#: includes/settings/tabs/wps-about.php:32
|
660 |
+
msgid "rating and review"
|
661 |
+
msgstr "calificación y revisión"
|
662 |
+
|
663 |
+
#: includes/settings/tabs/wps-about.php:32
|
664 |
+
msgid "over at WordPress.org. Your feedback is greatly appreciated!"
|
665 |
+
msgstr "encima de WordPress.org. Su opinión es muy apreciada!"
|
666 |
+
|
667 |
+
#: includes/settings/tabs/wps-about.php:49
|
668 |
+
msgid ""
|
669 |
+
"We're sorry you're having problem with WP Statistics and we're happy to help "
|
670 |
+
"out. Here are a few things to do before contacting us:"
|
671 |
msgstr ""
|
672 |
+
"Sentimos que estás teniendo problemas con WP Statistics y estamos muy "
|
673 |
+
"contentos de ayudar. Aquí están algunas cosas que hacer antes de "
|
674 |
+
"contactarnos:"
|
675 |
+
|
676 |
+
#: includes/settings/tabs/wps-about.php:58
|
677 |
+
msgid "And a few things to double-check:"
|
678 |
+
msgstr "Y un par de cosas a revisar:"
|
679 |
+
|
680 |
+
#: includes/settings/tabs/wps-about.php:61
|
681 |
+
msgid "How's your memory_limit in php.ini?"
|
682 |
+
msgstr "¿Cómo está tu memory_limit en php.ini?"
|
683 |
+
|
684 |
+
#: includes/settings/tabs/wps-about.php:62
|
685 |
+
msgid "Have you tried disabling any other plugins you may have installed?"
|
686 |
+
msgstr "¿Has intentado desactivar cualquier otros plugins que han instalado?"
|
687 |
+
|
688 |
+
#: includes/settings/tabs/wps-about.php:63
|
689 |
+
msgid "Have you tried using the default WordPress theme?"
|
690 |
+
msgstr "¿Has probado con el tema de WordPress por defecto?"
|
691 |
+
|
692 |
+
#: includes/settings/tabs/wps-about.php:64
|
693 |
+
msgid "Have you double checked the plugin settings?"
|
694 |
+
msgstr "Doble ¿has revisado la configuración del plugin?"
|
695 |
+
|
696 |
+
#: includes/settings/tabs/wps-about.php:65
|
697 |
+
msgid "Do you have all the required PHP extensions installed?"
|
698 |
+
msgstr "¿Tienes todas las extensiones PHP necesarias instaladas?"
|
699 |
+
|
700 |
+
#: includes/settings/tabs/wps-about.php:70
|
701 |
+
msgid "Still not having any luck?"
|
702 |
+
msgstr "¿Todavía no ha habido suerte?"
|
703 |
+
|
704 |
+
#: includes/optimization/tabs/wps-optimization-export.php:17
|
705 |
+
#: includes/optimization/tabs/wps-optimization-export.php:35
|
706 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:128
|
707 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:169
|
708 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:193
|
709 |
+
#: includes/settings/tabs/wps-general.php:303
|
710 |
+
#: includes/settings/tabs/wps-general.php:333
|
711 |
+
msgid "Please select"
|
712 |
+
msgstr "Por favor, seleccione"
|
713 |
+
|
714 |
+
#: includes/settings/tabs/wps-general.php:365
|
715 |
+
msgid ""
|
716 |
+
"Any shortcode supported by your installation of WordPress, include all "
|
717 |
+
"shortcodes for WP Statistics (see the admin manual for a list of codes "
|
718 |
+
"available) are supported in the body of the message."
|
719 |
+
msgstr ""
|
720 |
+
"Cualquier shortcode apoyado por tu instalación de WordPress, incluyen los "
|
721 |
+
"shortcodes para WP Statistics (véase el manual del administrador para "
|
722 |
+
"obtener una lista de los códigos disponibles) son compatibles con el cuerpo "
|
723 |
+
"del mensaje."
|
724 |
|
725 |
+
#: includes/settings/tabs/wps-general.php:368
|
726 |
+
msgid ""
|
727 |
+
"Input data codes are now deprecated and will be removed in a future version "
|
728 |
+
"of WP Statistics, please use the appropriate shortcodes, they are included "
|
729 |
+
"here only for historical purposes:"
|
730 |
msgstr ""
|
731 |
+
"Códigos de entrada de datos son ahora en desuso y se quitará en una versión "
|
732 |
+
"futura de las estadísticas de WP, utilice los shortcodes apropiados, están "
|
733 |
+
"incluidos aquí solamente para fines históricos:"
|
734 |
|
735 |
+
#: includes/settings/tabs/wps-geoip.php:22
|
736 |
+
msgid ""
|
737 |
+
"IP location services provided by GeoLite2 data created by MaxMind, available "
|
738 |
+
"from %s."
|
739 |
msgstr ""
|
740 |
+
"Servicios de localización de IP proporcionados por GeoLite2 datos creados "
|
741 |
+
"por MaxMind, disponible desde %s."
|
742 |
|
743 |
+
#: includes/settings/tabs/wps-overview-display.php:23
|
744 |
+
#: includes/settings/tabs/wps-overview-display.php:32
|
745 |
+
msgid "None"
|
746 |
+
msgstr "Ninguno"
|
|
|
747 |
|
748 |
+
#: includes/settings/tabs/wps-overview-display.php:28
|
749 |
+
#: includes/settings/wps-settings.php:92
|
750 |
+
msgid "About"
|
751 |
+
msgstr "Acerca de"
|
752 |
+
|
753 |
+
#: includes/settings/tabs/wps-overview-display.php:123
|
754 |
+
msgid "Widgets to Display"
|
755 |
+
msgstr "Widgets para pantalla"
|
756 |
+
|
757 |
+
#: includes/settings/tabs/wps-overview-display.php:132
|
758 |
+
msgid ""
|
759 |
+
"The following items are unique to each user. If you do not select the "
|
760 |
+
"'About' widget it will automatically be displayed in the last positon of "
|
761 |
+
"column A."
|
762 |
msgstr ""
|
763 |
+
"Los siguientes artículos son únicos para cada usuario. Si usted no "
|
764 |
+
"selecciona el widget 'Acerca de' automáticamente se mostrará en la última "
|
765 |
+
"posición de la columna A."
|
766 |
|
767 |
+
#: includes/settings/tabs/wps-overview-display.php:137
|
768 |
+
msgid "Slot"
|
769 |
+
msgstr "Ranura"
|
770 |
+
|
771 |
+
#: includes/settings/tabs/wps-overview-display.php:141
|
772 |
+
msgid "Column A"
|
773 |
+
msgstr "Columna A"
|
774 |
+
|
775 |
+
#: includes/settings/tabs/wps-overview-display.php:145
|
776 |
+
msgid "Column B"
|
777 |
+
msgstr "Columna B"
|
778 |
+
|
779 |
+
#: includes/settings/tabs/wps-overview-display.php:151
|
780 |
+
msgid "Slot 1"
|
781 |
+
msgstr "Ranura 1"
|
782 |
+
|
783 |
+
#: includes/settings/tabs/wps-overview-display.php:181
|
784 |
+
msgid "Slot 2"
|
785 |
+
msgstr "Ranura 2"
|
786 |
+
|
787 |
+
#: includes/settings/tabs/wps-overview-display.php:211
|
788 |
+
msgid "Slot 3"
|
789 |
+
msgstr "Ranura 3"
|
790 |
+
|
791 |
+
#: includes/settings/tabs/wps-overview-display.php:241
|
792 |
+
msgid "Slot 4"
|
793 |
+
msgstr "Ranura 4"
|
794 |
+
|
795 |
+
#: includes/settings/tabs/wps-overview-display.php:271
|
796 |
+
msgid "Slot 5"
|
797 |
+
msgstr "Ranura 5"
|
798 |
+
|
799 |
+
#: includes/settings/tabs/wps-overview-display.php:301
|
800 |
+
msgid "Slot 6"
|
801 |
+
msgstr "Ranura 6"
|
802 |
+
|
803 |
+
#: includes/settings/tabs/wps-overview-display.php:305
|
804 |
+
msgid "N/A"
|
805 |
+
msgstr "N / A"
|
806 |
+
|
807 |
+
#: widget.php:280
|
808 |
+
msgid "Search Engine Referred"
|
809 |
+
msgstr "Motor de búsqueda se refiere"
|
810 |
+
|
811 |
+
#: schedule.php:10
|
812 |
+
msgid "Once Weekly"
|
813 |
+
msgstr "Una vez semanal"
|
814 |
+
|
815 |
+
#: schedule.php:17
|
816 |
+
msgid "Once Every 2 Weeks"
|
817 |
+
msgstr "Una vez cada 2 semanas"
|
818 |
+
|
819 |
+
#: schedule.php:24
|
820 |
+
msgid "Once Every 4 Weeks"
|
821 |
+
msgstr "Una vez cada 4 semanas"
|
822 |
+
|
823 |
+
#: wp-statistics.php:39
|
824 |
+
msgid "Complete statistics for your WordPress site."
|
825 |
+
msgstr "Estadísticas completas para su sitio de WordPress."
|
826 |
+
|
827 |
+
#: includes/log/widgets/about.php:15
|
828 |
+
msgid "Website"
|
829 |
+
msgstr "Sitio web"
|
830 |
+
|
831 |
+
#: includes/log/top-referring.php:117 includes/log/widgets/referring.php:19
|
832 |
+
msgid "References"
|
833 |
+
msgstr "Referencias"
|
834 |
+
|
835 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:33
|
836 |
+
msgid "PHP Memory Limit"
|
837 |
+
msgstr "Límite de memoria del PHP"
|
838 |
+
|
839 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:38
|
840 |
+
msgid "The memory limit a script is allowed to consume, set in php.ini."
|
841 |
msgstr ""
|
842 |
+
"El límite de memoria un guión está autorizado a consumir, situado en php.ini."
|
843 |
+
|
844 |
+
#: wp-statistics.php:38
|
845 |
+
msgid "WP Statistics"
|
846 |
+
msgstr "Estadísticas de WP"
|
847 |
+
|
848 |
+
#: wp-statistics.php:164
|
849 |
+
msgid "Visit WordPress.org page"
|
850 |
+
msgstr "Visita la página de WordPress.org"
|
851 |
+
|
852 |
+
#: includes/log/page-statistics.php:29
|
853 |
+
msgid "Page Trend for Post ID"
|
854 |
+
msgstr "Página de tendencia para Post ID"
|
855 |
+
|
856 |
+
#: includes/log/page-statistics.php:48
|
857 |
+
msgid "Page Trend"
|
858 |
+
msgstr "Página de tendencia"
|
859 |
|
860 |
+
#: includes/log/page-statistics.php:68
|
861 |
+
msgid "Page Trending Stats"
|
862 |
+
msgstr "Página de tendencias estadísticas"
|
863 |
+
|
864 |
+
#: includes/settings/tabs/wps-access-level.php:97
|
865 |
+
msgid "Record exclusions"
|
866 |
+
msgstr "Exclusiones récord"
|
867 |
+
|
868 |
+
#: includes/settings/tabs/wps-access-level.php:130
|
869 |
+
msgid "Robot list"
|
870 |
+
msgstr "Lista de robot"
|
871 |
+
|
872 |
+
#: includes/settings/tabs/wps-access-level.php:157
|
873 |
+
msgid "Excluded IP address list"
|
874 |
+
msgstr "Lista de direcciones IP excluida"
|
875 |
+
|
876 |
+
#: includes/settings/tabs/wps-access-level.php:160
|
877 |
+
msgid ""
|
878 |
+
"A list of IP addresses and subnet masks (one per line) to exclude from "
|
879 |
+
"statistics collection (both 192.168.0.0/24 and 192.168.0.0/255.255.255.0 "
|
880 |
+
"formats are accepted). To specify an IP address only, use a subnet value of "
|
881 |
+
"32 or 255.255.255.255."
|
882 |
msgstr ""
|
883 |
+
"Una lista de direcciones IP y subred (una por línea) máscaras para excluir "
|
884 |
+
"de la recopilación de estadísticas (se aceptan formatos tanto 192.168.0.0/24 "
|
885 |
+
"y 192.168.0.0/255.255.255.0). Para especificar una dirección IP sólo, "
|
886 |
+
"utilice un valor de subred de 32 o 255.255.255.255."
|
887 |
+
|
888 |
+
#: includes/settings/tabs/wps-access-level.php:172
|
889 |
+
msgid "Excluded login page"
|
890 |
+
msgstr "Página de login excluidos"
|
891 |
+
|
892 |
+
#: includes/settings/tabs/wps-access-level.php:179
|
893 |
+
msgid "Excluded admin pages"
|
894 |
+
msgstr "Admin excluidos páginas"
|
895 |
+
|
896 |
+
#: includes/settings/tabs/wps-general.php:72
|
897 |
+
msgid "Users Online"
|
898 |
+
msgstr "Usuarios en línea"
|
899 |
+
|
900 |
+
#: includes/settings/tabs/wps-general.php:77
|
901 |
+
msgid "User online"
|
902 |
+
msgstr "Usuario en línea"
|
903 |
+
|
904 |
+
#: includes/settings/tabs/wps-general.php:172
|
905 |
+
msgid "Track all pages"
|
906 |
+
msgstr "Rastrear todas las páginas"
|
907 |
+
|
908 |
+
#: includes/settings/tabs/wps-general.php:184
|
909 |
+
msgid "Disable hits column in post/pages list"
|
910 |
+
msgstr "Desactivar la columna de hits en la lista de correos/páginas"
|
911 |
+
|
912 |
+
#: includes/settings/tabs/wps-general.php:195
|
913 |
+
msgid "Miscellaneous"
|
914 |
+
msgstr "Misceláneo"
|
915 |
+
|
916 |
+
#: wp-statistics.php:164
|
917 |
+
msgid "Click here to visit the plugin on WordPress.org"
|
918 |
+
msgstr "Haga clic aquí para visitar el plugin en WordPress.org"
|
919 |
+
|
920 |
+
#: wp-statistics.php:167
|
921 |
+
msgid "Click here to rate and review this plugin on WordPress.org"
|
922 |
+
msgstr "Haga clic aquí para calificar y revisar este plugin en WordPress.org"
|
923 |
+
|
924 |
+
#: wp-statistics.php:167
|
925 |
+
msgid "Rate this plugin"
|
926 |
+
msgstr "Tasa de este plugin"
|
927 |
+
|
928 |
+
#: wp-statistics.php:211
|
929 |
+
msgid "WP Statistics - Hits"
|
930 |
+
msgstr "Estadísticas de WP - Hits"
|
931 |
+
|
932 |
+
#: wp-statistics.php:599
|
933 |
+
msgid "Error downloading GeoIP database from: %s - %s"
|
934 |
+
msgstr "Error al descargar GeoIP base de datos: %s - %s"
|
935 |
+
|
936 |
+
#: widget.php:108 widget.php:277
|
937 |
+
msgid "Total Page Views"
|
938 |
+
msgstr "Total páginas vistas"
|
939 |
+
|
940 |
+
#: includes/settings/tabs/wps-general.php:155
|
941 |
+
#: includes/settings/tabs/wps-general.php:160 wp-statistics.php:259
|
942 |
+
msgid "Pages"
|
943 |
+
msgstr "Páginas"
|
944 |
+
|
945 |
+
#: wp-statistics.php:266
|
946 |
+
msgid "Manual"
|
947 |
+
msgstr "Manual"
|
948 |
+
|
949 |
+
#: wp-statistics.php:364
|
950 |
+
msgid "Download ODF file"
|
951 |
+
msgstr "Descargar archivo ODF"
|
952 |
+
|
953 |
+
#: wp-statistics.php:365
|
954 |
+
msgid "Download HTML file"
|
955 |
+
msgstr "Descargar archivo HTML"
|
956 |
+
|
957 |
+
#: wp-statistics.php:369
|
958 |
+
msgid "Manual file not found."
|
959 |
+
msgstr "Manual archivo no encontrado."
|
960 |
+
|
961 |
+
#: includes/log/exclusions.php:54
|
962 |
+
msgid "Exclusions Statistics"
|
963 |
+
msgstr "Estadísticas de exclusiones"
|
964 |
+
|
965 |
+
#: includes/settings/tabs/wps-overview-display.php:37
|
966 |
+
msgid "Top Pages Visited"
|
967 |
+
msgstr "Top páginas visitadas"
|
968 |
+
|
969 |
+
#: includes/log/top-pages.php:160 includes/log/widgets/pages.php:27
|
970 |
+
msgid "No page title found"
|
971 |
+
msgstr "No encontró el título de página"
|
972 |
+
|
973 |
+
#: includes/log/top-pages.php:13 includes/log/top-pages.php:132
|
974 |
+
msgid "Top Pages"
|
975 |
+
msgstr "Páginas principales"
|
976 |
+
|
977 |
+
#: includes/log/top-pages.php:20
|
978 |
+
msgid "Top 5 Pages Trends"
|
979 |
+
msgstr "Principales tendencias de 5 páginas"
|
980 |
+
|
981 |
+
#: includes/log/top-pages.php:49
|
982 |
+
msgid "Top 5 Page Trending Stats"
|
983 |
+
msgstr "Top 5 página tendencias estadísticas"
|
984 |
+
|
985 |
+
#: includes/log/page-statistics.php:89 includes/log/top-pages.php:70
|
986 |
+
msgid "Number of Hits"
|
987 |
+
msgstr "Número de visitas"
|
988 |
|
989 |
+
#: manual/manual.php:29
|
990 |
+
msgid "Manual not found: %s"
|
991 |
+
msgstr "Manual no encontrado: %s"
|
992 |
+
|
993 |
+
#: manual/manual.php:39
|
994 |
+
msgid "Invalid file type selected: %s"
|
995 |
+
msgstr "Tipo de archivo no válido seleccionado: %s"
|
996 |
+
|
997 |
+
#: widget.php:116
|
998 |
+
msgid "Search Engine referred"
|
999 |
+
msgstr "Motor de búsqueda se refiere"
|
1000 |
+
|
1001 |
+
#: includes/optimization/tabs/wps-optimization-export.php:47
|
1002 |
+
msgid "Include Header Row"
|
1003 |
+
msgstr "Incluyen la fila de encabezado"
|
1004 |
+
|
1005 |
+
#: includes/optimization/tabs/wps-optimization-export.php:52
|
1006 |
+
msgid "Include a header row as the first line of the exported file."
|
1007 |
msgstr ""
|
1008 |
+
"Incluyen una fila de encabezado como la primera línea del archivo exportado."
|
1009 |
+
|
1010 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:125
|
1011 |
+
msgid "PHP Safe Mode"
|
1012 |
+
msgstr "Modo seguro de PHP"
|
1013 |
|
1014 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:130
|
1015 |
+
msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
|
|
|
1016 |
msgstr ""
|
1017 |
+
"Modo seguro de PHP está activo. No se admite el código GeoIP en modo seguro."
|
1018 |
|
1019 |
+
#: includes/settings/tabs/wps-geoip.php:106
|
1020 |
+
msgid "GeoIP collection is disabled due to the following reasons:"
|
1021 |
+
msgstr "Colección GeoIP está deshabilitado debido a las razones siguientes:"
|
1022 |
+
|
1023 |
+
#: includes/settings/tabs/wps-geoip.php:126
|
1024 |
+
msgid ""
|
1025 |
+
"PHP safe mode detected! GeoIP collection is not supported with PHP's safe "
|
1026 |
+
"mode enabled!"
|
1027 |
msgstr ""
|
1028 |
+
"Modo seguro de PHP detectado! GeoIP colección no es compatible con el modo "
|
1029 |
+
"seguro de PHP está activado!"
|
1030 |
|
1031 |
+
#: includes/settings/tabs/wps-general.php:214
|
1032 |
+
msgid "Hide admin notices about non active features"
|
1033 |
+
msgstr "Ocultar admin avisos acerca de características no activos"
|
1034 |
+
|
1035 |
+
#: includes/settings/tabs/wps-general.php:237
|
1036 |
+
msgid "Search Enginges"
|
1037 |
+
msgstr "Búsqueda Enginges"
|
1038 |
+
|
1039 |
+
#: includes/settings/tabs/wps-general.php:242
|
1040 |
+
msgid ""
|
1041 |
+
"Disabling all search engines is not allowed, doing so will result in all "
|
1042 |
+
"search engines being active."
|
1043 |
msgstr ""
|
1044 |
+
"Deshabilitar todos los buscadores no está permitido, haciendo así que "
|
1045 |
+
"generará en todos los buscadores siendo activos."
|
1046 |
|
1047 |
+
#: includes/settings/tabs/wps-general.php:257
|
1048 |
+
msgid "disable"
|
1049 |
+
msgstr "desactivar"
|
|
|
|
|
1050 |
|
1051 |
+
#: includes/settings/tabs/wps-general.php:258
|
1052 |
+
msgid "Disable %s from data collection and reporting."
|
1053 |
+
msgstr "Deshabilitar %s de recopilación de datos y presentación de informes."
|
1054 |
+
|
1055 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:147
|
1056 |
+
msgid "cURL Version"
|
1057 |
+
msgstr "Versión del enrollamiento"
|
1058 |
+
|
1059 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:151
|
1060 |
+
msgid "cURL not installed"
|
1061 |
+
msgstr "Enrollamiento no instalado"
|
1062 |
+
|
1063 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:152
|
1064 |
+
msgid ""
|
1065 |
+
"The PHP cURL Extension version you are running. cURL is required for the "
|
1066 |
+
"GeoIP code, if it is not installed GeoIP will be disabled."
|
1067 |
msgstr ""
|
1068 |
+
"El PHP cURL versión de extensión se está ejecutando. Rizo es necesaria para "
|
1069 |
+
"el código GeoIP, si no se instala que GeoIP estará desactivada."
|
1070 |
|
1071 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:158
|
1072 |
+
msgid "BC Math"
|
1073 |
+
msgstr "BCMath"
|
1074 |
+
|
1075 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:162
|
1076 |
+
msgid "Installed"
|
1077 |
+
msgstr "Instalado"
|
1078 |
+
|
1079 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:162
|
1080 |
+
msgid "Not installed"
|
1081 |
+
msgstr "No está instalada"
|
1082 |
+
|
1083 |
+
#: includes/settings/tabs/wps-geoip.php:114
|
1084 |
+
msgid ""
|
1085 |
+
"GeoIP collection requires the cURL PHP extension and it is not loaded on "
|
1086 |
+
"your version of PHP!"
|
1087 |
msgstr ""
|
1088 |
+
"Colección GeoIP requiere la extensión PHP cURL y no está cargada en su "
|
1089 |
+
"versión de PHP."
|
1090 |
|
1091 |
+
#: includes/settings/tabs/wps-geoip.php:120
|
1092 |
+
msgid ""
|
1093 |
+
"GeoIP collection requires the BC Math PHP extension and it is not loaded on "
|
1094 |
+
"your version of PHP!"
|
1095 |
msgstr ""
|
1096 |
+
"Colección GeoIP requiere la extensión PHP matemáticas BC y no está cargada "
|
1097 |
+
"en su versión de PHP!"
|
1098 |
|
1099 |
+
#: includes/functions/geoip-populate.php:26
|
1100 |
+
msgid ""
|
1101 |
+
"Unable to load the GeoIP database, make sure you have downloaded it in the "
|
1102 |
+
"settings page."
|
1103 |
+
msgstr ""
|
1104 |
+
"No se puede cargar la base de datos GeoIP, asegúrese de que lo hayas "
|
1105 |
+
"descargado en la página de configuración."
|
1106 |
|
1107 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:182
|
1108 |
+
msgid "Database file does not exist."
|
1109 |
+
msgstr "No existe archivo de base de datos."
|
1110 |
+
|
1111 |
+
#: includes/log/last-visitor.php:59
|
1112 |
+
msgid "Search for"
|
1113 |
+
msgstr "Búsqueda para"
|
1114 |
+
|
1115 |
+
#: includes/log/widgets/browsers.php:8 includes/log/widgets/countries.php:11
|
1116 |
+
#: includes/log/widgets/hits.php:8 includes/log/widgets/pages.php:13
|
1117 |
+
#: includes/log/widgets/recent.php:9 includes/log/widgets/referring.php:13
|
1118 |
+
#: includes/log/widgets/search.php:8 includes/log/widgets/words.php:16
|
1119 |
+
msgid "More"
|
1120 |
+
msgstr "Más"
|
1121 |
+
|
1122 |
+
#: includes/settings/tabs/wps-general.php:269
|
1123 |
+
msgid "Include totals"
|
1124 |
+
msgstr "Incluir totales"
|
1125 |
+
|
1126 |
+
#: includes/settings/tabs/wps-general.php:275
|
1127 |
+
msgid ""
|
1128 |
+
"Add a total line to charts with multiple values, like the search engine "
|
1129 |
+
"referrals"
|
1130 |
msgstr ""
|
1131 |
+
"Añada una línea total a listas con varios valores, como las referencias del "
|
1132 |
+
"motor de búsqueda"
|
1133 |
|
1134 |
+
#: includes/settings/tabs/wps-overview-display.php:100
|
1135 |
+
msgid "Disable map"
|
1136 |
+
msgstr "Desactivar el mapa"
|
|
|
1137 |
|
1138 |
+
#: includes/settings/tabs/wps-overview-display.php:106
|
1139 |
+
msgid "Disable the map display"
|
1140 |
+
msgstr "Desactivar la pantalla de mapa"
|
|
|
1141 |
|
1142 |
+
#: includes/settings/tabs/wps-overview-display.php:112
|
1143 |
+
msgid "Get country location from Google"
|
1144 |
+
msgstr "Obtener ubicación país de Google"
|
1145 |
+
|
1146 |
+
#: includes/log/exclusions.php:8
|
1147 |
+
msgid ""
|
1148 |
+
"Attention: Exclusion are not currently set to be recorded, the results below "
|
1149 |
+
"may not reflect current statistics!"
|
1150 |
msgstr ""
|
1151 |
+
"Atención: La exclusión no son actualmente establecido en grabarse, abajo los "
|
1152 |
+
"resultados pueden no reflejar estadísticas actuales!"
|
1153 |
+
|
1154 |
+
#: includes/log/exclusions.php:118
|
1155 |
+
msgid "Number of excluded hits"
|
1156 |
+
msgstr "Número de golpes excluidos"
|
1157 |
|
1158 |
+
#: includes/settings/tabs/wps-access-level.php:86
|
1159 |
+
msgid ""
|
1160 |
+
"Hint: manage_network = Super Admin Network, manage_options = Administrator, "
|
1161 |
+
"edit_others_posts = Editor, publish_posts = Author, edit_posts = "
|
1162 |
+
"Contributor, read = Everyone."
|
1163 |
msgstr ""
|
1164 |
+
"Sugerencia: manage_network = Super Admin red, manage_options = "
|
1165 |
+
"administrador, edit_others_posts = Editor, publish_posts = autor, edit_posts "
|
1166 |
+
"= contribuyente, leer = todo el mundo."
|
1167 |
+
|
1168 |
+
#: includes/settings/tabs/wps-access-level.php:99
|
1169 |
+
#: includes/settings/tabs/wps-access-level.php:151
|
1170 |
+
msgid "Enable"
|
1171 |
+
msgstr "Enable"
|
1172 |
|
1173 |
+
#: includes/settings/tabs/wps-access-level.php:100
|
1174 |
+
msgid ""
|
1175 |
+
"This will record all the excluded hits in a separate table with the reasons "
|
1176 |
+
"why it was excluded but no other information. This will generate a lot of "
|
1177 |
+
"data but is useful if you want to see the total number of hits your site "
|
1178 |
+
"gets, not just actual user visits."
|
1179 |
msgstr ""
|
1180 |
+
"Esto registrará todos los golpes excluidos en una tabla separada con las "
|
1181 |
+
"razones de por qué fue excluido, pero ninguna otra información. Esto va a "
|
1182 |
+
"generar un montón de datos pero es útil si quieres ver el número total de "
|
1183 |
+
"hits de su sitio obtiene, usuario no sólo real visitas."
|
1184 |
|
1185 |
+
#: includes/settings/tabs/wps-access-level.php:168
|
1186 |
+
msgid "Site URL Exclusions"
|
1187 |
+
msgstr "Sitio URL exclusiones"
|
1188 |
+
|
1189 |
+
#: includes/settings/tabs/wps-access-level.php:175
|
1190 |
+
msgid "Exclude the login page for registering as a hit."
|
1191 |
msgstr ""
|
1192 |
+
"Excluyen a la página de inicio de sesión para registrarse como un éxito."
|
1193 |
|
1194 |
+
#: includes/settings/tabs/wps-access-level.php:182
|
1195 |
+
msgid "Exclude the admin pages for registering as a hit."
|
1196 |
+
msgstr "Excluir las páginas admin para registrarse como un éxito."
|
1197 |
+
|
1198 |
+
#: includes/settings/tabs/wps-access-level.php:93 wp-statistics.php:254
|
1199 |
+
msgid "Exclusions"
|
1200 |
+
msgstr "Exclusiones"
|
1201 |
+
|
1202 |
+
#: includes/log/exclusions.php:68
|
1203 |
+
msgid "Total Exclusions: %s"
|
1204 |
+
msgstr "Total de exclusiones: %s"
|
1205 |
+
|
1206 |
+
#: includes/log/exclusions.php:75
|
1207 |
+
msgid "Exclusions Statistical Chart"
|
1208 |
+
msgstr "Tabla estadística de exclusiones"
|
1209 |
+
|
1210 |
+
#: includes/settings/tabs/wps-access-level.php:33
|
1211 |
+
msgid "Access Levels"
|
1212 |
+
msgstr "Niveles de acceso"
|
1213 |
|
1214 |
+
#: includes/optimization/wps-optimization.php:126
|
1215 |
+
msgid "Resources/Information"
|
1216 |
+
msgstr "Recursos e información"
|
1217 |
+
|
1218 |
+
#: includes/optimization/wps-optimization.php:128
|
1219 |
+
msgid "Purging"
|
1220 |
+
msgstr "Purga"
|
1221 |
+
|
1222 |
+
#: includes/optimization/wps-optimization.php:130
|
1223 |
+
msgid "Updates"
|
1224 |
+
msgstr "Actualizaciones"
|
1225 |
+
|
1226 |
+
#: includes/settings/wps-settings.php:88
|
1227 |
+
msgid "Access/Exclusions"
|
1228 |
+
msgstr "Acceso/exclusiones"
|
1229 |
+
|
1230 |
+
#: includes/settings/wps-settings.php:91
|
1231 |
+
msgid "Maintenance"
|
1232 |
+
msgstr "Mantenimiento"
|
1233 |
+
|
1234 |
+
#: includes/settings/wps-settings.php:126
|
1235 |
+
msgid "Update"
|
1236 |
+
msgstr "Actualización"
|
1237 |
+
|
1238 |
+
#: includes/settings/wps-settings.php:86
|
1239 |
+
msgid "General"
|
1240 |
+
msgstr "General"
|
1241 |
+
|
1242 |
+
#: includes/optimization/empty.php:57
|
1243 |
+
msgid "Error, %s not emptied!"
|
1244 |
+
msgstr "Error, %s no vaciado."
|
1245 |
+
|
1246 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:118
|
1247 |
+
msgid "Data"
|
1248 |
+
msgstr "Datos"
|
1249 |
+
|
1250 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:145
|
1251 |
+
msgid "Purge records older than"
|
1252 |
+
msgstr "Purgar registros más"
|
1253 |
+
|
1254 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:151
|
1255 |
+
msgid ""
|
1256 |
+
"Deleted user statistics data older than the selected number of days. "
|
1257 |
+
"Minimum value is 30 days."
|
1258 |
msgstr ""
|
1259 |
+
"Datos de las estadísticas de usuario eliminado mayor que la cantidad de días "
|
1260 |
+
"seleccionados. Valor mínimo es de 30 días."
|
1261 |
+
|
1262 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:152
|
1263 |
+
msgid "Purge now!"
|
1264 |
+
msgstr "Purga ahora!"
|
1265 |
|
1266 |
+
#: includes/optimization/purge-data.php:55
|
1267 |
+
msgid "Please select a value over 30 days."
|
1268 |
+
msgstr "Por favor, seleccione un valor de más de 30 días."
|
|
|
|
|
|
|
1269 |
|
1270 |
+
#: includes/settings/tabs/wps-maintenance.php:20
|
1271 |
+
msgid ""
|
1272 |
+
"This will permanently delete data from the database each day, are you sure "
|
1273 |
+
"you want to enable this option?"
|
1274 |
msgstr ""
|
1275 |
+
"Esto se eliminarán permanentemente los datos de la base de datos cada día, "
|
1276 |
+
"¿estás seguro de que desea activar esta opción?"
|
1277 |
+
|
1278 |
+
#: includes/settings/tabs/wps-maintenance.php:30
|
1279 |
+
msgid "Database Maintenance"
|
1280 |
+
msgstr "Mantenimiento de la base"
|
1281 |
+
|
1282 |
+
#: includes/settings/tabs/wps-maintenance.php:35
|
1283 |
+
msgid "Run a daily WP Cron job to prune the databases"
|
1284 |
+
msgstr "Ejecutar un trabajo WP Cron diario para podar las bases de datos"
|
1285 |
|
1286 |
+
#: includes/settings/tabs/wps-maintenance.php:41
|
1287 |
+
msgid ""
|
1288 |
+
"A WP Cron job will be run daily to prune any data older than a set number of "
|
1289 |
+
"days."
|
1290 |
msgstr ""
|
1291 |
+
"Una tarea de cron WP se ejecutará diario podar cualquier dato mayor que un "
|
1292 |
+
"número determinado de días."
|
1293 |
+
|
1294 |
+
#: includes/settings/tabs/wps-maintenance.php:47
|
1295 |
+
msgid "Prune data older than"
|
1296 |
+
msgstr "Podar datos más"
|
1297 |
+
|
1298 |
+
#: includes/settings/tabs/wps-maintenance.php:52
|
1299 |
+
msgid "Days"
|
1300 |
+
msgstr "Días"
|
1301 |
|
1302 |
+
#: includes/settings/tabs/wps-maintenance.php:53
|
1303 |
+
msgid ""
|
1304 |
+
"The number of days to keep statistics for. Minimum value is 30 days. "
|
1305 |
+
"Invalid values will disable the daily maintenance."
|
1306 |
msgstr ""
|
1307 |
+
"El número de días para mantener estadísticas. Valor mínimo es de 30 días. "
|
1308 |
+
"Valores no válidos desactivará el mantenimiento diario."
|
1309 |
|
1310 |
+
#: includes/settings/wps-settings.php:89
|
1311 |
+
msgid "GeoIP"
|
1312 |
+
msgstr "GeoIP"
|
1313 |
+
|
1314 |
+
#: includes/settings/tabs/wps-browscap.php:54
|
1315 |
+
#: includes/settings/tabs/wps-geoip.php:64
|
1316 |
+
msgid "Next update will be"
|
1317 |
+
msgstr "Próxima actualización será"
|
1318 |
+
|
1319 |
+
#: includes/settings/tabs/wps-geoip.php:109
|
1320 |
+
msgid ""
|
1321 |
+
"GeoIP collection requires PHP %s or above, it is currently disabled due to "
|
1322 |
+
"the installed PHP version being "
|
1323 |
msgstr ""
|
1324 |
+
"Colección GeoIP requiere PHP %s o por encima, está actualmente deshabilitado "
|
1325 |
+
"debido a la versión instalada PHP es "
|
1326 |
|
1327 |
+
#: includes/log/widgets/search.php:8 includes/log/widgets/summary.php:64
|
1328 |
+
msgid "Search Engine Referrals"
|
1329 |
+
msgstr "Referencias del motor de búsqueda"
|
1330 |
+
|
1331 |
+
#: includes/log/widgets/summary.php:88
|
1332 |
+
msgid "Daily Total"
|
1333 |
+
msgstr "Total diaria"
|
1334 |
+
|
1335 |
+
#: includes/log/widgets/summary.php:102
|
1336 |
+
msgid "Current Time and Date"
|
1337 |
+
msgstr "Fecha y hora actual"
|
1338 |
+
|
1339 |
+
#: includes/optimization/tabs/wps-optimization-database.php:39
|
1340 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:25
|
1341 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:40
|
1342 |
+
msgid "Update Now!"
|
1343 |
+
msgstr "¡Actualiza ahora!"
|
1344 |
+
|
1345 |
+
#: includes/settings/tabs/wps-access-level.php:87
|
1346 |
+
msgid ""
|
1347 |
+
"Each of the above casscades the rights upwards in the default WordPress "
|
1348 |
+
"configuration. So for example selecting publish_posts grants the right to "
|
1349 |
+
"Authors, Editors, Admins and Super Admins."
|
1350 |
msgstr ""
|
1351 |
+
"Cada uno de los casscades arriba los derechos hacia arriba en la "
|
1352 |
+
"configuración predeterminada de WordPress. Tan por ejemplo seleccionando "
|
1353 |
+
"publish_posts concede el derecho a autores, editores, administradores y "
|
1354 |
+
"administradores de Super."
|
1355 |
|
1356 |
+
#: includes/settings/tabs/wps-access-level.php:88
|
1357 |
+
msgid ""
|
1358 |
+
"If you need a more robust solution to delegate access you might want to look "
|
1359 |
+
"at %s in the WordPress plugin directory."
|
1360 |
msgstr ""
|
1361 |
+
"Si usted necesita una solución más robusta para delegar el acceso que tal "
|
1362 |
+
"vez quieras ver %s en el directorio del plugin de WordPress."
|
1363 |
|
1364 |
+
#: includes/settings/tabs/wps-access-level.php:62
|
1365 |
+
msgid "Required user level to view WP Statistics"
|
1366 |
+
msgstr "Requiere nivel de usuario para ver las estadísticas de WP"
|
1367 |
+
|
1368 |
+
#: includes/settings/tabs/wps-access-level.php:77
|
1369 |
+
msgid "Required user level to manage WP Statistics"
|
1370 |
+
msgstr "Nivel de usuario necesarios para gestionar las estadísticas WP"
|
1371 |
+
|
1372 |
+
#: includes/settings/tabs/wps-geoip.php:56
|
1373 |
+
msgid "Schedule monthly update of GeoIP DB"
|
1374 |
+
msgstr "Actualización mensual de GeoIP DB de la programación"
|
1375 |
+
|
1376 |
+
#: includes/settings/tabs/wps-geoip.php:82
|
1377 |
+
msgid ""
|
1378 |
+
"Download of the GeoIP database will be scheduled for 2 days after the first "
|
1379 |
+
"Tuesday of the month."
|
1380 |
msgstr ""
|
1381 |
+
"La descarga de la base de datos GeoIP programará durante 2 días después del "
|
1382 |
+
"primer martes del mes."
|
1383 |
|
1384 |
+
#: includes/settings/tabs/wps-geoip.php:83
|
1385 |
+
msgid ""
|
1386 |
+
"This option will also download the database if the local filesize is less "
|
1387 |
+
"than 1k (which usually means the stub that comes with the plugin is still in "
|
1388 |
+
"place)."
|
1389 |
msgstr ""
|
1390 |
+
"Esta opción también descargará la base de datos si el tamaño del archivo "
|
1391 |
+
"local es menos de 1k (lo que generalmente significa el talón que viene con "
|
1392 |
+
"el plugin está todavía en su lugar)."
|
1393 |
+
|
1394 |
+
#: includes/settings/tabs/wps-geoip.php:89
|
1395 |
+
msgid "Populate missing GeoIP after update of GeoIP DB"
|
1396 |
+
msgstr "Poblar GeoIP desaparecido después de la actualización de GeoIP DB"
|
1397 |
|
1398 |
+
#: includes/settings/tabs/wps-geoip.php:95
|
1399 |
+
msgid "Update any missing GeoIP data after downloading a new database."
|
|
|
1400 |
msgstr ""
|
1401 |
+
"Actualizar cualquier dato GeoIP desaparecido después de descargar una nueva "
|
1402 |
+
"base de datos."
|
1403 |
|
1404 |
+
#: includes/functions/geoip-populate.php:50
|
1405 |
+
msgid "Updated %s GeoIP records in the visitors database."
|
1406 |
+
msgstr "Actualizado %s GeoIP registros en la base de datos de los visitantes."
|
1407 |
+
|
1408 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:98
|
1409 |
+
msgid "Version Info"
|
1410 |
+
msgstr "Información de versión"
|
1411 |
+
|
1412 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:103
|
1413 |
+
msgid "WP Statistics Version"
|
1414 |
+
msgstr "Versión WP Statistics"
|
1415 |
+
|
1416 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:108
|
1417 |
+
msgid "The WP Statistics version you are running."
|
1418 |
+
msgstr "La versión de WP Statistics que se está ejecutando."
|
1419 |
+
|
1420 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:114
|
1421 |
+
msgid "PHP Version"
|
1422 |
+
msgstr "Versión de PHP"
|
1423 |
+
|
1424 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:119
|
1425 |
+
msgid "The PHP version you are running."
|
1426 |
+
msgstr "La versión de PHP que se está ejecutando."
|
1427 |
+
|
1428 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:136
|
1429 |
+
msgid "jQuery Version"
|
1430 |
+
msgstr "Versión de jQuery"
|
1431 |
+
|
1432 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:141
|
1433 |
+
msgid "The jQuery version you are running."
|
1434 |
+
msgstr "La versión de jQuery que se está ejecutando."
|
1435 |
+
|
1436 |
+
#: wp-statistics.php:610
|
1437 |
+
msgid "Error could not open downloaded GeoIP database for reading: %s"
|
1438 |
msgstr ""
|
1439 |
+
"Error no pudo abrir descargado GeoIP de base de datos para la lectura: %s"
|
1440 |
+
|
1441 |
+
#: wp-statistics.php:617
|
1442 |
+
msgid "Error could not open destination GeoIP database for writing %s"
|
1443 |
+
msgstr "Error no pudo abrir la base de datos de GeoIP destino para escribir %s"
|
1444 |
+
|
1445 |
+
#: wp-statistics.php:633
|
1446 |
+
msgid "GeoIP Database updated successfully!"
|
1447 |
+
msgstr "GeoIP de base de datos actualizada!"
|
1448 |
+
|
1449 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:229
|
1450 |
+
msgid "Client Info"
|
1451 |
+
msgstr "Información del cliente"
|
1452 |
+
|
1453 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:234
|
1454 |
+
msgid "Client IP"
|
1455 |
+
msgstr "Cliente IP"
|
1456 |
+
|
1457 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:239
|
1458 |
+
msgid "The client IP address."
|
1459 |
+
msgstr "La dirección IP del cliente."
|
1460 |
+
|
1461 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:245
|
1462 |
+
msgid "User Agent"
|
1463 |
+
msgstr "Agente de usuario"
|
1464 |
+
|
1465 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:250
|
1466 |
+
msgid "The client user agent string."
|
1467 |
+
msgstr "La cadena de agente de usuario cliente."
|
1468 |
+
|
1469 |
+
#: includes/settings/tabs/wps-access-level.php:105
|
1470 |
+
msgid "Exclude User Roles"
|
1471 |
+
msgstr "Excluir Roles de usuario"
|
1472 |
+
|
1473 |
+
#: includes/settings/tabs/wps-access-level.php:119
|
1474 |
+
#: includes/settings/tabs/wps-access-level.php:174
|
1475 |
+
#: includes/settings/tabs/wps-access-level.php:181
|
1476 |
+
msgid "Exclude"
|
1477 |
+
msgstr "Excluir"
|
1478 |
+
|
1479 |
+
#: includes/settings/tabs/wps-access-level.php:120
|
1480 |
+
msgid "Exclude %s role from data collection."
|
1481 |
+
msgstr "Excluir %s papel de recopilación de datos."
|
1482 |
+
|
1483 |
+
#: includes/settings/tabs/wps-access-level.php:126
|
1484 |
+
msgid "IP/Robot Exclusions"
|
1485 |
+
msgstr "Exclusiones de IP/Robot"
|
1486 |
|
1487 |
+
#: includes/settings/tabs/wps-access-level.php:143
|
1488 |
+
msgid ""
|
1489 |
+
"A list of words (one per line) to match against to detect robots. Entries "
|
1490 |
+
"must be at least 4 characters long or they will be ignored."
|
1491 |
msgstr ""
|
1492 |
+
"Una lista de palabras (una por línea) que partido contra para detectar los "
|
1493 |
+
"robots. Las entradas deben tener por lo menos 4 caracteres o ignorarán."
|
1494 |
|
1495 |
+
#: includes/settings/tabs/wps-access-level.php:144
|
1496 |
+
msgid "Reset to Default"
|
1497 |
+
msgstr "Restablecer por defecto"
|
|
|
|
|
|
|
1498 |
|
1499 |
+
#: includes/settings/tabs/wps-access-level.php:161
|
1500 |
+
msgid "Add 10.0.0.0"
|
1501 |
+
msgstr "Añadir 10.0.0.0"
|
|
|
|
|
1502 |
|
1503 |
+
#: includes/settings/tabs/wps-access-level.php:162
|
1504 |
+
msgid "Add 172.16.0.0"
|
1505 |
+
msgstr "Añadir 172.16.0.0"
|
|
|
|
|
|
|
1506 |
|
1507 |
+
#: includes/settings/tabs/wps-access-level.php:163
|
1508 |
+
msgid "Add 192.168.0.0"
|
1509 |
+
msgstr "Añadir 192.168.0.0"
|
|
|
|
|
1510 |
|
1511 |
+
#: includes/settings/tabs/wps-general.php:264
|
1512 |
+
msgid "Charts"
|
1513 |
+
msgstr "Cartas"
|
|
|
|
|
|
|
1514 |
|
1515 |
+
#: includes/settings/tabs/wps-geoip.php:38
|
1516 |
+
msgid ""
|
1517 |
+
"For get more information and location (country) from visitor, enable this "
|
1518 |
+
"feature."
|
1519 |
+
msgstr ""
|
1520 |
+
"Para obtener más información y ubicación (país) de visitante, activar esta "
|
1521 |
+
"función."
|
1522 |
+
|
1523 |
+
#: includes/settings/wps-settings.php:87 wp-statistics.php:248
|
1524 |
+
msgid "Overview"
|
1525 |
+
msgstr "Resumen"
|
1526 |
+
|
1527 |
+
#: includes/optimization/tabs/wps-optimization-database.php:25
|
1528 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:21
|
1529 |
+
#: wp-statistics.php:251
|
1530 |
+
msgid "Countries"
|
1531 |
+
msgstr "Países"
|
1532 |
+
|
1533 |
+
#: wp-statistics.php:176 wp-statistics.php:253
|
1534 |
+
msgid "Hits"
|
1535 |
+
msgstr "Hits"
|
1536 |
+
|
1537 |
+
#: wp-statistics.php:255
|
1538 |
+
msgid "Referers"
|
1539 |
+
msgstr "Enlaces (links)"
|
1540 |
+
|
1541 |
+
#: wp-statistics.php:256
|
1542 |
+
msgid "Searches"
|
1543 |
+
msgstr "Búsquedas"
|
1544 |
+
|
1545 |
+
#: wp-statistics.php:257
|
1546 |
+
msgid "Search Words"
|
1547 |
+
msgstr "Palabras de búsqueda"
|
1548 |
+
|
1549 |
+
#: includes/settings/tabs/wps-general.php:94
|
1550 |
+
msgid "Second"
|
1551 |
+
msgstr "Segundo"
|
1552 |
+
|
1553 |
+
#: includes/log/all-browsers.php:17
|
1554 |
+
msgid "Browser Statistics"
|
1555 |
+
msgstr "Estadísticas de navegador"
|
1556 |
+
|
1557 |
+
#: includes/log/all-browsers.php:107
|
1558 |
+
msgid "Platform"
|
1559 |
+
msgstr "Plataforma"
|
1560 |
+
|
1561 |
+
#: includes/log/all-browsers.php:241
|
1562 |
+
msgid "%s Version"
|
1563 |
+
msgstr "versión de %s"
|
1564 |
+
|
1565 |
+
#: includes/log/hit-statistics.php:17 includes/log/widgets/hits.php:8
|
1566 |
+
msgid "Hit Statistics"
|
1567 |
+
msgstr "Golpear las estadísticas"
|
1568 |
+
|
1569 |
+
#: includes/log/exclusions.php:57 includes/log/hit-statistics.php:21
|
1570 |
+
#: includes/log/page-statistics.php:33 includes/log/search-statistics.php:21
|
1571 |
+
msgid "10 Days"
|
1572 |
+
msgstr "10 días"
|
1573 |
+
|
1574 |
+
#: includes/log/exclusions.php:58 includes/log/hit-statistics.php:22
|
1575 |
+
#: includes/log/page-statistics.php:34 includes/log/search-statistics.php:22
|
1576 |
+
msgid "20 Days"
|
1577 |
+
msgstr "20 días"
|
1578 |
+
|
1579 |
+
#: includes/log/exclusions.php:59 includes/log/hit-statistics.php:23
|
1580 |
+
#: includes/log/page-statistics.php:35 includes/log/search-statistics.php:23
|
1581 |
+
msgid "30 Days"
|
1582 |
+
msgstr "30 días"
|
1583 |
+
|
1584 |
+
#: includes/log/exclusions.php:60 includes/log/hit-statistics.php:24
|
1585 |
+
#: includes/log/page-statistics.php:36 includes/log/search-statistics.php:24
|
1586 |
+
msgid "2 Months"
|
1587 |
+
msgstr "2 meses"
|
1588 |
+
|
1589 |
+
#: includes/log/exclusions.php:61 includes/log/hit-statistics.php:25
|
1590 |
+
#: includes/log/page-statistics.php:37 includes/log/search-statistics.php:25
|
1591 |
+
msgid "3 Months"
|
1592 |
+
msgstr "3 meses"
|
1593 |
+
|
1594 |
+
#: includes/log/exclusions.php:62 includes/log/hit-statistics.php:26
|
1595 |
+
#: includes/log/page-statistics.php:38 includes/log/search-statistics.php:26
|
1596 |
+
msgid "6 Months"
|
1597 |
+
msgstr "6 meses"
|
1598 |
+
|
1599 |
+
#: includes/log/exclusions.php:63 includes/log/hit-statistics.php:27
|
1600 |
+
#: includes/log/page-statistics.php:39 includes/log/search-statistics.php:27
|
1601 |
+
msgid "9 Months"
|
1602 |
+
msgstr "9 meses"
|
1603 |
+
|
1604 |
+
#: includes/log/exclusions.php:64 includes/log/hit-statistics.php:28
|
1605 |
+
#: includes/log/page-statistics.php:40 includes/log/search-statistics.php:28
|
1606 |
+
msgid "1 Year"
|
1607 |
+
msgstr "1 año"
|
1608 |
+
|
1609 |
+
#: includes/settings/tabs/wps-overview-display.php:34
|
1610 |
+
msgid "Hits Statistical Chart"
|
1611 |
+
msgstr "Gráfico estadístico Hits"
|
1612 |
+
|
1613 |
+
#: includes/log/exclusions.php:97 includes/log/hit-statistics.php:69
|
1614 |
+
#: includes/log/search-statistics.php:77 includes/log/widgets/hits.php:39
|
1615 |
+
#: includes/log/widgets/search.php:46
|
1616 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:150
|
1617 |
+
msgid "days"
|
1618 |
+
msgstr "días"
|
1619 |
+
|
1620 |
+
#: includes/log/widgets/countries.php:11
|
1621 |
+
#: includes/settings/tabs/wps-overview-display.php:27
|
1622 |
+
msgid "Top 10 Countries"
|
1623 |
+
msgstr "Top 10 países"
|
1624 |
+
|
1625 |
+
#: includes/log/top-countries.php:28 includes/log/widgets/countries.php:17
|
1626 |
+
msgid "Rank"
|
1627 |
+
msgstr "Rank"
|
1628 |
+
|
1629 |
+
#: includes/log/top-countries.php:29 includes/log/widgets/countries.php:18
|
1630 |
+
msgid "Flag"
|
1631 |
+
msgstr "Bandera"
|
1632 |
+
|
1633 |
+
#: includes/log/top-countries.php:31 includes/log/widgets/countries.php:20
|
1634 |
+
msgid "Visitor Count"
|
1635 |
+
msgstr "Conde de visitante"
|
1636 |
+
|
1637 |
+
#: includes/settings/tabs/wps-overview-display.php:35
|
1638 |
+
msgid "Search Engine Referrers Statistical Chart"
|
1639 |
+
msgstr "Búsqueda motor Referrers gráfico estadístico"
|
1640 |
+
|
1641 |
+
#: includes/log/top-countries.php:19
|
1642 |
+
msgid "Top Countries"
|
1643 |
+
msgstr "Principales países"
|
1644 |
+
|
1645 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:159
|
1646 |
+
msgid "Delete User Agent Types"
|
1647 |
+
msgstr "Eliminar tipos de agente de usuario"
|
1648 |
+
|
1649 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:164
|
1650 |
+
msgid "Delete Agents"
|
1651 |
+
msgstr "Eliminar agentes"
|
1652 |
+
|
1653 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:179
|
1654 |
+
msgid "All visitor data will be lost for this agent type."
|
1655 |
+
msgstr "Se perderán todos los datos de visitante para este tipo de agente."
|
1656 |
+
|
1657 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:180
|
1658 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:204
|
1659 |
+
msgid "Delete now!"
|
1660 |
+
msgstr "Eliminar ahora!"
|
1661 |
+
|
1662 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:188
|
1663 |
+
msgid "Delete Platforms"
|
1664 |
+
msgstr "Eliminar las plataformas"
|
1665 |
+
|
1666 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:203
|
1667 |
+
msgid "All visitor data will be lost for this platform type."
|
1668 |
+
msgstr "Se perderán todos los datos de visitante para este tipo de plataforma."
|
1669 |
+
|
1670 |
+
#: includes/optimization/tabs/wps-optimization-updates.php:16
|
1671 |
+
msgid "GeoIP Options"
|
1672 |
+
msgstr "Opciones de GeoIP"
|
1673 |
+
|
1674 |
+
#: includes/settings/tabs/wps-general.php:133
|
1675 |
+
msgid "Store entire user agent string"
|
1676 |
+
msgstr "Cadena de agente de usuario toda tienda"
|
1677 |
+
|
1678 |
+
#: includes/settings/tabs/wps-general.php:139
|
1679 |
+
msgid "Only enabled for debugging"
|
1680 |
+
msgstr "Solamente habilitado para la depuración"
|
1681 |
+
|
1682 |
+
#: includes/settings/tabs/wps-geoip.php:17
|
1683 |
+
msgid "GeoIP settings"
|
1684 |
+
msgstr "Configuración de GeoIP"
|
1685 |
+
|
1686 |
+
#: includes/settings/tabs/wps-geoip.php:32
|
1687 |
+
msgid "GeoIP collection"
|
1688 |
+
msgstr "Colección GeoIP"
|
1689 |
+
|
1690 |
+
#: includes/settings/tabs/wps-geoip.php:44
|
1691 |
+
msgid "Update GeoIP Info"
|
1692 |
+
msgstr "Actualizar su información GeoIP"
|
1693 |
+
|
1694 |
+
#: includes/settings/tabs/wps-geoip.php:49
|
1695 |
+
msgid "Download GeoIP Database"
|
1696 |
+
msgstr "Descargar GeoIP Database"
|
1697 |
+
|
1698 |
+
#: includes/settings/tabs/wps-browscap.php:40
|
1699 |
+
#: includes/settings/tabs/wps-geoip.php:50
|
1700 |
+
msgid "Save changes on this page to download the update."
|
1701 |
+
msgstr "Guardar cambios en esta página para descargar la actualización."
|
1702 |
+
|
1703 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:10
|
1704 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:36
|
1705 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:62
|
1706 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:90
|
1707 |
+
msgid "Are you sure?"
|
1708 |
+
msgstr "¿Estás seguro?"
|
1709 |
+
|
1710 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:137
|
1711 |
+
msgid "Clear now!"
|
1712 |
+
msgstr "Claro ahora!"
|
1713 |
+
|
1714 |
+
#: wp-statistics.php:261
|
1715 |
+
msgid "Optimization"
|
1716 |
+
msgstr "Optimización"
|
1717 |
+
|
1718 |
+
#: includes/optimization/delete-agents.php:5
|
1719 |
+
#: includes/optimization/delete-platforms.php:5
|
1720 |
+
#: includes/optimization/empty.php:5 includes/optimization/export.php:5
|
1721 |
+
#: includes/optimization/purge-data.php:5
|
1722 |
+
#: includes/optimization/wps-optimization.php:3 manual/manual.php:5
|
1723 |
+
msgid "Access denied!"
|
1724 |
+
msgstr "Acceso denegado!"
|
1725 |
+
|
1726 |
+
#: includes/optimization/delete-agents.php:18
|
1727 |
+
#: includes/optimization/delete-platforms.php:18
|
1728 |
+
#: includes/optimization/empty.php:42 includes/optimization/export.php:57
|
1729 |
+
msgid "Please select the desired items."
|
1730 |
+
msgstr "Por favor, seleccione los elementos deseados."
|
1731 |
+
|
1732 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:17
|
1733 |
+
msgid "Resources"
|
1734 |
+
msgstr "Recursos"
|
1735 |
+
|
1736 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:22
|
1737 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:27
|
1738 |
+
msgid "Memory usage in PHP"
|
1739 |
+
msgstr "Uso de memoria en PHP"
|
1740 |
+
|
1741 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:26
|
1742 |
+
msgid "Byte"
|
1743 |
+
msgstr "Byte"
|
1744 |
+
|
1745 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:48
|
1746 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:59
|
1747 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:70
|
1748 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:81
|
1749 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:92
|
1750 |
+
msgid "Row"
|
1751 |
+
msgstr "Fila"
|
1752 |
+
|
1753 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:49
|
1754 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:60
|
1755 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:71
|
1756 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:82
|
1757 |
+
#: includes/optimization/tabs/wps-optimization-resources.php:93
|
1758 |
+
msgid "Number of rows"
|
1759 |
+
msgstr "Número de filas"
|
1760 |
+
|
1761 |
+
#: includes/optimization/tabs/wps-optimization-export.php:7
|
1762 |
+
#: includes/optimization/wps-optimization.php:127
|
1763 |
+
msgid "Export"
|
1764 |
+
msgstr "Exportación"
|
1765 |
+
|
1766 |
+
#: includes/optimization/tabs/wps-optimization-export.php:12
|
1767 |
+
msgid "Export from"
|
1768 |
+
msgstr "La exportación de"
|
1769 |
+
|
1770 |
+
#: includes/optimization/tabs/wps-optimization-export.php:24
|
1771 |
+
msgid "Select the table for the output file."
|
1772 |
+
msgstr "Seleccione la tabla para el archivo de salida."
|
1773 |
+
|
1774 |
+
#: includes/optimization/tabs/wps-optimization-export.php:30
|
1775 |
+
msgid "Export To"
|
1776 |
+
msgstr "Exportar a"
|
1777 |
+
|
1778 |
+
#: includes/optimization/tabs/wps-optimization-export.php:41
|
1779 |
+
msgid "Select the output file type."
|
1780 |
+
msgstr "Seleccione el tipo de archivo de salida."
|
1781 |
+
|
1782 |
+
#: includes/optimization/tabs/wps-optimization-export.php:53
|
1783 |
+
msgid "Start Now!"
|
1784 |
+
msgstr "¡ Empiece ahora!"
|
1785 |
+
|
1786 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:123
|
1787 |
+
msgid "Empty Table"
|
1788 |
+
msgstr "Mesa vacía"
|
1789 |
+
|
1790 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:136
|
1791 |
+
msgid "All data table will be lost."
|
1792 |
+
msgstr "Tabla de todos los datos se perderá."
|
1793 |
+
|
1794 |
+
#: includes/settings/tabs/wps-about.php:44
|
1795 |
+
msgid "Support"
|
1796 |
+
msgstr "Apoyo"
|
1797 |
+
|
1798 |
+
#: includes/settings/tabs/wps-about.php:74
|
1799 |
+
msgid "Farsi"
|
1800 |
+
msgstr "Farsi"
|
1801 |
+
|
1802 |
+
#: includes/log/top-referring.php:47
|
1803 |
+
msgid "Referring sites from"
|
1804 |
+
msgstr "Sitios de referencia"
|
1805 |
+
|
1806 |
+
#: includes/settings/tabs/wps-about.php:36
|
1807 |
+
msgid "Translations"
|
1808 |
+
msgstr "Traducciones"
|
1809 |
+
|
1810 |
+
#: includes/log/top-referring.php:4
|
1811 |
+
msgid "To be added soon"
|
1812 |
+
msgstr "Agregarse pronto"
|
1813 |
+
|
1814 |
+
#: includes/log/last-search.php:102 includes/log/last-visitor.php:99
|
1815 |
+
#: includes/log/top-referring.php:78 includes/log/widgets/recent.php:27
|
1816 |
+
#: includes/log/widgets/words.php:32
|
1817 |
+
#: includes/settings/tabs/wps-overview-display.php:33
|
1818 |
+
#: includes/settings/tabs/wps-overview-display.php:71
|
1819 |
+
msgid "Map"
|
1820 |
+
msgstr "Mapa"
|
1821 |
+
|
1822 |
+
#: includes/log/last-search.php:139 includes/log/last-visitor.php:132
|
1823 |
+
#: includes/log/top-pages.php:181 includes/log/top-referring.php:132
|
1824 |
+
msgid "Page"
|
1825 |
+
msgstr "Página"
|
1826 |
+
|
1827 |
+
#: includes/log/last-search.php:139 includes/log/last-visitor.php:132
|
1828 |
+
#: includes/log/top-pages.php:181 includes/log/top-referring.php:132
|
1829 |
+
msgid "From"
|
1830 |
+
msgstr "De"
|
1831 |
+
|
1832 |
+
#: wp-statistics.php:455
|
1833 |
+
msgid "Table plugin does not exist! Please disable and re-enable the plugin."
|
1834 |
+
msgstr ""
|
1835 |
+
"Mesa plugin no existe! Por favor desactive y vuelva a activar el plugin."
|
1836 |
|
1837 |
+
#: includes/settings/tabs/wps-general.php:280
|
1838 |
+
#: includes/settings/tabs/wps-general.php:285 schedule.php:161
|
1839 |
+
msgid "Statistical reporting"
|
1840 |
+
msgstr "Informes estadísticos"
|
1841 |
|
1842 |
+
#: widget.php:14 wp-statistics.php:245
|
1843 |
+
msgid "Statistics"
|
1844 |
+
msgstr "Estadísticas"
|
|
|
1845 |
|
1846 |
+
#: includes/settings/tabs/wps-general.php:369 widget.php:38 widget.php:247
|
1847 |
+
#: wp-statistics.php:310
|
1848 |
+
msgid "User Online"
|
1849 |
+
msgstr "Usuarios conectados"
|
1850 |
+
|
1851 |
+
#: includes/settings/tabs/wps-general.php:371 widget.php:45 widget.php:250
|
1852 |
+
msgid "Today Visit"
|
1853 |
+
msgstr "Visitas hoy"
|
1854 |
+
|
1855 |
+
#: includes/settings/tabs/wps-general.php:370 widget.php:52 widget.php:253
|
1856 |
+
msgid "Today Visitor"
|
1857 |
+
msgstr "Visitante de hoy"
|
1858 |
+
|
1859 |
+
#: includes/settings/tabs/wps-general.php:373 widget.php:59
|
1860 |
+
msgid "Yesterday Visit"
|
1861 |
+
msgstr "Ayer visite"
|
1862 |
+
|
1863 |
+
#: includes/settings/tabs/wps-general.php:372 widget.php:66 widget.php:259
|
1864 |
+
msgid "Yesterday Visitor"
|
1865 |
+
msgstr "Ayer visitante"
|
1866 |
|
1867 |
+
#: widget.php:73 widget.php:262
|
|
|
1868 |
msgid "Week Visit"
|
1869 |
msgstr "Visitas semanales"
|
1870 |
|
1871 |
+
#: widget.php:80 widget.php:265
|
|
|
1872 |
msgid "Month Visit"
|
1873 |
msgstr "Visitas mensuales"
|
1874 |
|
1875 |
+
#: widget.php:87 widget.php:268
|
|
|
1876 |
msgid "Years Visit"
|
1877 |
msgstr "Visitas anuales"
|
1878 |
|
1879 |
+
#: includes/settings/tabs/wps-general.php:375 widget.php:94 widget.php:271
|
1880 |
+
msgid "Total Visit"
|
1881 |
+
msgstr "Total de visitas"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1882 |
|
1883 |
+
#: includes/settings/tabs/wps-general.php:374 widget.php:101 widget.php:274
|
1884 |
+
msgid "Total Visitor"
|
1885 |
+
msgstr "Visitantes total"
|
|
|
1886 |
|
1887 |
+
#: widget.php:123 widget.php:300
|
|
|
1888 |
msgid "Total Posts"
|
1889 |
msgstr "Total entradas"
|
1890 |
|
1891 |
+
#: widget.php:130 widget.php:303
|
|
|
1892 |
msgid "Total Pages"
|
1893 |
msgstr "Total páginas"
|
1894 |
|
1895 |
+
#: widget.php:137 widget.php:306
|
|
|
1896 |
msgid "Total Comments"
|
1897 |
msgstr "Total comentarios"
|
1898 |
|
1899 |
+
#: widget.php:144 widget.php:309
|
|
|
1900 |
msgid "Total Spams"
|
1901 |
msgstr "Total spam"
|
1902 |
|
1903 |
+
#: widget.php:151 widget.php:312
|
|
|
1904 |
msgid "Total Users"
|
1905 |
msgstr "Total usuarios"
|
1906 |
|
1907 |
+
#: widget.php:158 widget.php:315
|
|
|
1908 |
msgid "Average Posts"
|
1909 |
msgstr "Medía por artículos"
|
1910 |
|
1911 |
+
#: widget.php:165 widget.php:318
|
|
|
1912 |
msgid "Average Comments"
|
1913 |
msgstr "Media por comentarios"
|
1914 |
|
1915 |
+
#: widget.php:172 widget.php:321
|
|
|
1916 |
msgid "Average Users"
|
1917 |
msgstr "Media por usuarios"
|
1918 |
|
1919 |
+
#: widget.php:179 widget.php:324
|
|
|
1920 |
msgid "Last Post Date"
|
1921 |
msgstr "Fecha de última entrada"
|
1922 |
|
1923 |
+
#: wp-statistics.php:340
|
1924 |
+
msgid "View Stats"
|
1925 |
+
msgstr "Ver estadísticas"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1926 |
|
1927 |
+
#: wp-statistics.php:152 wp-statistics.php:262
|
1928 |
+
msgid "Settings"
|
1929 |
+
msgstr "Configuración"
|
1930 |
|
1931 |
+
#: wp-statistics.php:316
|
1932 |
+
msgid "Today visitor"
|
1933 |
+
msgstr "Visitante de hoy"
|
1934 |
|
1935 |
+
#: wp-statistics.php:322
|
1936 |
+
msgid "Today visit"
|
1937 |
+
msgstr "Visite hoy"
|
1938 |
|
1939 |
+
#: wp-statistics.php:328
|
1940 |
+
msgid "Yesterday visitor"
|
1941 |
+
msgstr "Ayer visitante"
|
1942 |
|
1943 |
+
#: widget.php:256 wp-statistics.php:334
|
1944 |
+
msgid "Yesterday visit"
|
1945 |
+
msgstr "Visitas ayer"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1946 |
|
1947 |
+
#: wp-statistics.php:444 wp-statistics.php:544 wp-statistics.php:815
|
1948 |
+
msgid "You do not have sufficient permissions to access this page."
|
1949 |
+
msgstr "No tienes permisos suficientes para acceder a esta página."
|
1950 |
+
|
1951 |
+
#: includes/log/all-browsers.php:23 includes/log/all-browsers.php:106
|
1952 |
+
#: includes/log/all-browsers.php:240 includes/log/exclusions.php:74
|
1953 |
+
#: includes/log/hit-statistics.php:35 includes/log/last-search.php:61
|
1954 |
+
#: includes/log/last-visitor.php:57 includes/log/page-statistics.php:47
|
1955 |
+
#: includes/log/search-statistics.php:35 includes/log/top-pages.php:19
|
1956 |
+
#: includes/log/top-pages.php:131 includes/log/top-referring.php:45
|
1957 |
+
#: includes/log/widgets/about.php:7 includes/log/widgets/browsers.php:7
|
1958 |
+
#: includes/log/widgets/countries.php:9 includes/log/widgets/google.map.php:8
|
1959 |
+
#: includes/log/widgets/hits.php:7 includes/log/widgets/jqv.map.php:8
|
1960 |
+
#: includes/log/widgets/pages.php:11 includes/log/widgets/recent.php:7
|
1961 |
+
#: includes/log/widgets/referring.php:11 includes/log/widgets/search.php:7
|
1962 |
+
#: includes/log/widgets/summary.php:7 includes/log/widgets/words.php:14
|
1963 |
+
msgid "Click to toggle"
|
1964 |
+
msgstr "Haga clic para alternar"
|
1965 |
|
1966 |
+
#: includes/settings/tabs/wps-overview-display.php:24
|
1967 |
+
msgid "Summary Statistics"
|
1968 |
+
msgstr "Estadísticas de Resumen"
|
1969 |
|
1970 |
+
#: includes/log/hit-statistics.php:104 includes/log/widgets/hits.php:74
|
1971 |
+
#: includes/log/widgets/summary.php:19
|
1972 |
+
msgid "Visitor"
|
1973 |
+
msgstr "Visitante"
|
1974 |
|
1975 |
+
#: includes/log/hit-statistics.php:104 includes/log/widgets/hits.php:74
|
1976 |
+
#: includes/log/widgets/summary.php:20
|
1977 |
+
msgid "Visit"
|
1978 |
+
msgstr "Visita"
|
1979 |
|
1980 |
+
#: includes/log/widgets/summary.php:24 includes/log/widgets/summary.php:69
|
1981 |
+
msgid "Today"
|
1982 |
+
msgstr "Hoy"
|
1983 |
|
1984 |
+
#: includes/log/widgets/summary.php:30 includes/log/widgets/summary.php:70
|
1985 |
+
msgid "Yesterday"
|
1986 |
+
msgstr "Ayer"
|
1987 |
|
1988 |
+
#: includes/log/widgets/summary.php:36
|
1989 |
+
msgid "Week"
|
1990 |
+
msgstr "Semana"
|
1991 |
|
1992 |
+
#: includes/log/widgets/summary.php:42
|
1993 |
+
msgid "Month"
|
1994 |
+
msgstr "Mes"
|
1995 |
|
1996 |
+
#: includes/log/widgets/summary.php:48
|
1997 |
+
msgid "Year"
|
1998 |
+
msgstr "Año"
|
1999 |
|
2000 |
+
#: includes/log/search-statistics.php:112 includes/log/widgets/search.php:81
|
2001 |
+
#: includes/log/widgets/summary.php:54 includes/log/widgets/summary.php:94
|
2002 |
+
msgid "Total"
|
2003 |
+
msgstr "Total"
|
2004 |
|
2005 |
+
#: includes/log/widgets/summary.php:102
|
2006 |
+
msgid "(Adjustment)"
|
2007 |
+
msgstr "(Ajuste)"
|
2008 |
|
2009 |
+
#: includes/log/all-browsers.php:24 includes/log/widgets/browsers.php:8
|
2010 |
+
#: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:249
|
2011 |
+
msgid "Browsers"
|
2012 |
+
msgstr "Navegadores"
|
2013 |
|
2014 |
+
#: includes/log/widgets/browsers.php:38
|
2015 |
+
msgid "Other"
|
2016 |
+
msgstr "Otros"
|
2017 |
|
2018 |
+
#: includes/log/widgets/referring.php:20
|
2019 |
+
msgid "Address"
|
2020 |
+
msgstr "Dirección"
|
2021 |
|
2022 |
+
#: includes/log/hit-statistics.php:90 includes/log/widgets/hits.php:60
|
2023 |
+
msgid "Number of visits and visitors"
|
2024 |
+
msgstr "Número de visitas y visitantes"
|
2025 |
|
2026 |
+
#: includes/settings/tabs/wps-overview-display.php:86
|
2027 |
+
msgid "Google"
|
2028 |
+
msgstr "Google"
|
2029 |
|
2030 |
+
#: includes/log/last-visitor.php:27 includes/log/widgets/recent.php:9
|
2031 |
+
#: includes/settings/tabs/wps-overview-display.php:38
|
2032 |
+
msgid "Recent Visitors"
|
2033 |
+
msgstr "Visitantes recientes"
|
2034 |
|
2035 |
+
#: includes/log/top-countries.php:30 includes/log/widgets/countries.php:19
|
2036 |
+
msgid "Country"
|
2037 |
+
msgstr "País"
|
2038 |
+
|
2039 |
+
#: includes/settings/tabs/wps-browscap.php:27
|
2040 |
+
#: includes/settings/tabs/wps-browscap.php:51
|
2041 |
+
#: includes/settings/tabs/wps-general.php:66
|
2042 |
+
#: includes/settings/tabs/wps-general.php:82
|
2043 |
+
#: includes/settings/tabs/wps-general.php:110
|
2044 |
+
#: includes/settings/tabs/wps-general.php:126
|
2045 |
+
#: includes/settings/tabs/wps-general.php:138
|
2046 |
+
#: includes/settings/tabs/wps-general.php:165
|
2047 |
+
#: includes/settings/tabs/wps-general.php:177
|
2048 |
+
#: includes/settings/tabs/wps-general.php:189
|
2049 |
+
#: includes/settings/tabs/wps-general.php:219
|
2050 |
+
#: includes/settings/tabs/wps-general.php:231
|
2051 |
+
#: includes/settings/tabs/wps-general.php:274
|
2052 |
+
#: includes/settings/tabs/wps-general.php:290
|
2053 |
+
#: includes/settings/tabs/wps-geoip.php:37
|
2054 |
+
#: includes/settings/tabs/wps-geoip.php:61
|
2055 |
+
#: includes/settings/tabs/wps-geoip.php:94
|
2056 |
+
#: includes/settings/tabs/wps-maintenance.php:40
|
2057 |
+
#: includes/settings/tabs/wps-overview-display.php:105
|
2058 |
+
#: includes/settings/tabs/wps-overview-display.php:117
|
2059 |
+
msgid "Active"
|
2060 |
+
msgstr "Activo"
|
2061 |
+
|
2062 |
+
#: includes/settings/tabs/wps-general.php:83
|
2063 |
+
#: includes/settings/tabs/wps-general.php:111
|
2064 |
+
#: includes/settings/tabs/wps-general.php:127
|
2065 |
+
#: includes/settings/tabs/wps-general.php:166
|
2066 |
+
#: includes/settings/tabs/wps-general.php:178
|
2067 |
+
#: includes/settings/tabs/wps-general.php:190
|
2068 |
+
#: includes/settings/tabs/wps-general.php:291
|
2069 |
+
msgid "Enable or disable this feature"
|
2070 |
+
msgstr "Habilitar o deshabilitar esta característica"
|
2071 |
|
2072 |
+
#: includes/log/top-pages.php:163 includes/log/widgets/pages.php:30
|
2073 |
+
#: includes/settings/tabs/wps-general.php:100
|
2074 |
+
#: includes/settings/tabs/wps-general.php:105
|
2075 |
+
msgid "Visits"
|
2076 |
+
msgstr "Visitas"
|
2077 |
|
2078 |
+
#: includes/settings/tabs/wps-general.php:116
|
2079 |
+
#: includes/settings/tabs/wps-general.php:121 wp-statistics.php:258
|
2080 |
+
msgid "Visitors"
|
2081 |
+
msgstr "Visitantes"
|
2082 |
|
2083 |
+
#: includes/settings/tabs/wps-general.php:89
|
2084 |
+
msgid "Check for online users every"
|
2085 |
+
msgstr "Buscar usuarios en línea en todos los"
|
2086 |
|
2087 |
+
#: includes/settings/tabs/wps-general.php:95
|
2088 |
+
msgid "Time for the check accurate online user in the site. Now: %s Second"
|
2089 |
+
msgstr ""
|
2090 |
+
"Tiempo para el usuario en línea exacta verificación en el sitio. Ahora: %s "
|
2091 |
+
"segundo"
|
2092 |
|
2093 |
+
#: includes/settings/tabs/wps-general.php:200
|
2094 |
+
msgid "Show stats in menu bar"
|
2095 |
+
msgstr "Mostrar estadísticas en barra de menú"
|
2096 |
|
2097 |
+
#: includes/settings/tabs/wps-general.php:205
|
2098 |
+
msgid "No"
|
2099 |
+
msgstr "No"
|
2100 |
|
2101 |
+
#: includes/settings/tabs/wps-general.php:206
|
2102 |
+
msgid "Yes"
|
2103 |
+
msgstr "Si"
|
2104 |
|
2105 |
+
#: includes/settings/tabs/wps-general.php:208
|
2106 |
+
msgid "Show stats in admin menu bar"
|
2107 |
+
msgstr "Muestra las estadísticas en la barra de menú de administración"
|
2108 |
|
2109 |
+
#: includes/settings/tabs/wps-general.php:145
|
2110 |
+
msgid "Coefficient per visitor"
|
2111 |
+
msgstr "Coeficiente por visitante"
|
2112 |
|
2113 |
+
#: includes/settings/tabs/wps-general.php:150
|
2114 |
+
msgid "For each visit to account for several hits. Currently %s."
|
2115 |
+
msgstr "Por cada visita para tener en cuenta varios golpes. Actualmente %s."
|
2116 |
|
2117 |
+
#: includes/settings/tabs/wps-general.php:322
|
2118 |
+
msgid "Select when receiving statistics report."
|
2119 |
+
msgstr "Seleccione al recibir el informe de estadísticas."
|
2120 |
|
2121 |
+
#: includes/settings/tabs/wps-general.php:334
|
2122 |
+
msgid "Email"
|
2123 |
+
msgstr "Correo electrónico"
|
2124 |
|
2125 |
+
#: includes/settings/tabs/wps-general.php:335
|
2126 |
+
msgid "SMS"
|
2127 |
+
msgstr "SMS"
|
2128 |
|
2129 |
+
#: includes/settings/tabs/wps-general.php:337
|
2130 |
+
msgid "Type Select Get Status Report."
|
2131 |
+
msgstr "Informe de situación de tipo Seleccione Get."
|
2132 |
|
2133 |
+
#: includes/settings/tabs/wps-general.php:363
|
2134 |
+
msgid "Enter the contents of the reports received."
|
2135 |
+
msgstr "Introduzca el contenido de los informes recibidos."
|
2136 |
|
2137 |
+
#: widget.php:240
|
2138 |
+
msgid "Name"
|
2139 |
+
msgstr "Nombre"
|
2140 |
|
2141 |
+
#: widget.php:244
|
2142 |
+
msgid "Items"
|
2143 |
+
msgstr "Elementos"
|
2144 |
|
2145 |
+
#: widget.php:283
|
2146 |
+
msgid "Select type of search engine"
|
2147 |
+
msgstr "Selecciona el tipo de motor de búsqueda"
|
2148 |
|
2149 |
+
#: includes/log/last-visitor.php:29 includes/log/top-referring.php:36
|
2150 |
+
#: includes/optimization/tabs/wps-optimization-purging.php:134 widget.php:296
|
2151 |
+
msgid "All"
|
2152 |
+
msgstr "Todo"
|
languages/wp_statistics-fa_IR.mo
CHANGED
Binary file
|
languages/wp_statistics-fa_IR.po
CHANGED
@@ -1,24 +1,79 @@
|
|
1 |
-
# Translation of
|
2 |
-
# This file is distributed under the same license as the
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version:
|
6 |
-
"POT-Creation-Date: 2014-
|
7 |
-
"PO-Revision-Date: 2014-
|
8 |
-
"Last-Translator:
|
9 |
-
"Language-Team:
|
10 |
"Language: fa_IR\n"
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
15 |
"X-Generator: Poedit 1.6.5\n"
|
|
|
16 |
"X-Poedit-KeywordsList: __;_e\n"
|
17 |
"X-Poedit-Basepath: F:\\Programming\\xampp\\htdocs\\cms\\wordpress\\wp-content"
|
18 |
"\\plugins\\wp-statistics\n"
|
19 |
"X-Poedit-SearchPath-0: F:\\Programming\\xampp\\htdocs\\cms\\wordpress\\wp-"
|
20 |
"content\\plugins\\wp-statistics\n"
|
21 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:26
|
23 |
msgid ""
|
24 |
"Unable to load the GeoIP database, make sure you have downloaded it in the "
|
@@ -48,9 +103,9 @@ msgstr "آمار مرورگرها"
|
|
48 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:19
|
49 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:131
|
50 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:45
|
|
|
51 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:7
|
52 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:9
|
53 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:64
|
54 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:8
|
55 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:7
|
56 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:8
|
@@ -66,7 +121,7 @@ msgstr "برای باز و بستن کلیک کنید"
|
|
66 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:24
|
67 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:8
|
68 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:25
|
69 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
70 |
msgid "Browsers"
|
71 |
msgstr "مرورگرها"
|
72 |
|
@@ -200,18 +255,6 @@ msgstr "آخرین بازدیدها"
|
|
200 |
msgid "Number of visits and visitors"
|
201 |
msgstr "تعداد بازدید و بازدید کننده"
|
202 |
|
203 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:104
|
204 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:74
|
205 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:20
|
206 |
-
msgid "Visit"
|
207 |
-
msgstr "بازدید"
|
208 |
-
|
209 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:104
|
210 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:74
|
211 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:19
|
212 |
-
msgid "Visitor"
|
213 |
-
msgstr "بازدیدکننده"
|
214 |
-
|
215 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:30
|
216 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:16
|
217 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:36
|
@@ -308,13 +351,6 @@ msgstr "آخرین ورودیها از موتورهای جستجوگر"
|
|
308 |
msgid "Number of referrals"
|
309 |
msgstr "تعداد ورودیها"
|
310 |
|
311 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:112
|
312 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:81
|
313 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:54
|
314 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:94
|
315 |
-
msgid "Total"
|
316 |
-
msgstr "کل"
|
317 |
-
|
318 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:19
|
319 |
msgid "Top Countries"
|
320 |
msgstr "برترین کشورها"
|
@@ -384,6 +420,32 @@ msgstr "سایت های ارجاع دهنده از"
|
|
384 |
msgid "References"
|
385 |
msgstr "ارجاع"
|
386 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
387 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:8
|
388 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:11
|
389 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:8
|
@@ -408,32 +470,6 @@ msgstr "10 مرورگر برتر"
|
|
408 |
msgid "Top 10 Countries"
|
409 |
msgstr "10 کشور برتر"
|
410 |
|
411 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:65
|
412 |
-
#, php-format
|
413 |
-
msgid "About WP Statistics V%s"
|
414 |
-
msgstr "درباره آماره وردپرس نگارش %s"
|
415 |
-
|
416 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:72
|
417 |
-
msgid "Website"
|
418 |
-
msgstr "وبسایت"
|
419 |
-
|
420 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:73
|
421 |
-
msgid "Rate and Review"
|
422 |
-
msgstr "رتبه بندی و بازبینی"
|
423 |
-
|
424 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:77
|
425 |
-
msgid "More Information"
|
426 |
-
msgstr "اطلاعات بیشتر"
|
427 |
-
|
428 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:86
|
429 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:8
|
430 |
-
#, php-format
|
431 |
-
msgid ""
|
432 |
-
"This product includes GeoLite2 data created by MaxMind, available from %s."
|
433 |
-
msgstr ""
|
434 |
-
"این محصول شامل دادههای GeoLite2 میباشد که توسط MaxMind، ایجاد شده و در %s "
|
435 |
-
"قابل دسترس میباشد."
|
436 |
-
|
437 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:9
|
438 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:9
|
439 |
msgid "Today Visitors Map"
|
@@ -456,32 +492,6 @@ msgstr "ورودی موتورهای جستجوگر"
|
|
456 |
msgid "Summary"
|
457 |
msgstr "خلاصه"
|
458 |
|
459 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:13
|
460 |
-
msgid "User(s) Online"
|
461 |
-
msgstr "کاربر(های) حاضر"
|
462 |
-
|
463 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:24
|
464 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:69
|
465 |
-
msgid "Today"
|
466 |
-
msgstr "امروز"
|
467 |
-
|
468 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:30
|
469 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:70
|
470 |
-
msgid "Yesterday"
|
471 |
-
msgstr "دیروز"
|
472 |
-
|
473 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:36
|
474 |
-
msgid "Week"
|
475 |
-
msgstr "هفته"
|
476 |
-
|
477 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:42
|
478 |
-
msgid "Month"
|
479 |
-
msgstr "ماه"
|
480 |
-
|
481 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:48
|
482 |
-
msgid "Year"
|
483 |
-
msgstr "سال"
|
484 |
-
|
485 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:88
|
486 |
msgid "Daily Total"
|
487 |
msgstr "کل روزانهها"
|
@@ -496,13 +506,13 @@ msgstr "(تنظیم)"
|
|
496 |
|
497 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:106
|
498 |
#, php-format
|
499 |
-
msgid "Date:
|
500 |
-
msgstr "تاریخ:
|
501 |
|
502 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:110
|
503 |
#, php-format
|
504 |
-
msgid "Time:
|
505 |
-
msgstr "
|
506 |
|
507 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:5
|
508 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:5
|
@@ -516,11 +526,15 @@ msgstr "دسترسی غیرمجاز!"
|
|
516 |
|
517 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:14
|
518 |
#, php-format
|
519 |
-
msgid "
|
520 |
-
msgstr "
|
|
|
|
|
|
|
|
|
521 |
|
522 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:
|
523 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:
|
524 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:42
|
525 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:57
|
526 |
msgid "Please select the desired items."
|
@@ -528,13 +542,17 @@ msgstr "لطفا موارد مورد نظر را انتخاب کنید."
|
|
528 |
|
529 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:14
|
530 |
#, php-format
|
531 |
-
msgid "
|
532 |
-
msgstr "
|
|
|
|
|
|
|
|
|
533 |
|
534 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:53
|
535 |
#, php-format
|
536 |
-
msgid "
|
537 |
-
msgstr "
|
538 |
|
539 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:57
|
540 |
#, php-format
|
@@ -546,41 +564,59 @@ msgstr "خطا! %s خالی نیست!"
|
|
546 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:37
|
547 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:47
|
548 |
#, php-format
|
549 |
-
msgid ""
|
550 |
-
"
|
551 |
-
msgstr ""
|
552 |
-
"دادههای جدول <code>%s</code> قدیمیتر از <code>%s</code> روز با موفقیت "
|
553 |
-
"پاکسازی شد."
|
554 |
|
555 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:19
|
556 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:29
|
557 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:39
|
558 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:49
|
559 |
#, php-format
|
560 |
-
msgid "No records found to purge from
|
561 |
-
msgstr "
|
562 |
|
563 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:55
|
564 |
msgid "Please select a value over 30 days."
|
565 |
msgstr "لطفاً مقدار بیشتر از 30 روز انتخاب کنید."
|
566 |
|
567 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:5
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
568 |
msgid "Database Index"
|
569 |
msgstr "شاخص پایگاهداده"
|
570 |
|
571 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:
|
572 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:
|
573 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
574 |
msgid "Countries"
|
575 |
msgstr "کشورها"
|
576 |
|
577 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:
|
578 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:
|
579 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:
|
580 |
msgid "Update Now!"
|
581 |
msgstr "بهروز رسانی کن!"
|
582 |
|
583 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:
|
584 |
msgid ""
|
585 |
"Older installs of WP Statistics allow for duplicate entries in the visitors "
|
586 |
"table in a corner case. Newer installs protect against this with a unique "
|
@@ -594,14 +630,14 @@ msgstr ""
|
|
594 |
"باید دادههای تکراری را پاک کنید. با کلیک برروی \"به روز رسانی\" ابتدا جدول "
|
595 |
"بازدیدکنندهگان را بررسی و سپس دادههای تکراری را حذف و فهرست را اضافه میکند."
|
596 |
|
597 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:
|
598 |
msgid ""
|
599 |
"This operation could take a long time on installs with many rows in the "
|
600 |
"visitors table."
|
601 |
msgstr ""
|
602 |
"این عملیات زمان زیادی برای نصب تعدادی ردیفها در جدل بازدیدکنندگان صرف می کند."
|
603 |
|
604 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:
|
605 |
msgid ""
|
606 |
"Older installs of WP Statistics allow for duplicate entries in the visitors "
|
607 |
"table in a corner case. Newer installs protect against this with a unique "
|
@@ -611,13 +647,13 @@ msgstr ""
|
|
611 |
"بازدیدکنندهگان ایجاد میشدند. نصبهای جدیدتر در رابطه با این مورد توسط یک "
|
612 |
"فهرست شاخص محافظت شدهاند."
|
613 |
|
614 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:
|
615 |
msgid ""
|
616 |
"Congratulations, your installation is already up to date, nothing to do."
|
617 |
msgstr "تبریک میگویم، در حال حاضر نصب شما بهروز است و مشکلی ندارد."
|
618 |
|
619 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:7
|
620 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:
|
621 |
msgid "Export"
|
622 |
msgstr "برونبری"
|
623 |
|
@@ -722,140 +758,186 @@ msgstr "حذف سَکوها"
|
|
722 |
msgid "All visitor data will be lost for this platform type."
|
723 |
msgstr "تمامی دادههای سَکوی بازدیدکننده از بین خواهد رفت."
|
724 |
|
725 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:
|
726 |
msgid "Resources"
|
727 |
msgstr "منابع"
|
728 |
|
729 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:
|
730 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:
|
731 |
msgid "Memory usage in PHP"
|
732 |
msgstr "حافظه استفاده شده در پیاچپی"
|
733 |
|
734 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:
|
735 |
msgid "Byte"
|
736 |
msgstr "بایت"
|
737 |
|
738 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:
|
739 |
msgid "PHP Memory Limit"
|
740 |
msgstr "PHP Memory Limit"
|
741 |
|
742 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:
|
743 |
msgid "The memory limit a script is allowed to consume, set in php.ini."
|
744 |
msgstr "تنظیم محدودیت حافظه برای اسکریپت در php.ini قرار دارد."
|
745 |
|
746 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:
|
747 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:
|
748 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:
|
749 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:
|
750 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:
|
751 |
#, php-format
|
752 |
-
msgid "Number of rows in the
|
753 |
-
msgstr "تعداد
|
754 |
-
|
755 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:36
|
756 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:47
|
757 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:58
|
758 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:69
|
759 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:80
|
760 |
-
msgid "Row"
|
761 |
-
msgstr "ردیف"
|
762 |
|
763 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:37
|
764 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:48
|
765 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:59
|
766 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:70
|
767 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:81
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
768 |
msgid "Number of rows"
|
769 |
msgstr "تعداد ردیفهای موجود"
|
770 |
|
771 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:
|
772 |
msgid "Version Info"
|
773 |
msgstr "اطلاعات نگارش"
|
774 |
|
775 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:
|
776 |
msgid "WP Statistics Version"
|
777 |
msgstr "نگارش افزونه آماره"
|
778 |
|
779 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:
|
780 |
msgid "The WP Statistics version you are running."
|
781 |
msgstr "نگارش افزونه آماره در حال اجرای شما."
|
782 |
|
783 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:
|
784 |
msgid "PHP Version"
|
785 |
msgstr "نگارش PHP"
|
786 |
|
787 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:
|
788 |
msgid "The PHP version you are running."
|
789 |
msgstr "نگارش PHP در حال اجرای شما."
|
790 |
|
791 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:
|
792 |
msgid "PHP Safe Mode"
|
793 |
msgstr "حالت ایمن PHP"
|
794 |
|
795 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:
|
796 |
msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
|
797 |
msgstr "حالت ایمنی PHP فعال است. کدهای GeoIP در حالت امن پشتیبانی نمیشوند."
|
798 |
|
799 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:
|
800 |
msgid "jQuery Version"
|
801 |
msgstr "نگارش جیکوئری"
|
802 |
|
803 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:
|
804 |
msgid "The jQuery version you are running."
|
805 |
msgstr "نگارش جیکوئری در حال اجرای شما."
|
806 |
|
807 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:
|
808 |
msgid "cURL Version"
|
809 |
msgstr "نسخه cURL"
|
810 |
|
811 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:
|
812 |
msgid "cURL not installed"
|
813 |
msgstr "cURL نصب نیست"
|
814 |
|
815 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:
|
816 |
msgid ""
|
817 |
"The PHP cURL Extension version you are running. cURL is required for the "
|
818 |
"GeoIP code, if it is not installed GeoIP will be disabled."
|
819 |
msgstr ""
|
820 |
"ماژول cURL در PHP شما در حال اجراست. اگر نصب نیست GeoIP غیرفعال خواهد شد."
|
821 |
|
822 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:
|
823 |
msgid "BC Math"
|
824 |
msgstr "BC Math"
|
825 |
|
826 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:
|
827 |
msgid "Installed"
|
828 |
msgstr "نصب شده"
|
829 |
|
830 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:
|
831 |
msgid "Not installed"
|
832 |
msgstr "نصب نشده"
|
833 |
|
834 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:
|
835 |
msgid ""
|
836 |
-
"If the PHP BC Math Extension is installed. BC Math is
|
837 |
-
"GeoIP code
|
838 |
msgstr ""
|
839 |
-
"اگر
|
840 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
841 |
|
842 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:
|
843 |
msgid "Client Info"
|
844 |
msgstr "اطلاعات کاربر"
|
845 |
|
846 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:
|
847 |
msgid "Client IP"
|
848 |
msgstr "آیپی کاربر"
|
849 |
|
850 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:
|
851 |
msgid "The client IP address."
|
852 |
msgstr "آدرس آیپی کاربر."
|
853 |
|
854 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:
|
855 |
msgid "User Agent"
|
856 |
msgstr "عامل کاربر"
|
857 |
|
858 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:
|
859 |
msgid "The client user agent string."
|
860 |
msgstr "رشتهی عامل کاربری"
|
861 |
|
@@ -868,50 +950,26 @@ msgstr ""
|
|
868 |
"آیا مطمئن هستید؟"
|
869 |
|
870 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:16
|
871 |
-
msgid "GeoIP File Info"
|
872 |
-
msgstr "اطلاعات فایل GeoIP"
|
873 |
-
|
874 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
875 |
-
msgid "File Date"
|
876 |
-
msgstr "تاریخ فایل"
|
877 |
-
|
878 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:30
|
879 |
-
msgid "Database file does not exist."
|
880 |
-
msgstr "فایل پایگاهداده وجود ندارد."
|
881 |
-
|
882 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:34
|
883 |
-
msgid "The file date of the GeoIP database."
|
884 |
-
msgstr "تاریخ فایل پایگاهداده GeoIP"
|
885 |
-
|
886 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:40
|
887 |
-
msgid "File Size"
|
888 |
-
msgstr "حجم فایل"
|
889 |
-
|
890 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:57
|
891 |
-
msgid "The file size of the GeoIP database."
|
892 |
-
msgstr "حجم فایل پایگاهداده GeoIP "
|
893 |
-
|
894 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:62
|
895 |
msgid "GeoIP Options"
|
896 |
msgstr "تنظیمات GeoIP"
|
897 |
|
898 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:
|
899 |
msgid ""
|
900 |
"Updates any unknown location data in the database, this may take a while"
|
901 |
msgstr ""
|
902 |
"دریافت بهروز رسانی برای موقعیت وکشورها، ممکن است انجام این عمل کمی طول بکشد."
|
903 |
|
904 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:
|
905 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:56
|
906 |
msgid "IP Addresses"
|
907 |
msgstr "آدرس آیپی"
|
908 |
|
909 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:
|
910 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:61
|
911 |
msgid "Hash IP Addresses"
|
912 |
msgstr "هشکردن آدرس آیپی"
|
913 |
|
914 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:
|
915 |
msgid ""
|
916 |
"Replace IP addresses in the database with hash values, you will not be able "
|
917 |
"to recover the IP addresses in the future to populate location information "
|
@@ -924,78 +982,91 @@ msgstr ""
|
|
924 |
msgid "IP Addresses replaced with hash values."
|
925 |
msgstr "آدرس آیپی با مقادیر خش جایگزینه میشود."
|
926 |
|
927 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:
|
|
|
|
|
|
|
|
|
928 |
msgid "Resources/Information"
|
929 |
msgstr "منابع/اطلاعات"
|
930 |
|
931 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:
|
932 |
msgid "Purging"
|
933 |
msgstr "پاکسازی"
|
934 |
|
935 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:
|
936 |
msgid "Database"
|
937 |
msgstr "پایگاهداده"
|
938 |
|
939 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:
|
940 |
msgid "Updates"
|
941 |
msgstr "بهروز رسانیها"
|
942 |
|
943 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:
|
944 |
#, php-format
|
945 |
msgid "WP Statistics V%s"
|
946 |
msgstr "آماره وردپرس نگارش %s"
|
947 |
|
948 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:
|
949 |
msgid "Visit Us Online"
|
950 |
msgstr "مشاهده ما"
|
951 |
|
952 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:
|
|
|
953 |
msgid ""
|
954 |
-
"Come visit our great new
|
955 |
-
"
|
956 |
msgstr ""
|
957 |
-
"
|
958 |
-
"
|
959 |
|
960 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:24
|
|
|
|
|
|
|
|
|
961 |
msgid "Rate and Review at WordPress.org"
|
962 |
msgstr "امتیاز و بررسی در Wordpress.org"
|
963 |
|
964 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:
|
965 |
msgid "Thanks for installing WP Statistics, we encourage you to submit a "
|
966 |
msgstr "با تشکر از شما بابت نصب افزونه آماره وردپرس، توصیه میکنیم به"
|
967 |
|
968 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:
|
969 |
msgid "rating and review"
|
970 |
msgstr "رتبه بندی و بازبینی"
|
971 |
|
972 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:
|
973 |
msgid "over at WordPress.org. Your feedback is greatly appreciated!"
|
974 |
msgstr "سر بزنید. نقطه نظرات شما قابل قدردانیست!"
|
975 |
|
976 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:
|
977 |
msgid "Translations"
|
978 |
msgstr "ترجمهها"
|
979 |
|
980 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:
|
|
|
981 |
msgid ""
|
982 |
"WP Statistics supports internationalization and we encourage our users to "
|
983 |
-
"submit translations, please visit our
|
984 |
-
"
|
985 |
-
"a> to see the current status and <a href=\"http://wp-statistics.com/contact/"
|
986 |
-
"\" target=\"_blank\">drop us a line</a> if you would like to help."
|
987 |
msgstr ""
|
988 |
-
"
|
989 |
-
"
|
990 |
-
"statistics\" target=\"_blank\">بخش ترجمه</a> ما سربزنید و در این بخش همکاری "
|
991 |
-
"کنید. اگر شما میخواهید کمک کنید، از <a href=\"http://wp-statistics.com/"
|
992 |
-
"contact/\" target=\"_blank\">این بخش</a> نیز میتوانید اقدام کنید."
|
993 |
|
994 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:40
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
995 |
msgid "Support"
|
996 |
msgstr "پشتیبانی"
|
997 |
|
998 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:
|
999 |
msgid ""
|
1000 |
"We're sorry you're having problem with WP Statistics and we're happy to help "
|
1001 |
"out. Here are a few things to do before contacting us:"
|
@@ -1003,58 +1074,58 @@ msgstr ""
|
|
1003 |
"اگر با آماره وردپرس مشکل دارید، ما متأسفیم و خوشحال میشویم شما را کمک کنیم. "
|
1004 |
"میتوانید از بخشهای زیر اقدام کنید:"
|
1005 |
|
1006 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:
|
1007 |
-
|
1008 |
-
|
1009 |
-
"
|
1010 |
-
msgstr ""
|
1011 |
-
"بخش <a title=\"FAQs\" href=\"http://wp-statistics.com/?page_id=19\" "
|
1012 |
-
"target=_blank>سوال و جوابها</a> را خواندهاید؟"
|
1013 |
|
1014 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:
|
1015 |
-
msgid ""
|
1016 |
-
|
1017 |
-
"a>?"
|
1018 |
-
msgstr ""
|
1019 |
-
"<a title=\"Manual\" href=\"?page=wps_manual_menu\">راهنما</a> را خواندهاید؟"
|
1020 |
|
1021 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:
|
1022 |
-
msgid ""
|
1023 |
-
"
|
1024 |
-
"statistics\" target=\"_blank\">support forum</a> for a similar issue?"
|
1025 |
-
msgstr ""
|
1026 |
-
"در <a href=\"http://wordpress.org/support/plugin/wp-statistics\" target="
|
1027 |
-
"\"_blank\">انجمن پشتیبانی</a> جستجو کردهید؟"
|
1028 |
|
1029 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1030 |
msgid "Have you search the Internet for any error messages you are receiving?"
|
1031 |
msgstr "آیا برای هر خطا در اینترنت جستجو کردهاید؟"
|
1032 |
|
1033 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:
|
1034 |
msgid "And a few things to double-check:"
|
1035 |
msgstr "و به چند نکته دقت کنید:"
|
1036 |
|
1037 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:
|
1038 |
msgid "How's your memory_limit in php.ini?"
|
1039 |
msgstr "مقدار memory_limit در php.ini را بررسی کردهاید؟"
|
1040 |
|
1041 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:
|
1042 |
msgid "Have you tried disabling any other plugins you may have installed?"
|
1043 |
msgstr "سعی کردید افزونههای نصب شده دیگر را غیرفعال کنید؟"
|
1044 |
|
1045 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:
|
1046 |
msgid "Have you tried using the default WordPress theme?"
|
1047 |
msgstr "سعی کردید پوسته پیشفرض وردپرس را استفاده کنید؟"
|
1048 |
|
1049 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:
|
1050 |
msgid "Have you double checked the plugin settings?"
|
1051 |
msgstr "آیا تنظیمات افزونه را مجدد بررسی کردهاید؟"
|
1052 |
|
1053 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:
|
1054 |
msgid "Do you have all the required PHP extensions installed?"
|
1055 |
msgstr "آیا الزامات مربوط به اکستنشنهای PHP را نصب کردهاید؟"
|
1056 |
|
1057 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:
|
1058 |
msgid ""
|
1059 |
"Are you getting a blank or incomplete page displayed in your browser? Did "
|
1060 |
"you view the source for the page and check for any fatal errors?"
|
@@ -1062,33 +1133,33 @@ msgstr ""
|
|
1062 |
"آیا یک صفحه خالی یا یک صفحه ناقص در مروگر شما مشاهده میشود؟ آیا سورس صفحه را "
|
1063 |
"مشاهده و خطای رخ داده را بررسی کردهاید؟"
|
1064 |
|
1065 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:
|
1066 |
msgid "Have you checked your PHP and web server error logs?"
|
1067 |
msgstr "آقا PHP و گزارش خطاهای سرور وب خود را بررسی کردهاید؟"
|
1068 |
|
1069 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:
|
1070 |
msgid "Still not having any luck?"
|
1071 |
msgstr "با این حال، شانشی برایتان نیست؟"
|
1072 |
|
1073 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:
|
|
|
1074 |
msgid ""
|
1075 |
-
"Then please open a new thread on the
|
1076 |
-
"
|
1077 |
-
"
|
1078 |
-
msgstr ""
|
1079 |
-
"پس در <a href=\"http://wordpress.org/support/plugin/wp-statistics\" target="
|
1080 |
-
"\"_blank\">انجمن پشتیبانی وردپرس</a> تایپیک جدید ایجاد کنید و مشکل خود را "
|
1081 |
-
"مطرح کنید تا در اسرع وقت، به سوال شما پاسخ داده شود."
|
1082 |
|
1083 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:70
|
1084 |
-
msgid ""
|
1085 |
-
"
|
1086 |
-
|
1087 |
-
|
1088 |
-
|
1089 |
-
"
|
1090 |
-
"%
|
1091 |
-
|
|
|
|
|
|
|
1092 |
|
1093 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:33
|
1094 |
msgid "Access Levels"
|
@@ -1104,10 +1175,12 @@ msgstr "سطح کاربری مورد نیاز برای مدیریت آمارگی
|
|
1104 |
|
1105 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:85
|
1106 |
#, php-format
|
1107 |
-
msgid ""
|
1108 |
-
"
|
1109 |
-
|
1110 |
-
|
|
|
|
|
1111 |
|
1112 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:86
|
1113 |
msgid ""
|
@@ -1137,7 +1210,7 @@ msgstr ""
|
|
1137 |
"به افزونه %s بیندازید."
|
1138 |
|
1139 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:93
|
1140 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1141 |
msgid "Exclusions"
|
1142 |
msgstr "استثنائات"
|
1143 |
|
@@ -1256,10 +1329,16 @@ msgstr "استثنائات برگههای مدیریت"
|
|
1256 |
msgid "Exclude the admin pages for registering as a hit."
|
1257 |
msgstr "نادیده گرفتن برگههای مدیریت برای نامنویسی بهعنوان محاسبه در آمار"
|
1258 |
|
1259 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-
|
1260 |
-
msgid "
|
1261 |
-
msgstr "
|
1262 |
|
|
|
|
|
|
|
|
|
|
|
|
|
1263 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:66
|
1264 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:82
|
1265 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:110
|
@@ -1281,15 +1360,52 @@ msgstr "پس از ذخیرهی صفحه، فایل راهنما حذف خوا
|
|
1281 |
msgid "Active"
|
1282 |
msgstr "فعال"
|
1283 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1284 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:67
|
1285 |
msgid ""
|
1286 |
-
"
|
1287 |
-
"
|
1288 |
"disabled if this is selected. You will not be able to recover the IP "
|
1289 |
"addresses in the future to recover location information if this is enabled."
|
1290 |
msgstr ""
|
1291 |
-
"
|
1292 |
-
"
|
|
|
|
|
1293 |
|
1294 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:72
|
1295 |
msgid "Users Online"
|
@@ -1324,7 +1440,7 @@ msgstr "زمان برای بررسی دقیق کاربران حاضر در سا
|
|
1324 |
|
1325 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:116
|
1326 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:121
|
1327 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1328 |
msgid "Visitors"
|
1329 |
msgstr "بازدیدکنندهگان"
|
1330 |
|
@@ -1347,7 +1463,7 @@ msgstr "ضریب محاسبه هر بازدید کننده را در آمار م
|
|
1347 |
|
1348 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:155
|
1349 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:160
|
1350 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1351 |
msgid "Pages"
|
1352 |
msgstr "برگهها"
|
1353 |
|
@@ -1442,7 +1558,7 @@ msgstr "اضافه شدن جمع کل به نمودار آمار ورودی از
|
|
1442 |
|
1443 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:280
|
1444 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:285
|
1445 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:
|
1446 |
msgid "Statistical reporting"
|
1447 |
msgstr "گزارش آماری"
|
1448 |
|
@@ -1472,12 +1588,12 @@ msgstr "نوع دریافت گزارش آماری را انتخاب کنید."
|
|
1472 |
|
1473 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:340
|
1474 |
#, php-format
|
1475 |
-
msgid ""
|
1476 |
-
"
|
1477 |
-
|
1478 |
-
|
1479 |
-
|
1480 |
-
"
|
1481 |
|
1482 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:347
|
1483 |
msgid "E-mail addresses"
|
@@ -1519,7 +1635,7 @@ msgstr ""
|
|
1519 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:369
|
1520 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:38
|
1521 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:247
|
1522 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1523 |
msgid "User Online"
|
1524 |
msgstr "کاربران حاضر"
|
1525 |
|
@@ -1591,18 +1707,10 @@ msgstr "به روز رسانی اطلاعات GeoIP"
|
|
1591 |
msgid "Download GeoIP Database"
|
1592 |
msgstr "دریافت پایگاهداده GeoIP"
|
1593 |
|
1594 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:50
|
1595 |
-
msgid "Save changes on this page to download the update."
|
1596 |
-
msgstr "ذخیرهی تغییرات در این برگه و دریافت بهروز رسانی"
|
1597 |
-
|
1598 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:56
|
1599 |
msgid "Schedule monthly update of GeoIP DB"
|
1600 |
msgstr "برنامهریزی بهروزرسانی ماهیانه پایگاهدادهی GeoIP"
|
1601 |
|
1602 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:64
|
1603 |
-
msgid "Next update will be"
|
1604 |
-
msgstr "بهروز رسانی بعدی خواهد بود"
|
1605 |
-
|
1606 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:82
|
1607 |
msgid ""
|
1608 |
"Download of the GeoIP database will be scheduled for 2 days after the first "
|
@@ -1713,7 +1821,7 @@ msgid "Summary Statistics"
|
|
1713 |
msgstr "خلاصه آمار"
|
1714 |
|
1715 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:28
|
1716 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1717 |
msgid "About"
|
1718 |
msgstr "درباره"
|
1719 |
|
@@ -1834,28 +1942,32 @@ msgstr "سطر 6"
|
|
1834 |
msgid "N/A"
|
1835 |
msgstr "خالی"
|
1836 |
|
1837 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1838 |
msgid "General"
|
1839 |
msgstr "عمومی"
|
1840 |
|
1841 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1842 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1843 |
msgid "Overview"
|
1844 |
msgstr "مرور کلی"
|
1845 |
|
1846 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1847 |
msgid "Access/Exclusions"
|
1848 |
msgstr "دسترسی/محرومیتها"
|
1849 |
|
1850 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1851 |
msgid "GeoIP"
|
1852 |
msgstr "GeoIP"
|
1853 |
|
1854 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
|
|
|
|
|
|
|
|
1855 |
msgid "Maintenance"
|
1856 |
msgstr "تعمیر و نگهداری"
|
1857 |
|
1858 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1859 |
msgid "Update"
|
1860 |
msgstr "بهروز رسانی"
|
1861 |
|
@@ -1882,7 +1994,7 @@ msgid "Once Every 4 Weeks"
|
|
1882 |
msgstr "هر 4 هفته"
|
1883 |
|
1884 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:14
|
1885 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1886 |
msgid "Statistics"
|
1887 |
msgstr "آماره"
|
1888 |
|
@@ -1968,7 +2080,7 @@ msgid "Items"
|
|
1968 |
msgstr "آیتمها"
|
1969 |
|
1970 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:256
|
1971 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1972 |
msgid "Yesterday visit"
|
1973 |
msgstr "بازدید دیروز"
|
1974 |
|
@@ -1981,326 +2093,185 @@ msgid "Select type of search engine"
|
|
1981 |
msgstr "انتخاب نوع موتورجستجو"
|
1982 |
|
1983 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1984 |
msgid "WP Statistics"
|
1985 |
msgstr "آماره وردپرس"
|
1986 |
|
1987 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1988 |
msgid "Complete statistics for your WordPress site."
|
1989 |
msgstr "آماری کامل برای سایت وردپرسی شما."
|
1990 |
|
1991 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
1992 |
#, php-format
|
1993 |
msgid ""
|
1994 |
-
"Online user tracking in WP Statistics is not enabled, please go to
|
1995 |
-
"
|
1996 |
msgstr ""
|
1997 |
-
"
|
1998 |
-
"\">صفحه تنظیمات</a> آن را فعال کنید."
|
1999 |
|
2000 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
2001 |
#, php-format
|
2002 |
msgid ""
|
2003 |
-
"Hit tracking in WP Statistics is not enabled, please go to
|
2004 |
-
"
|
2005 |
-
msgstr ""
|
2006 |
-
"محاسبه بازدید در افزونه آمار فعال نیست، لطفاً از <a href=\"%s\">صفحه تنظیمات</"
|
2007 |
-
"a> آن را فعال کنید."
|
2008 |
|
2009 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
2010 |
#, php-format
|
2011 |
msgid ""
|
2012 |
-
"Visitor tracking in WP Statistics is not enabled, please go to
|
2013 |
-
"
|
2014 |
msgstr ""
|
2015 |
-
"
|
2016 |
-
"\">صفحه تنظیمات</a> آن را فعال کنید."
|
2017 |
|
2018 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
2019 |
#, php-format
|
2020 |
msgid ""
|
2021 |
-
"GeoIP collection is not active, please go to
|
2022 |
-
"GeoIP
|
2023 |
-
msgstr ""
|
2024 |
-
"مجموعهی GeoIP فعال نیست، لطفا به <a href=\"%s\">صفحه تنظیمات » GeoIP</a> "
|
2025 |
-
"مراجعه کنید و این ویژگی را فعال کنید. (این ویژگی میتواند کشور بازدیدکنندگان "
|
2026 |
-
"را شناسایی کند.)"
|
2027 |
|
2028 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.p
|
1 |
+
# Translation of Wordpress Statistics in Persian
|
2 |
+
# This file is distributed under the same license as the Wordpress Statistics package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Wordpress Statistics\n"
|
6 |
+
"POT-Creation-Date: 2014-10-15 01:54+0330\n"
|
7 |
+
"PO-Revision-Date: 2014-10-15 02:00+0330\n"
|
8 |
+
"Last-Translator: \n"
|
9 |
+
"Language-Team: Parsi Wordpress Team <mst404@gmail.com>\n"
|
10 |
"Language: fa_IR\n"
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
15 |
"X-Generator: Poedit 1.6.5\n"
|
16 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
"X-Poedit-KeywordsList: __;_e\n"
|
18 |
"X-Poedit-Basepath: F:\\Programming\\xampp\\htdocs\\cms\\wordpress\\wp-content"
|
19 |
"\\plugins\\wp-statistics\n"
|
20 |
"X-Poedit-SearchPath-0: F:\\Programming\\xampp\\htdocs\\cms\\wordpress\\wp-"
|
21 |
"content\\plugins\\wp-statistics\n"
|
22 |
|
23 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:20
|
24 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:13
|
25 |
+
msgid "User(s) Online"
|
26 |
+
msgstr "کاربر(های) حاضر"
|
27 |
+
|
28 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:26
|
29 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:104
|
30 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:74
|
31 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:19
|
32 |
+
msgid "Visitor"
|
33 |
+
msgstr "بازدیدکننده"
|
34 |
+
|
35 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:27
|
36 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:104
|
37 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:74
|
38 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:20
|
39 |
+
msgid "Visit"
|
40 |
+
msgstr "بازدید"
|
41 |
+
|
42 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:31
|
43 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:24
|
44 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:69
|
45 |
+
msgid "Today"
|
46 |
+
msgstr "امروز"
|
47 |
+
|
48 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:37
|
49 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:30
|
50 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:70
|
51 |
+
msgid "Yesterday"
|
52 |
+
msgstr "دیروز"
|
53 |
+
|
54 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:43
|
55 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:36
|
56 |
+
msgid "Week"
|
57 |
+
msgstr "هفته"
|
58 |
+
|
59 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:49
|
60 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:42
|
61 |
+
msgid "Month"
|
62 |
+
msgstr "ماه"
|
63 |
+
|
64 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:55
|
65 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:48
|
66 |
+
msgid "Year"
|
67 |
+
msgstr "سال"
|
68 |
+
|
69 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:61
|
70 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:112
|
71 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:81
|
72 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:54
|
73 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:94
|
74 |
+
msgid "Total"
|
75 |
+
msgstr "کل"
|
76 |
+
|
77 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:26
|
78 |
msgid ""
|
79 |
"Unable to load the GeoIP database, make sure you have downloaded it in the "
|
103 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:19
|
104 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:131
|
105 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:45
|
106 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:7
|
107 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:7
|
108 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:9
|
|
|
109 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:8
|
110 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:7
|
111 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:8
|
121 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:24
|
122 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:8
|
123 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:25
|
124 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:250
|
125 |
msgid "Browsers"
|
126 |
msgstr "مرورگرها"
|
127 |
|
255 |
msgid "Number of visits and visitors"
|
256 |
msgstr "تعداد بازدید و بازدید کننده"
|
257 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
258 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:30
|
259 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:16
|
260 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:36
|
351 |
msgid "Number of referrals"
|
352 |
msgstr "تعداد ورودیها"
|
353 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
354 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:19
|
355 |
msgid "Top Countries"
|
356 |
msgstr "برترین کشورها"
|
420 |
msgid "References"
|
421 |
msgstr "ارجاع"
|
422 |
|
423 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:8
|
424 |
+
#, php-format
|
425 |
+
msgid "About WP Statistics Version %s"
|
426 |
+
msgstr "درباره آمار وپ نسخه %s"
|
427 |
+
|
428 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:15
|
429 |
+
msgid "Website"
|
430 |
+
msgstr "وبسایت"
|
431 |
+
|
432 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:16
|
433 |
+
msgid "Rate and Review"
|
434 |
+
msgstr "رتبه بندی و بازبینی"
|
435 |
+
|
436 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:20
|
437 |
+
msgid "More Information"
|
438 |
+
msgstr "اطلاعات بیشتر"
|
439 |
+
|
440 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:29
|
441 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:12
|
442 |
+
#, php-format
|
443 |
+
msgid ""
|
444 |
+
"This product includes GeoLite2 data created by MaxMind, available from %s."
|
445 |
+
msgstr ""
|
446 |
+
"این محصول شامل دادههای GeoLite2 میباشد که توسط MaxMind، ایجاد شده و در %s "
|
447 |
+
"قابل دسترس میباشد."
|
448 |
+
|
449 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:8
|
450 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:11
|
451 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:8
|
470 |
msgid "Top 10 Countries"
|
471 |
msgstr "10 کشور برتر"
|
472 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
473 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:9
|
474 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:9
|
475 |
msgid "Today Visitors Map"
|
492 |
msgid "Summary"
|
493 |
msgstr "خلاصه"
|
494 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
495 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:88
|
496 |
msgid "Daily Total"
|
497 |
msgstr "کل روزانهها"
|
506 |
|
507 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:106
|
508 |
#, php-format
|
509 |
+
msgid "Date: %s"
|
510 |
+
msgstr "تاریخ: %s"
|
511 |
|
512 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:110
|
513 |
#, php-format
|
514 |
+
msgid "Time: %s"
|
515 |
+
msgstr "زمان: %s"
|
516 |
|
517 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:5
|
518 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:5
|
526 |
|
527 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:14
|
528 |
#, php-format
|
529 |
+
msgid "%s agent data deleted successfully."
|
530 |
+
msgstr "%s عامل داده ها با موفقیت حذف."
|
531 |
+
|
532 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:17
|
533 |
+
msgid "No agent data found to remove!"
|
534 |
+
msgstr "دادههای مرورگر برای حذف شدن یافت نشد!"
|
535 |
|
536 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:21
|
537 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:21
|
538 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:42
|
539 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:57
|
540 |
msgid "Please select the desired items."
|
542 |
|
543 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:14
|
544 |
#, php-format
|
545 |
+
msgid "%s platform data deleted successfully."
|
546 |
+
msgstr "اطلاعات پلت فرم %s با موفقیت حذف."
|
547 |
+
|
548 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:17
|
549 |
+
msgid "No platform data found to remove!"
|
550 |
+
msgstr "سکویهای مرورگر برای حذف شدن یافت نشد!"
|
551 |
|
552 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:53
|
553 |
#, php-format
|
554 |
+
msgid "%s table data deleted successfully."
|
555 |
+
msgstr "اطلاعات جدول %s با موفقیت حذف."
|
556 |
|
557 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:57
|
558 |
#, php-format
|
564 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:37
|
565 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:47
|
566 |
#, php-format
|
567 |
+
msgid "%s data older than %s days purged successfully."
|
568 |
+
msgstr "%s داده های قدیمی تر از روز %s با موفقیت پاکسازی است."
|
|
|
|
|
|
|
569 |
|
570 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:19
|
571 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:29
|
572 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:39
|
573 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:49
|
574 |
#, php-format
|
575 |
+
msgid "No records found to purge from %s!"
|
576 |
+
msgstr "هیچ رکورد یافت نشد برای پاکسازی از %s!"
|
577 |
|
578 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:55
|
579 |
msgid "Please select a value over 30 days."
|
580 |
msgstr "لطفاً مقدار بیشتر از 30 روز انتخاب کنید."
|
581 |
|
582 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:5
|
583 |
+
msgid "Database Setup"
|
584 |
+
msgstr "راه اندازی پایگاه داده"
|
585 |
+
|
586 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:10
|
587 |
+
msgid "Re-run Install"
|
588 |
+
msgstr "اجرای نصب دوباره"
|
589 |
+
|
590 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:14
|
591 |
+
msgid "Install Now!"
|
592 |
+
msgstr "در حال حاضر نصب!"
|
593 |
+
|
594 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:15
|
595 |
+
msgid ""
|
596 |
+
"If for some reason your installation of WP Statistics is missing the "
|
597 |
+
"database tables or other core items, this will re-execute the install "
|
598 |
+
"process."
|
599 |
+
msgstr ""
|
600 |
+
"اگر به هر دلیلی خود را نصب وپ آمار جداول پایگاه داده یا موارد دیگر هسته از "
|
601 |
+
"دست رفته است این فرایند نصب دوباره اجرا خواهد شد."
|
602 |
+
|
603 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:20
|
604 |
msgid "Database Index"
|
605 |
msgstr "شاخص پایگاهداده"
|
606 |
|
607 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
608 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
609 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:252
|
610 |
msgid "Countries"
|
611 |
msgstr "کشورها"
|
612 |
|
613 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:39
|
614 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:25
|
615 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:40
|
616 |
msgid "Update Now!"
|
617 |
msgstr "بهروز رسانی کن!"
|
618 |
|
619 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:40
|
620 |
msgid ""
|
621 |
"Older installs of WP Statistics allow for duplicate entries in the visitors "
|
622 |
"table in a corner case. Newer installs protect against this with a unique "
|
630 |
"باید دادههای تکراری را پاک کنید. با کلیک برروی \"به روز رسانی\" ابتدا جدول "
|
631 |
"بازدیدکنندهگان را بررسی و سپس دادههای تکراری را حذف و فهرست را اضافه میکند."
|
632 |
|
633 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:41
|
634 |
msgid ""
|
635 |
"This operation could take a long time on installs with many rows in the "
|
636 |
"visitors table."
|
637 |
msgstr ""
|
638 |
"این عملیات زمان زیادی برای نصب تعدادی ردیفها در جدل بازدیدکنندگان صرف می کند."
|
639 |
|
640 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:46
|
641 |
msgid ""
|
642 |
"Older installs of WP Statistics allow for duplicate entries in the visitors "
|
643 |
"table in a corner case. Newer installs protect against this with a unique "
|
647 |
"بازدیدکنندهگان ایجاد میشدند. نصبهای جدیدتر در رابطه با این مورد توسط یک "
|
648 |
"فهرست شاخص محافظت شدهاند."
|
649 |
|
650 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:47
|
651 |
msgid ""
|
652 |
"Congratulations, your installation is already up to date, nothing to do."
|
653 |
msgstr "تبریک میگویم، در حال حاضر نصب شما بهروز است و مشکلی ندارد."
|
654 |
|
655 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:7
|
656 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:127
|
657 |
msgid "Export"
|
658 |
msgstr "برونبری"
|
659 |
|
758 |
msgid "All visitor data will be lost for this platform type."
|
759 |
msgstr "تمامی دادههای سَکوی بازدیدکننده از بین خواهد رفت."
|
760 |
|
761 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:17
|
762 |
msgid "Resources"
|
763 |
msgstr "منابع"
|
764 |
|
765 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:22
|
766 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:27
|
767 |
msgid "Memory usage in PHP"
|
768 |
msgstr "حافظه استفاده شده در پیاچپی"
|
769 |
|
770 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:26
|
771 |
msgid "Byte"
|
772 |
msgstr "بایت"
|
773 |
|
774 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:33
|
775 |
msgid "PHP Memory Limit"
|
776 |
msgstr "PHP Memory Limit"
|
777 |
|
778 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:38
|
779 |
msgid "The memory limit a script is allowed to consume, set in php.ini."
|
780 |
msgstr "تنظیم محدودیت حافظه برای اسکریپت در php.ini قرار دارد."
|
781 |
|
782 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:44
|
783 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:55
|
784 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:66
|
785 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:77
|
786 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:88
|
787 |
#, php-format
|
788 |
+
msgid "Number of rows in the %s table"
|
789 |
+
msgstr "تعداد ردیفها در جدول %s"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
790 |
|
|
|
791 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:48
|
792 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:59
|
793 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:70
|
794 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:81
|
795 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:92
|
796 |
+
msgid "Row"
|
797 |
+
msgstr "ردیف"
|
798 |
+
|
799 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:49
|
800 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:60
|
801 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:71
|
802 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:82
|
803 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:93
|
804 |
msgid "Number of rows"
|
805 |
msgstr "تعداد ردیفهای موجود"
|
806 |
|
807 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:98
|
808 |
msgid "Version Info"
|
809 |
msgstr "اطلاعات نگارش"
|
810 |
|
811 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:103
|
812 |
msgid "WP Statistics Version"
|
813 |
msgstr "نگارش افزونه آماره"
|
814 |
|
815 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:108
|
816 |
msgid "The WP Statistics version you are running."
|
817 |
msgstr "نگارش افزونه آماره در حال اجرای شما."
|
818 |
|
819 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:114
|
820 |
msgid "PHP Version"
|
821 |
msgstr "نگارش PHP"
|
822 |
|
823 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:119
|
824 |
msgid "The PHP version you are running."
|
825 |
msgstr "نگارش PHP در حال اجرای شما."
|
826 |
|
827 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:125
|
828 |
msgid "PHP Safe Mode"
|
829 |
msgstr "حالت ایمن PHP"
|
830 |
|
831 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:130
|
832 |
msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
|
833 |
msgstr "حالت ایمنی PHP فعال است. کدهای GeoIP در حالت امن پشتیبانی نمیشوند."
|
834 |
|
835 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:136
|
836 |
msgid "jQuery Version"
|
837 |
msgstr "نگارش جیکوئری"
|
838 |
|
839 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:141
|
840 |
msgid "The jQuery version you are running."
|
841 |
msgstr "نگارش جیکوئری در حال اجرای شما."
|
842 |
|
843 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:147
|
844 |
msgid "cURL Version"
|
845 |
msgstr "نسخه cURL"
|
846 |
|
847 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:151
|
848 |
msgid "cURL not installed"
|
849 |
msgstr "cURL نصب نیست"
|
850 |
|
851 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:152
|
852 |
msgid ""
|
853 |
"The PHP cURL Extension version you are running. cURL is required for the "
|
854 |
"GeoIP code, if it is not installed GeoIP will be disabled."
|
855 |
msgstr ""
|
856 |
"ماژول cURL در PHP شما در حال اجراست. اگر نصب نیست GeoIP غیرفعال خواهد شد."
|
857 |
|
858 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:158
|
859 |
msgid "BC Math"
|
860 |
msgstr "BC Math"
|
861 |
|
862 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:162
|
863 |
msgid "Installed"
|
864 |
msgstr "نصب شده"
|
865 |
|
866 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:162
|
867 |
msgid "Not installed"
|
868 |
msgstr "نصب نشده"
|
869 |
|
870 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:163
|
871 |
msgid ""
|
872 |
+
"If the PHP BC Math Extension is installed. BC Math is no longer required "
|
873 |
+
"for the GeoIP code and is listed here only for historical reasons."
|
874 |
msgstr ""
|
875 |
+
"اگر قادر به نصب پسوند پی اچ پی ریاضی سال قبل از میلاد است. ریاضی سال قبل از "
|
876 |
+
"میلاد دیگر برای کد GeoIP لازم است و تنها به دلایل تاریخی ذکر شده است."
|
877 |
+
|
878 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:168
|
879 |
+
msgid "File Info"
|
880 |
+
msgstr "اطلاعات فایل"
|
881 |
+
|
882 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:173
|
883 |
+
msgid "GeoIP Database"
|
884 |
+
msgstr "GeoIP پایگاه داده"
|
885 |
+
|
886 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:182
|
887 |
+
msgid "Database file does not exist."
|
888 |
+
msgstr "فایل پایگاهداده وجود ندارد."
|
889 |
+
|
890 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:184
|
891 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:203
|
892 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:222
|
893 |
+
msgid ", created on "
|
894 |
+
msgstr "، در ایجاد "
|
895 |
+
|
896 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:186
|
897 |
+
msgid "The file size and date of the GeoIP database."
|
898 |
+
msgstr "اندازه فایل و تاریخ از GeoIP پایگاه داده."
|
899 |
+
|
900 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:192
|
901 |
+
msgid "browscap.ini File"
|
902 |
+
msgstr "browscap.ini فایل"
|
903 |
+
|
904 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:201
|
905 |
+
msgid "browscap.ini file does not exist."
|
906 |
+
msgstr "فایل browscap.ini وجود ندارد."
|
907 |
+
|
908 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:205
|
909 |
+
msgid "The file size and date of the browscap.ini file."
|
910 |
+
msgstr "اندازه فایل و تاریخ فایل browscap.ini."
|
911 |
+
|
912 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:211
|
913 |
+
msgid "browscap Cache File"
|
914 |
+
msgstr "browscap فایل حافظه پنهان"
|
915 |
+
|
916 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:220
|
917 |
+
msgid "browscap cache file does not exist."
|
918 |
+
msgstr "پرونده حافظه پنهان در browscap وجود ندارد."
|
919 |
+
|
920 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:224
|
921 |
+
msgid "The file size and date of the browscap cache file."
|
922 |
+
msgstr "اندازه فایل و تاریخ فایل حافظه پنهان browscap."
|
923 |
|
924 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:229
|
925 |
msgid "Client Info"
|
926 |
msgstr "اطلاعات کاربر"
|
927 |
|
928 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:234
|
929 |
msgid "Client IP"
|
930 |
msgstr "آیپی کاربر"
|
931 |
|
932 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:239
|
933 |
msgid "The client IP address."
|
934 |
msgstr "آدرس آیپی کاربر."
|
935 |
|
936 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:245
|
937 |
msgid "User Agent"
|
938 |
msgstr "عامل کاربر"
|
939 |
|
940 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:250
|
941 |
msgid "The client user agent string."
|
942 |
msgstr "رشتهی عامل کاربری"
|
943 |
|
950 |
"آیا مطمئن هستید؟"
|
951 |
|
952 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:16
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
953 |
msgid "GeoIP Options"
|
954 |
msgstr "تنظیمات GeoIP"
|
955 |
|
956 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:26
|
957 |
msgid ""
|
958 |
"Updates any unknown location data in the database, this may take a while"
|
959 |
msgstr ""
|
960 |
"دریافت بهروز رسانی برای موقعیت وکشورها، ممکن است انجام این عمل کمی طول بکشد."
|
961 |
|
962 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:31
|
963 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:56
|
964 |
msgid "IP Addresses"
|
965 |
msgstr "آدرس آیپی"
|
966 |
|
967 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:36
|
968 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:61
|
969 |
msgid "Hash IP Addresses"
|
970 |
msgstr "هشکردن آدرس آیپی"
|
971 |
|
972 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:41
|
973 |
msgid ""
|
974 |
"Replace IP addresses in the database with hash values, you will not be able "
|
975 |
"to recover the IP addresses in the future to populate location information "
|
982 |
msgid "IP Addresses replaced with hash values."
|
983 |
msgstr "آدرس آیپی با مقادیر خش جایگزینه میشود."
|
984 |
|
985 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:51
|
986 |
+
msgid "Install routine complete."
|
987 |
+
msgstr "روال کامل نصب کنید."
|
988 |
+
|
989 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:126
|
990 |
msgid "Resources/Information"
|
991 |
msgstr "منابع/اطلاعات"
|
992 |
|
993 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:128
|
994 |
msgid "Purging"
|
995 |
msgstr "پاکسازی"
|
996 |
|
997 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:129
|
998 |
msgid "Database"
|
999 |
msgstr "پایگاهداده"
|
1000 |
|
1001 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:130
|
1002 |
msgid "Updates"
|
1003 |
msgstr "بهروز رسانیها"
|
1004 |
|
1005 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:8
|
1006 |
#, php-format
|
1007 |
msgid "WP Statistics V%s"
|
1008 |
msgstr "آماره وردپرس نگارش %s"
|
1009 |
|
1010 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:20
|
1011 |
msgid "Visit Us Online"
|
1012 |
msgstr "مشاهده ما"
|
1013 |
|
1014 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:24
|
1015 |
+
#, php-format
|
1016 |
msgid ""
|
1017 |
+
"Come visit our great new %s and keep up to date on the latest news about WP "
|
1018 |
+
"Statistics."
|
1019 |
msgstr ""
|
1020 |
+
"ببینید ما %s جدید بزرگ و نگه دارید تا تاریخ در آخرین اخبار در مورد وپ آمار "
|
1021 |
+
"آمده است."
|
1022 |
|
1023 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:24
|
1024 |
+
msgid "website"
|
1025 |
+
msgstr "وب سایت"
|
1026 |
+
|
1027 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:28
|
1028 |
msgid "Rate and Review at WordPress.org"
|
1029 |
msgstr "امتیاز و بررسی در Wordpress.org"
|
1030 |
|
1031 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:32
|
1032 |
msgid "Thanks for installing WP Statistics, we encourage you to submit a "
|
1033 |
msgstr "با تشکر از شما بابت نصب افزونه آماره وردپرس، توصیه میکنیم به"
|
1034 |
|
1035 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:32
|
1036 |
msgid "rating and review"
|
1037 |
msgstr "رتبه بندی و بازبینی"
|
1038 |
|
1039 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:32
|
1040 |
msgid "over at WordPress.org. Your feedback is greatly appreciated!"
|
1041 |
msgstr "سر بزنید. نقطه نظرات شما قابل قدردانیست!"
|
1042 |
|
1043 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:36
|
1044 |
msgid "Translations"
|
1045 |
msgstr "ترجمهها"
|
1046 |
|
1047 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:40
|
1048 |
+
#, php-format
|
1049 |
msgid ""
|
1050 |
"WP Statistics supports internationalization and we encourage our users to "
|
1051 |
+
"submit translations, please visit our %s to see the current status and %s if "
|
1052 |
+
"you would like to help."
|
|
|
|
|
1053 |
msgstr ""
|
1054 |
+
"وپ آمار بین المللی حمایت می کند و ما را تشویق کاربران به ارائه ترجمه, اگر "
|
1055 |
+
"شما می خواهم برای کمک به ما %s برای دیدن وضعیت فعلی و %s مراجعه کنید."
|
|
|
|
|
|
|
1056 |
|
1057 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:40
|
1058 |
+
msgid "translation collaboration site"
|
1059 |
+
msgstr "ترجمه سایت همکاری"
|
1060 |
+
|
1061 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:40
|
1062 |
+
msgid "drop us a line"
|
1063 |
+
msgstr "ما افت خط"
|
1064 |
+
|
1065 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:44
|
1066 |
msgid "Support"
|
1067 |
msgstr "پشتیبانی"
|
1068 |
|
1069 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:49
|
1070 |
msgid ""
|
1071 |
"We're sorry you're having problem with WP Statistics and we're happy to help "
|
1072 |
"out. Here are a few things to do before contacting us:"
|
1074 |
"اگر با آماره وردپرس مشکل دارید، ما متأسفیم و خوشحال میشویم شما را کمک کنیم. "
|
1075 |
"میتوانید از بخشهای زیر اقدام کنید:"
|
1076 |
|
1077 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:52
|
1078 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:53
|
1079 |
+
#, php-format
|
1080 |
+
msgid "Have you read the %s?"
|
1081 |
+
msgstr "شما باید %s را بخوانید؟"
|
|
|
|
|
1082 |
|
1083 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:52
|
1084 |
+
msgid "FAQs"
|
1085 |
+
msgstr "سوالات متداول"
|
|
|
|
|
|
|
1086 |
|
1087 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:53
|
1088 |
+
msgid "manual"
|
1089 |
+
msgstr "کتابچه راهنمای کاربر"
|
|
|
|
|
|
|
|
|
1090 |
|
1091 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:54
|
1092 |
+
#, php-format
|
1093 |
+
msgid "Have you search the %s for a similar issue?"
|
1094 |
+
msgstr "جستجو در %s برای موضوع مشابه دارید؟"
|
1095 |
+
|
1096 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:54
|
1097 |
+
msgid "support forum"
|
1098 |
+
msgstr "انجمن پشتیبانی"
|
1099 |
+
|
1100 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:55
|
1101 |
msgid "Have you search the Internet for any error messages you are receiving?"
|
1102 |
msgstr "آیا برای هر خطا در اینترنت جستجو کردهاید؟"
|
1103 |
|
1104 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:58
|
1105 |
msgid "And a few things to double-check:"
|
1106 |
msgstr "و به چند نکته دقت کنید:"
|
1107 |
|
1108 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:61
|
1109 |
msgid "How's your memory_limit in php.ini?"
|
1110 |
msgstr "مقدار memory_limit در php.ini را بررسی کردهاید؟"
|
1111 |
|
1112 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:62
|
1113 |
msgid "Have you tried disabling any other plugins you may have installed?"
|
1114 |
msgstr "سعی کردید افزونههای نصب شده دیگر را غیرفعال کنید؟"
|
1115 |
|
1116 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:63
|
1117 |
msgid "Have you tried using the default WordPress theme?"
|
1118 |
msgstr "سعی کردید پوسته پیشفرض وردپرس را استفاده کنید؟"
|
1119 |
|
1120 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:64
|
1121 |
msgid "Have you double checked the plugin settings?"
|
1122 |
msgstr "آیا تنظیمات افزونه را مجدد بررسی کردهاید؟"
|
1123 |
|
1124 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:65
|
1125 |
msgid "Do you have all the required PHP extensions installed?"
|
1126 |
msgstr "آیا الزامات مربوط به اکستنشنهای PHP را نصب کردهاید؟"
|
1127 |
|
1128 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:66
|
1129 |
msgid ""
|
1130 |
"Are you getting a blank or incomplete page displayed in your browser? Did "
|
1131 |
"you view the source for the page and check for any fatal errors?"
|
1133 |
"آیا یک صفحه خالی یا یک صفحه ناقص در مروگر شما مشاهده میشود؟ آیا سورس صفحه را "
|
1134 |
"مشاهده و خطای رخ داده را بررسی کردهاید؟"
|
1135 |
|
1136 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:67
|
1137 |
msgid "Have you checked your PHP and web server error logs?"
|
1138 |
msgstr "آقا PHP و گزارش خطاهای سرور وب خود را بررسی کردهاید؟"
|
1139 |
|
1140 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:70
|
1141 |
msgid "Still not having any luck?"
|
1142 |
msgstr "با این حال، شانشی برایتان نیست؟"
|
1143 |
|
1144 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:70
|
1145 |
+
#, php-format
|
1146 |
msgid ""
|
1147 |
+
"Then please open a new thread on the %s and we'll respond as soon as "
|
1148 |
+
"possible."
|
1149 |
+
msgstr "سپس لطفا یک تاپیک جدید در %s را باز کنید و ما اسرع پاسخ دهد."
|
|
|
|
|
|
|
|
|
1150 |
|
1151 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:70
|
1152 |
+
msgid "WordPress.org support forum"
|
1153 |
+
msgstr "انجمن پشتیبانی WordPress.org"
|
1154 |
+
|
1155 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:74
|
1156 |
+
#, php-format
|
1157 |
+
msgid "Alternatively %s support is available as well."
|
1158 |
+
msgstr "انجمن پشتیبانی %s ما، راه دیگری است که همیشه در دسترس است."
|
1159 |
+
|
1160 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:74
|
1161 |
+
msgid "Farsi"
|
1162 |
+
msgstr "فارسی"
|
1163 |
|
1164 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:33
|
1165 |
msgid "Access Levels"
|
1175 |
|
1176 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:85
|
1177 |
#, php-format
|
1178 |
+
msgid "See the %s for details on capability levels."
|
1179 |
+
msgstr "مشاهده جزئیات %s سطح توانایی."
|
1180 |
+
|
1181 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:85
|
1182 |
+
msgid "WordPress Roles and Capabilities page"
|
1183 |
+
msgstr "صفحه وردپرس نقش و توانایی"
|
1184 |
|
1185 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:86
|
1186 |
msgid ""
|
1210 |
"به افزونه %s بیندازید."
|
1211 |
|
1212 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:93
|
1213 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:255
|
1214 |
msgid "Exclusions"
|
1215 |
msgstr "استثنائات"
|
1216 |
|
1329 |
msgid "Exclude the admin pages for registering as a hit."
|
1330 |
msgstr "نادیده گرفتن برگههای مدیریت برای نامنویسی بهعنوان محاسبه در آمار"
|
1331 |
|
1332 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:17
|
1333 |
+
msgid "browscap settings"
|
1334 |
+
msgstr "تنظیمات browscap"
|
1335 |
|
1336 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:22
|
1337 |
+
msgid "browscap usage"
|
1338 |
+
msgstr "استفاده از browscap"
|
1339 |
+
|
1340 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:27
|
1341 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:51
|
1342 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:66
|
1343 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:82
|
1344 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:110
|
1360 |
msgid "Active"
|
1361 |
msgstr "فعال"
|
1362 |
|
1363 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:28
|
1364 |
+
msgid "The browscap database will be downloaded and used to detect robots."
|
1365 |
+
msgstr "پایگاه داده browscap را دانلود و استفاده برای شناسایی ربات."
|
1366 |
+
|
1367 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:34
|
1368 |
+
msgid "Update browscap Info"
|
1369 |
+
msgstr "Browscap به روز رسانی اطلاعات"
|
1370 |
+
|
1371 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:39
|
1372 |
+
msgid "Download browscap Database"
|
1373 |
+
msgstr "دانلود browscap پایگاه داده"
|
1374 |
+
|
1375 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:40
|
1376 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:50
|
1377 |
+
msgid "Save changes on this page to download the update."
|
1378 |
+
msgstr "ذخیرهی تغییرات در این برگه و دریافت بهروز رسانی"
|
1379 |
+
|
1380 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:46
|
1381 |
+
msgid "Schedule weekly update of browscap DB"
|
1382 |
+
msgstr "برنامه به روز رسانی هفتگی browscap دسی بل"
|
1383 |
+
|
1384 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:54
|
1385 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:64
|
1386 |
+
msgid "Next update will be"
|
1387 |
+
msgstr "بهروز رسانی بعدی خواهد بود"
|
1388 |
+
|
1389 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:69
|
1390 |
+
msgid "Download of the browscap database will be scheduled for once a week."
|
1391 |
+
msgstr ""
|
1392 |
+
"دانلود بانک اطلاعاتی browscap برای یک بار در هفته طوری زمانبندی خواهد شد."
|
1393 |
+
|
1394 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:40
|
1395 |
+
msgid "This will delete the manual when you save the settings, are you sure?"
|
1396 |
+
msgstr "پس از ذخیرهی صفحه، فایل راهنما حذف خواهد شد، آیا مطمئن هستید؟"
|
1397 |
+
|
1398 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:67
|
1399 |
msgid ""
|
1400 |
+
"This feature will not store IP addresses in the database but instead used a "
|
1401 |
+
"unique hash. The \"Store entire user agent string\" setting will be "
|
1402 |
"disabled if this is selected. You will not be able to recover the IP "
|
1403 |
"addresses in the future to recover location information if this is enabled."
|
1404 |
msgstr ""
|
1405 |
+
"این ویژگی آدرس IP را در پایگاه داده ذخیره خواهد شد اما در عوض هش منحصر به "
|
1406 |
+
"فرد استفاده. String عامل کاربر کل \"Store\" تنظیم غیرفعال خواهد شد اگر این "
|
1407 |
+
"گزینه انتخاب شود. شما قادر خواهید بود برای بازیابی آدرس IP در آینده برای "
|
1408 |
+
"بازیابی اطلاعات مکان اگر این فعال شده است."
|
1409 |
|
1410 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:72
|
1411 |
msgid "Users Online"
|
1440 |
|
1441 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:116
|
1442 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:121
|
1443 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:259
|
1444 |
msgid "Visitors"
|
1445 |
msgstr "بازدیدکنندهگان"
|
1446 |
|
1463 |
|
1464 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:155
|
1465 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:160
|
1466 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:260
|
1467 |
msgid "Pages"
|
1468 |
msgstr "برگهها"
|
1469 |
|
1558 |
|
1559 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:280
|
1560 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:285
|
1561 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:161
|
1562 |
msgid "Statistical reporting"
|
1563 |
msgstr "گزارش آماری"
|
1564 |
|
1588 |
|
1589 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:340
|
1590 |
#, php-format
|
1591 |
+
msgid "Note: To send SMS text messages please install the %s plugin."
|
1592 |
+
msgstr "توجه: برای ارسال اس ام اس متن پیام لطفا پلاگین %s نصب کنید."
|
1593 |
+
|
1594 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:340
|
1595 |
+
msgid "WordPress SMS"
|
1596 |
+
msgstr "اس ام اس وردپرس"
|
1597 |
|
1598 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:347
|
1599 |
msgid "E-mail addresses"
|
1635 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:369
|
1636 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:38
|
1637 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:247
|
1638 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:311
|
1639 |
msgid "User Online"
|
1640 |
msgstr "کاربران حاضر"
|
1641 |
|
1707 |
msgid "Download GeoIP Database"
|
1708 |
msgstr "دریافت پایگاهداده GeoIP"
|
1709 |
|
|
|
|
|
|
|
|
|
1710 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:56
|
1711 |
msgid "Schedule monthly update of GeoIP DB"
|
1712 |
msgstr "برنامهریزی بهروزرسانی ماهیانه پایگاهدادهی GeoIP"
|
1713 |
|
|
|
|
|
|
|
|
|
1714 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:82
|
1715 |
msgid ""
|
1716 |
"Download of the GeoIP database will be scheduled for 2 days after the first "
|
1821 |
msgstr "خلاصه آمار"
|
1822 |
|
1823 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:28
|
1824 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:92
|
1825 |
msgid "About"
|
1826 |
msgstr "درباره"
|
1827 |
|
1942 |
msgid "N/A"
|
1943 |
msgstr "خالی"
|
1944 |
|
1945 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:86
|
1946 |
msgid "General"
|
1947 |
msgstr "عمومی"
|
1948 |
|
1949 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:87
|
1950 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:249
|
1951 |
msgid "Overview"
|
1952 |
msgstr "مرور کلی"
|
1953 |
|
1954 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:88
|
1955 |
msgid "Access/Exclusions"
|
1956 |
msgstr "دسترسی/محرومیتها"
|
1957 |
|
1958 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:89
|
1959 |
msgid "GeoIP"
|
1960 |
msgstr "GeoIP"
|
1961 |
|
1962 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:90
|
1963 |
+
msgid "browscap"
|
1964 |
+
msgstr "browscap"
|
1965 |
+
|
1966 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:91
|
1967 |
msgid "Maintenance"
|
1968 |
msgstr "تعمیر و نگهداری"
|
1969 |
|
1970 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:126
|
1971 |
msgid "Update"
|
1972 |
msgstr "بهروز رسانی"
|
1973 |
|
1994 |
msgstr "هر 4 هفته"
|
1995 |
|
1996 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:14
|
1997 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:246
|
1998 |
msgid "Statistics"
|
1999 |
msgstr "آماره"
|
2000 |
|
2080 |
msgstr "آیتمها"
|
2081 |
|
2082 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:256
|
2083 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:335
|
2084 |
msgid "Yesterday visit"
|
2085 |
msgstr "بازدید دیروز"
|
2086 |
|
2093 |
msgstr "انتخاب نوع موتورجستجو"
|
2094 |
|
2095 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
|
2096 |
+
msgid ""
|
2097 |
+
"ERROR: WP Statistics has detected an unsupported version of PHP, WP "
|
2098 |
+
"Statistics will not function without PHP Version "
|
2099 |
+
msgstr ""
|
2100 |
+
"خطا: آمار وپ نسخه پشتیبانی نشده ای را شناسایی کرده است از پی اچ پی، وپ آمار "
|
2101 |
+
"بدون نسخه پی اچ پی عمل نمی کند "
|
2102 |
+
|
2103 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
|
2104 |
+
msgid " or higher!"
|
2105 |
+
msgstr "و یا بالاتر!"
|
2106 |
+
|
2107 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:38
|
2108 |
msgid "WP Statistics"
|
2109 |
msgstr "آماره وردپرس"
|
2110 |
|
2111 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:39
|
2112 |
msgid "Complete statistics for your WordPress site."
|
2113 |
msgstr "آماری کامل برای سایت وردپرسی شما."
|
2114 |
|
2115 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:82
|
2116 |
#, php-format
|
2117 |
msgid ""
|
2118 |
+
"Online user tracking in WP Statistics is not enabled, please go to %s and "
|
2119 |
+
"enable it."
|
2120 |
msgstr ""
|
2121 |
+
"کاربران آنلاین در وپ آمار پیگیری فعال است لطفا به %s بروید و آن را فعال کنید."
|
|
|
2122 |
|
2123 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:82
|
2124 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:85
|
2125 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:88
|
2126 |
+
msgid "setting page"
|
2127 |
+
msgstr "تنظیمات صفحه"
|
2128 |
+
|
2129 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:85
|
2130 |
#, php-format
|
2131 |
msgid ""
|
2132 |
+
"Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
|
2133 |
+
msgstr "ردیابی آمار در وپ آمار فعال نیست لطفا به %s بروید و آن را فعال کنید."
|
|
|
|
|
|
|
2134 |
|
2135 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:88
|
2136 |
#, php-format
|
2137 |
msgid ""
|
2138 |
+
"Visitor tracking in WP Statistics is not enabled, please go to %s and enable "
|
2139 |
+
"it."
|
2140 |
msgstr ""
|
2141 |
+
"ردیابی در وپ آمار بازدید کننده فعال است لطفا به %s بروید و آن را فعال کنید."
|
|
|
2142 |
|
2143 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:91
|
2144 |
#, php-format
|
2145 |
msgid ""
|
2146 |
+
"GeoIP collection is not active, please go to %s and enable this feature."
|
2147 |
+
msgstr "مجموعه GeoIP فعال نیست لطفا برو به %s و فعال کردن این ویژگی."
|
|
|
|
|
|
|
|
|
2148 |
|
|