Version Description
- Added: Installation/upgrades/removals on WordPress multi-sites now upgrade all sites in the network if the installing user has the appropriate rights.
- Added: RSS feed URL's can now be excluded.
- Added: Option to set the country code for private IP addresses.
- Fixed: Additional WP_DEBUG warning fixes.
- Fixed: Incorrect parameter list in get_home_url() when checking for self referrals.
- Fixed: Single quotes can now be used in the report content without being escaped.
- Fixed: Referrers menu item was misspelled.
- Updated: Italian, French, Polish, Arabic, Persian and Chinese translation.
- Updated: Widget now formats numbers with international standards.
- Updated: Short codes now support three number formatting options; i18n, english or none.
- Updated: Removed old throttling code for hits which is no longer required.
- Updated: IP address exclusions without a subnet mask now assume a single IP address instead of all IP addresses.
Download this release
Release Info
Developer | GregRoss |
Plugin | WP Statistics |
Version | 8.8 |
Comparing to | |
See all releases |
Code changes from version 8.7.2 to 8.8
- assets/css/admin.css +3 -0
- includes/classes/hits.class.php +42 -27
- includes/classes/hits.geoip.class.php +28 -24
- includes/classes/statistics.class.php +9 -0
- includes/log/exclusions.php +2 -2
- includes/log/online.php +2 -0
- includes/log/top-referring.php +3 -3
- includes/log/widgets/referring.php +2 -2
- includes/settings/tabs/wps-about.php +1 -1
- includes/settings/tabs/wps-access-level.php +8 -1
- includes/settings/tabs/wps-geoip.php +24 -3
- includes/settings/tabs/wps-notifications.php +3 -3
- languages/default.mo +0 -0
- languages/default.po +912 -689
- languages/wp_statistics-ar.mo +0 -0
- languages/wp_statistics-ar.po +1878 -2513
- languages/wp_statistics-bg_BG.mo +0 -0
- languages/wp_statistics-bg_BG.po +1960 -1698
- languages/wp_statistics-bn_BD.mo +0 -0
- languages/wp_statistics-bn_BD.po +2212 -704
- languages/wp_statistics-cs.mo +0 -0
- languages/wp_statistics-cs.po +1682 -1386
assets/css/admin.css
CHANGED
@@ -5,4 +5,7 @@
|
|
5 |
#wp-admin-bar-wp-statistic-menu .ab-icon:before{
|
6 |
font-family: "dashicons" !important;
|
7 |
content: "\f184" !important;
|
|
|
|
|
|
|
8 |
}
|
5 |
#wp-admin-bar-wp-statistic-menu .ab-icon:before{
|
6 |
font-family: "dashicons" !important;
|
7 |
content: "\f184" !important;
|
8 |
+
}
|
9 |
+
.wps-center{
|
10 |
+
text-align: center;
|
11 |
}
|
includes/classes/hits.class.php
CHANGED
@@ -23,7 +23,7 @@
|
|
23 |
// Construction function.
|
24 |
public function __construct() {
|
25 |
|
26 |
-
global $wp_version;
|
27 |
|
28 |
// Call the parent constructor (WP_Statistics::__construct)
|
29 |
parent::__construct();
|
@@ -43,6 +43,18 @@
|
|
43 |
if( $this->get_option('record_exclusions' ) == 1 ) {
|
44 |
$this->exclusion_record = TRUE;
|
45 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
|
47 |
// The follow exclusion checks are done during the class construction so we don't have to execute them twice if we're tracking visits and visitors.
|
48 |
//
|
@@ -130,7 +142,7 @@
|
|
130 |
|
131 |
// Check to see if we are being referred to ourselves.
|
132 |
if( !$this->exclusion_match ) {
|
133 |
-
if( $ua_string == "WordPress/" . $wp_version . "; " . get_home_url("/") ) { $this->exclusion_match = TRUE; $this->exclusion_reason = "self referral"; }
|
134 |
if( $ua_string == "WordPress/" . $wp_version . "; " . get_home_url() ) { $this->exclusion_match = TRUE; $this->exclusion_reason = "self referral"; }
|
135 |
|
136 |
if( $this->get_option('exclude_loginpage') == 1 ) {
|
@@ -156,6 +168,12 @@
|
|
156 |
|
157 |
if( $currentURL == $adminURL ) { $this->exclusion_match = TRUE; $this->exclusion_reason = "admin page";}
|
158 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
159 |
|
160 |
// Check to see if we are excluding based on the user role.
|
161 |
if( !$this->exclusion_match ) {
|
@@ -221,7 +239,8 @@
|
|
221 |
// 127.0.0.1/255.255.255.255 or 10.0.0.1 matches a given ip
|
222 |
$ip_arr = explode('/', $network);
|
223 |
|
224 |
-
|
|
|
225 |
|
226 |
$network_long = ip2long($ip_arr[0]);
|
227 |
|
@@ -241,29 +260,25 @@
|
|
241 |
// Check to see if we're a returning visitor.
|
242 |
$this->result = $this->db->get_row("SELECT * FROM {$this->tb_prefix}statistics_visit ORDER BY `{$this->tb_prefix}statistics_visit`.`ID` DESC");
|
243 |
|
244 |
-
//
|
245 |
-
if( $this->result->
|
|
|
|
|
|
|
246 |
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
$
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
$this->
|
258 |
-
|
259 |
-
|
260 |
-
'visit' => $this->result->visit + $this->coefficient
|
261 |
-
),
|
262 |
-
array(
|
263 |
-
'last_counter' => $this->result->last_counter
|
264 |
-
)
|
265 |
-
);
|
266 |
-
}
|
267 |
}
|
268 |
}
|
269 |
}
|
@@ -274,8 +289,8 @@
|
|
274 |
|
275 |
// Get the pages or posts ID if it exists.
|
276 |
$this->current_page_id = $wp_query->get_queried_object_id();
|
277 |
-
|
278 |
-
if( $this->get_option( 'use_honeypot' ) && $this->get_option( 'honeypot_postid') > 0 && $this->get_option( 'honeypot_postid' ) == $this->current_page_id ) {
|
279 |
$this->exclusion_match = TRUE;
|
280 |
$this->exclusion_reason = "honeypot";
|
281 |
}
|
23 |
// Construction function.
|
24 |
public function __construct() {
|
25 |
|
26 |
+
global $wp_version, $WP_Statistics;
|
27 |
|
28 |
// Call the parent constructor (WP_Statistics::__construct)
|
29 |
parent::__construct();
|
43 |
if( $this->get_option('record_exclusions' ) == 1 ) {
|
44 |
$this->exclusion_record = TRUE;
|
45 |
}
|
46 |
+
|
47 |
+
// Let's check to see if our subnet matches a private IP address range, if so go ahead and set the location infomraiton now.
|
48 |
+
if( $this->get_option( 'private_country_code' ) != '000' && $this->get_option( 'private_country_code' ) != '') {
|
49 |
+
$private_subnets = array( '10.0.0.0/8', '172.16.0.0/12', '192.168.0.0/16', '127.0.0.1/24' );
|
50 |
+
|
51 |
+
foreach( $private_subnets as $psub ) {
|
52 |
+
if( $this->net_match( $psub, $this->ip ) ) {
|
53 |
+
$this->location = $this->get_option( 'private_country_code' );
|
54 |
+
break;
|
55 |
+
}
|
56 |
+
}
|
57 |
+
}
|
58 |
|
59 |
// The follow exclusion checks are done during the class construction so we don't have to execute them twice if we're tracking visits and visitors.
|
60 |
//
|
142 |
|
143 |
// Check to see if we are being referred to ourselves.
|
144 |
if( !$this->exclusion_match ) {
|
145 |
+
if( $ua_string == "WordPress/" . $wp_version . "; " . get_home_url(null,"/") ) { $this->exclusion_match = TRUE; $this->exclusion_reason = "self referral"; }
|
146 |
if( $ua_string == "WordPress/" . $wp_version . "; " . get_home_url() ) { $this->exclusion_match = TRUE; $this->exclusion_reason = "self referral"; }
|
147 |
|
148 |
if( $this->get_option('exclude_loginpage') == 1 ) {
|
168 |
|
169 |
if( $currentURL == $adminURL ) { $this->exclusion_match = TRUE; $this->exclusion_reason = "admin page";}
|
170 |
}
|
171 |
+
|
172 |
+
if( $this->get_option('exclude_feeds') == 1 ) {
|
173 |
+
if( is_object( $WP_Statistics ) ) {
|
174 |
+
if( $WP_Statistics->check_feed() ) { { $this->exclusion_match = TRUE; $this->exclusion_reason = "feed";} }
|
175 |
+
}
|
176 |
+
}
|
177 |
|
178 |
// Check to see if we are excluding based on the user role.
|
179 |
if( !$this->exclusion_match ) {
|
239 |
// 127.0.0.1/255.255.255.255 or 10.0.0.1 matches a given ip
|
240 |
$ip_arr = explode('/', $network);
|
241 |
|
242 |
+
// If no network mask has been passed in, assume 255.255.255.255 so we don't match every IP address by default.
|
243 |
+
if( !isset( $ip_arr[1] ) ) { $ip_arr[1] = '255.255.255.255'; }
|
244 |
|
245 |
$network_long = ip2long($ip_arr[0]);
|
246 |
|
260 |
// Check to see if we're a returning visitor.
|
261 |
$this->result = $this->db->get_row("SELECT * FROM {$this->tb_prefix}statistics_visit ORDER BY `{$this->tb_prefix}statistics_visit`.`ID` DESC");
|
262 |
|
263 |
+
// If we're a returning visitor, update the current record in the database, otherwise, create a new one.
|
264 |
+
if( $this->result->last_counter != $this->Current_Date('Y-m-d') ) {
|
265 |
+
// We'd normally use the WordPress insert function, but since we may run in to a race condition where another hit to the site has already created a new entry in the database
|
266 |
+
// for this IP address we want to do an "INSERT ... ON DUPLICATE KEY" which WordPress doesn't support.
|
267 |
+
$sqlstring = $this->db->prepare( 'INSERT INTO ' . $this->tb_prefix . 'statistics_visit (last_visit, last_counter, visit) VALUES ( %s, %s, %d) ON DUPLICATE KEY UPDATE visit = visit + ' . $this->coefficient, $this->Current_Date(), $this->Current_date('Y-m-d'), $this->coefficient );
|
268 |
|
269 |
+
$this->db->query( $sqlstring );
|
270 |
+
} else {
|
271 |
+
|
272 |
+
$this->db->update(
|
273 |
+
$this->tb_prefix . "statistics_visit",
|
274 |
+
array(
|
275 |
+
'last_visit' => $this->Current_Date(),
|
276 |
+
'visit' => $this->result->visit + $this->coefficient
|
277 |
+
),
|
278 |
+
array(
|
279 |
+
'last_counter' => $this->result->last_counter
|
280 |
+
)
|
281 |
+
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
282 |
}
|
283 |
}
|
284 |
}
|
289 |
|
290 |
// Get the pages or posts ID if it exists.
|
291 |
$this->current_page_id = $wp_query->get_queried_object_id();
|
292 |
+
|
293 |
+
if( $this->get_option( 'use_honeypot' ) && $this->get_option( 'honeypot_postid') > 0 && $this->get_option( 'honeypot_postid' ) == $this->current_page_id && $this->current_page_id > 0 ) {
|
294 |
$this->exclusion_match = TRUE;
|
295 |
$this->exclusion_reason = "honeypot";
|
296 |
}
|
includes/classes/hits.geoip.class.php
CHANGED
@@ -15,31 +15,35 @@
|
|
15 |
// Call the parent constructor (WP_Statistics::__constructor).
|
16 |
parent::__construct();
|
17 |
|
18 |
-
//
|
19 |
-
|
20 |
-
{
|
21 |
-
// Get the WordPress upload directory information, which is where we have stored the MaxMind database.
|
22 |
-
$upload_dir = wp_upload_dir();
|
23 |
-
|
24 |
-
// Create a new Reader and point it to the database.
|
25 |
-
$reader = new Reader( $upload_dir['basedir'] . '/wp-statistics/GeoLite2-Country.mmdb' );
|
26 |
-
|
27 |
-
// Look up the IP address
|
28 |
-
$record = $reader->country( $this->ip );
|
29 |
-
|
30 |
-
// Get the location.
|
31 |
-
$location = $record->country->isoCode;
|
32 |
-
|
33 |
-
// MaxMind returns a blank for location if it can't find it, but we want to use 000 so replace it.
|
34 |
-
if( $location == "" ) { $location = "000"; }
|
35 |
-
}
|
36 |
-
catch( Exception $e )
|
37 |
-
{
|
38 |
-
$location = "000";
|
39 |
-
}
|
40 |
|
41 |
-
|
42 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
|
44 |
// Check to see if we are excluded by the GeoIP rules.
|
45 |
if( !$this->exclusion_match ) {
|
15 |
// Call the parent constructor (WP_Statistics::__constructor).
|
16 |
parent::__construct();
|
17 |
|
18 |
+
// We may have set the location based on a private IP address in the hits class, if so, don't bother looking it up again.
|
19 |
+
if( $this->location == '000' ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
|
21 |
+
// Now get the location information from the MaxMind database.
|
22 |
+
try
|
23 |
+
{
|
24 |
+
// Get the WordPress upload directory information, which is where we have stored the MaxMind database.
|
25 |
+
$upload_dir = wp_upload_dir();
|
26 |
+
|
27 |
+
// Create a new Reader and point it to the database.
|
28 |
+
$reader = new Reader( $upload_dir['basedir'] . '/wp-statistics/GeoLite2-Country.mmdb' );
|
29 |
+
|
30 |
+
// Look up the IP address
|
31 |
+
$record = $reader->country( $this->ip );
|
32 |
+
|
33 |
+
// Get the location.
|
34 |
+
$location = $record->country->isoCode;
|
35 |
+
|
36 |
+
// MaxMind returns a blank for location if it can't find it, but we want to use 000 so replace it.
|
37 |
+
if( $location == "" ) { $location = "000"; }
|
38 |
+
}
|
39 |
+
catch( Exception $e )
|
40 |
+
{
|
41 |
+
$location = "000";
|
42 |
+
}
|
43 |
+
|
44 |
+
// Store the location in the protected $location variable from the parent class.
|
45 |
+
$this->location = $location;
|
46 |
+
}
|
47 |
|
48 |
// Check to see if we are excluded by the GeoIP rules.
|
49 |
if( !$this->exclusion_match ) {
|
includes/classes/statistics.class.php
CHANGED
@@ -17,6 +17,7 @@
|
|
17 |
private $result;
|
18 |
private $historical;
|
19 |
private $user_options_loaded = false;
|
|
|
20 |
|
21 |
public $coefficient = 1;
|
22 |
public $plugin_dir = '';
|
@@ -469,4 +470,12 @@
|
|
469 |
|
470 |
return $count;
|
471 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
472 |
}
|
17 |
private $result;
|
18 |
private $historical;
|
19 |
private $user_options_loaded = false;
|
20 |
+
private $is_feed = false;
|
21 |
|
22 |
public $coefficient = 1;
|
23 |
public $plugin_dir = '';
|
470 |
|
471 |
return $count;
|
472 |
}
|
473 |
+
|
474 |
+
public function feed_detected() {
|
475 |
+
$this->is_feed = true;
|
476 |
+
}
|
477 |
+
|
478 |
+
public function check_feed() {
|
479 |
+
return $this->is_feed;
|
480 |
+
}
|
481 |
}
|
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','Browscap','IP Match','Self Referral','Login Page','Admin Page','User Role','GeoIP','Hostname', 'Robot Threshold','Honey Pot');
|
16 |
-
$excluded_reason_tags = array('Robot' => 'robot','Browscap' => 'browscap','IP Match' => 'ipmatch','Self Referral' => 'selfreferral','Login Page' => 'loginpage','Admin Page' => 'adminpage','User Role' => 'userrole','Total' => 'total','GeoIP' => 'geoip','Hostname' => 'hostname','Robot Threshold' => 'robot_threshold','Honey Pot' => 'honeypot');
|
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','GeoIP','Hostname', 'Robot Threshold','Honey Pot','Feeds');
|
16 |
+
$excluded_reason_tags = array('Robot' => 'robot','Browscap' => 'browscap','IP Match' => 'ipmatch','Self Referral' => 'selfreferral','Login Page' => 'loginpage','Admin Page' => 'adminpage','User Role' => 'userrole','Total' => 'total','GeoIP' => 'geoip','Hostname' => 'hostname','Robot Threshold' => 'robot_threshold','Honey Pot' => 'honeypot','Feeds' => 'feed');
|
17 |
$excluded_results = array('Total' => array() );
|
18 |
$excluded_total = 0;
|
19 |
|
includes/log/online.php
CHANGED
@@ -94,6 +94,8 @@
|
|
94 |
}
|
95 |
|
96 |
echo "</div>";
|
|
|
|
|
97 |
}
|
98 |
?>
|
99 |
</div>
|
94 |
}
|
95 |
|
96 |
echo "</div>";
|
97 |
+
} else {
|
98 |
+
echo "<div class='wps-center'>".__('Currently there are no users online in the site.', 'wp_statistics')."</div>";
|
99 |
}
|
100 |
?>
|
101 |
</div>
|
includes/log/top-referring.php
CHANGED
@@ -26,9 +26,9 @@
|
|
26 |
<?php screen_icon('options-general'); ?>
|
27 |
<h2><?php _e('Top Referring Sites', 'wp_statistics'); ?></h2>
|
28 |
<ul class="subsubsub">
|
29 |
-
<li class="all"><a <?php if(!$referr) { echo 'class="current"'; } ?>href="?page=
|
30 |
<?php if($referr) { ?>
|
31 |
-
| <li><a class="current" href="?page=
|
32 |
<?php } ?>
|
33 |
</ul>
|
34 |
<div class="postbox-container" id="last-log">
|
@@ -106,7 +106,7 @@
|
|
106 |
$i++;
|
107 |
|
108 |
echo "<div class='log-item'>";
|
109 |
-
echo "<div class='log-referred'>{$i} - <a href='?page=
|
110 |
echo "<div class='log-ip'>".__('References', 'wp_statistics').": " . number_format_i18n($value) . "</div>";
|
111 |
echo "<div class='clear'></div>";
|
112 |
echo "<div class='log-url'><a href='http://" . htmlentities($items,ENT_QUOTES) . "/' title='" . htmlentities($items,ENT_QUOTES) . "'><div class='dashicons dashicons-admin-links'></div> http://" . htmlentities($items,ENT_QUOTES) . "/</a></div>";
|
26 |
<?php screen_icon('options-general'); ?>
|
27 |
<h2><?php _e('Top Referring Sites', 'wp_statistics'); ?></h2>
|
28 |
<ul class="subsubsub">
|
29 |
+
<li class="all"><a <?php if(!$referr) { echo 'class="current"'; } ?>href="?page=wps_referrers_menu"><?php _e('All', 'wp_statistics'); ?> <span class="count">(<?php echo $total; ?>)</span></a></li>
|
30 |
<?php if($referr) { ?>
|
31 |
+
| <li><a class="current" href="?page=wps_referrers_menu&referr=<?php echo $referr; ?>"> <?php echo $title; ?> <span class="count">(<?php echo $total; ?>)</span></a></li>
|
32 |
<?php } ?>
|
33 |
</ul>
|
34 |
<div class="postbox-container" id="last-log">
|
106 |
$i++;
|
107 |
|
108 |
echo "<div class='log-item'>";
|
109 |
+
echo "<div class='log-referred'>{$i} - <a href='?page=wps_referrers_menu&referr={$items}'>{$items}</a></div>";
|
110 |
echo "<div class='log-ip'>".__('References', 'wp_statistics').": " . number_format_i18n($value) . "</div>";
|
111 |
echo "<div class='clear'></div>";
|
112 |
echo "<div class='log-url'><a href='http://" . htmlentities($items,ENT_QUOTES) . "/' title='" . htmlentities($items,ENT_QUOTES) . "'><div class='dashicons dashicons-admin-links'></div> http://" . htmlentities($items,ENT_QUOTES) . "/</a></div>";
|
includes/log/widgets/referring.php
CHANGED
@@ -10,7 +10,7 @@
|
|
10 |
<div class="postbox">
|
11 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
12 |
<h3 class="hndle">
|
13 |
-
<span><?php _e('Top Referring Sites', 'wp_statistics'); ?></span> <a href="?page=
|
14 |
</h3>
|
15 |
<div class="inside">
|
16 |
<div class="inside">
|
@@ -51,7 +51,7 @@
|
|
51 |
foreach( $get_urls as $items => $value) {
|
52 |
|
53 |
echo "<tr>";
|
54 |
-
echo "<td><a href='?page=
|
55 |
echo "<td><a href='http://" . htmlentities($items,ENT_QUOTES) . "' target='_blank'>" . htmlentities($items,ENT_QUOTES) . " " . wp_statistics_icons('dashicons-admin-links', 'link') . "</a></td>";
|
56 |
echo "</tr>";
|
57 |
}
|
10 |
<div class="postbox">
|
11 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
12 |
<h3 class="hndle">
|
13 |
+
<span><?php _e('Top Referring Sites', 'wp_statistics'); ?></span> <a href="?page=wps_referrers_menu"><?php echo wp_statistics_icons('dashicons-visibility', 'visibility'); ?><?php _e('More', 'wp_statistics'); ?></a>
|
14 |
</h3>
|
15 |
<div class="inside">
|
16 |
<div class="inside">
|
51 |
foreach( $get_urls as $items => $value) {
|
52 |
|
53 |
echo "<tr>";
|
54 |
+
echo "<td><a href='?page=wps_referrers_menu&referr=" . htmlentities($items,ENT_QUOTES) . "'>" . number_format_i18n($value) . "</a></td>";
|
55 |
echo "<td><a href='http://" . htmlentities($items,ENT_QUOTES) . "' target='_blank'>" . htmlentities($items,ENT_QUOTES) . " " . wp_statistics_icons('dashicons-admin-links', 'link') . "</a></td>";
|
56 |
echo "</tr>";
|
57 |
}
|
includes/settings/tabs/wps-about.php
CHANGED
@@ -37,7 +37,7 @@
|
|
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://
|
41 |
</tr>
|
42 |
|
43 |
<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://wp-statistics.com/translations/" 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">
|
includes/settings/tabs/wps-access-level.php
CHANGED
@@ -27,7 +27,7 @@ if( $wps_nonce_valid ) {
|
|
27 |
$_POST['wps_honeypot_postid'] = wp_insert_post( $my_post );
|
28 |
}
|
29 |
|
30 |
-
$wps_option_list = array_merge( $wps_option_list, array('wps_read_capability','wps_manage_capability','wps_record_exclusions','wps_robotlist','wps_exclude_ip','wps_exclude_loginpage','wps_exclude_adminpage','wps_force_robot_update','wps_excluded_countries','wps_included_countries','wps_excluded_hosts','wps_robot_threshold','wps_use_honeypot','wps_honeypot_postid' ) );
|
31 |
|
32 |
foreach( $wps_option_list as $option ) {
|
33 |
$new_option = str_replace( "wps_", "", $option );
|
@@ -255,5 +255,12 @@ if( $wps_nonce_valid ) {
|
|
255 |
<p class="description"><?php _e('Exclude the admin pages for registering as a hit.', 'wp_statistics'); ?></p>
|
256 |
</td>
|
257 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
258 |
</tbody>
|
259 |
</table>
|
27 |
$_POST['wps_honeypot_postid'] = wp_insert_post( $my_post );
|
28 |
}
|
29 |
|
30 |
+
$wps_option_list = array_merge( $wps_option_list, array('wps_read_capability','wps_manage_capability','wps_record_exclusions','wps_robotlist','wps_exclude_ip','wps_exclude_loginpage','wps_exclude_adminpage','wps_force_robot_update','wps_excluded_countries','wps_included_countries','wps_excluded_hosts','wps_robot_threshold','wps_use_honeypot','wps_honeypot_postid','wps_exclude_feeds' ) );
|
31 |
|
32 |
foreach( $wps_option_list as $option ) {
|
33 |
$new_option = str_replace( "wps_", "", $option );
|
255 |
<p class="description"><?php _e('Exclude the admin pages for registering as a hit.', 'wp_statistics'); ?></p>
|
256 |
</td>
|
257 |
</tr>
|
258 |
+
<tr valign="top">
|
259 |
+
<th scope="row"><?php _e('Excluded RSS feeds', 'wp_statistics'); ?>:</th>
|
260 |
+
<td>
|
261 |
+
<input id="wps-exclude-feeds" type="checkbox" value="1" name="wps_exclude_feeds" <?php echo $WP_Statistics->get_option('exclude_feeds')==true? "checked='checked'":'';?>><label for="wps-exclude-feeds"><?php _e('Exclude', 'wp_statistics'); ?></label>
|
262 |
+
<p class="description"><?php _e('Exclude the RSS feeds for registering as a hit.', 'wp_statistics'); ?></p>
|
263 |
+
</td>
|
264 |
+
</tr>
|
265 |
</tbody>
|
266 |
</table>
|
includes/settings/tabs/wps-geoip.php
CHANGED
@@ -1,7 +1,17 @@
|
|
1 |
<?php
|
2 |
if( $wps_nonce_valid ) {
|
3 |
|
4 |
-
$wps_option_list = array(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
|
6 |
foreach( $wps_option_list as $option ) {
|
7 |
$new_option = str_replace( "wps_", "", $option );
|
@@ -95,11 +105,22 @@ if( $wps_nonce_valid ) {
|
|
95 |
<p class="description"><?php _e('Update any missing GeoIP data after downloading a new database.', 'wp_statistics'); ?></p>
|
96 |
</td>
|
97 |
</tr>
|
98 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
99 |
}
|
100 |
else
|
101 |
{
|
102 |
-
|
103 |
<tr valign="top">
|
104 |
<th scope="row" colspan="2">
|
105 |
<?php
|
1 |
<?php
|
2 |
if( $wps_nonce_valid ) {
|
3 |
|
4 |
+
$wps_option_list = array('wps_geoip','wps_update_geoip','wps_schedule_geoip','wps_auto_pop','wps_private_country_code');
|
5 |
+
|
6 |
+
// For country codes we always use upper case, otherwise default to 000 which is 'unknown'.
|
7 |
+
if( array_key_exists( 'wps_private_country_code', $_POST ) ) {
|
8 |
+
$_POST['wps_private_country_code'] = trim( strtoupper( $_POST['wps_private_country_code'] ) );
|
9 |
+
}
|
10 |
+
else {
|
11 |
+
$_POST['wps_private_country_code'] = '000';
|
12 |
+
}
|
13 |
+
|
14 |
+
if( $_POST['wps_private_country_code'] == '' ) { $_POST['wps_private_country_code'] = '000'; }
|
15 |
|
16 |
foreach( $wps_option_list as $option ) {
|
17 |
$new_option = str_replace( "wps_", "", $option );
|
105 |
<p class="description"><?php _e('Update any missing GeoIP data after downloading a new database.', 'wp_statistics'); ?></p>
|
106 |
</td>
|
107 |
</tr>
|
108 |
+
|
109 |
+
<tr valign="top">
|
110 |
+
<th scope="row">
|
111 |
+
<label for="geoip-schedule"><?php _e('Country code for private IP addresses', 'wp_statistics'); ?>:</label>
|
112 |
+
</th>
|
113 |
+
|
114 |
+
<td>
|
115 |
+
<input type="text" size="3" id="geoip-private-country-code" name="wps_private_country_code" value="<?php echo $WP_Statistics->get_option('private_country_code');?>">
|
116 |
+
<p class="description"><?php _e('The international standard two letter country code (ie. US = United States, CA = Canada, etc.) for private (non-routable) IP addresses (ie. 10.0.0.1, 192.158.1.1, 127.0.0.1, etc.). Use "000" (three zeros) to use "Unknown" as the country code.', 'wp_statistics'); ?></p>
|
117 |
+
</td>
|
118 |
+
</tr>
|
119 |
+
<?php
|
120 |
}
|
121 |
else
|
122 |
{
|
123 |
+
?>
|
124 |
<tr valign="top">
|
125 |
<th scope="row" colspan="2">
|
126 |
<?php
|
includes/settings/tabs/wps-notifications.php
CHANGED
@@ -23,9 +23,9 @@ if( $wps_nonce_valid ) {
|
|
23 |
foreach( $wps_option_list as $option ) {
|
24 |
if( array_key_exists( $option, $_POST ) ) { $value = $_POST[$option]; } else { $value = ''; }
|
25 |
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
$new_option = str_replace( "wps_", "", $option );
|
30 |
$WP_Statistics->store_option($new_option, $value);
|
31 |
}
|
23 |
foreach( $wps_option_list as $option ) {
|
24 |
if( array_key_exists( $option, $_POST ) ) { $value = $_POST[$option]; } else { $value = ''; }
|
25 |
|
26 |
+
// WordPress escapes form data no matter what the setting of magic quotes is in PHP (http://www.theblog.ca/wordpress-addslashes-magic-quotes).
|
27 |
+
$value = stripslashes($value);
|
28 |
+
|
29 |
$new_option = str_replace( "wps_", "", $option );
|
30 |
$WP_Statistics->store_option($new_option, $value);
|
31 |
}
|
languages/default.mo
CHANGED
Binary file
|
languages/default.po
CHANGED
@@ -1,574 +1,693 @@
|
|
1 |
-
# Copyright (C)
|
2 |
# This file is distributed under the same license as the WP Statistics package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: WP Statistics 8.7\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-statistics\n"
|
7 |
-
"POT-Creation-Date:
|
|
|
|
|
|
|
|
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
-
"
|
12 |
-
"
|
13 |
-
"
|
14 |
-
"
|
15 |
-
"
|
16 |
-
|
17 |
-
|
|
|
|
|
18 |
msgid "Quick Stats"
|
19 |
msgstr ""
|
20 |
|
21 |
-
#: dashboard.php:56
|
|
|
22 |
msgid "Top 10 Browsers"
|
23 |
msgstr ""
|
24 |
|
25 |
-
#: dashboard.php:57
|
26 |
-
#: includes/
|
|
|
27 |
msgid "Top 10 Countries"
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: dashboard.php:58
|
31 |
msgid "Today's Visitor Map"
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: dashboard.php:59
|
35 |
-
#:
|
|
|
|
|
36 |
msgid "Hit Statistics"
|
37 |
msgstr ""
|
38 |
|
39 |
-
#: dashboard.php:60
|
|
|
40 |
msgid "Top 10 Pages"
|
41 |
msgstr ""
|
42 |
|
43 |
-
#: dashboard.php:61
|
44 |
-
#: includes/log/
|
45 |
-
#: includes/
|
|
|
46 |
msgid "Recent Visitors"
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: dashboard.php:62
|
50 |
-
#: includes/log/top-referring.php:
|
51 |
-
#: includes/
|
|
|
|
|
52 |
msgid "Top Referring Sites"
|
53 |
msgstr ""
|
54 |
|
55 |
-
#: dashboard.php:63
|
56 |
-
#: includes/log/widgets/
|
|
|
57 |
msgid "Search Engine Referrals"
|
58 |
msgstr ""
|
59 |
|
60 |
-
#: dashboard.php:64
|
|
|
61 |
msgid "Summary"
|
62 |
msgstr ""
|
63 |
|
64 |
-
#: dashboard.php:65
|
65 |
-
#: includes/log/
|
66 |
-
#: includes/
|
|
|
67 |
msgid "Latest Search Words"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: dashboard.php:66
|
71 |
-
#: includes/
|
|
|
72 |
msgid "Top 10 Visitors Today"
|
73 |
msgstr ""
|
74 |
|
75 |
-
#: dashboard.php:97
|
76 |
msgid "Please reload the dashboard to display the content of this widget."
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: dashboard.php:138
|
80 |
msgid "WP Statistics Overview"
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: editor.php:63
|
84 |
msgid "This post is not yet published."
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: includes/functions/geoip-populate.php:26
|
88 |
msgid ""
|
89 |
"Unable to load the GeoIP database, make sure you have downloaded it in the "
|
90 |
"settings page."
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: includes/functions/geoip-populate.php:50
|
|
|
94 |
msgid "Updated %s GeoIP records in the visitors database."
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: includes/functions/purge.php:21
|
98 |
-
#:
|
|
|
|
|
|
|
99 |
msgid "%s data older than %s days purged successfully."
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: includes/functions/purge.php:23
|
103 |
-
#:
|
|
|
|
|
|
|
104 |
msgid "No records found to purge from %s!"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: includes/functions/purge.php:98
|
108 |
msgid "Database pruned on"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: includes/functions/purge.php:103
|
112 |
msgid "Please select a value over 30 days."
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: includes/log/all-browsers.php:8
|
116 |
msgid "Browser Statistics"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: includes/log/all-browsers.php:14
|
120 |
-
#: includes/log/all-browsers.php:
|
121 |
-
#:
|
122 |
-
#:
|
123 |
-
#:
|
124 |
-
#:
|
125 |
-
#: includes/log/
|
126 |
-
#:
|
127 |
-
#:
|
128 |
-
#:
|
129 |
-
#:
|
130 |
-
#:
|
131 |
-
#: includes/log/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
132 |
msgid "Click to toggle"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: includes/log/all-browsers.php:15
|
136 |
-
#: includes/
|
|
|
|
|
|
|
137 |
msgid "Browsers"
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: includes/log/all-browsers.php:42
|
141 |
msgid "Browsers by type"
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: includes/log/all-browsers.php:99
|
145 |
-
#: includes/
|
|
|
146 |
msgid "Platform"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: includes/log/all-browsers.php:126
|
150 |
msgid "Browsers by platform"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: includes/log/all-browsers.php:234
|
|
|
154 |
msgid "%s Version"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: includes/log/exclusions.php:8
|
158 |
msgid ""
|
159 |
"Attention: Exclusion are not currently set to be recorded, the results below "
|
160 |
"may not reflect current statistics!"
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: includes/log/exclusions.php:54
|
164 |
msgid "Exclusions Statistics"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: includes/log/exclusions.php:57
|
168 |
-
#:
|
|
|
|
|
169 |
msgid "10 Days"
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: includes/log/exclusions.php:58
|
173 |
-
#:
|
|
|
|
|
174 |
msgid "20 Days"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: includes/log/exclusions.php:59
|
178 |
-
#:
|
|
|
|
|
179 |
msgid "30 Days"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: includes/log/exclusions.php:60
|
183 |
-
#:
|
|
|
|
|
184 |
msgid "2 Months"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: includes/log/exclusions.php:61
|
188 |
-
#:
|
|
|
|
|
189 |
msgid "3 Months"
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: includes/log/exclusions.php:62
|
193 |
-
#:
|
|
|
|
|
194 |
msgid "6 Months"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: includes/log/exclusions.php:63
|
198 |
-
#:
|
|
|
|
|
199 |
msgid "9 Months"
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: includes/log/exclusions.php:64
|
203 |
-
#:
|
|
|
|
|
204 |
msgid "1 Year"
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: includes/log/exclusions.php:68
|
|
|
208 |
msgid "Total Exclusions: %s"
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: includes/log/exclusions.php:75
|
212 |
msgid "Exclusions Statistical Chart"
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: includes/log/exclusions.php:97
|
216 |
msgid "Excluded hits in the last"
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: includes/log/exclusions.php:97
|
220 |
-
#: includes/log/
|
221 |
-
#: includes/log/
|
222 |
-
#: includes/
|
|
|
|
|
223 |
msgid "days"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: includes/log/exclusions.php:118
|
227 |
msgid "Number of excluded hits"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: includes/log/hit-statistics.php:27
|
231 |
msgid "Hits Statistics Chart"
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: includes/log/hit-statistics.php:60
|
|
|
235 |
msgid "Hits in the last"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: includes/log/hit-statistics.php:81
|
|
|
239 |
msgid "Number of visits and visitors"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: includes/log/hit-statistics.php:95
|
243 |
-
#: includes/log/widgets/
|
|
|
244 |
msgid "Visit"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: includes/log/hit-statistics.php:95
|
248 |
-
#: includes/log/widgets/
|
|
|
249 |
msgid "Visitor"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: includes/log/last-search.php:62
|
253 |
msgid "Latest Search Word Statistics"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: includes/log/last-search.php:97
|
257 |
-
#:
|
258 |
-
#:
|
259 |
-
#: includes/log/widgets/
|
|
|
|
|
|
|
260 |
msgid "#hash#"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: includes/log/last-search.php:102
|
264 |
-
#:
|
265 |
-
#:
|
266 |
-
#: includes/
|
267 |
-
#: includes/
|
|
|
|
|
|
|
268 |
msgid "Map"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: includes/log/last-search.php:139
|
272 |
-
#:
|
273 |
-
#: includes/log/
|
|
|
|
|
274 |
msgid "Page"
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: includes/log/last-search.php:139
|
278 |
-
#:
|
279 |
-
#: includes/log/
|
|
|
|
|
280 |
msgid "From"
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: includes/log/last-visitor.php:32
|
284 |
-
#: includes/
|
|
|
|
|
285 |
msgid "All"
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: includes/log/last-visitor.php:62
|
289 |
msgid "Search for"
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: includes/log/last-visitor.php:64
|
293 |
msgid "Recent Visitor Statistics"
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: includes/log/online.php:11
|
|
|
297 |
msgid "Online Users"
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: includes/log/online.php:73
|
301 |
msgid "Online for "
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: includes/log/
|
|
|
|
|
|
|
|
|
305 |
msgid "Page Trend for Post ID"
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: includes/log/page-statistics.php:48
|
309 |
msgid "Page Trend"
|
310 |
msgstr ""
|
311 |
|
312 |
-
#:
|
|
|
313 |
msgid "Search Engine Referral Statistics"
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: includes/log/search-statistics.php:71
|
|
|
317 |
msgid "Search engine referrals in the last"
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: includes/log/search-statistics.php:92
|
|
|
321 |
msgid "Number of referrals"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: includes/log/search-statistics.php:106
|
325 |
-
#:
|
|
|
|
|
326 |
msgid "Total"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: includes/log/top-countries.php:11
|
330 |
msgid "Top Countries"
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: includes/log/top-countries.php:20
|
334 |
-
#: includes/log/widgets/
|
|
|
335 |
msgid "Rank"
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: includes/log/top-countries.php:21
|
339 |
-
#: includes/log/widgets/
|
|
|
340 |
msgid "Flag"
|
341 |
msgstr ""
|
342 |
|
343 |
-
#: includes/log/top-countries.php:22
|
344 |
-
#: includes/log/widgets/
|
|
|
345 |
msgid "Country"
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: includes/log/top-countries.php:23
|
|
|
349 |
msgid "Visitor Count"
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: includes/log/top-pages.php:13
|
|
|
353 |
msgid "Top Pages"
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: includes/log/top-pages.php:20
|
357 |
msgid "Top 5 Pages Trends"
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: includes/log/top-pages.php:49
|
361 |
msgid "Top 5 Page Trending Stats"
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: includes/log/top-pages.php:70
|
|
|
365 |
msgid "Number of Hits"
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: includes/log/top-pages.php:166
|
|
|
369 |
msgid "No page title found"
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: includes/log/top-pages.php:169
|
373 |
-
#: includes/
|
374 |
-
#: includes/
|
375 |
-
#: includes/settings/tabs/wps-general.php:
|
|
|
376 |
msgid "Visits"
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: includes/log/top-referring.php:4
|
380 |
msgid "To be added soon"
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: includes/log/top-referring.php:40
|
384 |
msgid "Referring sites from"
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: includes/log/top-referring.php:110
|
|
|
388 |
msgid "References"
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: includes/log/top-visitors.php:12
|
392 |
msgid "Top 100 Visitors Today"
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: includes/log/widgets/about.php:8
|
|
|
396 |
msgid "About WP Statistics Version %s"
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: includes/log/widgets/about.php:25
|
400 |
msgid "Website"
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: includes/log/widgets/about.php:26
|
404 |
msgid "Rate and Review"
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: includes/log/widgets/about.php:30
|
408 |
msgid "More Information"
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: includes/log/widgets/about.php:39
|
|
|
|
|
412 |
msgid ""
|
413 |
"This product includes GeoLite2 data created by MaxMind, available from %s."
|
414 |
msgstr ""
|
415 |
|
416 |
-
#: includes/log/widgets/browsers.php:7
|
417 |
-
#:
|
418 |
-
#: includes/log/widgets/
|
419 |
-
#:
|
420 |
-
#: includes/log/widgets/
|
|
|
|
|
|
|
|
|
421 |
msgid "More"
|
422 |
msgstr ""
|
423 |
|
424 |
-
#: includes/log/widgets/browsers.php:47
|
425 |
msgid "Other"
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: includes/log/widgets/google.map.php:9
|
|
|
429 |
msgid "Today Visitors Map"
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: includes/log/widgets/referring.php:31
|
433 |
msgid "Address"
|
434 |
msgstr ""
|
435 |
|
436 |
-
#: includes/log/widgets/summary.php:23
|
437 |
msgid "User(s) Online"
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: includes/log/widgets/summary.php:34
|
|
|
441 |
msgid "Today"
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: includes/log/widgets/summary.php:40
|
|
|
445 |
msgid "Yesterday"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: includes/log/widgets/summary.php:46
|
449 |
msgid "Week"
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: includes/log/widgets/summary.php:52
|
453 |
msgid "Month"
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: includes/log/widgets/summary.php:58
|
457 |
msgid "Year"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: includes/log/widgets/summary.php:98
|
461 |
msgid "Daily Total"
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: includes/log/widgets/summary.php:117
|
465 |
msgid "Current Time and Date"
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: includes/log/widgets/summary.php:117
|
469 |
msgid "(Adjustment)"
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: includes/log/widgets/summary.php:121
|
|
|
473 |
msgid "Date: %s"
|
474 |
msgstr ""
|
475 |
|
476 |
-
#: includes/log/widgets/summary.php:125
|
|
|
477 |
msgid "Time: %s"
|
478 |
msgstr ""
|
479 |
|
480 |
-
#: includes/log/widgets/top.visitors.php:28
|
481 |
-
#: wp-statistics.php:
|
|
|
|
|
482 |
msgid "Hits"
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: includes/log/widgets/top.visitors.php:31
|
486 |
msgid "IP"
|
487 |
msgstr ""
|
488 |
|
489 |
-
#: includes/log/widgets/top.visitors.php:33
|
490 |
msgid "Agent"
|
491 |
msgstr ""
|
492 |
|
493 |
-
#: includes/log/widgets/top.visitors.php:35
|
494 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:291
|
495 |
msgid "Version"
|
496 |
msgstr ""
|
497 |
|
498 |
-
#: includes/optimization/delete-agents.php:5
|
499 |
-
#: includes/optimization/delete-platforms.php:5
|
500 |
-
#: includes/optimization/empty.php:5
|
501 |
-
#: includes/optimization/
|
502 |
-
#: includes/optimization/
|
|
|
|
|
503 |
msgid "Access denied!"
|
504 |
msgstr ""
|
505 |
|
506 |
-
#: includes/optimization/delete-agents.php:14
|
|
|
507 |
msgid "%s agent data deleted successfully."
|
508 |
msgstr ""
|
509 |
|
510 |
-
#: includes/optimization/delete-agents.php:17
|
511 |
msgid "No agent data found to remove!"
|
512 |
msgstr ""
|
513 |
|
514 |
-
#: includes/optimization/delete-agents.php:21
|
515 |
-
#: includes/optimization/delete-platforms.php:21
|
516 |
-
#: includes/optimization/empty.php:42
|
|
|
517 |
msgid "Please select the desired items."
|
518 |
msgstr ""
|
519 |
|
520 |
-
#: includes/optimization/delete-platforms.php:14
|
|
|
521 |
msgid "%s platform data deleted successfully."
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: includes/optimization/delete-platforms.php:17
|
525 |
msgid "No platform data found to remove!"
|
526 |
msgstr ""
|
527 |
|
528 |
-
#: includes/optimization/empty.php:53
|
|
|
529 |
msgid "%s table data deleted successfully."
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: includes/optimization/empty.php:57
|
|
|
533 |
msgid "Error, %s not emptied!"
|
534 |
msgstr ""
|
535 |
|
536 |
-
#: includes/optimization/tabs/wps-optimization-database.php:5
|
537 |
msgid "Database Setup"
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: includes/optimization/tabs/wps-optimization-database.php:10
|
541 |
msgid "Re-run Install"
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: includes/optimization/tabs/wps-optimization-database.php:14
|
545 |
msgid "Install Now!"
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: includes/optimization/tabs/wps-optimization-database.php:15
|
549 |
msgid ""
|
550 |
"If for some reason your installation of WP Statistics is missing the "
|
551 |
"database tables or other core items, this will re-execute the install "
|
552 |
"process."
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: includes/optimization/tabs/wps-optimization-database.php:20
|
556 |
msgid "Database Index"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: includes/optimization/tabs/wps-optimization-database.php:25
|
560 |
-
#: includes/optimization/tabs/wps-optimization-updates.php:21
|
561 |
-
#: wp-statistics.php:
|
|
|
562 |
msgid "Countries"
|
563 |
msgstr ""
|
564 |
|
565 |
-
#: includes/optimization/tabs/wps-optimization-database.php:39
|
566 |
-
#: includes/optimization/tabs/wps-optimization-updates.php:25
|
567 |
-
#: includes/optimization/tabs/wps-optimization-updates.php:40
|
568 |
msgid "Update Now!"
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: includes/optimization/tabs/wps-optimization-database.php:40
|
572 |
msgid ""
|
573 |
"Older installs of WP Statistics allow for duplicate entries in the visitors "
|
574 |
"table in a corner case. Newer installs protect against this with a unique "
|
@@ -577,637 +696,653 @@ msgid ""
|
|
577 |
"vistitors table, delete duplicate entries and add the index."
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: includes/optimization/tabs/wps-optimization-database.php:41
|
581 |
msgid ""
|
582 |
"This operation could take a long time on installs with many rows in the "
|
583 |
"visitors table."
|
584 |
msgstr ""
|
585 |
|
586 |
-
#: includes/optimization/tabs/wps-optimization-database.php:46
|
587 |
msgid ""
|
588 |
"Older installs of WP Statistics allow for duplicate entries in the visitors "
|
589 |
"table in a corner case. Newer installs protect against this with a unique "
|
590 |
"index on the table."
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: includes/optimization/tabs/wps-optimization-database.php:47
|
594 |
msgid ""
|
595 |
"Congratulations, your installation is already up to date, nothing to do."
|
596 |
msgstr ""
|
597 |
|
598 |
-
#: includes/optimization/tabs/wps-optimization-export.php:7
|
599 |
-
#: includes/optimization/wps-optimization.php:147
|
600 |
msgid "Export"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: includes/optimization/tabs/wps-optimization-export.php:12
|
604 |
msgid "Export from"
|
605 |
msgstr ""
|
606 |
|
607 |
-
#: includes/optimization/tabs/wps-optimization-export.php:17
|
608 |
-
#: includes/optimization/tabs/wps-optimization-export.php:35
|
609 |
-
#: includes/optimization/tabs/wps-optimization-purging.php:129
|
610 |
-
#: includes/optimization/tabs/wps-optimization-purging.php:170
|
611 |
-
#: includes/optimization/tabs/wps-optimization-purging.php:194
|
612 |
-
#: includes/settings/tabs/wps-notifications.php:134
|
613 |
-
#: includes/settings/tabs/wps-notifications.php:164
|
614 |
msgid "Please select"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: includes/optimization/tabs/wps-optimization-export.php:24
|
618 |
msgid "Select the table for the output file."
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: includes/optimization/tabs/wps-optimization-export.php:30
|
622 |
msgid "Export To"
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: includes/optimization/tabs/wps-optimization-export.php:41
|
626 |
msgid "Select the output file type."
|
627 |
msgstr ""
|
628 |
|
629 |
-
#: includes/optimization/tabs/wps-optimization-export.php:47
|
630 |
msgid "Include Header Row"
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: includes/optimization/tabs/wps-optimization-export.php:52
|
634 |
msgid "Include a header row as the first line of the exported file."
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: includes/optimization/tabs/wps-optimization-export.php:53
|
638 |
msgid "Start Now!"
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: includes/optimization/tabs/wps-optimization-historical.php:15
|
642 |
msgid "Historical Values"
|
643 |
msgstr ""
|
644 |
|
645 |
-
#: includes/optimization/tabs/wps-optimization-historical.php:20
|
646 |
msgid ""
|
647 |
"Note: As you have just purged the database you must reload this page for "
|
648 |
"these numbers to be correct."
|
649 |
msgstr ""
|
650 |
|
651 |
-
#: includes/optimization/tabs/wps-optimization-historical.php:26
|
652 |
-
#: includes/settings/tabs/wps-general.php:138
|
653 |
-
#: includes/settings/tabs/wps-general.php:143
|
|
|
|
|
654 |
msgid "Visitors"
|
655 |
msgstr ""
|
656 |
|
657 |
-
#: includes/optimization/tabs/wps-optimization-historical.php:31
|
|
|
658 |
msgid ""
|
659 |
"Number of historical number of visitors to the site (current value is %s)."
|
660 |
msgstr ""
|
661 |
|
662 |
-
#: includes/optimization/tabs/wps-optimization-historical.php:42
|
|
|
663 |
msgid ""
|
664 |
"Number of historical number of visits to the site (current value is %s)."
|
665 |
msgstr ""
|
666 |
|
667 |
-
#: includes/optimization/tabs/wps-optimization-historical.php:48
|
668 |
msgid "Update now!"
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: includes/optimization/tabs/wps-optimization-purging.php:10
|
672 |
-
#: includes/optimization/tabs/wps-optimization-purging.php:37
|
673 |
-
#: includes/optimization/tabs/wps-optimization-purging.php:63
|
674 |
-
#: includes/optimization/tabs/wps-optimization-purging.php:91
|
675 |
msgid "Are you sure?"
|
676 |
msgstr ""
|
677 |
|
678 |
-
#: includes/optimization/tabs/wps-optimization-purging.php:119
|
679 |
msgid "Data"
|
680 |
msgstr ""
|
681 |
|
682 |
-
#: includes/optimization/tabs/wps-optimization-purging.php:124
|
683 |
msgid "Empty Table"
|
684 |
msgstr ""
|
685 |
|
686 |
-
#: includes/optimization/tabs/wps-optimization-purging.php:137
|
687 |
msgid "All data table will be lost."
|
688 |
msgstr ""
|
689 |
|
690 |
-
#: includes/optimization/tabs/wps-optimization-purging.php:138
|
691 |
msgid "Clear now!"
|
692 |
msgstr ""
|
693 |
|
694 |
-
#: includes/optimization/tabs/wps-optimization-purging.php:146
|
695 |
msgid "Purge records older than"
|
696 |
msgstr ""
|
697 |
|
698 |
-
#: includes/optimization/tabs/wps-optimization-purging.php:152
|
699 |
msgid ""
|
700 |
"Deleted user statistics data older than the selected number of days. "
|
701 |
"Minimum value is 30 days."
|
702 |
msgstr ""
|
703 |
|
704 |
-
#: includes/optimization/tabs/wps-optimization-purging.php:153
|
705 |
msgid "Purge now!"
|
706 |
msgstr ""
|
707 |
|
708 |
-
#: includes/optimization/tabs/wps-optimization-purging.php:160
|
709 |
msgid "Delete User Agent Types"
|
710 |
msgstr ""
|
711 |
|
712 |
-
#: includes/optimization/tabs/wps-optimization-purging.php:165
|
713 |
msgid "Delete Agents"
|
714 |
msgstr ""
|
715 |
|
716 |
-
#: includes/optimization/tabs/wps-optimization-purging.php:180
|
717 |
msgid "All visitor data will be lost for this agent type."
|
718 |
msgstr ""
|
719 |
|
720 |
-
#: includes/optimization/tabs/wps-optimization-purging.php:181
|
721 |
-
#: includes/optimization/tabs/wps-optimization-purging.php:205
|
722 |
msgid "Delete now!"
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: includes/optimization/tabs/wps-optimization-purging.php:189
|
726 |
msgid "Delete Platforms"
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: includes/optimization/tabs/wps-optimization-purging.php:204
|
730 |
msgid "All visitor data will be lost for this platform type."
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:17
|
734 |
msgid "Resources"
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:22
|
738 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:27
|
739 |
msgid "Memory usage in PHP"
|
740 |
msgstr ""
|
741 |
|
742 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:26
|
743 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:37
|
744 |
msgid "Byte"
|
745 |
msgstr ""
|
746 |
|
747 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:33
|
748 |
msgid "Last Overview page memory usage"
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:38
|
752 |
msgid "Memory usage in the overview page"
|
753 |
msgstr ""
|
754 |
|
755 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:44
|
756 |
msgid "PHP Memory Limit"
|
757 |
msgstr ""
|
758 |
|
759 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:49
|
760 |
msgid "The memory limit a script is allowed to consume, set in php.ini."
|
761 |
msgstr ""
|
762 |
|
763 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:55
|
764 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:66
|
765 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:77
|
766 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:88
|
767 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:99
|
768 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:110
|
|
|
769 |
msgid "Number of rows in the %s table"
|
770 |
msgstr ""
|
771 |
|
772 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:59
|
773 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:70
|
774 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:81
|
775 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:92
|
776 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:103
|
777 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:114
|
778 |
msgid "Row"
|
779 |
msgstr ""
|
780 |
|
781 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:60
|
782 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:71
|
783 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:82
|
784 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:93
|
785 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:104
|
786 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:115
|
787 |
msgid "Number of rows"
|
788 |
msgstr ""
|
789 |
|
790 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:120
|
791 |
msgid "Version Info"
|
792 |
msgstr ""
|
793 |
|
794 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:125
|
795 |
msgid "WP Statistics Version"
|
796 |
msgstr ""
|
797 |
|
798 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:130
|
799 |
msgid "The WP Statistics version you are running."
|
800 |
msgstr ""
|
801 |
|
802 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:136
|
803 |
msgid "PHP Version"
|
804 |
msgstr ""
|
805 |
|
806 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:141
|
807 |
msgid "The PHP version you are running."
|
808 |
msgstr ""
|
809 |
|
810 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:147
|
811 |
msgid "PHP Safe Mode"
|
812 |
msgstr ""
|
813 |
|
814 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:152
|
815 |
msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
|
816 |
msgstr ""
|
817 |
|
818 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:158
|
819 |
msgid "jQuery Version"
|
820 |
msgstr ""
|
821 |
|
822 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:163
|
823 |
msgid "The jQuery version you are running."
|
824 |
msgstr ""
|
825 |
|
826 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:169
|
827 |
msgid "cURL Version"
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:173
|
831 |
msgid "cURL not installed"
|
832 |
msgstr ""
|
833 |
|
834 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:174
|
835 |
msgid ""
|
836 |
"The PHP cURL Extension version you are running. cURL is required for the "
|
837 |
"GeoIP code, if it is not installed GeoIP will be disabled."
|
838 |
msgstr ""
|
839 |
|
840 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:180
|
841 |
msgid "BC Math"
|
842 |
msgstr ""
|
843 |
|
844 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:184
|
845 |
msgid "Installed"
|
846 |
msgstr ""
|
847 |
|
848 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:184
|
849 |
msgid "Not installed"
|
850 |
msgstr ""
|
851 |
|
852 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:185
|
853 |
msgid ""
|
854 |
"If the PHP BC Math Extension is installed. BC Math is no longer required "
|
855 |
"for the GeoIP code and is listed here only for historical reasons."
|
856 |
msgstr ""
|
857 |
|
858 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:190
|
859 |
msgid "File Info"
|
860 |
msgstr ""
|
861 |
|
862 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:195
|
863 |
msgid "GeoIP Database"
|
864 |
msgstr ""
|
865 |
|
866 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:204
|
867 |
msgid "Database file does not exist."
|
868 |
msgstr ""
|
869 |
|
870 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:206
|
871 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:225
|
872 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:244
|
873 |
msgid ", created on "
|
874 |
msgstr ""
|
875 |
|
876 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:208
|
877 |
msgid "The file size and date of the GeoIP database."
|
878 |
msgstr ""
|
879 |
|
880 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:214
|
881 |
msgid "browscap.ini File"
|
882 |
msgstr ""
|
883 |
|
884 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:223
|
885 |
msgid "browscap.ini file does not exist."
|
886 |
msgstr ""
|
887 |
|
888 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:227
|
889 |
msgid "The file size and date of the browscap.ini file."
|
890 |
msgstr ""
|
891 |
|
892 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:233
|
893 |
msgid "browscap Cache File"
|
894 |
msgstr ""
|
895 |
|
896 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:242
|
897 |
msgid "browscap cache file does not exist."
|
898 |
msgstr ""
|
899 |
|
900 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:246
|
901 |
msgid "The file size and date of the browscap cache file."
|
902 |
msgstr ""
|
903 |
|
904 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:251
|
905 |
msgid "Client Info"
|
906 |
msgstr ""
|
907 |
|
908 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:256
|
909 |
msgid "Client IP"
|
910 |
msgstr ""
|
911 |
|
912 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:261
|
913 |
msgid "The client IP address."
|
914 |
msgstr ""
|
915 |
|
916 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:267
|
917 |
msgid "User Agent"
|
918 |
msgstr ""
|
919 |
|
920 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:272
|
921 |
msgid "The client user agent string."
|
922 |
msgstr ""
|
923 |
|
924 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:278
|
925 |
msgid "Browser"
|
926 |
msgstr ""
|
927 |
|
928 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:285
|
929 |
msgid "The detected client browser."
|
930 |
msgstr ""
|
931 |
|
932 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:296
|
933 |
msgid "The detected client browser version."
|
934 |
msgstr ""
|
935 |
|
936 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:307
|
937 |
msgid "The detected client platform."
|
938 |
msgstr ""
|
939 |
|
940 |
-
#: includes/optimization/tabs/wps-optimization-updates.php:4
|
941 |
msgid ""
|
942 |
"This will replace all IP addresses in the database with hash values and "
|
943 |
"cannot be undo, are you sure?"
|
944 |
msgstr ""
|
945 |
|
946 |
-
#: includes/optimization/tabs/wps-optimization-updates.php:16
|
947 |
msgid "GeoIP Options"
|
948 |
msgstr ""
|
949 |
|
950 |
-
#: includes/optimization/tabs/wps-optimization-updates.php:26
|
951 |
msgid ""
|
952 |
"Updates any unknown location data in the database, this may take a while"
|
953 |
msgstr ""
|
954 |
|
955 |
-
#: includes/optimization/tabs/wps-optimization-updates.php:31
|
956 |
-
#: includes/settings/tabs/wps-general.php:66
|
957 |
msgid "IP Addresses"
|
958 |
msgstr ""
|
959 |
|
960 |
-
#: includes/optimization/tabs/wps-optimization-updates.php:36
|
961 |
-
#: includes/settings/tabs/wps-general.php:71
|
962 |
msgid "Hash IP Addresses"
|
963 |
msgstr ""
|
964 |
|
965 |
-
#: includes/optimization/tabs/wps-optimization-updates.php:41
|
966 |
msgid ""
|
967 |
"Replace IP addresses in the database with hash values, you will not be able "
|
968 |
"to recover the IP addresses in the future to populate location information "
|
969 |
"afterwards and this may take a while"
|
970 |
msgstr ""
|
971 |
|
972 |
-
#: includes/optimization/wps-optimization.php:43
|
973 |
msgid "IP Addresses replaced with hash values."
|
974 |
msgstr ""
|
975 |
|
976 |
-
#: includes/optimization/wps-optimization.php:51
|
977 |
msgid "Install routine complete."
|
978 |
msgstr ""
|
979 |
|
980 |
-
#: includes/optimization/wps-optimization.php:146
|
981 |
msgid "Resources/Information"
|
982 |
msgstr ""
|
983 |
|
984 |
-
#: includes/optimization/wps-optimization.php:148
|
985 |
msgid "Purging"
|
986 |
msgstr ""
|
987 |
|
988 |
-
#: includes/optimization/wps-optimization.php:149
|
989 |
msgid "Database"
|
990 |
msgstr ""
|
991 |
|
992 |
-
#: includes/optimization/wps-optimization.php:150
|
993 |
msgid "Updates"
|
994 |
msgstr ""
|
995 |
|
996 |
-
#: includes/optimization/wps-optimization.php:151
|
997 |
msgid "Historical"
|
998 |
msgstr ""
|
999 |
|
1000 |
-
#: includes/settings/tabs/wps-about.php:8
|
|
|
1001 |
msgid "WP Statistics V%s"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
-
#: includes/settings/tabs/wps-about.php:20
|
1005 |
msgid "Visit Us Online"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
-
#: includes/settings/tabs/wps-about.php:24
|
|
|
1009 |
msgid ""
|
1010 |
"Come visit our great new %s and keep up to date on the latest news about WP "
|
1011 |
"Statistics."
|
1012 |
msgstr ""
|
1013 |
|
1014 |
-
#: includes/settings/tabs/wps-about.php:24
|
1015 |
msgid "website"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
-
#: includes/settings/tabs/wps-about.php:28
|
1019 |
msgid "Rate and Review at WordPress.org"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
-
#: includes/settings/tabs/wps-about.php:32
|
1023 |
msgid "Thanks for installing WP Statistics, we encourage you to submit a "
|
1024 |
msgstr ""
|
1025 |
|
1026 |
-
#: includes/settings/tabs/wps-about.php:32
|
1027 |
msgid "rating and review"
|
1028 |
msgstr ""
|
1029 |
|
1030 |
-
#: includes/settings/tabs/wps-about.php:32
|
1031 |
msgid "over at WordPress.org. Your feedback is greatly appreciated!"
|
1032 |
msgstr ""
|
1033 |
|
1034 |
-
#: includes/settings/tabs/wps-about.php:36
|
1035 |
msgid "Translations"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
-
#: includes/settings/tabs/wps-about.php:40
|
|
|
1039 |
msgid ""
|
1040 |
"WP Statistics supports internationalization and we encourage our users to "
|
1041 |
"submit translations, please visit our %s to see the current status and %s if "
|
1042 |
"you would like to help."
|
1043 |
msgstr ""
|
1044 |
|
1045 |
-
#: includes/settings/tabs/wps-about.php:40
|
1046 |
msgid "translation collaboration site"
|
1047 |
msgstr ""
|
1048 |
|
1049 |
-
#: includes/settings/tabs/wps-about.php:40
|
1050 |
msgid "drop us a line"
|
1051 |
msgstr ""
|
1052 |
|
1053 |
-
#: includes/settings/tabs/wps-about.php:44
|
1054 |
msgid "Support"
|
1055 |
msgstr ""
|
1056 |
|
1057 |
-
#: includes/settings/tabs/wps-about.php:49
|
1058 |
msgid ""
|
1059 |
"We're sorry you're having problem with WP Statistics and we're happy to help "
|
1060 |
"out. Here are a few things to do before contacting us:"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
-
#: includes/settings/tabs/wps-about.php:52
|
1064 |
-
#: includes/settings/tabs/wps-about.php:53
|
|
|
1065 |
msgid "Have you read the %s?"
|
1066 |
msgstr ""
|
1067 |
|
1068 |
-
#: includes/settings/tabs/wps-about.php:52
|
1069 |
msgid "FAQs"
|
1070 |
msgstr ""
|
1071 |
|
1072 |
-
#: includes/settings/tabs/wps-about.php:53
|
1073 |
msgid "manual"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
-
#: includes/settings/tabs/wps-about.php:54
|
|
|
1077 |
msgid "Have you search the %s for a similar issue?"
|
1078 |
msgstr ""
|
1079 |
|
1080 |
-
#: includes/settings/tabs/wps-about.php:54
|
1081 |
msgid "support forum"
|
1082 |
msgstr ""
|
1083 |
|
1084 |
-
#: includes/settings/tabs/wps-about.php:55
|
1085 |
msgid "Have you search the Internet for any error messages you are receiving?"
|
1086 |
msgstr ""
|
1087 |
|
1088 |
-
#: includes/settings/tabs/wps-about.php:56
|
1089 |
msgid "Make sure you have access to your PHP error logs."
|
1090 |
msgstr ""
|
1091 |
|
1092 |
-
#: includes/settings/tabs/wps-about.php:59
|
1093 |
msgid "And a few things to double-check:"
|
1094 |
msgstr ""
|
1095 |
|
1096 |
-
#: includes/settings/tabs/wps-about.php:62
|
1097 |
msgid "How's your memory_limit in php.ini?"
|
1098 |
msgstr ""
|
1099 |
|
1100 |
-
#: includes/settings/tabs/wps-about.php:63
|
1101 |
msgid "Have you tried disabling any other plugins you may have installed?"
|
1102 |
msgstr ""
|
1103 |
|
1104 |
-
#: includes/settings/tabs/wps-about.php:64
|
1105 |
msgid "Have you tried using the default WordPress theme?"
|
1106 |
msgstr ""
|
1107 |
|
1108 |
-
#: includes/settings/tabs/wps-about.php:65
|
1109 |
msgid "Have you double checked the plugin settings?"
|
1110 |
msgstr ""
|
1111 |
|
1112 |
-
#: includes/settings/tabs/wps-about.php:66
|
1113 |
msgid "Do you have all the required PHP extensions installed?"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
-
#: includes/settings/tabs/wps-about.php:67
|
1117 |
msgid ""
|
1118 |
"Are you getting a blank or incomplete page displayed in your browser? Did "
|
1119 |
"you view the source for the page and check for any fatal errors?"
|
1120 |
msgstr ""
|
1121 |
|
1122 |
-
#: includes/settings/tabs/wps-about.php:68
|
1123 |
msgid "Have you checked your PHP and web server error logs?"
|
1124 |
msgstr ""
|
1125 |
|
1126 |
-
#: includes/settings/tabs/wps-about.php:71
|
1127 |
msgid "Still not having any luck?"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
-
#: includes/settings/tabs/wps-about.php:71
|
|
|
1131 |
msgid ""
|
1132 |
"Then please open a new thread on the %s and we'll respond as soon as "
|
1133 |
"possible."
|
1134 |
msgstr ""
|
1135 |
|
1136 |
-
#: includes/settings/tabs/wps-about.php:71
|
1137 |
msgid "WordPress.org support forum"
|
1138 |
msgstr ""
|
1139 |
|
1140 |
-
#: includes/settings/tabs/wps-about.php:75
|
|
|
1141 |
msgid "Alternatively %s support is available as well."
|
1142 |
msgstr ""
|
1143 |
|
1144 |
-
#: includes/settings/tabs/wps-about.php:75
|
1145 |
msgid "Farsi"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
-
#: includes/settings/tabs/wps-access-level.php:21
|
1149 |
-
msgid "WP Statistics Honey Page"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
-
#: includes/settings/tabs/wps-access-level.php:22
|
1153 |
msgid "This is the honey pot for WP Statistics to use, do not delete."
|
1154 |
msgstr ""
|
1155 |
|
1156 |
-
#: includes/settings/tabs/wps-access-level.php:45
|
1157 |
msgid "Access Levels"
|
1158 |
msgstr ""
|
1159 |
|
1160 |
-
#: includes/settings/tabs/wps-access-level.php:74
|
1161 |
msgid "Required user level to view WP Statistics"
|
1162 |
msgstr ""
|
1163 |
|
1164 |
-
#: includes/settings/tabs/wps-access-level.php:89
|
1165 |
msgid "Required user level to manage WP Statistics"
|
1166 |
msgstr ""
|
1167 |
|
1168 |
-
#: includes/settings/tabs/wps-access-level.php:97
|
|
|
1169 |
msgid "See the %s for details on capability levels."
|
1170 |
msgstr ""
|
1171 |
|
1172 |
-
#: includes/settings/tabs/wps-access-level.php:97
|
1173 |
msgid "WordPress Roles and Capabilities page"
|
1174 |
msgstr ""
|
1175 |
|
1176 |
-
#: includes/settings/tabs/wps-access-level.php:98
|
1177 |
msgid ""
|
1178 |
"Hint: manage_network = Super Admin Network, manage_options = Administrator, "
|
1179 |
"edit_others_posts = Editor, publish_posts = Author, edit_posts = "
|
1180 |
"Contributor, read = Everyone."
|
1181 |
msgstr ""
|
1182 |
|
1183 |
-
#: includes/settings/tabs/wps-access-level.php:99
|
1184 |
msgid ""
|
1185 |
"Each of the above casscades the rights upwards in the default WordPress "
|
1186 |
"configuration. So for example selecting publish_posts grants the right to "
|
1187 |
"Authors, Editors, Admins and Super Admins."
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#: includes/settings/tabs/wps-access-level.php:100
|
|
|
1191 |
msgid ""
|
1192 |
"If you need a more robust solution to delegate access you might want to look "
|
1193 |
"at %s in the WordPress plugin directory."
|
1194 |
msgstr ""
|
1195 |
|
1196 |
-
#: includes/settings/tabs/wps-access-level.php:105
|
|
|
|
|
1197 |
msgid "Exclusions"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
-
#: includes/settings/tabs/wps-access-level.php:109
|
1201 |
msgid "Record exclusions"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
-
#: includes/settings/tabs/wps-access-level.php:111
|
1205 |
-
#: includes/settings/tabs/wps-access-level.php:165
|
1206 |
-
#: includes/settings/tabs/wps-access-level.php:192
|
1207 |
msgid "Enable"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
-
#: includes/settings/tabs/wps-access-level.php:112
|
1211 |
msgid ""
|
1212 |
"This will record all the excluded hits in a separate table with the reasons "
|
1213 |
"why it was excluded but no other information. This will generate a lot of "
|
@@ -1215,64 +1350,66 @@ msgid ""
|
|
1215 |
"gets, not just actual user visits."
|
1216 |
msgstr ""
|
1217 |
|
1218 |
-
#: includes/settings/tabs/wps-access-level.php:117
|
1219 |
msgid "Exclude User Roles"
|
1220 |
msgstr ""
|
1221 |
|
1222 |
-
#: includes/settings/tabs/wps-access-level.php:133
|
1223 |
-
#: includes/settings/tabs/wps-access-level.php:247
|
1224 |
-
#: includes/settings/tabs/wps-access-level.php:254
|
|
|
1225 |
msgid "Exclude"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
-
#: includes/settings/tabs/wps-access-level.php:134
|
|
|
1229 |
msgid "Exclude %s role from data collection."
|
1230 |
msgstr ""
|
1231 |
|
1232 |
-
#: includes/settings/tabs/wps-access-level.php:140
|
1233 |
msgid "IP/Robot Exclusions"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
-
#: includes/settings/tabs/wps-access-level.php:144
|
1237 |
msgid "Robot list"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
-
#: includes/settings/tabs/wps-access-level.php:157
|
1241 |
msgid ""
|
1242 |
"A list of words (one per line) to match against to detect robots. Entries "
|
1243 |
"must be at least 4 characters long or they will be ignored."
|
1244 |
msgstr ""
|
1245 |
|
1246 |
-
#: includes/settings/tabs/wps-access-level.php:158
|
1247 |
msgid "Reset to Default"
|
1248 |
msgstr ""
|
1249 |
|
1250 |
-
#: includes/settings/tabs/wps-access-level.php:163
|
1251 |
msgid "Force robot list update after upgrades"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
-
#: includes/settings/tabs/wps-access-level.php:166
|
1255 |
msgid ""
|
1256 |
"Force the robot list to be reset to the default after an update to WP "
|
1257 |
"Statistics takes place. Note if this option is enabled any custom robots "
|
1258 |
"you have added to the list will be lost."
|
1259 |
msgstr ""
|
1260 |
|
1261 |
-
#: includes/settings/tabs/wps-access-level.php:171
|
1262 |
msgid "Robot visit threshold"
|
1263 |
msgstr ""
|
1264 |
|
1265 |
-
#: includes/settings/tabs/wps-access-level.php:174
|
1266 |
msgid ""
|
1267 |
"Treat visitors with more than this number of visits per day as robots. 0 = "
|
1268 |
"disabled."
|
1269 |
msgstr ""
|
1270 |
|
1271 |
-
#: includes/settings/tabs/wps-access-level.php:179
|
1272 |
msgid "Excluded IP address list"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
-
#: includes/settings/tabs/wps-access-level.php:182
|
1276 |
msgid ""
|
1277 |
"A list of IP addresses and subnet masks (one per line) to exclude from "
|
1278 |
"statistics collection (both 192.168.0.0/24 and 192.168.0.0/255.255.255.0 "
|
@@ -1280,58 +1417,58 @@ msgid ""
|
|
1280 |
"32 or 255.255.255.255."
|
1281 |
msgstr ""
|
1282 |
|
1283 |
-
#: includes/settings/tabs/wps-access-level.php:183
|
1284 |
msgid "Add 10.0.0.0"
|
1285 |
msgstr ""
|
1286 |
|
1287 |
-
#: includes/settings/tabs/wps-access-level.php:184
|
1288 |
msgid "Add 172.16.0.0"
|
1289 |
msgstr ""
|
1290 |
|
1291 |
-
#: includes/settings/tabs/wps-access-level.php:185
|
1292 |
msgid "Add 192.168.0.0"
|
1293 |
msgstr ""
|
1294 |
|
1295 |
-
#: includes/settings/tabs/wps-access-level.php:190
|
1296 |
msgid "Use honey pot"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
-
#: includes/settings/tabs/wps-access-level.php:193
|
1300 |
msgid "Use a honey pot page to identify robots."
|
1301 |
msgstr ""
|
1302 |
|
1303 |
-
#: includes/settings/tabs/wps-access-level.php:198
|
1304 |
msgid "Honey pot post id"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
-
#: includes/settings/tabs/wps-access-level.php:201
|
1308 |
msgid "The post id to use for the honeypot page."
|
1309 |
msgstr ""
|
1310 |
|
1311 |
-
#: includes/settings/tabs/wps-access-level.php:202
|
1312 |
msgid "Create a new honey pot page"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
-
#: includes/settings/tabs/wps-access-level.php:207
|
1316 |
msgid "GeoIP Exclusions"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
-
#: includes/settings/tabs/wps-access-level.php:211
|
1320 |
msgid "Excluded countries list"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
-
#: includes/settings/tabs/wps-access-level.php:214
|
1324 |
msgid ""
|
1325 |
"A list of country codes (one per line, two letters each) to exclude from "
|
1326 |
"statistics collection. Use \"000\" (three zeros) to exclude unknown "
|
1327 |
"countries."
|
1328 |
msgstr ""
|
1329 |
|
1330 |
-
#: includes/settings/tabs/wps-access-level.php:219
|
1331 |
msgid "Included countries list"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
-
#: includes/settings/tabs/wps-access-level.php:222
|
1335 |
msgid ""
|
1336 |
"A list of country codes (one per line, two letters each) to include in "
|
1337 |
"statistics collection, if this list is not empty, only visitors from the "
|
@@ -1339,21 +1476,21 @@ msgid ""
|
|
1339 |
"unknown countries."
|
1340 |
msgstr ""
|
1341 |
|
1342 |
-
#: includes/settings/tabs/wps-access-level.php:227
|
1343 |
msgid "Host Exclusions"
|
1344 |
msgstr ""
|
1345 |
|
1346 |
-
#: includes/settings/tabs/wps-access-level.php:231
|
1347 |
msgid "Excluded hosts list"
|
1348 |
msgstr ""
|
1349 |
|
1350 |
-
#: includes/settings/tabs/wps-access-level.php:234
|
1351 |
msgid ""
|
1352 |
"A list of fully qualified host names (ie. server.example.com, one per line) "
|
1353 |
"to exclude from statistics collection."
|
1354 |
msgstr ""
|
1355 |
|
1356 |
-
#: includes/settings/tabs/wps-access-level.php:236
|
1357 |
msgid ""
|
1358 |
"Note: this option will NOT perform a reverse DNS lookup on each page load "
|
1359 |
"but instead cache the IP address for the provided hostnames for one hour. "
|
@@ -1362,100 +1499,108 @@ msgid ""
|
|
1362 |
"resulting in some hits recorded."
|
1363 |
msgstr ""
|
1364 |
|
1365 |
-
#: includes/settings/tabs/wps-access-level.php:241
|
1366 |
msgid "Site URL Exclusions"
|
1367 |
msgstr ""
|
1368 |
|
1369 |
-
#: includes/settings/tabs/wps-access-level.php:245
|
1370 |
msgid "Excluded login page"
|
1371 |
msgstr ""
|
1372 |
|
1373 |
-
#: includes/settings/tabs/wps-access-level.php:248
|
1374 |
msgid "Exclude the login page for registering as a hit."
|
1375 |
msgstr ""
|
1376 |
|
1377 |
-
#: includes/settings/tabs/wps-access-level.php:252
|
1378 |
msgid "Excluded admin pages"
|
1379 |
msgstr ""
|
1380 |
|
1381 |
-
#: includes/settings/tabs/wps-access-level.php:255
|
1382 |
msgid "Exclude the admin pages for registering as a hit."
|
1383 |
msgstr ""
|
1384 |
|
1385 |
-
#: includes/settings/tabs/wps-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1386 |
msgid "browscap settings"
|
1387 |
msgstr ""
|
1388 |
|
1389 |
-
#: includes/settings/tabs/wps-browscap.php:27
|
1390 |
msgid "browscap usage"
|
1391 |
msgstr ""
|
1392 |
|
1393 |
-
#: includes/settings/tabs/wps-browscap.php:32
|
1394 |
-
#: includes/settings/tabs/wps-browscap.php:56
|
1395 |
-
#: includes/settings/tabs/wps-general.php:76
|
1396 |
-
#: includes/settings/tabs/wps-general.php:92
|
1397 |
-
#: includes/settings/tabs/wps-general.php:116
|
1398 |
-
#: includes/settings/tabs/wps-general.php:132
|
1399 |
-
#: includes/settings/tabs/wps-general.php:148
|
1400 |
-
#: includes/settings/tabs/wps-general.php:160
|
1401 |
-
#: includes/settings/tabs/wps-general.php:187
|
1402 |
-
#: includes/settings/tabs/wps-general.php:199
|
1403 |
-
#: includes/settings/tabs/wps-general.php:214
|
1404 |
-
#: includes/settings/tabs/wps-general.php:228
|
1405 |
-
#: includes/settings/tabs/wps-general.php:258
|
1406 |
-
#: includes/settings/tabs/wps-general.php:270
|
1407 |
-
#: includes/settings/tabs/wps-general.php:313
|
1408 |
-
#: includes/settings/tabs/wps-geoip.php:
|
1409 |
-
#: includes/settings/tabs/wps-geoip.php:
|
1410 |
-
#: includes/settings/tabs/wps-geoip.php:
|
1411 |
-
#: includes/settings/tabs/wps-maintenance.php:40
|
1412 |
-
#: includes/settings/tabs/wps-notifications.php:69
|
1413 |
-
#: includes/settings/tabs/wps-notifications.php:81
|
1414 |
-
#: includes/settings/tabs/wps-notifications.php:93
|
1415 |
-
#: includes/settings/tabs/wps-notifications.php:105
|
1416 |
-
#: includes/settings/tabs/wps-notifications.php:121
|
1417 |
-
#: includes/settings/tabs/wps-overview-display.php:87
|
1418 |
-
#: includes/settings/tabs/wps-overview-display.php:107
|
1419 |
-
#: includes/settings/tabs/wps-overview-display.php:147
|
1420 |
-
#: includes/settings/tabs/wps-overview-display.php:159
|
1421 |
msgid "Active"
|
1422 |
msgstr ""
|
1423 |
|
1424 |
-
#: includes/settings/tabs/wps-browscap.php:33
|
1425 |
msgid "The browscap database will be downloaded and used to detect robots."
|
1426 |
msgstr ""
|
1427 |
|
1428 |
-
#: includes/settings/tabs/wps-browscap.php:39
|
1429 |
msgid "Update browscap Info"
|
1430 |
msgstr ""
|
1431 |
|
1432 |
-
#: includes/settings/tabs/wps-browscap.php:44
|
1433 |
msgid "Download browscap Database"
|
1434 |
msgstr ""
|
1435 |
|
1436 |
-
#: includes/settings/tabs/wps-browscap.php:45
|
1437 |
-
#: includes/settings/tabs/wps-geoip.php:
|
1438 |
msgid "Save changes on this page to download the update."
|
1439 |
msgstr ""
|
1440 |
|
1441 |
-
#: includes/settings/tabs/wps-browscap.php:51
|
1442 |
msgid "Schedule weekly update of browscap DB"
|
1443 |
msgstr ""
|
1444 |
|
1445 |
-
#: includes/settings/tabs/wps-browscap.php:59
|
1446 |
-
#: includes/settings/tabs/wps-geoip.php:
|
1447 |
msgid "Next update will be"
|
1448 |
msgstr ""
|
1449 |
|
1450 |
-
#: includes/settings/tabs/wps-browscap.php:74
|
1451 |
msgid "Download of the browscap database will be scheduled for once a week."
|
1452 |
msgstr ""
|
1453 |
|
1454 |
-
#: includes/settings/tabs/wps-general.php:50
|
1455 |
msgid "This will delete the manual when you save the settings, are you sure?"
|
1456 |
msgstr ""
|
1457 |
|
1458 |
-
#: includes/settings/tabs/wps-general.php:77
|
1459 |
msgid ""
|
1460 |
"This feature will not store IP addresses in the database but instead used a "
|
1461 |
"unique hash. The \"Store entire user agent string\" setting will be "
|
@@ -1463,927 +1608,1005 @@ msgid ""
|
|
1463 |
"addresses in the future to recover location information if this is enabled."
|
1464 |
msgstr ""
|
1465 |
|
1466 |
-
#: includes/settings/tabs/wps-general.php:82
|
1467 |
msgid "Users Online"
|
1468 |
msgstr ""
|
1469 |
|
1470 |
-
#: includes/settings/tabs/wps-general.php:87
|
1471 |
msgid "User online"
|
1472 |
msgstr ""
|
1473 |
|
1474 |
-
#: includes/settings/tabs/wps-general.php:93
|
1475 |
-
#: includes/settings/tabs/wps-general.php:133
|
1476 |
-
#: includes/settings/tabs/wps-general.php:149
|
1477 |
-
#: includes/settings/tabs/wps-general.php:188
|
1478 |
-
#: includes/settings/tabs/wps-general.php:200
|
1479 |
-
#: includes/settings/tabs/wps-general.php:229
|
1480 |
-
#: includes/settings/tabs/wps-notifications.php:122
|
1481 |
msgid "Enable or disable this feature"
|
1482 |
msgstr ""
|
1483 |
|
1484 |
-
#: includes/settings/tabs/wps-general.php:99
|
1485 |
msgid "Check for online users every"
|
1486 |
msgstr ""
|
1487 |
|
1488 |
-
#: includes/settings/tabs/wps-general.php:104
|
1489 |
msgid "Second"
|
1490 |
msgstr ""
|
1491 |
|
1492 |
-
#: includes/settings/tabs/wps-general.php:105
|
|
|
1493 |
msgid "Time for the check accurate online user in the site. Now: %s Second"
|
1494 |
msgstr ""
|
1495 |
|
1496 |
-
#: includes/settings/tabs/wps-general.php:111
|
1497 |
msgid "Record all user"
|
1498 |
msgstr ""
|
1499 |
|
1500 |
-
#: includes/settings/tabs/wps-general.php:117
|
1501 |
msgid ""
|
1502 |
"Ignores the exclusion settings and records all users that are online "
|
1503 |
"(including self referrals and robots). Should only be used for "
|
1504 |
"troubleshooting."
|
1505 |
msgstr ""
|
1506 |
|
1507 |
-
#: includes/settings/tabs/wps-general.php:155
|
1508 |
msgid "Store entire user agent string"
|
1509 |
msgstr ""
|
1510 |
|
1511 |
-
#: includes/settings/tabs/wps-general.php:161
|
1512 |
msgid "Only enabled for debugging"
|
1513 |
msgstr ""
|
1514 |
|
1515 |
-
#: includes/settings/tabs/wps-general.php:167
|
1516 |
msgid "Coefficient per visitor"
|
1517 |
msgstr ""
|
1518 |
|
1519 |
-
#: includes/settings/tabs/wps-general.php:172
|
|
|
1520 |
msgid "For each visit to account for several hits. Currently %s."
|
1521 |
msgstr ""
|
1522 |
|
1523 |
-
#: includes/settings/tabs/wps-general.php:177
|
1524 |
-
#: includes/settings/tabs/wps-general.php:182
|
|
|
|
|
1525 |
msgid "Pages"
|
1526 |
msgstr ""
|
1527 |
|
1528 |
-
#: includes/settings/tabs/wps-general.php:194
|
1529 |
msgid "Track all pages"
|
1530 |
msgstr ""
|
1531 |
|
1532 |
-
#: includes/settings/tabs/wps-general.php:209
|
1533 |
msgid "Strip parameters from URI"
|
1534 |
msgstr ""
|
1535 |
|
1536 |
-
#: includes/settings/tabs/wps-general.php:215
|
1537 |
msgid "This will remove anything after the ? in a URL."
|
1538 |
msgstr ""
|
1539 |
|
1540 |
-
#: includes/settings/tabs/wps-general.php:223
|
1541 |
msgid "Disable hits column in post/pages list"
|
1542 |
msgstr ""
|
1543 |
|
1544 |
-
#: includes/settings/tabs/wps-general.php:234
|
1545 |
msgid "Miscellaneous"
|
1546 |
msgstr ""
|
1547 |
|
1548 |
-
#: includes/settings/tabs/wps-general.php:239
|
1549 |
msgid "Show stats in menu bar"
|
1550 |
msgstr ""
|
1551 |
|
1552 |
-
#: includes/settings/tabs/wps-general.php:244
|
1553 |
msgid "No"
|
1554 |
msgstr ""
|
1555 |
|
1556 |
-
#: includes/settings/tabs/wps-general.php:245
|
1557 |
msgid "Yes"
|
1558 |
msgstr ""
|
1559 |
|
1560 |
-
#: includes/settings/tabs/wps-general.php:247
|
1561 |
msgid "Show stats in admin menu bar"
|
1562 |
msgstr ""
|
1563 |
|
1564 |
-
#: includes/settings/tabs/wps-general.php:253
|
1565 |
msgid "Hide admin notices about non active features"
|
1566 |
msgstr ""
|
1567 |
|
1568 |
-
#: includes/settings/tabs/wps-general.php:259
|
1569 |
msgid ""
|
1570 |
"By default WP Statistics displays an alert if any of the core features are "
|
1571 |
"disabled on every admin page, this option will disable these notices."
|
1572 |
msgstr ""
|
1573 |
|
1574 |
-
#: includes/settings/tabs/wps-general.php:265
|
1575 |
msgid "Delete the manual"
|
1576 |
msgstr ""
|
1577 |
|
1578 |
-
#: includes/settings/tabs/wps-general.php:271
|
1579 |
msgid ""
|
1580 |
"By default WP Statistics stores the admin manual in the plugin directory (~5 "
|
1581 |
"meg), if this option is enabled it will be deleted now and during upgrades "
|
1582 |
"in the future."
|
1583 |
msgstr ""
|
1584 |
|
1585 |
-
#: includes/settings/tabs/wps-general.php:276
|
1586 |
msgid "Search Engines"
|
1587 |
msgstr ""
|
1588 |
|
1589 |
-
#: includes/settings/tabs/wps-general.php:281
|
1590 |
msgid ""
|
1591 |
"Disabling all search engines is not allowed, doing so will result in all "
|
1592 |
"search engines being active."
|
1593 |
msgstr ""
|
1594 |
|
1595 |
-
#: includes/settings/tabs/wps-general.php:296
|
1596 |
msgid "disable"
|
1597 |
msgstr ""
|
1598 |
|
1599 |
-
#: includes/settings/tabs/wps-general.php:297
|
|
|
1600 |
msgid "Disable %s from data collection and reporting."
|
1601 |
msgstr ""
|
1602 |
|
1603 |
-
#: includes/settings/tabs/wps-general.php:303
|
1604 |
msgid "Charts"
|
1605 |
msgstr ""
|
1606 |
|
1607 |
-
#: includes/settings/tabs/wps-general.php:308
|
1608 |
msgid "Include totals"
|
1609 |
msgstr ""
|
1610 |
|
1611 |
-
#: includes/settings/tabs/wps-general.php:314
|
1612 |
msgid ""
|
1613 |
"Add a total line to charts with multiple values, like the search engine "
|
1614 |
"referrals"
|
1615 |
msgstr ""
|
1616 |
|
1617 |
-
#: includes/settings/tabs/wps-geoip.php:
|
1618 |
msgid "GeoIP settings"
|
1619 |
msgstr ""
|
1620 |
|
1621 |
-
#: includes/settings/tabs/wps-geoip.php:
|
|
|
1622 |
msgid ""
|
1623 |
"IP location services provided by GeoLite2 data created by MaxMind, available "
|
1624 |
"from %s."
|
1625 |
msgstr ""
|
1626 |
|
1627 |
-
#: includes/settings/tabs/wps-geoip.php:
|
1628 |
msgid "GeoIP collection"
|
1629 |
msgstr ""
|
1630 |
|
1631 |
-
#: includes/settings/tabs/wps-geoip.php:
|
1632 |
msgid ""
|
1633 |
"For get more information and location (country) from visitor, enable this "
|
1634 |
"feature."
|
1635 |
msgstr ""
|
1636 |
|
1637 |
-
#: includes/settings/tabs/wps-geoip.php:
|
1638 |
msgid "Update GeoIP Info"
|
1639 |
msgstr ""
|
1640 |
|
1641 |
-
#: includes/settings/tabs/wps-geoip.php:
|
1642 |
msgid "Download GeoIP Database"
|
1643 |
msgstr ""
|
1644 |
|
1645 |
-
#: includes/settings/tabs/wps-geoip.php:
|
1646 |
msgid "Schedule monthly update of GeoIP DB"
|
1647 |
msgstr ""
|
1648 |
|
1649 |
-
#: includes/settings/tabs/wps-geoip.php:
|
1650 |
msgid ""
|
1651 |
"Download of the GeoIP database will be scheduled for 2 days after the first "
|
1652 |
"Tuesday of the month."
|
1653 |
msgstr ""
|
1654 |
|
1655 |
-
#: includes/settings/tabs/wps-geoip.php:
|
1656 |
msgid ""
|
1657 |
"This option will also download the database if the local filesize is less "
|
1658 |
"than 1k (which usually means the stub that comes with the plugin is still in "
|
1659 |
"place)."
|
1660 |
msgstr ""
|
1661 |
|
1662 |
-
#: includes/settings/tabs/wps-geoip.php:
|
1663 |
msgid "Populate missing GeoIP after update of GeoIP DB"
|
1664 |
msgstr ""
|
1665 |
|
1666 |
-
#: includes/settings/tabs/wps-geoip.php:
|
1667 |
msgid "Update any missing GeoIP data after downloading a new database."
|
1668 |
msgstr ""
|
1669 |
|
1670 |
-
#: includes/settings/tabs/wps-geoip.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1671 |
msgid "GeoIP collection is disabled due to the following reasons:"
|
1672 |
msgstr ""
|
1673 |
|
1674 |
-
#: includes/settings/tabs/wps-geoip.php:
|
|
|
1675 |
msgid ""
|
1676 |
"GeoIP collection requires PHP %s or above, it is currently disabled due to "
|
1677 |
"the installed PHP version being "
|
1678 |
msgstr ""
|
1679 |
|
1680 |
-
#: includes/settings/tabs/wps-geoip.php:
|
1681 |
msgid ""
|
1682 |
"GeoIP collection requires the cURL PHP extension and it is not loaded on "
|
1683 |
"your version of PHP!"
|
1684 |
msgstr ""
|
1685 |
|
1686 |
-
#: includes/settings/tabs/wps-geoip.php:
|
1687 |
msgid ""
|
1688 |
"GeoIP collection requires the BC Math PHP extension and it is not loaded on "
|
1689 |
"your version of PHP!"
|
1690 |
msgstr ""
|
1691 |
|
1692 |
-
#: includes/settings/tabs/wps-geoip.php:
|
1693 |
msgid ""
|
1694 |
"PHP safe mode detected! GeoIP collection is not supported with PHP's safe "
|
1695 |
"mode enabled!"
|
1696 |
msgstr ""
|
1697 |
|
1698 |
-
#: includes/settings/tabs/wps-maintenance.php:20
|
1699 |
msgid ""
|
1700 |
"This will permanently delete data from the database each day, are you sure "
|
1701 |
"you want to enable this option?"
|
1702 |
msgstr ""
|
1703 |
|
1704 |
-
#: includes/settings/tabs/wps-maintenance.php:30
|
1705 |
msgid "Database Maintenance"
|
1706 |
msgstr ""
|
1707 |
|
1708 |
-
#: includes/settings/tabs/wps-maintenance.php:35
|
1709 |
msgid "Run a daily WP Cron job to prune the databases"
|
1710 |
msgstr ""
|
1711 |
|
1712 |
-
#: includes/settings/tabs/wps-maintenance.php:41
|
1713 |
msgid ""
|
1714 |
"A WP Cron job will be run daily to prune any data older than a set number of "
|
1715 |
"days."
|
1716 |
msgstr ""
|
1717 |
|
1718 |
-
#: includes/settings/tabs/wps-maintenance.php:47
|
1719 |
msgid "Prune data older than"
|
1720 |
msgstr ""
|
1721 |
|
1722 |
-
#: includes/settings/tabs/wps-maintenance.php:52
|
1723 |
msgid "Days"
|
1724 |
msgstr ""
|
1725 |
|
1726 |
-
#: includes/settings/tabs/wps-maintenance.php:53
|
1727 |
msgid ""
|
1728 |
"The number of days to keep statistics for. Minimum value is 30 days. "
|
1729 |
"Invalid values will disable the daily maintenance."
|
1730 |
msgstr ""
|
1731 |
|
1732 |
-
#: includes/settings/tabs/wps-notifications.php:44
|
1733 |
msgid "Common Report Options"
|
1734 |
msgstr ""
|
1735 |
|
1736 |
-
#: includes/settings/tabs/wps-notifications.php:49
|
1737 |
msgid "E-mail addresses"
|
1738 |
msgstr ""
|
1739 |
|
1740 |
-
#: includes/settings/tabs/wps-notifications.php:54
|
1741 |
msgid "A comma separated list of e-mail addresses to send reports to."
|
1742 |
msgstr ""
|
1743 |
|
1744 |
-
#: includes/settings/tabs/wps-notifications.php:59
|
1745 |
msgid "Update Reports"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
-
#: includes/settings/tabs/wps-notifications.php:64
|
1749 |
msgid "Browscap"
|
1750 |
msgstr ""
|
1751 |
|
1752 |
-
#: includes/settings/tabs/wps-notifications.php:70
|
1753 |
msgid "Send a report whenever the browscap.ini is updated."
|
1754 |
msgstr ""
|
1755 |
|
1756 |
-
#: includes/settings/tabs/wps-notifications.php:76
|
1757 |
-
#: includes/settings/wps-settings.php:104
|
1758 |
msgid "GeoIP"
|
1759 |
msgstr ""
|
1760 |
|
1761 |
-
#: includes/settings/tabs/wps-notifications.php:82
|
1762 |
msgid "Send a report whenever the GeoIP database is updated."
|
1763 |
msgstr ""
|
1764 |
|
1765 |
-
#: includes/settings/tabs/wps-notifications.php:88
|
1766 |
msgid "Pruning"
|
1767 |
msgstr ""
|
1768 |
|
1769 |
-
#: includes/settings/tabs/wps-notifications.php:94
|
1770 |
msgid "Send a report whenever the pruning of database is run."
|
1771 |
msgstr ""
|
1772 |
|
1773 |
-
#: includes/settings/tabs/wps-notifications.php:100
|
1774 |
msgid "Upgrade"
|
1775 |
msgstr ""
|
1776 |
|
1777 |
-
#: includes/settings/tabs/wps-notifications.php:106
|
1778 |
msgid "Send a report whenever the plugin is upgraded."
|
1779 |
msgstr ""
|
1780 |
|
1781 |
-
#: includes/settings/tabs/wps-notifications.php:111
|
1782 |
-
#: includes/settings/tabs/wps-notifications.php:116
|
|
|
1783 |
msgid "Statistical reporting"
|
1784 |
msgstr ""
|
1785 |
|
1786 |
-
#: includes/settings/tabs/wps-notifications.php:129
|
1787 |
msgid "Schedule"
|
1788 |
msgstr ""
|
1789 |
|
1790 |
-
#: includes/settings/tabs/wps-notifications.php:153
|
1791 |
msgid "Select how often to receive statistical report."
|
1792 |
msgstr ""
|
1793 |
|
1794 |
-
#: includes/settings/tabs/wps-notifications.php:159
|
1795 |
msgid "Send reports via"
|
1796 |
msgstr ""
|
1797 |
|
1798 |
-
#: includes/settings/tabs/wps-notifications.php:165
|
1799 |
msgid "Email"
|
1800 |
msgstr ""
|
1801 |
|
1802 |
-
#: includes/settings/tabs/wps-notifications.php:167
|
1803 |
msgid "SMS"
|
1804 |
msgstr ""
|
1805 |
|
1806 |
-
#: includes/settings/tabs/wps-notifications.php:170
|
1807 |
msgid "Select delivery method for statistical report."
|
1808 |
msgstr ""
|
1809 |
|
1810 |
-
#: includes/settings/tabs/wps-notifications.php:173
|
|
|
1811 |
msgid "Note: To send SMS text messages please install the %s plugin."
|
1812 |
msgstr ""
|
1813 |
|
1814 |
-
#: includes/settings/tabs/wps-notifications.php:173
|
1815 |
msgid "WordPress SMS"
|
1816 |
msgstr ""
|
1817 |
|
1818 |
-
#: includes/settings/tabs/wps-notifications.php:180
|
1819 |
msgid "Report body"
|
1820 |
msgstr ""
|
1821 |
|
1822 |
-
#: includes/settings/tabs/wps-notifications.php:185
|
1823 |
msgid "Enter the contents of the report."
|
1824 |
msgstr ""
|
1825 |
|
1826 |
-
#: includes/settings/tabs/wps-notifications.php:187
|
1827 |
msgid ""
|
1828 |
"Any shortcode supported by your installation of WordPress, include all "
|
1829 |
"shortcodes for WP Statistics (see the admin manual for a list of codes "
|
1830 |
"available) are supported in the body of the message. Here are some examples:"
|
1831 |
msgstr ""
|
1832 |
|
1833 |
-
#: includes/settings/tabs/wps-notifications.php:188
|
1834 |
-
#:
|
|
|
|
|
1835 |
msgid "User Online"
|
1836 |
msgstr ""
|
1837 |
|
1838 |
-
#: includes/settings/tabs/wps-notifications.php:189
|
1839 |
-
#: widget.php:
|
|
|
1840 |
msgid "Today Visitor"
|
1841 |
msgstr ""
|
1842 |
|
1843 |
-
#: includes/settings/tabs/wps-notifications.php:190
|
1844 |
-
#: widget.php:
|
|
|
1845 |
msgid "Today Visit"
|
1846 |
msgstr ""
|
1847 |
|
1848 |
-
#: includes/settings/tabs/wps-notifications.php:191
|
1849 |
-
#: widget.php:
|
|
|
1850 |
msgid "Yesterday Visitor"
|
1851 |
msgstr ""
|
1852 |
|
1853 |
-
#: includes/settings/tabs/wps-notifications.php:192
|
|
|
1854 |
msgid "Yesterday Visit"
|
1855 |
msgstr ""
|
1856 |
|
1857 |
-
#: includes/settings/tabs/wps-notifications.php:193
|
1858 |
-
#: widget.php:
|
|
|
1859 |
msgid "Total Visitor"
|
1860 |
msgstr ""
|
1861 |
|
1862 |
-
#: includes/settings/tabs/wps-notifications.php:194
|
1863 |
-
#: widget.php:
|
|
|
1864 |
msgid "Total Visit"
|
1865 |
msgstr ""
|
1866 |
|
1867 |
-
#: includes/settings/tabs/wps-overview-display.php:23
|
1868 |
-
#: includes/settings/tabs/wps-overview-display.php:32
|
1869 |
msgid "None"
|
1870 |
msgstr ""
|
1871 |
|
1872 |
-
#: includes/settings/tabs/wps-overview-display.php:24
|
1873 |
msgid "Summary Statistics"
|
1874 |
msgstr ""
|
1875 |
|
1876 |
-
#: includes/settings/tabs/wps-overview-display.php:28
|
1877 |
-
#: includes/settings/wps-settings.php:108
|
1878 |
msgid "About"
|
1879 |
msgstr ""
|
1880 |
|
1881 |
-
#: includes/settings/tabs/wps-overview-display.php:34
|
1882 |
msgid "Hits Statistical Chart"
|
1883 |
msgstr ""
|
1884 |
|
1885 |
-
#: includes/settings/tabs/wps-overview-display.php:36
|
1886 |
msgid "Search Engine Referrers Statistical Chart"
|
1887 |
msgstr ""
|
1888 |
|
1889 |
-
#: includes/settings/tabs/wps-overview-display.php:38
|
1890 |
msgid "Top Pages Visited"
|
1891 |
msgstr ""
|
1892 |
|
1893 |
-
#: includes/settings/tabs/wps-overview-display.php:73
|
1894 |
msgid "Dashboard"
|
1895 |
msgstr ""
|
1896 |
|
1897 |
-
#: includes/settings/tabs/wps-overview-display.php:77
|
1898 |
-
#: includes/settings/tabs/wps-overview-display.php:97
|
1899 |
-
#: includes/settings/tabs/wps-overview-display.php:117
|
1900 |
msgid "The following items are global to all users."
|
1901 |
msgstr ""
|
1902 |
|
1903 |
-
#: includes/settings/tabs/wps-overview-display.php:82
|
1904 |
msgid "Disable dashboard widgets"
|
1905 |
msgstr ""
|
1906 |
|
1907 |
-
#: includes/settings/tabs/wps-overview-display.php:88
|
1908 |
msgid "Disable the dashboard widgets."
|
1909 |
msgstr ""
|
1910 |
|
1911 |
-
#: includes/settings/tabs/wps-overview-display.php:93
|
1912 |
msgid "Page/Post Editor"
|
1913 |
msgstr ""
|
1914 |
|
1915 |
-
#: includes/settings/tabs/wps-overview-display.php:102
|
1916 |
msgid "Disable post/page editor widget"
|
1917 |
msgstr ""
|
1918 |
|
1919 |
-
#: includes/settings/tabs/wps-overview-display.php:108
|
1920 |
msgid "Disable the page/post editor widget."
|
1921 |
msgstr ""
|
1922 |
|
1923 |
-
#: includes/settings/tabs/wps-overview-display.php:122
|
1924 |
msgid "Map type"
|
1925 |
msgstr ""
|
1926 |
|
1927 |
-
#: includes/settings/tabs/wps-overview-display.php:128
|
1928 |
msgid "Google"
|
1929 |
msgstr ""
|
1930 |
|
1931 |
-
#: includes/settings/tabs/wps-overview-display.php:128
|
1932 |
msgid "JQVMap"
|
1933 |
msgstr ""
|
1934 |
|
1935 |
-
#: includes/settings/tabs/wps-overview-display.php:135
|
1936 |
msgid ""
|
1937 |
"The \"Google\" option will use Google's mapping service to plot the recent "
|
1938 |
"visitors (requires access to Google)."
|
1939 |
msgstr ""
|
1940 |
|
1941 |
-
#: includes/settings/tabs/wps-overview-display.php:136
|
1942 |
msgid ""
|
1943 |
"The \"JQVMap\" option will use JQVMap javascript mapping library to plot the "
|
1944 |
"recent visitors (requires no extenral services)."
|
1945 |
msgstr ""
|
1946 |
|
1947 |
-
#: includes/settings/tabs/wps-overview-display.php:142
|
1948 |
msgid "Disable map"
|
1949 |
msgstr ""
|
1950 |
|
1951 |
-
#: includes/settings/tabs/wps-overview-display.php:148
|
1952 |
msgid "Disable the map display"
|
1953 |
msgstr ""
|
1954 |
|
1955 |
-
#: includes/settings/tabs/wps-overview-display.php:154
|
1956 |
msgid "Get country location from Google"
|
1957 |
msgstr ""
|
1958 |
|
1959 |
-
#: includes/settings/tabs/wps-overview-display.php:160
|
1960 |
msgid ""
|
1961 |
"This feature may cause a performance degradation when viewing statistics and "
|
1962 |
"is only valid if the map type is set to \"Google\"."
|
1963 |
msgstr ""
|
1964 |
|
1965 |
-
#: includes/settings/tabs/wps-overview-display.php:171
|
1966 |
msgid "Overview Widgets to Display"
|
1967 |
msgstr ""
|
1968 |
|
1969 |
-
#: includes/settings/tabs/wps-overview-display.php:175
|
1970 |
msgid ""
|
1971 |
"The following items are unique to each user. If you do not select the "
|
1972 |
"'About' widget it will automatically be displayed in the last positon of "
|
1973 |
"column A."
|
1974 |
msgstr ""
|
1975 |
|
1976 |
-
#: includes/settings/tabs/wps-overview-display.php:180
|
1977 |
msgid "Slot"
|
1978 |
msgstr ""
|
1979 |
|
1980 |
-
#: includes/settings/tabs/wps-overview-display.php:184
|
1981 |
msgid "Column A"
|
1982 |
msgstr ""
|
1983 |
|
1984 |
-
#: includes/settings/tabs/wps-overview-display.php:188
|
1985 |
msgid "Column B"
|
1986 |
msgstr ""
|
1987 |
|
1988 |
-
#: includes/settings/tabs/wps-overview-display.php:194
|
1989 |
msgid "Slot 1"
|
1990 |
msgstr ""
|
1991 |
|
1992 |
-
#: includes/settings/tabs/wps-overview-display.php:224
|
1993 |
msgid "Slot 2"
|
1994 |
msgstr ""
|
1995 |
|
1996 |
-
#: includes/settings/tabs/wps-overview-display.php:254
|
1997 |
msgid "Slot 3"
|
1998 |
msgstr ""
|
1999 |
|
2000 |
-
#: includes/settings/tabs/wps-overview-display.php:284
|
2001 |
msgid "Slot 4"
|
2002 |
msgstr ""
|
2003 |
|
2004 |
-
#: includes/settings/tabs/wps-overview-display.php:314
|
2005 |
msgid "Slot 5"
|
2006 |
msgstr ""
|
2007 |
|
2008 |
-
#: includes/settings/tabs/wps-overview-display.php:344
|
2009 |
msgid "Slot 6"
|
2010 |
msgstr ""
|
2011 |
|
2012 |
-
#: includes/settings/tabs/wps-overview-display.php:348
|
2013 |
-
#: includes/settings/tabs/wps-overview-display.php:370
|
2014 |
msgid "N/A"
|
2015 |
msgstr ""
|
2016 |
|
2017 |
-
#: includes/settings/tabs/wps-overview-display.php:366
|
2018 |
msgid "Slot 7"
|
2019 |
msgstr ""
|
2020 |
|
2021 |
-
#: includes/settings/tabs/wps-removal.php:15
|
2022 |
msgid "WP Statisitcs Removal"
|
2023 |
msgstr ""
|
2024 |
|
2025 |
-
#: includes/settings/tabs/wps-removal.php:20
|
2026 |
msgid ""
|
2027 |
"Uninstalling WP Statistics will not remove the data and settings, you can "
|
2028 |
"use this option to remove the WP Statistics data from your install before "
|
2029 |
"uninstalling the plugin."
|
2030 |
msgstr ""
|
2031 |
|
2032 |
-
#: includes/settings/tabs/wps-removal.php:23
|
2033 |
msgid ""
|
2034 |
"Once you submit this form the settings will be deleted during the page load, "
|
2035 |
"however WP Statistics will still show up in your Admin menu until another "
|
2036 |
"page load is executed."
|
2037 |
msgstr ""
|
2038 |
|
2039 |
-
#: includes/settings/tabs/wps-removal.php:29
|
2040 |
msgid "Remove data and settings"
|
2041 |
msgstr ""
|
2042 |
|
2043 |
-
#: includes/settings/tabs/wps-removal.php:34
|
2044 |
msgid "Remove"
|
2045 |
msgstr ""
|
2046 |
|
2047 |
-
#: includes/settings/tabs/wps-removal.php:35
|
2048 |
msgid "Remove data and settings, this action cannot be undone."
|
2049 |
msgstr ""
|
2050 |
|
2051 |
-
#: includes/settings/wps-settings.php:100
|
2052 |
msgid "General"
|
2053 |
msgstr ""
|
2054 |
|
2055 |
-
#: includes/settings/wps-settings.php:101
|
2056 |
msgid "Notifications"
|
2057 |
msgstr ""
|
2058 |
|
2059 |
-
#: includes/settings/wps-settings.php:102
|
2060 |
msgid "Dashboard/Overview"
|
2061 |
msgstr ""
|
2062 |
|
2063 |
-
#: includes/settings/wps-settings.php:103
|
2064 |
msgid "Access/Exclusions"
|
2065 |
msgstr ""
|
2066 |
|
2067 |
-
#: includes/settings/wps-settings.php:105
|
2068 |
msgid "browscap"
|
2069 |
msgstr ""
|
2070 |
|
2071 |
-
#: includes/settings/wps-settings.php:106
|
2072 |
msgid "Maintenance"
|
2073 |
msgstr ""
|
2074 |
|
2075 |
-
#: includes/settings/wps-settings.php:107
|
2076 |
msgid "Removal"
|
2077 |
msgstr ""
|
2078 |
|
2079 |
-
#: includes/settings/wps-settings.php:150
|
2080 |
msgid "Update"
|
2081 |
msgstr ""
|
2082 |
|
2083 |
-
#: manual/manual.php:29
|
|
|
2084 |
msgid "Manual not found: %s"
|
2085 |
msgstr ""
|
2086 |
|
2087 |
-
#: manual/manual.php:39
|
|
|
2088 |
msgid "Invalid file type selected: %s"
|
2089 |
msgstr ""
|
2090 |
|
2091 |
-
#: schedule.php:10
|
2092 |
msgid "Once Weekly"
|
2093 |
msgstr ""
|
2094 |
|
2095 |
-
#: schedule.php:17
|
2096 |
msgid "Once Every 2 Weeks"
|
2097 |
msgstr ""
|
2098 |
|
2099 |
-
#: schedule.php:24
|
2100 |
msgid "Once Every 4 Weeks"
|
2101 |
msgstr ""
|
2102 |
|
2103 |
-
#:
|
|
|
|
|
2104 |
msgid "Statistics"
|
2105 |
msgstr ""
|
2106 |
|
2107 |
-
#: widget.php:15
|
2108 |
msgid "Show site stats in sidebar."
|
2109 |
msgstr ""
|
2110 |
|
2111 |
-
#: widget.php:73
|
|
|
2112 |
msgid "Week Visit"
|
2113 |
msgstr ""
|
2114 |
|
2115 |
-
#: widget.php:80
|
|
|
2116 |
msgid "Month Visit"
|
2117 |
msgstr ""
|
2118 |
|
2119 |
-
#: widget.php:87
|
|
|
2120 |
msgid "Years Visit"
|
2121 |
msgstr ""
|
2122 |
|
2123 |
-
#: widget.php:108
|
|
|
2124 |
msgid "Total Page Views"
|
2125 |
msgstr ""
|
2126 |
|
2127 |
-
#: widget.php:116
|
2128 |
msgid "Search Engine referred"
|
2129 |
msgstr ""
|
2130 |
|
2131 |
-
#: widget.php:123
|
|
|
2132 |
msgid "Total Posts"
|
2133 |
msgstr ""
|
2134 |
|
2135 |
-
#: widget.php:130
|
|
|
2136 |
msgid "Total Pages"
|
2137 |
msgstr ""
|
2138 |
|
2139 |
-
#: widget.php:137
|
|
|
2140 |
msgid "Total Comments"
|
2141 |
msgstr ""
|
2142 |
|
2143 |
-
#: widget.php:144
|
|
|
2144 |
msgid "Total Spams"
|
2145 |
msgstr ""
|
2146 |
|
2147 |
-
#: widget.php:151
|
|
|
2148 |
msgid "Total Users"
|
2149 |
msgstr ""
|
2150 |
|
2151 |
-
#: widget.php:158
|
|
|
2152 |
msgid "Average Posts"
|
2153 |
msgstr ""
|
2154 |
|
2155 |
-
#: widget.php:165
|
|
|
2156 |
msgid "Average Comments"
|
2157 |
msgstr ""
|
2158 |
|
2159 |
-
#: widget.php:172
|
|
|
2160 |
msgid "Average Users"
|
2161 |
msgstr ""
|
2162 |
|
2163 |
-
#: widget.php:179
|
|
|
2164 |
msgid "Last Post Date"
|
2165 |
msgstr ""
|
2166 |
|
2167 |
-
#: widget.php:238
|
2168 |
msgid "Name"
|
2169 |
msgstr ""
|
2170 |
|
2171 |
-
#: widget.php:242
|
2172 |
msgid "Items"
|
2173 |
msgstr ""
|
2174 |
|
2175 |
-
#:
|
|
|
2176 |
msgid "Yesterday visit"
|
2177 |
msgstr ""
|
2178 |
|
2179 |
-
#: widget.php:278
|
2180 |
msgid "Search Engine Referred"
|
2181 |
msgstr ""
|
2182 |
|
2183 |
-
#: widget.php:281
|
2184 |
msgid "Select type of search engine"
|
2185 |
msgstr ""
|
2186 |
|
2187 |
-
#: wp-statistics.php:27
|
2188 |
msgid ""
|
2189 |
"ERROR: WP Statistics has detected an unsupported version of PHP, WP "
|
2190 |
"Statistics will not function without PHP Version "
|
2191 |
msgstr ""
|
2192 |
|
2193 |
-
#: wp-statistics.php:27
|
2194 |
msgid " or higher!"
|
2195 |
msgstr ""
|
2196 |
|
2197 |
-
#: wp-statistics.php:27
|
2198 |
msgid "Your current PHP version is"
|
2199 |
msgstr ""
|
2200 |
|
2201 |
-
#: wp-statistics.php:42
|
2202 |
msgid "WP Statistics has been removed, please disable and delete it."
|
2203 |
msgstr ""
|
2204 |
|
2205 |
-
|
2206 |
-
#: wp-statistics.php:53
|
2207 |
msgid "WP Statistics"
|
2208 |
msgstr ""
|
2209 |
|
2210 |
-
|
2211 |
-
#: wp-statistics.php:54
|
2212 |
msgid "Complete statistics for your WordPress site."
|
2213 |
msgstr ""
|
2214 |
|
2215 |
-
#: wp-statistics.php:97
|
|
|
2216 |
msgid ""
|
2217 |
"Online user tracking in WP Statistics is not enabled, please go to %s and "
|
2218 |
"enable it."
|
2219 |
msgstr ""
|
2220 |
|
2221 |
-
#: wp-
|
|
|
|
|
2222 |
msgid "setting page"
|
2223 |
msgstr ""
|
2224 |
|
2225 |
-
#: wp-statistics.php:100
|
|
|
2226 |
msgid ""
|
2227 |
"Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
|
2228 |
msgstr ""
|
2229 |
|
2230 |
-
#: wp-statistics.php:103
|
|
|
2231 |
msgid ""
|
2232 |
"Visitor tracking in WP Statistics is not enabled, please go to %s and enable "
|
2233 |
"it."
|
2234 |
msgstr ""
|
2235 |
|
2236 |
-
#: wp-statistics.php:106
|
|
|
2237 |
msgid ""
|
2238 |
"GeoIP collection is not active, please go to %s and enable this feature."
|
2239 |
msgstr ""
|
2240 |
|
2241 |
-
#: wp-statistics.php:106
|
2242 |
msgid "Setting page > GeoIP"
|
2243 |
msgstr ""
|
2244 |
|
2245 |
-
#: wp-statistics
|
|
|
|
|
2246 |
msgid "Settings"
|
2247 |
msgstr ""
|
2248 |
|
2249 |
-
#: wp-statistics.php:
|
2250 |
msgid "Click here to visit the plugin on WordPress.org"
|
2251 |
msgstr ""
|
2252 |
|
2253 |
-
#: wp-statistics.php:
|
2254 |
msgid "Visit WordPress.org page"
|
2255 |
msgstr ""
|
2256 |
|
2257 |
-
#: wp-statistics.php:
|
2258 |
msgid "Click here to rate and review this plugin on WordPress.org"
|
2259 |
msgstr ""
|
2260 |
|
2261 |
-
#: wp-statistics.php:
|
2262 |
msgid "Rate this plugin"
|
2263 |
msgstr ""
|
2264 |
|
2265 |
-
#: wp-statistics.php:
|
2266 |
msgid "WP Statistics - Hits"
|
2267 |
msgstr ""
|
2268 |
|
2269 |
-
#: wp-statistics.php:
|
|
|
|
|
2270 |
msgid "Overview"
|
2271 |
msgstr ""
|
2272 |
|
2273 |
-
#: wp-statistics.php:
|
|
|
2274 |
msgid "Online"
|
2275 |
msgstr ""
|
2276 |
|
2277 |
-
#: wp-statistics.php:
|
2278 |
-
|
|
|
2279 |
msgstr ""
|
2280 |
|
2281 |
-
#: wp-statistics.php:
|
|
|
2282 |
msgid "Searches"
|
2283 |
msgstr ""
|
2284 |
|
2285 |
-
#: wp-statistics.php:
|
|
|
2286 |
msgid "Search Words"
|
2287 |
msgstr ""
|
2288 |
|
2289 |
-
#: wp-statistics.php:
|
|
|
2290 |
msgid "Top Visitors Today"
|
2291 |
msgstr ""
|
2292 |
|
2293 |
-
#: wp-statistics.php:
|
|
|
2294 |
msgid "Optimization"
|
2295 |
msgstr ""
|
2296 |
|
2297 |
-
#: wp-statistics.php:
|
|
|
2298 |
msgid "Manual"
|
2299 |
msgstr ""
|
2300 |
|
2301 |
-
#: wp-statistics.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2302 |
msgid "Today visitor"
|
2303 |
msgstr ""
|
2304 |
|
2305 |
-
#: wp-statistics.php:
|
2306 |
msgid "Today visit"
|
2307 |
msgstr ""
|
2308 |
|
2309 |
-
#: wp-statistics.php:
|
2310 |
msgid "Yesterday visitor"
|
2311 |
msgstr ""
|
2312 |
|
2313 |
-
#: wp-statistics.php:
|
2314 |
msgid "View Stats"
|
2315 |
msgstr ""
|
2316 |
|
2317 |
-
#: wp-statistics.php:
|
2318 |
msgid "Download ODF file"
|
2319 |
msgstr ""
|
2320 |
|
2321 |
-
#: wp-statistics.php:
|
2322 |
msgid "Download HTML file"
|
2323 |
msgstr ""
|
2324 |
|
2325 |
-
#: wp-statistics.php:
|
2326 |
msgid "Manual file not found."
|
2327 |
msgstr ""
|
2328 |
|
2329 |
-
#: wp-
|
|
|
|
|
2330 |
msgid "You do not have sufficient permissions to access this page."
|
2331 |
msgstr ""
|
2332 |
|
2333 |
-
#: wp-statistics.php:
|
|
|
2334 |
msgid ""
|
2335 |
"Plugin tables do not exist in the database! Please re-run the %s install "
|
2336 |
"routine %s."
|
2337 |
msgstr ""
|
2338 |
|
2339 |
-
#: wps-install.php:250
|
|
|
2340 |
msgid "WP Statistics %s installed on"
|
2341 |
msgstr ""
|
2342 |
|
2343 |
-
#: wps-updates.php:34
|
|
|
2344 |
msgid "Error downloading GeoIP database from: %s - %s"
|
2345 |
msgstr ""
|
2346 |
|
2347 |
-
#: wps-updates.php:45
|
|
|
2348 |
msgid "Error could not open downloaded GeoIP database for reading: %s"
|
2349 |
msgstr ""
|
2350 |
|
2351 |
-
#: wps-updates.php:52
|
|
|
2352 |
msgid "Error could not open destination GeoIP database for writing %s"
|
2353 |
msgstr ""
|
2354 |
|
2355 |
-
#: wps-updates.php:68
|
2356 |
msgid "GeoIP Database updated successfully!"
|
2357 |
msgstr ""
|
2358 |
|
2359 |
-
#: wps-updates.php:93
|
2360 |
msgid "GeoIP update on"
|
2361 |
msgstr ""
|
2362 |
|
2363 |
-
#: wps-updates.php:160
|
|
|
2364 |
msgid "Error downloading browscap database from: %s - %s"
|
2365 |
msgstr ""
|
2366 |
|
2367 |
-
#: wps-updates.php:262
|
2368 |
msgid "browscap database updated successfully!"
|
2369 |
msgstr ""
|
2370 |
|
2371 |
-
#: wps-updates.php:273
|
2372 |
msgid ""
|
2373 |
"browscap database updated failed! Cache file too large, reverting to "
|
2374 |
"previous browscap.ini."
|
2375 |
msgstr ""
|
2376 |
|
2377 |
-
#: wps-updates.php:281
|
2378 |
msgid ""
|
2379 |
"browscap database updated failed! New browscap.ini is mis-identifing user "
|
2380 |
"agents as crawlers, reverting to previous browscap.ini."
|
2381 |
msgstr ""
|
2382 |
|
2383 |
-
#: wps-updates.php:303
|
2384 |
msgid "browscap already at current version!"
|
2385 |
msgstr ""
|
2386 |
|
2387 |
-
#: wps-updates.php:316
|
2388 |
msgid "Browscap.ini update on"
|
2389 |
msgstr ""
|
1 |
+
# Copyright (C) 2015 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 8.7.2\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-statistics\n"
|
7 |
+
"POT-Creation-Date: 2015-01-23 17:13+0330\n"
|
8 |
+
"PO-Revision-Date: 2015-01-23 17:13+0330\n"
|
9 |
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
10 |
+
"Language-Team: WP Statistics\n"
|
11 |
+
"Language: en_US\n"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
+
"X-Generator: Poedit 1.6.10\n"
|
16 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
17 |
+
"X-Poedit-KeywordsList: __;_e\n"
|
18 |
+
"X-Poedit-Basepath: F:\\xampp\\htdocs\\cms\\wordpress\\wp-content\\plugins"
|
19 |
+
"\\wp-statistics\n"
|
20 |
+
"X-Poedit-SearchPath-0: F:\\xampp\\htdocs\\cms\\wordpress\\wp-content\\plugins"
|
21 |
+
"\\wp-statistics\n"
|
22 |
+
|
23 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:55
|
24 |
msgid "Quick Stats"
|
25 |
msgstr ""
|
26 |
|
27 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:56
|
28 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:54
|
29 |
msgid "Top 10 Browsers"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:57
|
33 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:11
|
34 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:27
|
35 |
msgid "Top 10 Countries"
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:58
|
39 |
msgid "Today's Visitor Map"
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:59
|
43 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:46
|
44 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:8
|
45 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:8
|
46 |
msgid "Hit Statistics"
|
47 |
msgstr ""
|
48 |
|
49 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:60
|
50 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:11
|
51 |
msgid "Top 10 Pages"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:61
|
55 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:30
|
56 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:8
|
57 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:39
|
58 |
msgid "Recent Visitors"
|
59 |
msgstr ""
|
60 |
|
61 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:62
|
62 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:27
|
63 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:42
|
64 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:13
|
65 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:26
|
66 |
msgid "Top Referring Sites"
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:63
|
70 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:7
|
71 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:74
|
72 |
msgid "Search Engine Referrals"
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:64
|
76 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:8
|
77 |
msgid "Summary"
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:65
|
81 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:30
|
82 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:8
|
83 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:37
|
84 |
msgid "Latest Search Words"
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:66
|
88 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:8
|
89 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:35
|
90 |
msgid "Top 10 Visitors Today"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:97
|
94 |
msgid "Please reload the dashboard to display the content of this widget."
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:138
|
98 |
msgid "WP Statistics Overview"
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:63
|
102 |
msgid "This post is not yet published."
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:26
|
106 |
msgid ""
|
107 |
"Unable to load the GeoIP database, make sure you have downloaded it in the "
|
108 |
"settings page."
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:50
|
112 |
+
#, php-format
|
113 |
msgid "Updated %s GeoIP records in the visitors database."
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:21
|
117 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:39
|
118 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:50
|
119 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:83
|
120 |
+
#, php-format
|
121 |
msgid "%s data older than %s days purged successfully."
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:23
|
125 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:41
|
126 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:52
|
127 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:85
|
128 |
+
#, php-format
|
129 |
msgid "No records found to purge from %s!"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:98
|
133 |
msgid "Database pruned on"
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:103
|
137 |
msgid "Please select a value over 30 days."
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:8
|
141 |
msgid "Browser Statistics"
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:14
|
145 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:98
|
146 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:233
|
147 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:74
|
148 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
|
149 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:61
|
150 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:60
|
151 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:17
|
152 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:47
|
153 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:29
|
154 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:19
|
155 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:137
|
156 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:38
|
157 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:7
|
158 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:6
|
159 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:9
|
160 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:8
|
161 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:7
|
162 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:8
|
163 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:9
|
164 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:6
|
165 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:11
|
166 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:6
|
167 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:7
|
168 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:7
|
169 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:6
|
170 |
msgid "Click to toggle"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:15
|
174 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:7
|
175 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:25
|
176 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:288
|
177 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:363
|
178 |
msgid "Browsers"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:42
|
182 |
msgid "Browsers by type"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:99
|
186 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:34
|
187 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:302
|
188 |
msgid "Platform"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:126
|
192 |
msgid "Browsers by platform"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:234
|
196 |
+
#, php-format
|
197 |
msgid "%s Version"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:8
|
201 |
msgid ""
|
202 |
"Attention: Exclusion are not currently set to be recorded, the results below "
|
203 |
"may not reflect current statistics!"
|
204 |
msgstr ""
|
205 |
|
206 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:54
|
207 |
msgid "Exclusions Statistics"
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:57
|
211 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:12
|
212 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:33
|
213 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:15
|
214 |
msgid "10 Days"
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:58
|
218 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:13
|
219 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:34
|
220 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:16
|
221 |
msgid "20 Days"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:59
|
225 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:14
|
226 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:35
|
227 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:17
|
228 |
msgid "30 Days"
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:60
|
232 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:15
|
233 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:36
|
234 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:18
|
235 |
msgid "2 Months"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:61
|
239 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:16
|
240 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:37
|
241 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:19
|
242 |
msgid "3 Months"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:62
|
246 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:17
|
247 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:38
|
248 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:20
|
249 |
msgid "6 Months"
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:63
|
253 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:18
|
254 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:39
|
255 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
|
256 |
msgid "9 Months"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:64
|
260 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:19
|
261 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:40
|
262 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
|
263 |
msgid "1 Year"
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:68
|
267 |
+
#, php-format
|
268 |
msgid "Total Exclusions: %s"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:75
|
272 |
msgid "Exclusions Statistical Chart"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:97
|
276 |
msgid "Excluded hits in the last"
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:97
|
280 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:60
|
281 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:71
|
282 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:51
|
283 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:55
|
284 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:151
|
285 |
msgid "days"
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:118
|
289 |
msgid "Number of excluded hits"
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:27
|
293 |
msgid "Hits Statistics Chart"
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:60
|
297 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:51
|
298 |
msgid "Hits in the last"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:81
|
302 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:72
|
303 |
msgid "Number of visits and visitors"
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:95
|
307 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:86
|
308 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:30
|
309 |
msgid "Visit"
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:95
|
313 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:86
|
314 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:29
|
315 |
msgid "Visitor"
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:62
|
319 |
msgid "Latest Search Word Statistics"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:97
|
323 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:97
|
324 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:48
|
325 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:84
|
326 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:71
|
327 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:30
|
328 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:32
|
329 |
msgid "#hash#"
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:102
|
333 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:102
|
334 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:53
|
335 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:71
|
336 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:35
|
337 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:39
|
338 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:33
|
339 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:113
|
340 |
msgid "Map"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:139
|
344 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:135
|
345 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:107
|
346 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
|
347 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
|
348 |
msgid "Page"
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:139
|
352 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:135
|
353 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:107
|
354 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
|
355 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
|
356 |
msgid "From"
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:32
|
360 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:29
|
361 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:135
|
362 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:294
|
363 |
msgid "All"
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:62
|
367 |
msgid "Search for"
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:64
|
371 |
msgid "Recent Visitor Statistics"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:11
|
375 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:18
|
376 |
msgid "Online Users"
|
377 |
msgstr ""
|
378 |
|
379 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:73
|
380 |
msgid "Online for "
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:98
|
384 |
+
msgid "Currently there are no users online in the site."
|
385 |
+
msgstr ""
|
386 |
+
|
387 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:29
|
388 |
msgid "Page Trend for Post ID"
|
389 |
msgstr ""
|
390 |
|
391 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:48
|
392 |
msgid "Page Trend"
|
393 |
msgstr ""
|
394 |
|
395 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:11
|
396 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:30
|
397 |
msgid "Search Engine Referral Statistics"
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:71
|
401 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:55
|
402 |
msgid "Search engine referrals in the last"
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:92
|
406 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:76
|
407 |
msgid "Number of referrals"
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:106
|
411 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:90
|
412 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:64
|
413 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:104
|
414 |
msgid "Total"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:11
|
418 |
msgid "Top Countries"
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:20
|
422 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:30
|
423 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:27
|
424 |
msgid "Rank"
|
425 |
msgstr ""
|
426 |
|
427 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:21
|
428 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:31
|
429 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:29
|
430 |
msgid "Flag"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:22
|
434 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:32
|
435 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:30
|
436 |
msgid "Country"
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:23
|
440 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:33
|
441 |
msgid "Visitor Count"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:13
|
445 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:138
|
446 |
msgid "Top Pages"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:20
|
450 |
msgid "Top 5 Pages Trends"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:49
|
454 |
msgid "Top 5 Page Trending Stats"
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:70
|
458 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/page.php:58
|
459 |
msgid "Number of Hits"
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:166
|
463 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:32
|
464 |
msgid "No page title found"
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:169
|
468 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:35
|
469 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:37
|
470 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:122
|
471 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:127
|
472 |
msgid "Visits"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:4
|
476 |
msgid "To be added soon"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:40
|
480 |
msgid "Referring sites from"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:110
|
484 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:30
|
485 |
msgid "References"
|
486 |
msgstr ""
|
487 |
|
488 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-visitors.php:12
|
489 |
msgid "Top 100 Visitors Today"
|
490 |
msgstr ""
|
491 |
|
492 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:8
|
493 |
+
#, php-format
|
494 |
msgid "About WP Statistics Version %s"
|
495 |
msgstr ""
|
496 |
|
497 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:25
|
498 |
msgid "Website"
|
499 |
msgstr ""
|
500 |
|
501 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:26
|
502 |
msgid "Rate and Review"
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:30
|
506 |
msgid "More Information"
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:39
|
510 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:12
|
511 |
+
#, php-format
|
512 |
msgid ""
|
513 |
"This product includes GeoLite2 data created by MaxMind, available from %s."
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:7
|
517 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:11
|
518 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:8
|
519 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:11
|
520 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:8
|
521 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:13
|
522 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:7
|
523 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:8
|
524 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:8
|
525 |
msgid "More"
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:47
|
529 |
msgid "Other"
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:9
|
533 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:9
|
534 |
msgid "Today Visitors Map"
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:31
|
538 |
msgid "Address"
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:23
|
542 |
msgid "User(s) Online"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:34
|
546 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:79
|
547 |
msgid "Today"
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:40
|
551 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:80
|
552 |
msgid "Yesterday"
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:46
|
556 |
msgid "Week"
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:52
|
560 |
msgid "Month"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:58
|
564 |
msgid "Year"
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:98
|
568 |
msgid "Daily Total"
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:117
|
572 |
msgid "Current Time and Date"
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:117
|
576 |
msgid "(Adjustment)"
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:121
|
580 |
+
#, php-format
|
581 |
msgid "Date: %s"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:125
|
585 |
+
#, php-format
|
586 |
msgid "Time: %s"
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:28
|
590 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:215
|
591 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:293
|
592 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:366
|
593 |
msgid "Hits"
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:31
|
597 |
msgid "IP"
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:33
|
601 |
msgid "Agent"
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:35
|
605 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:291
|
606 |
msgid "Version"
|
607 |
msgstr ""
|
608 |
|
609 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:5
|
610 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:5
|
611 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:5
|
612 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:5
|
613 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:6
|
614 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:6
|
615 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/manual/manual.php:5
|
616 |
msgid "Access denied!"
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:14
|
620 |
+
#, php-format
|
621 |
msgid "%s agent data deleted successfully."
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:17
|
625 |
msgid "No agent data found to remove!"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:21
|
629 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:21
|
630 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:42
|
631 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:57
|
632 |
msgid "Please select the desired items."
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:14
|
636 |
+
#, php-format
|
637 |
msgid "%s platform data deleted successfully."
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:17
|
641 |
msgid "No platform data found to remove!"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:53
|
645 |
+
#, php-format
|
646 |
msgid "%s table data deleted successfully."
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:57
|
650 |
+
#, php-format
|
651 |
msgid "Error, %s not emptied!"
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:5
|
655 |
msgid "Database Setup"
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:10
|
659 |
msgid "Re-run Install"
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:14
|
663 |
msgid "Install Now!"
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:15
|
667 |
msgid ""
|
668 |
"If for some reason your installation of WP Statistics is missing the "
|
669 |
"database tables or other core items, this will re-execute the install "
|
670 |
"process."
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:20
|
674 |
msgid "Database Index"
|
675 |
msgstr ""
|
676 |
|
677 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
678 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
679 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:290
|
680 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:364
|
681 |
msgid "Countries"
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:39
|
685 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:25
|
686 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:40
|
687 |
msgid "Update Now!"
|
688 |
msgstr ""
|
689 |
|
690 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:40
|
691 |
msgid ""
|
692 |
"Older installs of WP Statistics allow for duplicate entries in the visitors "
|
693 |
"table in a corner case. Newer installs protect against this with a unique "
|
696 |
"vistitors table, delete duplicate entries and add the index."
|
697 |
msgstr ""
|
698 |
|
699 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:41
|
700 |
msgid ""
|
701 |
"This operation could take a long time on installs with many rows in the "
|
702 |
"visitors table."
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:46
|
706 |
msgid ""
|
707 |
"Older installs of WP Statistics allow for duplicate entries in the visitors "
|
708 |
"table in a corner case. Newer installs protect against this with a unique "
|
709 |
"index on the table."
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:47
|
713 |
msgid ""
|
714 |
"Congratulations, your installation is already up to date, nothing to do."
|
715 |
msgstr ""
|
716 |
|
717 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:7
|
718 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:147
|
719 |
msgid "Export"
|
720 |
msgstr ""
|
721 |
|
722 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:12
|
723 |
msgid "Export from"
|
724 |
msgstr ""
|
725 |
|
726 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:17
|
727 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:35
|
728 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:129
|
729 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:170
|
730 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:194
|
731 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:134
|
732 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:164
|
733 |
msgid "Please select"
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:24
|
737 |
msgid "Select the table for the output file."
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:30
|
741 |
msgid "Export To"
|
742 |
msgstr ""
|
743 |
|
744 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:41
|
745 |
msgid "Select the output file type."
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:47
|
749 |
msgid "Include Header Row"
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:52
|
753 |
msgid "Include a header row as the first line of the exported file."
|
754 |
msgstr ""
|
755 |
|
756 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:53
|
757 |
msgid "Start Now!"
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:15
|
761 |
msgid "Historical Values"
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:20
|
765 |
msgid ""
|
766 |
"Note: As you have just purged the database you must reload this page for "
|
767 |
"these numbers to be correct."
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:26
|
771 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:138
|
772 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:143
|
773 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:300
|
774 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:373
|
775 |
msgid "Visitors"
|
776 |
msgstr ""
|
777 |
|
778 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:31
|
779 |
+
#, php-format
|
780 |
msgid ""
|
781 |
"Number of historical number of visitors to the site (current value is %s)."
|
782 |
msgstr ""
|
783 |
|
784 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:42
|
785 |
+
#, php-format
|
786 |
msgid ""
|
787 |
"Number of historical number of visits to the site (current value is %s)."
|
788 |
msgstr ""
|
789 |
|
790 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:48
|
791 |
msgid "Update now!"
|
792 |
msgstr ""
|
793 |
|
794 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:10
|
795 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:37
|
796 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:63
|
797 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:91
|
798 |
msgid "Are you sure?"
|
799 |
msgstr ""
|
800 |
|
801 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:119
|
802 |
msgid "Data"
|
803 |
msgstr ""
|
804 |
|
805 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:124
|
806 |
msgid "Empty Table"
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:137
|
810 |
msgid "All data table will be lost."
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:138
|
814 |
msgid "Clear now!"
|
815 |
msgstr ""
|
816 |
|
817 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:146
|
818 |
msgid "Purge records older than"
|
819 |
msgstr ""
|
820 |
|
821 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:152
|
822 |
msgid ""
|
823 |
"Deleted user statistics data older than the selected number of days. "
|
824 |
"Minimum value is 30 days."
|
825 |
msgstr ""
|
826 |
|
827 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:153
|
828 |
msgid "Purge now!"
|
829 |
msgstr ""
|
830 |
|
831 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:160
|
832 |
msgid "Delete User Agent Types"
|
833 |
msgstr ""
|
834 |
|
835 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:165
|
836 |
msgid "Delete Agents"
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:180
|
840 |
msgid "All visitor data will be lost for this agent type."
|
841 |
msgstr ""
|
842 |
|
843 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:181
|
844 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:205
|
845 |
msgid "Delete now!"
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:189
|
849 |
msgid "Delete Platforms"
|
850 |
msgstr ""
|
851 |
|
852 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:204
|
853 |
msgid "All visitor data will be lost for this platform type."
|
854 |
msgstr ""
|
855 |
|
856 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:17
|
857 |
msgid "Resources"
|
858 |
msgstr ""
|
859 |
|
860 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:22
|
861 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:27
|
862 |
msgid "Memory usage in PHP"
|
863 |
msgstr ""
|
864 |
|
865 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:26
|
866 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:37
|
867 |
msgid "Byte"
|
868 |
msgstr ""
|
869 |
|
870 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:33
|
871 |
msgid "Last Overview page memory usage"
|
872 |
msgstr ""
|
873 |
|
874 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:38
|
875 |
msgid "Memory usage in the overview page"
|
876 |
msgstr ""
|
877 |
|
878 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:44
|
879 |
msgid "PHP Memory Limit"
|
880 |
msgstr ""
|
881 |
|
882 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:49
|
883 |
msgid "The memory limit a script is allowed to consume, set in php.ini."
|
884 |
msgstr ""
|
885 |
|
886 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:55
|
887 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:66
|
888 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:77
|
889 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:88
|
890 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:99
|
891 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:110
|
892 |
+
#, php-format
|
893 |
msgid "Number of rows in the %s table"
|
894 |
msgstr ""
|
895 |
|
896 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:59
|
897 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:70
|
898 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:81
|
899 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:92
|
900 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:103
|
901 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:114
|
902 |
msgid "Row"
|
903 |
msgstr ""
|
904 |
|
905 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:60
|
906 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:71
|
907 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:82
|
908 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:93
|
909 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:104
|
910 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:115
|
911 |
msgid "Number of rows"
|
912 |
msgstr ""
|
913 |
|
914 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:120
|
915 |
msgid "Version Info"
|
916 |
msgstr ""
|
917 |
|
918 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:125
|
919 |
msgid "WP Statistics Version"
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:130
|
923 |
msgid "The WP Statistics version you are running."
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:136
|
927 |
msgid "PHP Version"
|
928 |
msgstr ""
|
929 |
|
930 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:141
|
931 |
msgid "The PHP version you are running."
|
932 |
msgstr ""
|
933 |
|
934 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:147
|
935 |
msgid "PHP Safe Mode"
|
936 |
msgstr ""
|
937 |
|
938 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:152
|
939 |
msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
|
940 |
msgstr ""
|
941 |
|
942 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:158
|
943 |
msgid "jQuery Version"
|
944 |
msgstr ""
|
945 |
|
946 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:163
|
947 |
msgid "The jQuery version you are running."
|
948 |
msgstr ""
|
949 |
|
950 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:169
|
951 |
msgid "cURL Version"
|
952 |
msgstr ""
|
953 |
|
954 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:173
|
955 |
msgid "cURL not installed"
|
956 |
msgstr ""
|
957 |
|
958 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:174
|
959 |
msgid ""
|
960 |
"The PHP cURL Extension version you are running. cURL is required for the "
|
961 |
"GeoIP code, if it is not installed GeoIP will be disabled."
|
962 |
msgstr ""
|
963 |
|
964 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:180
|
965 |
msgid "BC Math"
|
966 |
msgstr ""
|
967 |
|
968 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:184
|
969 |
msgid "Installed"
|
970 |
msgstr ""
|
971 |
|
972 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:184
|
973 |
msgid "Not installed"
|
974 |
msgstr ""
|
975 |
|
976 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:185
|
977 |
msgid ""
|
978 |
"If the PHP BC Math Extension is installed. BC Math is no longer required "
|
979 |
"for the GeoIP code and is listed here only for historical reasons."
|
980 |
msgstr ""
|
981 |
|
982 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:190
|
983 |
msgid "File Info"
|
984 |
msgstr ""
|
985 |
|
986 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:195
|
987 |
msgid "GeoIP Database"
|
988 |
msgstr ""
|
989 |
|
990 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:204
|
991 |
msgid "Database file does not exist."
|
992 |
msgstr ""
|
993 |
|
994 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:206
|
995 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:225
|
996 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:244
|
997 |
msgid ", created on "
|
998 |
msgstr ""
|
999 |
|
1000 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:208
|
1001 |
msgid "The file size and date of the GeoIP database."
|
1002 |
msgstr ""
|
1003 |
|
1004 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:214
|
1005 |
msgid "browscap.ini File"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:223
|
1009 |
msgid "browscap.ini file does not exist."
|
1010 |
msgstr ""
|
1011 |
|
1012 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:227
|
1013 |
msgid "The file size and date of the browscap.ini file."
|
1014 |
msgstr ""
|
1015 |
|
1016 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:233
|
1017 |
msgid "browscap Cache File"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:242
|
1021 |
msgid "browscap cache file does not exist."
|
1022 |
msgstr ""
|
1023 |
|
1024 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:246
|
1025 |
msgid "The file size and date of the browscap cache file."
|
1026 |
msgstr ""
|
1027 |
|
1028 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:251
|
1029 |
msgid "Client Info"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:256
|
1033 |
msgid "Client IP"
|
1034 |
msgstr ""
|
1035 |
|
1036 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:261
|
1037 |
msgid "The client IP address."
|
1038 |
msgstr ""
|
1039 |
|
1040 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:267
|
1041 |
msgid "User Agent"
|
1042 |
msgstr ""
|
1043 |
|
1044 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:272
|
1045 |
msgid "The client user agent string."
|
1046 |
msgstr ""
|
1047 |
|
1048 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:278
|
1049 |
msgid "Browser"
|
1050 |
msgstr ""
|
1051 |
|
1052 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:285
|
1053 |
msgid "The detected client browser."
|
1054 |
msgstr ""
|
1055 |
|
1056 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:296
|
1057 |
msgid "The detected client browser version."
|
1058 |
msgstr ""
|
1059 |
|
1060 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:307
|
1061 |
msgid "The detected client platform."
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:4
|
1065 |
msgid ""
|
1066 |
"This will replace all IP addresses in the database with hash values and "
|
1067 |
"cannot be undo, are you sure?"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:16
|
1071 |
msgid "GeoIP Options"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:26
|
1075 |
msgid ""
|
1076 |
"Updates any unknown location data in the database, this may take a while"
|
1077 |
msgstr ""
|
1078 |
|
1079 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:31
|
1080 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:66
|
1081 |
msgid "IP Addresses"
|
1082 |
msgstr ""
|
1083 |
|
1084 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:36
|
1085 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:71
|
1086 |
msgid "Hash IP Addresses"
|
1087 |
msgstr ""
|
1088 |
|
1089 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:41
|
1090 |
msgid ""
|
1091 |
"Replace IP addresses in the database with hash values, you will not be able "
|
1092 |
"to recover the IP addresses in the future to populate location information "
|
1093 |
"afterwards and this may take a while"
|
1094 |
msgstr ""
|
1095 |
|
1096 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:43
|
1097 |
msgid "IP Addresses replaced with hash values."
|
1098 |
msgstr ""
|
1099 |
|
1100 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:51
|
1101 |
msgid "Install routine complete."
|
1102 |
msgstr ""
|
1103 |
|
1104 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:146
|
1105 |
msgid "Resources/Information"
|
1106 |
msgstr ""
|
1107 |
|
1108 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:148
|
1109 |
msgid "Purging"
|
1110 |
msgstr ""
|
1111 |
|
1112 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:149
|
1113 |
msgid "Database"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:150
|
1117 |
msgid "Updates"
|
1118 |
msgstr ""
|
1119 |
|
1120 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:151
|
1121 |
msgid "Historical"
|
1122 |
msgstr ""
|
1123 |
|
1124 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:8
|
1125 |
+
#, php-format
|
1126 |
msgid "WP Statistics V%s"
|
1127 |
msgstr ""
|
1128 |
|
1129 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:20
|
1130 |
msgid "Visit Us Online"
|
1131 |
msgstr ""
|
1132 |
|
1133 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:24
|
1134 |
+
#, php-format
|
1135 |
msgid ""
|
1136 |
"Come visit our great new %s and keep up to date on the latest news about WP "
|
1137 |
"Statistics."
|
1138 |
msgstr ""
|
1139 |
|
1140 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:24
|
1141 |
msgid "website"
|
1142 |
msgstr ""
|
1143 |
|
1144 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:28
|
1145 |
msgid "Rate and Review at WordPress.org"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:32
|
1149 |
msgid "Thanks for installing WP Statistics, we encourage you to submit a "
|
1150 |
msgstr ""
|
1151 |
|
1152 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:32
|
1153 |
msgid "rating and review"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:32
|
1157 |
msgid "over at WordPress.org. Your feedback is greatly appreciated!"
|
1158 |
msgstr ""
|
1159 |
|
1160 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:36
|
1161 |
msgid "Translations"
|
1162 |
msgstr ""
|
1163 |
|
1164 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:40
|
1165 |
+
#, php-format
|
1166 |
msgid ""
|
1167 |
"WP Statistics supports internationalization and we encourage our users to "
|
1168 |
"submit translations, please visit our %s to see the current status and %s if "
|
1169 |
"you would like to help."
|
1170 |
msgstr ""
|
1171 |
|
1172 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:40
|
1173 |
msgid "translation collaboration site"
|
1174 |
msgstr ""
|
1175 |
|
1176 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:40
|
1177 |
msgid "drop us a line"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:44
|
1181 |
msgid "Support"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:49
|
1185 |
msgid ""
|
1186 |
"We're sorry you're having problem with WP Statistics and we're happy to help "
|
1187 |
"out. Here are a few things to do before contacting us:"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:52
|
1191 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:53
|
1192 |
+
#, php-format
|
1193 |
msgid "Have you read the %s?"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:52
|
1197 |
msgid "FAQs"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:53
|
1201 |
msgid "manual"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:54
|
1205 |
+
#, php-format
|
1206 |
msgid "Have you search the %s for a similar issue?"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:54
|
1210 |
msgid "support forum"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:55
|
1214 |
msgid "Have you search the Internet for any error messages you are receiving?"
|
1215 |
msgstr ""
|
1216 |
|
1217 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:56
|
1218 |
msgid "Make sure you have access to your PHP error logs."
|
1219 |
msgstr ""
|
1220 |
|
1221 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:59
|
1222 |
msgid "And a few things to double-check:"
|
1223 |
msgstr ""
|
1224 |
|
1225 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:62
|
1226 |
msgid "How's your memory_limit in php.ini?"
|
1227 |
msgstr ""
|
1228 |
|
1229 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:63
|
1230 |
msgid "Have you tried disabling any other plugins you may have installed?"
|
1231 |
msgstr ""
|
1232 |
|
1233 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:64
|
1234 |
msgid "Have you tried using the default WordPress theme?"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:65
|
1238 |
msgid "Have you double checked the plugin settings?"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:66
|
1242 |
msgid "Do you have all the required PHP extensions installed?"
|
1243 |
msgstr ""
|
1244 |
|
1245 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:67
|
1246 |
msgid ""
|
1247 |
"Are you getting a blank or incomplete page displayed in your browser? Did "
|
1248 |
"you view the source for the page and check for any fatal errors?"
|
1249 |
msgstr ""
|
1250 |
|
1251 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:68
|
1252 |
msgid "Have you checked your PHP and web server error logs?"
|
1253 |
msgstr ""
|
1254 |
|
1255 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:71
|
1256 |
msgid "Still not having any luck?"
|
1257 |
msgstr ""
|
1258 |
|
1259 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:71
|
1260 |
+
#, php-format
|
1261 |
msgid ""
|
1262 |
"Then please open a new thread on the %s and we'll respond as soon as "
|
1263 |
"possible."
|
1264 |
msgstr ""
|
1265 |
|
1266 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:71
|
1267 |
msgid "WordPress.org support forum"
|
1268 |
msgstr ""
|
1269 |
|
1270 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:75
|
1271 |
+
#, php-format
|
1272 |
msgid "Alternatively %s support is available as well."
|
1273 |
msgstr ""
|
1274 |
|
1275 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:75
|
1276 |
msgid "Farsi"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:21
|
1280 |
+
msgid "WP Statistics Honey Pot Page"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:22
|
1284 |
msgid "This is the honey pot for WP Statistics to use, do not delete."
|
1285 |
msgstr ""
|
1286 |
|
1287 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:45
|
1288 |
msgid "Access Levels"
|
1289 |
msgstr ""
|
1290 |
|
1291 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:74
|
1292 |
msgid "Required user level to view WP Statistics"
|
1293 |
msgstr ""
|
1294 |
|
1295 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:89
|
1296 |
msgid "Required user level to manage WP Statistics"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:97
|
1300 |
+
#, php-format
|
1301 |
msgid "See the %s for details on capability levels."
|
1302 |
msgstr ""
|
1303 |
|
1304 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:97
|
1305 |
msgid "WordPress Roles and Capabilities page"
|
1306 |
msgstr ""
|
1307 |
|
1308 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:98
|
1309 |
msgid ""
|
1310 |
"Hint: manage_network = Super Admin Network, manage_options = Administrator, "
|
1311 |
"edit_others_posts = Editor, publish_posts = Author, edit_posts = "
|
1312 |
"Contributor, read = Everyone."
|
1313 |
msgstr ""
|
1314 |
|
1315 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:99
|
1316 |
msgid ""
|
1317 |
"Each of the above casscades the rights upwards in the default WordPress "
|
1318 |
"configuration. So for example selecting publish_posts grants the right to "
|
1319 |
"Authors, Editors, Admins and Super Admins."
|
1320 |
msgstr ""
|
1321 |
|
1322 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:100
|
1323 |
+
#, php-format
|
1324 |
msgid ""
|
1325 |
"If you need a more robust solution to delegate access you might want to look "
|
1326 |
"at %s in the WordPress plugin directory."
|
1327 |
msgstr ""
|
1328 |
|
1329 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:105
|
1330 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:292
|
1331 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:365
|
1332 |
msgid "Exclusions"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:109
|
1336 |
msgid "Record exclusions"
|
1337 |
msgstr ""
|
1338 |
|
1339 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:111
|
1340 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:165
|
1341 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:192
|
1342 |
msgid "Enable"
|
1343 |
msgstr ""
|
1344 |
|
1345 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:112
|
1346 |
msgid ""
|
1347 |
"This will record all the excluded hits in a separate table with the reasons "
|
1348 |
"why it was excluded but no other information. This will generate a lot of "
|
1350 |
"gets, not just actual user visits."
|
1351 |
msgstr ""
|
1352 |
|
1353 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:117
|
1354 |
msgid "Exclude User Roles"
|
1355 |
msgstr ""
|
1356 |
|
1357 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:133
|
1358 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:247
|
1359 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:254
|
1360 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:261
|
1361 |
msgid "Exclude"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:134
|
1365 |
+
#, php-format
|
1366 |
msgid "Exclude %s role from data collection."
|
1367 |
msgstr ""
|
1368 |
|
1369 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:140
|
1370 |
msgid "IP/Robot Exclusions"
|
1371 |
msgstr ""
|
1372 |
|
1373 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:144
|
1374 |
msgid "Robot list"
|
1375 |
msgstr ""
|
1376 |
|
1377 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:157
|
1378 |
msgid ""
|
1379 |
"A list of words (one per line) to match against to detect robots. Entries "
|
1380 |
"must be at least 4 characters long or they will be ignored."
|
1381 |
msgstr ""
|
1382 |
|
1383 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:158
|
1384 |
msgid "Reset to Default"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:163
|
1388 |
msgid "Force robot list update after upgrades"
|
1389 |
msgstr ""
|
1390 |
|
1391 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:166
|
1392 |
msgid ""
|
1393 |
"Force the robot list to be reset to the default after an update to WP "
|
1394 |
"Statistics takes place. Note if this option is enabled any custom robots "
|
1395 |
"you have added to the list will be lost."
|
1396 |
msgstr ""
|
1397 |
|
1398 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:171
|
1399 |
msgid "Robot visit threshold"
|
1400 |
msgstr ""
|
1401 |
|
1402 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:174
|
1403 |
msgid ""
|
1404 |
"Treat visitors with more than this number of visits per day as robots. 0 = "
|
1405 |
"disabled."
|
1406 |
msgstr ""
|
1407 |
|
1408 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:179
|
1409 |
msgid "Excluded IP address list"
|
1410 |
msgstr ""
|
1411 |
|
1412 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:182
|
1413 |
msgid ""
|
1414 |
"A list of IP addresses and subnet masks (one per line) to exclude from "
|
1415 |
"statistics collection (both 192.168.0.0/24 and 192.168.0.0/255.255.255.0 "
|
1417 |
"32 or 255.255.255.255."
|
1418 |
msgstr ""
|
1419 |
|
1420 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:183
|
1421 |
msgid "Add 10.0.0.0"
|
1422 |
msgstr ""
|
1423 |
|
1424 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:184
|
1425 |
msgid "Add 172.16.0.0"
|
1426 |
msgstr ""
|
1427 |
|
1428 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:185
|
1429 |
msgid "Add 192.168.0.0"
|
1430 |
msgstr ""
|
1431 |
|
1432 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:190
|
1433 |
msgid "Use honey pot"
|
1434 |
msgstr ""
|
1435 |
|
1436 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:193
|
1437 |
msgid "Use a honey pot page to identify robots."
|
1438 |
msgstr ""
|
1439 |
|
1440 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:198
|
1441 |
msgid "Honey pot post id"
|
1442 |
msgstr ""
|
1443 |
|
1444 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:201
|
1445 |
msgid "The post id to use for the honeypot page."
|
1446 |
msgstr ""
|
1447 |
|
1448 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:202
|
1449 |
msgid "Create a new honey pot page"
|
1450 |
msgstr ""
|
1451 |
|
1452 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:207
|
1453 |
msgid "GeoIP Exclusions"
|
1454 |
msgstr ""
|
1455 |
|
1456 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:211
|
1457 |
msgid "Excluded countries list"
|
1458 |
msgstr ""
|
1459 |
|
1460 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:214
|
1461 |
msgid ""
|
1462 |
"A list of country codes (one per line, two letters each) to exclude from "
|
1463 |
"statistics collection. Use \"000\" (three zeros) to exclude unknown "
|
1464 |
"countries."
|
1465 |
msgstr ""
|
1466 |
|
1467 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:219
|
1468 |
msgid "Included countries list"
|
1469 |
msgstr ""
|
1470 |
|
1471 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:222
|
1472 |
msgid ""
|
1473 |
"A list of country codes (one per line, two letters each) to include in "
|
1474 |
"statistics collection, if this list is not empty, only visitors from the "
|
1476 |
"unknown countries."
|
1477 |
msgstr ""
|
1478 |
|
1479 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:227
|
1480 |
msgid "Host Exclusions"
|
1481 |
msgstr ""
|
1482 |
|
1483 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:231
|
1484 |
msgid "Excluded hosts list"
|
1485 |
msgstr ""
|
1486 |
|
1487 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:234
|
1488 |
msgid ""
|
1489 |
"A list of fully qualified host names (ie. server.example.com, one per line) "
|
1490 |
"to exclude from statistics collection."
|
1491 |
msgstr ""
|
1492 |
|
1493 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:236
|
1494 |
msgid ""
|
1495 |
"Note: this option will NOT perform a reverse DNS lookup on each page load "
|
1496 |
"but instead cache the IP address for the provided hostnames for one hour. "
|
1499 |
"resulting in some hits recorded."
|
1500 |
msgstr ""
|
1501 |
|
1502 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:241
|
1503 |
msgid "Site URL Exclusions"
|
1504 |
msgstr ""
|
1505 |
|
1506 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:245
|
1507 |
msgid "Excluded login page"
|
1508 |
msgstr ""
|
1509 |
|
1510 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:248
|
1511 |
msgid "Exclude the login page for registering as a hit."
|
1512 |
msgstr ""
|
1513 |
|
1514 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:252
|
1515 |
msgid "Excluded admin pages"
|
1516 |
msgstr ""
|
1517 |
|
1518 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:255
|
1519 |
msgid "Exclude the admin pages for registering as a hit."
|
1520 |
msgstr ""
|
1521 |
|
1522 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:259
|
1523 |
+
msgid "Excluded RSS feeds"
|
1524 |
+
msgstr ""
|
1525 |
+
|
1526 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:262
|
1527 |
+
msgid "Exclude the RSS feeds for registering as a hit."
|
1528 |
+
msgstr ""
|
1529 |
+
|
1530 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:22
|
1531 |
msgid "browscap settings"
|
1532 |
msgstr ""
|
1533 |
|
1534 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:27
|
1535 |
msgid "browscap usage"
|
1536 |
msgstr ""
|
1537 |
|
1538 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:32
|
1539 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:56
|
1540 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:76
|
1541 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:92
|
1542 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:116
|
1543 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:132
|
1544 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:148
|
1545 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:160
|
1546 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:187
|
1547 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:199
|
1548 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:214
|
1549 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:228
|
1550 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:258
|
1551 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:270
|
1552 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:313
|
1553 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:47
|
1554 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:71
|
1555 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:104
|
1556 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:40
|
1557 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:69
|
1558 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:81
|
1559 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:93
|
1560 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:105
|
1561 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
1562 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:87
|
1563 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:107
|
1564 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:147
|
1565 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:159
|
1566 |
msgid "Active"
|
1567 |
msgstr ""
|
1568 |
|
1569 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:33
|
1570 |
msgid "The browscap database will be downloaded and used to detect robots."
|
1571 |
msgstr ""
|
1572 |
|
1573 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:39
|
1574 |
msgid "Update browscap Info"
|
1575 |
msgstr ""
|
1576 |
|
1577 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:44
|
1578 |
msgid "Download browscap Database"
|
1579 |
msgstr ""
|
1580 |
|
1581 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:45
|
1582 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:60
|
1583 |
msgid "Save changes on this page to download the update."
|
1584 |
msgstr ""
|
1585 |
|
1586 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:51
|
1587 |
msgid "Schedule weekly update of browscap DB"
|
1588 |
msgstr ""
|
1589 |
|
1590 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:59
|
1591 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:74
|
1592 |
msgid "Next update will be"
|
1593 |
msgstr ""
|
1594 |
|
1595 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:74
|
1596 |
msgid "Download of the browscap database will be scheduled for once a week."
|
1597 |
msgstr ""
|
1598 |
|
1599 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:50
|
1600 |
msgid "This will delete the manual when you save the settings, are you sure?"
|
1601 |
msgstr ""
|
1602 |
|
1603 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:77
|
1604 |
msgid ""
|
1605 |
"This feature will not store IP addresses in the database but instead used a "
|
1606 |
"unique hash. The \"Store entire user agent string\" setting will be "
|
1608 |
"addresses in the future to recover location information if this is enabled."
|
1609 |
msgstr ""
|
1610 |
|
1611 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:82
|
1612 |
msgid "Users Online"
|
1613 |
msgstr ""
|
1614 |
|
1615 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:87
|
1616 |
msgid "User online"
|
1617 |
msgstr ""
|
1618 |
|
1619 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:93
|
1620 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:133
|
1621 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:149
|
1622 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:188
|
1623 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:200
|
1624 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:229
|
1625 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:122
|
1626 |
msgid "Enable or disable this feature"
|
1627 |
msgstr ""
|
1628 |
|
1629 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:99
|
1630 |
msgid "Check for online users every"
|
1631 |
msgstr ""
|
1632 |
|
1633 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:104
|
1634 |
msgid "Second"
|
1635 |
msgstr ""
|
1636 |
|
1637 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:105
|
1638 |
+
#, php-format
|
1639 |
msgid "Time for the check accurate online user in the site. Now: %s Second"
|
1640 |
msgstr ""
|
1641 |
|
1642 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:111
|
1643 |
msgid "Record all user"
|
1644 |
msgstr ""
|
1645 |
|
1646 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:117
|
1647 |
msgid ""
|
1648 |
"Ignores the exclusion settings and records all users that are online "
|
1649 |
"(including self referrals and robots). Should only be used for "
|
1650 |
"troubleshooting."
|
1651 |
msgstr ""
|
1652 |
|
1653 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:155
|
1654 |
msgid "Store entire user agent string"
|
1655 |
msgstr ""
|
1656 |
|
1657 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:161
|
1658 |
msgid "Only enabled for debugging"
|
1659 |
msgstr ""
|
1660 |
|
1661 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:167
|
1662 |
msgid "Coefficient per visitor"
|
1663 |
msgstr ""
|
1664 |
|
1665 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:172
|
1666 |
+
#, php-format
|
1667 |
msgid "For each visit to account for several hits. Currently %s."
|
1668 |
msgstr ""
|
1669 |
|
1670 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:177
|
1671 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:182
|
1672 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:295
|
1673 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:368
|
1674 |
msgid "Pages"
|
1675 |
msgstr ""
|
1676 |
|
1677 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:194
|
1678 |
msgid "Track all pages"
|
1679 |
msgstr ""
|
1680 |
|
1681 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:209
|
1682 |
msgid "Strip parameters from URI"
|
1683 |
msgstr ""
|
1684 |
|
1685 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:215
|
1686 |
msgid "This will remove anything after the ? in a URL."
|
1687 |
msgstr ""
|
1688 |
|
1689 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:223
|
1690 |
msgid "Disable hits column in post/pages list"
|
1691 |
msgstr ""
|
1692 |
|
1693 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:234
|
1694 |
msgid "Miscellaneous"
|
1695 |
msgstr ""
|
1696 |
|
1697 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:239
|
1698 |
msgid "Show stats in menu bar"
|
1699 |
msgstr ""
|
1700 |
|
1701 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:244
|
1702 |
msgid "No"
|
1703 |
msgstr ""
|
1704 |
|
1705 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:245
|
1706 |
msgid "Yes"
|
1707 |
msgstr ""
|
1708 |
|
1709 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:247
|
1710 |
msgid "Show stats in admin menu bar"
|
1711 |
msgstr ""
|
1712 |
|
1713 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:253
|
1714 |
msgid "Hide admin notices about non active features"
|
1715 |
msgstr ""
|
1716 |
|
1717 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:259
|
1718 |
msgid ""
|
1719 |
"By default WP Statistics displays an alert if any of the core features are "
|
1720 |
"disabled on every admin page, this option will disable these notices."
|
1721 |
msgstr ""
|
1722 |
|
1723 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:265
|
1724 |
msgid "Delete the manual"
|
1725 |
msgstr ""
|
1726 |
|
1727 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:271
|
1728 |
msgid ""
|
1729 |
"By default WP Statistics stores the admin manual in the plugin directory (~5 "
|
1730 |
"meg), if this option is enabled it will be deleted now and during upgrades "
|
1731 |
"in the future."
|
1732 |
msgstr ""
|
1733 |
|
1734 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:276
|
1735 |
msgid "Search Engines"
|
1736 |
msgstr ""
|
1737 |
|
1738 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:281
|
1739 |
msgid ""
|
1740 |
"Disabling all search engines is not allowed, doing so will result in all "
|
1741 |
"search engines being active."
|
1742 |
msgstr ""
|
1743 |
|
1744 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:296
|
1745 |
msgid "disable"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:297
|
1749 |
+
#, php-format
|
1750 |
msgid "Disable %s from data collection and reporting."
|
1751 |
msgstr ""
|
1752 |
|
1753 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:303
|
1754 |
msgid "Charts"
|
1755 |
msgstr ""
|
1756 |
|
1757 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:308
|
1758 |
msgid "Include totals"
|
1759 |
msgstr ""
|
1760 |
|
1761 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:314
|
1762 |
msgid ""
|
1763 |
"Add a total line to charts with multiple values, like the search engine "
|
1764 |
"referrals"
|
1765 |
msgstr ""
|
1766 |
|
1767 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:27
|
1768 |
msgid "GeoIP settings"
|
1769 |
msgstr ""
|
1770 |
|
1771 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:32
|
1772 |
+
#, php-format
|
1773 |
msgid ""
|
1774 |
"IP location services provided by GeoLite2 data created by MaxMind, available "
|
1775 |
"from %s."
|
1776 |
msgstr ""
|
1777 |
|
1778 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:42
|
1779 |
msgid "GeoIP collection"
|
1780 |
msgstr ""
|
1781 |
|
1782 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:48
|
1783 |
msgid ""
|
1784 |
"For get more information and location (country) from visitor, enable this "
|
1785 |
"feature."
|
1786 |
msgstr ""
|
1787 |
|
1788 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:54
|
1789 |
msgid "Update GeoIP Info"
|
1790 |
msgstr ""
|
1791 |
|
1792 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:59
|
1793 |
msgid "Download GeoIP Database"
|
1794 |
msgstr ""
|
1795 |
|
1796 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:66
|
1797 |
msgid "Schedule monthly update of GeoIP DB"
|
1798 |
msgstr ""
|
1799 |
|
1800 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:92
|
1801 |
msgid ""
|
1802 |
"Download of the GeoIP database will be scheduled for 2 days after the first "
|
1803 |
"Tuesday of the month."
|
1804 |
msgstr ""
|
1805 |
|
1806 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:93
|
1807 |
msgid ""
|
1808 |
"This option will also download the database if the local filesize is less "
|
1809 |
"than 1k (which usually means the stub that comes with the plugin is still in "
|
1810 |
"place)."
|
1811 |
msgstr ""
|
1812 |
|
1813 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:99
|
1814 |
msgid "Populate missing GeoIP after update of GeoIP DB"
|
1815 |
msgstr ""
|
1816 |
|
1817 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:105
|
1818 |
msgid "Update any missing GeoIP data after downloading a new database."
|
1819 |
msgstr ""
|
1820 |
|
1821 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:111
|
1822 |
+
msgid "Country code for private IP addresses"
|
1823 |
+
msgstr ""
|
1824 |
+
|
1825 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:116
|
1826 |
+
msgid ""
|
1827 |
+
"The international standard two letter country code (ie. US = United States, "
|
1828 |
+
"CA = Canada, etc.) for private (non-routable) IP addresses (ie. 10.0.0.1, "
|
1829 |
+
"192.158.1.1, 127.0.0.1, etc.). Use \"000\" (three zeros) to use \"Unknown\" "
|
1830 |
+
"as the country code."
|
1831 |
+
msgstr ""
|
1832 |
+
|
1833 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:127
|
1834 |
msgid "GeoIP collection is disabled due to the following reasons:"
|
1835 |
msgstr ""
|
1836 |
|
1837 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:130
|
1838 |
+
#, php-format
|
1839 |
msgid ""
|
1840 |
"GeoIP collection requires PHP %s or above, it is currently disabled due to "
|
1841 |
"the installed PHP version being "
|
1842 |
msgstr ""
|
1843 |
|
1844 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:135
|
1845 |
msgid ""
|
1846 |
"GeoIP collection requires the cURL PHP extension and it is not loaded on "
|
1847 |
"your version of PHP!"
|
1848 |
msgstr ""
|
1849 |
|
1850 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:141
|
1851 |
msgid ""
|
1852 |
"GeoIP collection requires the BC Math PHP extension and it is not loaded on "
|
1853 |
"your version of PHP!"
|
1854 |
msgstr ""
|
1855 |
|
1856 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:147
|
1857 |
msgid ""
|
1858 |
"PHP safe mode detected! GeoIP collection is not supported with PHP's safe "
|
1859 |
"mode enabled!"
|
1860 |
msgstr ""
|
1861 |
|
1862 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:20
|
1863 |
msgid ""
|
1864 |
"This will permanently delete data from the database each day, are you sure "
|
1865 |
"you want to enable this option?"
|
1866 |
msgstr ""
|
1867 |
|
1868 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:30
|
1869 |
msgid "Database Maintenance"
|
1870 |
msgstr ""
|
1871 |
|
1872 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:35
|
1873 |
msgid "Run a daily WP Cron job to prune the databases"
|
1874 |
msgstr ""
|
1875 |
|
1876 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:41
|
1877 |
msgid ""
|
1878 |
"A WP Cron job will be run daily to prune any data older than a set number of "
|
1879 |
"days."
|
1880 |
msgstr ""
|
1881 |
|
1882 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:47
|
1883 |
msgid "Prune data older than"
|
1884 |
msgstr ""
|
1885 |
|
1886 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:52
|
1887 |
msgid "Days"
|
1888 |
msgstr ""
|
1889 |
|
1890 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:53
|
1891 |
msgid ""
|
1892 |
"The number of days to keep statistics for. Minimum value is 30 days. "
|
1893 |
"Invalid values will disable the daily maintenance."
|
1894 |
msgstr ""
|
1895 |
|
1896 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:44
|
1897 |
msgid "Common Report Options"
|
1898 |
msgstr ""
|
1899 |
|
1900 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:49
|
1901 |
msgid "E-mail addresses"
|
1902 |
msgstr ""
|
1903 |
|
1904 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:54
|
1905 |
msgid "A comma separated list of e-mail addresses to send reports to."
|
1906 |
msgstr ""
|
1907 |
|
1908 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:59
|
1909 |
msgid "Update Reports"
|
1910 |
msgstr ""
|
1911 |
|
1912 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:64
|
1913 |
msgid "Browscap"
|
1914 |
msgstr ""
|
1915 |
|
1916 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:70
|
1917 |
msgid "Send a report whenever the browscap.ini is updated."
|
1918 |
msgstr ""
|
1919 |
|
1920 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:76
|
1921 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:104
|
1922 |
msgid "GeoIP"
|
1923 |
msgstr ""
|
1924 |
|
1925 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:82
|
1926 |
msgid "Send a report whenever the GeoIP database is updated."
|
1927 |
msgstr ""
|
1928 |
|
1929 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:88
|
1930 |
msgid "Pruning"
|
1931 |
msgstr ""
|
1932 |
|
1933 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:94
|
1934 |
msgid "Send a report whenever the pruning of database is run."
|
1935 |
msgstr ""
|
1936 |
|
1937 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:100
|
1938 |
msgid "Upgrade"
|
1939 |
msgstr ""
|
1940 |
|
1941 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:106
|
1942 |
msgid "Send a report whenever the plugin is upgraded."
|
1943 |
msgstr ""
|
1944 |
|
1945 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:111
|
1946 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:116
|
1947 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:152
|
1948 |
msgid "Statistical reporting"
|
1949 |
msgstr ""
|
1950 |
|
1951 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:129
|
1952 |
msgid "Schedule"
|
1953 |
msgstr ""
|
1954 |
|
1955 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:153
|
1956 |
msgid "Select how often to receive statistical report."
|
1957 |
msgstr ""
|
1958 |
|
1959 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:159
|
1960 |
msgid "Send reports via"
|
1961 |
msgstr ""
|
1962 |
|
1963 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:165
|
1964 |
msgid "Email"
|
1965 |
msgstr ""
|
1966 |
|
1967 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:167
|
1968 |
msgid "SMS"
|
1969 |
msgstr ""
|
1970 |
|
1971 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:170
|
1972 |
msgid "Select delivery method for statistical report."
|
1973 |
msgstr ""
|
1974 |
|
1975 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:173
|
1976 |
+
#, php-format
|
1977 |
msgid "Note: To send SMS text messages please install the %s plugin."
|
1978 |
msgstr ""
|
1979 |
|
1980 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:173
|
1981 |
msgid "WordPress SMS"
|
1982 |
msgstr ""
|
1983 |
|
1984 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:180
|
1985 |
msgid "Report body"
|
1986 |
msgstr ""
|
1987 |
|
1988 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:185
|
1989 |
msgid "Enter the contents of the report."
|
1990 |
msgstr ""
|
1991 |
|
1992 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:187
|
1993 |
msgid ""
|
1994 |
"Any shortcode supported by your installation of WordPress, include all "
|
1995 |
"shortcodes for WP Statistics (see the admin manual for a list of codes "
|
1996 |
"available) are supported in the body of the message. Here are some examples:"
|
1997 |
msgstr ""
|
1998 |
|
1999 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
2000 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:38
|
2001 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:245
|
2002 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:464
|
2003 |
msgid "User Online"
|
2004 |
msgstr ""
|
2005 |
|
2006 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:189
|
2007 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:52
|
2008 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:251
|
2009 |
msgid "Today Visitor"
|
2010 |
msgstr ""
|
2011 |
|
2012 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:190
|
2013 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:45
|
2014 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:248
|
2015 |
msgid "Today Visit"
|
2016 |
msgstr ""
|
2017 |
|
2018 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:191
|
2019 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:66
|
2020 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:257
|
2021 |
msgid "Yesterday Visitor"
|
2022 |
msgstr ""
|
2023 |
|
2024 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:192
|
2025 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:59
|
2026 |
msgid "Yesterday Visit"
|
2027 |
msgstr ""
|
2028 |
|
2029 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:193
|
2030 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:101
|
2031 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:272
|
2032 |
msgid "Total Visitor"
|
2033 |
msgstr ""
|
2034 |
|
2035 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:194
|
2036 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:94
|
2037 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:269
|
2038 |
msgid "Total Visit"
|
2039 |
msgstr ""
|
2040 |
|
2041 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:23
|
2042 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:32
|
2043 |
msgid "None"
|
2044 |
msgstr ""
|
2045 |
|
2046 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:24
|
2047 |
msgid "Summary Statistics"
|
2048 |
msgstr ""
|
2049 |
|
2050 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:28
|
2051 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:108
|
2052 |
msgid "About"
|
2053 |
msgstr ""
|
2054 |
|
2055 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
2056 |
msgid "Hits Statistical Chart"
|
2057 |
msgstr ""
|
2058 |
|
2059 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:36
|
2060 |
msgid "Search Engine Referrers Statistical Chart"
|
2061 |
msgstr ""
|
2062 |
|
2063 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:38
|
2064 |
msgid "Top Pages Visited"
|
2065 |
msgstr ""
|
2066 |
|
2067 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:73
|
2068 |
msgid "Dashboard"
|
2069 |
msgstr ""
|
2070 |
|
2071 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:77
|
2072 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:97
|
2073 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:117
|
2074 |
msgid "The following items are global to all users."
|
2075 |
msgstr ""
|
2076 |
|
2077 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:82
|
2078 |
msgid "Disable dashboard widgets"
|
2079 |
msgstr ""
|
2080 |
|
2081 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:88
|
2082 |
msgid "Disable the dashboard widgets."
|
2083 |
msgstr ""
|
2084 |
|
2085 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:93
|
2086 |
msgid "Page/Post Editor"
|
2087 |
msgstr ""
|
2088 |
|
2089 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:102
|
2090 |
msgid "Disable post/page editor widget"
|
2091 |
msgstr ""
|
2092 |
|
2093 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:108
|
2094 |
msgid "Disable the page/post editor widget."
|
2095 |
msgstr ""
|
2096 |
|
2097 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:122
|
2098 |
msgid "Map type"
|
2099 |
msgstr ""
|
2100 |
|
2101 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:128
|
2102 |
msgid "Google"
|
2103 |
msgstr ""
|
2104 |
|
2105 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:128
|
2106 |
msgid "JQVMap"
|
2107 |
msgstr ""
|
2108 |
|
2109 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:135
|
2110 |
msgid ""
|
2111 |
"The \"Google\" option will use Google's mapping service to plot the recent "
|
2112 |
"visitors (requires access to Google)."
|
2113 |
msgstr ""
|
2114 |
|
2115 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:136
|
2116 |
msgid ""
|
2117 |
"The \"JQVMap\" option will use JQVMap javascript mapping library to plot the "
|
2118 |
"recent visitors (requires no extenral services)."
|
2119 |
msgstr ""
|
2120 |
|
2121 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:142
|
2122 |
msgid "Disable map"
|
2123 |
msgstr ""
|
2124 |
|
2125 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:148
|
2126 |
msgid "Disable the map display"
|
2127 |
msgstr ""
|
2128 |
|
2129 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:154
|
2130 |
msgid "Get country location from Google"
|
2131 |
msgstr ""
|
2132 |
|
2133 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:160
|
2134 |
msgid ""
|
2135 |
"This feature may cause a performance degradation when viewing statistics and "
|
2136 |
"is only valid if the map type is set to \"Google\"."
|
2137 |
msgstr ""
|
2138 |
|
2139 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:171
|
2140 |
msgid "Overview Widgets to Display"
|
2141 |
msgstr ""
|
2142 |
|
2143 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:175
|
2144 |
msgid ""
|
2145 |
"The following items are unique to each user. If you do not select the "
|
2146 |
"'About' widget it will automatically be displayed in the last positon of "
|
2147 |
"column A."
|
2148 |
msgstr ""
|
2149 |
|
2150 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:180
|
2151 |
msgid "Slot"
|
2152 |
msgstr ""
|
2153 |
|
2154 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:184
|
2155 |
msgid "Column A"
|
2156 |
msgstr ""
|
2157 |
|
2158 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:188
|
2159 |
msgid "Column B"
|
2160 |
msgstr ""
|
2161 |
|
2162 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:194
|
2163 |
msgid "Slot 1"
|
2164 |
msgstr ""
|
2165 |
|
2166 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:224
|
2167 |
msgid "Slot 2"
|
2168 |
msgstr ""
|
2169 |
|
2170 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:254
|
2171 |
msgid "Slot 3"
|
2172 |
msgstr ""
|
2173 |
|
2174 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:284
|
2175 |
msgid "Slot 4"
|
2176 |
msgstr ""
|
2177 |
|
2178 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:314
|
2179 |
msgid "Slot 5"
|
2180 |
msgstr ""
|
2181 |
|
2182 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:344
|
2183 |
msgid "Slot 6"
|
2184 |
msgstr ""
|
2185 |
|
2186 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:348
|
2187 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:370
|
2188 |
msgid "N/A"
|
2189 |
msgstr ""
|
2190 |
|
2191 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:366
|
2192 |
msgid "Slot 7"
|
2193 |
msgstr ""
|
2194 |
|
2195 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:15
|
2196 |
msgid "WP Statisitcs Removal"
|
2197 |
msgstr ""
|
2198 |
|
2199 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:20
|
2200 |
msgid ""
|
2201 |
"Uninstalling WP Statistics will not remove the data and settings, you can "
|
2202 |
"use this option to remove the WP Statistics data from your install before "
|
2203 |
"uninstalling the plugin."
|
2204 |
msgstr ""
|
2205 |
|
2206 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:23
|
2207 |
msgid ""
|
2208 |
"Once you submit this form the settings will be deleted during the page load, "
|
2209 |
"however WP Statistics will still show up in your Admin menu until another "
|
2210 |
"page load is executed."
|
2211 |
msgstr ""
|
2212 |
|
2213 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:29
|
2214 |
msgid "Remove data and settings"
|
2215 |
msgstr ""
|
2216 |
|
2217 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:34
|
2218 |
msgid "Remove"
|
2219 |
msgstr ""
|
2220 |
|
2221 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:35
|
2222 |
msgid "Remove data and settings, this action cannot be undone."
|
2223 |
msgstr ""
|
2224 |
|
2225 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:100
|
2226 |
msgid "General"
|
2227 |
msgstr ""
|
2228 |
|
2229 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:101
|
2230 |
msgid "Notifications"
|
2231 |
msgstr ""
|
2232 |
|
2233 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:102
|
2234 |
msgid "Dashboard/Overview"
|
2235 |
msgstr ""
|
2236 |
|
2237 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:103
|
2238 |
msgid "Access/Exclusions"
|
2239 |
msgstr ""
|
2240 |
|
2241 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:105
|
2242 |
msgid "browscap"
|
2243 |
msgstr ""
|
2244 |
|
2245 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:106
|
2246 |
msgid "Maintenance"
|
2247 |
msgstr ""
|
2248 |
|
2249 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:107
|
2250 |
msgid "Removal"
|
2251 |
msgstr ""
|
2252 |
|
2253 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:150
|
2254 |
msgid "Update"
|
2255 |
msgstr ""
|
2256 |
|
2257 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/manual/manual.php:29
|
2258 |
+
#, php-format
|
2259 |
msgid "Manual not found: %s"
|
2260 |
msgstr ""
|
2261 |
|
2262 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/manual/manual.php:39
|
2263 |
+
#, php-format
|
2264 |
msgid "Invalid file type selected: %s"
|
2265 |
msgstr ""
|
2266 |
|
2267 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:10
|
2268 |
msgid "Once Weekly"
|
2269 |
msgstr ""
|
2270 |
|
2271 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:17
|
2272 |
msgid "Once Every 2 Weeks"
|
2273 |
msgstr ""
|
2274 |
|
2275 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:24
|
2276 |
msgid "Once Every 4 Weeks"
|
2277 |
msgstr ""
|
2278 |
|
2279 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:14
|
2280 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:284
|
2281 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:321
|
2282 |
msgid "Statistics"
|
2283 |
msgstr ""
|
2284 |
|
2285 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:15
|
2286 |
msgid "Show site stats in sidebar."
|
2287 |
msgstr ""
|
2288 |
|
2289 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:73
|
2290 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:260
|
2291 |
msgid "Week Visit"
|
2292 |
msgstr ""
|
2293 |
|
2294 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:80
|
2295 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:263
|
2296 |
msgid "Month Visit"
|
2297 |
msgstr ""
|
2298 |
|
2299 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:87
|
2300 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:266
|
2301 |
msgid "Years Visit"
|
2302 |
msgstr ""
|
2303 |
|
2304 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:108
|
2305 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:275
|
2306 |
msgid "Total Page Views"
|
2307 |
msgstr ""
|
2308 |
|
2309 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:116
|
2310 |
msgid "Search Engine referred"
|
2311 |
msgstr ""
|
2312 |
|
2313 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:123
|
2314 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:298
|
2315 |
msgid "Total Posts"
|
2316 |
msgstr ""
|
2317 |
|
2318 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:130
|
2319 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:301
|
2320 |
msgid "Total Pages"
|
2321 |
msgstr ""
|
2322 |
|
2323 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:137
|
2324 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:304
|
2325 |
msgid "Total Comments"
|
2326 |
msgstr ""
|
2327 |
|
2328 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:144
|
2329 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:307
|
2330 |
msgid "Total Spams"
|
2331 |
msgstr ""
|
2332 |
|
2333 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:151
|
2334 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:310
|
2335 |
msgid "Total Users"
|
2336 |
msgstr ""
|
2337 |
|
2338 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:158
|
2339 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:313
|
2340 |
msgid "Average Posts"
|
2341 |
msgstr ""
|
2342 |
|
2343 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:165
|
2344 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:316
|
2345 |
msgid "Average Comments"
|
2346 |
msgstr ""
|
2347 |
|
2348 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:172
|
2349 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:319
|
2350 |
msgid "Average Users"
|
2351 |
msgstr ""
|
2352 |
|
2353 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:179
|
2354 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:322
|
2355 |
msgid "Last Post Date"
|
2356 |
msgstr ""
|
2357 |
|
2358 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:238
|
2359 |
msgid "Name"
|
2360 |
msgstr ""
|
2361 |
|
2362 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:242
|
2363 |
msgid "Items"
|
2364 |
msgstr ""
|
2365 |
|
2366 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:254
|
2367 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:489
|
2368 |
msgid "Yesterday visit"
|
2369 |
msgstr ""
|
2370 |
|
2371 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:278
|
2372 |
msgid "Search Engine Referred"
|
2373 |
msgstr ""
|
2374 |
|
2375 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:281
|
2376 |
msgid "Select type of search engine"
|
2377 |
msgstr ""
|
2378 |
|
2379 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
|
2380 |
msgid ""
|
2381 |
"ERROR: WP Statistics has detected an unsupported version of PHP, WP "
|
2382 |
"Statistics will not function without PHP Version "
|
2383 |
msgstr ""
|
2384 |
|
2385 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
|
2386 |
msgid " or higher!"
|
2387 |
msgstr ""
|
2388 |
|
2389 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
|
2390 |
msgid "Your current PHP version is"
|
2391 |
msgstr ""
|
2392 |
|
2393 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:42
|
2394 |
msgid "WP Statistics has been removed, please disable and delete it."
|
2395 |
msgstr ""
|
2396 |
|
2397 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:53
|
|
|
2398 |
msgid "WP Statistics"
|
2399 |
msgstr ""
|
2400 |
|
2401 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:54
|
|
|
2402 |
msgid "Complete statistics for your WordPress site."
|
2403 |
msgstr ""
|
2404 |
|
2405 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:97
|
2406 |
+
#, php-format
|
2407 |
msgid ""
|
2408 |
"Online user tracking in WP Statistics is not enabled, please go to %s and "
|
2409 |
"enable it."
|
2410 |
msgstr ""
|
2411 |
|
2412 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:97
|
2413 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:100
|
2414 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:103
|
2415 |
msgid "setting page"
|
2416 |
msgstr ""
|
2417 |
|
2418 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:100
|
2419 |
+
#, php-format
|
2420 |
msgid ""
|
2421 |
"Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
|
2422 |
msgstr ""
|
2423 |
|
2424 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:103
|
2425 |
+
#, php-format
|
2426 |
msgid ""
|
2427 |
"Visitor tracking in WP Statistics is not enabled, please go to %s and enable "
|
2428 |
"it."
|
2429 |
msgstr ""
|
2430 |
|
2431 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:106
|
2432 |
+
#, php-format
|
2433 |
msgid ""
|
2434 |
"GeoIP collection is not active, please go to %s and enable this feature."
|
2435 |
msgstr ""
|
2436 |
|
2437 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:106
|
2438 |
msgid "Setting page > GeoIP"
|
2439 |
msgstr ""
|
2440 |
|
2441 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:191
|
2442 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:303
|
2443 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:375
|
2444 |
msgid "Settings"
|
2445 |
msgstr ""
|
2446 |
|
2447 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:203
|
2448 |
msgid "Click here to visit the plugin on WordPress.org"
|
2449 |
msgstr ""
|
2450 |
|
2451 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:203
|
2452 |
msgid "Visit WordPress.org page"
|
2453 |
msgstr ""
|
2454 |
|
2455 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:206
|
2456 |
msgid "Click here to rate and review this plugin on WordPress.org"
|
2457 |
msgstr ""
|
2458 |
|
2459 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:206
|
2460 |
msgid "Rate this plugin"
|
2461 |
msgstr ""
|
2462 |
|
2463 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:250
|
2464 |
msgid "WP Statistics - Hits"
|
2465 |
msgstr ""
|
2466 |
|
2467 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:287
|
2468 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:324
|
2469 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:362
|
2470 |
msgid "Overview"
|
2471 |
msgstr ""
|
2472 |
|
2473 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:294
|
2474 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:367
|
2475 |
msgid "Online"
|
2476 |
msgstr ""
|
2477 |
|
2478 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:296
|
2479 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:369
|
2480 |
+
msgid "Referrers"
|
2481 |
msgstr ""
|
2482 |
|
2483 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:297
|
2484 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:370
|
2485 |
msgid "Searches"
|
2486 |
msgstr ""
|
2487 |
|
2488 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:298
|
2489 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:371
|
2490 |
msgid "Search Words"
|
2491 |
msgstr ""
|
2492 |
|
2493 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:299
|
2494 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:372
|
2495 |
msgid "Top Visitors Today"
|
2496 |
msgstr ""
|
2497 |
|
2498 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:302
|
2499 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:374
|
2500 |
msgid "Optimization"
|
2501 |
msgstr ""
|
2502 |
|
2503 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:307
|
2504 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:338
|
2505 |
msgid "Manual"
|
2506 |
msgstr ""
|
2507 |
|
2508 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:353
|
2509 |
+
msgid "Site"
|
2510 |
+
msgstr ""
|
2511 |
+
|
2512 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:354
|
2513 |
+
msgid "Options"
|
2514 |
+
msgstr ""
|
2515 |
+
|
2516 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:471
|
2517 |
msgid "Today visitor"
|
2518 |
msgstr ""
|
2519 |
|
2520 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:477
|
2521 |
msgid "Today visit"
|
2522 |
msgstr ""
|
2523 |
|
2524 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:483
|
2525 |
msgid "Yesterday visitor"
|
2526 |
msgstr ""
|
2527 |
|
2528 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:495
|
2529 |
msgid "View Stats"
|
2530 |
msgstr ""
|
2531 |
|
2532 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:519
|
2533 |
msgid "Download ODF file"
|
2534 |
msgstr ""
|
2535 |
|
2536 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:520
|
2537 |
msgid "Download HTML file"
|
2538 |
msgstr ""
|
2539 |
|
2540 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:524
|
2541 |
msgid "Manual file not found."
|
2542 |
msgstr ""
|
2543 |
|
2544 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:591
|
2545 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:702
|
2546 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:736
|
2547 |
msgid "You do not have sufficient permissions to access this page."
|
2548 |
msgstr ""
|
2549 |
|
2550 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:604
|
2551 |
+
#, php-format
|
2552 |
msgid ""
|
2553 |
"Plugin tables do not exist in the database! Please re-run the %s install "
|
2554 |
"routine %s."
|
2555 |
msgstr ""
|
2556 |
|
2557 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-install.php:250
|
2558 |
+
#, php-format
|
2559 |
msgid "WP Statistics %s installed on"
|
2560 |
msgstr ""
|
2561 |
|
2562 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:34
|
2563 |
+
#, php-format
|
2564 |
msgid "Error downloading GeoIP database from: %s - %s"
|
2565 |
msgstr ""
|
2566 |
|
2567 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:45
|
2568 |
+
#, php-format
|
2569 |
msgid "Error could not open downloaded GeoIP database for reading: %s"
|
2570 |
msgstr ""
|
2571 |
|
2572 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:52
|
2573 |
+
#, php-format
|
2574 |
msgid "Error could not open destination GeoIP database for writing %s"
|
2575 |
msgstr ""
|
2576 |
|
2577 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:68
|
2578 |
msgid "GeoIP Database updated successfully!"
|
2579 |
msgstr ""
|
2580 |
|
2581 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:93
|
2582 |
msgid "GeoIP update on"
|
2583 |
msgstr ""
|
2584 |
|
2585 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:160
|
2586 |
+
#, php-format
|
2587 |
msgid "Error downloading browscap database from: %s - %s"
|
2588 |
msgstr ""
|
2589 |
|
2590 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:262
|
2591 |
msgid "browscap database updated successfully!"
|
2592 |
msgstr ""
|
2593 |
|
2594 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:273
|
2595 |
msgid ""
|
2596 |
"browscap database updated failed! Cache file too large, reverting to "
|
2597 |
"previous browscap.ini."
|
2598 |
msgstr ""
|
2599 |
|
2600 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:281
|
2601 |
msgid ""
|
2602 |
"browscap database updated failed! New browscap.ini is mis-identifing user "
|
2603 |
"agents as crawlers, reverting to previous browscap.ini."
|
2604 |
msgstr ""
|
2605 |
|
2606 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:303
|
2607 |
msgid "browscap already at current version!"
|
2608 |
msgstr ""
|
2609 |
|
2610 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:316
|
2611 |
msgid "Browscap.ini update on"
|
2612 |
msgstr ""
|
languages/wp_statistics-ar.mo
CHANGED
Binary file
|
languages/wp_statistics-ar.po
CHANGED
@@ -1,3035 +1,2400 @@
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"
|
4 |
-
"Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-statistics\n"
|
5 |
-
"POT-Creation-Date: 2014-12-26 16:38:23+00:00\n"
|
6 |
-
"PO-Revision-Date: 2015-01-06 12:25+0300\n"
|
7 |
-
"Last-Translator: aBuhaTim <al3zz@hotmail.com>\n"
|
8 |
-
"Language-Team: ABU HATIM <al3zz.com@gmail.com>\n"
|
9 |
-
"Language: ar_SA\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 |
-
msgid "
|
27 |
-
msgstr "
|
28 |
|
29 |
-
#:
|
30 |
-
|
31 |
-
|
32 |
-
msgstr "أعلى 10 دول"
|
33 |
|
34 |
-
#:
|
35 |
-
msgid "
|
36 |
-
msgstr "
|
37 |
|
38 |
-
#:
|
39 |
-
|
40 |
-
|
41 |
-
msgstr "احصائية النقرات"
|
42 |
|
43 |
-
#:
|
44 |
-
msgid "
|
45 |
-
msgstr "
|
46 |
|
47 |
-
#:
|
48 |
-
|
49 |
-
|
50 |
-
msgid "Recent Visitors"
|
51 |
-
msgstr "الزيارات الأخيرة"
|
52 |
|
53 |
-
#:
|
54 |
-
|
55 |
-
|
56 |
-
msgid "Top Referring Sites"
|
57 |
-
msgstr "أعلى المواقع اشارة"
|
58 |
|
59 |
-
#:
|
60 |
-
|
61 |
-
|
62 |
-
msgstr "إحالات محرك البحث"
|
63 |
|
64 |
-
#:
|
65 |
-
msgid "
|
66 |
-
msgstr "
|
67 |
|
68 |
-
#:
|
69 |
-
#: includes/
|
70 |
-
#:
|
71 |
-
|
72 |
-
|
|
|
73 |
|
74 |
-
#:
|
75 |
-
|
76 |
-
|
77 |
-
msgstr "أفضل 10 زوار اليوم"
|
78 |
|
79 |
-
#:
|
80 |
-
msgid "
|
81 |
-
msgstr "
|
82 |
|
83 |
-
#:
|
84 |
-
msgid "
|
85 |
-
msgstr "
|
86 |
|
87 |
-
#:
|
88 |
-
msgid "
|
89 |
-
msgstr "
|
90 |
|
91 |
-
#: includes/
|
92 |
-
msgid ""
|
93 |
-
|
94 |
-
"settings page."
|
95 |
-
msgstr ""
|
96 |
-
"غير قادر على تحميل قاعدة البيانات GeoIP، تأكد من أنك قمت بتنزيلها في صفحة "
|
97 |
-
"الإعدادات."
|
98 |
|
99 |
-
#: includes/
|
100 |
-
msgid "
|
101 |
-
msgstr "
|
102 |
|
103 |
-
#: includes/
|
104 |
-
|
105 |
-
|
106 |
-
msgstr "البيانات %s مضى عليها أكثر من %s أيام طهرت فيه بنجاح."
|
107 |
|
108 |
-
#: includes/
|
109 |
-
|
110 |
-
|
111 |
-
msgstr "لا توجد سجلات للتخلص من %s!"
|
112 |
|
113 |
-
#: includes/
|
114 |
-
msgid "
|
115 |
-
msgstr "
|
116 |
|
117 |
-
#: includes/
|
118 |
-
msgid "
|
119 |
-
msgstr "
|
120 |
|
121 |
-
#: includes/
|
122 |
-
msgid "
|
123 |
-
msgstr "
|
124 |
|
125 |
-
#: includes/
|
126 |
-
|
127 |
-
|
128 |
-
#: includes/log/last-visitor.php:60 includes/log/online.php:17
|
129 |
-
#: includes/log/page-statistics.php:47 includes/log/search-statistics.php:29
|
130 |
-
#: includes/log/top-pages.php:19 includes/log/top-pages.php:137
|
131 |
-
#: includes/log/top-referring.php:38 includes/log/widgets/about.php:7
|
132 |
-
#: includes/log/widgets/browsers.php:6 includes/log/widgets/countries.php:9
|
133 |
-
#: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:7
|
134 |
-
#: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:9
|
135 |
-
#: includes/log/widgets/recent.php:6 includes/log/widgets/referring.php:11
|
136 |
-
#: includes/log/widgets/search.php:6 includes/log/widgets/summary.php:7
|
137 |
-
#: includes/log/widgets/top.visitors.php:7 includes/log/widgets/words.php:6
|
138 |
-
msgid "Click to toggle"
|
139 |
-
msgstr "انقر للتبديل"
|
140 |
|
141 |
-
#:
|
142 |
-
|
143 |
-
|
144 |
-
msgstr "المتصفحات"
|
145 |
|
146 |
-
#: includes/
|
147 |
-
msgid "
|
148 |
-
msgstr "
|
149 |
|
150 |
-
#:
|
151 |
-
|
152 |
-
|
153 |
-
msgstr "المنصة"
|
154 |
|
155 |
-
#: includes/
|
156 |
-
msgid "
|
157 |
-
msgstr "
|
158 |
|
159 |
-
#: includes/
|
160 |
-
msgid "%s
|
161 |
-
msgstr "
|
162 |
|
163 |
-
#: includes/
|
164 |
-
msgid ""
|
165 |
-
"
|
166 |
-
"may not reflect current statistics!"
|
167 |
-
msgstr ""
|
168 |
-
"تنبيه: لم يتم تعيين الاستثناءات حاليا ليتم تسجيلها، قد لا تستطيع عكس نتائج "
|
169 |
-
"الإحصائيات الحالية أدناه!"
|
170 |
|
171 |
-
#: includes/
|
172 |
-
msgid "
|
173 |
-
msgstr "
|
174 |
|
175 |
-
#: includes/
|
176 |
-
|
177 |
-
|
178 |
-
msgstr "10 أيام"
|
179 |
|
180 |
-
#: includes/
|
181 |
-
|
182 |
-
|
183 |
-
msgstr "20 يوم"
|
184 |
|
185 |
-
#: includes/
|
186 |
-
|
187 |
-
|
188 |
-
msgstr "30 يو م"
|
189 |
|
190 |
-
#: includes/
|
191 |
-
|
192 |
-
|
193 |
-
msgstr "شهرين"
|
194 |
|
195 |
-
#: includes/
|
196 |
-
|
197 |
-
|
198 |
-
msgstr "3 أشهر"
|
199 |
|
200 |
-
#: includes/
|
201 |
-
|
202 |
-
|
203 |
-
msgstr "6 أشهر"
|
204 |
|
205 |
-
#: includes/
|
206 |
-
|
207 |
-
|
208 |
-
msgstr "9 أشهر"
|
209 |
|
210 |
-
#: includes/
|
211 |
-
|
212 |
-
|
213 |
-
msgstr "سنة"
|
214 |
|
215 |
-
#: includes/
|
216 |
-
msgid "
|
217 |
-
msgstr "
|
218 |
|
219 |
-
#: includes/
|
220 |
-
msgid "
|
221 |
-
msgstr "
|
222 |
|
223 |
-
#: includes/
|
224 |
-
msgid "
|
225 |
-
msgstr "
|
226 |
|
227 |
-
#: includes/
|
228 |
-
|
229 |
-
|
230 |
-
#: includes/optimization/tabs/wps-optimization-purging.php:151
|
231 |
-
msgid "days"
|
232 |
-
msgstr "أيام"
|
233 |
|
234 |
-
#: includes/
|
235 |
-
msgid "
|
236 |
-
msgstr "
|
237 |
|
238 |
-
#: includes/
|
239 |
-
msgid "
|
240 |
-
msgstr "
|
241 |
|
242 |
-
#:
|
243 |
-
msgid "
|
244 |
-
msgstr "
|
245 |
|
246 |
-
#:
|
247 |
-
msgid "
|
248 |
-
msgstr "
|
249 |
|
250 |
-
#:
|
251 |
-
|
252 |
-
|
253 |
-
msgstr "زيارة"
|
254 |
|
255 |
-
#:
|
256 |
-
|
257 |
-
|
258 |
-
msgstr "زائر"
|
259 |
|
260 |
-
#: includes/
|
261 |
-
msgid "
|
262 |
-
msgstr "
|
263 |
|
264 |
-
#: includes/
|
265 |
-
|
266 |
-
|
267 |
-
#: includes/log/widgets/words.php:32
|
268 |
-
msgid "#hash#"
|
269 |
-
msgstr "#hash#"
|
270 |
|
271 |
-
#: includes/
|
272 |
-
|
273 |
-
|
274 |
-
#: includes/settings/tabs/wps-overview-display.php:33
|
275 |
-
#: includes/settings/tabs/wps-overview-display.php:113
|
276 |
-
msgid "Map"
|
277 |
-
msgstr "خريطة"
|
278 |
|
279 |
-
#: includes/
|
280 |
-
|
281 |
-
|
282 |
-
msgid "Page"
|
283 |
-
msgstr "صفحة"
|
284 |
|
285 |
-
#: includes/
|
286 |
-
|
287 |
-
|
288 |
-
msgid "From"
|
289 |
-
msgstr "من"
|
290 |
|
291 |
-
#: includes/
|
292 |
-
|
293 |
-
|
294 |
-
msgstr "الكل"
|
295 |
|
296 |
-
#: includes/
|
297 |
-
msgid "
|
298 |
-
msgstr "
|
299 |
|
300 |
-
#: includes/
|
301 |
-
msgid "
|
302 |
-
msgstr "
|
303 |
|
304 |
-
#: includes/
|
305 |
-
msgid "
|
306 |
-
msgstr "
|
307 |
|
308 |
-
#: includes/
|
309 |
-
msgid "
|
310 |
-
msgstr "
|
311 |
|
312 |
-
#: includes/
|
313 |
-
msgid "
|
314 |
-
msgstr "
|
315 |
|
316 |
-
#: includes/
|
317 |
-
msgid "
|
318 |
-
msgstr "
|
319 |
|
320 |
-
#:
|
321 |
-
msgid "
|
322 |
-
msgstr "
|
323 |
|
324 |
-
#:
|
325 |
-
msgid "
|
326 |
-
msgstr "
|
327 |
|
328 |
-
#:
|
329 |
-
|
330 |
-
|
|
|
331 |
|
332 |
-
#:
|
333 |
-
|
334 |
-
|
335 |
-
msgstr "المجموع"
|
336 |
|
337 |
-
#: includes/
|
338 |
-
msgid "
|
339 |
-
msgstr "
|
340 |
|
341 |
-
#:
|
342 |
-
|
343 |
-
|
344 |
-
msgstr "الترتيب"
|
345 |
|
346 |
-
#:
|
347 |
-
|
348 |
-
|
349 |
-
msgstr "العلم"
|
350 |
|
351 |
-
#:
|
352 |
-
|
353 |
-
|
354 |
-
msgstr "الدولة"
|
355 |
|
356 |
-
#:
|
357 |
-
|
358 |
-
|
|
|
|
|
359 |
|
360 |
-
#: includes/
|
361 |
-
msgid "
|
362 |
-
msgstr "
|
363 |
|
364 |
-
#: includes/
|
365 |
-
msgid "
|
366 |
-
msgstr "
|
367 |
|
368 |
-
#: includes/
|
369 |
-
msgid "
|
370 |
-
msgstr "
|
371 |
|
372 |
-
#:
|
373 |
-
msgid "
|
374 |
-
msgstr "
|
375 |
-
|
376 |
-
#: includes/log/top-pages.php:166 includes/log/widgets/pages.php:32
|
377 |
-
msgid "No page title found"
|
378 |
-
msgstr "لم يتم العثور على عنوان الصفحة"
|
379 |
|
380 |
-
#:
|
381 |
-
|
382 |
-
|
383 |
-
#: includes/settings/tabs/wps-general.php:127
|
384 |
-
msgid "Visits"
|
385 |
-
msgstr "الزيارات"
|
386 |
|
387 |
-
#: includes/
|
388 |
-
msgid "
|
389 |
-
msgstr "
|
390 |
|
391 |
-
#: includes/
|
392 |
-
msgid "
|
393 |
-
msgstr "
|
394 |
|
395 |
-
#:
|
396 |
-
msgid "
|
397 |
-
msgstr "
|
398 |
|
399 |
-
#: includes/
|
400 |
-
msgid "
|
401 |
-
msgstr "
|
402 |
|
403 |
-
#: includes/
|
404 |
-
msgid "
|
405 |
-
msgstr "
|
406 |
|
407 |
-
#: includes/
|
408 |
-
msgid "
|
409 |
-
msgstr "
|
410 |
|
411 |
-
#: includes/
|
412 |
-
|
413 |
-
|
|
|
|
|
|
|
414 |
|
415 |
-
#: includes/
|
416 |
-
|
417 |
-
|
|
|
|
|
418 |
|
419 |
-
#:
|
420 |
-
|
421 |
-
|
422 |
-
|
423 |
-
"
|
424 |
|
425 |
-
#:
|
426 |
-
#:
|
427 |
-
#:
|
428 |
-
|
429 |
-
|
430 |
-
msgid "More"
|
431 |
-
msgstr "المزيد"
|
432 |
|
433 |
-
#: includes/
|
434 |
-
|
435 |
-
|
|
|
436 |
|
437 |
-
#:
|
438 |
-
|
439 |
-
|
|
|
|
|
440 |
|
441 |
-
#: includes/
|
442 |
-
|
443 |
-
|
|
|
|
|
444 |
|
445 |
-
#: includes/
|
446 |
-
|
447 |
-
|
|
|
448 |
|
449 |
-
#:
|
450 |
-
msgid "
|
451 |
-
msgstr "
|
452 |
|
453 |
-
#:
|
454 |
-
|
455 |
-
|
|
|
456 |
|
457 |
-
#: includes/
|
458 |
-
msgid "
|
459 |
-
msgstr "
|
460 |
|
461 |
-
#: includes/
|
462 |
-
msgid "
|
463 |
-
msgstr "
|
464 |
|
465 |
-
#: includes/
|
466 |
-
msgid "
|
467 |
-
msgstr "
|
468 |
|
469 |
-
#: includes/
|
470 |
-
msgid "
|
471 |
-
msgstr "
|
472 |
|
473 |
-
#: includes/
|
474 |
-
|
475 |
-
|
|
|
|
|
476 |
|
477 |
-
#: includes/
|
478 |
-
msgid "
|
479 |
-
msgstr "
|
480 |
|
481 |
-
#: includes/
|
482 |
-
msgid "
|
483 |
-
msgstr "
|
484 |
|
485 |
-
#: includes/
|
486 |
-
msgid "
|
487 |
-
msgstr "
|
488 |
|
489 |
-
#: includes/
|
490 |
-
|
491 |
-
|
492 |
-
msgstr "نقرات"
|
493 |
|
494 |
-
#: includes/
|
495 |
-
msgid "
|
496 |
-
msgstr "
|
497 |
|
498 |
-
#: includes/
|
499 |
-
msgid "
|
500 |
-
msgstr "
|
501 |
|
502 |
-
#: includes/
|
503 |
-
|
504 |
-
|
505 |
-
msgstr "الإصدار"
|
506 |
|
507 |
-
#: includes/
|
508 |
-
|
509 |
-
|
510 |
-
#: includes/optimization/purge-data.php:6
|
511 |
-
#: includes/optimization/wps-optimization.php:6 manual/manual.php:5
|
512 |
-
msgid "Access denied!"
|
513 |
-
msgstr "تم رفض الوصول!"
|
514 |
|
515 |
-
#: includes/
|
516 |
-
msgid "
|
517 |
-
msgstr "
|
518 |
|
519 |
-
#: includes/
|
520 |
-
msgid "
|
521 |
-
msgstr "لا
|
522 |
|
523 |
-
#: includes/
|
524 |
-
|
525 |
-
|
526 |
-
msgid "Please select the desired items."
|
527 |
-
msgstr "يرجى تحديد العناصر المطلوبة."
|
528 |
|
529 |
-
#: includes/
|
530 |
-
msgid "
|
531 |
-
msgstr "
|
532 |
|
533 |
-
#: includes/
|
534 |
-
msgid "
|
535 |
-
msgstr "
|
536 |
|
537 |
-
#: includes/
|
538 |
-
msgid "
|
539 |
-
msgstr "
|
540 |
|
541 |
-
#: includes/
|
542 |
-
msgid "
|
543 |
-
msgstr "
|
544 |
|
545 |
-
#: includes/
|
546 |
-
msgid "
|
547 |
-
msgstr "
|
548 |
|
549 |
-
#: includes/
|
550 |
-
msgid "
|
551 |
-
msgstr "
|
552 |
|
553 |
-
#: includes/
|
554 |
-
msgid "
|
555 |
-
msgstr "
|
556 |
|
557 |
-
#: includes/
|
558 |
-
msgid ""
|
559 |
-
"
|
560 |
-
"database tables or other core items, this will re-execute the install "
|
561 |
-
"process."
|
562 |
-
msgstr ""
|
563 |
-
"لسبب ما اذا فقدت بيانات في قاعدة البيانات أو احد العناصر الأساسية, هذا الأمر "
|
564 |
-
"سيعيد تنفيذ العملية مرة أخرى."
|
565 |
|
566 |
-
#: includes/
|
567 |
-
msgid "
|
568 |
-
msgstr "
|
569 |
|
570 |
-
#: includes/
|
571 |
-
|
572 |
-
|
573 |
-
msgid "Countries"
|
574 |
-
msgstr "الدول"
|
575 |
|
576 |
-
#: includes/
|
577 |
-
|
578 |
-
|
579 |
-
msgid "Update Now!"
|
580 |
-
msgstr "تحديث الآن!"
|
581 |
|
582 |
-
#: includes/
|
583 |
-
msgid ""
|
584 |
-
"
|
585 |
-
"table in a corner case. Newer installs protect against this with a unique "
|
586 |
-
"index on the table. To create the index on the older installs duplicate "
|
587 |
-
"entries must be deleted first. Clicking \"Update Now\" will scan the "
|
588 |
-
"vistitors table, delete duplicate entries and add the index."
|
589 |
-
msgstr ""
|
590 |
-
"المنصب القديم لإضافة احصائيات ووردبريس تسمح للإدخالات المتكررة في جداول "
|
591 |
-
"الزوار في بعض الحالات. بتثبيت أحدث منتج يجب تواجد الفهرس في الجداول. لإنشاء "
|
592 |
-
"فهرس لمنتج قديم يجب أن يتم حذف الإدخالات المكررة أولاً. أنقر على \"تحديث الآن"
|
593 |
-
"\" وسيقوم تلقائيا بفحص جدول الزوار وحذف كافة الإدخالات المكررة وإضافة الفهرس."
|
594 |
|
595 |
-
#: includes/
|
596 |
-
msgid ""
|
597 |
-
"
|
598 |
-
"visitors table."
|
599 |
-
msgstr ""
|
600 |
-
"هذه العملية يمكن أن تستغرق وقتا طويلا على تثبيت مع العديد من الصفوف في جدول "
|
601 |
-
"الزوار."
|
602 |
|
603 |
-
#: includes/
|
604 |
-
msgid ""
|
605 |
-
"
|
606 |
-
"table in a corner case. Newer installs protect against this with a unique "
|
607 |
-
"index on the table."
|
608 |
-
msgstr ""
|
609 |
-
"الإصدارات القديمة من منتج احصائيات ووردبريس تسمح للإدخالات المكررة في جدول "
|
610 |
-
"الزوار في بعض الحالات. عند تثبيت إصدارات أحدث من ذلك سيتم إضافة فهرس فريد "
|
611 |
-
"على الجدول."
|
612 |
|
613 |
-
#: includes/
|
614 |
-
|
615 |
-
|
616 |
-
msgstr "
|
617 |
|
618 |
-
#: includes/
|
619 |
-
|
620 |
-
|
621 |
-
msgstr "تصدير"
|
622 |
|
623 |
-
#: includes/
|
624 |
-
msgid "
|
625 |
-
msgstr "
|
626 |
|
627 |
-
#: includes/
|
628 |
-
|
629 |
-
|
630 |
-
#: includes/optimization/tabs/wps-optimization-purging.php:170
|
631 |
-
#: includes/optimization/tabs/wps-optimization-purging.php:194
|
632 |
-
#: includes/settings/tabs/wps-notifications.php:134
|
633 |
-
#: includes/settings/tabs/wps-notifications.php:164
|
634 |
-
msgid "Please select"
|
635 |
-
msgstr "الرجاء تحديد"
|
636 |
|
637 |
-
#: includes/
|
638 |
-
msgid "
|
639 |
-
msgstr "
|
640 |
|
641 |
-
#: includes/
|
642 |
-
msgid "
|
643 |
-
msgstr "
|
644 |
|
645 |
-
#: includes/
|
646 |
-
msgid "
|
647 |
-
msgstr "
|
648 |
|
649 |
-
#: includes/
|
650 |
-
msgid "
|
651 |
-
msgstr "
|
652 |
|
653 |
-
#: includes/
|
654 |
-
msgid "
|
655 |
-
msgstr "
|
656 |
|
657 |
-
#: includes/
|
658 |
-
msgid "
|
659 |
-
msgstr "
|
660 |
|
661 |
-
#: includes/
|
662 |
-
msgid "
|
663 |
-
msgstr "
|
664 |
|
665 |
-
#: includes/
|
666 |
-
msgid ""
|
667 |
-
|
668 |
-
"these numbers to be correct."
|
669 |
-
msgstr ""
|
670 |
-
"ملاحظة: كلما قمت بتطهير قاعدة البيانات يجب تحميل هذه الصفحة لتكون الأرقام "
|
671 |
-
"صحيحة."
|
672 |
|
673 |
-
#: includes/
|
674 |
-
|
675 |
-
|
676 |
-
msgid "Visitors"
|
677 |
-
msgstr "الزوار"
|
678 |
|
679 |
-
#: includes/
|
680 |
-
msgid ""
|
681 |
-
|
682 |
-
msgstr "العدد التاريخي لزوار الموقع (القيمة الحالية هي %s)."
|
683 |
|
684 |
-
#: includes/
|
685 |
-
msgid ""
|
686 |
-
|
687 |
-
msgstr "العدد التاريخي لزيارات الموقع (القيمة الحالية هي %s)."
|
688 |
|
689 |
-
#: includes/
|
690 |
-
msgid "Update
|
691 |
-
msgstr "تحديث
|
692 |
|
693 |
-
#:
|
694 |
-
|
695 |
-
|
696 |
-
#: includes/optimization/tabs/wps-optimization-purging.php:91
|
697 |
-
msgid "Are you sure?"
|
698 |
-
msgstr "هل أنت متأكد؟"
|
699 |
|
700 |
-
#:
|
701 |
-
msgid "
|
702 |
-
msgstr "
|
703 |
|
704 |
-
#:
|
705 |
-
msgid "
|
706 |
-
msgstr "
|
707 |
|
708 |
-
#:
|
709 |
-
msgid "
|
710 |
-
msgstr "
|
711 |
-
|
712 |
-
#: includes/optimization/tabs/wps-optimization-purging.php:138
|
713 |
-
msgid "Clear now!"
|
714 |
-
msgstr "مسح الآن!"
|
715 |
|
716 |
-
#:
|
717 |
-
msgid "
|
718 |
-
msgstr "
|
719 |
|
720 |
-
#:
|
721 |
-
|
722 |
-
|
723 |
-
|
724 |
-
msgstr ""
|
725 |
-
"بيانات الاحصائيات المستخدم المحذوف أقدم من الرقم المحدد من الأيام. قيمة الحد "
|
726 |
-
"الأدنى هو 30 يوما."
|
727 |
|
728 |
-
#:
|
729 |
-
msgid "
|
730 |
-
msgstr "
|
731 |
|
732 |
-
#:
|
733 |
-
|
734 |
-
|
|
|
735 |
|
736 |
-
#:
|
737 |
-
|
738 |
-
|
|
|
739 |
|
740 |
-
#:
|
741 |
-
|
742 |
-
|
|
|
743 |
|
744 |
-
#:
|
745 |
-
#:
|
746 |
-
msgid "
|
747 |
-
msgstr "
|
748 |
|
749 |
-
#:
|
750 |
-
msgid "
|
751 |
-
msgstr "
|
752 |
|
753 |
-
#:
|
754 |
-
|
755 |
-
|
|
|
756 |
|
757 |
-
#:
|
758 |
-
|
759 |
-
|
|
|
760 |
|
761 |
-
#:
|
762 |
-
#:
|
763 |
-
msgid "
|
764 |
-
msgstr "
|
765 |
|
766 |
-
#:
|
767 |
-
#:
|
768 |
-
msgid "
|
769 |
-
msgstr "
|
770 |
|
771 |
-
#:
|
772 |
-
|
773 |
-
|
|
|
774 |
|
775 |
-
#:
|
776 |
-
|
777 |
-
|
|
|
778 |
|
779 |
-
#:
|
780 |
-
|
781 |
-
|
|
|
782 |
|
783 |
-
#:
|
784 |
-
|
785 |
-
|
786 |
-
"
|
787 |
-
|
788 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:55
|
789 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:66
|
790 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:77
|
791 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:88
|
792 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:99
|
793 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:110
|
794 |
-
msgid "Number of rows in the %s table"
|
795 |
-
msgstr "عدد الصفوف في جدول %s"
|
796 |
|
797 |
-
#:
|
798 |
-
#:
|
799 |
-
|
800 |
-
|
801 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:103
|
802 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:114
|
803 |
-
msgid "Row"
|
804 |
-
msgstr "صف"
|
805 |
|
806 |
-
#:
|
807 |
-
|
808 |
-
|
809 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:93
|
810 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:104
|
811 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:115
|
812 |
-
msgid "Number of rows"
|
813 |
-
msgstr "عدد الصفوف"
|
814 |
|
815 |
-
#:
|
816 |
-
msgid "
|
817 |
-
msgstr "
|
818 |
|
819 |
-
#:
|
820 |
-
|
821 |
-
|
|
|
822 |
|
823 |
-
#:
|
824 |
-
msgid "
|
825 |
-
msgstr "
|
826 |
|
827 |
-
#:
|
828 |
-
msgid "
|
829 |
-
msgstr "
|
830 |
|
831 |
-
#:
|
832 |
-
msgid "
|
833 |
-
msgstr "إصدار PHP
|
834 |
|
835 |
-
#:
|
836 |
-
msgid "
|
837 |
-
msgstr "
|
838 |
|
839 |
-
#:
|
840 |
-
msgid "
|
841 |
-
msgstr "
|
842 |
|
843 |
-
#:
|
844 |
-
msgid "
|
845 |
-
msgstr "
|
846 |
|
847 |
-
#:
|
848 |
-
msgid "
|
849 |
-
msgstr "
|
850 |
|
851 |
-
#:
|
852 |
-
msgid "
|
853 |
-
msgstr "
|
854 |
|
855 |
-
#:
|
856 |
-
msgid "
|
857 |
-
msgstr "
|
858 |
|
859 |
-
#:
|
860 |
-
|
861 |
-
|
862 |
-
"
|
863 |
-
msgstr ""
|
864 |
-
"نسخة الملحق PHP cURL تعمل. الملحق cURL مطلوب لعمل كود GeoIP, وإذا لم يتم "
|
865 |
-
"تثبيته يتم تعطيل GeoIP."
|
866 |
|
867 |
-
#:
|
868 |
-
msgid "
|
869 |
-
msgstr "
|
870 |
|
871 |
-
#:
|
872 |
-
msgid "
|
873 |
-
msgstr "
|
874 |
|
875 |
-
#:
|
876 |
-
msgid "
|
877 |
-
msgstr "غير
|
878 |
|
879 |
-
#:
|
880 |
-
msgid ""
|
881 |
-
"
|
882 |
-
"for the GeoIP code and is listed here only for historical reasons."
|
883 |
-
msgstr ""
|
884 |
-
"هل تم تثبيت PHP BC Math Extension مسبقاً. الآن ملحق BC Math لم يعد مطلوبا "
|
885 |
-
"لكود GeoIP ويتم سرده هنا فقط لأسباب تاريخية."
|
886 |
|
887 |
-
#:
|
888 |
-
|
889 |
-
|
|
|
|
|
890 |
|
891 |
-
#:
|
892 |
-
msgid "
|
893 |
-
msgstr "
|
894 |
|
895 |
-
#:
|
896 |
-
msgid "
|
897 |
-
msgstr "
|
898 |
|
899 |
-
#:
|
900 |
-
|
901 |
-
|
902 |
-
msgid ", created on "
|
903 |
-
msgstr "، التي تم إنشاؤها على"
|
904 |
|
905 |
-
#:
|
906 |
-
msgid "
|
907 |
-
msgstr "
|
908 |
|
909 |
-
#:
|
910 |
-
msgid "
|
911 |
-
msgstr "
|
912 |
|
913 |
-
#:
|
914 |
-
|
915 |
-
|
|
|
|
|
916 |
|
917 |
-
#:
|
918 |
-
|
919 |
-
|
|
|
920 |
|
921 |
-
#:
|
922 |
-
|
923 |
-
|
|
|
924 |
|
925 |
-
#:
|
926 |
-
|
927 |
-
|
|
|
928 |
|
929 |
-
#:
|
930 |
-
|
931 |
-
|
|
|
932 |
|
933 |
-
#:
|
934 |
-
|
935 |
-
|
|
|
936 |
|
937 |
-
#:
|
938 |
-
|
939 |
-
|
|
|
940 |
|
941 |
-
#:
|
942 |
-
|
943 |
-
|
|
|
944 |
|
945 |
-
#:
|
946 |
-
msgid "
|
947 |
-
msgstr "
|
948 |
|
949 |
-
#:
|
950 |
-
msgid "
|
951 |
-
msgstr "
|
952 |
|
953 |
-
#:
|
954 |
-
msgid "
|
955 |
-
msgstr "
|
956 |
|
957 |
-
#:
|
958 |
-
msgid "
|
959 |
-
msgstr "
|
960 |
|
961 |
-
#:
|
962 |
-
msgid "
|
963 |
-
msgstr "
|
964 |
|
965 |
-
#:
|
966 |
-
msgid "
|
967 |
-
msgstr "
|
968 |
|
969 |
-
#:
|
970 |
-
msgid ""
|
971 |
-
"
|
972 |
-
"cannot be undo, are you sure?"
|
973 |
-
msgstr ""
|
974 |
-
"سيؤدي ذلك إلى استبدال جميع عناوين IP في قاعدة البيانات مع قيم التجزئة ولا "
|
975 |
-
"يمكن التراجع، هل أنت متأكد؟"
|
976 |
|
977 |
-
#:
|
978 |
-
msgid "
|
979 |
-
msgstr "
|
980 |
|
981 |
-
#:
|
982 |
-
msgid ""
|
983 |
-
"
|
984 |
-
msgstr ""
|
985 |
-
"تحديث أي بيانات الموقع غير معروفة في قاعدة البيانات, هذا قد يستغرق بعض الوقت"
|
986 |
|
987 |
-
#:
|
988 |
-
#:
|
989 |
-
|
990 |
-
|
|
|
991 |
|
992 |
-
#:
|
993 |
-
|
994 |
-
|
995 |
-
msgstr "عناوين IP المجزئة"
|
996 |
|
997 |
-
#:
|
998 |
-
msgid ""
|
999 |
-
"
|
1000 |
-
"to recover the IP addresses in the future to populate location information "
|
1001 |
-
"afterwards and this may take a while"
|
1002 |
-
msgstr ""
|
1003 |
-
"استبدال عناوين IP في قاعدة البيانات مع قيم التجزئة، فإنك لن تكون قادرا على "
|
1004 |
-
"استرداد عناوين IP في المستقبل لتجميع معلومات عن الموقع بعد ذلك وهذا قد "
|
1005 |
-
"يستغرق بعض الوقت"
|
1006 |
|
1007 |
-
#:
|
1008 |
-
msgid "
|
1009 |
-
msgstr "
|
1010 |
|
1011 |
-
#:
|
1012 |
-
msgid "
|
1013 |
-
msgstr "
|
1014 |
|
1015 |
-
#:
|
1016 |
-
msgid "
|
1017 |
-
msgstr "
|
1018 |
|
1019 |
-
#:
|
1020 |
-
msgid "
|
1021 |
-
msgstr "
|
1022 |
|
1023 |
-
#:
|
1024 |
-
msgid "
|
1025 |
-
msgstr "
|
1026 |
|
1027 |
-
#:
|
1028 |
-
msgid "
|
1029 |
-
msgstr "
|
1030 |
|
1031 |
-
#:
|
1032 |
-
msgid "
|
1033 |
-
msgstr "
|
1034 |
|
1035 |
-
#:
|
1036 |
-
msgid "
|
1037 |
-
msgstr "
|
1038 |
|
1039 |
-
#:
|
1040 |
-
msgid "
|
1041 |
-
msgstr "
|
1042 |
|
1043 |
-
#:
|
1044 |
-
msgid ""
|
1045 |
-
"
|
1046 |
-
"Statistics."
|
1047 |
-
msgstr ""
|
1048 |
-
"قم بزيارة موقعنا الجديد كلياً على %s وأبقى على إطلاع دائم حول أخبار احصائيات "
|
1049 |
-
"ووردبريس."
|
1050 |
|
1051 |
-
#:
|
1052 |
-
msgid "
|
1053 |
-
msgstr "
|
1054 |
|
1055 |
-
#:
|
1056 |
-
msgid "
|
1057 |
-
msgstr "
|
1058 |
|
1059 |
-
#:
|
1060 |
-
|
1061 |
-
|
|
|
1062 |
|
1063 |
-
#:
|
1064 |
-
|
1065 |
-
|
|
|
|
|
1066 |
|
1067 |
-
#:
|
1068 |
-
msgid "
|
1069 |
-
msgstr "
|
1070 |
|
1071 |
-
#:
|
1072 |
-
|
1073 |
-
|
|
|
|
|
|
|
1074 |
|
1075 |
-
#:
|
1076 |
-
|
1077 |
-
"
|
1078 |
-
"
|
1079 |
-
"you would like to help."
|
1080 |
-
msgstr ""
|
1081 |
-
"احصائيات ووردبريس تدعم التدويل ونحن نشجع مستخدمينا على تقديم الترجمات، يرجى "
|
1082 |
-
"زيارة موقعنا %s لرؤية الوضع الحالي و %s إذا كنت ترغب في المساعدة."
|
1083 |
|
1084 |
-
#:
|
1085 |
-
|
1086 |
-
|
|
|
|
|
|
|
1087 |
|
1088 |
-
#:
|
1089 |
-
|
1090 |
-
|
|
|
|
|
|
|
|
|
1091 |
|
1092 |
-
#:
|
1093 |
-
|
1094 |
-
|
|
|
|
|
1095 |
|
1096 |
-
#:
|
1097 |
-
|
1098 |
-
|
1099 |
-
|
1100 |
-
msgstr ""
|
1101 |
-
"نحن آسفون إن كنت تواجه مشكلة مع احصائيات ووردبريس ونحن سعداء للمساعدة. وهنا "
|
1102 |
-
"عدد قليل من الأشياء للقيام بها قبل الاتصال بنا:"
|
1103 |
|
1104 |
-
#:
|
1105 |
-
#: includes/
|
1106 |
-
|
1107 |
-
|
|
|
|
|
1108 |
|
1109 |
-
#:
|
1110 |
-
|
1111 |
-
|
|
|
|
|
1112 |
|
1113 |
-
#:
|
1114 |
-
msgid "
|
1115 |
-
msgstr "
|
1116 |
|
1117 |
-
#:
|
1118 |
-
msgid "
|
1119 |
-
msgstr "
|
1120 |
|
1121 |
-
#:
|
1122 |
-
msgid "
|
1123 |
-
msgstr "
|
1124 |
|
1125 |
-
#: includes/
|
1126 |
-
msgid "
|
1127 |
-
msgstr "
|
1128 |
|
1129 |
-
#: includes/
|
1130 |
-
msgid "
|
1131 |
-
msgstr "
|
1132 |
|
1133 |
-
#: includes/
|
1134 |
-
|
1135 |
-
|
|
|
|
|
|
|
1136 |
|
1137 |
-
#: includes/
|
1138 |
-
|
1139 |
-
|
|
|
|
|
|
|
1140 |
|
1141 |
-
#: includes/
|
1142 |
-
msgid "
|
1143 |
-
msgstr "
|
1144 |
|
1145 |
-
#: includes/
|
1146 |
-
msgid "
|
1147 |
-
msgstr "
|
1148 |
|
1149 |
-
#: includes/
|
1150 |
-
msgid "
|
1151 |
-
msgstr "
|
1152 |
|
1153 |
-
#: includes/
|
1154 |
-
|
1155 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1156 |
|
1157 |
-
#: includes/
|
1158 |
-
|
1159 |
-
|
1160 |
-
|
1161 |
-
|
1162 |
-
|
1163 |
-
|
1164 |
|
1165 |
-
#: includes/
|
1166 |
-
msgid "
|
1167 |
-
msgstr "
|
1168 |
|
1169 |
-
#: includes/
|
1170 |
-
|
1171 |
-
|
|
|
|
|
1172 |
|
1173 |
-
#: includes/
|
1174 |
-
msgid ""
|
1175 |
-
"
|
1176 |
-
"possible."
|
1177 |
-
msgstr "الرجاء فتح موضوع جديد في %s، وسنقوم بالرد في أقرب وقت ممكن."
|
1178 |
|
1179 |
-
#: includes/
|
1180 |
-
msgid "
|
1181 |
-
msgstr "
|
1182 |
|
1183 |
-
#: includes/
|
1184 |
-
msgid "
|
1185 |
-
msgstr "
|
1186 |
|
1187 |
-
#: includes/
|
1188 |
-
msgid "
|
1189 |
-
msgstr "
|
1190 |
|
1191 |
-
#: includes/
|
1192 |
-
|
1193 |
-
|
|
|
|
|
|
|
1194 |
|
1195 |
-
#: includes/
|
1196 |
-
|
1197 |
-
|
|
|
|
|
|
|
1198 |
|
1199 |
-
#: includes/
|
1200 |
-
|
1201 |
-
|
|
|
|
|
|
|
1202 |
|
1203 |
-
#: includes/
|
1204 |
-
|
1205 |
-
|
|
|
|
|
|
|
1206 |
|
1207 |
-
#: includes/
|
1208 |
-
|
1209 |
-
|
|
|
|
|
|
|
1210 |
|
1211 |
-
#: includes/
|
1212 |
-
|
1213 |
-
|
|
|
|
|
|
|
1214 |
|
1215 |
-
#: includes/
|
1216 |
-
|
1217 |
-
|
|
|
|
|
|
|
1218 |
|
1219 |
-
#: includes/
|
1220 |
-
|
1221 |
-
|
1222 |
-
|
1223 |
-
"
|
1224 |
-
msgstr ""
|
1225 |
-
"تلميح: manage_network = مسؤول, manage_options = مدير, edit_others_posts = "
|
1226 |
-
"محرر, publish_posts = كاتب, edit_posts = مساهم, read = الجميع"
|
1227 |
|
1228 |
-
#: includes/
|
1229 |
-
msgid ""
|
1230 |
-
"
|
1231 |
-
"configuration. So for example selecting publish_posts grants the right to "
|
1232 |
-
"Authors, Editors, Admins and Super Admins."
|
1233 |
-
msgstr ""
|
1234 |
-
"كل ما سبق من الكاسكيدز هي حقوق تكوين الووردبريس الافتراضي. على سبيل المثال "
|
1235 |
-
"عند اختيار publish_posts يمنح حقوق المؤلف,المحرر,المدير,المسؤول."
|
1236 |
|
1237 |
-
#: includes/
|
1238 |
-
msgid ""
|
1239 |
-
"
|
1240 |
-
"at %s in the WordPress plugin directory."
|
1241 |
-
msgstr ""
|
1242 |
-
"إذا كنت في حاجة الى حل أكثر قوة لتفويض الوصول التي قد ترغب في النظر في %s "
|
1243 |
-
"الدليل المساعد لووردبريس."
|
1244 |
|
1245 |
-
#:
|
1246 |
-
msgid "
|
1247 |
-
msgstr "
|
1248 |
|
1249 |
-
#: includes/
|
1250 |
-
|
1251 |
-
|
|
|
|
|
|
|
|
|
|
|
1252 |
|
1253 |
-
#: includes/
|
1254 |
-
|
1255 |
-
|
1256 |
-
msgid "Enable"
|
1257 |
-
msgstr "تمكين"
|
1258 |
|
1259 |
-
#: includes/
|
1260 |
-
msgid ""
|
1261 |
-
"
|
1262 |
-
"why it was excluded but no other information. This will generate a lot of "
|
1263 |
-
"data but is useful if you want to see the total number of hits your site "
|
1264 |
-
"gets, not just actual user visits."
|
1265 |
-
msgstr ""
|
1266 |
-
"يقوم هذا الخيار بتسجيل جميع النقرات المستبعدة في جدول منفصل مع أسباب "
|
1267 |
-
"الأستبعاد، ولكن بدون معلومات أخرى. وهذا قد يولد الكثير من البيانات ولكن هو "
|
1268 |
-
"مفيد إذا كنت تريد أن ترى العدد الكلي من المشاهدات التي يحصل عليها موقعك، "
|
1269 |
-
"وليس فقط المستخدم الفعلي للموقع."
|
1270 |
|
1271 |
-
#: includes/
|
1272 |
-
|
1273 |
-
|
|
|
1274 |
|
1275 |
-
#: includes/
|
1276 |
-
#: includes/
|
1277 |
-
|
1278 |
-
|
1279 |
-
msgstr "منع"
|
1280 |
|
1281 |
-
#: includes/
|
1282 |
-
|
1283 |
-
|
|
|
|
|
1284 |
|
1285 |
-
#: includes/
|
1286 |
-
|
1287 |
-
|
|
|
|
|
1288 |
|
1289 |
-
#: includes/
|
1290 |
-
msgid "
|
1291 |
-
msgstr "
|
1292 |
|
1293 |
-
#: includes/
|
1294 |
-
|
1295 |
-
|
1296 |
-
|
1297 |
-
|
1298 |
-
|
1299 |
-
|
|
|
|
|
1300 |
|
1301 |
-
#: includes/
|
1302 |
-
|
1303 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1304 |
|
1305 |
-
#: includes/
|
1306 |
-
|
1307 |
-
|
|
|
|
|
|
|
|
|
1308 |
|
1309 |
-
#: includes/
|
1310 |
-
|
1311 |
-
|
1312 |
-
|
1313 |
-
|
1314 |
-
|
1315 |
-
|
1316 |
-
"لتأخذ مكان. ملاحظة إذا تم تمكين هذا الخيار أي روبوتات تم تخصيصها في القائمة "
|
1317 |
-
"سوف تضيع."
|
1318 |
|
1319 |
-
#: includes/
|
1320 |
-
|
1321 |
-
|
|
|
|
|
|
|
1322 |
|
1323 |
-
#: includes/
|
1324 |
-
msgid ""
|
1325 |
-
"
|
1326 |
-
"disabled."
|
1327 |
-
msgstr ""
|
1328 |
-
"تعامل للزوار أكثر من هذا العدد من مرة في اليوم الواحد كما الروبوتات. 0 = "
|
1329 |
-
"تعطيل."
|
1330 |
|
1331 |
-
#: includes/
|
1332 |
-
msgid "
|
1333 |
-
msgstr "
|
1334 |
|
1335 |
-
#: includes/
|
1336 |
-
|
1337 |
-
"
|
1338 |
-
"
|
1339 |
-
"formats are accepted). To specify an IP address only, use a subnet value of "
|
1340 |
-
"32 or 255.255.255.255."
|
1341 |
-
msgstr ""
|
1342 |
-
"قائمة عناوين IP وأقنعة الشبكة الفرعية (واحد في كل سطر) لاستبعاد من جميع "
|
1343 |
-
"الإحصائيات (وتقبل الأشكال كل من 192.168.0.0/24 و "
|
1344 |
-
"192.168.0.0/255.255.255.0 ). لتحديد عنوان IP فقط، استخدم قيمة الشبكة الفرعية "
|
1345 |
-
"32 أو 255.255.255.255.255."
|
1346 |
|
1347 |
-
#: includes/
|
1348 |
-
msgid "
|
1349 |
-
msgstr "
|
1350 |
|
1351 |
-
#: includes/
|
1352 |
-
msgid "
|
1353 |
-
msgstr "
|
1354 |
|
1355 |
-
#: includes/
|
1356 |
-
msgid "
|
1357 |
-
msgstr "
|
1358 |
|
1359 |
-
#: includes/
|
1360 |
-
|
1361 |
-
|
|
|
1362 |
|
1363 |
-
#: includes/
|
1364 |
-
|
1365 |
-
|
1366 |
-
|
1367 |
-
#: includes/settings/tabs/wps-access-level.php:198
|
1368 |
-
msgid "Honey pot post id"
|
1369 |
-
msgstr "معرف مقال وعاء العسل"
|
1370 |
-
|
1371 |
-
#: includes/settings/tabs/wps-access-level.php:201
|
1372 |
-
msgid "The post id to use for the honeypot page."
|
1373 |
-
msgstr "رقم المشاركة لاستخدامها في صفحة المصيدة."
|
1374 |
-
|
1375 |
-
#: includes/settings/tabs/wps-access-level.php:202
|
1376 |
-
msgid "Create a new honey pot page"
|
1377 |
-
msgstr "إنشاء صفحة وعاء عسل جديدة"
|
1378 |
-
|
1379 |
-
#: includes/settings/tabs/wps-access-level.php:207
|
1380 |
-
msgid "GeoIP Exclusions"
|
1381 |
-
msgstr "استثناءات GeoIP"
|
1382 |
-
|
1383 |
-
#: includes/settings/tabs/wps-access-level.php:211
|
1384 |
-
msgid "Excluded countries list"
|
1385 |
-
msgstr "قائمة الدول المستثناة"
|
1386 |
-
|
1387 |
-
#: includes/settings/tabs/wps-access-level.php:214
|
1388 |
-
msgid ""
|
1389 |
-
"A list of country codes (one per line, two letters each) to exclude from "
|
1390 |
-
"statistics collection. Use \"000\" (three zeros) to exclude unknown "
|
1391 |
-
"countries."
|
1392 |
-
msgstr ""
|
1393 |
-
"قائمة رموز البلد (واحد في كل سطر، رسالتين لكل منهما) لاستبعاد من جمع "
|
1394 |
-
"الإحصاءات. استخدام \"000\" (ثلاثة أصفار) لاستبعاد بلدان غير معروفة."
|
1395 |
-
|
1396 |
-
#: includes/settings/tabs/wps-access-level.php:219
|
1397 |
-
msgid "Included countries list"
|
1398 |
-
msgstr "قائمة البلدان المدرجة"
|
1399 |
-
|
1400 |
-
#: includes/settings/tabs/wps-access-level.php:222
|
1401 |
-
msgid ""
|
1402 |
-
"A list of country codes (one per line, two letters each) to include in "
|
1403 |
-
"statistics collection, if this list is not empty, only visitors from the "
|
1404 |
-
"included countries will be recorded. Use \"000\" (three zeros) to exclude "
|
1405 |
-
"unknown countries."
|
1406 |
-
msgstr ""
|
1407 |
-
"قائمة رموز البلد (واحد في كل سطر، رسالتين لكل منهما) لتشمل في جمع الإحصاءات، "
|
1408 |
-
"إذا كانت هذه القائمة ليست فارغة، سيتم تسجيل الزوار فقط من الدول المدرجة. "
|
1409 |
-
"استخدام \"000\" (ثلاثة أصفار) لاستبعاد بلدان غير معروفة."
|
1410 |
-
|
1411 |
-
#: includes/settings/tabs/wps-access-level.php:227
|
1412 |
-
msgid "Host Exclusions"
|
1413 |
-
msgstr "استثناءات المضيف"
|
1414 |
-
|
1415 |
-
#: includes/settings/tabs/wps-access-level.php:231
|
1416 |
-
msgid "Excluded hosts list"
|
1417 |
-
msgstr "قائمة المضيفين المستبعدين"
|
1418 |
-
|
1419 |
-
#: includes/settings/tabs/wps-access-level.php:234
|
1420 |
-
msgid ""
|
1421 |
-
"A list of fully qualified host names (ie. server.example.com, one per line) "
|
1422 |
-
"to exclude from statistics collection."
|
1423 |
-
msgstr ""
|
1424 |
-
"قائمة أسماء المضيف المؤهل بالكامل (أي. server.example.com، سطر واحد في "
|
1425 |
-
"المائة) لاستبعاد من جمع الإحصاءات."
|
1426 |
-
|
1427 |
-
#: includes/settings/tabs/wps-access-level.php:236
|
1428 |
-
msgid ""
|
1429 |
-
"Note: this option will NOT perform a reverse DNS lookup on each page load "
|
1430 |
-
"but instead cache the IP address for the provided hostnames for one hour. "
|
1431 |
-
"If you are excluding dynamically assigned hosts you may find some degree of "
|
1432 |
-
"overlap when the host changes it's IP address and when the cache is updated "
|
1433 |
-
"resulting in some hits recorded."
|
1434 |
-
msgstr ""
|
1435 |
-
"ملاحظة: هذا الخيار لإجراء بحث DNS عكسي على تحميل كل صفحة ولكن بدلا من ذلك "
|
1436 |
-
"بالتخزين المؤقت لعنوان الـIP لأسماء المضيفين المنصوص عليها هي ساعة واحدة. "
|
1437 |
-
"إذا كنت استبعدت المضيفين وقم بتعيين حيوي قد تجد بعض الدرجات من التداخل عندما "
|
1438 |
-
"يتغير عنوان IP للمضيف وذلك وعندما يتم تحديث ذاكرة التخزين المؤقت قد يؤدي في "
|
1439 |
-
"بعض الزيارات المسجلة."
|
1440 |
-
|
1441 |
-
#: includes/settings/tabs/wps-access-level.php:241
|
1442 |
-
msgid "Site URL Exclusions"
|
1443 |
-
msgstr "رابط الموقع المستثنى"
|
1444 |
-
|
1445 |
-
#: includes/settings/tabs/wps-access-level.php:245
|
1446 |
-
msgid "Excluded login page"
|
1447 |
-
msgstr "استبعاد صفحة تسجيل الدخول"
|
1448 |
-
|
1449 |
-
#: includes/settings/tabs/wps-access-level.php:248
|
1450 |
-
msgid "Exclude the login page for registering as a hit."
|
1451 |
-
msgstr "استبعاد صفحة الدخول للتسجيل كنقرة."
|
1452 |
-
|
1453 |
-
#: includes/settings/tabs/wps-access-level.php:252
|
1454 |
-
msgid "Excluded admin pages"
|
1455 |
-
msgstr "استبعاد الصفحات الإدارية"
|
1456 |
-
|
1457 |
-
#: includes/settings/tabs/wps-access-level.php:255
|
1458 |
-
msgid "Exclude the admin pages for registering as a hit."
|
1459 |
-
msgstr "استبعاد الصفحات الادارية للتسجيل كنقرة."
|
1460 |
-
|
1461 |
-
#: includes/settings/tabs/wps-browscap.php:22
|
1462 |
-
msgid "browscap settings"
|
1463 |
-
msgstr "إعدادات browscap"
|
1464 |
-
|
1465 |
-
#: includes/settings/tabs/wps-browscap.php:27
|
1466 |
-
msgid "browscap usage"
|
1467 |
-
msgstr "استخدام browscap"
|
1468 |
-
|
1469 |
-
#: includes/settings/tabs/wps-browscap.php:32
|
1470 |
-
#: includes/settings/tabs/wps-browscap.php:56
|
1471 |
-
#: includes/settings/tabs/wps-general.php:76
|
1472 |
-
#: includes/settings/tabs/wps-general.php:92
|
1473 |
-
#: includes/settings/tabs/wps-general.php:116
|
1474 |
-
#: includes/settings/tabs/wps-general.php:132
|
1475 |
-
#: includes/settings/tabs/wps-general.php:148
|
1476 |
-
#: includes/settings/tabs/wps-general.php:160
|
1477 |
-
#: includes/settings/tabs/wps-general.php:187
|
1478 |
-
#: includes/settings/tabs/wps-general.php:199
|
1479 |
-
#: includes/settings/tabs/wps-general.php:214
|
1480 |
-
#: includes/settings/tabs/wps-general.php:228
|
1481 |
-
#: includes/settings/tabs/wps-general.php:258
|
1482 |
-
#: includes/settings/tabs/wps-general.php:270
|
1483 |
-
#: includes/settings/tabs/wps-general.php:313
|
1484 |
-
#: includes/settings/tabs/wps-geoip.php:37
|
1485 |
-
#: includes/settings/tabs/wps-geoip.php:61
|
1486 |
-
#: includes/settings/tabs/wps-geoip.php:94
|
1487 |
-
#: includes/settings/tabs/wps-maintenance.php:40
|
1488 |
-
#: includes/settings/tabs/wps-notifications.php:69
|
1489 |
-
#: includes/settings/tabs/wps-notifications.php:81
|
1490 |
-
#: includes/settings/tabs/wps-notifications.php:93
|
1491 |
-
#: includes/settings/tabs/wps-notifications.php:105
|
1492 |
-
#: includes/settings/tabs/wps-notifications.php:121
|
1493 |
-
#: includes/settings/tabs/wps-overview-display.php:87
|
1494 |
-
#: includes/settings/tabs/wps-overview-display.php:107
|
1495 |
-
#: includes/settings/tabs/wps-overview-display.php:147
|
1496 |
-
#: includes/settings/tabs/wps-overview-display.php:159
|
1497 |
-
msgid "Active"
|
1498 |
-
msgstr "تفعيل"
|
1499 |
-
|
1500 |
-
#: includes/settings/tabs/wps-browscap.php:33
|
1501 |
-
msgid "The browscap database will be downloaded and used to detect robots."
|
1502 |
-
msgstr "سيتم تحميل قاعدة البيانات browscap وتستخدم للكشف عن الروبوتات."
|
1503 |
-
|
1504 |
-
#: includes/settings/tabs/wps-browscap.php:39
|
1505 |
-
msgid "Update browscap Info"
|
1506 |
-
msgstr "تحديث معلومات browscap"
|
1507 |
-
|
1508 |
-
#: includes/settings/tabs/wps-browscap.php:44
|
1509 |
-
msgid "Download browscap Database"
|
1510 |
-
msgstr "تحميل قاعدة بيانات browscap"
|
1511 |
-
|
1512 |
-
#: includes/settings/tabs/wps-browscap.php:45
|
1513 |
-
#: includes/settings/tabs/wps-geoip.php:50
|
1514 |
-
msgid "Save changes on this page to download the update."
|
1515 |
-
msgstr "حفظ التغييرات على هذه الصفحة لتحميل التحديث."
|
1516 |
-
|
1517 |
-
#: includes/settings/tabs/wps-browscap.php:51
|
1518 |
-
msgid "Schedule weekly update of browscap DB"
|
1519 |
-
msgstr "جدولة التحديث الأسبوعي لـ browscap DB"
|
1520 |
-
|
1521 |
-
#: includes/settings/tabs/wps-browscap.php:59
|
1522 |
-
#: includes/settings/tabs/wps-geoip.php:64
|
1523 |
-
msgid "Next update will be"
|
1524 |
-
msgstr "التحديث القادم سيكون في"
|
1525 |
-
|
1526 |
-
#: includes/settings/tabs/wps-browscap.php:74
|
1527 |
-
msgid "Download of the browscap database will be scheduled for once a week."
|
1528 |
-
msgstr "سيتم تحديد موعد تحميل قاعدة بيانات browscap لمرة واحدة في الأسبوع."
|
1529 |
-
|
1530 |
-
#: includes/settings/tabs/wps-general.php:50
|
1531 |
-
msgid "This will delete the manual when you save the settings, are you sure?"
|
1532 |
-
msgstr "سيؤدي ذلك إلى حذف الدليل عند حفظ الإعدادات، هل أنت متأكد؟"
|
1533 |
-
|
1534 |
-
#: includes/settings/tabs/wps-general.php:77
|
1535 |
-
msgid ""
|
1536 |
-
"This feature will not store IP addresses in the database but instead used a "
|
1537 |
-
"unique hash. The \"Store entire user agent string\" setting will be "
|
1538 |
-
"disabled if this is selected. You will not be able to recover the IP "
|
1539 |
-
"addresses in the future to recover location information if this is enabled."
|
1540 |
-
msgstr ""
|
1541 |
-
"هذه الميزة لتخزين عناوين IP في قاعدة البيانات ولكن بدلا من ذلك تستخدم تجزئة "
|
1542 |
-
"فريدة من نوعها. سيتم تعطيل \"مخزن سلسلة عامل المستخدم بأكمله\" إذا تم تحديد "
|
1543 |
-
"هذا. أنت لن تكون قادر على استرداد عناوين IP في المستقبل لاسترداد معلومات "
|
1544 |
-
"الموقع إذا تم تمكين هذا."
|
1545 |
-
|
1546 |
-
#: includes/settings/tabs/wps-general.php:82
|
1547 |
-
msgid "Users Online"
|
1548 |
-
msgstr "الإعضاء المتواجدين"
|
1549 |
-
|
1550 |
-
#: includes/settings/tabs/wps-general.php:87
|
1551 |
-
msgid "User online"
|
1552 |
-
msgstr "المتواجدين الآن"
|
1553 |
-
|
1554 |
-
#: includes/settings/tabs/wps-general.php:93
|
1555 |
-
#: includes/settings/tabs/wps-general.php:133
|
1556 |
-
#: includes/settings/tabs/wps-general.php:149
|
1557 |
-
#: includes/settings/tabs/wps-general.php:188
|
1558 |
-
#: includes/settings/tabs/wps-general.php:200
|
1559 |
-
#: includes/settings/tabs/wps-general.php:229
|
1560 |
-
#: includes/settings/tabs/wps-notifications.php:122
|
1561 |
-
msgid "Enable or disable this feature"
|
1562 |
-
msgstr "تمكين أو تعطيل هذه الميزة"
|
1563 |
-
|
1564 |
-
#: includes/settings/tabs/wps-general.php:99
|
1565 |
-
msgid "Check for online users every"
|
1566 |
-
msgstr "تحقق من المتصلين في الموقع في كل"
|
1567 |
-
|
1568 |
-
#: includes/settings/tabs/wps-general.php:104
|
1569 |
-
msgid "Second"
|
1570 |
-
msgstr "ثانية"
|
1571 |
-
|
1572 |
-
#: includes/settings/tabs/wps-general.php:105
|
1573 |
-
msgid "Time for the check accurate online user in the site. Now: %s Second"
|
1574 |
-
msgstr "وقت التحقق من المستخدمين المتصلين في الموقع. الآن: %s ثانية"
|
1575 |
-
|
1576 |
-
#: includes/settings/tabs/wps-general.php:111
|
1577 |
-
msgid "Record all user"
|
1578 |
-
msgstr "تسجيل جميع المستخدمين"
|
1579 |
-
|
1580 |
-
#: includes/settings/tabs/wps-general.php:117
|
1581 |
-
msgid ""
|
1582 |
-
"Ignores the exclusion settings and records all users that are online "
|
1583 |
-
"(including self referrals and robots). Should only be used for "
|
1584 |
-
"troubleshooting."
|
1585 |
-
msgstr ""
|
1586 |
-
"يتجاهل إعدادات الإقصاء ويسجل كل المستخدمين التي يتم على الانترنت (بما في ذلك "
|
1587 |
-
"الإحالة الذاتية والروبوتات). وينبغي أن تستخدم فقط لاستكشاف الأخطاء وإصلاحها."
|
1588 |
-
|
1589 |
-
#: includes/settings/tabs/wps-general.php:155
|
1590 |
-
msgid "Store entire user agent string"
|
1591 |
-
msgstr "تخزين كامل سلسلة عامل المستخدم"
|
1592 |
-
|
1593 |
-
#: includes/settings/tabs/wps-general.php:161
|
1594 |
-
msgid "Only enabled for debugging"
|
1595 |
-
msgstr "تمكين فقط من أجل التصحيح"
|
1596 |
-
|
1597 |
-
#: includes/settings/tabs/wps-general.php:167
|
1598 |
-
msgid "Coefficient per visitor"
|
1599 |
-
msgstr "درجة لكل زائر"
|
1600 |
-
|
1601 |
-
#: includes/settings/tabs/wps-general.php:172
|
1602 |
-
msgid "For each visit to account for several hits. Currently %s."
|
1603 |
-
msgstr "حساب توجيه النقرات لكل زائر. حالياً %s."
|
1604 |
-
|
1605 |
-
#: includes/settings/tabs/wps-general.php:177
|
1606 |
-
#: includes/settings/tabs/wps-general.php:182 wp-statistics.php:281
|
1607 |
-
msgid "Pages"
|
1608 |
-
msgstr "الصفحات"
|
1609 |
-
|
1610 |
-
#: includes/settings/tabs/wps-general.php:194
|
1611 |
-
msgid "Track all pages"
|
1612 |
-
msgstr "تتبع جميع الصفحات"
|
1613 |
-
|
1614 |
-
#: includes/settings/tabs/wps-general.php:209
|
1615 |
-
msgid "Strip parameters from URI"
|
1616 |
-
msgstr "معايير الشريط من URI"
|
1617 |
-
|
1618 |
-
#: includes/settings/tabs/wps-general.php:215
|
1619 |
-
msgid "This will remove anything after the ? in a URL."
|
1620 |
-
msgstr "سيؤدي هذا إلى إزالة أي شيء بعد؟ في URL."
|
1621 |
-
|
1622 |
-
#: includes/settings/tabs/wps-general.php:223
|
1623 |
-
msgid "Disable hits column in post/pages list"
|
1624 |
-
msgstr "تعطيل عمود النقرات في قائمة المقال/الصفحات"
|
1625 |
-
|
1626 |
-
#: includes/settings/tabs/wps-general.php:234
|
1627 |
-
msgid "Miscellaneous"
|
1628 |
-
msgstr "متفرقات"
|
1629 |
-
|
1630 |
-
#: includes/settings/tabs/wps-general.php:239
|
1631 |
-
msgid "Show stats in menu bar"
|
1632 |
-
msgstr "إظهار الاحصائيات في شريط القوائم"
|
1633 |
-
|
1634 |
-
#: includes/settings/tabs/wps-general.php:244
|
1635 |
-
msgid "No"
|
1636 |
-
msgstr "لا"
|
1637 |
-
|
1638 |
-
#: includes/settings/tabs/wps-general.php:245
|
1639 |
-
msgid "Yes"
|
1640 |
-
msgstr "نعم"
|
1641 |
-
|
1642 |
-
#: includes/settings/tabs/wps-general.php:247
|
1643 |
-
msgid "Show stats in admin menu bar"
|
1644 |
-
msgstr "اظهار الاحصائيات في شريط القوائم الإداري"
|
1645 |
-
|
1646 |
-
#: includes/settings/tabs/wps-general.php:253
|
1647 |
-
msgid "Hide admin notices about non active features"
|
1648 |
-
msgstr "اخفاء إشعارات المشرف حول الميزات غير نشطة"
|
1649 |
-
|
1650 |
-
#: includes/settings/tabs/wps-general.php:259
|
1651 |
-
msgid ""
|
1652 |
-
"By default WP Statistics displays an alert if any of the core features are "
|
1653 |
-
"disabled on every admin page, this option will disable these notices."
|
1654 |
-
msgstr ""
|
1655 |
-
"افتراضيا احصائيات ووردبريس يعرض تنبيها إذا تم تعطيل أي من الميزات الأساسية "
|
1656 |
-
"في صفحة المشرف، وهذا الخيار لتعطيل هذه الإشعارات."
|
1657 |
-
|
1658 |
-
#: includes/settings/tabs/wps-general.php:265
|
1659 |
-
msgid "Delete the manual"
|
1660 |
-
msgstr "حذف الدليل"
|
1661 |
-
|
1662 |
-
#: includes/settings/tabs/wps-general.php:271
|
1663 |
-
msgid ""
|
1664 |
-
"By default WP Statistics stores the admin manual in the plugin directory (~5 "
|
1665 |
-
"meg), if this option is enabled it will be deleted now and during upgrades "
|
1666 |
-
"in the future."
|
1667 |
-
msgstr ""
|
1668 |
-
"افتراضيا احصائيات ووردبريس يخزن دليل المشرف في الدليل المساعد (~ 5 ميج)، إذا "
|
1669 |
-
"تم تمكين هذا الخيار سيتم حذفه الآن، وخلال الترقيات في المستقبل."
|
1670 |
-
|
1671 |
-
#: includes/settings/tabs/wps-general.php:276
|
1672 |
-
msgid "Search Engines"
|
1673 |
-
msgstr "محركات البحث"
|
1674 |
-
|
1675 |
-
#: includes/settings/tabs/wps-general.php:281
|
1676 |
-
msgid ""
|
1677 |
-
"Disabling all search engines is not allowed, doing so will result in all "
|
1678 |
-
"search engines being active."
|
1679 |
-
msgstr ""
|
1680 |
-
"تعطيل جميع محركات البحث غير مسموح, سيؤدي ذلك الى تنشيط جميع محركات البحث."
|
1681 |
-
|
1682 |
-
#: includes/settings/tabs/wps-general.php:296
|
1683 |
-
msgid "disable"
|
1684 |
-
msgstr "تعطيل"
|
1685 |
-
|
1686 |
-
#: includes/settings/tabs/wps-general.php:297
|
1687 |
-
msgid "Disable %s from data collection and reporting."
|
1688 |
-
msgstr "تعطيل %s من جمع البيانات وإعداد التقارير."
|
1689 |
-
|
1690 |
-
#: includes/settings/tabs/wps-general.php:303
|
1691 |
-
msgid "Charts"
|
1692 |
-
msgstr "الرسوم البيانية"
|
1693 |
-
|
1694 |
-
#: includes/settings/tabs/wps-general.php:308
|
1695 |
-
msgid "Include totals"
|
1696 |
-
msgstr "تتضمن الاجماليات"
|
1697 |
-
|
1698 |
-
#: includes/settings/tabs/wps-general.php:314
|
1699 |
-
msgid ""
|
1700 |
-
"Add a total line to charts with multiple values, like the search engine "
|
1701 |
-
"referrals"
|
1702 |
-
msgstr "إضافة سطر مجموع المخططات مع قيم متعددة، مثل إحالات محرك البحث"
|
1703 |
-
|
1704 |
-
#: includes/settings/tabs/wps-geoip.php:17
|
1705 |
-
msgid "GeoIP settings"
|
1706 |
-
msgstr "إعدادات GeoIP"
|
1707 |
-
|
1708 |
-
#: includes/settings/tabs/wps-geoip.php:22
|
1709 |
-
msgid ""
|
1710 |
-
"IP location services provided by GeoLite2 data created by MaxMind, available "
|
1711 |
-
"from %s."
|
1712 |
-
msgstr ""
|
1713 |
-
"خدمات الموقع IP المقدمة من البيانات GeoLite2 التي أنشأتها MaxMind، المتاحة "
|
1714 |
-
"من %s."
|
1715 |
-
|
1716 |
-
#: includes/settings/tabs/wps-geoip.php:32
|
1717 |
-
msgid "GeoIP collection"
|
1718 |
-
msgstr "مجموعة GeoIP"
|
1719 |
-
|
1720 |
-
#: includes/settings/tabs/wps-geoip.php:38
|
1721 |
-
msgid ""
|
1722 |
-
"For get more information and location (country) from visitor, enable this "
|
1723 |
-
"feature."
|
1724 |
-
msgstr ""
|
1725 |
-
"للحصول على مزيد من المعلومات، والمكان (البلد) من الزوار، تمكين هذه الميزة."
|
1726 |
-
|
1727 |
-
#: includes/settings/tabs/wps-geoip.php:44
|
1728 |
-
msgid "Update GeoIP Info"
|
1729 |
-
msgstr "تحديث معلومات GeoIP"
|
1730 |
-
|
1731 |
-
#: includes/settings/tabs/wps-geoip.php:49
|
1732 |
-
msgid "Download GeoIP Database"
|
1733 |
-
msgstr "تحميل قاعدة بيانات GeoIP"
|
1734 |
-
|
1735 |
-
#: includes/settings/tabs/wps-geoip.php:56
|
1736 |
-
msgid "Schedule monthly update of GeoIP DB"
|
1737 |
-
msgstr "جدولة التحديث الشهري لGeoIP DB"
|
1738 |
-
|
1739 |
-
#: includes/settings/tabs/wps-geoip.php:82
|
1740 |
-
msgid ""
|
1741 |
-
"Download of the GeoIP database will be scheduled for 2 days after the first "
|
1742 |
-
"Tuesday of the month."
|
1743 |
-
msgstr ""
|
1744 |
-
"سيتم جدولة التحميل من قاعدة البيانات GeoIP لمدة 2 يوما بعد يوم الثلاثاء "
|
1745 |
-
"الأول من الشهر."
|
1746 |
-
|
1747 |
-
#: includes/settings/tabs/wps-geoip.php:83
|
1748 |
-
msgid ""
|
1749 |
-
"This option will also download the database if the local filesize is less "
|
1750 |
-
"than 1k (which usually means the stub that comes with the plugin is still in "
|
1751 |
-
"place)."
|
1752 |
-
msgstr ""
|
1753 |
-
"وهذا الخيار أيضا تحميل قاعدة البيانات إذا كان حجم الملف المحلي أقل من 1K "
|
1754 |
-
"(الذي يعني عادة أن طرف البرنامج التي تأتي مع البرنامج المساعد لا يزال في "
|
1755 |
-
"مكانه)."
|
1756 |
-
|
1757 |
-
#: includes/settings/tabs/wps-geoip.php:89
|
1758 |
-
msgid "Populate missing GeoIP after update of GeoIP DB"
|
1759 |
-
msgstr "تعبئة GeoIP في عداد المفقودين بعد التحديث من GeoIP DB"
|
1760 |
-
|
1761 |
-
#: includes/settings/tabs/wps-geoip.php:95
|
1762 |
-
msgid "Update any missing GeoIP data after downloading a new database."
|
1763 |
-
msgstr "تحديث أي بيانات GeoIP مفقودة بعد تحميل قاعدة البيانات الجديدة."
|
1764 |
-
|
1765 |
-
#: includes/settings/tabs/wps-geoip.php:106
|
1766 |
-
msgid "GeoIP collection is disabled due to the following reasons:"
|
1767 |
-
msgstr "تم تعطيل مجموعة GeoIP وذلك للأسباب التالية:"
|
1768 |
-
|
1769 |
-
#: includes/settings/tabs/wps-geoip.php:109
|
1770 |
-
msgid ""
|
1771 |
-
"GeoIP collection requires PHP %s or above, it is currently disabled due to "
|
1772 |
-
"the installed PHP version being "
|
1773 |
-
msgstr ""
|
1774 |
-
"جمع GeoIP يتطلب PHP %s أو أعلى، يتم تعطيله حاليا نظرا لكونها نسخة PHP مثبتة"
|
1775 |
-
|
1776 |
-
#: includes/settings/tabs/wps-geoip.php:114
|
1777 |
-
msgid ""
|
1778 |
-
"GeoIP collection requires the cURL PHP extension and it is not loaded on "
|
1779 |
-
"your version of PHP!"
|
1780 |
-
msgstr "مجموعة GeoIP تتطلب الملحق cURL PHP و هو غير مفعل على إصدار الـ PHP!"
|
1781 |
-
|
1782 |
-
#: includes/settings/tabs/wps-geoip.php:120
|
1783 |
-
msgid ""
|
1784 |
-
"GeoIP collection requires the BC Math PHP extension and it is not loaded on "
|
1785 |
-
"your version of PHP!"
|
1786 |
-
msgstr "مجموعة GeoIP تتطلب الملحق BC Math PHP و هو غير مفعل على إصدار الـ PHP!"
|
1787 |
-
|
1788 |
-
#: includes/settings/tabs/wps-geoip.php:126
|
1789 |
-
msgid ""
|
1790 |
-
"PHP safe mode detected! GeoIP collection is not supported with PHP's safe "
|
1791 |
-
"mode enabled!"
|
1792 |
-
msgstr ""
|
1793 |
-
"تم الكشف عن الوضع الآمن في PHP! مجموعة GeoIP غير معتمدة عند تمكين الوضع "
|
1794 |
-
"الآمن في PHP!"
|
1795 |
-
|
1796 |
-
#: includes/settings/tabs/wps-maintenance.php:20
|
1797 |
-
msgid ""
|
1798 |
-
"This will permanently delete data from the database each day, are you sure "
|
1799 |
-
"you want to enable this option?"
|
1800 |
-
msgstr ""
|
1801 |
-
"سيؤدي ذلك إلى حذف البيانات من قاعدة البيانات بشكل دائم كل يوم، هل أنت متأكد "
|
1802 |
-
"من أنك تريد تمكين هذا الخيار؟"
|
1803 |
-
|
1804 |
-
#: includes/settings/tabs/wps-maintenance.php:30
|
1805 |
-
msgid "Database Maintenance"
|
1806 |
-
msgstr "صيانة قاعدة البيانات"
|
1807 |
-
|
1808 |
-
#: includes/settings/tabs/wps-maintenance.php:35
|
1809 |
-
msgid "Run a daily WP Cron job to prune the databases"
|
1810 |
-
msgstr "تشغيل مهام ووردبريس يوميا للضخ في قاعدة البيانات"
|
1811 |
-
|
1812 |
-
#: includes/settings/tabs/wps-maintenance.php:41
|
1813 |
-
msgid ""
|
1814 |
-
"A WP Cron job will be run daily to prune any data older than a set number of "
|
1815 |
-
"days."
|
1816 |
-
msgstr ""
|
1817 |
-
"سيتم تشغيل ألف وظيفة في مهام ووردبريس يوميا لضخ أي بيانات أقدم من العدد "
|
1818 |
-
"المحدد من الأيام."
|
1819 |
-
|
1820 |
-
#: includes/settings/tabs/wps-maintenance.php:47
|
1821 |
-
msgid "Prune data older than"
|
1822 |
-
msgstr "ضخ البيانات الأقدم من"
|
1823 |
-
|
1824 |
-
#: includes/settings/tabs/wps-maintenance.php:52
|
1825 |
-
msgid "Days"
|
1826 |
-
msgstr "أيام"
|
1827 |
-
|
1828 |
-
#: includes/settings/tabs/wps-maintenance.php:53
|
1829 |
-
msgid ""
|
1830 |
-
"The number of days to keep statistics for. Minimum value is 30 days. "
|
1831 |
-
"Invalid values will disable the daily maintenance."
|
1832 |
-
msgstr ""
|
1833 |
-
"عدد الأيام للحفاظ على الإحصاءات المتعلقة. قيمة الحد الأدنى هو 30 يوما. سيتم "
|
1834 |
-
"تعطيل الصيانة اليومية في حال ادخال قيم غير صالحة."
|
1835 |
-
|
1836 |
-
#: includes/settings/tabs/wps-notifications.php:44
|
1837 |
-
msgid "Common Report Options"
|
1838 |
-
msgstr "خيارات تقرير المشترك"
|
1839 |
-
|
1840 |
-
#: includes/settings/tabs/wps-notifications.php:49
|
1841 |
-
msgid "E-mail addresses"
|
1842 |
-
msgstr "عناوين البريد الإلكتروني"
|
1843 |
-
|
1844 |
-
#: includes/settings/tabs/wps-notifications.php:54
|
1845 |
-
msgid "A comma separated list of e-mail addresses to send reports to."
|
1846 |
-
msgstr "أفصل قائمة عناوين البريد الإلكتروني بفاصلة لإرسال التقارير إلى."
|
1847 |
-
|
1848 |
-
#: includes/settings/tabs/wps-notifications.php:59
|
1849 |
-
msgid "Update Reports"
|
1850 |
-
msgstr "تقارير التحديث"
|
1851 |
-
|
1852 |
-
#: includes/settings/tabs/wps-notifications.php:64
|
1853 |
-
msgid "Browscap"
|
1854 |
-
msgstr "Browscap"
|
1855 |
-
|
1856 |
-
#: includes/settings/tabs/wps-notifications.php:70
|
1857 |
-
msgid "Send a report whenever the browscap.ini is updated."
|
1858 |
-
msgstr "إرسال تقرير كلما يتم تحديث browscap.ini."
|
1859 |
-
|
1860 |
-
#: includes/settings/tabs/wps-notifications.php:76
|
1861 |
-
#: includes/settings/wps-settings.php:104
|
1862 |
-
msgid "GeoIP"
|
1863 |
-
msgstr "GeoIP"
|
1864 |
-
|
1865 |
-
#: includes/settings/tabs/wps-notifications.php:82
|
1866 |
-
msgid "Send a report whenever the GeoIP database is updated."
|
1867 |
-
msgstr "إرسال تقرير كلما يتم تحديث قاعدة البيانات GeoIP."
|
1868 |
-
|
1869 |
-
#: includes/settings/tabs/wps-notifications.php:88
|
1870 |
-
msgid "Pruning"
|
1871 |
-
msgstr "تنقيح"
|
1872 |
-
|
1873 |
-
#: includes/settings/tabs/wps-notifications.php:94
|
1874 |
-
msgid "Send a report whenever the pruning of database is run."
|
1875 |
-
msgstr "إرسال تقرير كلما يتم تشغيل التنقيح في قاعدة البيانات."
|
1876 |
-
|
1877 |
-
#: includes/settings/tabs/wps-notifications.php:100
|
1878 |
-
msgid "Upgrade"
|
1879 |
-
msgstr "ترقية"
|
1880 |
-
|
1881 |
-
#: includes/settings/tabs/wps-notifications.php:106
|
1882 |
-
msgid "Send a report whenever the plugin is upgraded."
|
1883 |
-
msgstr "إرسال تقرير كلما تتم ترقية البرنامج المساعد."
|
1884 |
-
|
1885 |
-
#: includes/settings/tabs/wps-notifications.php:111
|
1886 |
-
#: includes/settings/tabs/wps-notifications.php:116 schedule.php:152
|
1887 |
-
msgid "Statistical reporting"
|
1888 |
-
msgstr "تقارير الإحصائيات"
|
1889 |
-
|
1890 |
-
#: includes/settings/tabs/wps-notifications.php:129
|
1891 |
-
msgid "Schedule"
|
1892 |
-
msgstr "جدول"
|
1893 |
-
|
1894 |
-
#: includes/settings/tabs/wps-notifications.php:153
|
1895 |
-
msgid "Select how often to receive statistical report."
|
1896 |
-
msgstr "حدد عدد المرات لتلقي تقرير إحصائي."
|
1897 |
-
|
1898 |
-
#: includes/settings/tabs/wps-notifications.php:159
|
1899 |
-
msgid "Send reports via"
|
1900 |
-
msgstr "إرسال التقارير عن طريق"
|
1901 |
-
|
1902 |
-
#: includes/settings/tabs/wps-notifications.php:165
|
1903 |
-
msgid "Email"
|
1904 |
-
msgstr "البريد الإلكتروني"
|
1905 |
-
|
1906 |
-
#: includes/settings/tabs/wps-notifications.php:167
|
1907 |
-
msgid "SMS"
|
1908 |
-
msgstr "رسائل نصية"
|
1909 |
-
|
1910 |
-
#: includes/settings/tabs/wps-notifications.php:170
|
1911 |
-
msgid "Select delivery method for statistical report."
|
1912 |
-
msgstr "حدد طريقة التسليم للتقرير الإحصائي."
|
1913 |
-
|
1914 |
-
#: includes/settings/tabs/wps-notifications.php:173
|
1915 |
-
msgid "Note: To send SMS text messages please install the %s plugin."
|
1916 |
-
msgstr "ملاحظة: لإرسال رسائل نصية SMS الرجاء تثبيت إضافة %s."
|
1917 |
-
|
1918 |
-
#: includes/settings/tabs/wps-notifications.php:173
|
1919 |
-
msgid "WordPress SMS"
|
1920 |
-
msgstr "الرسائل النصية"
|
1921 |
-
|
1922 |
-
#: includes/settings/tabs/wps-notifications.php:180
|
1923 |
-
msgid "Report body"
|
1924 |
-
msgstr "تقرير الهيئة"
|
1925 |
-
|
1926 |
-
#: includes/settings/tabs/wps-notifications.php:185
|
1927 |
-
msgid "Enter the contents of the report."
|
1928 |
-
msgstr "أدخل محتويات التقرير."
|
1929 |
-
|
1930 |
-
#: includes/settings/tabs/wps-notifications.php:187
|
1931 |
-
msgid ""
|
1932 |
-
"Any shortcode supported by your installation of WordPress, include all "
|
1933 |
-
"shortcodes for WP Statistics (see the admin manual for a list of codes "
|
1934 |
-
"available) are supported in the body of the message. Here are some examples:"
|
1935 |
-
msgstr ""
|
1936 |
-
"أي رمز قصير بدعم من مثبت ووردبريس، وتشمل جميع الاكواد المختصرة لاحصائيات "
|
1937 |
-
"ووردبريس (انظر دليل المشرف للحصول على قائمة رموز المتاحة) معتمدة في نص "
|
1938 |
-
"الرسالة. وهنا بعض الأمثلة:"
|
1939 |
-
|
1940 |
-
#: includes/settings/tabs/wps-notifications.php:188 widget.php:38
|
1941 |
-
#: widget.php:245 wp-statistics.php:337
|
1942 |
-
msgid "User Online"
|
1943 |
-
msgstr "المتواجدين الآن"
|
1944 |
-
|
1945 |
-
#: includes/settings/tabs/wps-notifications.php:189 widget.php:52
|
1946 |
-
#: widget.php:251
|
1947 |
-
msgid "Today Visitor"
|
1948 |
-
msgstr "زوار اليوم"
|
1949 |
-
|
1950 |
-
#: includes/settings/tabs/wps-notifications.php:190 widget.php:45
|
1951 |
-
#: widget.php:248
|
1952 |
-
msgid "Today Visit"
|
1953 |
-
msgstr "زيارات اليوم"
|
1954 |
-
|
1955 |
-
#: includes/settings/tabs/wps-notifications.php:191 widget.php:66
|
1956 |
-
#: widget.php:257
|
1957 |
-
msgid "Yesterday Visitor"
|
1958 |
-
msgstr "زوار الأمس"
|
1959 |
-
|
1960 |
-
#: includes/settings/tabs/wps-notifications.php:192 widget.php:59
|
1961 |
-
msgid "Yesterday Visit"
|
1962 |
-
msgstr "زيارات الأمس"
|
1963 |
-
|
1964 |
-
#: includes/settings/tabs/wps-notifications.php:193 widget.php:101
|
1965 |
-
#: widget.php:272
|
1966 |
-
msgid "Total Visitor"
|
1967 |
-
msgstr "مجموع الزوار"
|
1968 |
-
|
1969 |
-
#: includes/settings/tabs/wps-notifications.php:194 widget.php:94
|
1970 |
-
#: widget.php:269
|
1971 |
-
msgid "Total Visit"
|
1972 |
-
msgstr "مجموع الزيارات"
|
1973 |
-
|
1974 |
-
#: includes/settings/tabs/wps-overview-display.php:23
|
1975 |
-
#: includes/settings/tabs/wps-overview-display.php:32
|
1976 |
-
msgid "None"
|
1977 |
-
msgstr "لا شيء"
|
1978 |
-
|
1979 |
-
#: includes/settings/tabs/wps-overview-display.php:24
|
1980 |
-
msgid "Summary Statistics"
|
1981 |
-
msgstr "ملخص الاحصائيات"
|
1982 |
-
|
1983 |
-
#: includes/settings/tabs/wps-overview-display.php:28
|
1984 |
-
#: includes/settings/wps-settings.php:108
|
1985 |
-
msgid "About"
|
1986 |
-
msgstr "حول"
|
1987 |
-
|
1988 |
-
#: includes/settings/tabs/wps-overview-display.php:34
|
1989 |
-
msgid "Hits Statistical Chart"
|
1990 |
-
msgstr "الرسم البياني لعدد النقرات"
|
1991 |
-
|
1992 |
-
#: includes/settings/tabs/wps-overview-display.php:36
|
1993 |
-
msgid "Search Engine Referrers Statistical Chart"
|
1994 |
-
msgstr "الرسم البياني لمحركات البحث"
|
1995 |
-
|
1996 |
-
#: includes/settings/tabs/wps-overview-display.php:38
|
1997 |
-
msgid "Top Pages Visited"
|
1998 |
-
msgstr "أعلى الصفحات زيارة"
|
1999 |
-
|
2000 |
-
#: includes/settings/tabs/wps-overview-display.php:73
|
2001 |
-
msgid "Dashboard"
|
2002 |
-
msgstr "لوحة القيادة"
|
2003 |
-
|
2004 |
-
#: includes/settings/tabs/wps-overview-display.php:77
|
2005 |
-
#: includes/settings/tabs/wps-overview-display.php:97
|
2006 |
-
#: includes/settings/tabs/wps-overview-display.php:117
|
2007 |
-
msgid "The following items are global to all users."
|
2008 |
-
msgstr "العناصر التالية هي عالمية لجميع المستخدمين."
|
2009 |
-
|
2010 |
-
#: includes/settings/tabs/wps-overview-display.php:82
|
2011 |
-
msgid "Disable dashboard widgets"
|
2012 |
-
msgstr "تعطيل قطع لوحة القيادة"
|
2013 |
-
|
2014 |
-
#: includes/settings/tabs/wps-overview-display.php:88
|
2015 |
-
msgid "Disable the dashboard widgets."
|
2016 |
-
msgstr "تعطيل القطع للوحة القيادة"
|
2017 |
-
|
2018 |
-
#: includes/settings/tabs/wps-overview-display.php:93
|
2019 |
-
msgid "Page/Post Editor"
|
2020 |
-
msgstr "محرر الصفحة/المشاركة"
|
2021 |
-
|
2022 |
-
#: includes/settings/tabs/wps-overview-display.php:102
|
2023 |
-
msgid "Disable post/page editor widget"
|
2024 |
-
msgstr "تعطيل قطعة محرر الصفحة/المشاركة"
|
2025 |
-
|
2026 |
-
#: includes/settings/tabs/wps-overview-display.php:108
|
2027 |
-
msgid "Disable the page/post editor widget."
|
2028 |
-
msgstr "تعطيل القطع لمحرر الصفحة/المشاركة"
|
2029 |
-
|
2030 |
-
#: includes/settings/tabs/wps-overview-display.php:122
|
2031 |
-
msgid "Map type"
|
2032 |
-
msgstr "نوع الخريطة"
|
2033 |
-
|
2034 |
-
#: includes/settings/tabs/wps-overview-display.php:128
|
2035 |
-
msgid "Google"
|
2036 |
-
msgstr "جوجل"
|
2037 |
-
|
2038 |
-
#: includes/settings/tabs/wps-overview-display.php:128
|
2039 |
-
msgid "JQVMap"
|
2040 |
-
msgstr "JQVMap"
|
2041 |
-
|
2042 |
-
#: includes/settings/tabs/wps-overview-display.php:135
|
2043 |
-
msgid ""
|
2044 |
-
"The \"Google\" option will use Google's mapping service to plot the recent "
|
2045 |
-
"visitors (requires access to Google)."
|
2046 |
-
msgstr ""
|
2047 |
-
"خيار \"جوجل\" يتوجب استخدام خدمة الخرائط جوجل لرسم زوار مؤخرا. (يتطلب الوصول "
|
2048 |
-
"إلى Google)"
|
2049 |
-
|
2050 |
-
#: includes/settings/tabs/wps-overview-display.php:136
|
2051 |
-
msgid ""
|
2052 |
-
"The \"JQVMap\" option will use JQVMap javascript mapping library to plot the "
|
2053 |
-
"recent visitors (requires no extenral services)."
|
2054 |
-
msgstr ""
|
2055 |
-
"خيار \"JQVMap\" استخدام مكتبة خرائط JQVMap جافا سكريبت لرسم الزوار مؤخرا. "
|
2056 |
-
"(لا يتطلب أي خدمات خارجية)."
|
2057 |
-
|
2058 |
-
#: includes/settings/tabs/wps-overview-display.php:142
|
2059 |
-
msgid "Disable map"
|
2060 |
-
msgstr "تعطيل الخريطة"
|
2061 |
-
|
2062 |
-
#: includes/settings/tabs/wps-overview-display.php:148
|
2063 |
-
msgid "Disable the map display"
|
2064 |
-
msgstr "تعطيل عرض الخريطة"
|
2065 |
-
|
2066 |
-
#: includes/settings/tabs/wps-overview-display.php:154
|
2067 |
-
msgid "Get country location from Google"
|
2068 |
-
msgstr "الحصول على موقع البلد من جوجل"
|
2069 |
-
|
2070 |
-
#: includes/settings/tabs/wps-overview-display.php:160
|
2071 |
-
msgid ""
|
2072 |
-
"This feature may cause a performance degradation when viewing statistics and "
|
2073 |
-
"is only valid if the map type is set to \"Google\"."
|
2074 |
-
msgstr ""
|
2075 |
-
"قد تؤدي هذه الميزة تدهور الأداء عند عرض الإحصاءات وصالحة فقط إذا تم تعيين "
|
2076 |
-
"نوع الخريطة لـ \"جوجل\"."
|
2077 |
-
|
2078 |
-
#: includes/settings/tabs/wps-overview-display.php:171
|
2079 |
-
msgid "Overview Widgets to Display"
|
2080 |
-
msgstr "نظرة عامة للقطع المعروضة"
|
2081 |
-
|
2082 |
-
#: includes/settings/tabs/wps-overview-display.php:175
|
2083 |
-
msgid ""
|
2084 |
-
"The following items are unique to each user. If you do not select the "
|
2085 |
-
"'About' widget it will automatically be displayed in the last positon of "
|
2086 |
-
"column A."
|
2087 |
-
msgstr ""
|
2088 |
-
"العناصر التالية هي فريدة من نوعها لكل مستخدم. إذا لم تقم بتحديد قطعة 'حول' "
|
2089 |
-
"سيتم تلقائيا إظهارها في العمود الأخير من A."
|
2090 |
-
|
2091 |
-
#: includes/settings/tabs/wps-overview-display.php:180
|
2092 |
-
msgid "Slot"
|
2093 |
-
msgstr "شريحة"
|
2094 |
-
|
2095 |
-
#: includes/settings/tabs/wps-overview-display.php:184
|
2096 |
-
msgid "Column A"
|
2097 |
-
msgstr "العمود A"
|
2098 |
-
|
2099 |
-
#: includes/settings/tabs/wps-overview-display.php:188
|
2100 |
-
msgid "Column B"
|
2101 |
-
msgstr "العمود B"
|
2102 |
-
|
2103 |
-
#: includes/settings/tabs/wps-overview-display.php:194
|
2104 |
-
msgid "Slot 1"
|
2105 |
-
msgstr "الشريحة 1"
|
2106 |
-
|
2107 |
-
#: includes/settings/tabs/wps-overview-display.php:224
|
2108 |
-
msgid "Slot 2"
|
2109 |
-
msgstr "الشريحة 2"
|
2110 |
-
|
2111 |
-
#: includes/settings/tabs/wps-overview-display.php:254
|
2112 |
-
msgid "Slot 3"
|
2113 |
-
msgstr "الشريحة 3"
|
2114 |
-
|
2115 |
-
#: includes/settings/tabs/wps-overview-display.php:284
|
2116 |
-
msgid "Slot 4"
|
2117 |
-
msgstr "الشريحة 4"
|
2118 |
-
|
2119 |
-
#: includes/settings/tabs/wps-overview-display.php:314
|
2120 |
-
msgid "Slot 5"
|
2121 |
-
msgstr "الشريحة 5"
|
2122 |
-
|
2123 |
-
#: includes/settings/tabs/wps-overview-display.php:344
|
2124 |
-
msgid "Slot 6"
|
2125 |
-
msgstr "الشريحة 6"
|
2126 |
-
|
2127 |
-
#: includes/settings/tabs/wps-overview-display.php:348
|
2128 |
-
#: includes/settings/tabs/wps-overview-display.php:370
|
2129 |
-
msgid "N/A"
|
2130 |
-
msgstr "N/A"
|
2131 |
|
2132 |
-
#: includes/
|
2133 |
-
|
2134 |
-
|
|
|
2135 |
|
2136 |
-
#: includes/
|
2137 |
-
|
2138 |
-
|
|
|
|
|
|
|
2139 |
|
2140 |
-
#: includes/
|
2141 |
-
msgid ""
|
2142 |
-
"
|
2143 |
-
"use this option to remove the WP Statistics data from your install before "
|
2144 |
-
"uninstalling the plugin."
|
2145 |
-
msgstr ""
|
2146 |
-
"إزالة احصائيات ووردبريس لن تقوم بإزالة البيانات والإعدادات، يمكنك استخدام "
|
2147 |
-
"هذا الخيار لإزالة البيانات الخاصة بك قبل إلغاء تثبيت البرنامج المساعد."
|
2148 |
|
2149 |
-
#: includes/
|
2150 |
-
|
2151 |
-
|
2152 |
-
|
2153 |
-
|
2154 |
-
msgstr ""
|
2155 |
-
"بمجرد التقدم في هذا الخيار سيتم حذف الإعدادات أثناء تحميل صفحة هذا النموذج، "
|
2156 |
-
"ولكن سوف تزال تظهر احصائيات ووردبريس في قائمة المشرف الخاص بك حتى يتم تحميل "
|
2157 |
-
"الصفحة مرة أخرى."
|
2158 |
|
2159 |
-
#: includes/
|
2160 |
-
|
2161 |
-
|
|
|
|
|
2162 |
|
2163 |
-
#: includes/
|
2164 |
-
|
2165 |
-
|
|
|
|
|
2166 |
|
2167 |
-
#: includes/
|
2168 |
-
|
2169 |
-
|
|
|
2170 |
|
2171 |
-
#: includes/
|
2172 |
-
|
2173 |
-
|
|
|
2174 |
|
2175 |
-
#: includes/
|
2176 |
-
msgid "
|
2177 |
-
msgstr "
|
2178 |
|
2179 |
-
#: includes/
|
2180 |
-
msgid "
|
2181 |
-
msgstr "
|
2182 |
|
2183 |
-
#: includes/
|
2184 |
-
|
2185 |
-
|
|
|
2186 |
|
2187 |
-
#: includes/
|
2188 |
-
|
2189 |
-
|
|
|
2190 |
|
2191 |
-
#: includes/
|
2192 |
-
|
2193 |
-
|
|
|
|
|
|
|
|
|
2194 |
|
2195 |
-
#: includes/
|
2196 |
-
msgid "
|
2197 |
-
msgstr "
|
2198 |
|
2199 |
-
#: includes/
|
2200 |
-
msgid "
|
2201 |
-
msgstr "
|
2202 |
|
2203 |
-
#:
|
2204 |
-
|
2205 |
-
|
|
|
2206 |
|
2207 |
-
#:
|
2208 |
-
msgid "
|
2209 |
-
msgstr "
|
2210 |
|
2211 |
-
#:
|
2212 |
-
msgid "
|
2213 |
-
msgstr "
|
2214 |
|
2215 |
-
#:
|
2216 |
-
msgid "
|
2217 |
-
msgstr "
|
2218 |
|
2219 |
-
#:
|
2220 |
-
msgid "
|
2221 |
-
msgstr "
|
2222 |
|
2223 |
-
#:
|
2224 |
-
msgid "
|
2225 |
-
msgstr "
|
2226 |
|
2227 |
-
#:
|
2228 |
-
|
2229 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2230 |
|
2231 |
-
#:
|
2232 |
-
msgid "
|
2233 |
-
msgstr "
|
2234 |
|
2235 |
-
#:
|
2236 |
-
|
2237 |
-
|
|
|
2238 |
|
2239 |
-
#:
|
2240 |
-
msgid "
|
2241 |
-
msgstr "
|
2242 |
|
2243 |
-
#:
|
2244 |
-
msgid "
|
2245 |
-
msgstr "
|
2246 |
|
2247 |
-
#:
|
2248 |
-
|
2249 |
-
|
|
|
2250 |
|
2251 |
-
#:
|
2252 |
-
|
2253 |
-
|
|
|
2254 |
|
2255 |
-
#:
|
2256 |
-
msgid "
|
2257 |
-
msgstr "
|
2258 |
|
2259 |
-
#:
|
2260 |
-
msgid "
|
2261 |
-
msgstr "
|
2262 |
|
2263 |
-
#:
|
2264 |
-
msgid "
|
2265 |
-
msgstr "
|
2266 |
|
2267 |
-
#:
|
2268 |
-
msgid "Total
|
2269 |
-
msgstr "
|
2270 |
|
2271 |
-
#:
|
2272 |
-
msgid "
|
2273 |
-
msgstr "
|
2274 |
|
2275 |
-
#:
|
2276 |
-
msgid "
|
2277 |
-
msgstr "
|
2278 |
|
2279 |
-
#:
|
2280 |
-
msgid "
|
2281 |
-
msgstr "
|
2282 |
|
2283 |
-
#:
|
2284 |
-
msgid "
|
2285 |
-
msgstr "
|
2286 |
|
2287 |
-
#:
|
2288 |
-
|
2289 |
-
|
|
|
|
|
|
|
2290 |
|
2291 |
-
#:
|
2292 |
-
msgid "
|
2293 |
-
msgstr "
|
2294 |
|
2295 |
-
#:
|
2296 |
-
msgid "
|
2297 |
-
msgstr "
|
2298 |
|
2299 |
-
#:
|
2300 |
-
|
2301 |
-
|
|
|
2302 |
|
2303 |
-
#:
|
2304 |
-
|
2305 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
2306 |
|
2307 |
-
#: wp-statistics.php:
|
2308 |
-
msgid ""
|
2309 |
-
"
|
2310 |
-
"Statistics will not function without PHP Version "
|
2311 |
-
msgstr ""
|
2312 |
-
"خطأ: كشف احصائيات ووردبريس أن إصدار PHP لديك غير معتمد، و احصائيات ووردبريس "
|
2313 |
-
"لن تعمل دون PHP النسخة"
|
2314 |
|
2315 |
-
#: wp-statistics.php:
|
2316 |
-
msgid "
|
2317 |
-
msgstr "
|
2318 |
|
2319 |
-
#: wp-statistics.php:
|
2320 |
-
|
2321 |
-
|
|
|
|
|
|
|
2322 |
|
2323 |
-
#: wp-statistics.php:
|
2324 |
-
msgid "
|
2325 |
-
msgstr "
|
2326 |
|
2327 |
-
|
2328 |
-
|
2329 |
-
|
2330 |
-
msgstr "احصائيات ووردبريس"
|
2331 |
|
2332 |
-
|
2333 |
-
|
2334 |
-
|
2335 |
-
msgstr "إحصاءات كاملة لموقع ووردبريس الخاص بك."
|
2336 |
|
2337 |
-
#: wp-statistics.php:
|
2338 |
-
msgid ""
|
2339 |
-
"
|
2340 |
-
"enable it."
|
2341 |
-
msgstr ""
|
2342 |
-
"لم يتم تمكين تتبع المستخدم عبر الإنترنت في احصائيات ووردبريس، يرجى الذهاب "
|
2343 |
-
"إلى %s وتمكينه."
|
2344 |
|
2345 |
-
#: wp-
|
2346 |
-
msgid "
|
2347 |
-
msgstr "
|
2348 |
|
2349 |
-
#: wp-statistics.php:
|
2350 |
-
msgid ""
|
2351 |
-
"
|
2352 |
-
msgstr ""
|
2353 |
-
"تتبع النقرات في احصائيات ووردبريس لم يتم تمكينه، يرجى الذهاب إلى %s وتمكينه."
|
2354 |
|
2355 |
-
#: wp-statistics.php:
|
2356 |
-
msgid ""
|
2357 |
-
"
|
2358 |
-
"it."
|
2359 |
-
msgstr ""
|
2360 |
-
"لم يتم تمكين تتبع الزائر في احصائيات ووردبريس، يرجى الذهاب إلى %s وتمكينه."
|
2361 |
|
2362 |
-
#: wp-statistics.php:
|
2363 |
-
msgid ""
|
2364 |
-
"
|
2365 |
-
msgstr "مجموعة GeoIP غير نشطه، يرجى الذهاب إلى %s وتمكين هذه الميزة."
|
2366 |
|
2367 |
-
#: wp-statistics.php:
|
2368 |
-
msgid "
|
2369 |
-
msgstr "
|
2370 |
|
2371 |
-
#: wp-
|
2372 |
-
|
2373 |
-
|
|
|
|
|
|
|
2374 |
|
2375 |
-
#: wp-statistics.php:
|
2376 |
-
|
2377 |
-
|
|
|
|
|
2378 |
|
2379 |
-
#: wp-statistics.php:
|
2380 |
-
msgid "
|
2381 |
-
msgstr "
|
2382 |
|
2383 |
-
#: wp-statistics.php:
|
2384 |
-
msgid "
|
2385 |
-
msgstr "
|
2386 |
|
2387 |
-
#: wp-statistics.php:
|
2388 |
-
msgid "
|
2389 |
-
msgstr "
|
2390 |
|
2391 |
-
#: wp-statistics.php:
|
2392 |
-
msgid "
|
2393 |
-
msgstr "
|
2394 |
|
2395 |
-
#: wp-statistics.php:
|
2396 |
-
|
2397 |
-
|
|
|
2398 |
|
2399 |
-
#: wp-statistics.php:
|
2400 |
-
msgid "
|
2401 |
-
msgstr "
|
2402 |
|
2403 |
-
#: wp-statistics.php:
|
2404 |
-
|
2405 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
2406 |
|
2407 |
-
#: wp-statistics.php:
|
2408 |
-
msgid "
|
2409 |
-
msgstr "
|
2410 |
|
2411 |
-
#: wp-statistics.php:
|
2412 |
-
msgid "
|
2413 |
-
msgstr "
|
2414 |
|
2415 |
-
#: wp-statistics.php:
|
2416 |
-
msgid "
|
2417 |
-
msgstr "
|
2418 |
|
2419 |
-
#: wp-statistics.php:
|
2420 |
-
msgid "
|
2421 |
-
msgstr "
|
2422 |
|
2423 |
-
#: wp-statistics.php:
|
2424 |
-
msgid "
|
2425 |
-
msgstr "
|
2426 |
|
2427 |
-
#: wp-statistics.php:
|
2428 |
-
msgid "
|
2429 |
-
msgstr "
|
2430 |
|
2431 |
-
#: wp-statistics.php:
|
2432 |
-
msgid "
|
2433 |
-
msgstr "
|
2434 |
|
2435 |
-
#: wp-statistics.php:
|
2436 |
-
msgid "
|
2437 |
-
msgstr "
|
2438 |
|
2439 |
-
#: wp-statistics.php:
|
2440 |
-
|
2441 |
-
|
|
|
|
|
|
|
|
|
2442 |
|
2443 |
-
#: wp-statistics.php:
|
2444 |
-
msgid "
|
2445 |
-
msgstr "
|
2446 |
|
2447 |
-
#: wp-statistics.php:
|
2448 |
-
msgid "
|
2449 |
-
msgstr "
|
2450 |
|
2451 |
-
#: wp-statistics.php:
|
2452 |
-
msgid "
|
2453 |
-
msgstr "
|
2454 |
|
2455 |
-
#: wp-
|
2456 |
-
|
2457 |
-
|
|
|
|
|
|
|
2458 |
|
2459 |
-
#: wp-statistics.php:
|
2460 |
-
msgid ""
|
2461 |
-
|
2462 |
-
"routine %s."
|
2463 |
-
msgstr ""
|
2464 |
-
"جداول البرنامج المساعد لا وجود لها في قاعدة البيانات! يرجى إعادة تشغيل %s "
|
2465 |
-
"التثبيت الروتيني %s."
|
2466 |
|
2467 |
-
#: wps-
|
2468 |
-
msgid "
|
2469 |
-
msgstr "
|
2470 |
|
2471 |
-
#: wps-
|
2472 |
-
msgid "
|
2473 |
-
msgstr "
|
2474 |
|
2475 |
-
#: wps-
|
2476 |
-
msgid "
|
2477 |
-
msgstr "
|
2478 |
|
2479 |
-
#: wps-
|
2480 |
-
msgid "
|
2481 |
-
msgstr "
|
2482 |
|
2483 |
-
#: wps-
|
2484 |
-
msgid "
|
2485 |
-
msgstr "
|
2486 |
|
2487 |
-
#: wps-
|
2488 |
-
msgid "
|
2489 |
-
msgstr "
|
2490 |
|
2491 |
-
#: wps-
|
2492 |
-
msgid "
|
2493 |
-
msgstr "
|
2494 |
|
2495 |
-
#: wps-
|
2496 |
-
msgid "
|
2497 |
-
msgstr "
|
2498 |
|
2499 |
-
#: wps-
|
2500 |
-
msgid ""
|
2501 |
-
"
|
2502 |
-
"previous browscap.ini."
|
2503 |
-
msgstr ""
|
2504 |
-
"تحديث قاعدة بيانات browscap فشل! ملف الكاش كبير جدا، تم الرجوع إلى browscap."
|
2505 |
-
"ini السابق."
|
2506 |
|
2507 |
-
#: wps-
|
2508 |
-
|
2509 |
-
"
|
2510 |
-
"
|
2511 |
-
msgstr ""
|
2512 |
-
"تحديث قاعدة بيانات browscap فشل! لم تتم تحديد هوية browscap.ini الجديدة لكلا "
|
2513 |
-
"من المستخدم والزواحف، وتم الرجوع إلى browscap.ini السابق."
|
2514 |
|
2515 |
-
#: wps-
|
2516 |
-
msgid "
|
2517 |
-
msgstr "
|
2518 |
|
2519 |
-
#: wps-
|
2520 |
-
msgid "
|
2521 |
-
msgstr "
|
2522 |
|
2523 |
-
|
2524 |
-
|
|
|
2525 |
|
2526 |
-
|
2527 |
-
|
|
|
|
|
2528 |
|
2529 |
-
|
2530 |
-
|
|
|
|
|
2531 |
|
2532 |
-
|
2533 |
-
|
|
|
2534 |
|
2535 |
-
|
2536 |
-
|
|
|
2537 |
|
2538 |
-
|
2539 |
-
|
|
|
2540 |
|
2541 |
-
|
2542 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2543 |
|
2544 |
-
|
2545 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
2546 |
|
2547 |
-
|
2548 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
2549 |
|
2550 |
-
|
2551 |
-
|
|
|
2552 |
|
2553 |
-
|
2554 |
-
|
|
|
2555 |
|
2556 |
-
|
2557 |
-
|
|
|
2558 |
|
2559 |
-
|
2560 |
-
|
|
|
2561 |
|
2562 |
-
|
2563 |
-
|
|
|
2564 |
|
2565 |
-
|
2566 |
-
|
|
|
2567 |
|
2568 |
-
|
2569 |
-
|
|
|
2570 |
|
2571 |
-
|
2572 |
-
|
|
|
2573 |
|
2574 |
-
|
2575 |
-
|
2576 |
-
|
2577 |
-
#~ msgstr ""
|
2578 |
-
#~ "يرجى التبرع لمنتج WP Statistics, فبتبرعكم سوف نصل بمنتج WP Statistics الى "
|
2579 |
-
#~ "سيادة الووردبريس."
|
2580 |
|
2581 |
-
|
2582 |
-
|
|
|
2583 |
|
2584 |
-
|
2585 |
-
|
|
|
2586 |
|
2587 |
-
|
2588 |
-
|
|
|
2589 |
|
2590 |
-
|
2591 |
-
|
|
|
2592 |
|
2593 |
-
|
2594 |
-
|
|
|
2595 |
|
2596 |
-
|
2597 |
-
|
|
|
2598 |
|
2599 |
-
|
2600 |
-
|
|
|
2601 |
|
2602 |
-
|
2603 |
-
|
|
|
2604 |
|
2605 |
-
|
2606 |
-
|
|
|
2607 |
|
2608 |
-
|
2609 |
-
|
|
|
2610 |
|
2611 |
-
|
2612 |
-
|
|
|
|
|
|
|
2613 |
|
2614 |
-
|
2615 |
-
|
2616 |
-
|
2617 |
-
#~ "بيانات <code>%s</code> مضى عليها أكثر من <code>%s</code> أيام ضخ بنجاح."
|
2618 |
|
2619 |
-
|
2620 |
-
|
|
|
2621 |
|
2622 |
-
|
2623 |
-
|
|
|
2624 |
|
2625 |
-
|
2626 |
-
|
|
|
2627 |
|
2628 |
-
|
2629 |
-
|
|
|
2630 |
|
2631 |
-
|
2632 |
-
|
|
|
2633 |
|
2634 |
-
|
2635 |
-
|
|
|
2636 |
|
2637 |
-
|
2638 |
-
|
|
|
2639 |
|
2640 |
-
|
2641 |
-
|
2642 |
-
|
2643 |
|
2644 |
-
|
2645 |
-
|
|
|
2646 |
|
2647 |
-
|
2648 |
-
|
2649 |
-
|
2650 |
-
#~ msgstr ""
|
2651 |
-
#~ "إذا تم تثبيت الملحق PHP BC Math. فأن كود GeoIP مطلوب في BC Math, واذا لم "
|
2652 |
-
#~ "يتم تثبيته يتم تعطيل GeoIP."
|
2653 |
|
2654 |
-
|
2655 |
-
|
|
|
2656 |
|
2657 |
-
|
2658 |
-
|
|
|
2659 |
|
2660 |
-
|
2661 |
-
|
2662 |
-
|
2663 |
-
#~ msgstr ""
|
2664 |
-
#~ "انظر أدوار %s ووردبريس وقدرات الصفحة %s للتفاصيل على مستويات القدرة."
|
2665 |
|
2666 |
-
|
2667 |
-
|
2668 |
-
|
2669 |
-
#~ msgstr ""
|
2670 |
-
#~ "افتراضيا احصائيات ووردبريس يعرض تنبيها اذا تم تعطيل أي من الميزات "
|
2671 |
-
#~ "الأساسية على كل مشرف, فإن هذا الخيار يقوم بتعطيل الإشعارات."
|
2672 |
|
2673 |
-
|
2674 |
-
|
|
|
2675 |
|
2676 |
-
|
2677 |
-
|
|
|
2678 |
|
2679 |
-
|
2680 |
-
|
|
|
2681 |
|
2682 |
-
|
2683 |
-
|
|
|
2684 |
|
2685 |
-
|
2686 |
-
|
|
|
|
|
2687 |
|
2688 |
-
|
2689 |
-
|
|
|
|
|
2690 |
|
2691 |
-
|
2692 |
-
|
|
|
2693 |
|
2694 |
-
|
2695 |
-
|
|
|
2696 |
|
2697 |
-
|
2698 |
-
|
|
|
2699 |
|
2700 |
-
|
2701 |
-
|
|
|
2702 |
|
2703 |
-
|
2704 |
-
|
|
|
2705 |
|
2706 |
-
|
2707 |
-
|
2708 |
-
|
2709 |
-
#~ msgstr ""
|
2710 |
-
#~ "وضع الخريطة فوق منطقة الزوار الأخيرة بدلا من في الجزء العلوي من الصفحة."
|
2711 |
|
2712 |
-
|
2713 |
-
|
2714 |
-
|
2715 |
|
2716 |
-
|
2717 |
-
|
|
|
2718 |
|
2719 |
-
|
2720 |
-
|
|
|
2721 |
|
2722 |
-
|
2723 |
-
|
|
|
2724 |
|
2725 |
-
|
2726 |
-
|
|
|
2727 |
|
2728 |
-
|
2729 |
-
|
|
|
2730 |
|
2731 |
-
|
2732 |
-
|
|
|
2733 |
|
2734 |
-
|
2735 |
-
|
|
|
2736 |
|
2737 |
-
|
2738 |
-
|
2739 |
-
|
2740 |
-
#~ msgstr ""
|
2741 |
-
#~ "ملاحظة: لإرسال الرسائل النصية SMS الرجاء تثبيت البرنامج المساعد <a href="
|
2742 |
-
#~ "\"%s\" target=\"_blank\">Wordpress SMS</a>."
|
2743 |
|
2744 |
-
|
2745 |
-
|
|
|
2746 |
|
2747 |
-
|
2748 |
-
|
|
|
2749 |
|
2750 |
-
|
2751 |
-
|
|
|
2752 |
|
2753 |
-
|
2754 |
-
|
|
|
2755 |
|
2756 |
-
|
2757 |
-
|
|
|
2758 |
|
2759 |
-
|
2760 |
-
|
|
|
2761 |
|
2762 |
-
|
2763 |
-
|
2764 |
-
|
2765 |
-
#~ msgstr ""
|
2766 |
-
#~ "إضافة Wordpress Statistics غير مفعلة! الرجاء الذهاب الى <a href=\"%s"
|
2767 |
-
#~ "\">صفحة الإعدادات</a> وقم بتفعيلها"
|
2768 |
|
2769 |
-
|
2770 |
-
|
2771 |
-
|
2772 |
-
|
2773 |
-
#~ msgstr ""
|
2774 |
-
#~ "مجموعة GeoIP غير نشطة! يرجى الذهاب الى <a href=\"%s\">صفحة الإعدادات > "
|
2775 |
-
#~ "GeoIP</a> وقم بتمكين هذه الميزة (GeoIP يمكن الكشف عن بلد آخر)"
|
2776 |
|
2777 |
-
|
2778 |
-
|
|
|
2779 |
|
2780 |
-
|
2781 |
-
|
2782 |
-
|
2783 |
-
#~ "هناك جدول مفقود في البرنامج المساعد! الرجاء تعطيل البرنامج المساعد ومن ثم "
|
2784 |
-
#~ "تفعيلة مرة أخرى."
|
2785 |
|
2786 |
-
|
2787 |
-
|
|
|
2788 |
|
2789 |
-
|
2790 |
-
|
|
|
2791 |
|
2792 |
-
|
2793 |
-
|
|
|
2794 |
|
2795 |
-
|
2796 |
-
|
|
|
2797 |
|
2798 |
-
|
2799 |
-
|
|
|
2800 |
|
2801 |
-
|
2802 |
-
|
|
|
2803 |
|
2804 |
-
|
2805 |
-
|
|
|
2806 |
|
2807 |
-
|
2808 |
-
|
|
|
2809 |
|
2810 |
-
|
2811 |
-
|
|
|
2812 |
|
2813 |
-
|
2814 |
-
|
|
|
2815 |
|
2816 |
-
|
2817 |
-
|
|
|
2818 |
|
2819 |
-
|
2820 |
-
|
|
|
2821 |
|
2822 |
-
|
2823 |
-
|
|
|
2824 |
|
2825 |
-
|
2826 |
-
|
|
|
2827 |
|
2828 |
-
|
2829 |
-
|
|
|
2830 |
|
2831 |
-
|
2832 |
-
|
|
|
2833 |
|
2834 |
-
|
2835 |
-
|
|
|
2836 |
|
2837 |
-
|
2838 |
-
|
|
|
2839 |
|
2840 |
-
|
2841 |
-
|
|
|
2842 |
|
2843 |
-
|
2844 |
-
|
2845 |
-
|
2846 |
-
#~ msgstr ""
|
2847 |
-
#~ "يرجى التبرع لهذا البرنامج المساعد. وذلك لمساعدتنا في إضافة المكونات "
|
2848 |
-
#~ "الاضافية في أسرع وقت."
|
2849 |
|
2850 |
-
|
2851 |
-
|
|
|
2852 |
|
2853 |
-
|
2854 |
-
|
|
|
2855 |
|
2856 |
-
|
2857 |
-
|
|
|
2858 |
|
2859 |
-
|
2860 |
-
|
|
|
2861 |
|
2862 |
-
|
2863 |
-
|
|
|
2864 |
|
2865 |
-
|
2866 |
-
|
2867 |
-
|
2868 |
|
2869 |
-
|
2870 |
-
|
|
|
2871 |
|
2872 |
-
|
2873 |
-
|
|
|
|
|
|
|
2874 |
|
2875 |
-
|
2876 |
-
|
|
|
2877 |
|
2878 |
-
|
2879 |
-
|
|
|
|
|
|
|
2880 |
|
2881 |
-
|
2882 |
-
|
|
|
2883 |
|
2884 |
-
|
2885 |
-
|
|
|
2886 |
|
2887 |
-
|
2888 |
-
|
|
|
|
|
|
|
|
|
2889 |
|
2890 |
-
|
2891 |
-
|
|
|
2892 |
|
2893 |
-
|
2894 |
-
|
|
|
2895 |
|
2896 |
-
|
2897 |
-
|
|
|
2898 |
|
2899 |
-
|
2900 |
-
|
|
|
2901 |
|
2902 |
-
|
2903 |
-
|
|
|
2904 |
|
2905 |
-
|
2906 |
-
|
|
|
2907 |
|
2908 |
-
|
2909 |
-
|
|
|
2910 |
|
2911 |
-
|
2912 |
-
|
|
|
2913 |
|
2914 |
-
|
2915 |
-
|
|
|
2916 |
|
2917 |
-
|
2918 |
-
|
|
|
2919 |
|
2920 |
-
|
2921 |
-
|
|
|
2922 |
|
2923 |
-
|
2924 |
-
|
|
|
2925 |
|
2926 |
-
|
2927 |
-
|
|
|
2928 |
|
2929 |
-
|
2930 |
-
|
|
|
2931 |
|
2932 |
-
|
2933 |
-
|
|
|
2934 |
|
2935 |
-
|
2936 |
-
|
|
|
2937 |
|
2938 |
-
|
2939 |
-
|
|
|
2940 |
|
2941 |
-
|
2942 |
-
|
|
|
2943 |
|
2944 |
-
|
2945 |
-
|
|
|
2946 |
|
2947 |
-
|
2948 |
-
|
|
|
2949 |
|
2950 |
-
|
2951 |
-
|
|
|
2952 |
|
2953 |
-
|
2954 |
-
|
|
|
2955 |
|
2956 |
-
|
2957 |
-
|
|
|
2958 |
|
2959 |
-
|
2960 |
-
|
|
|
2961 |
|
2962 |
-
|
2963 |
-
|
|
|
2964 |
|
2965 |
-
|
2966 |
-
|
|
|
2967 |
|
2968 |
-
|
2969 |
-
|
|
|
2970 |
|
2971 |
-
|
2972 |
-
|
|
|
2973 |
|
2974 |
-
|
2975 |
-
|
|
|
2976 |
|
2977 |
-
|
2978 |
-
|
|
|
2979 |
|
2980 |
-
|
2981 |
-
|
|
|
2982 |
|
2983 |
-
|
2984 |
-
|
|
|
2985 |
|
2986 |
-
|
2987 |
-
|
|
|
2988 |
|
2989 |
-
|
2990 |
-
|
|
|
2991 |
|
2992 |
-
|
2993 |
-
|
|
|
2994 |
|
2995 |
-
|
2996 |
-
|
|
|
2997 |
|
2998 |
-
|
2999 |
-
|
|
|
3000 |
|
3001 |
-
|
3002 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3003 |
|
3004 |
-
|
3005 |
-
|
|
|
3006 |
|
3007 |
-
|
3008 |
-
|
|
|
3009 |
|
3010 |
-
|
3011 |
-
|
|
|
3012 |
|
3013 |
-
|
3014 |
-
|
|
|
|
|
3015 |
|
3016 |
-
|
3017 |
-
|
|
|
3018 |
|
3019 |
-
|
3020 |
-
|
|
|
|
|
3021 |
|
3022 |
-
|
3023 |
-
|
|
|
3024 |
|
3025 |
-
|
3026 |
-
|
|
|
3027 |
|
3028 |
-
|
3029 |
-
|
|
|
3030 |
|
3031 |
-
|
3032 |
-
|
|
|
3033 |
|
3034 |
-
|
3035 |
-
|
|
1 |
+
# Translation of WP Statistics in Arabic
|
2 |
+
# This file is distributed under the same license as the WP Statistics package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2015-01-27 19:28-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 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
10 |
+
"X-Generator: Poedit 1.7.4\n"
|
11 |
+
"Project-Id-Version: WP Statistics\n"
|
12 |
+
"POT-Creation-Date: \n"
|
13 |
+
"Last-Translator: \n"
|
14 |
+
"Language-Team: \n"
|
15 |
+
"Language: ar\n"
|
16 |
+
|
17 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:93
|
18 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:133
|
19 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:149
|
20 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:188
|
21 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:200
|
22 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:229
|
23 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:122
|
24 |
+
msgid "Enable or disable this feature"
|
25 |
+
msgstr "تمكين أو تعطيل هذه الميزة"
|
26 |
|
27 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:99
|
28 |
+
msgid "Check for online users every"
|
29 |
+
msgstr "تحقق من المتصلين في الموقع في كل"
|
30 |
|
31 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:104
|
32 |
+
msgid "Second"
|
33 |
+
msgstr "ثانية"
|
|
|
34 |
|
35 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:105
|
36 |
+
msgid "Time for the check accurate online user in the site. Now: %s Second"
|
37 |
+
msgstr "وقت التحقق من المستخدمين المتصلين في الموقع. الآن: %s ثانية"
|
38 |
|
39 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:111
|
40 |
+
msgid "Record all user"
|
41 |
+
msgstr "تسجيل جميع المستخدمين"
|
|
|
42 |
|
43 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:117
|
44 |
+
msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
|
45 |
+
msgstr "يتجاهل إعدادات الإقصاء ويسجل كل المستخدمين التي يتم على الانترنت (بما في ذلك الإحالة الذاتية والروبوتات). وينبغي أن تستخدم فقط لاستكشاف الأخطاء وإصلاحها."
|
46 |
|
47 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:155
|
48 |
+
msgid "Store entire user agent string"
|
49 |
+
msgstr "تخزين كامل سلسلة عامل المستخدم"
|
|
|
|
|
50 |
|
51 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:161
|
52 |
+
msgid "Only enabled for debugging"
|
53 |
+
msgstr "تمكين فقط من أجل التصحيح"
|
|
|
|
|
54 |
|
55 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:167
|
56 |
+
msgid "Coefficient per visitor"
|
57 |
+
msgstr "درجة لكل زائر"
|
|
|
58 |
|
59 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:172
|
60 |
+
msgid "For each visit to account for several hits. Currently %s."
|
61 |
+
msgstr "حساب توجيه النقرات لكل زائر. حالياً %s."
|
62 |
|
63 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:177
|
64 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:182
|
65 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:295
|
66 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:368
|
67 |
+
msgid "Pages"
|
68 |
+
msgstr "الصفحات"
|
69 |
|
70 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:194
|
71 |
+
msgid "Track all pages"
|
72 |
+
msgstr "تتبع جميع الصفحات"
|
|
|
73 |
|
74 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:209
|
75 |
+
msgid "Strip parameters from URI"
|
76 |
+
msgstr "معايير الشريط من URI"
|
77 |
|
78 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:215
|
79 |
+
msgid "This will remove anything after the ? in a URL."
|
80 |
+
msgstr "سيؤدي هذا إلى إزالة أي شيء بعد؟ في URL."
|
81 |
|
82 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:223
|
83 |
+
msgid "Disable hits column in post/pages list"
|
84 |
+
msgstr "تعطيل عمود النقرات في قائمة المقال/الصفحات"
|
85 |
|
86 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:234
|
87 |
+
msgid "Miscellaneous"
|
88 |
+
msgstr "متفرقات"
|
|
|
|
|
|
|
|
|
89 |
|
90 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:239
|
91 |
+
msgid "Show stats in menu bar"
|
92 |
+
msgstr "إظهار الاحصائيات في شريط القوائم"
|
93 |
|
94 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:244
|
95 |
+
msgid "No"
|
96 |
+
msgstr "لا"
|
|
|
97 |
|
98 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:245
|
99 |
+
msgid "Yes"
|
100 |
+
msgstr "نعم"
|
|
|
101 |
|
102 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:247
|
103 |
+
msgid "Show stats in admin menu bar"
|
104 |
+
msgstr "اظهار الاحصائيات في شريط القوائم الإداري"
|
105 |
|
106 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:253
|
107 |
+
msgid "Hide admin notices about non active features"
|
108 |
+
msgstr "اخفاء إشعارات المشرف حول الميزات غير نشطة"
|
109 |
|
110 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:259
|
111 |
+
msgid "By default WP Statistics displays an alert if any of the core features are disabled on every admin page, this option will disable these notices."
|
112 |
+
msgstr "افتراضيا احصائيات ووردبريس يعرض تنبيها إذا تم تعطيل أي من الميزات الأساسية في صفحة المشرف، وهذا الخيار لتعطيل هذه الإشعارات."
|
113 |
|
114 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:265
|
115 |
+
msgid "Delete the manual"
|
116 |
+
msgstr "حذف الدليل"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
117 |
|
118 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:271
|
119 |
+
msgid "By default WP Statistics stores the admin manual in the plugin directory (~5 meg), if this option is enabled it will be deleted now and during upgrades in the future."
|
120 |
+
msgstr "افتراضيا احصائيات ووردبريس يخزن دليل المشرف في الدليل المساعد (~ 5 ميج)، إذا تم تمكين هذا الخيار سيتم حذفه الآن، وخلال الترقيات في المستقبل."
|
|
|
121 |
|
122 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:276
|
123 |
+
msgid "Search Engines"
|
124 |
+
msgstr "محركات البحث"
|
125 |
|
126 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:281
|
127 |
+
msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
|
128 |
+
msgstr "تعطيل جميع محركات البحث غير مسموح, سيؤدي ذلك الى تنشيط جميع محركات البحث."
|
|
|
129 |
|
130 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:296
|
131 |
+
msgid "disable"
|
132 |
+
msgstr "تعطيل"
|
133 |
|
134 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:297
|
135 |
+
msgid "Disable %s from data collection and reporting."
|
136 |
+
msgstr "تعطيل %s من جمع البيانات وإعداد التقارير."
|
137 |
|
138 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:303
|
139 |
+
msgid "Charts"
|
140 |
+
msgstr "الرسوم البيانية"
|
|
|
|
|
|
|
|
|
141 |
|
142 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:308
|
143 |
+
msgid "Include totals"
|
144 |
+
msgstr "تتضمن الاجماليات"
|
145 |
|
146 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:314
|
147 |
+
msgid "Add a total line to charts with multiple values, like the search engine referrals"
|
148 |
+
msgstr "إضافة سطر مجموع المخططات مع قيم متعددة، مثل إحالات محرك البحث"
|
|
|
149 |
|
150 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:27
|
151 |
+
msgid "GeoIP settings"
|
152 |
+
msgstr "إعدادات GeoIP"
|
|
|
153 |
|
154 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:32
|
155 |
+
msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
|
156 |
+
msgstr "خدمات الموقع IP المقدمة من البيانات GeoLite2 التي أنشأتها MaxMind، المتاحة من %s."
|
|
|
157 |
|
158 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:42
|
159 |
+
msgid "GeoIP collection"
|
160 |
+
msgstr "مجموعة GeoIP"
|
|
|
161 |
|
162 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:48
|
163 |
+
msgid "For get more information and location (country) from visitor, enable this feature."
|
164 |
+
msgstr "للحصول على مزيد من المعلومات، والمكان (البلد) من الزوار، تمكين هذه الميزة."
|
|
|
165 |
|
166 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:54
|
167 |
+
msgid "Update GeoIP Info"
|
168 |
+
msgstr "تحديث معلومات GeoIP"
|
|
|
169 |
|
170 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:59
|
171 |
+
msgid "Download GeoIP Database"
|
172 |
+
msgstr "تحميل قاعدة بيانات GeoIP"
|
|
|
173 |
|
174 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:66
|
175 |
+
msgid "Schedule monthly update of GeoIP DB"
|
176 |
+
msgstr "جدولة التحديث الشهري لGeoIP DB"
|
|
|
177 |
|
178 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:92
|
179 |
+
msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
|
180 |
+
msgstr "سيتم جدولة التحميل من قاعدة البيانات GeoIP لمدة 2 يوما بعد يوم الثلاثاء الأول من الشهر."
|
181 |
|
182 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:93
|
183 |
+
msgid "This option will also download the database if the local filesize is less than 1k (which usually means the stub that comes with the plugin is still in place)."
|
184 |
+
msgstr "وهذا الخيار أيضا تحميل قاعدة البيانات إذا كان حجم الملف المحلي أقل من 1K (الذي يعني عادة أن طرف البرنامج التي تأتي مع البرنامج المساعد لا يزال في مكانه)."
|
185 |
|
186 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:99
|
187 |
+
msgid "Populate missing GeoIP after update of GeoIP DB"
|
188 |
+
msgstr "تعبئة GeoIP في عداد المفقودين بعد التحديث من GeoIP DB"
|
189 |
|
190 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:105
|
191 |
+
msgid "Update any missing GeoIP data after downloading a new database."
|
192 |
+
msgstr "تحديث أي بيانات GeoIP مفقودة بعد تحميل قاعدة البيانات الجديدة."
|
|
|
|
|
|
|
193 |
|
194 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:111
|
195 |
+
msgid "Country code for private IP addresses"
|
196 |
+
msgstr "رمز البلد لعناوين IP خاصة"
|
197 |
|
198 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:116
|
199 |
+
msgid "The international standard two letter country code (ie. US = United States, CA = Canada, etc.) for private (non-routable) IP addresses (ie. 10.0.0.1, 192.158.1.1, 127.0.0.1, etc.). Use \"000\" (three zeros) to use \"Unknown\" as the country code."
|
200 |
+
msgstr "المعيار اثنين الرمز الدولي بلد إلكتروني (أي الولايات المتحدة = الولايات المتحدة الأمريكية، CA = كندا، الخ) ل(غير قابل للتوجيه) عناوين IP خاصة (أي. 10.0.0.1، 192.158.1.1، 127.0.0.1، وما إلى ذلك). استخدام \"000\" (ثلاثة أصفار) لاستخدام \"غير معروف\"، كما رمز البلد."
|
201 |
|
202 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:127
|
203 |
+
msgid "GeoIP collection is disabled due to the following reasons:"
|
204 |
+
msgstr "تم تعطيل مجموعة GeoIP وذلك للأسباب التالية:"
|
205 |
|
206 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:130
|
207 |
+
msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
|
208 |
+
msgstr "جمع GeoIP يتطلب PHP %s أو أعلى، يتم تعطيله حاليا نظرا لكونها نسخة PHP مثبتة"
|
209 |
|
210 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:135
|
211 |
+
msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
|
212 |
+
msgstr "مجموعة GeoIP تتطلب الملحق cURL PHP و هو غير مفعل على إصدار الـ PHP!"
|
|
|
213 |
|
214 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:141
|
215 |
+
msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
|
216 |
+
msgstr "مجموعة GeoIP تتطلب الملحق BC Math PHP و هو غير مفعل على إصدار الـ PHP!"
|
|
|
217 |
|
218 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:147
|
219 |
+
msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
|
220 |
+
msgstr "تم الكشف عن الوضع الآمن في PHP! مجموعة GeoIP غير معتمدة عند تمكين الوضع الآمن في PHP!"
|
221 |
|
222 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:20
|
223 |
+
msgid "This will permanently delete data from the database each day, are you sure you want to enable this option?"
|
224 |
+
msgstr "سيؤدي ذلك إلى حذف البيانات من قاعدة البيانات بشكل دائم كل يوم، هل أنت متأكد من أنك تريد تمكين هذا الخيار؟"
|
|
|
|
|
|
|
225 |
|
226 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:30
|
227 |
+
msgid "Database Maintenance"
|
228 |
+
msgstr "صيانة قاعدة البيانات"
|
|
|
|
|
|
|
|
|
229 |
|
230 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:35
|
231 |
+
msgid "Run a daily WP Cron job to prune the databases"
|
232 |
+
msgstr "تشغيل مهام ووردبريس يوميا للضخ في قاعدة البيانات"
|
|
|
|
|
233 |
|
234 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:41
|
235 |
+
msgid "A WP Cron job will be run daily to prune any data older than a set number of days."
|
236 |
+
msgstr "سيتم تشغيل ألف وظيفة في مهام ووردبريس يوميا لضخ أي بيانات أقدم من العدد المحدد من الأيام."
|
|
|
|
|
237 |
|
238 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:47
|
239 |
+
msgid "Prune data older than"
|
240 |
+
msgstr "ضخ البيانات الأقدم من"
|
|
|
241 |
|
242 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:52
|
243 |
+
msgid "Days"
|
244 |
+
msgstr "أيام"
|
245 |
|
246 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:53
|
247 |
+
msgid "The number of days to keep statistics for. Minimum value is 30 days. Invalid values will disable the daily maintenance."
|
248 |
+
msgstr "عدد الأيام للحفاظ على الإحصاءات المتعلقة. قيمة الحد الأدنى هو 30 يوما. سيتم تعطيل الصيانة اليومية في حال ادخال قيم غير صالحة."
|
249 |
|
250 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:44
|
251 |
+
msgid "Common Report Options"
|
252 |
+
msgstr "خيارات تقرير المشترك"
|
253 |
|
254 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:49
|
255 |
+
msgid "E-mail addresses"
|
256 |
+
msgstr "عناوين البريد الإلكتروني"
|
257 |
|
258 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:54
|
259 |
+
msgid "A comma separated list of e-mail addresses to send reports to."
|
260 |
+
msgstr "أفصل قائمة عناوين البريد الإلكتروني بفاصلة لإرسال التقارير إلى."
|
261 |
|
262 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:59
|
263 |
+
msgid "Update Reports"
|
264 |
+
msgstr "تقارير التحديث"
|
265 |
|
266 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:64
|
267 |
+
msgid "Browscap"
|
268 |
+
msgstr "Browscap"
|
269 |
|
270 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:70
|
271 |
+
msgid "Send a report whenever the browscap.ini is updated."
|
272 |
+
msgstr "إرسال تقرير كلما يتم تحديث browscap.ini."
|
273 |
|
274 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:76
|
275 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:104
|
276 |
+
msgid "GeoIP"
|
277 |
+
msgstr "GeoIP"
|
278 |
|
279 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:82
|
280 |
+
msgid "Send a report whenever the GeoIP database is updated."
|
281 |
+
msgstr "إرسال تقرير كلما يتم تحديث قاعدة البيانات GeoIP."
|
|
|
282 |
|
283 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:88
|
284 |
+
msgid "Pruning"
|
285 |
+
msgstr "تنقيح"
|
286 |
|
287 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:94
|
288 |
+
msgid "Send a report whenever the pruning of database is run."
|
289 |
+
msgstr "إرسال تقرير كلما يتم تشغيل التنقيح في قاعدة البيانات."
|
|
|
290 |
|
291 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:100
|
292 |
+
msgid "Upgrade"
|
293 |
+
msgstr "ترقية"
|
|
|
294 |
|
295 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:106
|
296 |
+
msgid "Send a report whenever the plugin is upgraded."
|
297 |
+
msgstr "إرسال تقرير كلما تتم ترقية البرنامج المساعد."
|
|
|
298 |
|
299 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:111
|
300 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:116
|
301 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:152
|
302 |
+
msgid "Statistical reporting"
|
303 |
+
msgstr "تقارير الإحصائيات"
|
304 |
|
305 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:129
|
306 |
+
msgid "Schedule"
|
307 |
+
msgstr "جدول"
|
308 |
|
309 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:153
|
310 |
+
msgid "Select how often to receive statistical report."
|
311 |
+
msgstr "حدد عدد المرات لتلقي تقرير إحصائي."
|
312 |
|
313 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:159
|
314 |
+
msgid "Send reports via"
|
315 |
+
msgstr "إرسال التقارير عن طريق"
|
316 |
|
317 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:165
|
318 |
+
msgid "Email"
|
319 |
+
msgstr "البريد الإلكتروني"
|
|
|
|
|
|
|
|
|
320 |
|
321 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:167
|
322 |
+
msgid "SMS"
|
323 |
+
msgstr "رسائل نصية"
|
|
|
|
|
|
|
324 |
|
325 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:170
|
326 |
+
msgid "Select delivery method for statistical report."
|
327 |
+
msgstr "حدد طريقة التسليم للتقرير الإحصائي."
|
328 |
|
329 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:173
|
330 |
+
msgid "Note: To send SMS text messages please install the %s plugin."
|
331 |
+
msgstr "ملاحظة: لإرسال رسائل نصية SMS الرجاء تثبيت إضافة %s."
|
332 |
|
333 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:173
|
334 |
+
msgid "WordPress SMS"
|
335 |
+
msgstr "الرسائل النصية"
|
336 |
|
337 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:180
|
338 |
+
msgid "Report body"
|
339 |
+
msgstr "تقرير الهيئة"
|
340 |
|
341 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:185
|
342 |
+
msgid "Enter the contents of the report."
|
343 |
+
msgstr "أدخل محتويات التقرير."
|
344 |
|
345 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:187
|
346 |
+
msgid "Any shortcode supported by your installation of WordPress, include all shortcodes for WP Statistics (see the admin manual for a list of codes available) are supported in the body of the message. Here are some examples:"
|
347 |
+
msgstr "أي رمز قصير بدعم من مثبت ووردبريس، وتشمل جميع الاكواد المختصرة لاحصائيات ووردبريس (انظر دليل المشرف للحصول على قائمة رموز المتاحة) معتمدة في نص الرسالة. وهنا بعض الأمثلة:"
|
348 |
|
349 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
350 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:38
|
351 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:245
|
352 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:464
|
353 |
+
msgid "User Online"
|
354 |
+
msgstr "المتواجدين الآن"
|
355 |
|
356 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:189
|
357 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:52
|
358 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:251
|
359 |
+
msgid "Today Visitor"
|
360 |
+
msgstr "زوار اليوم"
|
361 |
|
362 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:190
|
363 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:45
|
364 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:248
|
365 |
+
msgid "Today Visit"
|
366 |
+
msgstr "زيارات اليوم"
|
367 |
|
368 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:191
|
369 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:66
|
370 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:257
|
371 |
+
msgid "Yesterday Visitor"
|
372 |
+
msgstr "زوار الأمس"
|
|
|
|
|
373 |
|
374 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:192
|
375 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:59
|
376 |
+
msgid "Yesterday Visit"
|
377 |
+
msgstr "زيارات الأمس"
|
378 |
|
379 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:193
|
380 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:101
|
381 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:272
|
382 |
+
msgid "Total Visitor"
|
383 |
+
msgstr "مجموع الزوار"
|
384 |
|
385 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:194
|
386 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:94
|
387 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:269
|
388 |
+
msgid "Total Visit"
|
389 |
+
msgstr "مجموع الزيارات"
|
390 |
|
391 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:23
|
392 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:32
|
393 |
+
msgid "None"
|
394 |
+
msgstr "لا شيء"
|
395 |
|
396 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:24
|
397 |
+
msgid "Summary Statistics"
|
398 |
+
msgstr "ملخص الاحصائيات"
|
399 |
|
400 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:28
|
401 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:108
|
402 |
+
msgid "About"
|
403 |
+
msgstr "حول"
|
404 |
|
405 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
406 |
+
msgid "Hits Statistical Chart"
|
407 |
+
msgstr "الرسم البياني لعدد النقرات"
|
408 |
|
409 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:36
|
410 |
+
msgid "Search Engine Referrers Statistical Chart"
|
411 |
+
msgstr "الرسم البياني لمحركات البحث"
|
412 |
|
413 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:38
|
414 |
+
msgid "Top Pages Visited"
|
415 |
+
msgstr "أعلى الصفحات زيارة"
|
416 |
|
417 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:73
|
418 |
+
msgid "Dashboard"
|
419 |
+
msgstr "لوحة القيادة"
|
420 |
|
421 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:77
|
422 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:97
|
423 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:117
|
424 |
+
msgid "The following items are global to all users."
|
425 |
+
msgstr "العناصر التالية هي عالمية لجميع المستخدمين."
|
426 |
|
427 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:82
|
428 |
+
msgid "Disable dashboard widgets"
|
429 |
+
msgstr "تعطيل قطع لوحة القيادة"
|
430 |
|
431 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:88
|
432 |
+
msgid "Disable the dashboard widgets."
|
433 |
+
msgstr "تعطيل القطع للوحة القيادة"
|
434 |
|
435 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:93
|
436 |
+
msgid "Page/Post Editor"
|
437 |
+
msgstr "محرر الصفحة/المشاركة"
|
438 |
|
439 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:102
|
440 |
+
msgid "Disable post/page editor widget"
|
441 |
+
msgstr "تعطيل قطعة محرر الصفحة/المشاركة"
|
|
|
442 |
|
443 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:108
|
444 |
+
msgid "Disable the page/post editor widget."
|
445 |
+
msgstr "تعطيل القطع لمحرر الصفحة/المشاركة"
|
446 |
|
447 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:122
|
448 |
+
msgid "Map type"
|
449 |
+
msgstr "نوع الخريطة"
|
450 |
|
451 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:128
|
452 |
+
msgid "Google"
|
453 |
+
msgstr "جوجل"
|
|
|
454 |
|
455 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:128
|
456 |
+
msgid "JQVMap"
|
457 |
+
msgstr "JQVMap"
|
|
|
|
|
|
|
|
|
458 |
|
459 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:135
|
460 |
+
msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
|
461 |
+
msgstr "خيار \"جوجل\" يتوجب استخدام خدمة الخرائط جوجل لرسم زوار مؤخرا. (يتطلب الوصول إلى Google)"
|
462 |
|
463 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:136
|
464 |
+
msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
|
465 |
+
msgstr "خيار \"JQVMap\" استخدام مكتبة خرائط JQVMap جافا سكريبت لرسم الزوار مؤخرا. (لا يتطلب أي خدمات خارجية)."
|
466 |
|
467 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:142
|
468 |
+
msgid "Disable map"
|
469 |
+
msgstr "تعطيل الخريطة"
|
|
|
|
|
470 |
|
471 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:148
|
472 |
+
msgid "Disable the map display"
|
473 |
+
msgstr "تعطيل عرض الخريطة"
|
474 |
|
475 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:154
|
476 |
+
msgid "Get country location from Google"
|
477 |
+
msgstr "الحصول على موقع البلد من جوجل"
|
478 |
|
479 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:160
|
480 |
+
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
481 |
+
msgstr "قد تؤدي هذه الميزة تدهور الأداء عند عرض الإحصاءات وصالحة فقط إذا تم تعيين نوع الخريطة لـ \"جوجل\"."
|
482 |
|
483 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:171
|
484 |
+
msgid "Overview Widgets to Display"
|
485 |
+
msgstr "نظرة عامة للقطع المعروضة"
|
486 |
|
487 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:175
|
488 |
+
msgid "The following items are unique to each user. If you do not select the 'About' widget it will automatically be displayed in the last positon of column A."
|
489 |
+
msgstr "العناصر التالية هي فريدة من نوعها لكل مستخدم. إذا لم تقم بتحديد قطعة 'حول' سيتم تلقائيا إظهارها في العمود الأخير من A."
|
490 |
|
491 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:180
|
492 |
+
msgid "Slot"
|
493 |
+
msgstr "شريحة"
|
494 |
|
495 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:184
|
496 |
+
msgid "Column A"
|
497 |
+
msgstr "العمود A"
|
498 |
|
499 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:188
|
500 |
+
msgid "Column B"
|
501 |
+
msgstr "العمود B"
|
|
|
|
|
|
|
|
|
|
|
502 |
|
503 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:194
|
504 |
+
msgid "Slot 1"
|
505 |
+
msgstr "الشريحة 1"
|
506 |
|
507 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:224
|
508 |
+
msgid "Slot 2"
|
509 |
+
msgstr "الشريحة 2"
|
|
|
|
|
510 |
|
511 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:254
|
512 |
+
msgid "Slot 3"
|
513 |
+
msgstr "الشريحة 3"
|
|
|
|
|
514 |
|
515 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:284
|
516 |
+
msgid "Slot 4"
|
517 |
+
msgstr "الشريحة 4"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
518 |
|
519 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:314
|
520 |
+
msgid "Slot 5"
|
521 |
+
msgstr "الشريحة 5"
|
|
|
|
|
|
|
|
|
522 |
|
523 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:344
|
524 |
+
msgid "Slot 6"
|
525 |
+
msgstr "الشريحة 6"
|
|
|
|
|
|
|
|
|
|
|
|
|
526 |
|
527 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:348
|
528 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:370
|
529 |
+
msgid "N/A"
|
530 |
+
msgstr "N/A"
|
531 |
|
532 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:366
|
533 |
+
msgid "Slot 7"
|
534 |
+
msgstr "الشريحة 7"
|
|
|
535 |
|
536 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:15
|
537 |
+
msgid "WP Statisitcs Removal"
|
538 |
+
msgstr "إزالة احصائيات ووردبريس"
|
539 |
|
540 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:20
|
541 |
+
msgid "Uninstalling WP Statistics will not remove the data and settings, you can use this option to remove the WP Statistics data from your install before uninstalling the plugin."
|
542 |
+
msgstr "إزالة احصائيات ووردبريس لن تقوم بإزالة البيانات والإعدادات، يمكنك استخدام هذا الخيار لإزالة البيانات الخاصة بك قبل إلغاء تثبيت البرنامج المساعد."
|
|
|
|
|
|
|
|
|
|
|
|
|
543 |
|
544 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:23
|
545 |
+
msgid "Once you submit this form the settings will be deleted during the page load, however WP Statistics will still show up in your Admin menu until another page load is executed."
|
546 |
+
msgstr "بمجرد التقدم في هذا الخيار سيتم حذف الإعدادات أثناء تحميل صفحة هذا النموذج، ولكن سوف تزال تظهر احصائيات ووردبريس في قائمة المشرف الخاص بك حتى يتم تحميل الصفحة مرة أخرى."
|
547 |
|
548 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:29
|
549 |
+
msgid "Remove data and settings"
|
550 |
+
msgstr "إزالة البيانات والإعدادات"
|
551 |
|
552 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:34
|
553 |
+
msgid "Remove"
|
554 |
+
msgstr "إزالة"
|
555 |
|
556 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:35
|
557 |
+
msgid "Remove data and settings, this action cannot be undone."
|
558 |
+
msgstr "إزالة البيانات والإعدادات، لا يمكنك التراجع مستقبلاً."
|
559 |
|
560 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:100
|
561 |
+
msgid "General"
|
562 |
+
msgstr "عام"
|
563 |
|
564 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:101
|
565 |
+
msgid "Notifications"
|
566 |
+
msgstr "الإشعارات"
|
567 |
|
568 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:102
|
569 |
+
msgid "Dashboard/Overview"
|
570 |
+
msgstr "اللوحة/نظرة عامة"
|
571 |
|
572 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:103
|
573 |
+
msgid "Access/Exclusions"
|
574 |
+
msgstr "وصول/استثناءات"
|
|
|
|
|
|
|
|
|
575 |
|
576 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:105
|
577 |
+
msgid "browscap"
|
578 |
+
msgstr "browscap"
|
|
|
|
|
579 |
|
580 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:106
|
581 |
+
msgid "Maintenance"
|
582 |
+
msgstr "صيانة"
|
|
|
583 |
|
584 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:107
|
585 |
+
msgid "Removal"
|
586 |
+
msgstr "الإزالة"
|
|
|
587 |
|
588 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:150
|
589 |
+
msgid "Update"
|
590 |
+
msgstr "تحديث"
|
591 |
|
592 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/manual/manual.php:29
|
593 |
+
msgid "Manual not found: %s"
|
594 |
+
msgstr "الدليل لم يعثر على: %s"
|
|
|
|
|
|
|
595 |
|
596 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/manual/manual.php:39
|
597 |
+
msgid "Invalid file type selected: %s"
|
598 |
+
msgstr "نوع الملف المختار غير صالح: %s"
|
599 |
|
600 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:10
|
601 |
+
msgid "Once Weekly"
|
602 |
+
msgstr "مرة كل أسبوع"
|
603 |
|
604 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:17
|
605 |
+
msgid "Once Every 2 Weeks"
|
606 |
+
msgstr "مرة كل 2 أسابيع"
|
|
|
|
|
|
|
|
|
607 |
|
608 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:24
|
609 |
+
msgid "Once Every 4 Weeks"
|
610 |
+
msgstr "مرة كل 4 أسابيع"
|
611 |
|
612 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:14
|
613 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:284
|
614 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:321
|
615 |
+
msgid "Statistics"
|
616 |
+
msgstr "الاحصائيات"
|
|
|
|
|
617 |
|
618 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:15
|
619 |
+
msgid "Show site stats in sidebar."
|
620 |
+
msgstr "عرض احصائيات الموقع في الشريط الجانبي."
|
621 |
|
622 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:73
|
623 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:260
|
624 |
+
msgid "Week Visit"
|
625 |
+
msgstr "زيارات الأسبوع"
|
626 |
|
627 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:80
|
628 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:263
|
629 |
+
msgid "Month Visit"
|
630 |
+
msgstr "زيارات الشهر"
|
631 |
|
632 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:87
|
633 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:266
|
634 |
+
msgid "Years Visit"
|
635 |
+
msgstr "زيارات السنة"
|
636 |
|
637 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:108
|
638 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:275
|
639 |
+
msgid "Total Page Views"
|
640 |
+
msgstr "مجموع مشاهدات الصفحة"
|
641 |
|
642 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:116
|
643 |
+
msgid "Search Engine referred"
|
644 |
+
msgstr "محرك البحث المشار"
|
645 |
|
646 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:123
|
647 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:298
|
648 |
+
msgid "Total Posts"
|
649 |
+
msgstr "إجمالي المشاركات"
|
650 |
|
651 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:130
|
652 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:301
|
653 |
+
msgid "Total Pages"
|
654 |
+
msgstr "إجمالي الصفحات"
|
655 |
|
656 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:137
|
657 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:304
|
658 |
+
msgid "Total Comments"
|
659 |
+
msgstr "إجمالي التعليقات"
|
660 |
|
661 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:144
|
662 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:307
|
663 |
+
msgid "Total Spams"
|
664 |
+
msgstr "إجمالي السبام"
|
665 |
|
666 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:151
|
667 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:310
|
668 |
+
msgid "Total Users"
|
669 |
+
msgstr "عدد الاعضاء"
|
670 |
|
671 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:158
|
672 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:313
|
673 |
+
msgid "Average Posts"
|
674 |
+
msgstr "متوسط المشاركات"
|
675 |
|
676 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:165
|
677 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:316
|
678 |
+
msgid "Average Comments"
|
679 |
+
msgstr "متوسط التعليقات"
|
680 |
|
681 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:172
|
682 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:319
|
683 |
+
msgid "Average Users"
|
684 |
+
msgstr "متوسط الاعضاء"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
685 |
|
686 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:179
|
687 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:322
|
688 |
+
msgid "Last Post Date"
|
689 |
+
msgstr "تاريخ آخر مشاركة"
|
|
|
|
|
|
|
|
|
690 |
|
691 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:238
|
692 |
+
msgid "Name"
|
693 |
+
msgstr "الأسم"
|
|
|
|
|
|
|
|
|
|
|
694 |
|
695 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:242
|
696 |
+
msgid "Items"
|
697 |
+
msgstr "البنود"
|
698 |
|
699 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:254
|
700 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:489
|
701 |
+
msgid "Yesterday visit"
|
702 |
+
msgstr "زيارات الأمس"
|
703 |
|
704 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:278
|
705 |
+
msgid "Search Engine Referred"
|
706 |
+
msgstr "محرك بحث المشارين"
|
707 |
|
708 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:281
|
709 |
+
msgid "Select type of search engine"
|
710 |
+
msgstr "حدد نوع من محرك البحث"
|
711 |
|
712 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
|
713 |
+
msgid "ERROR: WP Statistics has detected an unsupported version of PHP, WP Statistics will not function without PHP Version "
|
714 |
+
msgstr "خطأ: كشف احصائيات ووردبريس أن إصدار PHP لديك غير معتمد، و احصائيات ووردبريس لن تعمل دون PHP النسخة"
|
715 |
|
716 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
|
717 |
+
msgid " or higher!"
|
718 |
+
msgstr "أو أعلى!"
|
719 |
|
720 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
|
721 |
+
msgid "Your current PHP version is"
|
722 |
+
msgstr "نسخة PHP الحالي هو"
|
723 |
|
724 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:42
|
725 |
+
msgid "WP Statistics has been removed, please disable and delete it."
|
726 |
+
msgstr "تمت إزالة احصائيات ووردبريس، يرجى التعطيل والحذف."
|
727 |
|
728 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:53
|
729 |
+
msgid "WP Statistics"
|
730 |
+
msgstr "احصائيات ووردبريس"
|
731 |
|
732 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:54
|
733 |
+
msgid "Complete statistics for your WordPress site."
|
734 |
+
msgstr "إحصاءات كاملة لموقع ووردبريس الخاص بك."
|
735 |
|
736 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:97
|
737 |
+
msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
|
738 |
+
msgstr "لم يتم تمكين تتبع المستخدم عبر الإنترنت في احصائيات ووردبريس، يرجى الذهاب إلى %s وتمكينه."
|
739 |
|
740 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:97
|
741 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:100
|
742 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:103
|
743 |
+
msgid "setting page"
|
744 |
+
msgstr "صفحة الإعدادات"
|
|
|
|
|
745 |
|
746 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:100
|
747 |
+
msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
|
748 |
+
msgstr "تتبع النقرات في احصائيات ووردبريس لم يتم تمكينه، يرجى الذهاب إلى %s وتمكينه."
|
749 |
|
750 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:103
|
751 |
+
msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
|
752 |
+
msgstr "لم يتم تمكين تتبع الزائر في احصائيات ووردبريس، يرجى الذهاب إلى %s وتمكينه."
|
753 |
|
754 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:106
|
755 |
+
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
756 |
+
msgstr "مجموعة GeoIP غير نشطه، يرجى الذهاب إلى %s وتمكين هذه الميزة."
|
757 |
|
758 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:106
|
759 |
+
msgid "Setting page > GeoIP"
|
760 |
+
msgstr "صفحة الإعدادات > GeoIP"
|
|
|
|
|
|
|
|
|
761 |
|
762 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:191
|
763 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:303
|
764 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:375
|
765 |
+
msgid "Settings"
|
766 |
+
msgstr "الإعدادات"
|
767 |
|
768 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:203
|
769 |
+
msgid "Click here to visit the plugin on WordPress.org"
|
770 |
+
msgstr "انقر هنا لزيارة صفحة الإضافة على WordPress.org"
|
771 |
|
772 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:203
|
773 |
+
msgid "Visit WordPress.org page"
|
774 |
+
msgstr "زيارة صفحة WordPress.org"
|
775 |
|
776 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:206
|
777 |
+
msgid "Click here to rate and review this plugin on WordPress.org"
|
778 |
+
msgstr "أنقر هنا لمراجهة وتقييم الإضافة على WordPress.org"
|
|
|
|
|
779 |
|
780 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:206
|
781 |
+
msgid "Rate this plugin"
|
782 |
+
msgstr "ضع تقييمك لهذه الاضافة"
|
783 |
|
784 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:250
|
785 |
+
msgid "WP Statistics - Hits"
|
786 |
+
msgstr "احصائيات ووردبريس - الزيارات"
|
787 |
|
788 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:287
|
789 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:324
|
790 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:362
|
791 |
+
msgid "Overview"
|
792 |
+
msgstr "نظرة عامة"
|
793 |
|
794 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:294
|
795 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:367
|
796 |
+
msgid "Online"
|
797 |
+
msgstr "المتواجدون"
|
798 |
|
799 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:296
|
800 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:369
|
801 |
+
msgid "Referrers"
|
802 |
+
msgstr "الدعوات"
|
803 |
|
804 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:297
|
805 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:370
|
806 |
+
msgid "Searches"
|
807 |
+
msgstr "عمليات البحث"
|
808 |
|
809 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:298
|
810 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:371
|
811 |
+
msgid "Search Words"
|
812 |
+
msgstr "كلمات البحث"
|
813 |
|
814 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:299
|
815 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:372
|
816 |
+
msgid "Top Visitors Today"
|
817 |
+
msgstr "أعلى زوار اليوم"
|
818 |
|
819 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:302
|
820 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:374
|
821 |
+
msgid "Optimization"
|
822 |
+
msgstr "التحسين"
|
823 |
|
824 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:307
|
825 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:338
|
826 |
+
msgid "Manual"
|
827 |
+
msgstr "الدليل"
|
828 |
|
829 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:353
|
830 |
+
msgid "Site"
|
831 |
+
msgstr "موقع"
|
832 |
|
833 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:354
|
834 |
+
msgid "Options"
|
835 |
+
msgstr "خيارات"
|
836 |
|
837 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:471
|
838 |
+
msgid "Today visitor"
|
839 |
+
msgstr "زوار اليوم"
|
840 |
|
841 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:477
|
842 |
+
msgid "Today visit"
|
843 |
+
msgstr "زيارات اليوم"
|
844 |
|
845 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:483
|
846 |
+
msgid "Yesterday visitor"
|
847 |
+
msgstr "زيارات الأمس"
|
848 |
|
849 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:495
|
850 |
+
msgid "View Stats"
|
851 |
+
msgstr "عرض الإحصائيات"
|
852 |
|
853 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:519
|
854 |
+
msgid "Download ODF file"
|
855 |
+
msgstr "تحميل ملف ODF"
|
|
|
|
|
|
|
|
|
856 |
|
857 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:520
|
858 |
+
msgid "Download HTML file"
|
859 |
+
msgstr "تحميل ملف HTML"
|
860 |
|
861 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:524
|
862 |
+
msgid "Manual file not found."
|
863 |
+
msgstr "لم يتم العثور على ملف الدليل."
|
|
|
|
|
864 |
|
865 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:591
|
866 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:702
|
867 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:736
|
868 |
+
msgid "You do not have sufficient permissions to access this page."
|
869 |
+
msgstr "ليس لديك الصلاحيات الكافية لدخول هذه الصفحة."
|
870 |
|
871 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:604
|
872 |
+
msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
|
873 |
+
msgstr "جداول البرنامج المساعد لا وجود لها في قاعدة البيانات! يرجى إعادة تشغيل %s التثبيت الروتيني %s."
|
|
|
874 |
|
875 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-install.php:250
|
876 |
+
msgid "WP Statistics %s installed on"
|
877 |
+
msgstr "احصائيات ووردبريس %s مثبتة على"
|
|
|
|
|
|
|
|
|
|
|
|
|
878 |
|
879 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:34
|
880 |
+
msgid "Error downloading GeoIP database from: %s - %s"
|
881 |
+
msgstr "خطأ تحميل قاعدة بيانات GeoIP من: %s - %s"
|
882 |
|
883 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:45
|
884 |
+
msgid "Error could not open downloaded GeoIP database for reading: %s"
|
885 |
+
msgstr "خطأ لا يمكن فتح قاعدة البيانات GeoIP التي تم تحميلها للقراءة: %s"
|
886 |
|
887 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:52
|
888 |
+
msgid "Error could not open destination GeoIP database for writing %s"
|
889 |
+
msgstr "خطأ لا يمكن فتح قاعدة البيانات GeoIP لجهة الكتابة %s"
|
890 |
|
891 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:68
|
892 |
+
msgid "GeoIP Database updated successfully!"
|
893 |
+
msgstr "تم تحديث قاعدة بيانات GeoIP بنجاح!"
|
894 |
|
895 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:93
|
896 |
+
msgid "GeoIP update on"
|
897 |
+
msgstr "تحديث GeoIP على"
|
898 |
|
899 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:160
|
900 |
+
msgid "Error downloading browscap database from: %s - %s"
|
901 |
+
msgstr "خطأ في قاعدة بيانات browscap تحميل من: %s - %s"
|
902 |
|
903 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:262
|
904 |
+
msgid "browscap database updated successfully!"
|
905 |
+
msgstr "قاعدة بيانات browscap تم تحديثها بنجاح!"
|
906 |
|
907 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:273
|
908 |
+
msgid "browscap database updated failed! Cache file too large, reverting to previous browscap.ini."
|
909 |
+
msgstr "تحديث قاعدة بيانات browscap فشل! ملف الكاش كبير جدا، تم الرجوع إلى browscap.ini السابق."
|
910 |
|
911 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:281
|
912 |
+
msgid "browscap database updated failed! New browscap.ini is mis-identifing user agents as crawlers, reverting to previous browscap.ini."
|
913 |
+
msgstr "تحديث قاعدة بيانات browscap فشل! لم تتم تحديد هوية browscap.ini الجديدة لكلا من المستخدم والزواحف، وتم الرجوع إلى browscap.ini السابق."
|
914 |
|
915 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:303
|
916 |
+
msgid "browscap already at current version!"
|
917 |
+
msgstr "browscap بالفعل في النسخة الحالية!"
|
|
|
|
|
|
|
|
|
918 |
|
919 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:316
|
920 |
+
msgid "Browscap.ini update on"
|
921 |
+
msgstr "تحديث Browscap.ini على"
|
922 |
|
923 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:55
|
924 |
+
msgid "Quick Stats"
|
925 |
+
msgstr "إحصائيات سريعة"
|
926 |
|
927 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:56
|
928 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:54
|
929 |
+
msgid "Top 10 Browsers"
|
930 |
+
msgstr "أفضل 10 متصفحات"
|
931 |
|
932 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:57
|
933 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:11
|
934 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:27
|
935 |
+
msgid "Top 10 Countries"
|
936 |
+
msgstr "أعلى 10 دول"
|
937 |
|
938 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:58
|
939 |
+
msgid "Today's Visitor Map"
|
940 |
+
msgstr "خريطة زوار اليوم"
|
941 |
|
942 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:59
|
943 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:46
|
944 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:8
|
945 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:8
|
946 |
+
msgid "Hit Statistics"
|
947 |
+
msgstr "احصائية النقرات"
|
948 |
|
949 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:60
|
950 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:11
|
951 |
+
msgid "Top 10 Pages"
|
952 |
+
msgstr "أفضل 10 صفحات"
|
|
|
|
|
|
|
|
|
953 |
|
954 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:61
|
955 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:30
|
956 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:8
|
957 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:39
|
958 |
+
msgid "Recent Visitors"
|
959 |
+
msgstr "الزيارات الأخيرة"
|
960 |
|
961 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:62
|
962 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:27
|
963 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:42
|
964 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:13
|
965 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:26
|
966 |
+
msgid "Top Referring Sites"
|
967 |
+
msgstr "أعلى المواقع اشارة"
|
968 |
|
969 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:63
|
970 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:7
|
971 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:74
|
972 |
+
msgid "Search Engine Referrals"
|
973 |
+
msgstr "إحالات محرك البحث"
|
974 |
|
975 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:64
|
976 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:8
|
977 |
+
msgid "Summary"
|
978 |
+
msgstr "ملخص"
|
|
|
|
|
|
|
979 |
|
980 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:65
|
981 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:30
|
982 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:8
|
983 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:37
|
984 |
+
msgid "Latest Search Words"
|
985 |
+
msgstr "أحدث كلمات البحث"
|
986 |
|
987 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:66
|
988 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:8
|
989 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:35
|
990 |
+
msgid "Top 10 Visitors Today"
|
991 |
+
msgstr "أفضل 10 زوار اليوم"
|
992 |
|
993 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:97
|
994 |
+
msgid "Please reload the dashboard to display the content of this widget."
|
995 |
+
msgstr "يرجى تحميل لوحة المعلومات لعرض محتوى هذه القطعة."
|
996 |
|
997 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:138
|
998 |
+
msgid "WP Statistics Overview"
|
999 |
+
msgstr "نظرة عامة لإحصائيات ووردبريس"
|
1000 |
|
1001 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:63
|
1002 |
+
msgid "This post is not yet published."
|
1003 |
+
msgstr "لم يتم نشر هذا المقال حتى الآن."
|
1004 |
|
1005 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:26
|
1006 |
+
msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
|
1007 |
+
msgstr "غير قادر على تحميل قاعدة البيانات GeoIP، تأكد من أنك قمت بتنزيلها في صفحة الإعدادات."
|
1008 |
|
1009 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:50
|
1010 |
+
msgid "Updated %s GeoIP records in the visitors database."
|
1011 |
+
msgstr "تحديث السجلات %s GeoIP في قاعدة بيانات الزوار."
|
1012 |
|
1013 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:21
|
1014 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:39
|
1015 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:50
|
1016 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:83
|
1017 |
+
msgid "%s data older than %s days purged successfully."
|
1018 |
+
msgstr "البيانات %s مضى عليها أكثر من %s أيام طهرت فيه بنجاح."
|
1019 |
|
1020 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:23
|
1021 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:41
|
1022 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:52
|
1023 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:85
|
1024 |
+
msgid "No records found to purge from %s!"
|
1025 |
+
msgstr "لا توجد سجلات للتخلص من %s!"
|
1026 |
|
1027 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:98
|
1028 |
+
msgid "Database pruned on"
|
1029 |
+
msgstr "قاعدة بيانات مجردة على"
|
1030 |
|
1031 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:103
|
1032 |
+
msgid "Please select a value over 30 days."
|
1033 |
+
msgstr "يرجى تحديد قيمة أكثر من 30 يوما."
|
1034 |
|
1035 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:8
|
1036 |
+
msgid "Browser Statistics"
|
1037 |
+
msgstr "إحصائيات المتصفح"
|
1038 |
|
1039 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:14
|
1040 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:98
|
1041 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:233
|
1042 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:74
|
1043 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
|
1044 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:61
|
1045 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:60
|
1046 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:17
|
1047 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:47
|
1048 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:29
|
1049 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:19
|
1050 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:137
|
1051 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:38
|
1052 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:7
|
1053 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:6
|
1054 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:9
|
1055 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:8
|
1056 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:7
|
1057 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:8
|
1058 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:9
|
1059 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:6
|
1060 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:11
|
1061 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:6
|
1062 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:7
|
1063 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:7
|
1064 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:6
|
1065 |
+
msgid "Click to toggle"
|
1066 |
+
msgstr "انقر للتبديل"
|
1067 |
|
1068 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:15
|
1069 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:7
|
1070 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:25
|
1071 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:288
|
1072 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:363
|
1073 |
+
msgid "Browsers"
|
1074 |
+
msgstr "المتصفحات"
|
1075 |
|
1076 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:42
|
1077 |
+
msgid "Browsers by type"
|
1078 |
+
msgstr "حسب نوع المتصفحات"
|
1079 |
|
1080 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:99
|
1081 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:34
|
1082 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:302
|
1083 |
+
msgid "Platform"
|
1084 |
+
msgstr "المنصة"
|
1085 |
|
1086 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:126
|
1087 |
+
msgid "Browsers by platform"
|
1088 |
+
msgstr "حسب نوع المنصة"
|
|
|
|
|
1089 |
|
1090 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:234
|
1091 |
+
msgid "%s Version"
|
1092 |
+
msgstr "الإصدار %s"
|
1093 |
|
1094 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:8
|
1095 |
+
msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
|
1096 |
+
msgstr "تنبيه: لم يتم تعيين الاستثناءات حاليا ليتم تسجيلها، قد لا تستطيع عكس نتائج الإحصائيات الحالية أدناه!"
|
1097 |
|
1098 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:54
|
1099 |
+
msgid "Exclusions Statistics"
|
1100 |
+
msgstr "استثناءات الاحصائيات"
|
1101 |
|
1102 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:57
|
1103 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:12
|
1104 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:33
|
1105 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:15
|
1106 |
+
msgid "10 Days"
|
1107 |
+
msgstr "10 أيام"
|
1108 |
|
1109 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:58
|
1110 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:13
|
1111 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:34
|
1112 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:16
|
1113 |
+
msgid "20 Days"
|
1114 |
+
msgstr "20 يوم"
|
1115 |
|
1116 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:59
|
1117 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:14
|
1118 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:35
|
1119 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:17
|
1120 |
+
msgid "30 Days"
|
1121 |
+
msgstr "30 يو م"
|
1122 |
|
1123 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:60
|
1124 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:15
|
1125 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:36
|
1126 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:18
|
1127 |
+
msgid "2 Months"
|
1128 |
+
msgstr "شهرين"
|
1129 |
|
1130 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:61
|
1131 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:16
|
1132 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:37
|
1133 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:19
|
1134 |
+
msgid "3 Months"
|
1135 |
+
msgstr "3 أشهر"
|
1136 |
|
1137 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:62
|
1138 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:17
|
1139 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:38
|
1140 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:20
|
1141 |
+
msgid "6 Months"
|
1142 |
+
msgstr "6 أشهر"
|
1143 |
|
1144 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:63
|
1145 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:18
|
1146 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:39
|
1147 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
|
1148 |
+
msgid "9 Months"
|
1149 |
+
msgstr "9 أشهر"
|
1150 |
|
1151 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:64
|
1152 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:19
|
1153 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:40
|
1154 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
|
1155 |
+
msgid "1 Year"
|
1156 |
+
msgstr "سنة"
|
|
|
|
|
1157 |
|
1158 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:68
|
1159 |
+
msgid "Total Exclusions: %s"
|
1160 |
+
msgstr "مجموع الاستثناءات: %s"
|
|
|
|
|
|
|
|
|
|
|
1161 |
|
1162 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:75
|
1163 |
+
msgid "Exclusions Statistical Chart"
|
1164 |
+
msgstr "الرسم البياني لإحصائيات الاستثناءات"
|
|
|
|
|
|
|
|
|
1165 |
|
1166 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:97
|
1167 |
+
msgid "Excluded hits in the last"
|
1168 |
+
msgstr "استبعاد النقرات في الأخير"
|
1169 |
|
1170 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:97
|
1171 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:60
|
1172 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:71
|
1173 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:51
|
1174 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:55
|
1175 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:151
|
1176 |
+
msgid "days"
|
1177 |
+
msgstr "أيام"
|
1178 |
|
1179 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:118
|
1180 |
+
msgid "Number of excluded hits"
|
1181 |
+
msgstr "عدد الزيارات المستبعدة"
|
|
|
|
|
1182 |
|
1183 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:27
|
1184 |
+
msgid "Hits Statistics Chart"
|
1185 |
+
msgstr "الرسم البياني لاحصائيات النقرات"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1186 |
|
1187 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:60
|
1188 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:51
|
1189 |
+
msgid "Hits in the last"
|
1190 |
+
msgstr "آخر النقرات"
|
1191 |
|
1192 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:81
|
1193 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:72
|
1194 |
+
msgid "Number of visits and visitors"
|
1195 |
+
msgstr "عدد الزيارات والزوار"
|
|
|
1196 |
|
1197 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:95
|
1198 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:86
|
1199 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:30
|
1200 |
+
msgid "Visit"
|
1201 |
+
msgstr "زيارة"
|
1202 |
|
1203 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:95
|
1204 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:86
|
1205 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:29
|
1206 |
+
msgid "Visitor"
|
1207 |
+
msgstr "زائر"
|
1208 |
|
1209 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:62
|
1210 |
+
msgid "Latest Search Word Statistics"
|
1211 |
+
msgstr "أحصائيات أحدث كلمات البحث"
|
1212 |
|
1213 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:97
|
1214 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:97
|
1215 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:48
|
1216 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:84
|
1217 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:71
|
1218 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:30
|
1219 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:32
|
1220 |
+
msgid "#hash#"
|
1221 |
+
msgstr "#hash#"
|
1222 |
|
1223 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:102
|
1224 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:102
|
1225 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:53
|
1226 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:71
|
1227 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:35
|
1228 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:39
|
1229 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:33
|
1230 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:113
|
1231 |
+
msgid "Map"
|
1232 |
+
msgstr "خريطة"
|
1233 |
|
1234 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:139
|
1235 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:135
|
1236 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:105
|
1237 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
|
1238 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
|
1239 |
+
msgid "Page"
|
1240 |
+
msgstr "صفحة"
|
1241 |
|
1242 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:139
|
1243 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:135
|
1244 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:105
|
1245 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
|
1246 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
|
1247 |
+
msgid "From"
|
1248 |
+
msgstr "من"
|
|
|
|
|
1249 |
|
1250 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:32
|
1251 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:29
|
1252 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:135
|
1253 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:294
|
1254 |
+
msgid "All"
|
1255 |
+
msgstr "الكل"
|
1256 |
|
1257 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:62
|
1258 |
+
msgid "Search for"
|
1259 |
+
msgstr "البحث عن"
|
|
|
|
|
|
|
|
|
1260 |
|
1261 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:64
|
1262 |
+
msgid "Recent Visitor Statistics"
|
1263 |
+
msgstr "آخر إحصائيات الزوار"
|
1264 |
|
1265 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:11
|
1266 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:18
|
1267 |
+
msgid "Online Users"
|
1268 |
+
msgstr "المستخدمين على الانترنت"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1269 |
|
1270 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:73
|
1271 |
+
msgid "Online for "
|
1272 |
+
msgstr "متصل لـ"
|
1273 |
|
1274 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:29
|
1275 |
+
msgid "Page Trend for Post ID"
|
1276 |
+
msgstr "صفحة الأكثر رواجاً بمعرف المشاركة"
|
1277 |
|
1278 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:48
|
1279 |
+
msgid "Page Trend"
|
1280 |
+
msgstr "الصفحة الأكثر رواجاً"
|
1281 |
|
1282 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:11
|
1283 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:30
|
1284 |
+
msgid "Search Engine Referral Statistics"
|
1285 |
+
msgstr "إحصائيات مرجعية محرك البحث"
|
1286 |
|
1287 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:71
|
1288 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:55
|
1289 |
+
msgid "Search engine referrals in the last"
|
1290 |
+
msgstr "إحالات محرك البحث في الأخير"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1291 |
|
1292 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:92
|
1293 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:76
|
1294 |
+
msgid "Number of referrals"
|
1295 |
+
msgstr "عدد الإحالات"
|
1296 |
|
1297 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:106
|
1298 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:90
|
1299 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:64
|
1300 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:104
|
1301 |
+
msgid "Total"
|
1302 |
+
msgstr "المجموع"
|
1303 |
|
1304 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:11
|
1305 |
+
msgid "Top Countries"
|
1306 |
+
msgstr "أفضل الدول"
|
|
|
|
|
|
|
|
|
|
|
1307 |
|
1308 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:20
|
1309 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:30
|
1310 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:27
|
1311 |
+
msgid "Rank"
|
1312 |
+
msgstr "الترتيب"
|
|
|
|
|
|
|
|
|
1313 |
|
1314 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:21
|
1315 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:31
|
1316 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:29
|
1317 |
+
msgid "Flag"
|
1318 |
+
msgstr "العلم"
|
1319 |
|
1320 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:22
|
1321 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:32
|
1322 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:30
|
1323 |
+
msgid "Country"
|
1324 |
+
msgstr "الدولة"
|
1325 |
|
1326 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:23
|
1327 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:33
|
1328 |
+
msgid "Visitor Count"
|
1329 |
+
msgstr "عدد الزوار"
|
1330 |
|
1331 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:13
|
1332 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:138
|
1333 |
+
msgid "Top Pages"
|
1334 |
+
msgstr "أفضل الصفحات"
|
1335 |
|
1336 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:20
|
1337 |
+
msgid "Top 5 Pages Trends"
|
1338 |
+
msgstr "الصفحات الـ5 الأكثر رواجاً"
|
1339 |
|
1340 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:49
|
1341 |
+
msgid "Top 5 Page Trending Stats"
|
1342 |
+
msgstr "احصائيات الصفحات الـ5 الأكثر رواجاً"
|
1343 |
|
1344 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:70
|
1345 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/page.php:58
|
1346 |
+
msgid "Number of Hits"
|
1347 |
+
msgstr "عدد الزيارات"
|
1348 |
|
1349 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:166
|
1350 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:32
|
1351 |
+
msgid "No page title found"
|
1352 |
+
msgstr "لم يتم العثور على عنوان الصفحة"
|
1353 |
|
1354 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:169
|
1355 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:35
|
1356 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:37
|
1357 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:122
|
1358 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:127
|
1359 |
+
msgid "Visits"
|
1360 |
+
msgstr "الزيارات"
|
1361 |
|
1362 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:4
|
1363 |
+
msgid "To be added soon"
|
1364 |
+
msgstr "تضاف قريبا"
|
1365 |
|
1366 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:40
|
1367 |
+
msgid "Referring sites from"
|
1368 |
+
msgstr "مواقع اشارة من"
|
1369 |
|
1370 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:110
|
1371 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:30
|
1372 |
+
msgid "References"
|
1373 |
+
msgstr "المراجع"
|
1374 |
|
1375 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-visitors.php:12
|
1376 |
+
msgid "Top 100 Visitors Today"
|
1377 |
+
msgstr "أفضل 100 زائر اليوم"
|
1378 |
|
1379 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:8
|
1380 |
+
msgid "About WP Statistics Version %s"
|
1381 |
+
msgstr "حول إصدار احصائيات ووردبريس %s"
|
1382 |
|
1383 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:25
|
1384 |
+
msgid "Website"
|
1385 |
+
msgstr "الموقع"
|
1386 |
|
1387 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:26
|
1388 |
+
msgid "Rate and Review"
|
1389 |
+
msgstr "التقييم والمراجعة"
|
1390 |
|
1391 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:30
|
1392 |
+
msgid "More Information"
|
1393 |
+
msgstr "مزيد من المعلومات"
|
1394 |
|
1395 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:39
|
1396 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:12
|
1397 |
+
msgid "This product includes GeoLite2 data created by MaxMind, available from %s."
|
1398 |
+
msgstr "يتضمن هذا المنتج البيانات GeoLite2 التي أنشأتها MaxMind، المتاحة من %s."
|
1399 |
+
|
1400 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:7
|
1401 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:11
|
1402 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:8
|
1403 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:11
|
1404 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:8
|
1405 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:13
|
1406 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:7
|
1407 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:8
|
1408 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:8
|
1409 |
+
msgid "More"
|
1410 |
+
msgstr "المزيد"
|
1411 |
|
1412 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:47
|
1413 |
+
msgid "Other"
|
1414 |
+
msgstr "أخرى"
|
1415 |
|
1416 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:9
|
1417 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:9
|
1418 |
+
msgid "Today Visitors Map"
|
1419 |
+
msgstr "خريطة زوار اليوم"
|
1420 |
|
1421 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:31
|
1422 |
+
msgid "Address"
|
1423 |
+
msgstr "العنوان"
|
1424 |
|
1425 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:23
|
1426 |
+
msgid "User(s) Online"
|
1427 |
+
msgstr "المتصلين على الانترنت"
|
1428 |
|
1429 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:34
|
1430 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:79
|
1431 |
+
msgid "Today"
|
1432 |
+
msgstr "اليوم"
|
1433 |
|
1434 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:40
|
1435 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:80
|
1436 |
+
msgid "Yesterday"
|
1437 |
+
msgstr "الأمس"
|
1438 |
|
1439 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:46
|
1440 |
+
msgid "Week"
|
1441 |
+
msgstr "أسبوع"
|
1442 |
|
1443 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:52
|
1444 |
+
msgid "Month"
|
1445 |
+
msgstr "الشهر"
|
1446 |
|
1447 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:58
|
1448 |
+
msgid "Year"
|
1449 |
+
msgstr "سنة"
|
1450 |
|
1451 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:98
|
1452 |
+
msgid "Daily Total"
|
1453 |
+
msgstr "المجموع اليومي"
|
1454 |
|
1455 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:117
|
1456 |
+
msgid "Current Time and Date"
|
1457 |
+
msgstr "التوقيت الحالي و التاريخ"
|
1458 |
|
1459 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:117
|
1460 |
+
msgid "(Adjustment)"
|
1461 |
+
msgstr "(التوافق)"
|
1462 |
|
1463 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:121
|
1464 |
+
msgid "Date: %s"
|
1465 |
+
msgstr "التاريخ: %s"
|
1466 |
|
1467 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:125
|
1468 |
+
msgid "Time: %s"
|
1469 |
+
msgstr "التوقيت: %s"
|
1470 |
|
1471 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:28
|
1472 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:215
|
1473 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:293
|
1474 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:366
|
1475 |
+
msgid "Hits"
|
1476 |
+
msgstr "نقرات"
|
1477 |
|
1478 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:31
|
1479 |
+
msgid "IP"
|
1480 |
+
msgstr "IP"
|
1481 |
|
1482 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:33
|
1483 |
+
msgid "Agent"
|
1484 |
+
msgstr "وكيل"
|
1485 |
|
1486 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:35
|
1487 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:291
|
1488 |
+
msgid "Version"
|
1489 |
+
msgstr "الإصدار"
|
1490 |
|
1491 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:5
|
1492 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:5
|
1493 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:5
|
1494 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:5
|
1495 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:6
|
1496 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:6
|
1497 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/manual/manual.php:5
|
1498 |
+
msgid "Access denied!"
|
1499 |
+
msgstr "تم رفض الوصول!"
|
1500 |
|
1501 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:14
|
1502 |
+
msgid "%s agent data deleted successfully."
|
1503 |
+
msgstr "%s تم حذف بيانات الوكيل بنجاح."
|
|
|
|
|
|
|
|
|
1504 |
|
1505 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:17
|
1506 |
+
msgid "No agent data found to remove!"
|
1507 |
+
msgstr "لا توجد بيانات وكيل لإزالتها!"
|
1508 |
|
1509 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:21
|
1510 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:21
|
1511 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:42
|
1512 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:57
|
1513 |
+
msgid "Please select the desired items."
|
1514 |
+
msgstr "يرجى تحديد العناصر المطلوبة."
|
1515 |
|
1516 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:14
|
1517 |
+
msgid "%s platform data deleted successfully."
|
1518 |
+
msgstr "%s تم حذف بيانات المنصة بنجاح."
|
1519 |
|
1520 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:17
|
1521 |
+
msgid "No platform data found to remove!"
|
1522 |
+
msgstr "لا توجد بيانات منصة لإزالتها!"
|
|
|
1523 |
|
1524 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:53
|
1525 |
+
msgid "%s table data deleted successfully."
|
1526 |
+
msgstr "%s تم حذف بيانات الجدول بنجاح."
|
|
|
1527 |
|
1528 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:57
|
1529 |
+
msgid "Error, %s not emptied!"
|
1530 |
+
msgstr "خطأ, %s لم يتم التفريغ!"
|
|
|
|
|
|
|
|
|
1531 |
|
1532 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:5
|
1533 |
+
msgid "Database Setup"
|
1534 |
+
msgstr "إعداد قاعدة البيانات"
|
1535 |
|
1536 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:10
|
1537 |
+
msgid "Re-run Install"
|
1538 |
+
msgstr "إعادة تشغيل التثبيت"
|
|
|
|
|
1539 |
|
1540 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:14
|
1541 |
+
msgid "Install Now!"
|
1542 |
+
msgstr "تثبيت الآن!"
|
|
|
|
|
|
|
1543 |
|
1544 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:15
|
1545 |
+
msgid "If for some reason your installation of WP Statistics is missing the database tables or other core items, this will re-execute the install process."
|
1546 |
+
msgstr "لسبب ما اذا فقدت بيانات في قاعدة البيانات أو احد العناصر الأساسية, هذا الأمر سيعيد تنفيذ العملية مرة أخرى."
|
|
|
1547 |
|
1548 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:20
|
1549 |
+
msgid "Database Index"
|
1550 |
+
msgstr "فهرس قاعدة بيانات"
|
1551 |
|
1552 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1553 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1554 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:290
|
1555 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:364
|
1556 |
+
msgid "Countries"
|
1557 |
+
msgstr "الدول"
|
1558 |
|
1559 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:39
|
1560 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:25
|
1561 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:40
|
1562 |
+
msgid "Update Now!"
|
1563 |
+
msgstr "تحديث الآن!"
|
1564 |
|
1565 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:40
|
1566 |
+
msgid "Older installs of WP Statistics allow for duplicate entries in the visitors table in a corner case. Newer installs protect against this with a unique index on the table. To create the index on the older installs duplicate entries must be deleted first. Clicking \"Update Now\" will scan the vistitors table, delete duplicate entries and add the index."
|
1567 |
+
msgstr "المنصب القديم لإضافة احصائيات ووردبريس تسمح للإدخالات المتكررة في جداول الزوار في بعض الحالات. بتثبيت أحدث منتج يجب تواجد الفهرس في الجداول. لإنشاء فهرس لمنتج قديم يجب أن يتم حذف الإدخالات المكررة أولاً. أنقر على \"تحديث الآن\" وسيقوم تلقائيا بفحص جدول الزوار وحذف كافة الإدخالات المكررة وإضافة الفهرس."
|
1568 |
|
1569 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:41
|
1570 |
+
msgid "This operation could take a long time on installs with many rows in the visitors table."
|
1571 |
+
msgstr "هذه العملية يمكن أن تستغرق وقتا طويلا على تثبيت مع العديد من الصفوف في جدول الزوار."
|
1572 |
|
1573 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:46
|
1574 |
+
msgid "Older installs of WP Statistics allow for duplicate entries in the visitors table in a corner case. Newer installs protect against this with a unique index on the table."
|
1575 |
+
msgstr "الإصدارات القديمة من منتج احصائيات ووردبريس تسمح للإدخالات المكررة في جدول الزوار في بعض الحالات. عند تثبيت إصدارات أحدث من ذلك سيتم إضافة فهرس فريد على الجدول."
|
1576 |
|
1577 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:47
|
1578 |
+
msgid "Congratulations, your installation is already up to date, nothing to do."
|
1579 |
+
msgstr "تهانينا، التثبيت موجود بالفعل حتى الآن، لا شيء للقيام به."
|
1580 |
|
1581 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:7
|
1582 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:147
|
1583 |
+
msgid "Export"
|
1584 |
+
msgstr "تصدير"
|
1585 |
|
1586 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:12
|
1587 |
+
msgid "Export from"
|
1588 |
+
msgstr "التصدير من"
|
1589 |
|
1590 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:17
|
1591 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:35
|
1592 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:129
|
1593 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:170
|
1594 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:194
|
1595 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:134
|
1596 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:164
|
1597 |
+
msgid "Please select"
|
1598 |
+
msgstr "الرجاء تحديد"
|
1599 |
|
1600 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:24
|
1601 |
+
msgid "Select the table for the output file."
|
1602 |
+
msgstr "حدد الجدول لملف الإخراج."
|
1603 |
|
1604 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:30
|
1605 |
+
msgid "Export To"
|
1606 |
+
msgstr "التصدير لـ"
|
1607 |
|
1608 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:41
|
1609 |
+
msgid "Select the output file type."
|
1610 |
+
msgstr "حدد نوع ملف الإخراج."
|
1611 |
|
1612 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:47
|
1613 |
+
msgid "Include Header Row"
|
1614 |
+
msgstr "تضمين رأس الصف"
|
1615 |
|
1616 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:52
|
1617 |
+
msgid "Include a header row as the first line of the exported file."
|
1618 |
+
msgstr "تضمين صف الرأس كما في السطر الأول من الملف الذي تم تصديره."
|
1619 |
|
1620 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:53
|
1621 |
+
msgid "Start Now!"
|
1622 |
+
msgstr "ابدأ الآن!"
|
1623 |
|
1624 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:15
|
1625 |
+
msgid "Historical Values"
|
1626 |
+
msgstr "القيم التاريخية"
|
1627 |
|
1628 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:20
|
1629 |
+
msgid "Note: As you have just purged the database you must reload this page for these numbers to be correct."
|
1630 |
+
msgstr "ملاحظة: كلما قمت بتطهير قاعدة البيانات يجب تحميل هذه الصفحة لتكون الأرقام صحيحة."
|
1631 |
|
1632 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:26
|
1633 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:138
|
1634 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:143
|
1635 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:300
|
1636 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:373
|
1637 |
+
msgid "Visitors"
|
1638 |
+
msgstr "الزوار"
|
1639 |
|
1640 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:31
|
1641 |
+
msgid "Number of historical number of visitors to the site (current value is %s)."
|
1642 |
+
msgstr "العدد التاريخي لزوار الموقع (القيمة الحالية هي %s)."
|
1643 |
|
1644 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:42
|
1645 |
+
msgid "Number of historical number of visits to the site (current value is %s)."
|
1646 |
+
msgstr "العدد التاريخي لزيارات الموقع (القيمة الحالية هي %s)."
|
1647 |
|
1648 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:48
|
1649 |
+
msgid "Update now!"
|
1650 |
+
msgstr "تحديث الآن!"
|
1651 |
|
1652 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:10
|
1653 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:37
|
1654 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:63
|
1655 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:91
|
1656 |
+
msgid "Are you sure?"
|
1657 |
+
msgstr "هل أنت متأكد؟"
|
1658 |
|
1659 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:119
|
1660 |
+
msgid "Data"
|
1661 |
+
msgstr "المعطيات"
|
|
|
|
|
|
|
|
|
1662 |
|
1663 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:124
|
1664 |
+
msgid "Empty Table"
|
1665 |
+
msgstr "تفريغ الجدول"
|
1666 |
|
1667 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:137
|
1668 |
+
msgid "All data table will be lost."
|
1669 |
+
msgstr "سيتم فقدان جميع البيانات الجدول."
|
1670 |
|
1671 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:138
|
1672 |
+
msgid "Clear now!"
|
1673 |
+
msgstr "مسح الآن!"
|
1674 |
|
1675 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:146
|
1676 |
+
msgid "Purge records older than"
|
1677 |
+
msgstr "سجلات الضخ أقدم من"
|
1678 |
|
1679 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:152
|
1680 |
+
msgid "Deleted user statistics data older than the selected number of days. Minimum value is 30 days."
|
1681 |
+
msgstr "بيانات الاحصائيات المستخدم المحذوف أقدم من الرقم المحدد من الأيام. قيمة الحد الأدنى هو 30 يوما."
|
1682 |
|
1683 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:153
|
1684 |
+
msgid "Purge now!"
|
1685 |
+
msgstr "ضخ الآن!"
|
1686 |
|
1687 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:160
|
1688 |
+
msgid "Delete User Agent Types"
|
1689 |
+
msgstr "حذف أنواع وكيل العضو"
|
1690 |
|
1691 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:165
|
1692 |
+
msgid "Delete Agents"
|
1693 |
+
msgstr "حذف الوكلاء"
|
1694 |
|
1695 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:180
|
1696 |
+
msgid "All visitor data will be lost for this agent type."
|
1697 |
+
msgstr "سيتم فقد جميع البيانات الزائر لهذا النوع."
|
|
|
|
|
|
|
|
|
1698 |
|
1699 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:181
|
1700 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:205
|
1701 |
+
msgid "Delete now!"
|
1702 |
+
msgstr "حذف الآن!"
|
|
|
|
|
|
|
1703 |
|
1704 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:189
|
1705 |
+
msgid "Delete Platforms"
|
1706 |
+
msgstr "حذف المنصات"
|
1707 |
|
1708 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:204
|
1709 |
+
msgid "All visitor data will be lost for this platform type."
|
1710 |
+
msgstr "سيتم فقد جميع البيانات الزائر لنوع هذه المنصة."
|
1711 |
|
1712 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:17
|
1713 |
+
msgid "Resources"
|
1714 |
+
msgstr "الموارد"
|
1715 |
|
1716 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:22
|
1717 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:27
|
1718 |
+
msgid "Memory usage in PHP"
|
1719 |
+
msgstr "استخدام الذاكرة في PHP"
|
1720 |
|
1721 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:26
|
1722 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:37
|
1723 |
+
msgid "Byte"
|
1724 |
+
msgstr "بايت"
|
1725 |
|
1726 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:33
|
1727 |
+
msgid "Last Overview page memory usage"
|
1728 |
+
msgstr "آخر نظرة عامة على استخدام صفحة الذاكرة"
|
1729 |
|
1730 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:38
|
1731 |
+
msgid "Memory usage in the overview page"
|
1732 |
+
msgstr "استخدام الذاكرة في صفحة نظرة عامة"
|
1733 |
|
1734 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:44
|
1735 |
+
msgid "PHP Memory Limit"
|
1736 |
+
msgstr "حدود ذاكرة PHP"
|
1737 |
|
1738 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:49
|
1739 |
+
msgid "The memory limit a script is allowed to consume, set in php.ini."
|
1740 |
+
msgstr "حدود الذاكرة تسمح للبرنامج النصي باستهلاك حد معين، قم بتعيين ملف php.ini."
|
1741 |
+
|
1742 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:55
|
1743 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:66
|
1744 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:77
|
1745 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:88
|
1746 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:99
|
1747 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:110
|
1748 |
+
msgid "Number of rows in the %s table"
|
1749 |
+
msgstr "عدد الصفوف في جدول %s"
|
1750 |
|
1751 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:59
|
1752 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:70
|
1753 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:81
|
1754 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:92
|
1755 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:103
|
1756 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:114
|
1757 |
+
msgid "Row"
|
1758 |
+
msgstr "صف"
|
1759 |
|
1760 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:60
|
1761 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:71
|
1762 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:82
|
1763 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:93
|
1764 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:104
|
1765 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:115
|
1766 |
+
msgid "Number of rows"
|
1767 |
+
msgstr "عدد الصفوف"
|
1768 |
|
1769 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:120
|
1770 |
+
msgid "Version Info"
|
1771 |
+
msgstr "معلومات الإصدار"
|
1772 |
|
1773 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:125
|
1774 |
+
msgid "WP Statistics Version"
|
1775 |
+
msgstr "نسخة WP Statistics"
|
1776 |
|
1777 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:130
|
1778 |
+
msgid "The WP Statistics version you are running."
|
1779 |
+
msgstr "إصدار WP Statistics."
|
1780 |
|
1781 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:136
|
1782 |
+
msgid "PHP Version"
|
1783 |
+
msgstr "نسخة PHP"
|
1784 |
|
1785 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:141
|
1786 |
+
msgid "The PHP version you are running."
|
1787 |
+
msgstr "إصدار PHP."
|
1788 |
|
1789 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:147
|
1790 |
+
msgid "PHP Safe Mode"
|
1791 |
+
msgstr "الوضع الآمن PHP"
|
1792 |
|
1793 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:152
|
1794 |
+
msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
|
1795 |
+
msgstr "هل الوضع الآمن نشط. الكود GeoIP غير معتمد في الوضع الآمن."
|
1796 |
|
1797 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:158
|
1798 |
+
msgid "jQuery Version"
|
1799 |
+
msgstr "نسخة jQuery"
|
1800 |
|
1801 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:163
|
1802 |
+
msgid "The jQuery version you are running."
|
1803 |
+
msgstr "إصدار jQuery."
|
|
|
|
|
|
|
1804 |
|
1805 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:169
|
1806 |
+
msgid "cURL Version"
|
1807 |
+
msgstr "إصدار cURL"
|
1808 |
|
1809 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:173
|
1810 |
+
msgid "cURL not installed"
|
1811 |
+
msgstr "cURL غير مثبت"
|
1812 |
|
1813 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:174
|
1814 |
+
msgid "The PHP cURL Extension version you are running. cURL is required for the GeoIP code, if it is not installed GeoIP will be disabled."
|
1815 |
+
msgstr "نسخة الملحق PHP cURL تعمل. الملحق cURL مطلوب لعمل كود GeoIP, وإذا لم يتم تثبيته يتم تعطيل GeoIP."
|
1816 |
|
1817 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:180
|
1818 |
+
msgid "BC Math"
|
1819 |
+
msgstr "BC Math"
|
1820 |
|
1821 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:184
|
1822 |
+
msgid "Installed"
|
1823 |
+
msgstr "مثبت"
|
1824 |
|
1825 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:184
|
1826 |
+
msgid "Not installed"
|
1827 |
+
msgstr "غير مثبت"
|
1828 |
|
1829 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:185
|
1830 |
+
msgid "If the PHP BC Math Extension is installed. BC Math is no longer required for the GeoIP code and is listed here only for historical reasons."
|
1831 |
+
msgstr "هل تم تثبيت PHP BC Math Extension مسبقاً. الآن ملحق BC Math لم يعد مطلوبا لكود GeoIP ويتم سرده هنا فقط لأسباب تاريخية."
|
1832 |
|
1833 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:190
|
1834 |
+
msgid "File Info"
|
1835 |
+
msgstr "معلومات عن الملف"
|
1836 |
|
1837 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:195
|
1838 |
+
msgid "GeoIP Database"
|
1839 |
+
msgstr "قاعدة بيانات GeoIP"
|
1840 |
|
1841 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:204
|
1842 |
+
msgid "Database file does not exist."
|
1843 |
+
msgstr "لا وجود لملف قاعدة البيانات."
|
1844 |
|
1845 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:206
|
1846 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:225
|
1847 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:244
|
1848 |
+
msgid ", created on "
|
1849 |
+
msgstr "، التي تم إنشاؤها على"
|
1850 |
|
1851 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:208
|
1852 |
+
msgid "The file size and date of the GeoIP database."
|
1853 |
+
msgstr "حجم الملف والتاريخ من قاعدة بيانات GeoIP."
|
|
|
1854 |
|
1855 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:214
|
1856 |
+
msgid "browscap.ini File"
|
1857 |
+
msgstr "ملف browscap.ini"
|
1858 |
|
1859 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:223
|
1860 |
+
msgid "browscap.ini file does not exist."
|
1861 |
+
msgstr "لا وجود لملف browscap.ini."
|
1862 |
|
1863 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:227
|
1864 |
+
msgid "The file size and date of the browscap.ini file."
|
1865 |
+
msgstr "حجم الملف وتاريخ الملف browscap.ini."
|
1866 |
|
1867 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:233
|
1868 |
+
msgid "browscap Cache File"
|
1869 |
+
msgstr "browscap ملف ذاكرة التخزين المؤقت"
|
1870 |
|
1871 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:242
|
1872 |
+
msgid "browscap cache file does not exist."
|
1873 |
+
msgstr "لا وجود لملف ذاكرة التخزين المؤقت browscap."
|
1874 |
|
1875 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:246
|
1876 |
+
msgid "The file size and date of the browscap cache file."
|
1877 |
+
msgstr "حجم الملف وتاريخ الملف المؤقت browscap."
|
1878 |
|
1879 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:251
|
1880 |
+
msgid "Client Info"
|
1881 |
+
msgstr "معلومات العميل"
|
1882 |
|
1883 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:256
|
1884 |
+
msgid "Client IP"
|
1885 |
+
msgstr "IP العميل"
|
1886 |
|
1887 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:261
|
1888 |
+
msgid "The client IP address."
|
1889 |
+
msgstr "عنوان IP للعميل."
|
1890 |
|
1891 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:267
|
1892 |
+
msgid "User Agent"
|
1893 |
+
msgstr "وكيل المستخدم"
|
|
|
|
|
|
|
1894 |
|
1895 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:272
|
1896 |
+
msgid "The client user agent string."
|
1897 |
+
msgstr "سلسلة عامل المستخدم العميل."
|
1898 |
|
1899 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:278
|
1900 |
+
msgid "Browser"
|
1901 |
+
msgstr "المتصفح"
|
1902 |
|
1903 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:285
|
1904 |
+
msgid "The detected client browser."
|
1905 |
+
msgstr "مستكشف مستعرض العميل."
|
|
|
|
|
1906 |
|
1907 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:296
|
1908 |
+
msgid "The detected client browser version."
|
1909 |
+
msgstr "إصدار مستكشف مستعرض العميل."
|
|
|
|
|
|
|
1910 |
|
1911 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:307
|
1912 |
+
msgid "The detected client platform."
|
1913 |
+
msgstr "مستكشف منصة العميل"
|
1914 |
|
1915 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:4
|
1916 |
+
msgid "This will replace all IP addresses in the database with hash values and cannot be undo, are you sure?"
|
1917 |
+
msgstr "سيؤدي ذلك إلى استبدال جميع عناوين IP في قاعدة البيانات مع قيم التجزئة ولا يمكن التراجع، هل أنت متأكد؟"
|
1918 |
|
1919 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:16
|
1920 |
+
msgid "GeoIP Options"
|
1921 |
+
msgstr "خيارات GeoIP"
|
1922 |
|
1923 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:26
|
1924 |
+
msgid "Updates any unknown location data in the database, this may take a while"
|
1925 |
+
msgstr "تحديث أي بيانات الموقع غير معروفة في قاعدة البيانات, هذا قد يستغرق بعض الوقت"
|
1926 |
|
1927 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:31
|
1928 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:66
|
1929 |
+
msgid "IP Addresses"
|
1930 |
+
msgstr "عناوين IP"
|
1931 |
|
1932 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:36
|
1933 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:71
|
1934 |
+
msgid "Hash IP Addresses"
|
1935 |
+
msgstr "عناوين IP المجزئة"
|
1936 |
|
1937 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:41
|
1938 |
+
msgid "Replace IP addresses in the database with hash values, you will not be able to recover the IP addresses in the future to populate location information afterwards and this may take a while"
|
1939 |
+
msgstr "استبدال عناوين IP في قاعدة البيانات مع قيم التجزئة، فإنك لن تكون قادرا على استرداد عناوين IP في المستقبل لتجميع معلومات عن الموقع بعد ذلك وهذا قد يستغرق بعض الوقت"
|
1940 |
|
1941 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:43
|
1942 |
+
msgid "IP Addresses replaced with hash values."
|
1943 |
+
msgstr "استبدال عناوين IP مع قيم التجزئة."
|
1944 |
|
1945 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:51
|
1946 |
+
msgid "Install routine complete."
|
1947 |
+
msgstr "التثبيت الكامل الروتيني."
|
1948 |
|
1949 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:146
|
1950 |
+
msgid "Resources/Information"
|
1951 |
+
msgstr "الموارد/معلومات"
|
1952 |
|
1953 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:148
|
1954 |
+
msgid "Purging"
|
1955 |
+
msgstr "تطهير"
|
1956 |
|
1957 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:149
|
1958 |
+
msgid "Database"
|
1959 |
+
msgstr "قاعدة البيانات"
|
|
|
|
|
1960 |
|
1961 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:150
|
1962 |
+
msgid "Updates"
|
1963 |
+
msgstr "تحديثات"
|
1964 |
|
1965 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:151
|
1966 |
+
msgid "Historical"
|
1967 |
+
msgstr "التاريخي"
|
1968 |
|
1969 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:8
|
1970 |
+
msgid "WP Statistics V%s"
|
1971 |
+
msgstr "WP Statistics V%s"
|
1972 |
|
1973 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:20
|
1974 |
+
msgid "Visit Us Online"
|
1975 |
+
msgstr "زورونا على الإنترنت"
|
1976 |
|
1977 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:24
|
1978 |
+
msgid "Come visit our great new %s and keep up to date on the latest news about WP Statistics."
|
1979 |
+
msgstr "قم بزيارة موقعنا الجديد كلياً على %s وأبقى على إطلاع دائم حول أخبار احصائيات ووردبريس."
|
1980 |
|
1981 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:24
|
1982 |
+
msgid "website"
|
1983 |
+
msgstr "الموقع"
|
1984 |
|
1985 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:28
|
1986 |
+
msgid "Rate and Review at WordPress.org"
|
1987 |
+
msgstr "التقييم و المراجعة في WordPress.org"
|
1988 |
|
1989 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:32
|
1990 |
+
msgid "Thanks for installing WP Statistics, we encourage you to submit a "
|
1991 |
+
msgstr "كل الشكر لتثبيت احصائيات ووردبريس، ونحن نشجعكم على تقديم"
|
1992 |
|
1993 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:32
|
1994 |
+
msgid "rating and review"
|
1995 |
+
msgstr "التقييم و المراجعة"
|
|
|
|
|
|
|
1996 |
|
1997 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:32
|
1998 |
+
msgid "over at WordPress.org. Your feedback is greatly appreciated!"
|
1999 |
+
msgstr "في WordPress.org. حيث أن ملاحظاتكم في موضع تقدير دائماً!"
|
2000 |
|
2001 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:36
|
2002 |
+
msgid "Translations"
|
2003 |
+
msgstr "الترجمات"
|
2004 |
|
2005 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:40
|
2006 |
+
msgid "WP Statistics supports internationalization and we encourage our users to submit translations, please visit our %s to see the current status and %s if you would like to help."
|
2007 |
+
msgstr "احصائيات ووردبريس تدعم التدويل ونحن نشجع مستخدمينا على تقديم الترجمات، يرجى زيارة موقعنا %s لرؤية الوضع الحالي و %s إذا كنت ترغب في المساعدة."
|
2008 |
|
2009 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:40
|
2010 |
+
msgid "translation collaboration site"
|
2011 |
+
msgstr "الموقع التعاوني للترجمة"
|
2012 |
|
2013 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:40
|
2014 |
+
msgid "drop us a line"
|
2015 |
+
msgstr "اترك لنا رسالة"
|
2016 |
|
2017 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:44
|
2018 |
+
msgid "Support"
|
2019 |
+
msgstr "دعم"
|
2020 |
|
2021 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:49
|
2022 |
+
msgid "We're sorry you're having problem with WP Statistics and we're happy to help out. Here are a few things to do before contacting us:"
|
2023 |
+
msgstr "نحن آسفون إن كنت تواجه مشكلة مع احصائيات ووردبريس ونحن سعداء للمساعدة. وهنا عدد قليل من الأشياء للقيام بها قبل الاتصال بنا:"
|
|
|
|
|
|
|
2024 |
|
2025 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:52
|
2026 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:53
|
2027 |
+
msgid "Have you read the %s?"
|
2028 |
+
msgstr "هل قرأت %s؟"
|
|
|
|
|
|
|
2029 |
|
2030 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:52
|
2031 |
+
msgid "FAQs"
|
2032 |
+
msgstr "أسئلة وأجوبة"
|
2033 |
|
2034 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:53
|
2035 |
+
msgid "manual"
|
2036 |
+
msgstr "الدليل"
|
|
|
|
|
2037 |
|
2038 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:54
|
2039 |
+
msgid "Have you search the %s for a similar issue?"
|
2040 |
+
msgstr "هل بحثت في %s لمشكلة مشابهة؟"
|
2041 |
|
2042 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:54
|
2043 |
+
msgid "support forum"
|
2044 |
+
msgstr "منتدى الدعم"
|
2045 |
|
2046 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:55
|
2047 |
+
msgid "Have you search the Internet for any error messages you are receiving?"
|
2048 |
+
msgstr "هل بحثت في الإنترنت عن أي رسائل خطأ التي تظهر لك؟"
|
2049 |
|
2050 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:56
|
2051 |
+
msgid "Make sure you have access to your PHP error logs."
|
2052 |
+
msgstr "تأكد أن لديك الوصول إلى سجلات الخطأ PHP الخاص بك."
|
2053 |
|
2054 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:59
|
2055 |
+
msgid "And a few things to double-check:"
|
2056 |
+
msgstr "وعدد قليل من الأشياء الأخرى:"
|
2057 |
|
2058 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:62
|
2059 |
+
msgid "How's your memory_limit in php.ini?"
|
2060 |
+
msgstr "كيف حال memory_limit الخاصة بك في ملف php.ini؟"
|
2061 |
|
2062 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:63
|
2063 |
+
msgid "Have you tried disabling any other plugins you may have installed?"
|
2064 |
+
msgstr "هل حاولت تعطيل أي إضافات أخرى التي قد تم تثبيتها؟"
|
2065 |
|
2066 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:64
|
2067 |
+
msgid "Have you tried using the default WordPress theme?"
|
2068 |
+
msgstr "هل حاولت استخدام المظهر الافتراضي للوردبريس؟"
|
2069 |
|
2070 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:65
|
2071 |
+
msgid "Have you double checked the plugin settings?"
|
2072 |
+
msgstr "هل ضاعفت الفحص على إعدادات البرنامج المساعد؟"
|
2073 |
|
2074 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:66
|
2075 |
+
msgid "Do you have all the required PHP extensions installed?"
|
2076 |
+
msgstr "هل قمت بتثبيت جميع ملحقات PHP المطلوبة؟"
|
2077 |
|
2078 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:67
|
2079 |
+
msgid "Are you getting a blank or incomplete page displayed in your browser? Did you view the source for the page and check for any fatal errors?"
|
2080 |
+
msgstr "أنت تحصل على صفحة فارغة أو غير مكتملة العرض في المستعرض الخاص بك؟ قم بعرض المصدر للصفحة وتحقق من وجود أية أخطاء قاتلة؟"
|
2081 |
|
2082 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:68
|
2083 |
+
msgid "Have you checked your PHP and web server error logs?"
|
2084 |
+
msgstr "هل راجعت سجل أخطاء الـPHP الخاص بك؟"
|
2085 |
|
2086 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:71
|
2087 |
+
msgid "Still not having any luck?"
|
2088 |
+
msgstr "لم يحالفك الحظ حتى الآن؟"
|
2089 |
|
2090 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:71
|
2091 |
+
msgid "Then please open a new thread on the %s and we'll respond as soon as possible."
|
2092 |
+
msgstr "الرجاء فتح موضوع جديد في %s، وسنقوم بالرد في أقرب وقت ممكن."
|
2093 |
|
2094 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:71
|
2095 |
+
msgid "WordPress.org support forum"
|
2096 |
+
msgstr "منتدى الدعم"
|
2097 |
|
2098 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:75
|
2099 |
+
msgid "Alternatively %s support is available as well."
|
2100 |
+
msgstr "كما أنه يتوفر دعم للغة %s كذلك."
|
2101 |
|
2102 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:75
|
2103 |
+
msgid "Farsi"
|
2104 |
+
msgstr "الفارسية"
|
2105 |
|
2106 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:21
|
2107 |
+
msgid "WP Statistics Honey Pot Page"
|
2108 |
+
msgstr "الفسفور الابيض الاحصائيات عاء العسل الصفحة"
|
2109 |
|
2110 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:22
|
2111 |
+
msgid "This is the honey pot for WP Statistics to use, do not delete."
|
2112 |
+
msgstr "هذا هو وعاء العسل لاحصائيات ووردبريس المستخدم, لا تحذف"
|
2113 |
|
2114 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:45
|
2115 |
+
msgid "Access Levels"
|
2116 |
+
msgstr "مستويات الوصول"
|
|
|
|
|
|
|
2117 |
|
2118 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:74
|
2119 |
+
msgid "Required user level to view WP Statistics"
|
2120 |
+
msgstr "مطلوب مستوى المستخدم لعرض الاحصائيات"
|
2121 |
|
2122 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:89
|
2123 |
+
msgid "Required user level to manage WP Statistics"
|
2124 |
+
msgstr "مطلوب مستوى المستخدم لإدارة الاحصائيات"
|
2125 |
|
2126 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:97
|
2127 |
+
msgid "See the %s for details on capability levels."
|
2128 |
+
msgstr "اطلع على %s لمزيد من التفاصيل على مستويات القدرة."
|
2129 |
|
2130 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:97
|
2131 |
+
msgid "WordPress Roles and Capabilities page"
|
2132 |
+
msgstr "أدوار وقدرات صفحة ووردبريس"
|
2133 |
|
2134 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:98
|
2135 |
+
msgid "Hint: manage_network = Super Admin Network, manage_options = Administrator, edit_others_posts = Editor, publish_posts = Author, edit_posts = Contributor, read = Everyone."
|
2136 |
+
msgstr "تلميح: manage_network = مسؤول, manage_options = مدير, edit_others_posts = محرر, publish_posts = كاتب, edit_posts = مساهم, read = الجميع"
|
2137 |
|
2138 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:99
|
2139 |
+
msgid "Each of the above casscades the rights upwards in the default WordPress configuration. So for example selecting publish_posts grants the right to Authors, Editors, Admins and Super Admins."
|
2140 |
+
msgstr "كل ما سبق من الكاسكيدز هي حقوق تكوين الووردبريس الافتراضي. على سبيل المثال عند اختيار publish_posts يمنح حقوق المؤلف,المحرر,المدير,المسؤول."
|
2141 |
|
2142 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:100
|
2143 |
+
msgid "If you need a more robust solution to delegate access you might want to look at %s in the WordPress plugin directory."
|
2144 |
+
msgstr "إذا كنت في حاجة الى حل أكثر قوة لتفويض الوصول التي قد ترغب في النظر في %s الدليل المساعد لووردبريس."
|
2145 |
|
2146 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:105
|
2147 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:292
|
2148 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:365
|
2149 |
+
msgid "Exclusions"
|
2150 |
+
msgstr "الاستثناءات"
|
2151 |
|
2152 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:109
|
2153 |
+
msgid "Record exclusions"
|
2154 |
+
msgstr "سجل الاستثناءات"
|
2155 |
|
2156 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:111
|
2157 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:165
|
2158 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:192
|
2159 |
+
msgid "Enable"
|
2160 |
+
msgstr "تمكين"
|
2161 |
|
2162 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:112
|
2163 |
+
msgid "This will record all the excluded hits in a separate table with the reasons why it was excluded but no other information. This will generate a lot of data but is useful if you want to see the total number of hits your site gets, not just actual user visits."
|
2164 |
+
msgstr "يقوم هذا الخيار بتسجيل جميع النقرات المستبعدة في جدول منفصل مع أسباب الأستبعاد، ولكن بدون معلومات أخرى. وهذا قد يولد الكثير من البيانات ولكن هو مفيد إذا كنت تريد أن ترى العدد الكلي من المشاهدات التي يحصل عليها موقعك، وليس فقط المستخدم الفعلي للموقع."
|
2165 |
|
2166 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:117
|
2167 |
+
msgid "Exclude User Roles"
|
2168 |
+
msgstr "استبعاد أدوار المستخدم"
|
2169 |
|
2170 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:133
|
2171 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:247
|
2172 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:254
|
2173 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:261
|
2174 |
+
msgid "Exclude"
|
2175 |
+
msgstr "منع"
|
2176 |
|
2177 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:134
|
2178 |
+
msgid "Exclude %s role from data collection."
|
2179 |
+
msgstr "استبعاد دور %s من جمع البيانات."
|
2180 |
|
2181 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:140
|
2182 |
+
msgid "IP/Robot Exclusions"
|
2183 |
+
msgstr "استثناءات IP/Robot"
|
2184 |
|
2185 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:144
|
2186 |
+
msgid "Robot list"
|
2187 |
+
msgstr "قائمة الروبوت"
|
2188 |
|
2189 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:157
|
2190 |
+
msgid "A list of words (one per line) to match against to detect robots. Entries must be at least 4 characters long or they will be ignored."
|
2191 |
+
msgstr "قائمة من الكلمات (واحد في كل سطر) لمطابقة ضد للكشف عن الروبوتات. يجب أن تكون إدخالات 4 أحرف على الأقل أو أنها سيتم تجاهلها."
|
2192 |
|
2193 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:158
|
2194 |
+
msgid "Reset to Default"
|
2195 |
+
msgstr "إعادة تعيين إلى الافتراضي"
|
2196 |
|
2197 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:163
|
2198 |
+
msgid "Force robot list update after upgrades"
|
2199 |
+
msgstr "إجبار تحديث قائمة الربوت بعد الترقيات"
|
2200 |
|
2201 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:166
|
2202 |
+
msgid "Force the robot list to be reset to the default after an update to WP Statistics takes place. Note if this option is enabled any custom robots you have added to the list will be lost."
|
2203 |
+
msgstr "إجبار قائمة الروبوت لإعادة تعيين إلى الافتراضي بعد تحديث احصائيات ووردبريس لتأخذ مكان. ملاحظة إذا تم تمكين هذا الخيار أي روبوتات تم تخصيصها في القائمة سوف تضيع."
|
2204 |
|
2205 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:171
|
2206 |
+
msgid "Robot visit threshold"
|
2207 |
+
msgstr "الحد الأدنى بزيارة الروبوت"
|
2208 |
|
2209 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:174
|
2210 |
+
msgid "Treat visitors with more than this number of visits per day as robots. 0 = disabled."
|
2211 |
+
msgstr "تعامل للزوار أكثر من هذا العدد من مرة في اليوم الواحد كما الروبوتات. 0 = تعطيل."
|
2212 |
|
2213 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:179
|
2214 |
+
msgid "Excluded IP address list"
|
2215 |
+
msgstr "قائمة عناوين IP المستبعدة"
|
2216 |
|
2217 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:182
|
2218 |
+
msgid "A list of IP addresses and subnet masks (one per line) to exclude from statistics collection (both 192.168.0.0/24 and 192.168.0.0/255.255.255.0 formats are accepted). To specify an IP address only, use a subnet value of 32 or 255.255.255.255."
|
2219 |
+
msgstr "قائمة عناوين IP وأقنعة الشبكة الفرعية (واحد في كل سطر) لاستبعاد من جميع الإحصائيات (وتقبل الأشكال كل من 192.168.0.0/24 و 192.168.0.0/255.255.255.0 ). لتحديد عنوان IP فقط، استخدم قيمة الشبكة الفرعية 32 أو 255.255.255.255.255."
|
2220 |
|
2221 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:183
|
2222 |
+
msgid "Add 10.0.0.0"
|
2223 |
+
msgstr "إضافة 10.0.0.0"
|
2224 |
|
2225 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:184
|
2226 |
+
msgid "Add 172.16.0.0"
|
2227 |
+
msgstr "إضافة 172.16.0.0"
|
2228 |
|
2229 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:185
|
2230 |
+
msgid "Add 192.168.0.0"
|
2231 |
+
msgstr "إضافة 192.168.0.0"
|
2232 |
|
2233 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:190
|
2234 |
+
msgid "Use honey pot"
|
2235 |
+
msgstr "استخدام وعاء العسل"
|
2236 |
|
2237 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:193
|
2238 |
+
msgid "Use a honey pot page to identify robots."
|
2239 |
+
msgstr "استخدام صفحة وعاء العسل لتحديد الروبوتات."
|
2240 |
|
2241 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:198
|
2242 |
+
msgid "Honey pot post id"
|
2243 |
+
msgstr "معرف مقال وعاء العسل"
|
2244 |
|
2245 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:201
|
2246 |
+
msgid "The post id to use for the honeypot page."
|
2247 |
+
msgstr "رقم المشاركة لاستخدامها في صفحة المصيدة."
|
2248 |
|
2249 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:202
|
2250 |
+
msgid "Create a new honey pot page"
|
2251 |
+
msgstr "إنشاء صفحة وعاء عسل جديدة"
|
2252 |
|
2253 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:207
|
2254 |
+
msgid "GeoIP Exclusions"
|
2255 |
+
msgstr "استثناءات GeoIP"
|
2256 |
|
2257 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:211
|
2258 |
+
msgid "Excluded countries list"
|
2259 |
+
msgstr "قائمة الدول المستثناة"
|
2260 |
|
2261 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:214
|
2262 |
+
msgid "A list of country codes (one per line, two letters each) to exclude from statistics collection. Use \"000\" (three zeros) to exclude unknown countries."
|
2263 |
+
msgstr "قائمة رموز البلد (واحد في كل سطر، رسالتين لكل منهما) لاستبعاد من جمع الإحصاءات. استخدام \"000\" (ثلاثة أصفار) لاستبعاد بلدان غير معروفة."
|
2264 |
|
2265 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:219
|
2266 |
+
msgid "Included countries list"
|
2267 |
+
msgstr "قائمة البلدان المدرجة"
|
2268 |
|
2269 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:222
|
2270 |
+
msgid "A list of country codes (one per line, two letters each) to include in statistics collection, if this list is not empty, only visitors from the included countries will be recorded. Use \"000\" (three zeros) to exclude unknown countries."
|
2271 |
+
msgstr "قائمة رموز البلد (واحد في كل سطر، رسالتين لكل منهما) لتشمل في جمع الإحصاءات، إذا كانت هذه القائمة ليست فارغة، سيتم تسجيل الزوار فقط من الدول المدرجة. استخدام \"000\" (ثلاثة أصفار) لاستبعاد بلدان غير معروفة."
|
2272 |
|
2273 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:227
|
2274 |
+
msgid "Host Exclusions"
|
2275 |
+
msgstr "استثناءات المضيف"
|
2276 |
|
2277 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:231
|
2278 |
+
msgid "Excluded hosts list"
|
2279 |
+
msgstr "قائمة المضيفين المستبعدين"
|
2280 |
|
2281 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:234
|
2282 |
+
msgid "A list of fully qualified host names (ie. server.example.com, one per line) to exclude from statistics collection."
|
2283 |
+
msgstr "قائمة أسماء المضيف المؤهل بالكامل (أي. server.example.com، سطر واحد في المائة) لاستبعاد من جمع الإحصاءات."
|
2284 |
|
2285 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:236
|
2286 |
+
msgid "Note: this option will NOT perform a reverse DNS lookup on each page load but instead cache the IP address for the provided hostnames for one hour. If you are excluding dynamically assigned hosts you may find some degree of overlap when the host changes it's IP address and when the cache is updated resulting in some hits recorded."
|
2287 |
+
msgstr "ملاحظة: هذا الخيار لإجراء بحث DNS عكسي على تحميل كل صفحة ولكن بدلا من ذلك بالتخزين المؤقت لعنوان الـIP لأسماء المضيفين المنصوص عليها هي ساعة واحدة. إذا كنت استبعدت المضيفين وقم بتعيين حيوي قد تجد بعض الدرجات من التداخل عندما يتغير عنوان IP للمضيف وذلك وعندما يتم تحديث ذاكرة التخزين المؤقت قد يؤدي في بعض الزيارات المسجلة."
|
2288 |
|
2289 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:241
|
2290 |
+
msgid "Site URL Exclusions"
|
2291 |
+
msgstr "رابط الموقع المستثنى"
|
2292 |
|
2293 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:245
|
2294 |
+
msgid "Excluded login page"
|
2295 |
+
msgstr "استبعاد صفحة تسجيل الدخول"
|
2296 |
|
2297 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:248
|
2298 |
+
msgid "Exclude the login page for registering as a hit."
|
2299 |
+
msgstr "استبعاد صفحة الدخول للتسجيل كنقرة."
|
2300 |
|
2301 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:252
|
2302 |
+
msgid "Excluded admin pages"
|
2303 |
+
msgstr "استبعاد الصفحات الإدارية"
|
2304 |
|
2305 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:255
|
2306 |
+
msgid "Exclude the admin pages for registering as a hit."
|
2307 |
+
msgstr "استبعاد الصفحات الادارية للتسجيل كنقرة."
|
2308 |
|
2309 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:259
|
2310 |
+
msgid "Excluded RSS feeds"
|
2311 |
+
msgstr "آر إس إس مستبعدة"
|
2312 |
|
2313 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:262
|
2314 |
+
msgid "Exclude the RSS feeds for registering as a hit."
|
2315 |
+
msgstr "استبعاد آر إس إس لتسجيل كما ضرب."
|
2316 |
|
2317 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:22
|
2318 |
+
msgid "browscap settings"
|
2319 |
+
msgstr "إعدادات browscap"
|
2320 |
|
2321 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:27
|
2322 |
+
msgid "browscap usage"
|
2323 |
+
msgstr "استخدام browscap"
|
2324 |
|
2325 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:32
|
2326 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:56
|
2327 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:76
|
2328 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:92
|
2329 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:116
|
2330 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:132
|
2331 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:148
|
2332 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:160
|
2333 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:187
|
2334 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:199
|
2335 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:214
|
2336 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:228
|
2337 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:258
|
2338 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:270
|
2339 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:313
|
2340 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:47
|
2341 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:71
|
2342 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:104
|
2343 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:40
|
2344 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:69
|
2345 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:81
|
2346 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:93
|
2347 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:105
|
2348 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2349 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:87
|
2350 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:107
|
2351 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:147
|
2352 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:159
|
2353 |
+
msgid "Active"
|
2354 |
+
msgstr "تفعيل"
|
2355 |
|
2356 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:33
|
2357 |
+
msgid "The browscap database will be downloaded and used to detect robots."
|
2358 |
+
msgstr "سيتم تحميل قاعدة البيانات browscap وتستخدم للكشف عن الروبوتات."
|
2359 |
|
2360 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:39
|
2361 |
+
msgid "Update browscap Info"
|
2362 |
+
msgstr "تحديث معلومات browscap"
|
2363 |
|
2364 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:44
|
2365 |
+
msgid "Download browscap Database"
|
2366 |
+
msgstr "تحميل قاعدة بيانات browscap"
|
2367 |
|
2368 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:45
|
2369 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:60
|
2370 |
+
msgid "Save changes on this page to download the update."
|
2371 |
+
msgstr "حفظ التغييرات على هذه الصفحة لتحميل التحديث."
|
2372 |
|
2373 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:51
|
2374 |
+
msgid "Schedule weekly update of browscap DB"
|
2375 |
+
msgstr "جدولة التحديث الأسبوعي لـ browscap DB"
|
2376 |
|
2377 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:59
|
2378 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:74
|
2379 |
+
msgid "Next update will be"
|
2380 |
+
msgstr "التحديث القادم سيكون في"
|
2381 |
|
2382 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:74
|
2383 |
+
msgid "Download of the browscap database will be scheduled for once a week."
|
2384 |
+
msgstr "سيتم تحديد موعد تحميل قاعدة بيانات browscap لمرة واحدة في الأسبوع."
|
2385 |
|
2386 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:50
|
2387 |
+
msgid "This will delete the manual when you save the settings, are you sure?"
|
2388 |
+
msgstr "سيؤدي ذلك إلى حذف الدليل عند حفظ الإعدادات، هل أنت متأكد؟"
|
2389 |
|
2390 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:77
|
2391 |
+
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2392 |
+
msgstr "هذه الميزة لتخزين عناوين IP في قاعدة البيانات ولكن بدلا من ذلك تستخدم تجزئة فريدة من نوعها. سيتم تعطيل \"مخزن سلسلة عامل المستخدم بأكمله\" إذا تم تحديد هذا. أنت لن تكون قادر على استرداد عناوين IP في المستقبل لاسترداد معلومات الموقع إذا تم تمكين هذا."
|
2393 |
|
2394 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:82
|
2395 |
+
msgid "Users Online"
|
2396 |
+
msgstr "الإعضاء المتواجدين"
|
2397 |
|
2398 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:87
|
2399 |
+
msgid "User online"
|
2400 |
+
msgstr "المتواجدين الآن"
|
languages/wp_statistics-bg_BG.mo
CHANGED
Binary file
|
languages/wp_statistics-bg_BG.po
CHANGED
@@ -1,2138 +1,2400 @@
|
|
1 |
-
# Translation of
|
2 |
-
# This file is distributed under the same license as the
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"PO-Revision-Date:
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
-
"X-Generator: Poedit 1.
|
11 |
-
"Project-Id-Version:
|
12 |
"POT-Creation-Date: \n"
|
13 |
"Last-Translator: \n"
|
14 |
"Language-Team: \n"
|
15 |
"Language: bg_BG\n"
|
16 |
|
17 |
-
#: includes/
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
#: includes/
|
22 |
-
|
23 |
-
|
|
|
|
|
24 |
|
25 |
-
#: includes/
|
26 |
-
msgid "
|
27 |
-
msgstr "
|
28 |
|
29 |
-
#: includes/
|
30 |
-
msgid "
|
31 |
-
msgstr "
|
32 |
|
33 |
-
#: includes/
|
34 |
-
msgid "
|
35 |
-
msgstr "
|
36 |
|
37 |
-
#: includes/
|
38 |
-
msgid "
|
39 |
-
msgstr "
|
40 |
|
41 |
-
#: includes/
|
42 |
-
|
43 |
-
|
44 |
-
#: includes/optimization/purge-data.php:47
|
45 |
-
msgid "%s data older than %s days purged successfully."
|
46 |
-
msgstr "%s данни по-стари от %s дни, прочистват успешно."
|
47 |
|
48 |
-
#: includes/
|
49 |
-
|
50 |
-
|
51 |
-
#: includes/optimization/purge-data.php:49
|
52 |
-
msgid "No records found to purge from %s!"
|
53 |
-
msgstr "Няма намерени за продухване от %s записи!"
|
54 |
|
55 |
-
#: includes/
|
56 |
-
|
57 |
-
|
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/
|
64 |
-
msgid "
|
65 |
-
msgstr "
|
66 |
|
67 |
-
#: includes/
|
68 |
-
msgid "
|
69 |
-
msgstr "
|
70 |
|
71 |
-
#: includes/
|
72 |
-
|
73 |
-
|
|
|
|
|
|
|
74 |
|
75 |
-
#: includes/settings/tabs/wps-
|
76 |
-
msgid ""
|
77 |
-
"
|
78 |
-
"Statistics."
|
79 |
-
msgstr ""
|
80 |
-
"Елате ни голям нов %s и поддържа актуална с последните новини за WP "
|
81 |
-
"Statistics."
|
82 |
|
83 |
-
#: includes/settings/tabs/wps-
|
84 |
-
msgid "
|
85 |
-
msgstr "
|
86 |
|
87 |
-
#: includes/settings/tabs/wps-
|
88 |
-
msgid ""
|
89 |
-
"
|
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-
|
98 |
-
msgid "
|
99 |
-
msgstr "
|
100 |
|
101 |
-
#: includes/settings/tabs/wps-
|
102 |
-
msgid "
|
103 |
-
msgstr "
|
104 |
|
105 |
-
#: includes/settings/tabs/wps-
|
106 |
-
|
107 |
-
|
108 |
-
msgstr "Чели ли сте на %s?"
|
109 |
|
110 |
-
#: includes/settings/tabs/wps-
|
111 |
-
msgid "
|
112 |
-
msgstr "
|
113 |
|
114 |
-
#: includes/settings/tabs/wps-
|
115 |
-
msgid "
|
116 |
-
msgstr "
|
117 |
|
118 |
-
#: includes/settings/tabs/wps-
|
119 |
-
msgid "
|
120 |
-
msgstr "
|
121 |
|
122 |
-
#: includes/settings/tabs/wps-
|
123 |
-
msgid "
|
124 |
-
msgstr "
|
125 |
|
126 |
-
#: includes/settings/tabs/wps-
|
127 |
-
msgid ""
|
128 |
-
"
|
129 |
-
"possible."
|
130 |
-
msgstr ""
|
131 |
-
"След това отворете нова тема на %s и ние ще отговорим възможно най-скоро."
|
132 |
|
133 |
-
#: includes/settings/tabs/wps-
|
134 |
-
msgid "
|
135 |
-
msgstr "
|
136 |
|
137 |
-
#: includes/settings/tabs/wps-
|
138 |
-
msgid "
|
139 |
-
msgstr "
|
140 |
|
141 |
-
#: includes/settings/tabs/wps-
|
142 |
-
msgid "
|
143 |
-
msgstr "
|
144 |
|
145 |
-
#: includes/settings/tabs/wps-
|
146 |
-
msgid "
|
147 |
-
msgstr "
|
148 |
|
149 |
-
#: includes/settings/tabs/wps-general.php:
|
150 |
-
msgid ""
|
151 |
-
|
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:
|
163 |
-
msgid "
|
164 |
-
msgstr ""
|
165 |
-
"Забележка: За да изпратите SMS текстови съобщения моля инсталирайте %s "
|
166 |
-
"плъгин."
|
167 |
|
168 |
-
#: includes/settings/tabs/wps-general.php:
|
169 |
-
msgid "
|
170 |
-
msgstr "
|
171 |
|
172 |
-
#: wp-statistics.php:
|
173 |
-
msgid ""
|
174 |
-
"
|
175 |
-
"Statistics will not function without PHP Version "
|
176 |
-
msgstr ""
|
177 |
-
"ГРЕШКА: WP Statistics откри неподдържана версия на PHP, WP Statistics няма "
|
178 |
-
"да функционира без PHP версия "
|
179 |
|
180 |
-
#: wp-statistics.php:
|
181 |
-
msgid "
|
182 |
-
msgstr "
|
183 |
|
184 |
-
#: wp-statistics.php:
|
185 |
-
msgid ""
|
186 |
-
"
|
187 |
-
"enable it."
|
188 |
-
msgstr ""
|
189 |
-
"Онлайн потребител, проследяване в WP Statistics не е разрешен, моля отидете "
|
190 |
-
"на %s и го активирате."
|
191 |
|
192 |
-
#: wp-
|
193 |
-
msgid "
|
194 |
-
msgstr "
|
195 |
|
196 |
-
#: wp-statistics.php:
|
197 |
-
msgid ""
|
198 |
-
"
|
199 |
-
msgstr ""
|
200 |
-
"Хита проследяващия в WP Statistics не е разрешен, моля отидете на %s и го "
|
201 |
-
"активирате."
|
202 |
|
203 |
-
#: wp-statistics.php:
|
204 |
-
msgid ""
|
205 |
-
"
|
206 |
-
"it."
|
207 |
-
msgstr ""
|
208 |
-
"Посетител проследяване в WP Statistics не е разрешен, моля отидете на %s и "
|
209 |
-
"го активирате."
|
210 |
|
211 |
-
#: wp-statistics.php:
|
212 |
-
msgid ""
|
213 |
-
"GeoIP
|
214 |
-
msgstr ""
|
215 |
-
"GeoIP колекция не е активен, моля отидете на %s и активирате тази функция."
|
216 |
|
217 |
-
#: wp-statistics.php:
|
218 |
-
msgid "
|
219 |
-
msgstr "
|
220 |
|
221 |
-
|
222 |
-
|
|
|
223 |
|
224 |
-
|
225 |
-
|
|
|
226 |
|
227 |
-
#: includes/settings/wps-
|
228 |
-
msgid "
|
229 |
-
msgstr "
|
230 |
|
231 |
-
#: wp-statistics.php:
|
232 |
-
msgid "
|
233 |
-
msgstr "
|
234 |
|
235 |
-
#: wp-statistics.php:
|
236 |
-
msgid "
|
237 |
-
msgstr "
|
238 |
|
239 |
-
#: wp-statistics.php:
|
240 |
-
msgid "
|
241 |
-
msgstr "
|
242 |
|
243 |
-
#: includes/
|
244 |
-
msgid "
|
245 |
-
msgstr "
|
246 |
|
247 |
-
#: includes/
|
248 |
-
msgid "
|
249 |
-
msgstr "
|
250 |
|
251 |
-
#: includes/
|
252 |
-
msgid "
|
253 |
-
msgstr "
|
254 |
|
255 |
-
#: includes/
|
256 |
-
msgid ""
|
257 |
-
"
|
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/
|
266 |
-
msgid ""
|
267 |
-
"
|
268 |
-
"for the GeoIP code and is listed here only for historical reasons."
|
269 |
-
msgstr ""
|
270 |
-
"Ако PHP ПР.н.е математика разширението е инсталирано. ПР.н.е математика вече "
|
271 |
-
"не е необходима за GeoIP код и е изброени тук само с исторически причини."
|
272 |
|
273 |
-
#: includes/
|
274 |
-
msgid "
|
275 |
-
msgstr "
|
276 |
|
277 |
-
#: includes/
|
278 |
-
msgid "
|
279 |
-
msgstr "
|
280 |
|
281 |
-
#: includes/
|
282 |
-
|
283 |
-
|
284 |
-
msgid ", created on "
|
285 |
-
msgstr ", създаден на "
|
286 |
|
287 |
-
#: includes/
|
288 |
-
msgid "
|
289 |
-
msgstr "
|
290 |
|
291 |
-
#: includes/
|
292 |
-
msgid "
|
293 |
-
msgstr "
|
294 |
|
295 |
-
#: includes/
|
296 |
-
msgid "
|
297 |
-
msgstr "
|
298 |
|
299 |
-
#: includes/
|
300 |
-
msgid "
|
301 |
-
msgstr "
|
302 |
|
303 |
-
#: includes/
|
304 |
-
msgid "
|
305 |
-
msgstr "
|
306 |
|
307 |
-
#: includes/settings/tabs/wps-
|
308 |
-
msgid "
|
309 |
-
msgstr "
|
310 |
|
311 |
-
#: includes/settings/tabs/wps-
|
312 |
-
msgid "
|
313 |
-
msgstr "
|
314 |
|
315 |
-
#: includes/settings/tabs/wps-
|
316 |
-
msgid "
|
317 |
-
msgstr ""
|
318 |
-
"Базата данни на browscap ще бъдат изтеглени и използвани за откриване на "
|
319 |
-
"роботи."
|
320 |
|
321 |
-
#: includes/settings/tabs/wps-
|
322 |
-
msgid "Update
|
323 |
-
msgstr "
|
324 |
|
325 |
-
#: includes/settings/tabs/wps-
|
326 |
-
msgid "
|
327 |
-
msgstr "
|
328 |
|
329 |
-
#: includes/settings/tabs/wps-
|
330 |
-
msgid "
|
331 |
-
msgstr "
|
332 |
|
333 |
-
#: includes/settings/tabs/wps-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
|
338 |
-
#: includes/
|
339 |
-
msgid ""
|
340 |
-
"
|
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/
|
364 |
-
msgid ""
|
365 |
-
|
366 |
-
msgstr "Поздравления вашата инсталация е вече до дата, нищо общо."
|
367 |
|
368 |
-
#: includes/settings/tabs/wps-
|
369 |
-
msgid "
|
370 |
-
msgstr "
|
371 |
|
372 |
-
#: includes/settings/tabs/wps-
|
373 |
-
msgid ""
|
374 |
-
|
375 |
-
"you view the source for the page and check for any fatal errors?"
|
376 |
-
msgstr ""
|
377 |
-
"Получавате ли празни или непълни страница показва в браузъра си? Видя ли "
|
378 |
-
"преглед на източника на страницата и проверете за фатални грешки?"
|
379 |
|
380 |
-
#: includes/settings/tabs/wps-
|
381 |
-
msgid "
|
382 |
-
msgstr "
|
383 |
|
384 |
-
#:
|
385 |
-
|
386 |
-
|
|
|
|
|
387 |
|
388 |
-
#: includes/
|
389 |
-
|
390 |
-
|
391 |
-
msgid "#hash#"
|
392 |
-
msgstr "#hash #"
|
393 |
|
394 |
-
#: includes/
|
395 |
-
msgid ""
|
396 |
-
"
|
397 |
-
"cannot be undo, are you sure?"
|
398 |
-
msgstr ""
|
399 |
-
"Това ще замести всички IP адреси в базата данни с хашиш стойности и не може "
|
400 |
-
"да се отмени, сигурен ли сте?"
|
401 |
|
402 |
-
#: includes/
|
403 |
-
msgid ""
|
404 |
-
"
|
405 |
-
msgstr ""
|
406 |
-
"Актуализира неизвестно местоположение данни в базата данни, това може да "
|
407 |
-
"отнеме известно време"
|
408 |
|
409 |
-
#: includes/
|
410 |
-
|
411 |
-
|
412 |
-
msgstr "IP адреси"
|
413 |
|
414 |
-
#: includes/
|
415 |
-
|
416 |
-
|
417 |
-
msgstr "Хеш IP адреси"
|
418 |
|
419 |
-
#: includes/
|
420 |
-
msgid ""
|
421 |
-
"
|
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/
|
430 |
-
msgid "
|
431 |
-
msgstr "
|
432 |
|
433 |
-
#: includes/settings/tabs/wps-
|
434 |
-
msgid "
|
435 |
-
msgstr "
|
436 |
|
437 |
-
#: includes/settings/tabs/wps-
|
438 |
-
msgid ""
|
439 |
-
"
|
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-
|
448 |
-
msgid "
|
449 |
-
msgstr "
|
450 |
|
451 |
-
#: includes/settings/tabs/wps-
|
452 |
-
msgid ""
|
453 |
-
"
|
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-
|
461 |
-
|
462 |
-
|
|
|
|
|
|
|
463 |
|
464 |
-
#: includes/settings/tabs/wps-
|
465 |
-
|
466 |
-
|
467 |
-
"
|
468 |
-
"
|
469 |
-
msgstr ""
|
470 |
-
"По подразбиране WP Statistics съхранява администратор ръководство в плъгин "
|
471 |
-
"директорията (~ 5 Мег), ако тази опция е включена тя ще бъде изтрита сега и "
|
472 |
-
"по време на ъпгрейд в бъдеще."
|
473 |
|
474 |
-
#: includes/
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
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/
|
611 |
-
|
612 |
-
|
|
|
|
|
613 |
|
614 |
-
#:
|
615 |
-
|
616 |
-
"
|
617 |
-
msgstr ""
|
618 |
-
"Този продукт съдържа GeoLite2 данни, създадени от MaxMind, достъпни от %s."
|
619 |
|
620 |
-
#:
|
621 |
-
|
622 |
-
|
|
|
|
|
623 |
|
624 |
-
#:
|
625 |
-
|
626 |
-
|
|
|
|
|
627 |
|
628 |
-
#: includes/
|
629 |
-
|
630 |
-
|
|
|
631 |
|
632 |
-
#:
|
633 |
-
msgid "
|
634 |
-
msgstr "
|
635 |
|
636 |
-
#: includes/settings/tabs/wps-
|
637 |
-
|
638 |
-
|
|
|
639 |
|
640 |
-
#: includes/settings/tabs/wps-
|
641 |
-
msgid "
|
642 |
-
msgstr "
|
643 |
|
644 |
-
#: includes/settings/tabs/wps-
|
645 |
-
msgid "
|
646 |
-
msgstr "
|
647 |
|
648 |
-
#: includes/settings/tabs/wps-
|
649 |
-
msgid "
|
650 |
-
msgstr ""
|
651 |
-
"Благодаря за инсталиране на WP Statistics, ние ви препоръчваме да изпратите "
|
652 |
|
653 |
-
#: includes/settings/tabs/wps-
|
654 |
-
msgid "
|
655 |
-
msgstr "
|
656 |
|
657 |
-
#: includes/settings/tabs/wps-
|
658 |
-
|
659 |
-
|
|
|
|
|
660 |
|
661 |
-
#: includes/settings/tabs/wps-
|
662 |
-
msgid ""
|
663 |
-
"
|
664 |
-
"out. Here are a few things to do before contacting us:"
|
665 |
-
msgstr ""
|
666 |
-
"Ние сме съжалявам, имате проблем с WP Statistics и ние сме щастливи да "
|
667 |
-
"помогне. Ето няколко неща, за да направите преди да се свържете с нас:"
|
668 |
|
669 |
-
#: includes/settings/tabs/wps-
|
670 |
-
msgid "
|
671 |
-
msgstr "
|
672 |
|
673 |
-
#: includes/settings/tabs/wps-
|
674 |
-
msgid "
|
675 |
-
msgstr "
|
676 |
|
677 |
-
#: includes/settings/tabs/wps-
|
678 |
-
msgid "
|
679 |
-
msgstr ""
|
680 |
-
"Били ли сте опитвали Деактивирането на всички други плъгини, които сте "
|
681 |
-
"инсталирали?"
|
682 |
|
683 |
-
#: includes/settings/tabs/wps-
|
684 |
-
msgid "
|
685 |
-
msgstr "
|
686 |
|
687 |
-
#: includes/settings/tabs/wps-
|
688 |
-
msgid "
|
689 |
-
msgstr "
|
690 |
|
691 |
-
#: includes/settings/tabs/wps-
|
692 |
-
msgid "
|
693 |
-
msgstr "
|
694 |
|
695 |
-
#: includes/settings/tabs/wps-
|
696 |
-
msgid "
|
697 |
-
msgstr "
|
698 |
|
699 |
-
#: includes/
|
700 |
-
|
701 |
-
|
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-
|
710 |
-
msgid ""
|
711 |
-
"
|
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-
|
720 |
-
msgid ""
|
721 |
-
"
|
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-
|
730 |
-
msgid ""
|
731 |
-
"
|
732 |
-
"from %s."
|
733 |
-
msgstr ""
|
734 |
-
"IP местоположение услуги, предоставяни от GeoLite2 данни, създадени от "
|
735 |
-
"MaxMind, достъпни от %s."
|
736 |
|
737 |
-
#: includes/settings/tabs/wps-overview-display.php:
|
738 |
-
|
739 |
-
|
740 |
-
msgstr "Няма"
|
741 |
|
742 |
-
#: includes/settings/tabs/wps-overview-display.php:
|
743 |
-
|
744 |
-
|
745 |
-
msgstr "За"
|
746 |
|
747 |
-
#: includes/settings/tabs/wps-overview-display.php:
|
748 |
-
msgid "Widgets to Display"
|
749 |
-
msgstr "
|
750 |
|
751 |
-
#: includes/settings/tabs/wps-overview-display.php:
|
752 |
-
msgid ""
|
753 |
-
"
|
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:
|
761 |
msgid "Slot"
|
762 |
msgstr "Слот"
|
763 |
|
764 |
-
#: includes/settings/tabs/wps-overview-display.php:
|
765 |
msgid "Column A"
|
766 |
msgstr "Колона А"
|
767 |
|
768 |
-
#: includes/settings/tabs/wps-overview-display.php:
|
769 |
msgid "Column B"
|
770 |
msgstr "Колона B"
|
771 |
|
772 |
-
#: includes/settings/tabs/wps-overview-display.php:
|
773 |
msgid "Slot 1"
|
774 |
msgstr "Слот 1"
|
775 |
|
776 |
-
#: includes/settings/tabs/wps-overview-display.php:
|
777 |
msgid "Slot 2"
|
778 |
msgstr "Слот 2"
|
779 |
|
780 |
-
#: includes/settings/tabs/wps-overview-display.php:
|
781 |
msgid "Slot 3"
|
782 |
msgstr "Слот 3"
|
783 |
|
784 |
-
#: includes/settings/tabs/wps-overview-display.php:
|
785 |
msgid "Slot 4"
|
786 |
msgstr "Слот 4"
|
787 |
|
788 |
-
#: includes/settings/tabs/wps-overview-display.php:
|
789 |
msgid "Slot 5"
|
790 |
msgstr "Слот 5"
|
791 |
|
792 |
-
#: includes/settings/tabs/wps-overview-display.php:
|
793 |
msgid "Slot 6"
|
794 |
msgstr "Слот за 6"
|
795 |
|
796 |
-
#: includes/settings/tabs/wps-overview-display.php:
|
|
|
797 |
msgid "N/A"
|
798 |
msgstr "N/A"
|
799 |
|
800 |
-
#:
|
801 |
-
msgid "
|
802 |
-
msgstr "
|
803 |
|
804 |
-
#:
|
805 |
-
msgid "
|
806 |
-
msgstr "
|
807 |
|
808 |
-
#:
|
809 |
-
msgid "
|
810 |
-
msgstr "
|
811 |
|
812 |
-
#:
|
813 |
-
msgid "Once
|
814 |
-
msgstr "
|
815 |
|
816 |
-
#: wp-statistics.php:
|
817 |
-
msgid "
|
818 |
-
msgstr "
|
819 |
|
820 |
-
#: includes/
|
821 |
-
msgid "
|
822 |
-
msgstr "
|
823 |
|
824 |
-
#:
|
825 |
-
msgid "
|
826 |
-
msgstr "
|
827 |
|
828 |
-
#: includes/
|
829 |
-
msgid "
|
830 |
-
msgstr "
|
831 |
|
832 |
-
#: includes/
|
833 |
-
msgid "
|
834 |
-
msgstr ""
|
835 |
-
"Памет граница скрипт е разрешено да се консумират, определени в php.ini."
|
836 |
|
837 |
-
#: wp-statistics.php:
|
838 |
-
msgid "
|
839 |
-
msgstr "
|
840 |
|
841 |
-
#: wp-statistics.php:
|
842 |
-
msgid "
|
843 |
-
msgstr "
|
844 |
|
845 |
-
#: includes/
|
846 |
-
msgid "
|
847 |
-
msgstr "
|
848 |
|
849 |
-
#: includes/
|
850 |
-
msgid "
|
851 |
-
msgstr "
|
852 |
|
853 |
-
#: includes/
|
854 |
-
msgid "
|
855 |
-
msgstr "
|
856 |
|
857 |
-
#: includes/settings/
|
858 |
-
msgid "
|
859 |
-
msgstr "
|
860 |
|
861 |
-
#:
|
862 |
-
msgid "
|
863 |
-
msgstr "
|
864 |
|
865 |
-
#:
|
866 |
-
msgid "
|
867 |
-
msgstr "
|
868 |
|
869 |
-
#:
|
870 |
-
msgid ""
|
871 |
-
"
|
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 |
-
#:
|
882 |
-
msgid "
|
883 |
-
msgstr "
|
884 |
|
885 |
-
#:
|
886 |
-
msgid "
|
887 |
-
msgstr "
|
888 |
|
889 |
-
#:
|
890 |
-
|
891 |
-
|
|
|
|
|
892 |
|
893 |
-
#:
|
894 |
-
msgid "
|
895 |
-
msgstr "
|
896 |
|
897 |
-
#:
|
898 |
-
|
899 |
-
|
|
|
900 |
|
901 |
-
#:
|
902 |
-
|
903 |
-
|
|
|
904 |
|
905 |
-
#:
|
906 |
-
|
907 |
-
|
|
|
908 |
|
909 |
-
#: wp-statistics.php:
|
910 |
-
|
911 |
-
|
|
|
912 |
|
913 |
-
#: wp-statistics.php:
|
914 |
-
msgid "
|
915 |
-
msgstr ""
|
916 |
-
"Щракнете тук, за да оцените и да преразгледа този плъгин от WordPress.org"
|
917 |
|
918 |
-
#: wp-statistics.php:
|
919 |
-
|
920 |
-
|
|
|
921 |
|
922 |
-
#: wp-statistics.php:
|
923 |
-
|
924 |
-
|
|
|
925 |
|
926 |
-
#: wp-statistics.php:
|
927 |
-
|
928 |
-
|
|
|
929 |
|
930 |
-
#: widget.php:
|
931 |
-
|
932 |
-
|
|
|
933 |
|
934 |
-
#:
|
935 |
-
#:
|
936 |
-
msgid "
|
937 |
-
msgstr "
|
938 |
|
939 |
-
#: wp-statistics.php:
|
940 |
-
|
941 |
-
|
|
|
942 |
|
943 |
-
#: wp-statistics.php:
|
944 |
-
|
945 |
-
|
|
|
946 |
|
947 |
-
#: wp-statistics.php:
|
948 |
-
|
949 |
-
|
|
|
950 |
|
951 |
-
#: wp-statistics.php:
|
952 |
-
|
953 |
-
|
|
|
954 |
|
955 |
-
#:
|
956 |
-
msgid "
|
957 |
-
msgstr "
|
958 |
|
959 |
-
#:
|
960 |
-
msgid "
|
961 |
-
msgstr "
|
962 |
|
963 |
-
#:
|
964 |
-
|
965 |
-
|
|
|
966 |
|
967 |
-
#:
|
968 |
-
msgid "
|
969 |
-
msgstr "
|
970 |
|
971 |
-
#:
|
972 |
-
msgid "
|
973 |
-
msgstr "
|
974 |
|
975 |
-
#:
|
976 |
-
msgid "
|
977 |
-
msgstr "
|
978 |
|
979 |
-
#:
|
980 |
-
msgid "
|
981 |
-
msgstr "
|
982 |
|
983 |
-
#:
|
984 |
-
msgid "
|
985 |
-
msgstr "
|
986 |
|
987 |
-
#:
|
988 |
-
msgid "
|
989 |
-
msgstr "
|
990 |
|
991 |
-
#:
|
992 |
-
msgid "
|
993 |
-
msgstr "
|
994 |
|
995 |
-
#:
|
996 |
-
msgid "
|
997 |
-
msgstr "
|
998 |
|
999 |
-
#:
|
1000 |
-
msgid "
|
1001 |
-
msgstr "
|
1002 |
|
1003 |
-
#:
|
1004 |
-
|
1005 |
-
|
|
|
|
|
1006 |
|
1007 |
-
#:
|
1008 |
-
msgid "
|
1009 |
-
msgstr ""
|
1010 |
-
"Се сигурния режим на PHP активни. GeoIP код не се поддържа в безопасен режим."
|
1011 |
|
1012 |
-
#:
|
1013 |
-
msgid "
|
1014 |
-
msgstr "
|
1015 |
|
1016 |
-
#:
|
1017 |
-
msgid ""
|
1018 |
-
"
|
1019 |
-
"mode enabled!"
|
1020 |
-
msgstr ""
|
1021 |
-
"Безопасен режим PHP открити! GeoIP колекция не се поддържа на PHP защитен "
|
1022 |
-
"режим!"
|
1023 |
|
1024 |
-
#:
|
1025 |
-
msgid "
|
1026 |
-
msgstr "
|
1027 |
|
1028 |
-
#:
|
1029 |
-
|
1030 |
-
|
|
|
|
|
1031 |
|
1032 |
-
#:
|
1033 |
-
msgid ""
|
1034 |
-
"
|
1035 |
-
"search engines being active."
|
1036 |
-
msgstr ""
|
1037 |
-
"Деактивирането на всички търсещи машини не е позволено, това ще доведе до "
|
1038 |
-
"всички търсещи машини са активни."
|
1039 |
|
1040 |
-
#:
|
1041 |
-
msgid "
|
1042 |
-
msgstr "
|
1043 |
|
1044 |
-
#:
|
1045 |
-
msgid "
|
1046 |
-
msgstr "
|
1047 |
|
1048 |
-
#:
|
1049 |
-
msgid "
|
1050 |
-
msgstr "
|
1051 |
|
1052 |
-
#:
|
1053 |
-
msgid "
|
1054 |
-
msgstr "
|
1055 |
|
1056 |
-
#:
|
1057 |
-
|
1058 |
-
|
1059 |
-
|
1060 |
-
msgstr ""
|
1061 |
-
"PHP къдря версия на разширение, която изпълнявате. Навийте се изисква за "
|
1062 |
-
"GeoIP код, ако не е инсталиран GeoIP ще бъде забранена."
|
1063 |
|
1064 |
-
#:
|
1065 |
-
|
1066 |
-
|
|
|
1067 |
|
1068 |
-
#:
|
1069 |
-
|
1070 |
-
|
|
|
1071 |
|
1072 |
-
#:
|
1073 |
-
|
1074 |
-
|
|
|
1075 |
|
1076 |
-
#:
|
1077 |
-
|
1078 |
-
"
|
1079 |
-
"
|
1080 |
-
msgstr ""
|
1081 |
-
"GeoIP колекция изисква разширение на PHP къдря и тя не е заредена на вашата "
|
1082 |
-
"версия на PHP!"
|
1083 |
|
1084 |
-
#:
|
1085 |
-
|
1086 |
-
"
|
1087 |
-
"
|
1088 |
-
msgstr ""
|
1089 |
-
"GeoIP колекция изисква ПР.н.е математика PHP продължаване и то не е заредена "
|
1090 |
-
"на вашата версия на PHP!"
|
1091 |
|
1092 |
-
#:
|
1093 |
-
|
1094 |
-
|
1095 |
-
|
1096 |
-
msgstr ""
|
1097 |
-
"Не може да зареди GeoIP базата данни, се уверете, че сте го изтеглили в "
|
1098 |
-
"страницата Настройки."
|
1099 |
|
1100 |
-
#:
|
1101 |
-
|
1102 |
-
|
|
|
1103 |
|
1104 |
-
#:
|
1105 |
-
msgid "
|
1106 |
-
msgstr "
|
1107 |
|
1108 |
-
#:
|
1109 |
-
|
1110 |
-
|
1111 |
-
#: includes/log/widgets/search.php:8 includes/log/widgets/words.php:16
|
1112 |
-
msgid "More"
|
1113 |
-
msgstr "Повече"
|
1114 |
|
1115 |
-
#:
|
1116 |
-
msgid "
|
1117 |
-
msgstr "
|
1118 |
|
1119 |
-
#:
|
1120 |
-
msgid ""
|
1121 |
-
"
|
1122 |
-
"referrals"
|
1123 |
-
msgstr ""
|
1124 |
-
"Добавяне на обща линия за диаграми с множество стойности, като търсене "
|
1125 |
-
"двигател референции"
|
1126 |
|
1127 |
-
#:
|
1128 |
-
msgid "
|
1129 |
-
msgstr "
|
1130 |
|
1131 |
-
#:
|
1132 |
-
msgid "
|
1133 |
-
msgstr "
|
1134 |
|
1135 |
-
#:
|
1136 |
-
msgid "
|
1137 |
-
msgstr "
|
1138 |
|
1139 |
-
#:
|
1140 |
-
msgid ""
|
1141 |
-
"
|
1142 |
-
"may not reflect current statistics!"
|
1143 |
-
msgstr ""
|
1144 |
-
"Внимание: Изключване не са в момента зададени да се отчита, по-долу "
|
1145 |
-
"резултатите може да не отразява текущата статистика!"
|
1146 |
|
1147 |
-
#:
|
1148 |
-
msgid "
|
1149 |
-
msgstr "
|
1150 |
|
1151 |
-
#:
|
1152 |
-
|
1153 |
-
|
1154 |
-
"
|
1155 |
-
"
|
1156 |
-
msgstr ""
|
1157 |
-
"Съвет: manage_network = супер администратор мрежа, manage_options = "
|
1158 |
-
"администратор, edit_others_posts = редактор, publish_posts = автор, "
|
1159 |
-
"edit_posts = сътрудник, прочетете = всеки."
|
1160 |
|
1161 |
-
#:
|
1162 |
-
|
1163 |
-
|
1164 |
-
msgstr "Разреши"
|
1165 |
|
1166 |
-
#:
|
1167 |
-
msgid ""
|
1168 |
-
"
|
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 |
-
#:
|
1179 |
-
msgid "
|
1180 |
-
msgstr "
|
1181 |
|
1182 |
-
#:
|
1183 |
-
msgid "
|
1184 |
-
msgstr "
|
1185 |
|
1186 |
-
#:
|
1187 |
-
msgid "
|
1188 |
-
msgstr "
|
1189 |
|
1190 |
-
#:
|
1191 |
-
msgid "
|
1192 |
-
msgstr "
|
1193 |
|
1194 |
-
#:
|
1195 |
-
msgid "
|
1196 |
-
msgstr "
|
1197 |
|
1198 |
-
#:
|
1199 |
-
msgid "
|
1200 |
-
msgstr "
|
1201 |
|
1202 |
-
#:
|
1203 |
-
msgid "
|
1204 |
-
msgstr "
|
1205 |
|
1206 |
-
#:
|
1207 |
-
msgid "
|
1208 |
-
msgstr "
|
1209 |
|
1210 |
-
#:
|
1211 |
-
msgid "
|
1212 |
-
msgstr "
|
1213 |
|
1214 |
-
#:
|
1215 |
-
msgid "
|
1216 |
-
msgstr "
|
1217 |
|
1218 |
-
#:
|
1219 |
-
msgid "
|
1220 |
-
msgstr "
|
1221 |
|
1222 |
-
#:
|
1223 |
-
msgid "
|
1224 |
-
msgstr "
|
1225 |
|
1226 |
-
#:
|
1227 |
-
|
1228 |
-
|
|
|
1229 |
|
1230 |
-
#:
|
1231 |
-
|
1232 |
-
|
|
|
|
|
1233 |
|
1234 |
-
#:
|
1235 |
-
msgid "
|
1236 |
-
msgstr "
|
1237 |
|
1238 |
-
#:
|
1239 |
-
|
1240 |
-
|
|
|
|
|
|
|
1241 |
|
1242 |
-
#:
|
1243 |
-
|
1244 |
-
|
|
|
1245 |
|
1246 |
-
#:
|
1247 |
-
|
1248 |
-
|
1249 |
-
|
1250 |
-
|
1251 |
-
"
|
1252 |
-
"Минималната стойност е 30 дни."
|
1253 |
|
1254 |
-
#:
|
1255 |
-
|
1256 |
-
|
|
|
|
|
|
|
|
|
1257 |
|
1258 |
-
#:
|
1259 |
-
|
1260 |
-
|
|
|
|
|
1261 |
|
1262 |
-
#:
|
1263 |
-
|
1264 |
-
|
1265 |
-
|
1266 |
-
msgstr ""
|
1267 |
-
"Това ще изтрие данни от базата данни всеки ден, наистина ли искате да "
|
1268 |
-
"разрешите тази опция?"
|
1269 |
|
1270 |
-
#:
|
1271 |
-
|
1272 |
-
|
|
|
|
|
|
|
1273 |
|
1274 |
-
#:
|
1275 |
-
|
1276 |
-
|
|
|
|
|
1277 |
|
1278 |
-
#:
|
1279 |
-
msgid ""
|
1280 |
-
"
|
1281 |
-
"days."
|
1282 |
-
msgstr ""
|
1283 |
-
"WP Cron работни места ще се изпълнява ежедневно да се режат всякакви данни, "
|
1284 |
-
"по-стари от определен брой дни."
|
1285 |
|
1286 |
-
#:
|
1287 |
-
msgid "
|
1288 |
-
msgstr "
|
1289 |
|
1290 |
-
#:
|
1291 |
-
msgid "
|
1292 |
-
msgstr "
|
1293 |
|
1294 |
-
#: includes/
|
1295 |
-
msgid ""
|
1296 |
-
"
|
1297 |
-
"Invalid values will disable the daily maintenance."
|
1298 |
-
msgstr ""
|
1299 |
-
"Броят на дните за запазване на статистика за. Минималната стойност е 30 дни. "
|
1300 |
-
"Невалидни стойности ще забрани ежедневна поддръжка."
|
1301 |
|
1302 |
-
#: includes/
|
1303 |
-
msgid "GeoIP"
|
1304 |
-
msgstr "GeoIP"
|
1305 |
|
1306 |
-
#: includes/
|
1307 |
-
#: includes/
|
1308 |
-
|
1309 |
-
|
|
|
|
|
1310 |
|
1311 |
-
#: includes/
|
1312 |
-
|
1313 |
-
|
1314 |
-
|
1315 |
-
|
1316 |
-
"
|
1317 |
-
"инсталирани PHP версия са "
|
1318 |
|
1319 |
-
#:
|
1320 |
-
msgid "
|
1321 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1322 |
|
1323 |
-
#: includes/log/widgets/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1324 |
msgid "Daily Total"
|
1325 |
msgstr "Ежедневно общо"
|
1326 |
|
1327 |
-
#: includes/log/widgets/summary.php:
|
1328 |
msgid "Current Time and Date"
|
1329 |
msgstr "Текущия час и дата"
|
1330 |
|
1331 |
-
#: includes/
|
1332 |
-
|
1333 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1334 |
msgid "Update Now!"
|
1335 |
msgstr "Актуализирай сега!"
|
1336 |
|
1337 |
-
#: includes/
|
1338 |
-
msgid ""
|
1339 |
-
"
|
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/
|
1348 |
-
msgid ""
|
1349 |
-
"
|
1350 |
-
"at %s in the WordPress plugin directory."
|
1351 |
-
msgstr ""
|
1352 |
-
"Ако имате нужда от по-силен решение за делегиране на достъп, може да искате "
|
1353 |
-
"да погледнете %s в WordPress плъгин директорията."
|
1354 |
|
1355 |
-
#: includes/
|
1356 |
-
msgid "
|
1357 |
-
msgstr "
|
1358 |
|
1359 |
-
#: includes/
|
1360 |
-
msgid "
|
1361 |
-
msgstr "
|
1362 |
|
1363 |
-
#: includes/
|
1364 |
-
|
1365 |
-
|
|
|
1366 |
|
1367 |
-
#: includes/
|
1368 |
-
msgid ""
|
1369 |
-
"
|
1370 |
-
"Tuesday of the month."
|
1371 |
-
msgstr ""
|
1372 |
-
"Изтегляне на GeoIP базата данни ще бъде насрочено за 2 дни след първия "
|
1373 |
-
"вторник на месеца."
|
1374 |
|
1375 |
-
#: includes/
|
1376 |
-
|
1377 |
-
|
1378 |
-
|
1379 |
-
|
1380 |
-
|
1381 |
-
|
1382 |
-
"
|
|
|
1383 |
|
1384 |
-
#: includes/
|
1385 |
-
msgid "
|
1386 |
-
msgstr "
|
1387 |
|
1388 |
-
#: includes/
|
1389 |
-
msgid "
|
1390 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1391 |
|
1392 |
-
#: includes/
|
1393 |
-
|
1394 |
-
|
|
|
|
|
|
|
|
|
|
|
1395 |
|
1396 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1397 |
msgid "Version Info"
|
1398 |
msgstr "Информация за версията"
|
1399 |
|
1400 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:
|
1401 |
msgid "WP Statistics Version"
|
1402 |
msgstr "Статистика на WP версия"
|
1403 |
|
1404 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:
|
1405 |
msgid "The WP Statistics version you are running."
|
1406 |
msgstr "Версията на WP Statistics, която изпълнявате."
|
1407 |
|
1408 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:
|
1409 |
msgid "PHP Version"
|
1410 |
msgstr "PHP версия"
|
1411 |
|
1412 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:
|
1413 |
msgid "The PHP version you are running."
|
1414 |
msgstr "Версията на PHP, която изпълнявате."
|
1415 |
|
1416 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1417 |
msgid "jQuery Version"
|
1418 |
msgstr "jQuery версия"
|
1419 |
|
1420 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:
|
1421 |
msgid "The jQuery version you are running."
|
1422 |
msgstr "JQuery версия, която изпълнявате."
|
1423 |
|
1424 |
-
#: wp-statistics.php:
|
1425 |
-
msgid "
|
1426 |
-
msgstr "
|
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/
|
1496 |
-
msgid "
|
1497 |
-
msgstr "
|
1498 |
|
1499 |
-
#: includes/
|
1500 |
-
msgid "
|
1501 |
-
msgstr "
|
1502 |
|
1503 |
-
#: includes/
|
1504 |
-
msgid ""
|
1505 |
-
"
|
1506 |
-
"feature."
|
1507 |
-
msgstr ""
|
1508 |
-
"За да получите повече информация и местоположението (страната) от посетител, "
|
1509 |
-
"активирате тази функция."
|
1510 |
|
1511 |
-
#: includes/
|
1512 |
-
msgid "
|
1513 |
-
msgstr "
|
1514 |
|
1515 |
-
#: includes/optimization/tabs/wps-optimization-
|
1516 |
-
|
1517 |
-
|
1518 |
-
msgid "Countries"
|
1519 |
-
msgstr "Страни"
|
1520 |
|
1521 |
-
#: wp-
|
1522 |
-
msgid "
|
1523 |
-
msgstr "
|
1524 |
|
1525 |
-
#: wp-statistics.php:
|
1526 |
-
msgid "
|
1527 |
-
msgstr "
|
1528 |
|
1529 |
-
#: wp-statistics.php:
|
1530 |
-
msgid "
|
1531 |
-
msgstr "
|
1532 |
|
1533 |
-
#: wp-statistics.php:
|
1534 |
-
msgid "
|
1535 |
-
msgstr "
|
1536 |
|
1537 |
-
#: includes/
|
1538 |
-
|
1539 |
-
|
|
|
|
|
1540 |
|
1541 |
-
#: includes/
|
1542 |
-
msgid "
|
1543 |
-
msgstr "
|
1544 |
|
1545 |
-
#: includes/
|
1546 |
-
msgid "
|
1547 |
-
msgstr "
|
1548 |
|
1549 |
-
#: includes/
|
1550 |
-
msgid "
|
1551 |
-
msgstr "
|
1552 |
|
1553 |
-
#:
|
1554 |
-
msgid "
|
1555 |
-
msgstr "
|
1556 |
|
1557 |
-
#: includes/
|
1558 |
-
|
1559 |
-
|
1560 |
-
msgstr "10 дни"
|
1561 |
|
1562 |
-
#: includes/
|
1563 |
-
|
1564 |
-
|
1565 |
-
msgstr "20 дни"
|
1566 |
|
1567 |
-
#: includes/
|
1568 |
-
|
1569 |
-
|
1570 |
-
msgstr "30 дни"
|
1571 |
|
1572 |
-
#: includes/
|
1573 |
-
|
1574 |
-
|
1575 |
-
msgstr "2 месеца"
|
1576 |
|
1577 |
-
#: includes/
|
1578 |
-
|
1579 |
-
|
1580 |
-
msgstr "3 месеца"
|
1581 |
|
1582 |
-
#: includes/
|
1583 |
-
|
1584 |
-
|
1585 |
-
msgstr "6 месеца"
|
1586 |
|
1587 |
-
#: includes/
|
1588 |
-
|
1589 |
-
|
1590 |
-
msgstr "9 месеца"
|
1591 |
|
1592 |
-
#: includes/
|
1593 |
-
|
1594 |
-
|
1595 |
-
msgstr "1 година"
|
1596 |
|
1597 |
-
#: includes/
|
1598 |
-
msgid "
|
1599 |
-
msgstr "
|
1600 |
|
1601 |
-
#: includes/
|
1602 |
-
|
1603 |
-
|
1604 |
-
#: includes/optimization/tabs/wps-optimization-purging.php:150
|
1605 |
-
msgid "days"
|
1606 |
-
msgstr "дни"
|
1607 |
|
1608 |
-
#: includes/
|
1609 |
-
|
1610 |
-
|
1611 |
-
msgstr "Топ 10 страни"
|
1612 |
|
1613 |
-
#:
|
1614 |
-
msgid "
|
1615 |
-
msgstr "
|
1616 |
|
1617 |
-
#:
|
1618 |
-
msgid "
|
1619 |
-
msgstr "
|
1620 |
|
1621 |
-
#:
|
1622 |
-
msgid "
|
1623 |
-
msgstr "
|
1624 |
|
1625 |
-
#: includes/
|
1626 |
-
msgid "
|
1627 |
-
msgstr "
|
1628 |
|
1629 |
-
#: includes/
|
1630 |
-
|
1631 |
-
|
|
|
1632 |
|
1633 |
-
#: includes/optimization/tabs/wps-optimization-
|
1634 |
-
|
1635 |
-
|
|
|
1636 |
|
1637 |
-
#: includes/optimization/tabs/wps-optimization-
|
1638 |
-
msgid "
|
1639 |
-
msgstr "
|
1640 |
|
1641 |
-
#: includes/optimization/
|
1642 |
-
msgid "
|
1643 |
-
msgstr "
|
1644 |
|
1645 |
-
#: includes/optimization/
|
1646 |
-
|
1647 |
-
|
1648 |
-
msgstr "Изтриване сега!"
|
1649 |
|
1650 |
-
#: includes/optimization/
|
1651 |
-
msgid "
|
1652 |
-
msgstr "
|
1653 |
|
1654 |
-
#: includes/optimization/
|
1655 |
-
msgid "
|
1656 |
-
msgstr "
|
1657 |
|
1658 |
-
#: includes/optimization/
|
1659 |
-
msgid "
|
1660 |
-
msgstr "
|
1661 |
|
1662 |
-
#: includes/
|
1663 |
-
msgid "
|
1664 |
-
msgstr "
|
1665 |
|
1666 |
-
#: includes/
|
1667 |
-
msgid "
|
1668 |
-
msgstr "
|
1669 |
|
1670 |
-
#: includes/settings/tabs/wps-
|
1671 |
-
msgid "
|
1672 |
-
msgstr "
|
1673 |
|
1674 |
-
#: includes/settings/tabs/wps-
|
1675 |
-
msgid "
|
1676 |
-
msgstr "
|
1677 |
|
1678 |
-
#: includes/settings/tabs/wps-
|
1679 |
-
msgid "
|
1680 |
-
msgstr "
|
1681 |
|
1682 |
-
#: includes/settings/tabs/wps-
|
1683 |
-
msgid "
|
1684 |
-
msgstr "
|
1685 |
|
1686 |
-
#: includes/settings/tabs/wps-
|
1687 |
-
|
1688 |
-
|
1689 |
-
msgstr "Запишете промените на тази страница, за да изтеглите актуализацията."
|
1690 |
|
1691 |
-
#: includes/
|
1692 |
-
|
1693 |
-
|
1694 |
-
#: includes/optimization/tabs/wps-optimization-purging.php:90
|
1695 |
-
msgid "Are you sure?"
|
1696 |
-
msgstr "Сигурни ли сте?"
|
1697 |
|
1698 |
-
#: includes/
|
1699 |
-
msgid "
|
1700 |
-
msgstr "
|
1701 |
|
1702 |
-
#: wp-statistics.php:
|
1703 |
-
msgid "
|
1704 |
-
msgstr "
|
1705 |
|
1706 |
-
#: includes/
|
1707 |
-
|
1708 |
-
|
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/
|
1715 |
-
|
1716 |
-
|
1717 |
-
msgid "Please select the desired items."
|
1718 |
-
msgstr "Моля изберете желаните елементи."
|
1719 |
|
1720 |
-
#: includes/
|
1721 |
-
msgid "
|
1722 |
-
msgstr "
|
1723 |
|
1724 |
-
#: includes/
|
1725 |
-
|
1726 |
-
|
1727 |
-
msgstr "Памет отнасяне в PHP"
|
1728 |
|
1729 |
-
#: includes/
|
1730 |
-
msgid "
|
1731 |
-
msgstr "
|
1732 |
|
1733 |
-
#: includes/
|
1734 |
-
|
1735 |
-
|
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/
|
1742 |
-
#: includes/
|
1743 |
-
|
1744 |
-
|
1745 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:93
|
1746 |
-
msgid "Number of rows"
|
1747 |
-
msgstr "Брой редове"
|
1748 |
|
1749 |
-
#: includes/
|
1750 |
-
|
1751 |
-
|
1752 |
-
msgstr "Износ"
|
1753 |
|
1754 |
-
#: includes/
|
1755 |
-
msgid "
|
1756 |
-
msgstr "
|
1757 |
|
1758 |
-
#: includes/
|
1759 |
-
msgid "
|
1760 |
-
msgstr "
|
1761 |
|
1762 |
-
#: includes/
|
1763 |
-
msgid "
|
1764 |
-
msgstr "
|
1765 |
|
1766 |
-
#: includes/
|
1767 |
-
msgid "
|
1768 |
-
msgstr "
|
1769 |
|
1770 |
-
#: includes/
|
1771 |
-
msgid "
|
1772 |
-
msgstr "
|
1773 |
|
1774 |
-
#: includes/
|
1775 |
-
msgid "
|
1776 |
-
msgstr "
|
1777 |
|
1778 |
-
#: includes/
|
1779 |
-
msgid "
|
1780 |
-
msgstr "
|
1781 |
|
1782 |
-
#: includes/settings/tabs/wps-about.php:
|
1783 |
-
msgid "
|
1784 |
-
msgstr "
|
1785 |
|
1786 |
-
#: includes/settings/tabs/wps-about.php:
|
1787 |
-
msgid "
|
1788 |
-
msgstr "
|
1789 |
|
1790 |
-
#: includes/
|
1791 |
-
msgid "
|
1792 |
-
msgstr "
|
1793 |
|
1794 |
-
#: includes/settings/tabs/wps-about.php:
|
1795 |
-
msgid "
|
1796 |
-
msgstr "
|
1797 |
|
1798 |
-
#: includes/
|
1799 |
-
msgid "
|
1800 |
-
msgstr "
|
1801 |
|
1802 |
-
#: includes/
|
1803 |
-
|
1804 |
-
|
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/
|
1811 |
-
|
1812 |
-
|
1813 |
-
msgstr "Страница"
|
1814 |
|
1815 |
-
#: includes/
|
1816 |
-
|
1817 |
-
|
1818 |
-
msgstr "От"
|
1819 |
|
1820 |
-
#: wp-statistics.php:
|
1821 |
-
msgid "
|
1822 |
-
msgstr ""
|
1823 |
-
"Таблица плъгин не съществува! Моля, деактивирайте и пак Активирайте плъгин."
|
1824 |
|
1825 |
-
#: includes/settings/tabs/wps-
|
1826 |
-
|
1827 |
-
|
1828 |
-
msgstr "Статистическата отчетност"
|
1829 |
|
1830 |
-
#:
|
1831 |
-
msgid "
|
1832 |
-
msgstr "
|
1833 |
|
1834 |
-
#: includes/settings/tabs/wps-
|
1835 |
-
|
1836 |
-
|
1837 |
-
msgstr "Онлайн потребители"
|
1838 |
|
1839 |
-
#: includes/settings/tabs/wps-
|
1840 |
-
msgid "
|
1841 |
-
msgstr "
|
1842 |
|
1843 |
-
#: includes/settings/tabs/wps-
|
1844 |
-
msgid "
|
1845 |
-
msgstr "
|
1846 |
|
1847 |
-
#: includes/settings/tabs/wps-
|
1848 |
-
msgid "
|
1849 |
-
msgstr "
|
1850 |
|
1851 |
-
#: includes/settings/tabs/wps-
|
1852 |
-
msgid "
|
1853 |
-
msgstr "
|
1854 |
|
1855 |
-
#:
|
1856 |
-
msgid "
|
1857 |
-
msgstr "
|
1858 |
|
1859 |
-
#:
|
1860 |
-
msgid "
|
1861 |
-
msgstr "
|
1862 |
|
1863 |
-
#:
|
1864 |
-
msgid "
|
1865 |
-
msgstr "
|
1866 |
|
1867 |
-
#: includes/settings/tabs/wps-
|
1868 |
-
msgid "
|
1869 |
-
msgstr "
|
1870 |
|
1871 |
-
#: includes/settings/tabs/wps-
|
1872 |
-
msgid "
|
1873 |
-
msgstr "
|
1874 |
|
1875 |
-
#:
|
1876 |
-
|
1877 |
-
|
|
|
|
|
1878 |
|
1879 |
-
#:
|
1880 |
-
msgid "
|
1881 |
-
msgstr "
|
1882 |
|
1883 |
-
#:
|
1884 |
-
|
1885 |
-
|
|
|
|
|
1886 |
|
1887 |
-
#:
|
1888 |
-
msgid "
|
1889 |
-
msgstr "
|
1890 |
|
1891 |
-
#:
|
1892 |
-
msgid "
|
1893 |
-
msgstr "
|
1894 |
|
1895 |
-
#:
|
1896 |
-
|
1897 |
-
|
|
|
|
|
|
|
1898 |
|
1899 |
-
#:
|
1900 |
-
msgid "
|
1901 |
-
msgstr "
|
1902 |
|
1903 |
-
#:
|
1904 |
-
msgid "
|
1905 |
-
msgstr "
|
1906 |
|
1907 |
-
#:
|
1908 |
-
msgid "
|
1909 |
-
msgstr "
|
1910 |
|
1911 |
-
#: wp-statistics.php:
|
1912 |
-
msgid "
|
1913 |
-
msgstr "
|
1914 |
|
1915 |
-
#: wp-
|
1916 |
-
msgid "
|
1917 |
-
msgstr "
|
1918 |
|
1919 |
-
#: wp-statistics.php:
|
1920 |
-
msgid "
|
1921 |
-
msgstr "
|
1922 |
|
1923 |
-
#: wp-statistics.php:
|
1924 |
-
msgid "
|
1925 |
-
msgstr "
|
1926 |
|
1927 |
-
#: wp-statistics.php:
|
1928 |
-
msgid "
|
1929 |
-
msgstr "
|
1930 |
|
1931 |
-
#:
|
1932 |
-
msgid "
|
1933 |
-
msgstr "
|
1934 |
|
1935 |
-
#: wp-
|
1936 |
-
msgid "
|
1937 |
-
msgstr "
|
1938 |
|
1939 |
-
#: includes/
|
1940 |
-
|
1941 |
-
|
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-
|
1955 |
-
msgid "
|
1956 |
-
msgstr "
|
1957 |
|
1958 |
-
#:
|
1959 |
-
|
1960 |
-
|
1961 |
-
msgstr "Посетител"
|
1962 |
|
1963 |
-
#:
|
1964 |
-
|
1965 |
-
|
1966 |
-
msgstr "Посетете"
|
1967 |
|
1968 |
-
#:
|
1969 |
-
msgid "
|
1970 |
-
msgstr "
|
1971 |
|
1972 |
-
#:
|
1973 |
-
msgid "
|
1974 |
-
msgstr "
|
1975 |
|
1976 |
-
#: includes/
|
1977 |
-
msgid "
|
1978 |
-
msgstr "
|
1979 |
|
1980 |
-
#: includes/
|
1981 |
-
msgid "
|
1982 |
-
msgstr "
|
1983 |
|
1984 |
-
#: includes/
|
1985 |
-
msgid "
|
1986 |
-
msgstr "
|
1987 |
|
1988 |
-
#:
|
1989 |
-
|
1990 |
-
|
1991 |
-
msgstr "Общо"
|
1992 |
|
1993 |
-
#: includes/
|
1994 |
-
msgid "
|
1995 |
-
msgstr "
|
1996 |
|
1997 |
-
#:
|
1998 |
-
|
1999 |
-
|
2000 |
-
msgstr "Браузъри"
|
2001 |
|
2002 |
-
#: includes/
|
2003 |
-
msgid "
|
2004 |
-
msgstr "
|
2005 |
|
2006 |
-
#: includes/
|
2007 |
-
msgid "
|
2008 |
-
msgstr "
|
2009 |
|
2010 |
-
#:
|
2011 |
-
msgid "
|
2012 |
-
msgstr "
|
2013 |
|
2014 |
-
#: includes/settings/tabs/wps-
|
2015 |
-
msgid "
|
2016 |
-
msgstr "
|
2017 |
|
2018 |
-
#:
|
2019 |
-
|
2020 |
-
|
2021 |
-
msgstr "Последните посетители"
|
2022 |
|
2023 |
-
#:
|
2024 |
-
msgid "
|
2025 |
-
msgstr "
|
2026 |
|
2027 |
-
#: includes/settings/tabs/wps-
|
2028 |
-
|
2029 |
-
|
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-
|
2051 |
-
|
2052 |
-
|
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 |
-
#:
|
2061 |
-
|
2062 |
-
|
2063 |
-
msgid "Visits"
|
2064 |
-
msgstr "Посещения"
|
2065 |
|
2066 |
-
#: includes/settings/tabs/wps-
|
2067 |
-
|
2068 |
-
|
2069 |
-
msgstr "Посетители"
|
2070 |
|
2071 |
-
#: includes/settings/tabs/wps-
|
2072 |
-
msgid "
|
2073 |
-
msgstr "
|
2074 |
|
2075 |
-
#: includes/settings/tabs/wps-
|
2076 |
-
msgid "
|
2077 |
-
msgstr "
|
2078 |
|
2079 |
-
#: includes/settings/tabs/wps-
|
2080 |
-
msgid "
|
2081 |
-
msgstr "
|
2082 |
|
2083 |
-
#: includes/settings/tabs/wps-
|
2084 |
-
msgid "
|
2085 |
-
msgstr "
|
2086 |
|
2087 |
-
#: includes/settings/tabs/wps-
|
2088 |
-
msgid "
|
2089 |
-
msgstr "
|
2090 |
|
2091 |
-
#: includes/settings/tabs/wps-
|
2092 |
-
|
2093 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2094 |
|
2095 |
-
#: includes/settings/tabs/wps-
|
2096 |
-
msgid "
|
2097 |
-
msgstr "
|
2098 |
|
2099 |
-
#: includes/settings/tabs/wps-
|
2100 |
-
msgid "
|
2101 |
-
msgstr "
|
2102 |
|
2103 |
-
#: includes/settings/tabs/wps-
|
2104 |
-
msgid "
|
2105 |
-
msgstr "
|
2106 |
|
2107 |
-
#: includes/settings/tabs/wps-
|
2108 |
-
|
2109 |
-
|
|
|
2110 |
|
2111 |
-
#: includes/settings/tabs/wps-
|
2112 |
-
msgid "
|
2113 |
-
msgstr "
|
2114 |
|
2115 |
-
#: includes/settings/tabs/wps-
|
2116 |
-
|
2117 |
-
|
|
|
2118 |
|
2119 |
-
#: includes/settings/tabs/wps-
|
2120 |
-
msgid "
|
2121 |
-
msgstr "
|
2122 |
|
2123 |
-
#:
|
2124 |
-
msgid "
|
2125 |
-
msgstr "
|
2126 |
|
2127 |
-
#:
|
2128 |
-
msgid "
|
2129 |
-
msgstr "
|
2130 |
|
2131 |
-
#:
|
2132 |
-
msgid "
|
2133 |
-
msgstr "
|
2134 |
|
2135 |
-
#: includes/
|
2136 |
-
|
2137 |
-
|
2138 |
-
msgstr "Всички"
|
1 |
+
# Translation of WP Statistics in Bulgarian
|
2 |
+
# This file is distributed under the same license as the WP Statistics package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2015-01-27 19:18-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.7.4\n"
|
11 |
+
"Project-Id-Version: WP Statistics\n"
|
12 |
"POT-Creation-Date: \n"
|
13 |
"Last-Translator: \n"
|
14 |
"Language-Team: \n"
|
15 |
"Language: bg_BG\n"
|
16 |
|
17 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:93
|
18 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:133
|
19 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:149
|
20 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:188
|
21 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:200
|
22 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:229
|
23 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:122
|
24 |
+
msgid "Enable or disable this feature"
|
25 |
+
msgstr "Разрешаване или забраняване на тази функция"
|
26 |
|
27 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:99
|
28 |
+
msgid "Check for online users every"
|
29 |
+
msgstr "Проверявай за онлайн потребители на всеки"
|
30 |
|
31 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:104
|
32 |
+
msgid "Second"
|
33 |
+
msgstr "Секунда"
|
34 |
|
35 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:105
|
36 |
+
msgid "Time for the check accurate online user in the site. Now: %s Second"
|
37 |
+
msgstr "Времето за точна проверка онлайн потребителя в сайта. Сега: %s втори"
|
38 |
|
39 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:111
|
40 |
+
msgid "Record all user"
|
41 |
+
msgstr "Запишете всички потребителски"
|
42 |
|
43 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:117
|
44 |
+
msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
|
45 |
+
msgstr "Игнорира настройките за изключване и записва всички потребители, които са онлайн (включително самостоятелно реферали и роботи). Трябва да се използва само за отстраняване на проблеми."
|
|
|
|
|
|
|
46 |
|
47 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:155
|
48 |
+
msgid "Store entire user agent string"
|
49 |
+
msgstr "Съхранява цялата потребител фактор канап"
|
|
|
|
|
|
|
50 |
|
51 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:161
|
52 |
+
msgid "Only enabled for debugging"
|
53 |
+
msgstr "Разрешена за отстраняване на грешки"
|
|
|
|
|
|
|
|
|
54 |
|
55 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:167
|
56 |
+
msgid "Coefficient per visitor"
|
57 |
+
msgstr "Коефициент за потребител"
|
58 |
|
59 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:172
|
60 |
+
msgid "For each visit to account for several hits. Currently %s."
|
61 |
+
msgstr "За всяко посещение на сметка за няколко хитове. В момента %s."
|
62 |
|
63 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:177
|
64 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:182
|
65 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:295
|
66 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:368
|
67 |
+
msgid "Pages"
|
68 |
+
msgstr "Страници"
|
69 |
|
70 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:194
|
71 |
+
msgid "Track all pages"
|
72 |
+
msgstr "Проследяване на всички страници"
|
|
|
|
|
|
|
|
|
73 |
|
74 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:209
|
75 |
+
msgid "Strip parameters from URI"
|
76 |
+
msgstr "Стриптийз параметри от URI"
|
77 |
|
78 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:215
|
79 |
+
msgid "This will remove anything after the ? in a URL."
|
80 |
+
msgstr "Това ще премахне всичко, след като на? в URL."
|
|
|
|
|
|
|
|
|
|
|
|
|
81 |
|
82 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:223
|
83 |
+
msgid "Disable hits column in post/pages list"
|
84 |
+
msgstr "Забрани хитове колона пост/страници списък"
|
85 |
|
86 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:234
|
87 |
+
msgid "Miscellaneous"
|
88 |
+
msgstr "Разни"
|
89 |
|
90 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:239
|
91 |
+
msgid "Show stats in menu bar"
|
92 |
+
msgstr "Покажи статистиките в менюто"
|
|
|
93 |
|
94 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:244
|
95 |
+
msgid "No"
|
96 |
+
msgstr "Не"
|
97 |
|
98 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:245
|
99 |
+
msgid "Yes"
|
100 |
+
msgstr "Да"
|
101 |
|
102 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:247
|
103 |
+
msgid "Show stats in admin menu bar"
|
104 |
+
msgstr "Покажи статистиките в админ менюто"
|
105 |
|
106 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:253
|
107 |
+
msgid "Hide admin notices about non active features"
|
108 |
+
msgstr "Скрий администратор обявления за не са активни функции"
|
109 |
|
110 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:259
|
111 |
+
msgid "By default WP Statistics displays an alert if any of the core features are disabled on every admin page, this option will disable these notices."
|
112 |
+
msgstr "По подразбиране WP Statistics показва предупреждение, ако някой от основните функции са забранени на всяка страница, Админ, тази опция ще забраните тези съобщения."
|
|
|
|
|
|
|
113 |
|
114 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:265
|
115 |
+
msgid "Delete the manual"
|
116 |
+
msgstr "Изтриване на наръчника"
|
117 |
|
118 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:271
|
119 |
+
msgid "By default WP Statistics stores the admin manual in the plugin directory (~5 meg), if this option is enabled it will be deleted now and during upgrades in the future."
|
120 |
+
msgstr "По подразбиране WP Statistics съхранява администратор ръководство в плъгин директорията (~ 5 Мег), ако тази опция е включена тя ще бъде изтрита сега и по време на ъпгрейд в бъдеще."
|
121 |
|
122 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:276
|
123 |
+
msgid "Search Engines"
|
124 |
+
msgstr "Търсачки"
|
125 |
|
126 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:281
|
127 |
+
msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
|
128 |
+
msgstr "Деактивирането на всички търсещи машини не е позволено, това ще доведе до всички търсещи машини са активни."
|
129 |
|
130 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:296
|
131 |
+
msgid "disable"
|
132 |
+
msgstr "забрани"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
133 |
|
134 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:297
|
135 |
+
msgid "Disable %s from data collection and reporting."
|
136 |
+
msgstr "Изключете %s от събирането на данни и докладване."
|
|
|
|
|
137 |
|
138 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:303
|
139 |
+
msgid "Charts"
|
140 |
+
msgstr "Диаграми"
|
141 |
|
142 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:308
|
143 |
+
msgid "Include totals"
|
144 |
+
msgstr "Включва общи суми"
|
|
|
|
|
|
|
|
|
145 |
|
146 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:314
|
147 |
+
msgid "Add a total line to charts with multiple values, like the search engine referrals"
|
148 |
+
msgstr "Добавяне на обща линия за диаграми с множество стойности, като търсене двигател референции"
|
149 |
|
150 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:27
|
151 |
+
msgid "GeoIP settings"
|
152 |
+
msgstr "GeoIP настройки"
|
|
|
|
|
|
|
|
|
153 |
|
154 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:32
|
155 |
+
msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
|
156 |
+
msgstr "IP местоположение услуги, предоставяни от GeoLite2 данни, създадени от MaxMind, достъпни от %s."
|
157 |
|
158 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:42
|
159 |
+
msgid "GeoIP collection"
|
160 |
+
msgstr "GeoIP колекция"
|
|
|
|
|
|
|
161 |
|
162 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:48
|
163 |
+
msgid "For get more information and location (country) from visitor, enable this feature."
|
164 |
+
msgstr "За да получите повече информация и местоположението (страната) от посетител, активирате тази функция."
|
|
|
|
|
|
|
|
|
165 |
|
166 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:54
|
167 |
+
msgid "Update GeoIP Info"
|
168 |
+
msgstr "GeoIP информация актуализация"
|
|
|
|
|
169 |
|
170 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:59
|
171 |
+
msgid "Download GeoIP Database"
|
172 |
+
msgstr "Изтегли GeoIP база данни"
|
173 |
|
174 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:66
|
175 |
+
msgid "Schedule monthly update of GeoIP DB"
|
176 |
+
msgstr "Месечна актуализация график на GeoIP DB"
|
177 |
|
178 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:92
|
179 |
+
msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
|
180 |
+
msgstr "Изтегляне на GeoIP базата данни ще бъде насрочено за 2 дни след първия вторник на месеца."
|
181 |
|
182 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:93
|
183 |
+
msgid "This option will also download the database if the local filesize is less than 1k (which usually means the stub that comes with the plugin is still in place)."
|
184 |
+
msgstr "Тази опция ще изтеглите базата данни ако местните големина е по-малко от 1k, (което обикновено означава пън, която идва с приставката е все още на място)."
|
185 |
|
186 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:99
|
187 |
+
msgid "Populate missing GeoIP after update of GeoIP DB"
|
188 |
+
msgstr "Попълни липсващите GeoIP след актуализация на GeoIP DB"
|
189 |
|
190 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:105
|
191 |
+
msgid "Update any missing GeoIP data after downloading a new database."
|
192 |
+
msgstr "Липсващи GeoIP данни се актуализира след свалянето на нова база данни."
|
193 |
|
194 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:111
|
195 |
+
msgid "Country code for private IP addresses"
|
196 |
+
msgstr "Код на държавата за частни IP адреси"
|
197 |
|
198 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:116
|
199 |
+
msgid "The international standard two letter country code (ie. US = United States, CA = Canada, etc.) for private (non-routable) IP addresses (ie. 10.0.0.1, 192.158.1.1, 127.0.0.1, etc.). Use \"000\" (three zeros) to use \"Unknown\" as the country code."
|
200 |
+
msgstr "Стандартна два кода за международно избиране на страната писмо (т.е.. US = United States, CA = Canada, и т.н.) за лично (непроизводствено навигационни) IP адреси (т.е.. 10.0.0.1, 192.158.1.1, 127.0.0.1 и т.н.). Използвайте "000" (три нули) да използва "Unknown" кодът на страната."
|
201 |
|
202 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:127
|
203 |
+
msgid "GeoIP collection is disabled due to the following reasons:"
|
204 |
+
msgstr "GeoIP колекция е забранена поради следните причини:"
|
205 |
|
206 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:130
|
207 |
+
msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
|
208 |
+
msgstr "GeoIP колекция изисква PHP %s или по-горе, в момента е забранен поради инсталирани PHP версия са "
|
209 |
|
210 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:135
|
211 |
+
msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
|
212 |
+
msgstr "GeoIP колекция изисква разширение на PHP къдря и тя не е заредена на вашата версия на PHP!"
|
|
|
|
|
|
|
|
|
|
|
|
|
213 |
|
214 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:141
|
215 |
+
msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
|
216 |
+
msgstr "GeoIP колекция изисква ПР.н.е математика PHP продължаване и то не е заредена на вашата версия на PHP!"
|
|
|
|
|
|
|
|
|
217 |
|
218 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:147
|
219 |
+
msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
|
220 |
+
msgstr "Безопасен режим PHP открити! GeoIP колекция не се поддържа на PHP защитен режим!"
|
221 |
|
222 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:20
|
223 |
+
msgid "This will permanently delete data from the database each day, are you sure you want to enable this option?"
|
224 |
+
msgstr "Това ще изтрие данни от базата данни всеки ден, наистина ли искате да разрешите тази опция?"
|
225 |
|
226 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:30
|
227 |
+
msgid "Database Maintenance"
|
228 |
+
msgstr "Поддръжка на база данни"
|
|
|
|
|
229 |
|
230 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:35
|
231 |
+
msgid "Run a daily WP Cron job to prune the databases"
|
232 |
+
msgstr "Изпълни ежедневно WP Cron работа да режеш на бази данни"
|
233 |
|
234 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:41
|
235 |
+
msgid "A WP Cron job will be run daily to prune any data older than a set number of days."
|
236 |
+
msgstr "WP Cron работни места ще се изпълнява ежедневно да се режат всякакви данни, по-стари от определен брой дни."
|
237 |
|
238 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:47
|
239 |
+
msgid "Prune data older than"
|
240 |
+
msgstr "Премахване на данните по-стари от"
|
241 |
|
242 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:52
|
243 |
+
msgid "Days"
|
244 |
+
msgstr "Дни"
|
245 |
|
246 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:53
|
247 |
+
msgid "The number of days to keep statistics for. Minimum value is 30 days. Invalid values will disable the daily maintenance."
|
248 |
+
msgstr "Броят на дните за запазване на статистика за. Минималната стойност е 30 дни. Невалидни стойности ще забрани ежедневна поддръжка."
|
249 |
|
250 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:44
|
251 |
+
msgid "Common Report Options"
|
252 |
+
msgstr "Общата Съобщи Options"
|
253 |
|
254 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:49
|
255 |
+
msgid "E-mail addresses"
|
256 |
+
msgstr "Имейл адреси"
|
257 |
|
258 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:54
|
259 |
+
msgid "A comma separated list of e-mail addresses to send reports to."
|
260 |
+
msgstr "A, разделени със запетая списък с адреси на електронна поща, за да изпращате съобщения до."
|
|
|
|
|
261 |
|
262 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:59
|
263 |
+
msgid "Update Reports"
|
264 |
+
msgstr "Доклади за"
|
265 |
|
266 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:64
|
267 |
+
msgid "Browscap"
|
268 |
+
msgstr "Browscap"
|
269 |
|
270 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:70
|
271 |
+
msgid "Send a report whenever the browscap.ini is updated."
|
272 |
+
msgstr "Изпрати доклад, когато browscap.ini се актуализира."
|
273 |
|
274 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:76
|
275 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:104
|
276 |
+
msgid "GeoIP"
|
277 |
+
msgstr "GeoIP"
|
278 |
|
279 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:82
|
280 |
+
msgid "Send a report whenever the GeoIP database is updated."
|
281 |
+
msgstr "Изпрати доклад, когато базата данни на GeoIP се актуализира."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
282 |
|
283 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:88
|
284 |
+
msgid "Pruning"
|
285 |
+
msgstr "Резитбата"
|
|
|
286 |
|
287 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:94
|
288 |
+
msgid "Send a report whenever the pruning of database is run."
|
289 |
+
msgstr "Изпрати доклад, когато резитбата на база данни се управлява."
|
290 |
|
291 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:100
|
292 |
+
msgid "Upgrade"
|
293 |
+
msgstr "Upgrade"
|
|
|
|
|
|
|
|
|
294 |
|
295 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:106
|
296 |
+
msgid "Send a report whenever the plugin is upgraded."
|
297 |
+
msgstr "Изпрати доклад, когато плъгина е обновен."
|
298 |
|
299 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:111
|
300 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:116
|
301 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:152
|
302 |
+
msgid "Statistical reporting"
|
303 |
+
msgstr "Статистическата отчетност"
|
304 |
|
305 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:129
|
306 |
+
msgid "Schedule"
|
307 |
+
msgstr "График"
|
|
|
|
|
308 |
|
309 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:153
|
310 |
+
msgid "Select how often to receive statistical report."
|
311 |
+
msgstr "Изберете колко често да получава статистически отчет."
|
|
|
|
|
|
|
|
|
312 |
|
313 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:159
|
314 |
+
msgid "Send reports via"
|
315 |
+
msgstr "Изпрати отчетите чрез"
|
|
|
|
|
|
|
316 |
|
317 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:165
|
318 |
+
msgid "Email"
|
319 |
+
msgstr "Имейл"
|
|
|
320 |
|
321 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:167
|
322 |
+
msgid "SMS"
|
323 |
+
msgstr "SMS"
|
|
|
324 |
|
325 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:170
|
326 |
+
msgid "Select delivery method for statistical report."
|
327 |
+
msgstr "Изберете метод на доставка за статистически отчет."
|
|
|
|
|
|
|
|
|
|
|
|
|
328 |
|
329 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:173
|
330 |
+
msgid "Note: To send SMS text messages please install the %s plugin."
|
331 |
+
msgstr "Забележка: За да изпратите SMS текстови съобщения моля инсталирайте %s плъгин."
|
332 |
|
333 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:173
|
334 |
+
msgid "WordPress SMS"
|
335 |
+
msgstr "WordPress SMS"
|
336 |
|
337 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:180
|
338 |
+
msgid "Report body"
|
339 |
+
msgstr "Тялото на доклада"
|
|
|
|
|
|
|
|
|
|
|
|
|
340 |
|
341 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:185
|
342 |
+
msgid "Enter the contents of the report."
|
343 |
+
msgstr "Въведете съдържанието на доклада."
|
344 |
|
345 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:187
|
346 |
+
msgid "Any shortcode supported by your installation of WordPress, include all shortcodes for WP Statistics (see the admin manual for a list of codes available) are supported in the body of the message. Here are some examples:"
|
347 |
+
msgstr "Всяко Кратък поддържа от вашата инсталация на WordPress, включва всички кратки кодове за WP Статистика (виж инструкцията за администратор за списък с кодове на разположение) се поддържат в тялото на съобщението. Ето няколко примера:"
|
|
|
|
|
|
|
|
|
|
|
348 |
|
349 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
350 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:38
|
351 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:245
|
352 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:464
|
353 |
+
msgid "User Online"
|
354 |
+
msgstr "Онлайн потребители"
|
355 |
|
356 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:189
|
357 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:52
|
358 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:251
|
359 |
+
msgid "Today Visitor"
|
360 |
+
msgstr "Днес посетителите"
|
|
|
|
|
|
|
|
|
361 |
|
362 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:190
|
363 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:45
|
364 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:248
|
365 |
+
msgid "Today Visit"
|
366 |
+
msgstr "Посещения от днес"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
367 |
|
368 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:191
|
369 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:66
|
370 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:257
|
371 |
+
msgid "Yesterday Visitor"
|
372 |
+
msgstr "Вчера посетител"
|
373 |
|
374 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:192
|
375 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:59
|
376 |
+
msgid "Yesterday Visit"
|
377 |
+
msgstr "Вчерашни посещения"
|
|
|
378 |
|
379 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:193
|
380 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:101
|
381 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:272
|
382 |
+
msgid "Total Visitor"
|
383 |
+
msgstr "Общо посетител"
|
384 |
|
385 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:194
|
386 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:94
|
387 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:269
|
388 |
+
msgid "Total Visit"
|
389 |
+
msgstr "Общо посещения"
|
390 |
|
391 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:23
|
392 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:32
|
393 |
+
msgid "None"
|
394 |
+
msgstr "Няма"
|
395 |
|
396 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:24
|
397 |
+
msgid "Summary Statistics"
|
398 |
+
msgstr "Обобщена статистика"
|
399 |
|
400 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:28
|
401 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:108
|
402 |
+
msgid "About"
|
403 |
+
msgstr "За"
|
404 |
|
405 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
406 |
+
msgid "Hits Statistical Chart"
|
407 |
+
msgstr "Статистически диаграма хитове"
|
408 |
|
409 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:36
|
410 |
+
msgid "Search Engine Referrers Statistical Chart"
|
411 |
+
msgstr "Търсене двигател референтите статистически диаграма"
|
412 |
|
413 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:38
|
414 |
+
msgid "Top Pages Visited"
|
415 |
+
msgstr "Най-посещаваните страници"
|
|
|
416 |
|
417 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:73
|
418 |
+
msgid "Dashboard"
|
419 |
+
msgstr "Табло"
|
420 |
|
421 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:77
|
422 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:97
|
423 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:117
|
424 |
+
msgid "The following items are global to all users."
|
425 |
+
msgstr "Следните елементи са глобални за всички потребители."
|
426 |
|
427 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:82
|
428 |
+
msgid "Disable dashboard widgets"
|
429 |
+
msgstr "Изключване на таблото джаджи"
|
|
|
|
|
|
|
|
|
430 |
|
431 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:88
|
432 |
+
msgid "Disable the dashboard widgets."
|
433 |
+
msgstr "Забранете джунджурии таблото."
|
434 |
|
435 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:93
|
436 |
+
msgid "Page/Post Editor"
|
437 |
+
msgstr "Page / Post Editor"
|
438 |
|
439 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:102
|
440 |
+
msgid "Disable post/page editor widget"
|
441 |
+
msgstr "Disable пост / страница редактор джаджа"
|
|
|
|
|
442 |
|
443 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:108
|
444 |
+
msgid "Disable the page/post editor widget."
|
445 |
+
msgstr "Забранете страница / пост редактор джаджа."
|
446 |
|
447 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:122
|
448 |
+
msgid "Map type"
|
449 |
+
msgstr "Тип карта"
|
450 |
|
451 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:128
|
452 |
+
msgid "Google"
|
453 |
+
msgstr "Google"
|
454 |
|
455 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:128
|
456 |
+
msgid "JQVMap"
|
457 |
+
msgstr "JQVMap"
|
458 |
|
459 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:135
|
460 |
+
msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
|
461 |
+
msgstr "\"Google\" опция ще използва на Google картографска услуга да начертаете последните посетители (изисква достъп до Google)."
|
|
|
|
|
|
|
|
|
|
|
|
|
462 |
|
463 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:136
|
464 |
+
msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
|
465 |
+
msgstr "\"JQVMap\" опция ще използва JQVMap библиотека javascript картографиране да начертаете последните посетители (изисква extenral услуги)."
|
|
|
|
|
|
|
|
|
|
|
|
|
466 |
|
467 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:142
|
468 |
+
msgid "Disable map"
|
469 |
+
msgstr "Забраняване на картата"
|
|
|
|
|
|
|
|
|
|
|
|
|
470 |
|
471 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:148
|
472 |
+
msgid "Disable the map display"
|
473 |
+
msgstr "Забраняване на показването на картите"
|
|
|
|
|
|
|
|
|
474 |
|
475 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:154
|
476 |
+
msgid "Get country location from Google"
|
477 |
+
msgstr "Се страна местоположение от Google"
|
|
|
478 |
|
479 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:160
|
480 |
+
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
481 |
+
msgstr "Тази функция може да доведе до намаляване на производителността, когато разглеждате статистиката и е валидно, ако типът на картата е настроено на \"Google само\"."
|
|
|
482 |
|
483 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:171
|
484 |
+
msgid "Overview Widgets to Display"
|
485 |
+
msgstr "Преглед Widgets, за да изведете"
|
486 |
|
487 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:175
|
488 |
+
msgid "The following items are unique to each user. If you do not select the 'About' widget it will automatically be displayed in the last positon of column A."
|
489 |
+
msgstr "Следните елементи са уникални за всеки потребител. Ако не изберете \"За\" джаджа автоматично ще бъдат показани в на последните позицията на колоната A."
|
|
|
|
|
|
|
|
|
|
|
490 |
|
491 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:180
|
492 |
msgid "Slot"
|
493 |
msgstr "Слот"
|
494 |
|
495 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:184
|
496 |
msgid "Column A"
|
497 |
msgstr "Колона А"
|
498 |
|
499 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:188
|
500 |
msgid "Column B"
|
501 |
msgstr "Колона B"
|
502 |
|
503 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:194
|
504 |
msgid "Slot 1"
|
505 |
msgstr "Слот 1"
|
506 |
|
507 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:224
|
508 |
msgid "Slot 2"
|
509 |
msgstr "Слот 2"
|
510 |
|
511 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:254
|
512 |
msgid "Slot 3"
|
513 |
msgstr "Слот 3"
|
514 |
|
515 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:284
|
516 |
msgid "Slot 4"
|
517 |
msgstr "Слот 4"
|
518 |
|
519 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:314
|
520 |
msgid "Slot 5"
|
521 |
msgstr "Слот 5"
|
522 |
|
523 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:344
|
524 |
msgid "Slot 6"
|
525 |
msgstr "Слот за 6"
|
526 |
|
527 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:348
|
528 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:370
|
529 |
msgid "N/A"
|
530 |
msgstr "N/A"
|
531 |
|
532 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:366
|
533 |
+
msgid "Slot 7"
|
534 |
+
msgstr "Slot 7"
|
535 |
|
536 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:15
|
537 |
+
msgid "WP Statisitcs Removal"
|
538 |
+
msgstr "WP Statisitcs Отстраняването"
|
539 |
|
540 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:20
|
541 |
+
msgid "Uninstalling WP Statistics will not remove the data and settings, you can use this option to remove the WP Statistics data from your install before uninstalling the plugin."
|
542 |
+
msgstr "Деинсталиране на WP Статистика няма да отстраните данните и настройките, можете да използвате тази опция, за да отстраните данните WP статистика от вашия инсталирате, преди да деинсталирате приставката."
|
543 |
|
544 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:23
|
545 |
+
msgid "Once you submit this form the settings will be deleted during the page load, however WP Statistics will still show up in your Admin menu until another page load is executed."
|
546 |
+
msgstr "След като изпратите този формуляр настройките, ще бъдат изтрити по време на натоварването на страница обаче WP статистика все още ще се появи във вашето меню Admin докато друг зареждане на страницата се изпълнява."
|
547 |
|
548 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:29
|
549 |
+
msgid "Remove data and settings"
|
550 |
+
msgstr "Премахване на данни и настройки"
|
551 |
|
552 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:34
|
553 |
+
msgid "Remove"
|
554 |
+
msgstr "Премахни"
|
555 |
|
556 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:35
|
557 |
+
msgid "Remove data and settings, this action cannot be undone."
|
558 |
+
msgstr "Премахване на данни и настройки, това действие не може да бъде отменено."
|
559 |
|
560 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:100
|
561 |
+
msgid "General"
|
562 |
+
msgstr "Общи"
|
563 |
|
564 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:101
|
565 |
+
msgid "Notifications"
|
566 |
+
msgstr "Известия"
|
|
|
567 |
|
568 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:102
|
569 |
+
msgid "Dashboard/Overview"
|
570 |
+
msgstr "Dashboard / Преглед"
|
571 |
|
572 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:103
|
573 |
+
msgid "Access/Exclusions"
|
574 |
+
msgstr "Достъп/изключвания"
|
575 |
|
576 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:105
|
577 |
+
msgid "browscap"
|
578 |
+
msgstr "browscap"
|
579 |
|
580 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:106
|
581 |
+
msgid "Maintenance"
|
582 |
+
msgstr "Поддръжка"
|
583 |
|
584 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:107
|
585 |
+
msgid "Removal"
|
586 |
+
msgstr "Отстраняване"
|
587 |
|
588 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:150
|
589 |
+
msgid "Update"
|
590 |
+
msgstr "Актуализация"
|
591 |
|
592 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/manual/manual.php:29
|
593 |
+
msgid "Manual not found: %s"
|
594 |
+
msgstr "Ръководството не е намерен: %s"
|
595 |
|
596 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/manual/manual.php:39
|
597 |
+
msgid "Invalid file type selected: %s"
|
598 |
+
msgstr "Невалиден тип файл избран: %s"
|
599 |
|
600 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:10
|
601 |
+
msgid "Once Weekly"
|
602 |
+
msgstr "Веднъж седмично"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
603 |
|
604 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:17
|
605 |
+
msgid "Once Every 2 Weeks"
|
606 |
+
msgstr "Веднъж на всеки 2 седмици"
|
607 |
|
608 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:24
|
609 |
+
msgid "Once Every 4 Weeks"
|
610 |
+
msgstr "Веднъж на всеки 4 седмици"
|
611 |
|
612 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:14
|
613 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:284
|
614 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:321
|
615 |
+
msgid "Statistics"
|
616 |
+
msgstr "Статистики"
|
617 |
|
618 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:15
|
619 |
+
msgid "Show site stats in sidebar."
|
620 |
+
msgstr "Показване на статистика на сайт в страничната лента."
|
621 |
|
622 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:73
|
623 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:260
|
624 |
+
msgid "Week Visit"
|
625 |
+
msgstr "Седмични посещения"
|
626 |
|
627 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:80
|
628 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:263
|
629 |
+
msgid "Month Visit"
|
630 |
+
msgstr "Месечни посещения"
|
631 |
|
632 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:87
|
633 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:266
|
634 |
+
msgid "Years Visit"
|
635 |
+
msgstr "Годишни посещения"
|
636 |
|
637 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:108
|
638 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:275
|
639 |
+
msgid "Total Page Views"
|
640 |
+
msgstr "Общо изгледи на страница"
|
641 |
|
642 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:116
|
643 |
+
msgid "Search Engine referred"
|
644 |
+
msgstr "Търсачката по"
|
|
|
645 |
|
646 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:123
|
647 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:298
|
648 |
+
msgid "Total Posts"
|
649 |
+
msgstr "Общо публикации"
|
650 |
|
651 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:130
|
652 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:301
|
653 |
+
msgid "Total Pages"
|
654 |
+
msgstr "Общо страници"
|
655 |
|
656 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:137
|
657 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:304
|
658 |
+
msgid "Total Comments"
|
659 |
+
msgstr "Общо коментари"
|
660 |
|
661 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:144
|
662 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:307
|
663 |
+
msgid "Total Spams"
|
664 |
+
msgstr "Общо спам"
|
665 |
|
666 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:151
|
667 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:310
|
668 |
+
msgid "Total Users"
|
669 |
+
msgstr "Общо потребители"
|
670 |
|
671 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:158
|
672 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:313
|
673 |
+
msgid "Average Posts"
|
674 |
+
msgstr "Средно публикации"
|
675 |
|
676 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:165
|
677 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:316
|
678 |
+
msgid "Average Comments"
|
679 |
+
msgstr "Средно коментари"
|
680 |
|
681 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:172
|
682 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:319
|
683 |
+
msgid "Average Users"
|
684 |
+
msgstr "Средно потребители"
|
685 |
|
686 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:179
|
687 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:322
|
688 |
+
msgid "Last Post Date"
|
689 |
+
msgstr "Последно добавена публикация"
|
690 |
|
691 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:238
|
692 |
+
msgid "Name"
|
693 |
+
msgstr "Име"
|
694 |
|
695 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:242
|
696 |
+
msgid "Items"
|
697 |
+
msgstr "Броя"
|
698 |
|
699 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:254
|
700 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:489
|
701 |
+
msgid "Yesterday visit"
|
702 |
+
msgstr "Вчерашни посещения"
|
703 |
|
704 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:278
|
705 |
+
msgid "Search Engine Referred"
|
706 |
+
msgstr "Търсачката по"
|
707 |
|
708 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:281
|
709 |
+
msgid "Select type of search engine"
|
710 |
+
msgstr "Изберете тип търсачка"
|
711 |
|
712 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
|
713 |
+
msgid "ERROR: WP Statistics has detected an unsupported version of PHP, WP Statistics will not function without PHP Version "
|
714 |
+
msgstr "ГРЕШКА: WP Statistics откри неподдържана версия на PHP, WP Statistics няма да функционира без PHP версия "
|
715 |
|
716 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
|
717 |
+
msgid " or higher!"
|
718 |
+
msgstr "или по-висока!"
|
719 |
|
720 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
|
721 |
+
msgid "Your current PHP version is"
|
722 |
+
msgstr "Текущата ви PHP версия е"
|
723 |
|
724 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:42
|
725 |
+
msgid "WP Statistics has been removed, please disable and delete it."
|
726 |
+
msgstr "WP статистика беше отстранен, моля забранете и да го изтриете."
|
727 |
|
728 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:53
|
729 |
+
msgid "WP Statistics"
|
730 |
+
msgstr "WP Statistics"
|
731 |
|
732 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:54
|
733 |
+
msgid "Complete statistics for your WordPress site."
|
734 |
+
msgstr "Пълна статистика за вашия сайт WordPress."
|
735 |
|
736 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:97
|
737 |
+
msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
|
738 |
+
msgstr "Онлайн потребител, проследяване в WP Statistics не е разрешен, моля отидете на %s и го активирате."
|
739 |
|
740 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:97
|
741 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:100
|
742 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:103
|
743 |
+
msgid "setting page"
|
744 |
+
msgstr "определянето страница"
|
745 |
|
746 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:100
|
747 |
+
msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
|
748 |
+
msgstr "Хита проследяващия в WP Statistics не е разрешен, моля отидете на %s и го активирате."
|
|
|
749 |
|
750 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:103
|
751 |
+
msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
|
752 |
+
msgstr "Посетител проследяване в WP Statistics не е разрешен, моля отидете на %s и го активирате."
|
753 |
|
754 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:106
|
755 |
+
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
756 |
+
msgstr "GeoIP колекция не е активен, моля отидете на %s и активирате тази функция."
|
|
|
|
|
|
|
|
|
757 |
|
758 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:106
|
759 |
+
msgid "Setting page > GeoIP"
|
760 |
+
msgstr "Определянето страница > GeoIP"
|
761 |
|
762 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:191
|
763 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:303
|
764 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:375
|
765 |
+
msgid "Settings"
|
766 |
+
msgstr "Настройки"
|
767 |
|
768 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:203
|
769 |
+
msgid "Click here to visit the plugin on WordPress.org"
|
770 |
+
msgstr "Щракнете тук, за да посетите плъгин от WordPress.org"
|
|
|
|
|
|
|
|
|
771 |
|
772 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:203
|
773 |
+
msgid "Visit WordPress.org page"
|
774 |
+
msgstr "Посетете страницата на WordPress.org"
|
775 |
|
776 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:206
|
777 |
+
msgid "Click here to rate and review this plugin on WordPress.org"
|
778 |
+
msgstr "Щракнете тук, за да оцените и да преразгледа този плъгин от WordPress.org"
|
779 |
|
780 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:206
|
781 |
+
msgid "Rate this plugin"
|
782 |
+
msgstr "Оцени този плъгин"
|
783 |
|
784 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:250
|
785 |
+
msgid "WP Statistics - Hits"
|
786 |
+
msgstr "WP-статистика - хитове"
|
787 |
|
788 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:287
|
789 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:324
|
790 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:362
|
791 |
+
msgid "Overview"
|
792 |
+
msgstr "Общ преглед"
|
|
|
|
|
793 |
|
794 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:294
|
795 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:367
|
796 |
+
msgid "Online"
|
797 |
+
msgstr "Online"
|
798 |
|
799 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:296
|
800 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:369
|
801 |
+
msgid "Referrers"
|
802 |
+
msgstr "Референти"
|
803 |
|
804 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:297
|
805 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:370
|
806 |
+
msgid "Searches"
|
807 |
+
msgstr "Търсения"
|
808 |
|
809 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:298
|
810 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:371
|
811 |
+
msgid "Search Words"
|
812 |
+
msgstr "Думи за търсене"
|
|
|
|
|
|
|
813 |
|
814 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:299
|
815 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:372
|
816 |
+
msgid "Top Visitors Today"
|
817 |
+
msgstr "Top Посетители Днес"
|
|
|
|
|
|
|
818 |
|
819 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:302
|
820 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:374
|
821 |
+
msgid "Optimization"
|
822 |
+
msgstr "Оптимизация"
|
|
|
|
|
|
|
823 |
|
824 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:307
|
825 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:338
|
826 |
+
msgid "Manual"
|
827 |
+
msgstr "Ръководство"
|
828 |
|
829 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:353
|
830 |
+
msgid "Site"
|
831 |
+
msgstr "Място"
|
832 |
|
833 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:354
|
834 |
+
msgid "Options"
|
835 |
+
msgstr "Опции"
|
|
|
|
|
|
|
836 |
|
837 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:471
|
838 |
+
msgid "Today visitor"
|
839 |
+
msgstr "Днес посетителите"
|
840 |
|
841 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:477
|
842 |
+
msgid "Today visit"
|
843 |
+
msgstr "Днес, посетете"
|
|
|
|
|
|
|
|
|
844 |
|
845 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:483
|
846 |
+
msgid "Yesterday visitor"
|
847 |
+
msgstr "Вчера посетител"
|
848 |
|
849 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:495
|
850 |
+
msgid "View Stats"
|
851 |
+
msgstr "Преглед на статистиките"
|
852 |
|
853 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:519
|
854 |
+
msgid "Download ODF file"
|
855 |
+
msgstr "Изтегляне на ODF файл"
|
856 |
|
857 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:520
|
858 |
+
msgid "Download HTML file"
|
859 |
+
msgstr "Изтегли HTML файл"
|
|
|
|
|
|
|
|
|
860 |
|
861 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:524
|
862 |
+
msgid "Manual file not found."
|
863 |
+
msgstr "Ръчно файлът не е намерен."
|
864 |
|
865 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:591
|
866 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:702
|
867 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:736
|
868 |
+
msgid "You do not have sufficient permissions to access this page."
|
869 |
+
msgstr "Нямате права за тази страница"
|
|
|
|
|
|
|
|
|
870 |
|
871 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:604
|
872 |
+
msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
|
873 |
+
msgstr "Plugin маси не съществуват в базата данни! Моля, изпълнете отново%s инсталирате рутинна%s."
|
|
|
874 |
|
875 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-install.php:250
|
876 |
+
msgid "WP Statistics %s installed on"
|
877 |
+
msgstr "WP Статистика%s инсталиран на"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
878 |
|
879 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:34
|
880 |
+
msgid "Error downloading GeoIP database from: %s - %s"
|
881 |
+
msgstr "Грешка при изтегляне на базата от данни от GeoIP: %s - %s"
|
882 |
|
883 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:45
|
884 |
+
msgid "Error could not open downloaded GeoIP database for reading: %s"
|
885 |
+
msgstr "Грешка не може да отвори изтегления GeoIP база данни за четене: %s"
|
886 |
|
887 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:52
|
888 |
+
msgid "Error could not open destination GeoIP database for writing %s"
|
889 |
+
msgstr "Грешка не може да отвори GeoIP база данни местоназначение за писане на %s"
|
890 |
|
891 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:68
|
892 |
+
msgid "GeoIP Database updated successfully!"
|
893 |
+
msgstr "GeoIP базата данни се актуализира успешно!"
|
894 |
|
895 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:93
|
896 |
+
msgid "GeoIP update on"
|
897 |
+
msgstr "GeoIP актуализира"
|
898 |
|
899 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:160
|
900 |
+
msgid "Error downloading browscap database from: %s - %s"
|
901 |
+
msgstr "Грешка при изтегляне на browscap база данни от: %s - %s"
|
902 |
|
903 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:262
|
904 |
+
msgid "browscap database updated successfully!"
|
905 |
+
msgstr "browscap база данни, актуализирани успешно!"
|
906 |
|
907 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:273
|
908 |
+
msgid "browscap database updated failed! Cache file too large, reverting to previous browscap.ini."
|
909 |
+
msgstr "browscap база данни на актуализация не е! Cache файл е твърде голям, връщайки се към предишната browscap.ini."
|
910 |
|
911 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:281
|
912 |
+
msgid "browscap database updated failed! New browscap.ini is mis-identifing user agents as crawlers, reverting to previous browscap.ini."
|
913 |
+
msgstr "browscap база данни на актуализация не е! New browscap.ini е погрешно identifing потребителски агенти като роботи, връщайки се към предишната browscap.ini."
|
914 |
|
915 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:303
|
916 |
+
msgid "browscap already at current version!"
|
917 |
+
msgstr "browscap вече в текущата версия!"
|
918 |
|
919 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:316
|
920 |
+
msgid "Browscap.ini update on"
|
921 |
+
msgstr "Browscap.ini актуализация на"
|
922 |
|
923 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:55
|
924 |
+
msgid "Quick Stats"
|
925 |
+
msgstr "Бързи данни"
|
926 |
|
927 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:56
|
928 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:54
|
929 |
+
msgid "Top 10 Browsers"
|
930 |
+
msgstr "Топ 10 браузъри"
|
931 |
|
932 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:57
|
933 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:11
|
934 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:27
|
935 |
+
msgid "Top 10 Countries"
|
936 |
+
msgstr "Топ 10 страни"
|
937 |
|
938 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:58
|
939 |
+
msgid "Today's Visitor Map"
|
940 |
+
msgstr "Днешният Visitor Map"
|
941 |
|
942 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:59
|
943 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:46
|
944 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:8
|
945 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:8
|
946 |
+
msgid "Hit Statistics"
|
947 |
+
msgstr "Удари статистика"
|
948 |
|
949 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:60
|
950 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:11
|
951 |
+
msgid "Top 10 Pages"
|
952 |
+
msgstr "Топ 10 страници"
|
953 |
|
954 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:61
|
955 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:30
|
956 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:8
|
957 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:39
|
958 |
+
msgid "Recent Visitors"
|
959 |
+
msgstr "Последните посетители"
|
|
|
960 |
|
961 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:62
|
962 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:27
|
963 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:42
|
964 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:13
|
965 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:26
|
966 |
+
msgid "Top Referring Sites"
|
967 |
+
msgstr "Топ Препращащи сайтове"
|
968 |
|
969 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:63
|
970 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:7
|
971 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:74
|
972 |
+
msgid "Search Engine Referrals"
|
973 |
+
msgstr "Търсене двигател референции"
|
974 |
|
975 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:64
|
976 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:8
|
977 |
+
msgid "Summary"
|
978 |
+
msgstr "Резюме"
|
|
|
|
|
|
|
979 |
|
980 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:65
|
981 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:30
|
982 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:8
|
983 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:37
|
984 |
+
msgid "Latest Search Words"
|
985 |
+
msgstr "Последни думи за търсене"
|
986 |
|
987 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:66
|
988 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:8
|
989 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:35
|
990 |
+
msgid "Top 10 Visitors Today"
|
991 |
+
msgstr "Топ 10 посетители днес"
|
992 |
|
993 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:97
|
994 |
+
msgid "Please reload the dashboard to display the content of this widget."
|
995 |
+
msgstr "Моля, презаредете таблото за да се покаже съдържанието на тази джаджа."
|
|
|
|
|
|
|
|
|
996 |
|
997 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:138
|
998 |
+
msgid "WP Statistics Overview"
|
999 |
+
msgstr "WP Статистика Преглед"
|
1000 |
|
1001 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:63
|
1002 |
+
msgid "This post is not yet published."
|
1003 |
+
msgstr "Този пост все още не е публикуван."
|
1004 |
|
1005 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:26
|
1006 |
+
msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
|
1007 |
+
msgstr "Не може да зареди GeoIP базата данни, се уверете, че сте го изтеглили в страницата Настройки."
|
|
|
|
|
|
|
|
|
1008 |
|
1009 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:50
|
1010 |
+
msgid "Updated %s GeoIP records in the visitors database."
|
1011 |
+
msgstr "Актуализиран %s GeoIP записи в базата данни на посетителите."
|
1012 |
|
1013 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:21
|
1014 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:39
|
1015 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:50
|
1016 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:83
|
1017 |
+
msgid "%s data older than %s days purged successfully."
|
1018 |
+
msgstr "%s данни по-стари от %s дни, прочистват успешно."
|
1019 |
|
1020 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:23
|
1021 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:41
|
1022 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:52
|
1023 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:85
|
1024 |
+
msgid "No records found to purge from %s!"
|
1025 |
+
msgstr "Няма намерени за продухване от %s записи!"
|
|
|
1026 |
|
1027 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:98
|
1028 |
+
msgid "Database pruned on"
|
1029 |
+
msgstr "Database подрязват на"
|
1030 |
+
|
1031 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:103
|
1032 |
+
msgid "Please select a value over 30 days."
|
1033 |
+
msgstr "Моля изберете стойност над 30 дни."
|
1034 |
+
|
1035 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:8
|
1036 |
+
msgid "Browser Statistics"
|
1037 |
+
msgstr "Браузър статистика"
|
1038 |
+
|
1039 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:14
|
1040 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:98
|
1041 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:233
|
1042 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:74
|
1043 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
|
1044 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:61
|
1045 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:60
|
1046 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:17
|
1047 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:47
|
1048 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:29
|
1049 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:19
|
1050 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:137
|
1051 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:38
|
1052 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:7
|
1053 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:6
|
1054 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:9
|
1055 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:8
|
1056 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:7
|
1057 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:8
|
1058 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:9
|
1059 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:6
|
1060 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:11
|
1061 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:6
|
1062 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:7
|
1063 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:7
|
1064 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:6
|
1065 |
+
msgid "Click to toggle"
|
1066 |
+
msgstr "Щракнете за превключване"
|
1067 |
+
|
1068 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:15
|
1069 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:7
|
1070 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:25
|
1071 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:288
|
1072 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:363
|
1073 |
+
msgid "Browsers"
|
1074 |
+
msgstr "Браузъри"
|
1075 |
+
|
1076 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:42
|
1077 |
+
msgid "Browsers by type"
|
1078 |
+
msgstr "Браузъри по вид"
|
1079 |
+
|
1080 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:99
|
1081 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:34
|
1082 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:302
|
1083 |
+
msgid "Platform"
|
1084 |
+
msgstr "Платформа"
|
1085 |
+
|
1086 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:126
|
1087 |
+
msgid "Browsers by platform"
|
1088 |
+
msgstr "Браузъри по платформа"
|
1089 |
+
|
1090 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:234
|
1091 |
+
msgid "%s Version"
|
1092 |
+
msgstr "версия на %s"
|
1093 |
+
|
1094 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:8
|
1095 |
+
msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
|
1096 |
+
msgstr "Внимание: Изключване не са в момента зададени да се отчита, по-долу резултатите може да не отразява текущата статистика!"
|
1097 |
+
|
1098 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:54
|
1099 |
+
msgid "Exclusions Statistics"
|
1100 |
+
msgstr "Изключения статистика"
|
1101 |
+
|
1102 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:57
|
1103 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:12
|
1104 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:33
|
1105 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:15
|
1106 |
+
msgid "10 Days"
|
1107 |
+
msgstr "10 дни"
|
1108 |
+
|
1109 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:58
|
1110 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:13
|
1111 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:34
|
1112 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:16
|
1113 |
+
msgid "20 Days"
|
1114 |
+
msgstr "20 дни"
|
1115 |
+
|
1116 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:59
|
1117 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:14
|
1118 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:35
|
1119 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:17
|
1120 |
+
msgid "30 Days"
|
1121 |
+
msgstr "30 дни"
|
1122 |
+
|
1123 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:60
|
1124 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:15
|
1125 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:36
|
1126 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:18
|
1127 |
+
msgid "2 Months"
|
1128 |
+
msgstr "2 месеца"
|
1129 |
+
|
1130 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:61
|
1131 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:16
|
1132 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:37
|
1133 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:19
|
1134 |
+
msgid "3 Months"
|
1135 |
+
msgstr "3 месеца"
|
1136 |
+
|
1137 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:62
|
1138 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:17
|
1139 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:38
|
1140 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:20
|
1141 |
+
msgid "6 Months"
|
1142 |
+
msgstr "6 месеца"
|
1143 |
+
|
1144 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:63
|
1145 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:18
|
1146 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:39
|
1147 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
|
1148 |
+
msgid "9 Months"
|
1149 |
+
msgstr "9 месеца"
|
1150 |
+
|
1151 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:64
|
1152 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:19
|
1153 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:40
|
1154 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
|
1155 |
+
msgid "1 Year"
|
1156 |
+
msgstr "1 година"
|
1157 |
+
|
1158 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:68
|
1159 |
+
msgid "Total Exclusions: %s"
|
1160 |
+
msgstr "Общо изключения: %s"
|
1161 |
+
|
1162 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:75
|
1163 |
+
msgid "Exclusions Statistical Chart"
|
1164 |
+
msgstr "Изключения статистически диаграма"
|
1165 |
+
|
1166 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:97
|
1167 |
+
msgid "Excluded hits in the last"
|
1168 |
+
msgstr "Изключени хитове през последните"
|
1169 |
+
|
1170 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:97
|
1171 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:60
|
1172 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:71
|
1173 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:51
|
1174 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:55
|
1175 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:151
|
1176 |
+
msgid "days"
|
1177 |
+
msgstr "дни"
|
1178 |
+
|
1179 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:118
|
1180 |
+
msgid "Number of excluded hits"
|
1181 |
+
msgstr "Броя на изключените хитове"
|
1182 |
+
|
1183 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:27
|
1184 |
+
msgid "Hits Statistics Chart"
|
1185 |
+
msgstr "Хитове статистика диаграма"
|
1186 |
+
|
1187 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:60
|
1188 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:51
|
1189 |
+
msgid "Hits in the last"
|
1190 |
+
msgstr "Хитове през последните"
|
1191 |
+
|
1192 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:81
|
1193 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:72
|
1194 |
+
msgid "Number of visits and visitors"
|
1195 |
+
msgstr "Броят на посещенията и посетителите"
|
1196 |
+
|
1197 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:95
|
1198 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:86
|
1199 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:30
|
1200 |
+
msgid "Visit"
|
1201 |
+
msgstr "Посетете"
|
1202 |
+
|
1203 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:95
|
1204 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:86
|
1205 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:29
|
1206 |
+
msgid "Visitor"
|
1207 |
+
msgstr "Посетител"
|
1208 |
+
|
1209 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:62
|
1210 |
+
msgid "Latest Search Word Statistics"
|
1211 |
+
msgstr "Последни Търсене дума статистика"
|
1212 |
+
|
1213 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:97
|
1214 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:97
|
1215 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:48
|
1216 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:84
|
1217 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:71
|
1218 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:30
|
1219 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:32
|
1220 |
+
msgid "#hash#"
|
1221 |
+
msgstr "#hash #"
|
1222 |
+
|
1223 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:102
|
1224 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:102
|
1225 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:53
|
1226 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:71
|
1227 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:35
|
1228 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:39
|
1229 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:33
|
1230 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:113
|
1231 |
+
msgid "Map"
|
1232 |
+
msgstr "Карта"
|
1233 |
+
|
1234 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:139
|
1235 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:135
|
1236 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:105
|
1237 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
|
1238 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
|
1239 |
+
msgid "Page"
|
1240 |
+
msgstr "Страница"
|
1241 |
+
|
1242 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:139
|
1243 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:135
|
1244 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:105
|
1245 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
|
1246 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
|
1247 |
+
msgid "From"
|
1248 |
+
msgstr "От"
|
1249 |
+
|
1250 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:32
|
1251 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:29
|
1252 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:135
|
1253 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:294
|
1254 |
+
msgid "All"
|
1255 |
+
msgstr "Всички"
|
1256 |
+
|
1257 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:62
|
1258 |
+
msgid "Search for"
|
1259 |
+
msgstr "Търсене за"
|
1260 |
+
|
1261 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:64
|
1262 |
+
msgid "Recent Visitor Statistics"
|
1263 |
+
msgstr "Последните посетител статистика"
|
1264 |
+
|
1265 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:11
|
1266 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:18
|
1267 |
+
msgid "Online Users"
|
1268 |
+
msgstr "Онлайн потребители"
|
1269 |
+
|
1270 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:73
|
1271 |
+
msgid "Online for "
|
1272 |
+
msgstr "Online за"
|
1273 |
+
|
1274 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:29
|
1275 |
+
msgid "Page Trend for Post ID"
|
1276 |
+
msgstr "Страница тенденция за пост номер"
|
1277 |
+
|
1278 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:48
|
1279 |
+
msgid "Page Trend"
|
1280 |
+
msgstr "Страница тенденция"
|
1281 |
+
|
1282 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:11
|
1283 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:30
|
1284 |
+
msgid "Search Engine Referral Statistics"
|
1285 |
+
msgstr "Търсене двигател сезиране статистика"
|
1286 |
+
|
1287 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:71
|
1288 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:55
|
1289 |
+
msgid "Search engine referrals in the last"
|
1290 |
+
msgstr "Търсене двигател референции в последните"
|
1291 |
+
|
1292 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:92
|
1293 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:76
|
1294 |
+
msgid "Number of referrals"
|
1295 |
+
msgstr "Брой препращания"
|
1296 |
+
|
1297 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:106
|
1298 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:90
|
1299 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:64
|
1300 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:104
|
1301 |
+
msgid "Total"
|
1302 |
+
msgstr "Общо"
|
1303 |
+
|
1304 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:11
|
1305 |
+
msgid "Top Countries"
|
1306 |
+
msgstr "Топ страни"
|
1307 |
+
|
1308 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:20
|
1309 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:30
|
1310 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:27
|
1311 |
+
msgid "Rank"
|
1312 |
+
msgstr "Ранг"
|
1313 |
+
|
1314 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:21
|
1315 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:31
|
1316 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:29
|
1317 |
+
msgid "Flag"
|
1318 |
+
msgstr "Флаг"
|
1319 |
+
|
1320 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:22
|
1321 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:32
|
1322 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:30
|
1323 |
+
msgid "Country"
|
1324 |
+
msgstr "Страна"
|
1325 |
+
|
1326 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:23
|
1327 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:33
|
1328 |
+
msgid "Visitor Count"
|
1329 |
+
msgstr "Посетител брой"
|
1330 |
+
|
1331 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:13
|
1332 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:138
|
1333 |
+
msgid "Top Pages"
|
1334 |
+
msgstr "Топ страници"
|
1335 |
+
|
1336 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:20
|
1337 |
+
msgid "Top 5 Pages Trends"
|
1338 |
+
msgstr "Топ 5 страници тенденции"
|
1339 |
+
|
1340 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:49
|
1341 |
+
msgid "Top 5 Page Trending Stats"
|
1342 |
+
msgstr "Топ 5 страница тенденция статистика"
|
1343 |
+
|
1344 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:70
|
1345 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/page.php:58
|
1346 |
+
msgid "Number of Hits"
|
1347 |
+
msgstr "Брой посещения"
|
1348 |
+
|
1349 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:166
|
1350 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:32
|
1351 |
+
msgid "No page title found"
|
1352 |
+
msgstr "Няма намерени заглавието на страницата"
|
1353 |
+
|
1354 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:169
|
1355 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:35
|
1356 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:37
|
1357 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:122
|
1358 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:127
|
1359 |
+
msgid "Visits"
|
1360 |
+
msgstr "Посещения"
|
1361 |
+
|
1362 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:4
|
1363 |
+
msgid "To be added soon"
|
1364 |
+
msgstr "Да бъде добавена скоро"
|
1365 |
+
|
1366 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:40
|
1367 |
+
msgid "Referring sites from"
|
1368 |
+
msgstr "Препращащи сайтове от"
|
1369 |
+
|
1370 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:110
|
1371 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:30
|
1372 |
+
msgid "References"
|
1373 |
+
msgstr "Препратки"
|
1374 |
+
|
1375 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-visitors.php:12
|
1376 |
+
msgid "Top 100 Visitors Today"
|
1377 |
+
msgstr "Топ 100 посетители днес"
|
1378 |
+
|
1379 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:8
|
1380 |
+
msgid "About WP Statistics Version %s"
|
1381 |
+
msgstr "За WP Statistics версия %s"
|
1382 |
+
|
1383 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:25
|
1384 |
+
msgid "Website"
|
1385 |
+
msgstr "Уебсайт"
|
1386 |
|
1387 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:26
|
1388 |
+
msgid "Rate and Review"
|
1389 |
+
msgstr "И преглед"
|
1390 |
+
|
1391 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:30
|
1392 |
+
msgid "More Information"
|
1393 |
+
msgstr "Повече информация"
|
1394 |
+
|
1395 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:39
|
1396 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:12
|
1397 |
+
msgid "This product includes GeoLite2 data created by MaxMind, available from %s."
|
1398 |
+
msgstr "Този продукт съдържа GeoLite2 данни, създадени от MaxMind, достъпни от %s."
|
1399 |
+
|
1400 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:7
|
1401 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:11
|
1402 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:8
|
1403 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:11
|
1404 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:8
|
1405 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:13
|
1406 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:7
|
1407 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:8
|
1408 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:8
|
1409 |
+
msgid "More"
|
1410 |
+
msgstr "Повече"
|
1411 |
+
|
1412 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:47
|
1413 |
+
msgid "Other"
|
1414 |
+
msgstr "Други"
|
1415 |
+
|
1416 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:9
|
1417 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:9
|
1418 |
+
msgid "Today Visitors Map"
|
1419 |
+
msgstr "Днес посетителите карта"
|
1420 |
+
|
1421 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:31
|
1422 |
+
msgid "Address"
|
1423 |
+
msgstr "Адрес"
|
1424 |
+
|
1425 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:23
|
1426 |
+
msgid "User(s) Online"
|
1427 |
+
msgstr "Потребител(и) онлайн"
|
1428 |
+
|
1429 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:34
|
1430 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:79
|
1431 |
+
msgid "Today"
|
1432 |
+
msgstr "Днес"
|
1433 |
+
|
1434 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:40
|
1435 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:80
|
1436 |
+
msgid "Yesterday"
|
1437 |
+
msgstr "Вчера"
|
1438 |
+
|
1439 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:46
|
1440 |
+
msgid "Week"
|
1441 |
+
msgstr "Седмица"
|
1442 |
+
|
1443 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:52
|
1444 |
+
msgid "Month"
|
1445 |
+
msgstr "Месец"
|
1446 |
+
|
1447 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:58
|
1448 |
+
msgid "Year"
|
1449 |
+
msgstr "Година"
|
1450 |
+
|
1451 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:98
|
1452 |
msgid "Daily Total"
|
1453 |
msgstr "Ежедневно общо"
|
1454 |
|
1455 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:117
|
1456 |
msgid "Current Time and Date"
|
1457 |
msgstr "Текущия час и дата"
|
1458 |
|
1459 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:117
|
1460 |
+
msgid "(Adjustment)"
|
1461 |
+
msgstr "(Корекция)"
|
1462 |
+
|
1463 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:121
|
1464 |
+
msgid "Date: %s"
|
1465 |
+
msgstr "Дата: %s"
|
1466 |
+
|
1467 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:125
|
1468 |
+
msgid "Time: %s"
|
1469 |
+
msgstr "Време: %s"
|
1470 |
+
|
1471 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:28
|
1472 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:215
|
1473 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:293
|
1474 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:366
|
1475 |
+
msgid "Hits"
|
1476 |
+
msgstr "Посещения"
|
1477 |
+
|
1478 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:31
|
1479 |
+
msgid "IP"
|
1480 |
+
msgstr "IP"
|
1481 |
+
|
1482 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:33
|
1483 |
+
msgid "Agent"
|
1484 |
+
msgstr "Агент"
|
1485 |
+
|
1486 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:35
|
1487 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:291
|
1488 |
+
msgid "Version"
|
1489 |
+
msgstr "Версия"
|
1490 |
+
|
1491 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:5
|
1492 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:5
|
1493 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:5
|
1494 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:5
|
1495 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:6
|
1496 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:6
|
1497 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/manual/manual.php:5
|
1498 |
+
msgid "Access denied!"
|
1499 |
+
msgstr "Отказан достъп!"
|
1500 |
+
|
1501 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:14
|
1502 |
+
msgid "%s agent data deleted successfully."
|
1503 |
+
msgstr "%s агент данни изтрито успешно."
|
1504 |
+
|
1505 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:17
|
1506 |
+
msgid "No agent data found to remove!"
|
1507 |
+
msgstr "Няма данни за агенцията намерени за премахване!"
|
1508 |
+
|
1509 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:21
|
1510 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:21
|
1511 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:42
|
1512 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:57
|
1513 |
+
msgid "Please select the desired items."
|
1514 |
+
msgstr "Моля изберете желаните елементи."
|
1515 |
+
|
1516 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:14
|
1517 |
+
msgid "%s platform data deleted successfully."
|
1518 |
+
msgstr "%s платформа данни изтрито успешно."
|
1519 |
+
|
1520 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:17
|
1521 |
+
msgid "No platform data found to remove!"
|
1522 |
+
msgstr "Няма данни платформа намерени за премахване!"
|
1523 |
+
|
1524 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:53
|
1525 |
+
msgid "%s table data deleted successfully."
|
1526 |
+
msgstr "%s таблични данни изтрито успешно."
|
1527 |
+
|
1528 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:57
|
1529 |
+
msgid "Error, %s not emptied!"
|
1530 |
+
msgstr "Грешка, %s не се изпразва!"
|
1531 |
+
|
1532 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:5
|
1533 |
+
msgid "Database Setup"
|
1534 |
+
msgstr "Настройка на база данни"
|
1535 |
+
|
1536 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:10
|
1537 |
+
msgid "Re-run Install"
|
1538 |
+
msgstr "Изпълнете отново инсталиране"
|
1539 |
+
|
1540 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:14
|
1541 |
+
msgid "Install Now!"
|
1542 |
+
msgstr "Инсталирай сега!"
|
1543 |
+
|
1544 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:15
|
1545 |
+
msgid "If for some reason your installation of WP Statistics is missing the database tables or other core items, this will re-execute the install process."
|
1546 |
+
msgstr "Ако по някаква причина вашата инсталация на WP Statistics липсва таблиците в базата данни или други основни елементи, това отново ще изпълни процеса на инсталиране."
|
1547 |
+
|
1548 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:20
|
1549 |
+
msgid "Database Index"
|
1550 |
+
msgstr "Индекс на база данни"
|
1551 |
+
|
1552 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1553 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1554 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:290
|
1555 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:364
|
1556 |
+
msgid "Countries"
|
1557 |
+
msgstr "Страни"
|
1558 |
+
|
1559 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:39
|
1560 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:25
|
1561 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:40
|
1562 |
msgid "Update Now!"
|
1563 |
msgstr "Актуализирай сега!"
|
1564 |
|
1565 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:40
|
1566 |
+
msgid "Older installs of WP Statistics allow for duplicate entries in the visitors table in a corner case. Newer installs protect against this with a unique index on the table. To create the index on the older installs duplicate entries must be deleted first. Clicking \"Update Now\" will scan the vistitors table, delete duplicate entries and add the index."
|
1567 |
+
msgstr "По-старите инсталации на WP Statistics позволяват дублиране на записи в таблицата на посетителите в ъгъла случай. По-новите инсталира защита срещу това с уникален индекс на масата. За да създадете индекса на на по-старите инсталира дублираните записи трябва да бъдат изтрити първи. Щракнете върху \"Update Now\" ще сканира таблицата vistitors, изтриване на дублиращи се записи и да добавите към индекса."
|
|
|
|
|
|
|
|
|
|
|
|
|
1568 |
|
1569 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:41
|
1570 |
+
msgid "This operation could take a long time on installs with many rows in the visitors table."
|
1571 |
+
msgstr "Тази операция може да отнеме много време на настанявам с много редове в таблицата на посетителите."
|
|
|
|
|
|
|
|
|
1572 |
|
1573 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:46
|
1574 |
+
msgid "Older installs of WP Statistics allow for duplicate entries in the visitors table in a corner case. Newer installs protect against this with a unique index on the table."
|
1575 |
+
msgstr "По-старите инсталации на WP Statistics позволяват дублиране на записи в таблицата на посетителите в ъгъла случай. По-новите инсталира защита срещу това с уникален индекс на масата."
|
1576 |
|
1577 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:47
|
1578 |
+
msgid "Congratulations, your installation is already up to date, nothing to do."
|
1579 |
+
msgstr "Поздравления вашата инсталация е вече до дата, нищо общо."
|
1580 |
|
1581 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:7
|
1582 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:147
|
1583 |
+
msgid "Export"
|
1584 |
+
msgstr "Износ"
|
1585 |
|
1586 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:12
|
1587 |
+
msgid "Export from"
|
1588 |
+
msgstr "Износ от"
|
|
|
|
|
|
|
|
|
1589 |
|
1590 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:17
|
1591 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:35
|
1592 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:129
|
1593 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:170
|
1594 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:194
|
1595 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:134
|
1596 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:164
|
1597 |
+
msgid "Please select"
|
1598 |
+
msgstr "Моля изберете"
|
1599 |
|
1600 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:24
|
1601 |
+
msgid "Select the table for the output file."
|
1602 |
+
msgstr "Изберете таблицата за изходния файл."
|
1603 |
|
1604 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:30
|
1605 |
+
msgid "Export To"
|
1606 |
+
msgstr "Експортиране в"
|
1607 |
+
|
1608 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:41
|
1609 |
+
msgid "Select the output file type."
|
1610 |
+
msgstr "Изберете типа на изходния файл."
|
1611 |
+
|
1612 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:47
|
1613 |
+
msgid "Include Header Row"
|
1614 |
+
msgstr "Включва заглавен ред"
|
1615 |
+
|
1616 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:52
|
1617 |
+
msgid "Include a header row as the first line of the exported file."
|
1618 |
+
msgstr "Включва заглавен ред на първия ред от експортирания файл."
|
1619 |
+
|
1620 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:53
|
1621 |
+
msgid "Start Now!"
|
1622 |
+
msgstr "Започнете сега!"
|
1623 |
+
|
1624 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:15
|
1625 |
+
msgid "Historical Values"
|
1626 |
+
msgstr "Исторически ценности"
|
1627 |
+
|
1628 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:20
|
1629 |
+
msgid "Note: As you have just purged the database you must reload this page for these numbers to be correct."
|
1630 |
+
msgstr "Забележка: Тъй като току-що сте продухва базата данни, която трябва да се презарежда страницата за тези числа са верни."
|
1631 |
+
|
1632 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:26
|
1633 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:138
|
1634 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:143
|
1635 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:300
|
1636 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:373
|
1637 |
+
msgid "Visitors"
|
1638 |
+
msgstr "Посетители"
|
1639 |
+
|
1640 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:31
|
1641 |
+
msgid "Number of historical number of visitors to the site (current value is %s)."
|
1642 |
+
msgstr "Брой на историческата броя на посетителите на сайта (текуща стойност е%s)."
|
1643 |
+
|
1644 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:42
|
1645 |
+
msgid "Number of historical number of visits to the site (current value is %s)."
|
1646 |
+
msgstr "Брой на историческата брой посещения на сайта (текуща стойност е%s)."
|
1647 |
+
|
1648 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:48
|
1649 |
+
msgid "Update now!"
|
1650 |
+
msgstr "Актуализиране сега!"
|
1651 |
+
|
1652 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:10
|
1653 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:37
|
1654 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:63
|
1655 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:91
|
1656 |
+
msgid "Are you sure?"
|
1657 |
+
msgstr "Сигурни ли сте?"
|
1658 |
+
|
1659 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:119
|
1660 |
+
msgid "Data"
|
1661 |
+
msgstr "Данни"
|
1662 |
+
|
1663 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:124
|
1664 |
+
msgid "Empty Table"
|
1665 |
+
msgstr "Празна таблица"
|
1666 |
+
|
1667 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:137
|
1668 |
+
msgid "All data table will be lost."
|
1669 |
+
msgstr "Таблица с всички данни ще бъдат загубени."
|
1670 |
+
|
1671 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:138
|
1672 |
+
msgid "Clear now!"
|
1673 |
+
msgstr "Изчистване сега!"
|
1674 |
+
|
1675 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:146
|
1676 |
+
msgid "Purge records older than"
|
1677 |
+
msgstr "Изтриване на записи по-стари от"
|
1678 |
+
|
1679 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:152
|
1680 |
+
msgid "Deleted user statistics data older than the selected number of days. Minimum value is 30 days."
|
1681 |
+
msgstr "Изтрит потребител статистика данни по-стари от определен брой дни. Минималната стойност е 30 дни."
|
1682 |
+
|
1683 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:153
|
1684 |
+
msgid "Purge now!"
|
1685 |
+
msgstr "Чистка сега!"
|
1686 |
+
|
1687 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:160
|
1688 |
+
msgid "Delete User Agent Types"
|
1689 |
+
msgstr "Изтриване на потребителски агент типове"
|
1690 |
+
|
1691 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:165
|
1692 |
+
msgid "Delete Agents"
|
1693 |
+
msgstr "Изтриване на агенти"
|
1694 |
+
|
1695 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:180
|
1696 |
+
msgid "All visitor data will be lost for this agent type."
|
1697 |
+
msgstr "Всички посетител данни ще бъдат загубени за този агент тип."
|
1698 |
+
|
1699 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:181
|
1700 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:205
|
1701 |
+
msgid "Delete now!"
|
1702 |
+
msgstr "Изтриване сега!"
|
1703 |
+
|
1704 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:189
|
1705 |
+
msgid "Delete Platforms"
|
1706 |
+
msgstr "Изтриване на платформи"
|
1707 |
+
|
1708 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:204
|
1709 |
+
msgid "All visitor data will be lost for this platform type."
|
1710 |
+
msgstr "Всички посетител данни ще бъдат загубени за тази платформа тип."
|
1711 |
+
|
1712 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:17
|
1713 |
+
msgid "Resources"
|
1714 |
+
msgstr "Ресурси"
|
1715 |
+
|
1716 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:22
|
1717 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:27
|
1718 |
+
msgid "Memory usage in PHP"
|
1719 |
+
msgstr "Памет отнасяне в PHP"
|
1720 |
+
|
1721 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:26
|
1722 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:37
|
1723 |
+
msgid "Byte"
|
1724 |
+
msgstr "Байт"
|
1725 |
+
|
1726 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:33
|
1727 |
+
msgid "Last Overview page memory usage"
|
1728 |
+
msgstr "Последна Преглед ползване памет страница"
|
1729 |
+
|
1730 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:38
|
1731 |
+
msgid "Memory usage in the overview page"
|
1732 |
+
msgstr "Използване на паметта в обзорната страница"
|
1733 |
+
|
1734 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:44
|
1735 |
+
msgid "PHP Memory Limit"
|
1736 |
+
msgstr "PHP памет граница"
|
1737 |
+
|
1738 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:49
|
1739 |
+
msgid "The memory limit a script is allowed to consume, set in php.ini."
|
1740 |
+
msgstr "Памет граница скрипт е разрешено да се консумират, определени в php.ini."
|
1741 |
+
|
1742 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:55
|
1743 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:66
|
1744 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:77
|
1745 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:88
|
1746 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:99
|
1747 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:110
|
1748 |
+
msgid "Number of rows in the %s table"
|
1749 |
+
msgstr "Брой редове в таблицата на %s"
|
1750 |
|
1751 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:59
|
1752 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:70
|
1753 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:81
|
1754 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:92
|
1755 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:103
|
1756 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:114
|
1757 |
+
msgid "Row"
|
1758 |
+
msgstr "Ред"
|
1759 |
|
1760 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:60
|
1761 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:71
|
1762 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:82
|
1763 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:93
|
1764 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:104
|
1765 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:115
|
1766 |
+
msgid "Number of rows"
|
1767 |
+
msgstr "Брой редове"
|
1768 |
+
|
1769 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:120
|
1770 |
msgid "Version Info"
|
1771 |
msgstr "Информация за версията"
|
1772 |
|
1773 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:125
|
1774 |
msgid "WP Statistics Version"
|
1775 |
msgstr "Статистика на WP версия"
|
1776 |
|
1777 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:130
|
1778 |
msgid "The WP Statistics version you are running."
|
1779 |
msgstr "Версията на WP Statistics, която изпълнявате."
|
1780 |
|
1781 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:136
|
1782 |
msgid "PHP Version"
|
1783 |
msgstr "PHP версия"
|
1784 |
|
1785 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:141
|
1786 |
msgid "The PHP version you are running."
|
1787 |
msgstr "Версията на PHP, която изпълнявате."
|
1788 |
|
1789 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:147
|
1790 |
+
msgid "PHP Safe Mode"
|
1791 |
+
msgstr "PHP безопасен режим"
|
1792 |
+
|
1793 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:152
|
1794 |
+
msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
|
1795 |
+
msgstr "Се сигурния режим на PHP активни. GeoIP код не се поддържа в безопасен режим."
|
1796 |
+
|
1797 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:158
|
1798 |
msgid "jQuery Version"
|
1799 |
msgstr "jQuery версия"
|
1800 |
|
1801 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:163
|
1802 |
msgid "The jQuery version you are running."
|
1803 |
msgstr "JQuery версия, която изпълнявате."
|
1804 |
|
1805 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:169
|
1806 |
+
msgid "cURL Version"
|
1807 |
+
msgstr "Навийте версия"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1808 |
|
1809 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:173
|
1810 |
+
msgid "cURL not installed"
|
1811 |
+
msgstr "Навийте не е инсталиран"
|
1812 |
|
1813 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:174
|
1814 |
+
msgid "The PHP cURL Extension version you are running. cURL is required for the GeoIP code, if it is not installed GeoIP will be disabled."
|
1815 |
+
msgstr "PHP къдря версия на разширение, която изпълнявате. Навийте се изисква за GeoIP код, ако не е инсталиран GeoIP ще бъде забранена."
|
1816 |
|
1817 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:180
|
1818 |
+
msgid "BC Math"
|
1819 |
+
msgstr "Математика ПР.н.е."
|
|
|
|
|
|
|
|
|
1820 |
|
1821 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:184
|
1822 |
+
msgid "Installed"
|
1823 |
+
msgstr "Инсталирани"
|
1824 |
|
1825 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:184
|
1826 |
+
msgid "Not installed"
|
1827 |
+
msgstr "Не е инсталиран"
|
|
|
|
|
1828 |
|
1829 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:185
|
1830 |
+
msgid "If the PHP BC Math Extension is installed. BC Math is no longer required for the GeoIP code and is listed here only for historical reasons."
|
1831 |
+
msgstr "Ако PHP ПР.н.е математика разширението е инсталирано. ПР.н.е математика вече не е необходима за GeoIP код и е изброени тук само с исторически причини."
|
1832 |
|
1833 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:190
|
1834 |
+
msgid "File Info"
|
1835 |
+
msgstr "Инфо за файла"
|
1836 |
|
1837 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:195
|
1838 |
+
msgid "GeoIP Database"
|
1839 |
+
msgstr "GeoIP база данни"
|
1840 |
|
1841 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:204
|
1842 |
+
msgid "Database file does not exist."
|
1843 |
+
msgstr "Файл от база данни не съществува."
|
1844 |
|
1845 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:206
|
1846 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:225
|
1847 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:244
|
1848 |
+
msgid ", created on "
|
1849 |
+
msgstr ", създаден на "
|
1850 |
|
1851 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:208
|
1852 |
+
msgid "The file size and date of the GeoIP database."
|
1853 |
+
msgstr "Размера на файла и датата на GeoIP базата данни."
|
1854 |
|
1855 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:214
|
1856 |
+
msgid "browscap.ini File"
|
1857 |
+
msgstr "browscap.ini файл"
|
1858 |
|
1859 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:223
|
1860 |
+
msgid "browscap.ini file does not exist."
|
1861 |
+
msgstr "browscap.ini файл не съществува."
|
1862 |
|
1863 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:227
|
1864 |
+
msgid "The file size and date of the browscap.ini file."
|
1865 |
+
msgstr "Размера на файла и датата на файла browscap.ini."
|
1866 |
|
1867 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:233
|
1868 |
+
msgid "browscap Cache File"
|
1869 |
+
msgstr "browscap кеш файл"
|
|
|
1870 |
|
1871 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:242
|
1872 |
+
msgid "browscap cache file does not exist."
|
1873 |
+
msgstr "browscap кеш файл не съществува."
|
|
|
1874 |
|
1875 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:246
|
1876 |
+
msgid "The file size and date of the browscap cache file."
|
1877 |
+
msgstr "Размера на файла и датата на кеш файла на browscap."
|
|
|
1878 |
|
1879 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:251
|
1880 |
+
msgid "Client Info"
|
1881 |
+
msgstr "Информация за клиента"
|
|
|
1882 |
|
1883 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:256
|
1884 |
+
msgid "Client IP"
|
1885 |
+
msgstr "Клиент IP"
|
|
|
1886 |
|
1887 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:261
|
1888 |
+
msgid "The client IP address."
|
1889 |
+
msgstr "IP адреса на клиента."
|
|
|
1890 |
|
1891 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:267
|
1892 |
+
msgid "User Agent"
|
1893 |
+
msgstr "Потребителски агент"
|
|
|
1894 |
|
1895 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:272
|
1896 |
+
msgid "The client user agent string."
|
1897 |
+
msgstr "Клиент потребител фактор канап."
|
|
|
1898 |
|
1899 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:278
|
1900 |
+
msgid "Browser"
|
1901 |
+
msgstr "Browser"
|
1902 |
|
1903 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:285
|
1904 |
+
msgid "The detected client browser."
|
1905 |
+
msgstr "The открити клиентски браузър."
|
|
|
|
|
|
|
1906 |
|
1907 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:296
|
1908 |
+
msgid "The detected client browser version."
|
1909 |
+
msgstr "Открити клиентски браузър версия."
|
|
|
1910 |
|
1911 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:307
|
1912 |
+
msgid "The detected client platform."
|
1913 |
+
msgstr "Открити клиентски платформа."
|
1914 |
|
1915 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:4
|
1916 |
+
msgid "This will replace all IP addresses in the database with hash values and cannot be undo, are you sure?"
|
1917 |
+
msgstr "Това ще замести всички IP адреси в базата данни с хашиш стойности и не може да се отмени, сигурен ли сте?"
|
1918 |
|
1919 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:16
|
1920 |
+
msgid "GeoIP Options"
|
1921 |
+
msgstr "GeoIP опции"
|
1922 |
|
1923 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:26
|
1924 |
+
msgid "Updates any unknown location data in the database, this may take a while"
|
1925 |
+
msgstr "Актуализира неизвестно местоположение данни в базата данни, това може да отнеме известно време"
|
1926 |
|
1927 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:31
|
1928 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:66
|
1929 |
+
msgid "IP Addresses"
|
1930 |
+
msgstr "IP адреси"
|
1931 |
|
1932 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:36
|
1933 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:71
|
1934 |
+
msgid "Hash IP Addresses"
|
1935 |
+
msgstr "Хеш IP адреси"
|
1936 |
|
1937 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:41
|
1938 |
+
msgid "Replace IP addresses in the database with hash values, you will not be able to recover the IP addresses in the future to populate location information afterwards and this may take a while"
|
1939 |
+
msgstr "Замени IP адреси в базата данни с хашиш стойности, вие няма да можете да възстановите IP адресите в бъдеще да попълните местоположението информация след това и това може да отнеме известно време"
|
1940 |
|
1941 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:43
|
1942 |
+
msgid "IP Addresses replaced with hash values."
|
1943 |
+
msgstr "IP адреси се заменят с хеш стойности."
|
1944 |
|
1945 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:51
|
1946 |
+
msgid "Install routine complete."
|
1947 |
+
msgstr "Инсталиране на ежедневието пълна."
|
|
|
1948 |
|
1949 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:146
|
1950 |
+
msgid "Resources/Information"
|
1951 |
+
msgstr "Ресурси/информация"
|
1952 |
|
1953 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:148
|
1954 |
+
msgid "Purging"
|
1955 |
+
msgstr "Прочистване"
|
1956 |
|
1957 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:149
|
1958 |
+
msgid "Database"
|
1959 |
+
msgstr "База данни"
|
1960 |
|
1961 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:150
|
1962 |
+
msgid "Updates"
|
1963 |
+
msgstr "Актуализации"
|
1964 |
|
1965 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:151
|
1966 |
+
msgid "Historical"
|
1967 |
+
msgstr "Исторически"
|
1968 |
|
1969 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:8
|
1970 |
+
msgid "WP Statistics V%s"
|
1971 |
+
msgstr "WP Statistics V %s"
|
1972 |
|
1973 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:20
|
1974 |
+
msgid "Visit Us Online"
|
1975 |
+
msgstr "Посетете ни онлайн"
|
1976 |
|
1977 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:24
|
1978 |
+
msgid "Come visit our great new %s and keep up to date on the latest news about WP Statistics."
|
1979 |
+
msgstr "Елате ни голям нов %s и поддържа актуална с последните новини за WP Statistics."
|
1980 |
|
1981 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:24
|
1982 |
+
msgid "website"
|
1983 |
+
msgstr "уебсайт"
|
1984 |
|
1985 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:28
|
1986 |
+
msgid "Rate and Review at WordPress.org"
|
1987 |
+
msgstr "И преглед в WordPress.org"
|
|
|
1988 |
|
1989 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:32
|
1990 |
+
msgid "Thanks for installing WP Statistics, we encourage you to submit a "
|
1991 |
+
msgstr "Благодаря за инсталиране на WP Statistics, ние ви препоръчваме да изпратите "
|
|
|
|
|
|
|
1992 |
|
1993 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:32
|
1994 |
+
msgid "rating and review"
|
1995 |
+
msgstr "Оценка и преглед"
|
1996 |
|
1997 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:32
|
1998 |
+
msgid "over at WordPress.org. Your feedback is greatly appreciated!"
|
1999 |
+
msgstr "над в WordPress.org. Вашето мнение е много оценявам!"
|
2000 |
|
2001 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:36
|
2002 |
+
msgid "Translations"
|
2003 |
+
msgstr "Преводи"
|
|
|
|
|
|
|
|
|
2004 |
|
2005 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:40
|
2006 |
+
msgid "WP Statistics supports internationalization and we encourage our users to submit translations, please visit our %s to see the current status and %s if you would like to help."
|
2007 |
+
msgstr "WP Statistics подкрепя интернационализацията и ние насърчаваме потребителите да представят преводи, моля посетете нашия %s да видите текущото състояние и %s, ако искате да помогне."
|
|
|
|
|
2008 |
|
2009 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:40
|
2010 |
+
msgid "translation collaboration site"
|
2011 |
+
msgstr "сайт за съвместна работа на превод"
|
2012 |
|
2013 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:40
|
2014 |
+
msgid "drop us a line"
|
2015 |
+
msgstr "пишете ни линия"
|
|
|
2016 |
|
2017 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:44
|
2018 |
+
msgid "Support"
|
2019 |
+
msgstr "Поддръжка"
|
2020 |
|
2021 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:49
|
2022 |
+
msgid "We're sorry you're having problem with WP Statistics and we're happy to help out. Here are a few things to do before contacting us:"
|
2023 |
+
msgstr "Ние сме съжалявам, имате проблем с WP Statistics и ние сме щастливи да помогне. Ето няколко неща, за да направите преди да се свържете с нас:"
|
|
|
|
|
|
|
|
|
2024 |
|
2025 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:52
|
2026 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:53
|
2027 |
+
msgid "Have you read the %s?"
|
2028 |
+
msgstr "Чели ли сте на %s?"
|
|
|
|
|
|
|
2029 |
|
2030 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:52
|
2031 |
+
msgid "FAQs"
|
2032 |
+
msgstr "Често задавани въпроси"
|
|
|
2033 |
|
2034 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:53
|
2035 |
+
msgid "manual"
|
2036 |
+
msgstr "ръководство"
|
2037 |
|
2038 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:54
|
2039 |
+
msgid "Have you search the %s for a similar issue?"
|
2040 |
+
msgstr "Имате ли търси %s за подобен проблем?"
|
2041 |
|
2042 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:54
|
2043 |
+
msgid "support forum"
|
2044 |
+
msgstr "подкрепа форум"
|
2045 |
|
2046 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:55
|
2047 |
+
msgid "Have you search the Internet for any error messages you are receiving?"
|
2048 |
+
msgstr "Има ли търсене в интернет за всички съобщения за грешка, получавате?"
|
2049 |
|
2050 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:56
|
2051 |
+
msgid "Make sure you have access to your PHP error logs."
|
2052 |
+
msgstr "Уверете се, че имате достъп до вашите PHP логове за грешки."
|
2053 |
|
2054 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:59
|
2055 |
+
msgid "And a few things to double-check:"
|
2056 |
+
msgstr "И няколко неща, за да проверете отново:"
|
2057 |
|
2058 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:62
|
2059 |
+
msgid "How's your memory_limit in php.ini?"
|
2060 |
+
msgstr "Как е вашата memory_limit в php.ini?"
|
2061 |
|
2062 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:63
|
2063 |
+
msgid "Have you tried disabling any other plugins you may have installed?"
|
2064 |
+
msgstr "Били ли сте опитвали Деактивирането на всички други плъгини, които сте инсталирали?"
|
2065 |
|
2066 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:64
|
2067 |
+
msgid "Have you tried using the default WordPress theme?"
|
2068 |
+
msgstr "Били ли сте опитвали използване на подразбиране WordPress тема?"
|
2069 |
|
2070 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:65
|
2071 |
+
msgid "Have you double checked the plugin settings?"
|
2072 |
+
msgstr "Имате ли двойно проверени настройките на плъгин?"
|
2073 |
|
2074 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:66
|
2075 |
+
msgid "Do you have all the required PHP extensions installed?"
|
2076 |
+
msgstr "Имате ли всички необходими PHP разширения инсталирани?"
|
2077 |
|
2078 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:67
|
2079 |
+
msgid "Are you getting a blank or incomplete page displayed in your browser? Did you view the source for the page and check for any fatal errors?"
|
2080 |
+
msgstr "Получавате ли празни или непълни страница показва в браузъра си? Видя ли преглед на източника на страницата и проверете за фатални грешки?"
|
2081 |
|
2082 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:68
|
2083 |
+
msgid "Have you checked your PHP and web server error logs?"
|
2084 |
+
msgstr "Проверихте ли вашия PHP и уеб сървър грешка логове?"
|
|
|
|
|
|
|
|
|
2085 |
|
2086 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:71
|
2087 |
+
msgid "Still not having any luck?"
|
2088 |
+
msgstr "Все още не е късм?"
|
|
|
2089 |
|
2090 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:71
|
2091 |
+
msgid "Then please open a new thread on the %s and we'll respond as soon as possible."
|
2092 |
+
msgstr "След това отворете нова тема на %s и ние ще отговорим възможно най-скоро."
|
|
|
2093 |
|
2094 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:71
|
2095 |
+
msgid "WordPress.org support forum"
|
2096 |
+
msgstr "WordPress.org подкрепа форум"
|
|
|
2097 |
|
2098 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:75
|
2099 |
+
msgid "Alternatively %s support is available as well."
|
2100 |
+
msgstr "Алтернативно %s поддръжка е наличен."
|
|
|
2101 |
|
2102 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:75
|
2103 |
+
msgid "Farsi"
|
2104 |
+
msgstr "Фарси"
|
2105 |
|
2106 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:21
|
2107 |
+
msgid "WP Statistics Honey Pot Page"
|
2108 |
+
msgstr "WP Honey Pot Статистика Page"
|
|
|
2109 |
|
2110 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:22
|
2111 |
+
msgid "This is the honey pot for WP Statistics to use, do not delete."
|
2112 |
+
msgstr "Това е гърне за мед за WP Статистика за използване, не изтривайте."
|
2113 |
|
2114 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:45
|
2115 |
+
msgid "Access Levels"
|
2116 |
+
msgstr "Нива на достъп"
|
2117 |
|
2118 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:74
|
2119 |
+
msgid "Required user level to view WP Statistics"
|
2120 |
+
msgstr "Изисква ниво на потребител за да видите статистика за WP"
|
2121 |
|
2122 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:89
|
2123 |
+
msgid "Required user level to manage WP Statistics"
|
2124 |
+
msgstr "Изисква потребителско ниво, за да управлявате WP Statistics"
|
2125 |
|
2126 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:97
|
2127 |
+
msgid "See the %s for details on capability levels."
|
2128 |
+
msgstr "Вижте %s за повече информация на способности."
|
2129 |
|
2130 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:97
|
2131 |
+
msgid "WordPress Roles and Capabilities page"
|
2132 |
+
msgstr "Страница WordPress роли и възможности"
|
2133 |
|
2134 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:98
|
2135 |
+
msgid "Hint: manage_network = Super Admin Network, manage_options = Administrator, edit_others_posts = Editor, publish_posts = Author, edit_posts = Contributor, read = Everyone."
|
2136 |
+
msgstr "Съвет: manage_network = супер администратор мрежа, manage_options = администратор, edit_others_posts = редактор, publish_posts = автор, edit_posts = сътрудник, прочетете = всеки."
|
2137 |
|
2138 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:99
|
2139 |
+
msgid "Each of the above casscades the rights upwards in the default WordPress configuration. So for example selecting publish_posts grants the right to Authors, Editors, Admins and Super Admins."
|
2140 |
+
msgstr "Всяка една от горните casscades правата нагоре в конфигурацията по подразбиране на WordPress. Така например избора на publish_posts предоставя правото на автори, редактори, администратори и супер администратори."
|
2141 |
|
2142 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:100
|
2143 |
+
msgid "If you need a more robust solution to delegate access you might want to look at %s in the WordPress plugin directory."
|
2144 |
+
msgstr "Ако имате нужда от по-силен решение за делегиране на достъп, може да искате да погледнете %s в WordPress плъгин директорията."
|
2145 |
|
2146 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:105
|
2147 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:292
|
2148 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:365
|
2149 |
+
msgid "Exclusions"
|
2150 |
+
msgstr "Изключения"
|
2151 |
|
2152 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:109
|
2153 |
+
msgid "Record exclusions"
|
2154 |
+
msgstr "Запис изключения"
|
2155 |
|
2156 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:111
|
2157 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:165
|
2158 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:192
|
2159 |
+
msgid "Enable"
|
2160 |
+
msgstr "Разреши"
|
2161 |
|
2162 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:112
|
2163 |
+
msgid "This will record all the excluded hits in a separate table with the reasons why it was excluded but no other information. This will generate a lot of data but is useful if you want to see the total number of hits your site gets, not just actual user visits."
|
2164 |
+
msgstr "Това ще запише всички изключени хитове в отделна таблица с причините, защо е изключен, но никаква друга информация. Това ще генерира много данни, но е полезно, ако искате да видите общия брой на посещения вашия сайт получава, не само действителен потребител посещения."
|
2165 |
|
2166 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:117
|
2167 |
+
msgid "Exclude User Roles"
|
2168 |
+
msgstr "Изключване на потребителски роли"
|
2169 |
|
2170 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:133
|
2171 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:247
|
2172 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:254
|
2173 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:261
|
2174 |
+
msgid "Exclude"
|
2175 |
+
msgstr "Изключи"
|
2176 |
|
2177 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:134
|
2178 |
+
msgid "Exclude %s role from data collection."
|
2179 |
+
msgstr "%S роля да изключат от събирането на данни."
|
2180 |
|
2181 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:140
|
2182 |
+
msgid "IP/Robot Exclusions"
|
2183 |
+
msgstr "IP/робот изключвания"
|
2184 |
|
2185 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:144
|
2186 |
+
msgid "Robot list"
|
2187 |
+
msgstr "Робот списък"
|
2188 |
|
2189 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:157
|
2190 |
+
msgid "A list of words (one per line) to match against to detect robots. Entries must be at least 4 characters long or they will be ignored."
|
2191 |
+
msgstr "Списък на думи, (по един на ред) за мач срещу за откриване на роботи. Записите трябва да бъдат най-малко 4 символа или те ще бъдат игнорирани."
|
2192 |
|
2193 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:158
|
2194 |
+
msgid "Reset to Default"
|
2195 |
+
msgstr "Възстанови по подразбиране"
|
2196 |
|
2197 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:163
|
2198 |
+
msgid "Force robot list update after upgrades"
|
2199 |
+
msgstr "Сила робот списък актуализация след ъпгрейд"
|
2200 |
|
2201 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:166
|
2202 |
+
msgid "Force the robot list to be reset to the default after an update to WP Statistics takes place. Note if this option is enabled any custom robots you have added to the list will be lost."
|
2203 |
+
msgstr "Сила списъка на робот, за да се възстанови по подразбиране след актуализация на WP Statistics се провежда. Забележка Ако тази опция е разрешена по потребителски роботи, вие сте добавили към списъка ще бъдат загубени."
|
2204 |
|
2205 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:171
|
2206 |
+
msgid "Robot visit threshold"
|
2207 |
+
msgstr "Праг Robot посещение"
|
2208 |
|
2209 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:174
|
2210 |
+
msgid "Treat visitors with more than this number of visits per day as robots. 0 = disabled."
|
2211 |
+
msgstr "Отнасяйте посетителите с повече от този брой посещения на ден като роботи. 0 = забранена."
|
2212 |
|
2213 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:179
|
2214 |
+
msgid "Excluded IP address list"
|
2215 |
+
msgstr "Изключените IP адресен списък"
|
2216 |
|
2217 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:182
|
2218 |
+
msgid "A list of IP addresses and subnet masks (one per line) to exclude from statistics collection (both 192.168.0.0/24 and 192.168.0.0/255.255.255.0 formats are accepted). To specify an IP address only, use a subnet value of 32 or 255.255.255.255."
|
2219 |
+
msgstr "Списък на IP адреси и подмрежа маски (по един на ред) да се изключат от статистиката колекция (192.168.0.0/24 и 192.168.0.0/255.255.255.0 формати се приемат). За да зададете IP адрес само, използвайте подмрежа стойност на 32 или 255.255.255.255."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2220 |
|
2221 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:183
|
2222 |
+
msgid "Add 10.0.0.0"
|
2223 |
+
msgstr "Добави 10.0.0.0"
|
2224 |
|
2225 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:184
|
2226 |
+
msgid "Add 172.16.0.0"
|
2227 |
+
msgstr "Добави 172.16.0.0"
|
|
|
2228 |
|
2229 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:185
|
2230 |
+
msgid "Add 192.168.0.0"
|
2231 |
+
msgstr "Добави 192.168.0.0"
|
|
|
2232 |
|
2233 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:190
|
2234 |
+
msgid "Use honey pot"
|
2235 |
+
msgstr "Използвайте гърне за мед"
|
2236 |
|
2237 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:193
|
2238 |
+
msgid "Use a honey pot page to identify robots."
|
2239 |
+
msgstr "Използвайте страница гърне за мед, за да видите какви роботи."
|
2240 |
|
2241 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:198
|
2242 |
+
msgid "Honey pot post id"
|
2243 |
+
msgstr "Honey пот пост ID"
|
2244 |
|
2245 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:201
|
2246 |
+
msgid "The post id to use for the honeypot page."
|
2247 |
+
msgstr "The Публикувай ID да използвате за страницата гърне."
|
2248 |
|
2249 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:202
|
2250 |
+
msgid "Create a new honey pot page"
|
2251 |
+
msgstr "Създаване на нова страница гърне за мед"
|
2252 |
|
2253 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:207
|
2254 |
+
msgid "GeoIP Exclusions"
|
2255 |
+
msgstr "GeoIP Изключения"
|
|
|
2256 |
|
2257 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:211
|
2258 |
+
msgid "Excluded countries list"
|
2259 |
+
msgstr "Списък Изключени страни"
|
2260 |
|
2261 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:214
|
2262 |
+
msgid "A list of country codes (one per line, two letters each) to exclude from statistics collection. Use \"000\" (three zeros) to exclude unknown countries."
|
2263 |
+
msgstr "Списъкът с кодове на държавите (по един на ред, две писма всеки) да се изключат от събирането на статистически данни. Използвайте "000" (три нули), за да се изключи неизвестни страни."
|
|
|
2264 |
|
2265 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:219
|
2266 |
+
msgid "Included countries list"
|
2267 |
+
msgstr "Списък включваше страни"
|
2268 |
|
2269 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:222
|
2270 |
+
msgid "A list of country codes (one per line, two letters each) to include in statistics collection, if this list is not empty, only visitors from the included countries will be recorded. Use \"000\" (three zeros) to exclude unknown countries."
|
2271 |
+
msgstr "Списъкът с кодове на държавите (по един на ред, две писма всеки) да се включат в събирането на статистически данни, ако този списък не е празна, само посетители от включените страни ще бъдат записани. Използвайте "000" (три нули), за да се изключи неизвестни страни."
|
2272 |
|
2273 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:227
|
2274 |
+
msgid "Host Exclusions"
|
2275 |
+
msgstr "Хост Изключения"
|
2276 |
|
2277 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:231
|
2278 |
+
msgid "Excluded hosts list"
|
2279 |
+
msgstr "Списък Изключени хостове"
|
2280 |
|
2281 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:234
|
2282 |
+
msgid "A list of fully qualified host names (ie. server.example.com, one per line) to exclude from statistics collection."
|
2283 |
+
msgstr "Списък с пълните имена домакини (т.е.. Server.example.com, по една на ред) да се изключат от събирането на статистически данни."
|
|
|
2284 |
|
2285 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:236
|
2286 |
+
msgid "Note: this option will NOT perform a reverse DNS lookup on each page load but instead cache the IP address for the provided hostnames for one hour. If you are excluding dynamically assigned hosts you may find some degree of overlap when the host changes it's IP address and when the cache is updated resulting in some hits recorded."
|
2287 |
+
msgstr "Забележка: Тази опция няма да извърши обратно DNS справка на всяка страница на натоварването, но вместо да кешира IP адреса на предоставени имената на хостовете за един час. Ако изключение динамично възложени домакини може да откриете някаква степен на припокриване, когато приемащата променя нейния IP адрес и когато кешът се актуализира в резултат на което някои попадения записват."
|
2288 |
|
2289 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:241
|
2290 |
+
msgid "Site URL Exclusions"
|
2291 |
+
msgstr "Сайт URL изключения"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2292 |
|
2293 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:245
|
2294 |
+
msgid "Excluded login page"
|
2295 |
+
msgstr "Изключените вход страница"
|
|
|
|
|
|
|
|
|
|
|
|
|
2296 |
|
2297 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:248
|
2298 |
+
msgid "Exclude the login page for registering as a hit."
|
2299 |
+
msgstr "Изключване на страницата за вход за регистриране като хит."
|
|
|
|
|
2300 |
|
2301 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:252
|
2302 |
+
msgid "Excluded admin pages"
|
2303 |
+
msgstr "Изключените администратор страници"
|
|
|
2304 |
|
2305 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:255
|
2306 |
+
msgid "Exclude the admin pages for registering as a hit."
|
2307 |
+
msgstr "Изключи администратор страници за регистриране като хит."
|
2308 |
|
2309 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:259
|
2310 |
+
msgid "Excluded RSS feeds"
|
2311 |
+
msgstr "Изключени RSS Feeds"
|
2312 |
|
2313 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:262
|
2314 |
+
msgid "Exclude the RSS feeds for registering as a hit."
|
2315 |
+
msgstr "Изключване на RSS канали за регистриране като хит."
|
2316 |
|
2317 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:22
|
2318 |
+
msgid "browscap settings"
|
2319 |
+
msgstr "browscap настройки"
|
2320 |
|
2321 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:27
|
2322 |
+
msgid "browscap usage"
|
2323 |
+
msgstr "използване на browscap"
|
2324 |
|
2325 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:32
|
2326 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:56
|
2327 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:76
|
2328 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:92
|
2329 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:116
|
2330 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:132
|
2331 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:148
|
2332 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:160
|
2333 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:187
|
2334 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:199
|
2335 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:214
|
2336 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:228
|
2337 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:258
|
2338 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:270
|
2339 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:313
|
2340 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:47
|
2341 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:71
|
2342 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:104
|
2343 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:40
|
2344 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:69
|
2345 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:81
|
2346 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:93
|
2347 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:105
|
2348 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2349 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:87
|
2350 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:107
|
2351 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:147
|
2352 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:159
|
2353 |
+
msgid "Active"
|
2354 |
+
msgstr "Активен"
|
2355 |
|
2356 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:33
|
2357 |
+
msgid "The browscap database will be downloaded and used to detect robots."
|
2358 |
+
msgstr "Базата данни на browscap ще бъдат изтеглени и използвани за откриване на роботи."
|
2359 |
|
2360 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:39
|
2361 |
+
msgid "Update browscap Info"
|
2362 |
+
msgstr "Актуализиране на browscap информация"
|
2363 |
|
2364 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:44
|
2365 |
+
msgid "Download browscap Database"
|
2366 |
+
msgstr "Изтегли browscap база данни"
|
2367 |
|
2368 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:45
|
2369 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:60
|
2370 |
+
msgid "Save changes on this page to download the update."
|
2371 |
+
msgstr "Запишете промените на тази страница, за да изтеглите актуализацията."
|
2372 |
|
2373 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:51
|
2374 |
+
msgid "Schedule weekly update of browscap DB"
|
2375 |
+
msgstr "Планиране на седмична актуализация на browscap DB"
|
2376 |
|
2377 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:59
|
2378 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:74
|
2379 |
+
msgid "Next update will be"
|
2380 |
+
msgstr "Следващата актуализация ще бъде"
|
2381 |
|
2382 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:74
|
2383 |
+
msgid "Download of the browscap database will be scheduled for once a week."
|
2384 |
+
msgstr "Изтегляне на базата данни на browscap ще бъде насрочено за един път седмично."
|
2385 |
|
2386 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:50
|
2387 |
+
msgid "This will delete the manual when you save the settings, are you sure?"
|
2388 |
+
msgstr "Това ще изтрие ръчно, когато запишете настройките, сигурен ли сте?"
|
2389 |
|
2390 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:77
|
2391 |
+
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2392 |
+
msgstr "Тази функция няма да съхранява IP адреси в базата данни, но вместо това използва уникален хашиш. \"Store целия потребителски агент string\" настройка ще бъде забранена, ако тази опция е избрана. Вие няма да можете да възстановите IP адресите в бъдеще да се възстанови информацията за местоположението, ако това е разрешено."
|
2393 |
|
2394 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:82
|
2395 |
+
msgid "Users Online"
|
2396 |
+
msgstr "Потребители онлайн"
|
2397 |
|
2398 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:87
|
2399 |
+
msgid "User online"
|
2400 |
+
msgstr "Потребител онлайн"
|
|
languages/wp_statistics-bn_BD.mo
CHANGED
Binary file
|
languages/wp_statistics-bn_BD.po
CHANGED
@@ -1,892 +1,2400 @@
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"
|
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"
|
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 |
-
#: F:\
|
28 |
-
|
29 |
-
|
30 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:58
|
31 |
-
msgid "Statistics"
|
32 |
-
msgstr "পরিসংখ্যান"
|
33 |
|
34 |
-
#: F:\
|
35 |
-
|
36 |
-
|
37 |
-
msgstr "স্টাটস সাইডবারে দেখাও"
|
38 |
-
|
39 |
-
#: F:\Program
|
40 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:19
|
41 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:80
|
42 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:14
|
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 |
-
#: F:\
|
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 |
-
#: F:\
|
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 |
-
#: F:\
|
65 |
-
|
66 |
-
|
67 |
-
msgid "Yesterday Visit"
|
68 |
-
msgstr "গতকাল দেখেছে"
|
69 |
|
70 |
-
#: F:\
|
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 |
-
#: F:\
|
79 |
-
|
80 |
-
|
81 |
-
msgid "Week Visit"
|
82 |
-
msgstr "এ সপ্তাহে দেখেছে"
|
83 |
|
84 |
-
#: F:\
|
85 |
-
|
86 |
-
|
87 |
-
msgid "Month Visit"
|
88 |
-
msgstr "এ মাসে দেখেছে"
|
89 |
|
90 |
-
#: F:\
|
91 |
-
|
92 |
-
|
93 |
-
msgid "Years Visit"
|
94 |
-
msgstr "এ বছরে দেখেছে"
|
95 |
|
96 |
-
#: F:\
|
97 |
-
#:
|
98 |
-
#:
|
99 |
-
#:
|
100 |
-
msgid "
|
101 |
-
msgstr "
|
102 |
|
103 |
-
#: F:\
|
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 |
-
#: F:\
|
112 |
-
|
113 |
-
|
114 |
-
msgid "Search Engine reffered"
|
115 |
-
msgstr "সার্চ ইঞ্জিন রেফার করেছে"
|
116 |
|
117 |
-
#: F:\
|
118 |
-
|
119 |
-
|
120 |
-
msgid "Total Posts"
|
121 |
-
msgstr "মোট পোষ্ট"
|
122 |
|
123 |
-
#: F:\
|
124 |
-
|
125 |
-
|
126 |
-
msgid "Total Pages"
|
127 |
-
msgstr "মোট পাতা"
|
128 |
|
129 |
-
#: F:\
|
130 |
-
|
131 |
-
|
132 |
-
msgid "Total Comments"
|
133 |
-
msgstr "মোট মন্তব্য"
|
134 |
|
135 |
-
#: F:\
|
136 |
-
|
137 |
-
|
138 |
-
msgid "Total Spams"
|
139 |
-
msgstr "মোট স্প্যাম"
|
140 |
|
141 |
-
#: F:\
|
142 |
-
|
143 |
-
|
144 |
-
msgid "Total Users"
|
145 |
-
msgstr "মোট ব্যবহারকারী"
|
146 |
|
147 |
-
#: F:\
|
148 |
-
|
149 |
-
|
150 |
-
msgid "Average Posts"
|
151 |
-
msgstr "গড় পোষ্ট"
|
152 |
|
153 |
-
#: F:\
|
154 |
-
|
155 |
-
|
156 |
-
msgid "Average Comments"
|
157 |
-
msgstr "গড় মন্তব্য"
|
158 |
|
159 |
-
#: F:\
|
160 |
-
|
161 |
-
|
162 |
-
msgid "Average Users"
|
163 |
-
msgstr "গড় ব্যবহারকারী"
|
164 |
|
165 |
-
#: F:\
|
166 |
-
|
167 |
-
|
168 |
-
msgid "Last Post Date"
|
169 |
-
msgstr "শেষ পোষ্টের তারিখ"
|
170 |
|
171 |
-
#: F:\
|
172 |
-
|
173 |
-
|
174 |
-
msgid "View Stats"
|
175 |
-
msgstr ""
|
176 |
|
177 |
-
#: F:\
|
178 |
-
|
179 |
-
|
180 |
-
msgstr "সেটিসং"
|
181 |
|
182 |
-
#: F:\
|
183 |
-
|
184 |
-
|
185 |
-
msgid "Today visitor"
|
186 |
-
msgstr "আজ দেখেছে"
|
187 |
|
188 |
-
#: F:\
|
189 |
-
|
190 |
-
|
191 |
-
msgid "Today visit"
|
192 |
-
msgstr "আজ দেখেছে"
|
193 |
|
194 |
-
#: F:\
|
195 |
-
|
196 |
-
|
197 |
-
msgid "Yesterday visitor"
|
198 |
-
msgstr "গতকাল দেখেছে"
|
199 |
|
200 |
-
#: F:\
|
201 |
-
|
202 |
-
|
203 |
-
msgid "Yesterday visit"
|
204 |
-
msgstr "গতকাল দেখেছে"
|
205 |
|
206 |
-
#: F:\
|
207 |
-
|
208 |
-
|
209 |
-
msgid "You do not have sufficient permissions to access this page."
|
210 |
-
msgstr "আপনার এই পেজ দেখার মত পর্যাপ্ত অনুমতি নেই।"
|
211 |
|
212 |
-
#: F:\
|
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 |
-
#: F:\
|
224 |
-
|
225 |
-
|
226 |
-
msgid "Summary Statistics"
|
227 |
-
msgstr "পরিসংখ্যান"
|
228 |
|
229 |
-
#: F:\
|
230 |
-
|
231 |
-
|
232 |
-
msgid "Visitor"
|
233 |
-
msgstr ""
|
234 |
|
235 |
-
#: F:\
|
236 |
-
|
237 |
-
|
238 |
-
#, fuzzy
|
239 |
-
msgid "Visit"
|
240 |
-
msgstr "এ সপ্তাহে দেখেছে"
|
241 |
|
242 |
-
#: F:\
|
243 |
-
|
244 |
-
|
245 |
-
msgid "Today"
|
246 |
-
msgstr "আজ দেখেছে"
|
247 |
|
248 |
-
#: F:\
|
249 |
-
|
250 |
-
|
251 |
-
msgid "Yesterday"
|
252 |
-
msgstr "গতকাল দেখেছে"
|
253 |
|
254 |
-
#: F:\
|
255 |
-
|
256 |
-
|
257 |
-
msgstr ""
|
258 |
|
259 |
-
#: F:\
|
260 |
-
|
261 |
-
|
262 |
-
msgid "Month"
|
263 |
-
msgstr "এ মাসে দেখেছে"
|
264 |
|
265 |
-
#: F:\
|
266 |
-
|
267 |
-
|
268 |
-
msgstr ""
|
269 |
|
270 |
-
#: F:\
|
271 |
-
|
272 |
-
|
273 |
-
msgid "Total"
|
274 |
-
msgstr "মোট দেখা হয়েছে"
|
275 |
|
276 |
-
#: F:\
|
277 |
-
|
278 |
-
|
279 |
-
msgid ""
|
280 |
-
"Today date: <code dir=\"ltr\">%s</code>, Time: <code dir=\"ltr\">%s</code>"
|
281 |
-
msgstr ""
|
282 |
|
283 |
-
#: F:\
|
284 |
-
|
285 |
-
|
286 |
-
msgstr ""
|
287 |
|
288 |
-
#: F:\
|
289 |
-
|
290 |
-
|
291 |
-
msgstr ""
|
292 |
|
293 |
-
#: F:\
|
294 |
-
|
295 |
-
|
296 |
-
msgstr ""
|
297 |
|
298 |
-
#: F:\
|
299 |
-
|
300 |
-
|
301 |
-
msgstr ""
|
302 |
|
303 |
-
#: F:\
|
304 |
-
|
305 |
-
|
306 |
-
msgstr ""
|
307 |
|
308 |
-
#: F:\
|
309 |
-
|
310 |
-
|
311 |
-
msgstr ""
|
312 |
|
313 |
-
#: F:\
|
314 |
-
|
315 |
-
|
316 |
-
msgstr ""
|
317 |
|
318 |
-
#: F:\
|
319 |
-
|
320 |
-
|
321 |
-
msgstr ""
|
322 |
|
323 |
-
#: F:\
|
324 |
-
|
325 |
-
|
326 |
-
msgstr ""
|
327 |
|
328 |
-
#: F:\
|
329 |
-
|
330 |
-
|
331 |
-
msgstr ""
|
332 |
|
333 |
-
#: F:\
|
334 |
-
|
335 |
-
|
336 |
-
msgstr ""
|
337 |
|
338 |
-
#: F:\
|
339 |
-
|
340 |
-
|
341 |
-
msgstr ""
|
342 |
|
343 |
-
#: F:\
|
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 |
-
#: F:\
|
352 |
-
|
353 |
-
|
354 |
-
msgstr ""
|
355 |
|
356 |
-
#: F:\
|
357 |
-
|
358 |
-
|
359 |
-
msgid "About plugin"
|
360 |
-
msgstr "প্লাগইন নিস্ক্রিয়"
|
361 |
-
|
362 |
-
#: F:\Program
|
363 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:213
|
364 |
-
#, fuzzy, php-format
|
365 |
-
msgid "Plugin version: %s"
|
366 |
-
msgstr "প্লাগইন ভাষান্তর"
|
367 |
-
|
368 |
-
#: F:\Program
|
369 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:214
|
370 |
-
msgid "Translation plugin languages"
|
371 |
-
msgstr ""
|
372 |
|
373 |
-
#: F:\
|
374 |
-
|
375 |
-
|
376 |
-
msgstr ""
|
377 |
|
378 |
-
#: F:\
|
379 |
-
|
380 |
-
|
381 |
-
msgstr ""
|
382 |
|
383 |
-
#: F:\
|
384 |
-
|
385 |
-
|
386 |
-
"Please donate to the plugin. With the help of plug-ins you can quickly "
|
387 |
-
"spread."
|
388 |
-
msgstr ""
|
389 |
|
390 |
-
#: F:\
|
391 |
-
|
392 |
-
|
393 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
394 |
|
395 |
-
#: F:\
|
396 |
-
#:
|
397 |
-
|
398 |
-
|
|
|
|
|
|
|
399 |
msgstr "পরিসংখ্যান"
|
400 |
|
401 |
-
#: F:\
|
402 |
-
#:
|
403 |
-
msgid "
|
404 |
-
msgstr ""
|
405 |
|
406 |
-
#: F:\
|
407 |
-
|
408 |
-
|
409 |
-
msgstr ""
|
410 |
|
411 |
-
#: F:\
|
412 |
-
|
413 |
-
|
414 |
-
msgstr ""
|
415 |
|
416 |
-
#: F:\
|
417 |
-
|
418 |
-
|
419 |
-
msgstr ""
|
420 |
|
421 |
-
#: F:\
|
422 |
-
|
423 |
-
|
424 |
-
msgid "Date"
|
425 |
-
msgstr ""
|
426 |
|
427 |
-
#: F:\
|
428 |
-
#:
|
429 |
-
|
430 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
431 |
|
432 |
-
#: F:\
|
433 |
-
|
434 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
435 |
msgid "Google"
|
436 |
msgstr "গুগল"
|
437 |
|
438 |
-
#: F:\
|
439 |
-
|
440 |
-
|
441 |
-
msgid "Yahoo!"
|
442 |
-
msgstr "ইয়াহু!"
|
443 |
-
|
444 |
-
#: F:\Program
|
445 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:358
|
446 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:50
|
447 |
-
msgid "Bing"
|
448 |
-
msgstr "বিং"
|
449 |
-
|
450 |
-
#: F:\Program
|
451 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:363
|
452 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:400
|
453 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:408
|
454 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:420
|
455 |
-
msgid "Unknown"
|
456 |
-
msgstr ""
|
457 |
|
458 |
-
#: F:\
|
459 |
-
|
460 |
-
|
461 |
-
msgid "Recent Visitors"
|
462 |
-
msgstr "এ সপ্তাহে দেখেছে"
|
463 |
|
464 |
-
#: F:\
|
465 |
-
|
466 |
-
|
467 |
-
msgstr "আইপি"
|
468 |
|
469 |
-
#: F:\
|
470 |
-
|
471 |
-
|
472 |
-
msgstr ""
|
473 |
|
474 |
-
#: F:\
|
475 |
-
|
476 |
-
|
477 |
-
msgstr ""
|
478 |
|
479 |
-
#: F:\
|
480 |
-
|
481 |
-
|
482 |
-
msgstr ""
|
483 |
|
484 |
-
#: F:\
|
485 |
-
|
486 |
-
|
487 |
-
msgid "General Settings"
|
488 |
-
msgstr "সেটিসং"
|
489 |
|
490 |
-
#: F:\
|
491 |
-
|
492 |
-
|
493 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:43
|
494 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:92
|
495 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:108
|
496 |
-
msgid "Active"
|
497 |
-
msgstr ""
|
498 |
|
499 |
-
#: F:\
|
500 |
-
|
501 |
-
|
502 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:44
|
503 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:109
|
504 |
-
msgid "Enable or disable this feature"
|
505 |
-
msgstr ""
|
506 |
|
507 |
-
#: F:\
|
508 |
-
|
509 |
-
|
510 |
-
msgid "Visits"
|
511 |
-
msgstr "এ সপ্তাহে দেখেছে"
|
512 |
|
513 |
-
#: F:\
|
514 |
-
|
515 |
-
|
516 |
-
msgstr ""
|
517 |
|
518 |
-
#: F:\
|
519 |
-
|
520 |
-
|
521 |
-
msgstr "অনলাইনের ব্যবহারকারী চেক করবে"
|
522 |
|
523 |
-
#: F:\
|
524 |
-
|
525 |
-
|
526 |
-
msgid "Secound"
|
527 |
-
msgstr "সেকেন্ড"
|
528 |
|
529 |
-
#: F:\
|
530 |
-
|
531 |
-
|
532 |
-
msgid "Time for the check accurate online user in the site. Now: %s Second"
|
533 |
-
msgstr "এই সাইটের সঠিক অনলাইন দর্শক চেক করার জন্য । ডিফল্ট: ৬০ সেকেন্ড"
|
534 |
|
535 |
-
#: F:\
|
536 |
-
|
537 |
-
|
538 |
-
msgstr "স্টাটস মেনুবারে দেখাও"
|
539 |
|
540 |
-
#: F:\
|
541 |
-
|
542 |
-
|
543 |
-
msgstr "না"
|
544 |
|
545 |
-
#: F:\
|
546 |
-
|
547 |
-
|
548 |
-
msgstr "হ্যা"
|
549 |
|
550 |
-
#: F:\
|
551 |
-
|
552 |
-
|
553 |
-
msgstr "স্টাটস অ্যাডমিনের মেনুবারে দেখাও"
|
554 |
|
555 |
-
#: F:\
|
556 |
-
#:
|
557 |
-
msgid "
|
558 |
-
msgstr "
|
559 |
|
560 |
-
#: F:\
|
561 |
-
|
562 |
-
|
563 |
-
msgid "For each visit to account for several hits. Currently %s."
|
564 |
-
msgstr "দর্শনাথীর প্রতি হিট গননা করা হবে"
|
565 |
|
566 |
-
#: F:\
|
567 |
-
|
568 |
-
|
569 |
-
msgstr ""
|
570 |
|
571 |
-
#: F:\
|
572 |
-
|
573 |
-
|
574 |
-
msgstr ""
|
575 |
|
576 |
-
#: F:\
|
577 |
-
|
578 |
-
|
579 |
-
msgstr ""
|
580 |
|
581 |
-
#: F:\
|
582 |
-
|
583 |
-
|
584 |
-
msgid "Time send"
|
585 |
-
msgstr "সময়"
|
586 |
-
|
587 |
-
#: F:\Program
|
588 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:121
|
589 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:137
|
590 |
-
#, fuzzy
|
591 |
-
msgid "Please select."
|
592 |
-
msgstr "মান দিন!"
|
593 |
-
|
594 |
-
#: F:\Program
|
595 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:122
|
596 |
-
msgid "Hourly"
|
597 |
-
msgstr ""
|
598 |
|
599 |
-
#: F:\
|
600 |
-
|
601 |
-
|
602 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
603 |
|
604 |
-
#: F:\
|
605 |
-
|
606 |
-
|
607 |
-
msgstr ""
|
608 |
|
609 |
-
#: F:\
|
610 |
-
#:
|
611 |
-
msgid "
|
612 |
-
msgstr ""
|
613 |
|
614 |
-
#: F:\
|
615 |
-
#:
|
616 |
-
msgid "
|
617 |
-
msgstr ""
|
618 |
|
619 |
-
#: F:\
|
620 |
-
#:
|
621 |
-
msgid "
|
622 |
-
msgstr ""
|
623 |
|
624 |
-
#: F:\
|
625 |
-
#:
|
626 |
-
msgid "
|
627 |
-
msgstr ""
|
628 |
|
629 |
-
#: F:\
|
630 |
-
|
631 |
-
|
632 |
-
msgstr ""
|
633 |
|
634 |
-
#: F:\
|
635 |
-
#:
|
636 |
-
|
637 |
-
|
638 |
-
"Note: To send SMS text messages please install the <a href=\"%s\" target="
|
639 |
-
"\"_blank\">Wordpress SMS</a> plugin."
|
640 |
-
msgstr ""
|
641 |
|
642 |
-
#: F:\
|
643 |
-
#:
|
644 |
-
msgid "
|
645 |
-
msgstr ""
|
646 |
|
647 |
-
#: F:\
|
648 |
-
#:
|
649 |
-
msgid "
|
650 |
-
msgstr ""
|
651 |
|
652 |
-
#: F:\
|
653 |
-
#:
|
654 |
-
msgid "
|
655 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
656 |
|
657 |
-
#: F:\
|
658 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:2
|
659 |
msgid "Name"
|
660 |
msgstr "নাম"
|
661 |
|
662 |
-
#: F:\
|
663 |
-
#: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:6
|
664 |
msgid "Items"
|
665 |
msgstr "আইটেম"
|
666 |
|
667 |
-
#: F:\
|
668 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
669 |
msgid "Select type of search engine"
|
670 |
msgstr "সার্চ ইঞ্জিন নির্বাচন করুন"
|
671 |
|
672 |
-
#: F:\
|
673 |
-
|
674 |
-
|
675 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
676 |
|
677 |
-
#: F:\
|
678 |
-
|
679 |
-
|
680 |
-
msgstr "সর্বশেষ হালনাগাদের তারিখ দিন"
|
681 |
|
682 |
-
#: F:\
|
683 |
-
|
684 |
-
|
685 |
-
msgstr "ইংরেজী"
|
686 |
|
687 |
-
#: F:\
|
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 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
724 |
|
725 |
-
|
726 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
727 |
|
728 |
-
|
729 |
-
|
730 |
-
|
731 |
-
|
732 |
-
|
733 |
-
#~ "পরিসংখ্যান সক্রিয় করুন"
|
734 |
|
735 |
-
|
736 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
737 |
|
738 |
-
|
739 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
740 |
|
741 |
-
|
742 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
743 |
|
744 |
-
|
745 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 WP Statistics in Bengali
|
2 |
+
# This file is distributed under the same license as the WP Statistics package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2015-01-27 19:13-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.7.4\n"
|
11 |
+
"Project-Id-Version: WP Statistics\n"
|
12 |
+
"POT-Creation-Date: \n"
|
13 |
+
"Last-Translator: \n"
|
14 |
+
"Language-Team: \n"
|
15 |
+
"Language: bn_BD\n"
|
16 |
+
|
17 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:93
|
18 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:133
|
19 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:149
|
20 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:188
|
21 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:200
|
22 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:229
|
23 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:122
|
24 |
+
msgid "Enable or disable this feature"
|
25 |
+
msgstr "সক্রিয় অথবা এই বৈশিষ্ট্য নিষ্ক্রিয় করা"
|
26 |
|
27 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:99
|
28 |
+
msgid "Check for online users every"
|
29 |
+
msgstr "অনলাইনের ব্যবহারকারী চেক করবে"
|
|
|
|
|
|
|
30 |
|
31 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:104
|
32 |
+
msgid "Second"
|
33 |
+
msgstr "দ্বিতীয়"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
|
35 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:105
|
36 |
+
msgid "Time for the check accurate online user in the site. Now: %s Second"
|
37 |
+
msgstr "এই সাইটের সঠিক অনলাইন দর্শক চেক করার জন্য । ডিফল্ট: ৬০ সেকেন্ড"
|
|
|
|
|
|
|
38 |
|
39 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:111
|
40 |
+
msgid "Record all user"
|
41 |
+
msgstr "সব ব্যবহারকারী রেকর্ড"
|
|
|
|
|
|
|
|
|
42 |
|
43 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:117
|
44 |
+
msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
|
45 |
+
msgstr "বর্জন সেটিংস উপেক্ষা করে এবং অনলাইন (স্ব রেফারেলগুলি এবং রোবট সহ) যে সব ব্যবহারকারীদের তথ্য সংগ্রহ করা হয়. শুধুমাত্র সমস্যাসমাধানের জন্য ব্যবহার করা উচিত."
|
|
|
|
|
46 |
|
47 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:155
|
48 |
+
msgid "Store entire user agent string"
|
49 |
+
msgstr "সম্পূর্ণ ইউজার এজেন্ট স্ট্রিং সঞ্চয়"
|
|
|
|
|
|
|
|
|
50 |
|
51 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:161
|
52 |
+
msgid "Only enabled for debugging"
|
53 |
+
msgstr "শুধুমাত্র ডিবাগিং জন্য সক্রিয়"
|
|
|
|
|
54 |
|
55 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:167
|
56 |
+
msgid "Coefficient per visitor"
|
57 |
+
msgstr "দর্শকের সুদক্ষতা"
|
|
|
|
|
58 |
|
59 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:172
|
60 |
+
msgid "For each visit to account for several hits. Currently %s."
|
61 |
+
msgstr "দর্শনাথীর প্রতি হিট গননা করা হবে"
|
|
|
|
|
62 |
|
63 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:177
|
64 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:182
|
65 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:295
|
66 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:368
|
67 |
+
msgid "Pages"
|
68 |
+
msgstr "পেজ"
|
69 |
|
70 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:194
|
71 |
+
msgid "Track all pages"
|
72 |
+
msgstr "সমস্ত পৃষ্ঠা ট্র্যাক"
|
|
|
|
|
|
|
|
|
73 |
|
74 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:209
|
75 |
+
msgid "Strip parameters from URI"
|
76 |
+
msgstr "কোনো URI থেকে স্ট্রিপ পরামিতি"
|
|
|
|
|
77 |
|
78 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:215
|
79 |
+
msgid "This will remove anything after the ? in a URL."
|
80 |
+
msgstr "এই পরে কিছু মুছে ফেলা হবে? একটি URL- এ."
|
|
|
|
|
81 |
|
82 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:223
|
83 |
+
msgid "Disable hits column in post/pages list"
|
84 |
+
msgstr "নিষ্ক্রিয় পোস্ট / পেজ তালিকা কলাম হিট"
|
|
|
|
|
85 |
|
86 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:234
|
87 |
+
msgid "Miscellaneous"
|
88 |
+
msgstr "বিবিধ"
|
|
|
|
|
89 |
|
90 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:239
|
91 |
+
msgid "Show stats in menu bar"
|
92 |
+
msgstr "স্টাটস মেনুবারে দেখাও"
|
|
|
|
|
93 |
|
94 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:244
|
95 |
+
msgid "No"
|
96 |
+
msgstr "না"
|
|
|
|
|
97 |
|
98 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:245
|
99 |
+
msgid "Yes"
|
100 |
+
msgstr "হ্যা"
|
|
|
|
|
101 |
|
102 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:247
|
103 |
+
msgid "Show stats in admin menu bar"
|
104 |
+
msgstr "স্টাটস অ্যাডমিনের মেনুবারে দেখাও"
|
|
|
|
|
105 |
|
106 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:253
|
107 |
+
msgid "Hide admin notices about non active features"
|
108 |
+
msgstr "অ সক্রিয় বৈশিষ্ট্য সম্পর্কে অ্যাডমিন নোটিশ লুকান"
|
|
|
|
|
109 |
|
110 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:259
|
111 |
+
msgid "By default WP Statistics displays an alert if any of the core features are disabled on every admin page, this option will disable these notices."
|
112 |
+
msgstr "মূল বৈশিষ্ট্য কোনো প্রত্যেক অ্যাডমিন পৃষ্ঠার যদি অক্ষম হয় ডিফল্ট ডাব্লু পরিসংখ্যান একটি সতর্কতা প্রদর্শন করা হয়, এই বিকল্প এই নোটিশ নিষ্ক্রিয় করা হবে."
|
|
|
|
|
113 |
|
114 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:265
|
115 |
+
msgid "Delete the manual"
|
116 |
+
msgstr "ম্যানুয়াল মুছে দিন"
|
|
|
|
|
117 |
|
118 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:271
|
119 |
+
msgid "By default WP Statistics stores the admin manual in the plugin directory (~5 meg), if this option is enabled it will be deleted now and during upgrades in the future."
|
120 |
+
msgstr "ডিফল্ট ডাব্লু পরিসংখ্যান প্লাগইন ডিরেক্টরি অ্যাডমিন ম্যানুয়াল (~ 5 মেগ) সঞ্চয় করে, এই বিকল্প সক্রিয় করা হলে এটি এখন এবং ভবিষ্যতে আপগ্রেড করার সময় মুছে ফেলা হবে."
|
|
|
121 |
|
122 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:276
|
123 |
+
msgid "Search Engines"
|
124 |
+
msgstr "অনুসন্ধান ইঞ্জিন"
|
|
|
|
|
125 |
|
126 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:281
|
127 |
+
msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
|
128 |
+
msgstr "সব সার্চ ইঞ্জিন নিষ্ক্রিয় সব সার্চ ইঞ্জিন সক্রিয় হচ্ছে স্থাপিত হবে, তাই করছেন, অনুমোদিত নয়."
|
|
|
|
|
129 |
|
130 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:296
|
131 |
+
msgid "disable"
|
132 |
+
msgstr "অক্ষম"
|
|
|
|
|
133 |
|
134 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:297
|
135 |
+
msgid "Disable %s from data collection and reporting."
|
136 |
+
msgstr "তথ্য সংগ্রহ এবং প্রতিবেদন থেকে% এর নিষ্ক্রিয় করুন."
|
|
|
|
|
137 |
|
138 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:303
|
139 |
+
msgid "Charts"
|
140 |
+
msgstr "চার্ট"
|
|
|
|
|
141 |
|
142 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:308
|
143 |
+
msgid "Include totals"
|
144 |
+
msgstr "সমগ্র অন্তর্ভুক্ত করুন"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
145 |
|
146 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:314
|
147 |
+
msgid "Add a total line to charts with multiple values, like the search engine referrals"
|
148 |
+
msgstr "সার্চ ইঞ্জিন রেফারেলগুলি মত, একাধিক মান চার্ট মোট লাইন যোগ করুন"
|
|
|
|
|
149 |
|
150 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:27
|
151 |
+
msgid "GeoIP settings"
|
152 |
+
msgstr "GeoIP সেটিংস"
|
|
|
|
|
153 |
|
154 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:32
|
155 |
+
msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
|
156 |
+
msgstr "% এর থেকে উপলব্ধ MaxMind দ্বারা নির্মিত GeoLite2 তথ্য, দ্বারা উপলব্ধ আইপি অবস্থান সেবা."
|
|
|
|
|
|
|
157 |
|
158 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:42
|
159 |
+
msgid "GeoIP collection"
|
160 |
+
msgstr "GeoIP সংগ্রহ"
|
|
|
|
|
161 |
|
162 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:48
|
163 |
+
msgid "For get more information and location (country) from visitor, enable this feature."
|
164 |
+
msgstr "পরিদর্শক থেকে আরো তথ্য এবং অবস্থান (দেশ) পেতে, এই বৈশিষ্ট্য সক্রিয় করুন."
|
|
|
|
|
165 |
|
166 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:54
|
167 |
+
msgid "Update GeoIP Info"
|
168 |
+
msgstr "আপডেট GeoIP তথ্য"
|
|
|
169 |
|
170 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:59
|
171 |
+
msgid "Download GeoIP Database"
|
172 |
+
msgstr "GeoIP ডাটাবেস ডাউনলোড"
|
|
|
|
|
173 |
|
174 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:66
|
175 |
+
msgid "Schedule monthly update of GeoIP DB"
|
176 |
+
msgstr "GeoIP ডিবি মাসিক আপডেট সময়সূচী"
|
|
|
177 |
|
178 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:92
|
179 |
+
msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
|
180 |
+
msgstr "GeoIP ডাটাবেস ডাউনলোড করুন মাসের প্রথম মঙ্গলবার পরে 2 দিন জন্য নির্ধারিত করা হবে."
|
|
|
|
|
181 |
|
182 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:93
|
183 |
+
msgid "This option will also download the database if the local filesize is less than 1k (which usually means the stub that comes with the plugin is still in place)."
|
184 |
+
msgstr "স্থানীয় filesize (সাধারণত প্লাগ জায়গা এখনও সঙ্গে যে আসে শহরের উপর অসম্পূর্ণ নিবন্ধ যার মানে) কম 1k হয়, তাহলে এই অপশনটি ডাটাবেস ডাউনলোড হবে."
|
|
|
|
|
|
|
185 |
|
186 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:99
|
187 |
+
msgid "Populate missing GeoIP after update of GeoIP DB"
|
188 |
+
msgstr "GeoIP ডিবি আপডেটের পরে অনুপস্থিত GeoIP পূরণ"
|
|
|
189 |
|
190 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:105
|
191 |
+
msgid "Update any missing GeoIP data after downloading a new database."
|
192 |
+
msgstr "একটি নতুন ডাটাবেস ডাউনলোড করার পর কোনো অনুপস্থিত GeoIP তথ্য আপডেট করুন."
|
|
|
193 |
|
194 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:111
|
195 |
+
msgid "Country code for private IP addresses"
|
196 |
+
msgstr "প্রাইভেট আইপি ঠিকানার জন্য কান্ট্রি কোড"
|
|
|
197 |
|
198 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:116
|
199 |
+
msgid "The international standard two letter country code (ie. US = United States, CA = Canada, etc.) for private (non-routable) IP addresses (ie. 10.0.0.1, 192.158.1.1, 127.0.0.1, etc.). Use \"000\" (three zeros) to use \"Unknown\" as the country code."
|
200 |
+
msgstr "ব্যক্তিগত (অ routable) আইপি ঠিকানার জন্য আন্তর্জাতিক মান দুই অক্ষর বিশিষ্ট কোড (অর্থাৎ. মার্কিন = মার্কিন যুক্তরাষ্ট্র, সিএ = কানাডা, ইত্যাদি) (অর্থাৎ. 10.0.0.1, 192.158.1.1, 127.0.0.1, ইত্যাদি). দেশের কোড হিসাবে "অজানা" ব্যবহার "000" (তিন শূন্য) ব্যবহার করুন."
|
|
|
201 |
|
202 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:127
|
203 |
+
msgid "GeoIP collection is disabled due to the following reasons:"
|
204 |
+
msgstr "GeoIP সংগ্রহ নিম্নলিখিত কারণে নিষ্ক্রিয় করা হয়েছে:"
|
|
|
205 |
|
206 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:130
|
207 |
+
msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
|
208 |
+
msgstr "GeoIP সংগ্রহ এটি বর্তমানে কারণে ইনস্টল পিএইচপি সংস্করণ হচ্ছে নিষ্ক্রিয় করা হয়, অথবা উপরে পিএইচপি% এর প্রয়োজন"
|
|
|
209 |
|
210 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:135
|
211 |
+
msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
|
212 |
+
msgstr "GeoIP সংগ্রহ কার্ল PHP এক্সটেনশন প্রয়োজন এবং এটা পিএইচপি আপনার সংস্করণ লোড করা হয় না!"
|
|
|
213 |
|
214 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:141
|
215 |
+
msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
|
216 |
+
msgstr "GeoIP সংগ্রহ বিসি ম্যাথ PHP এক্সটেনশন প্রয়োজন এবং এটা পিএইচপি আপনার সংস্করণ লোড করা হয় না!"
|
|
|
217 |
|
218 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:147
|
219 |
+
msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
|
220 |
+
msgstr "পিএইচপি নিরাপদ মোড সনাক্ত! GeoIP সংগ্রহ পিএইচপি এর নিরাপদ মোড সক্রিয় করা সমর্থন করে না করা হয়!"
|
|
|
221 |
|
222 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:20
|
223 |
+
msgid "This will permanently delete data from the database each day, are you sure you want to enable this option?"
|
224 |
+
msgstr "এই স্থায়ীভাবে আপনি এই অপশনটি সক্রিয় করতে চান আপনি নিশ্চিত, প্রতিটি দিন ডাটাবেস থেকে তথ্য মুছে ফেলা হবে?"
|
|
|
225 |
|
226 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:30
|
227 |
+
msgid "Database Maintenance"
|
228 |
+
msgstr "ডাটাবেস রক্ষণাবেক্ষণ"
|
|
|
229 |
|
230 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:35
|
231 |
+
msgid "Run a daily WP Cron job to prune the databases"
|
232 |
+
msgstr "উপাত্ত আলুবোখারা একটি দৈনিক ডাব্লু Cron কাজ চালান"
|
|
|
233 |
|
234 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:41
|
235 |
+
msgid "A WP Cron job will be run daily to prune any data older than a set number of days."
|
236 |
+
msgstr "একটি ডাব্লু Cron কাজ দিনের একটি সেট নম্বর চেয়ে পুরোনো তথ্য আলুবোখারা দৈনিক চালানো হবে."
|
|
|
|
|
|
|
|
|
237 |
|
238 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:47
|
239 |
+
msgid "Prune data older than"
|
240 |
+
msgstr "আলুবোখারা তথ্য আর পুরোনো"
|
|
|
241 |
|
242 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:52
|
243 |
+
msgid "Days"
|
244 |
+
msgstr "দিন"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
245 |
|
246 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:53
|
247 |
+
msgid "The number of days to keep statistics for. Minimum value is 30 days. Invalid values will disable the daily maintenance."
|
248 |
+
msgstr "দিনের সংখ্যা জন্য পরিসংখ্যান রাখা. নূন্যতম মূল্য 30 দিন. অবৈধ মান দৈনিক রক্ষণাবেক্ষণ নিষ্ক্রিয় করা হবে."
|
|
|
249 |
|
250 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:44
|
251 |
+
msgid "Common Report Options"
|
252 |
+
msgstr "প্রচলিত বেশি অপশন"
|
|
|
253 |
|
254 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:49
|
255 |
+
msgid "E-mail addresses"
|
256 |
+
msgstr "ই-মেইল ঠিকানা"
|
|
|
|
|
|
|
257 |
|
258 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:54
|
259 |
+
msgid "A comma separated list of e-mail addresses to send reports to."
|
260 |
+
msgstr "ই-মেইল ঠিকানা একটি কমা দিয়ে পৃথক করা তালিকা রিপোর্ট পাঠাতে."
|
261 |
+
|
262 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:59
|
263 |
+
msgid "Update Reports"
|
264 |
+
msgstr "আপডেট প্রতিবেদন"
|
265 |
+
|
266 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:64
|
267 |
+
msgid "Browscap"
|
268 |
+
msgstr "Browscap"
|
269 |
+
|
270 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:70
|
271 |
+
msgid "Send a report whenever the browscap.ini is updated."
|
272 |
+
msgstr "Browscap.ini আপডেট যখনই একটি রিপোর্ট পাঠান."
|
273 |
+
|
274 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:76
|
275 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:104
|
276 |
+
msgid "GeoIP"
|
277 |
+
msgstr "GeoIP"
|
278 |
+
|
279 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:82
|
280 |
+
msgid "Send a report whenever the GeoIP database is updated."
|
281 |
+
msgstr "GeoIP ডাটাবেস আপডেট করা হয়, যখনই একটি রিপোর্ট পাঠান."
|
282 |
+
|
283 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:88
|
284 |
+
msgid "Pruning"
|
285 |
+
msgstr "কেঁটে সাফ করা"
|
286 |
+
|
287 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:94
|
288 |
+
msgid "Send a report whenever the pruning of database is run."
|
289 |
+
msgstr "ডাটাবেস কেঁটে সাফ করা সঞ্চালন করা হয় যখনই একটি রিপোর্ট পাঠান."
|
290 |
+
|
291 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:100
|
292 |
+
msgid "Upgrade"
|
293 |
+
msgstr "আপগ্রেড"
|
294 |
+
|
295 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:106
|
296 |
+
msgid "Send a report whenever the plugin is upgraded."
|
297 |
+
msgstr "প্লাগ আপগ্রেড করা হবে যখনই একটা রিপোর্ট পাঠান."
|
298 |
+
|
299 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:111
|
300 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:116
|
301 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:152
|
302 |
+
msgid "Statistical reporting"
|
303 |
+
msgstr "সরাসরি পরিসংখ্যান কনফিগার"
|
304 |
+
|
305 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:129
|
306 |
+
msgid "Schedule"
|
307 |
+
msgstr "সময়সূচি"
|
308 |
+
|
309 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:153
|
310 |
+
msgid "Select how often to receive statistical report."
|
311 |
+
msgstr "পরিসংখ্যান রিপোর্ট প্রাপ্ত কিভাবে প্রায়ই নির্বাচন করুন."
|
312 |
+
|
313 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:159
|
314 |
+
msgid "Send reports via"
|
315 |
+
msgstr "এর মাধ্যমে রিপোর্ট পাঠান"
|
316 |
+
|
317 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:165
|
318 |
+
msgid "Email"
|
319 |
+
msgstr "ইমেল"
|
320 |
+
|
321 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:167
|
322 |
+
msgid "SMS"
|
323 |
+
msgstr "এসএমএস"
|
324 |
+
|
325 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:170
|
326 |
+
msgid "Select delivery method for statistical report."
|
327 |
+
msgstr "পরিসংখ্যান প্রতিবেদনের জন্য নির্বাচন ডেলিভারি পদ্ধতি."
|
328 |
+
|
329 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:173
|
330 |
+
msgid "Note: To send SMS text messages please install the %s plugin."
|
331 |
+
msgstr "দ্রষ্টব্য: এসএমএস টেক্সট বার্তা%s এর প্লাগইন ইনস্টল করুন পাঠান."
|
332 |
+
|
333 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:173
|
334 |
+
msgid "WordPress SMS"
|
335 |
+
msgstr "ওয়ার্ডপ্রেস এসএমএস"
|
336 |
+
|
337 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:180
|
338 |
+
msgid "Report body"
|
339 |
+
msgstr "রিপোর্ট শরীর"
|
340 |
+
|
341 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:185
|
342 |
+
msgid "Enter the contents of the report."
|
343 |
+
msgstr "রিপোর্টের বিষয়বস্তু লিখুন."
|
344 |
+
|
345 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:187
|
346 |
+
msgid "Any shortcode supported by your installation of WordPress, include all shortcodes for WP Statistics (see the admin manual for a list of codes available) are supported in the body of the message. Here are some examples:"
|
347 |
+
msgstr "আপনার ওয়ার্ডপ্রেস এর ইনস্টলেশন দ্বারা সমর্থিত যে কোনো সর্টকোড, ডাব্লু পরিসংখ্যান সব shortcodes (উপলব্ধ কোড একটি তালিকা জন্য প্রশাসক ম্যানুয়াল দেখুন) বার্তা শরীরের সমর্থিত অন্তর্ভুক্ত. এখানে কিছু উদাহরণ:"
|
348 |
+
|
349 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
350 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:38
|
351 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:245
|
352 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:464
|
353 |
+
msgid "User Online"
|
354 |
+
msgstr "এখন দেখছে"
|
355 |
+
|
356 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:189
|
357 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:52
|
358 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:251
|
359 |
+
msgid "Today Visitor"
|
360 |
+
msgstr "আজ দেখেছে"
|
361 |
+
|
362 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:190
|
363 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:45
|
364 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:248
|
365 |
+
msgid "Today Visit"
|
366 |
+
msgstr "আজ দেখেছে"
|
367 |
+
|
368 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:191
|
369 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:66
|
370 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:257
|
371 |
+
msgid "Yesterday Visitor"
|
372 |
+
msgstr "গতকাল দেখেছে"
|
373 |
+
|
374 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:192
|
375 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:59
|
376 |
+
msgid "Yesterday Visit"
|
377 |
+
msgstr "গতকাল দেখেছে"
|
378 |
+
|
379 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:193
|
380 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:101
|
381 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:272
|
382 |
+
msgid "Total Visitor"
|
383 |
+
msgstr "মোট দেখা হয়েছে"
|
384 |
+
|
385 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:194
|
386 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:94
|
387 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:269
|
388 |
+
msgid "Total Visit"
|
389 |
+
msgstr "মোট দেখা হয়েছে"
|
390 |
|
391 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:23
|
392 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:32
|
393 |
+
msgid "None"
|
394 |
+
msgstr "না"
|
395 |
+
|
396 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:24
|
397 |
+
msgid "Summary Statistics"
|
398 |
msgstr "পরিসংখ্যান"
|
399 |
|
400 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:28
|
401 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:108
|
402 |
+
msgid "About"
|
403 |
+
msgstr "প্রায়"
|
404 |
|
405 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
406 |
+
msgid "Hits Statistical Chart"
|
407 |
+
msgstr "পরিসংখ্যান চার্ট হিট সংখ্যা"
|
|
|
408 |
|
409 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:36
|
410 |
+
msgid "Search Engine Referrers Statistical Chart"
|
411 |
+
msgstr "সার্চ ইঞ্জিন উল্লেখ পরিসংখ্যান চার্ট"
|
|
|
412 |
|
413 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:38
|
414 |
+
msgid "Top Pages Visited"
|
415 |
+
msgstr "শীর্ষ পেজ দেখা"
|
|
|
416 |
|
417 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:73
|
418 |
+
msgid "Dashboard"
|
419 |
+
msgstr "ড্যাশবোর্ড"
|
|
|
|
|
420 |
|
421 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:77
|
422 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:97
|
423 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:117
|
424 |
+
msgid "The following items are global to all users."
|
425 |
+
msgstr "নিম্নলিখিত আইটেম সব ব্যবহারকারীদের জন্য বিশ্বব্যাপী."
|
426 |
+
|
427 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:82
|
428 |
+
msgid "Disable dashboard widgets"
|
429 |
+
msgstr "ড্যাশবোর্ড উইজেট নিষ্ক্রিয় করা"
|
430 |
+
|
431 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:88
|
432 |
+
msgid "Disable the dashboard widgets."
|
433 |
+
msgstr "ড্যাশবোর্ড উইজেট নিষ্ক্রিয় করুন."
|
434 |
+
|
435 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:93
|
436 |
+
msgid "Page/Post Editor"
|
437 |
+
msgstr "পৃষ্ঠা / পোস্ট সম্পাদক"
|
438 |
+
|
439 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:102
|
440 |
+
msgid "Disable post/page editor widget"
|
441 |
+
msgstr "নিষ্ক্রিয় পোস্ট / পৃষ্ঠা সম্পাদক উইজেট"
|
442 |
|
443 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:108
|
444 |
+
msgid "Disable the page/post editor widget."
|
445 |
+
msgstr "পৃষ্ঠা / পোস্ট সম্পাদক উইজেট নিষ্ক্রিয় করুন."
|
446 |
+
|
447 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:122
|
448 |
+
msgid "Map type"
|
449 |
+
msgstr "মানচিত্র টাইপ"
|
450 |
+
|
451 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:128
|
452 |
msgid "Google"
|
453 |
msgstr "গুগল"
|
454 |
|
455 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:128
|
456 |
+
msgid "JQVMap"
|
457 |
+
msgstr "JQVMap"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
458 |
|
459 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:135
|
460 |
+
msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
|
461 |
+
msgstr "সাম্প্রতিক দর্শক প্লটে বিভক্ত গুগল ম্যাপিং সেবা ব্যবহার করা হবে "গুগল" বিকল্প (গুগল এক্সেস প্রয়োজন)."
|
|
|
|
|
462 |
|
463 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:136
|
464 |
+
msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
|
465 |
+
msgstr ""JQVMap" বিকল্প সাম্প্রতিক দর্শক (কোন extenral পরিষেবা প্রয়োজন) প্লটে বিভক্ত করতে দয়া করে জাভাস্ক্রিপ্ট ম্যাপিং লাইব্রেরি JQVMap ব্যবহার করা হবে."
|
|
|
466 |
|
467 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:142
|
468 |
+
msgid "Disable map"
|
469 |
+
msgstr "নিষ্ক্রিয় মানচিত্র"
|
|
|
470 |
|
471 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:148
|
472 |
+
msgid "Disable the map display"
|
473 |
+
msgstr "মানচিত্র প্রদর্শন নিষ্ক্রিয় করুন"
|
|
|
474 |
|
475 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:154
|
476 |
+
msgid "Get country location from Google"
|
477 |
+
msgstr "গুগল থেকে দেশের অবস্থান পান"
|
|
|
478 |
|
479 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:160
|
480 |
+
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
481 |
+
msgstr "পরিসংখ্যান দেখছেন এবং মানচিত্র টাইপ "গুগল" সেট করা হয় কেবল বৈধ হলে এই বৈশিষ্ট্য একটি কার্যকারিতা অবনতি হতে পারে."
|
|
|
|
|
482 |
|
483 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:171
|
484 |
+
msgid "Overview Widgets to Display"
|
485 |
+
msgstr "সংক্ষিপ্ত বিবরণ উইজেট প্রদর্শন"
|
|
|
|
|
|
|
|
|
|
|
486 |
|
487 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:175
|
488 |
+
msgid "The following items are unique to each user. If you do not select the 'About' widget it will automatically be displayed in the last positon of column A."
|
489 |
+
msgstr "নিম্নলিখিত আইটেম প্রত্যেক ব্যবহারকারীর জন্য পৃথক হবে. আপনি 'আমার' নির্বাচন করবেন না এটি স্বয়ংক্রিয়ভাবে কলাম এ শেষ ফার্দিনান্দ প্রদর্শিত হবে উইজেট"
|
|
|
|
|
|
|
|
|
490 |
|
491 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:180
|
492 |
+
msgid "Slot"
|
493 |
+
msgstr "ছেঁদা"
|
|
|
|
|
494 |
|
495 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:184
|
496 |
+
msgid "Column A"
|
497 |
+
msgstr "কলাম A"
|
|
|
498 |
|
499 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:188
|
500 |
+
msgid "Column B"
|
501 |
+
msgstr "কলাম B"
|
|
|
502 |
|
503 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:194
|
504 |
+
msgid "Slot 1"
|
505 |
+
msgstr "স্লট 1"
|
|
|
|
|
506 |
|
507 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:224
|
508 |
+
msgid "Slot 2"
|
509 |
+
msgstr "স্লট 2"
|
|
|
|
|
510 |
|
511 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:254
|
512 |
+
msgid "Slot 3"
|
513 |
+
msgstr "স্লট 3"
|
|
|
514 |
|
515 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:284
|
516 |
+
msgid "Slot 4"
|
517 |
+
msgstr "স্লট 4"
|
|
|
518 |
|
519 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:314
|
520 |
+
msgid "Slot 5"
|
521 |
+
msgstr "স্লট 5"
|
|
|
522 |
|
523 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:344
|
524 |
+
msgid "Slot 6"
|
525 |
+
msgstr "স্লট 6"
|
|
|
526 |
|
527 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:348
|
528 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:370
|
529 |
+
msgid "N/A"
|
530 |
+
msgstr "N / A"
|
531 |
|
532 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:366
|
533 |
+
msgid "Slot 7"
|
534 |
+
msgstr "স্লট 7"
|
|
|
|
|
535 |
|
536 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:15
|
537 |
+
msgid "WP Statisitcs Removal"
|
538 |
+
msgstr "ডাব্লু Statisitcs অপসারণ"
|
|
|
539 |
|
540 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:20
|
541 |
+
msgid "Uninstalling WP Statistics will not remove the data and settings, you can use this option to remove the WP Statistics data from your install before uninstalling the plugin."
|
542 |
+
msgstr "আনইনস্টল ডাব্লু পরিসংখ্যান তথ্য এবং সেটিংস মুছে ফেলা হবে, আপনি প্লাগইন আনইনস্টল করার আগে আপনার ইনস্টল থেকে ডাব্লু পরিসংখ্যান তথ্য মুছে ফেলার জন্য এই অপশনটি ব্যবহার করতে পারেন."
|
|
|
543 |
|
544 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:23
|
545 |
+
msgid "Once you submit this form the settings will be deleted during the page load, however WP Statistics will still show up in your Admin menu until another page load is executed."
|
546 |
+
msgstr "আপনি সেটিংস পৃষ্ঠা লোড করার সময় মুছে ফেলা হবে এই ফর্মটি আবার জমা একবার অন্য পৃষ্ঠা লোড মৃত্যুদন্ড কার্যকর না হওয়া পর্যন্ত, তবে ডাব্লু পরিসংখ্যান এখনও আপনার অ্যাডমিন মেনু প্রদর্শন করা হবে."
|
|
|
547 |
|
548 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:29
|
549 |
+
msgid "Remove data and settings"
|
550 |
+
msgstr "তথ্য এবং সেটিংস মুছে ফেলুন"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
551 |
|
552 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:34
|
553 |
+
msgid "Remove"
|
554 |
+
msgstr "অপসারণ"
|
555 |
+
|
556 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:35
|
557 |
+
msgid "Remove data and settings, this action cannot be undone."
|
558 |
+
msgstr "তথ্য এবং সেটিংস মুছে ফেলুন, এই কর্ম পূর্বাবস্থায় ফেরানো যাবে না."
|
559 |
+
|
560 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:100
|
561 |
+
msgid "General"
|
562 |
+
msgstr "সাধারণ"
|
563 |
+
|
564 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:101
|
565 |
+
msgid "Notifications"
|
566 |
+
msgstr "বিজ্ঞপ্তি"
|
567 |
+
|
568 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:102
|
569 |
+
msgid "Dashboard/Overview"
|
570 |
+
msgstr "ড্যাশবোর্ড / সংক্ষিপ্ত বিবরণ"
|
571 |
+
|
572 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:103
|
573 |
+
msgid "Access/Exclusions"
|
574 |
+
msgstr "প্রবেশ / বর্জন"
|
575 |
+
|
576 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:105
|
577 |
+
msgid "browscap"
|
578 |
+
msgstr "Browscap"
|
579 |
+
|
580 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:106
|
581 |
+
msgid "Maintenance"
|
582 |
+
msgstr "রক্ষণ"
|
583 |
+
|
584 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:107
|
585 |
+
msgid "Removal"
|
586 |
+
msgstr "অপসারণ"
|
587 |
+
|
588 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:150
|
589 |
+
msgid "Update"
|
590 |
+
msgstr "আপডেট"
|
591 |
+
|
592 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/manual/manual.php:29
|
593 |
+
msgid "Manual not found: %s"
|
594 |
+
msgstr "ম্যানুয়াল পাওয়া যায় না:% এর"
|
595 |
+
|
596 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/manual/manual.php:39
|
597 |
+
msgid "Invalid file type selected: %s"
|
598 |
+
msgstr "অবৈধ ফাইল টাইপ নির্বাচন করুন:%s"
|
599 |
+
|
600 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:10
|
601 |
+
msgid "Once Weekly"
|
602 |
+
msgstr "সাপ্তাহিক একবার"
|
603 |
+
|
604 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:17
|
605 |
+
msgid "Once Every 2 Weeks"
|
606 |
+
msgstr "প্রতি 2 সপ্তাহে একবার"
|
607 |
+
|
608 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:24
|
609 |
+
msgid "Once Every 4 Weeks"
|
610 |
+
msgstr "প্রতি 4 সপ্তাহ পরে"
|
611 |
+
|
612 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:14
|
613 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:284
|
614 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:321
|
615 |
+
msgid "Statistics"
|
616 |
+
msgstr "পরিসংখ্যান"
|
617 |
|
618 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:15
|
619 |
+
msgid "Show site stats in sidebar."
|
620 |
+
msgstr "দেখান সাইটের সাইডবারে পরিসংখ্যান."
|
|
|
621 |
|
622 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:73
|
623 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:260
|
624 |
+
msgid "Week Visit"
|
625 |
+
msgstr "এ সপ্তাহে দেখেছে"
|
626 |
|
627 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:80
|
628 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:263
|
629 |
+
msgid "Month Visit"
|
630 |
+
msgstr "এ মাসে দেখেছে"
|
631 |
|
632 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:87
|
633 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:266
|
634 |
+
msgid "Years Visit"
|
635 |
+
msgstr "এ বছরে দেখেছে"
|
636 |
|
637 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:108
|
638 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:275
|
639 |
+
msgid "Total Page Views"
|
640 |
+
msgstr "মোট পৃষ্ঠা দেখেছে"
|
641 |
|
642 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:116
|
643 |
+
msgid "Search Engine referred"
|
644 |
+
msgstr "সার্চ ইঞ্জিন উল্লেখ"
|
|
|
645 |
|
646 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:123
|
647 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:298
|
648 |
+
msgid "Total Posts"
|
649 |
+
msgstr "মোট পোষ্ট"
|
|
|
|
|
|
|
650 |
|
651 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:130
|
652 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:301
|
653 |
+
msgid "Total Pages"
|
654 |
+
msgstr "মোট পাতা"
|
655 |
|
656 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:137
|
657 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:304
|
658 |
+
msgid "Total Comments"
|
659 |
+
msgstr "মোট মন্তব্য"
|
660 |
|
661 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:144
|
662 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:307
|
663 |
+
msgid "Total Spams"
|
664 |
+
msgstr "মোট স্প্যাম"
|
665 |
+
|
666 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:151
|
667 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:310
|
668 |
+
msgid "Total Users"
|
669 |
+
msgstr "মোট ব্যবহারকারী"
|
670 |
+
|
671 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:158
|
672 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:313
|
673 |
+
msgid "Average Posts"
|
674 |
+
msgstr "গড় পোষ্ট"
|
675 |
+
|
676 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:165
|
677 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:316
|
678 |
+
msgid "Average Comments"
|
679 |
+
msgstr "গড় মন্তব্য"
|
680 |
+
|
681 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:172
|
682 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:319
|
683 |
+
msgid "Average Users"
|
684 |
+
msgstr "গড় ব্যবহারকারী"
|
685 |
+
|
686 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:179
|
687 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:322
|
688 |
+
msgid "Last Post Date"
|
689 |
+
msgstr "শেষ পোষ্টের তারিখ"
|
690 |
|
691 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:238
|
|
|
692 |
msgid "Name"
|
693 |
msgstr "নাম"
|
694 |
|
695 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:242
|
|
|
696 |
msgid "Items"
|
697 |
msgstr "আইটেম"
|
698 |
|
699 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:254
|
700 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:489
|
701 |
+
msgid "Yesterday visit"
|
702 |
+
msgstr "গতকাল দেখেছে"
|
703 |
+
|
704 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:278
|
705 |
+
msgid "Search Engine Referred"
|
706 |
+
msgstr "সার্চ ইঞ্জিন রেফার"
|
707 |
+
|
708 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:281
|
709 |
msgid "Select type of search engine"
|
710 |
msgstr "সার্চ ইঞ্জিন নির্বাচন করুন"
|
711 |
|
712 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
|
713 |
+
msgid "ERROR: WP Statistics has detected an unsupported version of PHP, WP Statistics will not function without PHP Version "
|
714 |
+
msgstr "ত্রুটি: ডাব্লু পরিসংখ্যান পিএইচপি এর একটি অসমর্থিত সংস্করণ সনাক্ত করেছে, ডাব্লু পরিসংখ্যান পিএইচপি সংস্করণ ছাড়া কাজ করবে না"
|
715 |
+
|
716 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
|
717 |
+
msgid " or higher!"
|
718 |
+
msgstr "বা উচ্চতর!"
|
719 |
+
|
720 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
|
721 |
+
msgid "Your current PHP version is"
|
722 |
+
msgstr "আপনার বর্তমান পিএইচপি সংস্করণ"
|
723 |
+
|
724 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:42
|
725 |
+
msgid "WP Statistics has been removed, please disable and delete it."
|
726 |
+
msgstr "ডাব্লু পরিসংখ্যান সরিয়ে ফেলা হয়েছে, নিষ্ক্রিয় এটা দয়া করে মুছে দিন."
|
727 |
|
728 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:53
|
729 |
+
msgid "WP Statistics"
|
730 |
+
msgstr "ডাব্লু পরিসংখ্যান"
|
|
|
731 |
|
732 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:54
|
733 |
+
msgid "Complete statistics for your WordPress site."
|
734 |
+
msgstr "আপনার ওয়ার্ডপ্রেস সাইটের জন্য সম্পূর্ণ পরিসংখ্যান."
|
|
|
735 |
|
736 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:97
|
737 |
+
msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
|
738 |
+
msgstr "ডাব্লু পরিসংখ্যান অনলাইন ব্যবহারকারী ট্র্যাকিং সক্রিয় করা হয় না,%s- যান এবং এটি সক্রিয় করুন."
|
739 |
+
|
740 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:97
|
741 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:100
|
742 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:103
|
743 |
+
msgid "setting page"
|
744 |
+
msgstr "সেটিং পাতা"
|
745 |
+
|
746 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:100
|
747 |
+
msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
|
748 |
+
msgstr "সক্রিয় করা হয় না ডাব্লু পরিসংখ্যান ট্র্যাকিং হিট,%s- যান এবং এটি সক্রিয় করুন."
|
749 |
+
|
750 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:103
|
751 |
+
msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
|
752 |
+
msgstr "ডাব্লু পরিসংখ্যান ট্র্যাকিং পরিদর্শক সক্রিয় করা হয় না,%s- যান এবং এটি সক্রিয় করুন."
|
753 |
+
|
754 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:106
|
755 |
+
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
756 |
+
msgstr "GeoIP সংগ্রহ সক্রিয় নয়,%s- যান এবং এই বৈশিষ্ট্য সক্রিয় করুন."
|
757 |
+
|
758 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:106
|
759 |
+
msgid "Setting page > GeoIP"
|
760 |
+
msgstr "সেট পাতা> GeoIP"
|
761 |
+
|
762 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:191
|
763 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:303
|
764 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:375
|
765 |
+
msgid "Settings"
|
766 |
+
msgstr "সেটিসং"
|
767 |
+
|
768 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:203
|
769 |
+
msgid "Click here to visit the plugin on WordPress.org"
|
770 |
+
msgstr "WordPress.org প্লাগইন জন্য এখানে ক্লিক করুন"
|
771 |
+
|
772 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:203
|
773 |
+
msgid "Visit WordPress.org page"
|
774 |
+
msgstr "WordPress.org পৃষ্ঠা দেখুন"
|
775 |
+
|
776 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:206
|
777 |
+
msgid "Click here to rate and review this plugin on WordPress.org"
|
778 |
+
msgstr "হার করতে এখানে ক্লিক করুন এবং WordPress.org উপর এই প্লাগ পর্যালোচনা"
|
779 |
+
|
780 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:206
|
781 |
+
msgid "Rate this plugin"
|
782 |
+
msgstr "এই প্লাগ রেট"
|
783 |
+
|
784 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:250
|
785 |
+
msgid "WP Statistics - Hits"
|
786 |
+
msgstr "ডাব্লু পরিসংখ্যান - হিট"
|
787 |
+
|
788 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:287
|
789 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:324
|
790 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:362
|
791 |
+
msgid "Overview"
|
792 |
+
msgstr "সংক্ষিপ্ত বিবরণ"
|
793 |
+
|
794 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:294
|
795 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:367
|
796 |
+
msgid "Online"
|
797 |
+
msgstr "অনলাইন"
|
798 |
+
|
799 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:296
|
800 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:369
|
801 |
+
msgid "Referrers"
|
802 |
+
msgstr "উল্লেখ"
|
803 |
+
|
804 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:297
|
805 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:370
|
806 |
+
msgid "Searches"
|
807 |
+
msgstr "অনুসন্ধান"
|
808 |
+
|
809 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:298
|
810 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:371
|
811 |
+
msgid "Search Words"
|
812 |
+
msgstr "অনুসন্ধান শব্দ"
|
813 |
+
|
814 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:299
|
815 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:372
|
816 |
+
msgid "Top Visitors Today"
|
817 |
+
msgstr "শীর্ষ দর্শক আজ"
|
818 |
+
|
819 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:302
|
820 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:374
|
821 |
+
msgid "Optimization"
|
822 |
+
msgstr "অপ্টিমাইজেশান"
|
823 |
+
|
824 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:307
|
825 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:338
|
826 |
+
msgid "Manual"
|
827 |
+
msgstr "ম্যানুয়াল"
|
828 |
+
|
829 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:353
|
830 |
+
msgid "Site"
|
831 |
+
msgstr "সাইট"
|
832 |
|
833 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:354
|
834 |
+
msgid "Options"
|
835 |
+
msgstr "বিকল্প"
|
836 |
|
837 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:471
|
838 |
+
msgid "Today visitor"
|
839 |
+
msgstr "আজ দেখেছে"
|
840 |
|
841 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:477
|
842 |
+
msgid "Today visit"
|
843 |
+
msgstr "আজ দেখেছে"
|
844 |
|
845 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:483
|
846 |
+
msgid "Yesterday visitor"
|
847 |
+
msgstr "গতকাল দেখেছে"
|
848 |
|
849 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:495
|
850 |
+
msgid "View Stats"
|
851 |
+
msgstr "দেখুন পরিসংখ্যান"
|
852 |
|
853 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:519
|
854 |
+
msgid "Download ODF file"
|
855 |
+
msgstr "যেমন ODF ফাইল ডাউনলোড"
|
856 |
|
857 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:520
|
858 |
+
msgid "Download HTML file"
|
859 |
+
msgstr "ডাউনলোড করুন HTML ফাইল"
|
860 |
|
861 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:524
|
862 |
+
msgid "Manual file not found."
|
863 |
+
msgstr "ম্যানুয়াল ফাইল পাওয়া যায় না."
|
864 |
|
865 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:591
|
866 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:702
|
867 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:736
|
868 |
+
msgid "You do not have sufficient permissions to access this page."
|
869 |
+
msgstr "আপনার এই পেজ দেখার মত পর্যাপ্ত অনুমতি নেই।"
|
870 |
|
871 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:604
|
872 |
+
msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
|
873 |
+
msgstr "প্লাগইন টেবিল ডাটাবেসের মধ্যে উপস্থিত না! এর রুটিন% এর ইনস্টল% পুনরায় চালনা করুন."
|
874 |
+
|
875 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-install.php:250
|
876 |
+
msgid "WP Statistics %s installed on"
|
877 |
+
msgstr "ডাব্লু পরিসংখ্যান%s এর উপর ইনস্টল করা"
|
878 |
+
|
879 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:34
|
880 |
+
msgid "Error downloading GeoIP database from: %s - %s"
|
881 |
+
msgstr "ত্রুটি ডাউনলোড GeoIP ডাটাবেস থেকে:% এর -% এর"
|
882 |
+
|
883 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:45
|
884 |
+
msgid "Error could not open downloaded GeoIP database for reading: %s"
|
885 |
+
msgstr "ত্রুটি পড়ার জন্য ডাউনলোড GeoIP ডাটাবেস খুলতে পারে না:%s এর"
|
886 |
+
|
887 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:52
|
888 |
+
msgid "Error could not open destination GeoIP database for writing %s"
|
889 |
+
msgstr "% এর লেখার জন্য ত্রুটি পারে না খোলা গন্তব্য GeoIP ডাটাবেস"
|
890 |
+
|
891 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:68
|
892 |
+
msgid "GeoIP Database updated successfully!"
|
893 |
+
msgstr "GeoIP ডাটাবেস সফলভাবে আপডেট!"
|
894 |
+
|
895 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:93
|
896 |
+
msgid "GeoIP update on"
|
897 |
+
msgstr "আপডেট GeoIP"
|
898 |
+
|
899 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:160
|
900 |
+
msgid "Error downloading browscap database from: %s - %s"
|
901 |
+
msgstr "থেকে Browscap ডাটাবেস ডাউনলোড ত্রুটি:%s এর -% এর"
|
902 |
+
|
903 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:262
|
904 |
+
msgid "browscap database updated successfully!"
|
905 |
+
msgstr "Browscap ডাটাবেস সফলভাবে আপডেট!"
|
906 |
+
|
907 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:273
|
908 |
+
msgid "browscap database updated failed! Cache file too large, reverting to previous browscap.ini."
|
909 |
+
msgstr "Browscap ডাটাবেস ব্যর্থ আপডেট করা হয়েছে! ক্যাশে ফাইল পূর্ববর্তী Browscap.ini প্রত্যাবর্তন, খুব বড়."
|
910 |
+
|
911 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:281
|
912 |
+
msgid "browscap database updated failed! New browscap.ini is mis-identifing user agents as crawlers, reverting to previous browscap.ini."
|
913 |
+
msgstr "Browscap ডাটাবেস ব্যর্থ আপডেট করা হয়েছে! নতুন Browscap.ini পূর্ববর্তী Browscap.ini প্রত্যাবর্তন, ক্রলার হিসাবে ব্যবহারকারী এজেন্ট অন্যায় identifing করা হয়."
|
914 |
+
|
915 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:303
|
916 |
+
msgid "browscap already at current version!"
|
917 |
+
msgstr "বর্তমান সংস্করণ ইতিমধ্যে Browscap!"
|
918 |
+
|
919 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:316
|
920 |
+
msgid "Browscap.ini update on"
|
921 |
+
msgstr "উপর Browscap.ini আপডেট"
|
922 |
+
|
923 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:55
|
924 |
+
msgid "Quick Stats"
|
925 |
+
msgstr "দ্রুত পরিসংখ্যান"
|
926 |
+
|
927 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:56
|
928 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:54
|
929 |
+
msgid "Top 10 Browsers"
|
930 |
+
msgstr "শীর্ষ 10 ব্রাউজার"
|
931 |
+
|
932 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:57
|
933 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:11
|
934 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:27
|
935 |
+
msgid "Top 10 Countries"
|
936 |
+
msgstr "শীর্ষ 10 দেশ"
|
937 |
+
|
938 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:58
|
939 |
+
msgid "Today's Visitor Map"
|
940 |
+
msgstr "আজকের ছবি মানচিত্র"
|
941 |
+
|
942 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:59
|
943 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:46
|
944 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:8
|
945 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:8
|
946 |
+
msgid "Hit Statistics"
|
947 |
+
msgstr "হিট পরিসংখ্যান"
|
948 |
+
|
949 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:60
|
950 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:11
|
951 |
+
msgid "Top 10 Pages"
|
952 |
+
msgstr "শীর্ষ 10 পেজ"
|
953 |
+
|
954 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:61
|
955 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:30
|
956 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:8
|
957 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:39
|
958 |
+
msgid "Recent Visitors"
|
959 |
+
msgstr "এ সপ্তাহে দেখেছে"
|
960 |
|
961 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:62
|
962 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:27
|
963 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:42
|
964 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:13
|
965 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:26
|
966 |
+
msgid "Top Referring Sites"
|
967 |
+
msgstr "শীর্ষ উল্লেখ সাইট"
|
968 |
+
|
969 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:63
|
970 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:7
|
971 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:74
|
972 |
+
msgid "Search Engine Referrals"
|
973 |
+
msgstr "সার্চ ইঞ্জিন রেফারাল"
|
974 |
+
|
975 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:64
|
976 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:8
|
977 |
+
msgid "Summary"
|
978 |
+
msgstr "সংক্ষিপ্ত"
|
979 |
+
|
980 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:65
|
981 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:30
|
982 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:8
|
983 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:37
|
984 |
+
msgid "Latest Search Words"
|
985 |
+
msgstr "সাম্প্রতিক অনুসন্ধান শব্দ"
|
986 |
+
|
987 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:66
|
988 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:8
|
989 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:35
|
990 |
+
msgid "Top 10 Visitors Today"
|
991 |
+
msgstr "শীর্ষ 10 দর্শক আজ"
|
992 |
+
|
993 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:97
|
994 |
+
msgid "Please reload the dashboard to display the content of this widget."
|
995 |
+
msgstr "এই উইজেট সামগ্রী প্রদর্শন করার জন্য ড্যাশবোর্ড পুনরায় লোড করুন."
|
996 |
+
|
997 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:138
|
998 |
+
msgid "WP Statistics Overview"
|
999 |
+
msgstr "ডাব্লু পরিসংখ্যান সংক্ষিপ্ত বিবরণ"
|
1000 |
+
|
1001 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:63
|
1002 |
+
msgid "This post is not yet published."
|
1003 |
+
msgstr "এই পোস্টে এখনো প্রকাশিত হয় না."
|
1004 |
+
|
1005 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:26
|
1006 |
+
msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
|
1007 |
+
msgstr "GeoIP ডাটাবেস লোড করতে অক্ষম, আপনি সেটিংস পৃষ্ঠায় এটি ডাউনলোড করা আছে কি না."
|
1008 |
+
|
1009 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:50
|
1010 |
+
msgid "Updated %s GeoIP records in the visitors database."
|
1011 |
+
msgstr "দর্শক ডাটাবেসের মধ্যে আপডেট করা হয়েছে%s এর GeoIP রেকর্ড."
|
1012 |
+
|
1013 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:21
|
1014 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:39
|
1015 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:50
|
1016 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:83
|
1017 |
+
msgid "%s data older than %s days purged successfully."
|
1018 |
+
msgstr "পুরোনো% এর দিন% এর তথ্য সফলভাবে পার্জ."
|
1019 |
+
|
1020 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:23
|
1021 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:41
|
1022 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:52
|
1023 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:85
|
1024 |
+
msgid "No records found to purge from %s!"
|
1025 |
+
msgstr "কোন রেকর্ড% এর থেকে মুক্ত করতে পাওয়া যায় নি!"
|
1026 |
+
|
1027 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:98
|
1028 |
+
msgid "Database pruned on"
|
1029 |
+
msgstr "ডাটাবেস pruned"
|
1030 |
+
|
1031 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:103
|
1032 |
+
msgid "Please select a value over 30 days."
|
1033 |
+
msgstr "30 দিন ধরে একটি মান নির্বাচন করুন."
|
1034 |
+
|
1035 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:8
|
1036 |
+
msgid "Browser Statistics"
|
1037 |
+
msgstr "ব্রাউজার পরিসংখ্যান"
|
1038 |
+
|
1039 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:14
|
1040 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:98
|
1041 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:233
|
1042 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:74
|
1043 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
|
1044 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:61
|
1045 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:60
|
1046 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:17
|
1047 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:47
|
1048 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:29
|
1049 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:19
|
1050 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:137
|
1051 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:38
|
1052 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:7
|
1053 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:6
|
1054 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:9
|
1055 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:8
|
1056 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:7
|
1057 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:8
|
1058 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:9
|
1059 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:6
|
1060 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:11
|
1061 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:6
|
1062 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:7
|
1063 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:7
|
1064 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:6
|
1065 |
+
msgid "Click to toggle"
|
1066 |
+
msgstr "টগল করার জন্য ক্লিক করুন"
|
1067 |
|
1068 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:15
|
1069 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:7
|
1070 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:25
|
1071 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:288
|
1072 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:363
|
1073 |
+
msgid "Browsers"
|
1074 |
+
msgstr "ব্রাউজার"
|
1075 |
+
|
1076 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:42
|
1077 |
+
msgid "Browsers by type"
|
1078 |
+
msgstr "টাইপ দ্বারা ব্রাউজার"
|
1079 |
+
|
1080 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:99
|
1081 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:34
|
1082 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:302
|
1083 |
+
msgid "Platform"
|
1084 |
+
msgstr "প্ল্যাটফর্ম"
|
1085 |
+
|
1086 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:126
|
1087 |
+
msgid "Browsers by platform"
|
1088 |
+
msgstr "প্ল্যাটফর্ম দ্বারা ব্রাউজার"
|
1089 |
+
|
1090 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:234
|
1091 |
+
msgid "%s Version"
|
1092 |
+
msgstr "% এর সংস্করণ"
|
1093 |
+
|
1094 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:8
|
1095 |
+
msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
|
1096 |
+
msgstr "দৃষ্টি আকর্ষণ: অব্যাহতির বর্তমানে রেকর্ড করা সেট করা হয় না, ফলাফল নীচের বর্তমান পরিসংখ্যান প্রতিফলিত নাও হতে পারে!"
|
1097 |
+
|
1098 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:54
|
1099 |
+
msgid "Exclusions Statistics"
|
1100 |
+
msgstr "বর্জন করুন পরিসংখ্যান"
|
1101 |
+
|
1102 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:57
|
1103 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:12
|
1104 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:33
|
1105 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:15
|
1106 |
+
msgid "10 Days"
|
1107 |
+
msgstr "10 দিন"
|
1108 |
+
|
1109 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:58
|
1110 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:13
|
1111 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:34
|
1112 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:16
|
1113 |
+
msgid "20 Days"
|
1114 |
+
msgstr "20 দিন"
|
1115 |
+
|
1116 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:59
|
1117 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:14
|
1118 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:35
|
1119 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:17
|
1120 |
+
msgid "30 Days"
|
1121 |
+
msgstr "30 দিন"
|
1122 |
+
|
1123 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:60
|
1124 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:15
|
1125 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:36
|
1126 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:18
|
1127 |
+
msgid "2 Months"
|
1128 |
+
msgstr "2 মাস"
|
1129 |
+
|
1130 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:61
|
1131 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:16
|
1132 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:37
|
1133 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:19
|
1134 |
+
msgid "3 Months"
|
1135 |
+
msgstr "3 মাস"
|
1136 |
+
|
1137 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:62
|
1138 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:17
|
1139 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:38
|
1140 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:20
|
1141 |
+
msgid "6 Months"
|
1142 |
+
msgstr "6 মাস"
|
1143 |
+
|
1144 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:63
|
1145 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:18
|
1146 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:39
|
1147 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
|
1148 |
+
msgid "9 Months"
|
1149 |
+
msgstr "9 মাস"
|
1150 |
+
|
1151 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:64
|
1152 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:19
|
1153 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:40
|
1154 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
|
1155 |
+
msgid "1 Year"
|
1156 |
+
msgstr "1 বছর"
|
1157 |
+
|
1158 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:68
|
1159 |
+
msgid "Total Exclusions: %s"
|
1160 |
+
msgstr "মোট বর্জন:% এর"
|
1161 |
+
|
1162 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:75
|
1163 |
+
msgid "Exclusions Statistical Chart"
|
1164 |
+
msgstr "বর্জন পরিসংখ্যান চার্ট"
|
1165 |
+
|
1166 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:97
|
1167 |
+
msgid "Excluded hits in the last"
|
1168 |
+
msgstr "গত বাদ হিট"
|
1169 |
+
|
1170 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:97
|
1171 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:60
|
1172 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:71
|
1173 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:51
|
1174 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:55
|
1175 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:151
|
1176 |
+
msgid "days"
|
1177 |
+
msgstr "দিন"
|
1178 |
+
|
1179 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:118
|
1180 |
+
msgid "Number of excluded hits"
|
1181 |
+
msgstr "বাদ হিট সংখ্যা"
|
1182 |
+
|
1183 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:27
|
1184 |
+
msgid "Hits Statistics Chart"
|
1185 |
+
msgstr "হিট পরিসংখ্যান চার্ট"
|
1186 |
+
|
1187 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:60
|
1188 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:51
|
1189 |
+
msgid "Hits in the last"
|
1190 |
+
msgstr "শেষ হিট"
|
1191 |
+
|
1192 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:81
|
1193 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:72
|
1194 |
+
msgid "Number of visits and visitors"
|
1195 |
+
msgstr "পরিদর্শন এবং দর্শক সংখ্যা"
|
1196 |
|
1197 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:95
|
1198 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:86
|
1199 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:30
|
1200 |
+
msgid "Visit"
|
1201 |
+
msgstr "এ সপ্তাহে দেখেছে"
|
|
|
1202 |
|
1203 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:95
|
1204 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:86
|
1205 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:29
|
1206 |
+
msgid "Visitor"
|
1207 |
+
msgstr "পরিদর্শক"
|
1208 |
+
|
1209 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:62
|
1210 |
+
msgid "Latest Search Word Statistics"
|
1211 |
+
msgstr "সাম্প্রতিক অনুসন্ধান শব্দ পরিসংখ্যান"
|
1212 |
+
|
1213 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:97
|
1214 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:97
|
1215 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:48
|
1216 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:84
|
1217 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:71
|
1218 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:30
|
1219 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:32
|
1220 |
+
msgid "#hash#"
|
1221 |
+
msgstr "# হ্যাশ #"
|
1222 |
+
|
1223 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:102
|
1224 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:102
|
1225 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:53
|
1226 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:71
|
1227 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:35
|
1228 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:39
|
1229 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:33
|
1230 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:113
|
1231 |
+
msgid "Map"
|
1232 |
+
msgstr "মানচিত্র"
|
1233 |
+
|
1234 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:139
|
1235 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:135
|
1236 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:105
|
1237 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
|
1238 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
|
1239 |
+
msgid "Page"
|
1240 |
+
msgstr "পৃষ্ঠা"
|
1241 |
+
|
1242 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:139
|
1243 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:135
|
1244 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:105
|
1245 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
|
1246 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
|
1247 |
+
msgid "From"
|
1248 |
+
msgstr "থেকে"
|
1249 |
+
|
1250 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:32
|
1251 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:29
|
1252 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:135
|
1253 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:294
|
1254 |
+
msgid "All"
|
1255 |
+
msgstr "সকল"
|
1256 |
|
1257 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:62
|
1258 |
+
msgid "Search for"
|
1259 |
+
msgstr "জন্য অনুসন্ধান করুন"
|
1260 |
+
|
1261 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:64
|
1262 |
+
msgid "Recent Visitor Statistics"
|
1263 |
+
msgstr "সাম্প্রতিক ভিজিটর পরিসংখ্যান"
|
1264 |
+
|
1265 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:11
|
1266 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:18
|
1267 |
+
msgid "Online Users"
|
1268 |
+
msgstr "অনলাইন ব্যবহারকারী"
|
1269 |
+
|
1270 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:73
|
1271 |
+
msgid "Online for "
|
1272 |
+
msgstr "অনলাইন"
|
1273 |
+
|
1274 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:29
|
1275 |
+
msgid "Page Trend for Post ID"
|
1276 |
+
msgstr "পোস্ট আইডি পাতা ট্রেন্ড"
|
1277 |
+
|
1278 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:48
|
1279 |
+
msgid "Page Trend"
|
1280 |
+
msgstr "পাতা ট্রেন্ড"
|
1281 |
+
|
1282 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:11
|
1283 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:30
|
1284 |
+
msgid "Search Engine Referral Statistics"
|
1285 |
+
msgstr "সার্চ ইঞ্জিন রেফারেল পরিসংখ্যান"
|
1286 |
+
|
1287 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:71
|
1288 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:55
|
1289 |
+
msgid "Search engine referrals in the last"
|
1290 |
+
msgstr "গত সার্চ ইঞ্জিন রেফারেলগুলি"
|
1291 |
+
|
1292 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:92
|
1293 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:76
|
1294 |
+
msgid "Number of referrals"
|
1295 |
+
msgstr "রেফারেলগুলি সংখ্যা"
|
1296 |
+
|
1297 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:106
|
1298 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:90
|
1299 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:64
|
1300 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:104
|
1301 |
+
msgid "Total"
|
1302 |
+
msgstr "মোট দেখা হয়েছে"
|
1303 |
|
1304 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:11
|
1305 |
+
msgid "Top Countries"
|
1306 |
+
msgstr "শীর্ষ দেশ"
|
1307 |
+
|
1308 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:20
|
1309 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:30
|
1310 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:27
|
1311 |
+
msgid "Rank"
|
1312 |
+
msgstr "মর্যাদাক্রম"
|
1313 |
+
|
1314 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:21
|
1315 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:31
|
1316 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:29
|
1317 |
+
msgid "Flag"
|
1318 |
+
msgstr "পতাকা"
|
1319 |
+
|
1320 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:22
|
1321 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:32
|
1322 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:30
|
1323 |
+
msgid "Country"
|
1324 |
+
msgstr "দেশ"
|
1325 |
+
|
1326 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:23
|
1327 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:33
|
1328 |
+
msgid "Visitor Count"
|
1329 |
+
msgstr "ভিজিটর কাউন্ট"
|
1330 |
+
|
1331 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:13
|
1332 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:138
|
1333 |
+
msgid "Top Pages"
|
1334 |
+
msgstr "শীর্ষ পেজ"
|
1335 |
+
|
1336 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:20
|
1337 |
+
msgid "Top 5 Pages Trends"
|
1338 |
+
msgstr "শীর্ষ 5 পেজ ট্রেন্ডস"
|
1339 |
+
|
1340 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:49
|
1341 |
+
msgid "Top 5 Page Trending Stats"
|
1342 |
+
msgstr "শীর্ষ 5 পাতা থেকে পাতা প্রবণতা পরিসংখ্যান"
|
1343 |
+
|
1344 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:70
|
1345 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/page.php:58
|
1346 |
+
msgid "Number of Hits"
|
1347 |
+
msgstr "হিট সংখ্যা"
|
1348 |
+
|
1349 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:166
|
1350 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:32
|
1351 |
+
msgid "No page title found"
|
1352 |
+
msgstr "পাওয়া কোন পাতা শিরোনাম"
|
1353 |
+
|
1354 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:169
|
1355 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:35
|
1356 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:37
|
1357 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:122
|
1358 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:127
|
1359 |
+
msgid "Visits"
|
1360 |
+
msgstr "এ সপ্তাহে দেখেছে"
|
1361 |
|
1362 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:4
|
1363 |
+
msgid "To be added soon"
|
1364 |
+
msgstr "শীঘ্রই যোগ করা হবে"
|
1365 |
+
|
1366 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:40
|
1367 |
+
msgid "Referring sites from"
|
1368 |
+
msgstr "থেকে উল্লেখ সাইট"
|
1369 |
+
|
1370 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:110
|
1371 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:30
|
1372 |
+
msgid "References"
|
1373 |
+
msgstr "তথ্যসূত্র"
|
1374 |
+
|
1375 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-visitors.php:12
|
1376 |
+
msgid "Top 100 Visitors Today"
|
1377 |
+
msgstr "শীর্ষ 100 দর্শক আজ"
|
1378 |
+
|
1379 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:8
|
1380 |
+
msgid "About WP Statistics Version %s"
|
1381 |
+
msgstr "ডাব্লু পরিসংখ্যান সংস্করণ% এর সম্পর্কে"
|
1382 |
+
|
1383 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:25
|
1384 |
+
msgid "Website"
|
1385 |
+
msgstr "ওয়েবসাইট"
|
1386 |
+
|
1387 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:26
|
1388 |
+
msgid "Rate and Review"
|
1389 |
+
msgstr "হার এবং পর্যালোচনা"
|
1390 |
+
|
1391 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:30
|
1392 |
+
msgid "More Information"
|
1393 |
+
msgstr "আরো তথ্য"
|
1394 |
+
|
1395 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:39
|
1396 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:12
|
1397 |
+
msgid "This product includes GeoLite2 data created by MaxMind, available from %s."
|
1398 |
+
msgstr "এই পণ্য% এর থেকে উপলব্ধ MaxMind দ্বারা নির্মিত GeoLite2 তথ্য অন্তর্ভুক্ত করা হয়েছে."
|
1399 |
+
|
1400 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:7
|
1401 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:11
|
1402 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:8
|
1403 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:11
|
1404 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:8
|
1405 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:13
|
1406 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:7
|
1407 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:8
|
1408 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:8
|
1409 |
+
msgid "More"
|
1410 |
+
msgstr "অধিক"
|
1411 |
+
|
1412 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:47
|
1413 |
+
msgid "Other"
|
1414 |
+
msgstr "অন্যান্য"
|
1415 |
|
1416 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:9
|
1417 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:9
|
1418 |
+
msgid "Today Visitors Map"
|
1419 |
+
msgstr "আজ দর্শকরা ম্যাপ"
|
1420 |
|
1421 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:31
|
1422 |
+
msgid "Address"
|
1423 |
+
msgstr "ঠিকানা"
|
1424 |
|
1425 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:23
|
1426 |
+
msgid "User(s) Online"
|
1427 |
+
msgstr "সদস্য (s) অনলাইন"
|
1428 |
|
1429 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:34
|
1430 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:79
|
1431 |
+
msgid "Today"
|
1432 |
+
msgstr "আজ দেখেছে"
|
1433 |
|
1434 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:40
|
1435 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:80
|
1436 |
+
msgid "Yesterday"
|
1437 |
+
msgstr "গতকাল দেখেছে"
|
1438 |
|
1439 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:46
|
1440 |
+
msgid "Week"
|
1441 |
+
msgstr "সপ্তাহ"
|
1442 |
|
1443 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:52
|
1444 |
+
msgid "Month"
|
1445 |
+
msgstr "এ মাসে দেখেছে"
|
1446 |
|
1447 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:58
|
1448 |
+
msgid "Year"
|
1449 |
+
msgstr "বছর"
|
1450 |
|
1451 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:98
|
1452 |
+
msgid "Daily Total"
|
1453 |
+
msgstr "দৈনিক মোট"
|
1454 |
|
1455 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:117
|
1456 |
+
msgid "Current Time and Date"
|
1457 |
+
msgstr "বর্তমান সময় ও তারিখ"
|
1458 |
|
1459 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:117
|
1460 |
+
msgid "(Adjustment)"
|
1461 |
+
msgstr "(নিয়ন্ত্রণ)"
|
1462 |
|
1463 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:121
|
1464 |
+
msgid "Date: %s"
|
1465 |
+
msgstr "তারিখ:%s এর"
|
1466 |
|
1467 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:125
|
1468 |
+
msgid "Time: %s"
|
1469 |
+
msgstr "সময়:%s এর"
|
1470 |
|
1471 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:28
|
1472 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:215
|
1473 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:293
|
1474 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:366
|
1475 |
+
msgid "Hits"
|
1476 |
+
msgstr "হিট"
|
1477 |
|
1478 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:31
|
1479 |
+
msgid "IP"
|
1480 |
+
msgstr "আইপি"
|
1481 |
|
1482 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:33
|
1483 |
+
msgid "Agent"
|
1484 |
+
msgstr "প্রতিনিধি"
|
1485 |
+
|
1486 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:35
|
1487 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:291
|
1488 |
+
msgid "Version"
|
1489 |
+
msgstr "সংস্করণ"
|
1490 |
+
|
1491 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:5
|
1492 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:5
|
1493 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:5
|
1494 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:5
|
1495 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:6
|
1496 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:6
|
1497 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/manual/manual.php:5
|
1498 |
+
msgid "Access denied!"
|
1499 |
+
msgstr "অ্যাক্সেস অস্বীকৃত!"
|
1500 |
+
|
1501 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:14
|
1502 |
+
msgid "%s agent data deleted successfully."
|
1503 |
+
msgstr "% এর এজেন্ট তথ্য সফলভাবে মোছা হয়েছে."
|
1504 |
+
|
1505 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:17
|
1506 |
+
msgid "No agent data found to remove!"
|
1507 |
+
msgstr "পাওয়া কোন এজেন্ট তথ্য মুছে ফেলার জন্য!"
|
1508 |
+
|
1509 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:21
|
1510 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:21
|
1511 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:42
|
1512 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:57
|
1513 |
+
msgid "Please select the desired items."
|
1514 |
+
msgstr "পছন্দসই আইটেম নির্বাচন করুন."
|
1515 |
+
|
1516 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:14
|
1517 |
+
msgid "%s platform data deleted successfully."
|
1518 |
+
msgstr "% এর প্ল্যাটফর্ম তথ্য সফলভাবে মোছা হয়েছে."
|
1519 |
+
|
1520 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:17
|
1521 |
+
msgid "No platform data found to remove!"
|
1522 |
+
msgstr "পাওয়া কোন প্ল্যাটফর্ম তথ্য মুছে ফেলার জন্য!"
|
1523 |
+
|
1524 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:53
|
1525 |
+
msgid "%s table data deleted successfully."
|
1526 |
+
msgstr "% এর টেবিল তথ্য সফলভাবে মোছা হয়েছে."
|
1527 |
+
|
1528 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:57
|
1529 |
+
msgid "Error, %s not emptied!"
|
1530 |
+
msgstr "ত্রুটি,% emptied না!"
|
1531 |
+
|
1532 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:5
|
1533 |
+
msgid "Database Setup"
|
1534 |
+
msgstr "ডাটাবেস সেটআপ"
|
1535 |
+
|
1536 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:10
|
1537 |
+
msgid "Re-run Install"
|
1538 |
+
msgstr "পুনরায় চালানোর ইনস্টল করুন"
|
1539 |
+
|
1540 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:14
|
1541 |
+
msgid "Install Now!"
|
1542 |
+
msgstr "এখন ইনস্টল করুন!"
|
1543 |
+
|
1544 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:15
|
1545 |
+
msgid "If for some reason your installation of WP Statistics is missing the database tables or other core items, this will re-execute the install process."
|
1546 |
+
msgstr "কিছু কারণে ডাব্লু পরিসংখ্যান আপনার ইনস্টলেশন ডাটাবেস টেবিল বা অন্যান্য কোর আইটেম অনুপস্থিত, এই ইনস্টল প্রক্রিয়া পুনরায় চালানো হবে."
|
1547 |
+
|
1548 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:20
|
1549 |
+
msgid "Database Index"
|
1550 |
+
msgstr "ডাটাবেস সূচক"
|
1551 |
+
|
1552 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1553 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1554 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:290
|
1555 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:364
|
1556 |
+
msgid "Countries"
|
1557 |
+
msgstr "দেশ"
|
1558 |
+
|
1559 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:39
|
1560 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:25
|
1561 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:40
|
1562 |
+
msgid "Update Now!"
|
1563 |
+
msgstr "এখন আপডেট করুন!"
|
1564 |
+
|
1565 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:40
|
1566 |
+
msgid "Older installs of WP Statistics allow for duplicate entries in the visitors table in a corner case. Newer installs protect against this with a unique index on the table. To create the index on the older installs duplicate entries must be deleted first. Clicking \"Update Now\" will scan the vistitors table, delete duplicate entries and add the index."
|
1567 |
+
msgstr "ডাব্লু পরিসংখ্যান পুরাতন ইনস্টলেশনের কোণার ক্ষেত্রে দর্শক টেবিল ডুপ্লিকেট এন্ট্রি জন্য অনুমতি দেয়. নবীনতর ইনস্টলেশনের টেবিলের উপর একটি অনন্য সূচক সঙ্গে এই বিরুদ্ধে রক্ষা করা. পুরোনো সূচক তৈরি করতে ডুপ্লিকেট এন্ট্রি প্রথম মুছে ফেলা হবে ইনস্টল করা হবে. ক্লিক করে "এখনই আপডেট করুন", vistitors টেবিল স্ক্যান ডুপ্লিকেট এন্ট্রি মুছে দিন এবং সূচক যোগ করা হবে."
|
1568 |
+
|
1569 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:41
|
1570 |
+
msgid "This operation could take a long time on installs with many rows in the visitors table."
|
1571 |
+
msgstr "এই অপারেশন দর্শক টেবিল অনেক সারি সঙ্গে ইনস্টলেশনের উপর একটি দীর্ঘ সময় লাগতে পারে."
|
1572 |
+
|
1573 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:46
|
1574 |
+
msgid "Older installs of WP Statistics allow for duplicate entries in the visitors table in a corner case. Newer installs protect against this with a unique index on the table."
|
1575 |
+
msgstr "ডাব্লু পরিসংখ্যান পুরাতন ইনস্টলেশনের কোণার ক্ষেত্রে দর্শক টেবিল ডুপ্লিকেট এন্ট্রি জন্য অনুমতি দেয়. নবীনতর ইনস্টলেশনের টেবিলের উপর একটি অনন্য সূচক সঙ্গে এই বিরুদ্ধে রক্ষা করা."
|
1576 |
+
|
1577 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:47
|
1578 |
+
msgid "Congratulations, your installation is already up to date, nothing to do."
|
1579 |
+
msgstr "অভিনন্দন, আপনার ইনস্টলেশন ইতিমধ্যেই আপ টু ডেট, কিছুই করতে হয়."
|
1580 |
+
|
1581 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:7
|
1582 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:147
|
1583 |
+
msgid "Export"
|
1584 |
+
msgstr "রপ্তানি"
|
1585 |
+
|
1586 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:12
|
1587 |
+
msgid "Export from"
|
1588 |
+
msgstr "রপ্তানি থেকে"
|
1589 |
+
|
1590 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:17
|
1591 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:35
|
1592 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:129
|
1593 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:170
|
1594 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:194
|
1595 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:134
|
1596 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:164
|
1597 |
+
msgid "Please select"
|
1598 |
+
msgstr "নির্বাচন করুন"
|
1599 |
+
|
1600 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:24
|
1601 |
+
msgid "Select the table for the output file."
|
1602 |
+
msgstr "আউটপুট ফাইল জন্য টেবিল নির্বাচন করুন."
|
1603 |
+
|
1604 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:30
|
1605 |
+
msgid "Export To"
|
1606 |
+
msgstr "এক্সপোর্ট করুন"
|
1607 |
+
|
1608 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:41
|
1609 |
+
msgid "Select the output file type."
|
1610 |
+
msgstr "আউটপুট ফাইল টাইপ নির্বাচন করুন."
|
1611 |
+
|
1612 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:47
|
1613 |
+
msgid "Include Header Row"
|
1614 |
+
msgstr "শিরোলেখ সারি অন্তর্ভুক্ত করুন"
|
1615 |
+
|
1616 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:52
|
1617 |
+
msgid "Include a header row as the first line of the exported file."
|
1618 |
+
msgstr "রপ্তানি করা ফাইলের প্রথম লাইন হিসাবে একটি হেডার সারি অন্তর্ভুক্ত করুন."
|
1619 |
+
|
1620 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:53
|
1621 |
+
msgid "Start Now!"
|
1622 |
+
msgstr "এখন শুরু করুন!"
|
1623 |
+
|
1624 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:15
|
1625 |
+
msgid "Historical Values"
|
1626 |
+
msgstr "ঐতিহাসিক মূল্যবোধ"
|
1627 |
+
|
1628 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:20
|
1629 |
+
msgid "Note: As you have just purged the database you must reload this page for these numbers to be correct."
|
1630 |
+
msgstr "দ্রষ্টব্য: আপনি যদি শুধু ডাটাবেস পার্জ আছে এই সংখ্যার সঠিক হতে জন্য আপনি এই পৃষ্ঠাটি পুনরায় লোড করতে হবে."
|
1631 |
+
|
1632 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:26
|
1633 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:138
|
1634 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:143
|
1635 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:300
|
1636 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:373
|
1637 |
+
msgid "Visitors"
|
1638 |
+
msgstr "দর্শকরা"
|
1639 |
+
|
1640 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:31
|
1641 |
+
msgid "Number of historical number of visitors to the site (current value is %s)."
|
1642 |
+
msgstr "সাইটের দর্শকদের ঐতিহাসিক সংখ্যা সংখ্যা (বর্তমান মূল্য% এর হয়)."
|
1643 |
+
|
1644 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:42
|
1645 |
+
msgid "Number of historical number of visits to the site (current value is %s)."
|
1646 |
+
msgstr "সাইট ভিজিট ঐতিহাসিক সংখ্যা সংখ্যা (বর্তমান মূল্য% এর হয়)."
|
1647 |
+
|
1648 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:48
|
1649 |
+
msgid "Update now!"
|
1650 |
+
msgstr "এখন আপডেট করুন!"
|
1651 |
+
|
1652 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:10
|
1653 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:37
|
1654 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:63
|
1655 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:91
|
1656 |
+
msgid "Are you sure?"
|
1657 |
+
msgstr "আপনি কি নিশ্চিত?"
|
1658 |
+
|
1659 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:119
|
1660 |
+
msgid "Data"
|
1661 |
+
msgstr "উপাত্ত"
|
1662 |
+
|
1663 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:124
|
1664 |
+
msgid "Empty Table"
|
1665 |
+
msgstr "খালি টেবিল"
|
1666 |
+
|
1667 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:137
|
1668 |
+
msgid "All data table will be lost."
|
1669 |
+
msgstr "সমস্ত তথ্য টেবিল হারিয়ে যাবে."
|
1670 |
+
|
1671 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:138
|
1672 |
+
msgid "Clear now!"
|
1673 |
+
msgstr "এখন সাফ!"
|
1674 |
+
|
1675 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:146
|
1676 |
+
msgid "Purge records older than"
|
1677 |
+
msgstr "রেচক পদার্থ রেকর্ড আর পুরোনো"
|
1678 |
+
|
1679 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:152
|
1680 |
+
msgid "Deleted user statistics data older than the selected number of days. Minimum value is 30 days."
|
1681 |
+
msgstr "দিনের নির্বাচিত সংখ্যা আর পুরোনো মুছে ফেলা ব্যবহারকারী পরিসংখ্যান তথ্য. নূন্যতম মূল্য 30 দিন."
|
1682 |
+
|
1683 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:153
|
1684 |
+
msgid "Purge now!"
|
1685 |
+
msgstr "এখন অভিযোগমোচন!"
|
1686 |
+
|
1687 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:160
|
1688 |
+
msgid "Delete User Agent Types"
|
1689 |
+
msgstr "ব্যবহারকারী এজেন্ট ধরন মুছে দিন"
|
1690 |
+
|
1691 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:165
|
1692 |
+
msgid "Delete Agents"
|
1693 |
+
msgstr "এজেন্ট মুছে দিন"
|
1694 |
+
|
1695 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:180
|
1696 |
+
msgid "All visitor data will be lost for this agent type."
|
1697 |
+
msgstr "সমস্ত পরিদর্শক তথ্য এই এজেন্ট টাইপ জন্য হারিয়ে যাবে."
|
1698 |
+
|
1699 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:181
|
1700 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:205
|
1701 |
+
msgid "Delete now!"
|
1702 |
+
msgstr "এখন মুছে দিন!"
|
1703 |
+
|
1704 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:189
|
1705 |
+
msgid "Delete Platforms"
|
1706 |
+
msgstr "প্ল্যাটফর্ম মুছে দিন"
|
1707 |
+
|
1708 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:204
|
1709 |
+
msgid "All visitor data will be lost for this platform type."
|
1710 |
+
msgstr "সমস্ত পরিদর্শক তথ্য এই প্ল্যাটফর্ম টাইপ জন্য হারিয়ে যাবে."
|
1711 |
+
|
1712 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:17
|
1713 |
+
msgid "Resources"
|
1714 |
+
msgstr "সম্পদ"
|
1715 |
+
|
1716 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:22
|
1717 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:27
|
1718 |
+
msgid "Memory usage in PHP"
|
1719 |
+
msgstr "পিএইচপি মেমরি ব্যবহার"
|
1720 |
+
|
1721 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:26
|
1722 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:37
|
1723 |
+
msgid "Byte"
|
1724 |
+
msgstr "বাইট"
|
1725 |
+
|
1726 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:33
|
1727 |
+
msgid "Last Overview page memory usage"
|
1728 |
+
msgstr "গত সংক্ষিপ্ত বিবরণ পৃষ্ঠা মেমরি ব্যবহার"
|
1729 |
+
|
1730 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:38
|
1731 |
+
msgid "Memory usage in the overview page"
|
1732 |
+
msgstr "সংক্ষিপ্ত বিবরণ পৃষ্ঠা মেমরি ব্যবহার"
|
1733 |
+
|
1734 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:44
|
1735 |
+
msgid "PHP Memory Limit"
|
1736 |
+
msgstr "পিএইচপি মেমরি সীমা"
|
1737 |
+
|
1738 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:49
|
1739 |
+
msgid "The memory limit a script is allowed to consume, set in php.ini."
|
1740 |
+
msgstr "মেমরি সীমা একটি স্ক্রিপ্ট php.ini সেট, গ্রাস করার অনুমতি দেওয়া হয়."
|
1741 |
+
|
1742 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:55
|
1743 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:66
|
1744 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:77
|
1745 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:88
|
1746 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:99
|
1747 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:110
|
1748 |
+
msgid "Number of rows in the %s table"
|
1749 |
+
msgstr "% এর টেবিল মধ্যে সারি সংখ্যা"
|
1750 |
+
|
1751 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:59
|
1752 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:70
|
1753 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:81
|
1754 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:92
|
1755 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:103
|
1756 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:114
|
1757 |
+
msgid "Row"
|
1758 |
+
msgstr "সারি"
|
1759 |
+
|
1760 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:60
|
1761 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:71
|
1762 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:82
|
1763 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:93
|
1764 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:104
|
1765 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:115
|
1766 |
+
msgid "Number of rows"
|
1767 |
+
msgstr "সারি সংখ্যা"
|
1768 |
+
|
1769 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:120
|
1770 |
+
msgid "Version Info"
|
1771 |
+
msgstr "সংস্করণ তথ্য"
|
1772 |
+
|
1773 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:125
|
1774 |
+
msgid "WP Statistics Version"
|
1775 |
+
msgstr "ডাব্লু পরিসংখ্যান সংস্করণ"
|
1776 |
+
|
1777 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:130
|
1778 |
+
msgid "The WP Statistics version you are running."
|
1779 |
+
msgstr "ডাব্লু পরিসংখ্যান সংস্করণ আপনি চলমান."
|
1780 |
+
|
1781 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:136
|
1782 |
+
msgid "PHP Version"
|
1783 |
+
msgstr "পিএইচপি সংস্করণ"
|
1784 |
+
|
1785 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:141
|
1786 |
+
msgid "The PHP version you are running."
|
1787 |
+
msgstr "পিএইচপি সংস্করণ আপনি চলমান হয়."
|
1788 |
+
|
1789 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:147
|
1790 |
+
msgid "PHP Safe Mode"
|
1791 |
+
msgstr "পিএইচপি সেফ মোড"
|
1792 |
+
|
1793 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:152
|
1794 |
+
msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
|
1795 |
+
msgstr "পিএইচপি সেফ মোড সক্রিয়. GeoIP কোড সেফ মোড সমর্থিত হয় না."
|
1796 |
+
|
1797 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:158
|
1798 |
+
msgid "jQuery Version"
|
1799 |
+
msgstr "jQuery সংস্করণ"
|
1800 |
+
|
1801 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:163
|
1802 |
+
msgid "The jQuery version you are running."
|
1803 |
+
msgstr "jQuery সংস্করণ আপনি চলমান হয়."
|
1804 |
+
|
1805 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:169
|
1806 |
+
msgid "cURL Version"
|
1807 |
+
msgstr "কার্ল সংস্করণ"
|
1808 |
+
|
1809 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:173
|
1810 |
+
msgid "cURL not installed"
|
1811 |
+
msgstr "ইনস্টল করা না কার্ল"
|
1812 |
+
|
1813 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:174
|
1814 |
+
msgid "The PHP cURL Extension version you are running. cURL is required for the GeoIP code, if it is not installed GeoIP will be disabled."
|
1815 |
+
msgstr "পিএইচপি curl এক্সটেনশন সংস্করণ আপনি চলমান. এটা GeoIP নিষ্ক্রিয় করা হবে ইনস্টল না করা হলে কার্ল, GeoIP কোড প্রয়োজন বোধ করা হয়."
|
1816 |
+
|
1817 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:180
|
1818 |
+
msgid "BC Math"
|
1819 |
+
msgstr "খ্রিস্টপূর্ব ম্যাথ"
|
1820 |
+
|
1821 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:184
|
1822 |
+
msgid "Installed"
|
1823 |
+
msgstr "ইনস্টল"
|
1824 |
+
|
1825 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:184
|
1826 |
+
msgid "Not installed"
|
1827 |
+
msgstr "ইনস্টল করা না"
|
1828 |
+
|
1829 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:185
|
1830 |
+
msgid "If the PHP BC Math Extension is installed. BC Math is no longer required for the GeoIP code and is listed here only for historical reasons."
|
1831 |
+
msgstr "যদি পিএইচপি বিসি ম্যাথ এক্সটেনশন ইনস্টল করা হয়. খ্রিস্টপূর্ব ম্যাথ আর GeoIP কোড জন্য প্রয়োজন বোধ করা হয় এবং শুধুমাত্র ঐতিহাসিক কারণে এখানে তালিকাভুক্ত করা হয়."
|
1832 |
+
|
1833 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:190
|
1834 |
+
msgid "File Info"
|
1835 |
+
msgstr "তথ্য ফাইল"
|
1836 |
+
|
1837 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:195
|
1838 |
+
msgid "GeoIP Database"
|
1839 |
+
msgstr "GeoIP ডাটাবেস"
|
1840 |
+
|
1841 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:204
|
1842 |
+
msgid "Database file does not exist."
|
1843 |
+
msgstr "ডাটাবেস ফাইল বিদ্যমান নেই."
|
1844 |
+
|
1845 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:206
|
1846 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:225
|
1847 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:244
|
1848 |
+
msgid ", created on "
|
1849 |
+
msgstr ", তৈরি"
|
1850 |
+
|
1851 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:208
|
1852 |
+
msgid "The file size and date of the GeoIP database."
|
1853 |
+
msgstr "ফাইল সাইজ এবং GeoIP ডাটাবেসের তারিখ."
|
1854 |
+
|
1855 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:214
|
1856 |
+
msgid "browscap.ini File"
|
1857 |
+
msgstr "Browscap.ini ফাইল"
|
1858 |
+
|
1859 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:223
|
1860 |
+
msgid "browscap.ini file does not exist."
|
1861 |
+
msgstr "Browscap.ini ফাইল বিদ্যমান নেই."
|
1862 |
+
|
1863 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:227
|
1864 |
+
msgid "The file size and date of the browscap.ini file."
|
1865 |
+
msgstr "ফাইল সাইজ এবং Browscap.ini ফাইল তারিখ."
|
1866 |
|
1867 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:233
|
1868 |
+
msgid "browscap Cache File"
|
1869 |
+
msgstr "Browscap ক্যাশে ফাইল"
|
1870 |
|
1871 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:242
|
1872 |
+
msgid "browscap cache file does not exist."
|
1873 |
+
msgstr "Browscap ক্যাশে ফাইল বিদ্যমান নেই."
|
1874 |
|
1875 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:246
|
1876 |
+
msgid "The file size and date of the browscap cache file."
|
1877 |
+
msgstr "ফাইল সাইজ এবং Browscap ক্যাশে ফাইল তারিখ."
|
1878 |
|
1879 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:251
|
1880 |
+
msgid "Client Info"
|
1881 |
+
msgstr "ক্লায়েন্ট তথ্য"
|
1882 |
|
1883 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:256
|
1884 |
+
msgid "Client IP"
|
1885 |
+
msgstr "ক্লায়েন্ট আইপি"
|
1886 |
|
1887 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:261
|
1888 |
+
msgid "The client IP address."
|
1889 |
+
msgstr "ক্লায়েন্ট IP ঠিকানা."
|
1890 |
|
1891 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:267
|
1892 |
+
msgid "User Agent"
|
1893 |
+
msgstr "ব্যবহারকারী এজেন্ট"
|
1894 |
|
1895 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:272
|
1896 |
+
msgid "The client user agent string."
|
1897 |
+
msgstr "ক্লায়েন্ট ইউজার এজেন্ট স্ট্রিং."
|
1898 |
|
1899 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:278
|
1900 |
+
msgid "Browser"
|
1901 |
+
msgstr "ব্রাউজার"
|
1902 |
|
1903 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:285
|
1904 |
+
msgid "The detected client browser."
|
1905 |
+
msgstr "সনাক্ত ক্লায়েন্ট ব্রাউজার."
|
1906 |
|
1907 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:296
|
1908 |
+
msgid "The detected client browser version."
|
1909 |
+
msgstr "সনাক্ত ক্লায়েন্ট ব্রাউজার সংস্করণ."
|
1910 |
|
1911 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:307
|
1912 |
+
msgid "The detected client platform."
|
1913 |
+
msgstr "সনাক্ত ক্লায়েন্ট প্ল্যাটফর্ম."
|
1914 |
|
1915 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:4
|
1916 |
+
msgid "This will replace all IP addresses in the database with hash values and cannot be undo, are you sure?"
|
1917 |
+
msgstr "এই হ্যাশ ভ্যালুর সঙ্গে ডাটাবেসের মধ্যে সমস্ত IP ঠিকানা প্রতিস্থাপন করবে এবং পূর্বাবস্থা করা যাবে না, আপনি কি নিশ্চিত?"
|
1918 |
|
1919 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:16
|
1920 |
+
msgid "GeoIP Options"
|
1921 |
+
msgstr "GeoIP বিকল্প"
|
1922 |
|
1923 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:26
|
1924 |
+
msgid "Updates any unknown location data in the database, this may take a while"
|
1925 |
+
msgstr "ডাটাবেসের মধ্যে কোনো অজানা অবস্থান তথ্য আপডেট, এই সময় নিতে পারে"
|
1926 |
|
1927 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:31
|
1928 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:66
|
1929 |
+
msgid "IP Addresses"
|
1930 |
+
msgstr "আইপি ঠিকানা"
|
1931 |
|
1932 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:36
|
1933 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:71
|
1934 |
+
msgid "Hash IP Addresses"
|
1935 |
+
msgstr "হ্যাশ আইপি ঠিকানা"
|
1936 |
+
|
1937 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:41
|
1938 |
+
msgid "Replace IP addresses in the database with hash values, you will not be able to recover the IP addresses in the future to populate location information afterwards and this may take a while"
|
1939 |
+
msgstr "হ্যাশ ভ্যালুর সঙ্গে ডাটাবেসের মধ্যে IP ঠিকানা, প্রতিস্থাপন, আপনি পরে অবস্থান তথ্য পূরণ করতে ভবিষ্যতে IP ঠিকানা পুনরুদ্ধার করতে সক্ষম হবে না এবং এই সময় নিতে পারে"
|
1940 |
+
|
1941 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:43
|
1942 |
+
msgid "IP Addresses replaced with hash values."
|
1943 |
+
msgstr "আইপি ঠিকানা হ্যাশ ভ্যালুর সঙ্গে প্রতিস্থাপিত."
|
1944 |
+
|
1945 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:51
|
1946 |
+
msgid "Install routine complete."
|
1947 |
+
msgstr "রুটিন সম্পূর্ণ ইনস্টল করুন."
|
1948 |
+
|
1949 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:146
|
1950 |
+
msgid "Resources/Information"
|
1951 |
+
msgstr "সম্পদ / তথ্য"
|
1952 |
+
|
1953 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:148
|
1954 |
+
msgid "Purging"
|
1955 |
+
msgstr "শুদ্ধিকরণ"
|
1956 |
+
|
1957 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:149
|
1958 |
+
msgid "Database"
|
1959 |
+
msgstr "ডাটাবেস"
|
1960 |
+
|
1961 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:150
|
1962 |
+
msgid "Updates"
|
1963 |
+
msgstr "আপডেট"
|
1964 |
+
|
1965 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:151
|
1966 |
+
msgid "Historical"
|
1967 |
+
msgstr "ঐতিহাসিক"
|
1968 |
+
|
1969 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:8
|
1970 |
+
msgid "WP Statistics V%s"
|
1971 |
+
msgstr "ডাব্লু পরিসংখ্যান ভী% এর"
|
1972 |
+
|
1973 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:20
|
1974 |
+
msgid "Visit Us Online"
|
1975 |
+
msgstr "আমাদের অনলাইন যান"
|
1976 |
+
|
1977 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:24
|
1978 |
+
msgid "Come visit our great new %s and keep up to date on the latest news about WP Statistics."
|
1979 |
+
msgstr "আমাদের মহান নতুন% এর যান এবং ডাব্লু পরিসংখ্যান সম্পর্কে সর্বশেষ খবর উপর আপ টু ডেট রাখা আসা."
|
1980 |
+
|
1981 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:24
|
1982 |
+
msgid "website"
|
1983 |
+
msgstr "ওয়েবসাইট"
|
1984 |
+
|
1985 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:28
|
1986 |
+
msgid "Rate and Review at WordPress.org"
|
1987 |
+
msgstr "WordPress.org এ হার এবং পর্যালোচনা"
|
1988 |
+
|
1989 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:32
|
1990 |
+
msgid "Thanks for installing WP Statistics, we encourage you to submit a "
|
1991 |
+
msgstr "ডাব্লু পরিসংখ্যান ইনস্টল করার জন্য ধন্যবাদ, আমরা একটি জমা দিতে উত্সাহিত"
|
1992 |
+
|
1993 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:32
|
1994 |
+
msgid "rating and review"
|
1995 |
+
msgstr "রেটিং ও পর্যালোচনা"
|
1996 |
+
|
1997 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:32
|
1998 |
+
msgid "over at WordPress.org. Your feedback is greatly appreciated!"
|
1999 |
+
msgstr "উপর WordPress.org এ. আপনার মতামত ব্যাপকভাবে প্রশংসা করা হয়!"
|
2000 |
+
|
2001 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:36
|
2002 |
+
msgid "Translations"
|
2003 |
+
msgstr "অনুবাদের"
|
2004 |
+
|
2005 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:40
|
2006 |
+
msgid "WP Statistics supports internationalization and we encourage our users to submit translations, please visit our %s to see the current status and %s if you would like to help."
|
2007 |
+
msgstr "আপনি সাহায্য করতে চান তাহলে ডাব্লু পরিসংখ্যান আন্তর্জাতিকীকরণ সমর্থন করে এবং আমরা অনুবাদের জমা দিতে আমাদের ব্যবহারকারীদের উৎসাহিত, বর্তমান অবস্থা এবং%s এর দেখতে আমাদের% এর অনুগ্রহ করে পরিদর্শন করুন."
|
2008 |
+
|
2009 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:40
|
2010 |
+
msgid "translation collaboration site"
|
2011 |
+
msgstr "অনুবাদ সহযোগিতা সাইট"
|
2012 |
+
|
2013 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:40
|
2014 |
+
msgid "drop us a line"
|
2015 |
+
msgstr "আমাদের একটি লাইন ড্রপ"
|
2016 |
+
|
2017 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:44
|
2018 |
+
msgid "Support"
|
2019 |
+
msgstr "সহায়তা"
|
2020 |
+
|
2021 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:49
|
2022 |
+
msgid "We're sorry you're having problem with WP Statistics and we're happy to help out. Here are a few things to do before contacting us:"
|
2023 |
+
msgstr "আমরা আপনাকে ডাব্লু পরিসংখ্যান সঙ্গে সমস্যা হচ্ছে দুঃখিত এবং আমরা সাহায্য খুশি. এখানে আমাদের সাথে যোগাযোগ করার আগে কি কিছু বিষয় আছে:"
|
2024 |
+
|
2025 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:52
|
2026 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:53
|
2027 |
+
msgid "Have you read the %s?"
|
2028 |
+
msgstr "আপনি যখন% এর পড়া আছে?"
|
2029 |
|
2030 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:52
|
2031 |
+
msgid "FAQs"
|
2032 |
+
msgstr "প্রায়শই জিজ্ঞাসিত প্রশ্নাবলী"
|
2033 |
|
2034 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:53
|
2035 |
+
msgid "manual"
|
2036 |
+
msgstr "ম্যানুয়াল"
|
2037 |
|
2038 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:54
|
2039 |
+
msgid "Have you search the %s for a similar issue?"
|
2040 |
+
msgstr "আপনি যদি অনুরূপ সমস্যার জন্য% এর অনুসন্ধান আছে?"
|
2041 |
|
2042 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:54
|
2043 |
+
msgid "support forum"
|
2044 |
+
msgstr "সহায়তা ফোরাম"
|
2045 |
|
2046 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:55
|
2047 |
+
msgid "Have you search the Internet for any error messages you are receiving?"
|
2048 |
+
msgstr "আপনি গ্রহণ করা হয় কোনো ত্রুটি বার্তা জন্য ইন্টারনেট অনুসন্ধান আছে?"
|
2049 |
+
|
2050 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:56
|
2051 |
+
msgid "Make sure you have access to your PHP error logs."
|
2052 |
+
msgstr "আপনি আপনার পিএইচপি ত্রুটির লগ এক্সেস আছে নিশ্চিত করুন."
|
2053 |
+
|
2054 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:59
|
2055 |
+
msgid "And a few things to double-check:"
|
2056 |
+
msgstr "একটি ডবল চেক করতে কয়েকটি বিষয়:"
|
2057 |
+
|
2058 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:62
|
2059 |
+
msgid "How's your memory_limit in php.ini?"
|
2060 |
+
msgstr "কিভাবে php.ini আপনার memory_limit আছে?"
|
2061 |
+
|
2062 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:63
|
2063 |
+
msgid "Have you tried disabling any other plugins you may have installed?"
|
2064 |
+
msgstr "আপনি ইনস্টল করতে পারেন অন্য কোন প্লাগিন নিষ্ক্রিয় চেষ্টা করছেন?"
|
2065 |
+
|
2066 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:64
|
2067 |
+
msgid "Have you tried using the default WordPress theme?"
|
2068 |
+
msgstr "আপনি ডিফল্ট ওয়ার্ডপ্রেস থিম ব্যবহার করে চেষ্টা করেছি?"
|
2069 |
+
|
2070 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:65
|
2071 |
+
msgid "Have you double checked the plugin settings?"
|
2072 |
+
msgstr "আপনি ডবল প্লাগ সেটিংস চেক আছে?"
|
2073 |
+
|
2074 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:66
|
2075 |
+
msgid "Do you have all the required PHP extensions installed?"
|
2076 |
+
msgstr "আপনি সব প্রয়োজনীয় পিএইচপি এক্সটেনশন ইনস্টল করা আছে না?"
|
2077 |
+
|
2078 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:67
|
2079 |
+
msgid "Are you getting a blank or incomplete page displayed in your browser? Did you view the source for the page and check for any fatal errors?"
|
2080 |
+
msgstr "যদি আপনার ব্রাউজার সাপোর্ট প্রদর্শিত একটি ফাঁকা বা অসম্পূর্ণ পাতা পাচ্ছেন? আপনি পৃষ্ঠার জন্য সোর্স দেখতে এবং কোন মারাত্মক ত্রুটির জন্য পরীক্ষা কি?"
|
2081 |
+
|
2082 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:68
|
2083 |
+
msgid "Have you checked your PHP and web server error logs?"
|
2084 |
+
msgstr "আপনি আপনার পিএইচপি এবং ওয়েব সার্ভার ত্রুটির লগ চেক করা আছে?"
|
2085 |
+
|
2086 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:71
|
2087 |
+
msgid "Still not having any luck?"
|
2088 |
+
msgstr "এখনও কোনো দৈব না?"
|
2089 |
+
|
2090 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:71
|
2091 |
+
msgid "Then please open a new thread on the %s and we'll respond as soon as possible."
|
2092 |
+
msgstr "তারপর%s এর উপর একটি নতুন থ্রেড খোলার জন্য দয়া করে এবং আমরা যত তাড়াতাড়ি সম্ভব সাড়া পাবেন."
|
2093 |
+
|
2094 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:71
|
2095 |
+
msgid "WordPress.org support forum"
|
2096 |
+
msgstr "WordPress.org সহায়তা ফোরাম"
|
2097 |
+
|
2098 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:75
|
2099 |
+
msgid "Alternatively %s support is available as well."
|
2100 |
+
msgstr "অন্যথায়% এর সমর্থন উপলব্ধ হিসাবে ভাল."
|
2101 |
+
|
2102 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:75
|
2103 |
+
msgid "Farsi"
|
2104 |
+
msgstr "ফার্সি"
|
2105 |
+
|
2106 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:21
|
2107 |
+
msgid "WP Statistics Honey Pot Page"
|
2108 |
+
msgstr "ডাব্লু পরিসংখ্যান মধু পট পাতা"
|
2109 |
+
|
2110 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:22
|
2111 |
+
msgid "This is the honey pot for WP Statistics to use, do not delete."
|
2112 |
+
msgstr "এই মুছে দিন না, ব্যবহার করা ডাব্লু পরিসংখ্যান মধু পাত্র."
|
2113 |
+
|
2114 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:45
|
2115 |
+
msgid "Access Levels"
|
2116 |
+
msgstr "প্রবেশ স্তর"
|
2117 |
+
|
2118 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:74
|
2119 |
+
msgid "Required user level to view WP Statistics"
|
2120 |
+
msgstr "ইউজার স্তর ডাব্লু পরিসংখ্যান দেখতে"
|
2121 |
+
|
2122 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:89
|
2123 |
+
msgid "Required user level to manage WP Statistics"
|
2124 |
+
msgstr "ইউজার স্তর ডাব্লু পরিসংখ্যান পরিচালনা করা"
|
2125 |
+
|
2126 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:97
|
2127 |
+
msgid "See the %s for details on capability levels."
|
2128 |
+
msgstr "ক্ষমতা মাত্রা বিস্তারিত তথ্যের জন্য,%s দেখুন."
|
2129 |
+
|
2130 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:97
|
2131 |
+
msgid "WordPress Roles and Capabilities page"
|
2132 |
+
msgstr "ওয়ার্ডপ্রেস ভূমিকা এবং ক্ষমতা পাতা"
|
2133 |
+
|
2134 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:98
|
2135 |
+
msgid "Hint: manage_network = Super Admin Network, manage_options = Administrator, edit_others_posts = Editor, publish_posts = Author, edit_posts = Contributor, read = Everyone."
|
2136 |
+
msgstr "ইঙ্গিত: manage_network = সুপার অ্যাডমিন নেটওয়ার্ক, manage_options = প্রশাসক, edit_others_posts = সম্পাদক, publish_posts = লেখক, edit_posts = অবদানকারী, = প্রত্যেকেরই."
|
2137 |
+
|
2138 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:99
|
2139 |
+
msgid "Each of the above casscades the rights upwards in the default WordPress configuration. So for example selecting publish_posts grants the right to Authors, Editors, Admins and Super Admins."
|
2140 |
+
msgstr "ডিফল্ট ওয়ার্ডপ্রেস কনফিগারেশন অধিকার ঊর্ধ্বে উপরে casscades প্রত্যেকটি. সুতরাং উদাহরণস্বরূপ নির্বাচন publish_posts জন্য লেখক, সম্পাদক, প্রশাসকদের এবং সুপার প্রশাসকদের অধিকার দান করেন."
|
2141 |
+
|
2142 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:100
|
2143 |
+
msgid "If you need a more robust solution to delegate access you might want to look at %s in the WordPress plugin directory."
|
2144 |
+
msgstr "আপনি অ্যাক্সেস প্রতিনিধি আরো একটি শক্তসমর্থ সমাধান প্রয়োজন, তাহলে আপনি ওয়ার্ডপ্রেস প্লাগইন ডিরেক্টরির মধ্যে% এর তাকান করতে চাইবেন."
|
2145 |
+
|
2146 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:105
|
2147 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:292
|
2148 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:365
|
2149 |
+
msgid "Exclusions"
|
2150 |
+
msgstr "বর্জন"
|
2151 |
+
|
2152 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:109
|
2153 |
+
msgid "Record exclusions"
|
2154 |
+
msgstr "রেকর্ড বহিষ্কার"
|
2155 |
+
|
2156 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:111
|
2157 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:165
|
2158 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:192
|
2159 |
+
msgid "Enable"
|
2160 |
+
msgstr "সক্রিয়"
|
2161 |
+
|
2162 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:112
|
2163 |
+
msgid "This will record all the excluded hits in a separate table with the reasons why it was excluded but no other information. This will generate a lot of data but is useful if you want to see the total number of hits your site gets, not just actual user visits."
|
2164 |
+
msgstr "এটি বাদ দেওয়া হয়েছিল কারণ কিন্তু অন্য কোন তথ্য দিয়ে একটি পৃথক টেবিল সব বাদ হিট রেকর্ড করা হবে. এই তথ্য অনেক উৎপন্ন কিন্তু আপনি আপনার সাইটে পায় হিট মোট সংখ্যা, ঠিক না প্রকৃত ব্যবহারকারী ভিজিট দেখতে চান দরকারী হবে."
|
2165 |
+
|
2166 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:117
|
2167 |
+
msgid "Exclude User Roles"
|
2168 |
+
msgstr "ব্যবহারকারী ভূমিকা অপসারণের"
|
2169 |
+
|
2170 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:133
|
2171 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:247
|
2172 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:254
|
2173 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:261
|
2174 |
+
msgid "Exclude"
|
2175 |
+
msgstr "বহিষ্কৃত করা"
|
2176 |
+
|
2177 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:134
|
2178 |
+
msgid "Exclude %s role from data collection."
|
2179 |
+
msgstr "তথ্য সংগ্রহ থেকে% এর ভূমিকা অগ্রাহ্য করা."
|
2180 |
+
|
2181 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:140
|
2182 |
+
msgid "IP/Robot Exclusions"
|
2183 |
+
msgstr "আইপি / রোবট বর্জন"
|
2184 |
+
|
2185 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:144
|
2186 |
+
msgid "Robot list"
|
2187 |
+
msgstr "রোবট তালিকা"
|
2188 |
+
|
2189 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:157
|
2190 |
+
msgid "A list of words (one per line) to match against to detect robots. Entries must be at least 4 characters long or they will be ignored."
|
2191 |
+
msgstr "রোবট সনাক্ত করতে বিরুদ্ধে শব্দের একটি তালিকা (প্রতি লাইনে একটি) মেলে. থেকে অন্তত 4 অক্ষর দীর্ঘ হতে পারে অথবা তারা উপেক্ষা করা হবে."
|
2192 |
+
|
2193 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:158
|
2194 |
+
msgid "Reset to Default"
|
2195 |
+
msgstr "ডিফল্ট রিসেট"
|
2196 |
+
|
2197 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:163
|
2198 |
+
msgid "Force robot list update after upgrades"
|
2199 |
+
msgstr "ফোর্স রোবট তালিকা আপডেট আপগ্রেড করার পরে"
|
2200 |
+
|
2201 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:166
|
2202 |
+
msgid "Force the robot list to be reset to the default after an update to WP Statistics takes place. Note if this option is enabled any custom robots you have added to the list will be lost."
|
2203 |
+
msgstr "ডাব্লু পরিসংখ্যান একটি আপডেট করার পরে সঞ্চালিত ডিফল্ট করা রিসেট করার রোবট তালিকা বল. এই অপশনটি হারিয়ে যাবে আপনি তালিকায় যুক্ত হয়েছে কোনো কাস্টম রোবট সক্রিয় করা থাকলে উল্লেখ্য."
|
2204 |
+
|
2205 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:171
|
2206 |
+
msgid "Robot visit threshold"
|
2207 |
+
msgstr "রোবট দর্শন থ্রেশহোল্ড"
|
2208 |
+
|
2209 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:174
|
2210 |
+
msgid "Treat visitors with more than this number of visits per day as robots. 0 = disabled."
|
2211 |
+
msgstr "রোবট হিসাবে প্রতিদিন ভিজিট এই সংখ্যার চেয়ে আরো সঙ্গে দর্শক আচরণ. 0 = অক্ষম."
|
2212 |
+
|
2213 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:179
|
2214 |
+
msgid "Excluded IP address list"
|
2215 |
+
msgstr "বহিষ্কৃত আইপি ঠিকানা তালিকা"
|
2216 |
+
|
2217 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:182
|
2218 |
+
msgid "A list of IP addresses and subnet masks (one per line) to exclude from statistics collection (both 192.168.0.0/24 and 192.168.0.0/255.255.255.0 formats are accepted). To specify an IP address only, use a subnet value of 32 or 255.255.255.255."
|
2219 |
+
msgstr "আইপি ঠিকানা এবং সাবনেট মাস্ক (প্রতি লাইনে একটি) একটি তালিকা পরিসংখ্যান সংগ্রহ থেকে অগ্রাহ্য (উভয় যেমন 192.168.0.0/24 এবং 192.168.0.0/255.255.255.0 ফরম্যাটের গ্রহণ করা হয়). শুধুমাত্র একটি IP ঠিকানা উল্লেখ করার জন্য, 32 বা 255.255.255.255 একটি সাবনেট মান ব্যবহার করুন."
|
2220 |
+
|
2221 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:183
|
2222 |
+
msgid "Add 10.0.0.0"
|
2223 |
+
msgstr "10.0.0.0 যোগ করুন"
|
2224 |
+
|
2225 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:184
|
2226 |
+
msgid "Add 172.16.0.0"
|
2227 |
+
msgstr "172.16.0.0 যোগ করুন"
|
2228 |
+
|
2229 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:185
|
2230 |
+
msgid "Add 192.168.0.0"
|
2231 |
+
msgstr "192.168.0.0 যোগ করুন"
|
2232 |
+
|
2233 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:190
|
2234 |
+
msgid "Use honey pot"
|
2235 |
+
msgstr "মধু পাত্র ব্যবহার করুন"
|
2236 |
+
|
2237 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:193
|
2238 |
+
msgid "Use a honey pot page to identify robots."
|
2239 |
+
msgstr "রোবট সনাক্ত করার জন্য একটি মধু পাত্র পাতা ব্যবহার করুন."
|
2240 |
+
|
2241 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:198
|
2242 |
+
msgid "Honey pot post id"
|
2243 |
+
msgstr "মধু পাত্র পোস্ট আইডি"
|
2244 |
+
|
2245 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:201
|
2246 |
+
msgid "The post id to use for the honeypot page."
|
2247 |
+
msgstr "পোস্ট আইডি honeypot পৃষ্ঠার জন্য ব্যবহার করার জন্য."
|
2248 |
+
|
2249 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:202
|
2250 |
+
msgid "Create a new honey pot page"
|
2251 |
+
msgstr "একটি নতুন মধু পাত্র পাতা তৈরি করুন"
|
2252 |
+
|
2253 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:207
|
2254 |
+
msgid "GeoIP Exclusions"
|
2255 |
+
msgstr "GeoIP বর্জন"
|
2256 |
+
|
2257 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:211
|
2258 |
+
msgid "Excluded countries list"
|
2259 |
+
msgstr "বহিষ্কৃত দেশের তালিকা"
|
2260 |
+
|
2261 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:214
|
2262 |
+
msgid "A list of country codes (one per line, two letters each) to exclude from statistics collection. Use \"000\" (three zeros) to exclude unknown countries."
|
2263 |
+
msgstr "দেশের কোড (প্রতি লাইনে এক, দুই অক্ষর প্রতিটি) একটি তালিকা পরিসংখ্যান সংগ্রহ থেকে বাদ দিতে. অজানা দেশে অগ্রাহ্য "000" (তিন শূন্য) ব্যবহার করুন."
|
2264 |
+
|
2265 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:219
|
2266 |
+
msgid "Included countries list"
|
2267 |
+
msgstr "অন্তর্ভুক্ত দেশের তালিকা"
|
2268 |
+
|
2269 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:222
|
2270 |
+
msgid "A list of country codes (one per line, two letters each) to include in statistics collection, if this list is not empty, only visitors from the included countries will be recorded. Use \"000\" (three zeros) to exclude unknown countries."
|
2271 |
+
msgstr "দেশের কোড (প্রতি লাইনে এক, দুই অক্ষর প্রতিটি) একটি তালিকা এই তালিকা খালি না হয়, অন্তর্ভুক্ত দেশ থেকে শুধুমাত্র দর্শক রেকর্ড করা হবে, পরিসংখ্যান সংগ্রহে অন্তর্ভুক্ত. অজানা দেশে অগ্রাহ্য "000" (তিন শূন্য) ব্যবহার করুন."
|
2272 |
+
|
2273 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:227
|
2274 |
+
msgid "Host Exclusions"
|
2275 |
+
msgstr "হোস্ট বর্জন"
|
2276 |
+
|
2277 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:231
|
2278 |
+
msgid "Excluded hosts list"
|
2279 |
+
msgstr "বহিষ্কৃত হোস্ট তালিকা"
|
2280 |
+
|
2281 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:234
|
2282 |
+
msgid "A list of fully qualified host names (ie. server.example.com, one per line) to exclude from statistics collection."
|
2283 |
+
msgstr "সম্পূর্ণরূপে যোগ্যতাসম্পন্ন হোস্ট নাম (অর্থাৎ. Server.example.com, এক প্রতি লাইন) একটি তালিকা পরিসংখ্যান সংগ্রহ থেকে বাদ দিতে."
|
2284 |
+
|
2285 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:236
|
2286 |
+
msgid "Note: this option will NOT perform a reverse DNS lookup on each page load but instead cache the IP address for the provided hostnames for one hour. If you are excluding dynamically assigned hosts you may find some degree of overlap when the host changes it's IP address and when the cache is updated resulting in some hits recorded."
|
2287 |
+
msgstr "দ্রষ্টব্য: এই বিকল্প এক ঘন্টার জন্য দেওয়া হোস্ট-নেম IP ঠিকানা প্রতিটি পৃষ্ঠার লোড নেভিগেশন একটি বিপরীত DNS- র লুকআপ সঞ্চালন কিন্তু এর পরিবর্তে ক্যাশে করা হবে না. আপনি পরিবর্তনশীল নির্ধারিত হোস্ট ব্যতীত হয় হোস্ট এটা IP ঠিকানা পরিবর্তন করে যখন এবং ক্যাশে রেকর্ড কিছু হিট ফলে আপডেট করা হয় যখন আপনি আবৃত কিছু ডিগ্রী পেতে পারে."
|
2288 |
+
|
2289 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:241
|
2290 |
+
msgid "Site URL Exclusions"
|
2291 |
+
msgstr "সাইট URL টি বর্জন"
|
2292 |
+
|
2293 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:245
|
2294 |
+
msgid "Excluded login page"
|
2295 |
+
msgstr "বহিষ্কৃত লগইন পাতা"
|
2296 |
+
|
2297 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:248
|
2298 |
+
msgid "Exclude the login page for registering as a hit."
|
2299 |
+
msgstr "একটি আঘাত হিসেবে নিবন্ধন করার জন্য লগইন পৃষ্ঠায় অপসারণের."
|
2300 |
+
|
2301 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:252
|
2302 |
+
msgid "Excluded admin pages"
|
2303 |
+
msgstr "বহিষ্কৃত অ্যাডমিন পেজ"
|
2304 |
+
|
2305 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:255
|
2306 |
+
msgid "Exclude the admin pages for registering as a hit."
|
2307 |
+
msgstr "একটি আঘাত হিসেবে নিবন্ধন করার জন্য অ্যাডমিন পেজ অপসারণের."
|
2308 |
+
|
2309 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:259
|
2310 |
+
msgid "Excluded RSS feeds"
|
2311 |
+
msgstr "বহিষ্কৃত আরএসএস ফিড"
|
2312 |
+
|
2313 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:262
|
2314 |
+
msgid "Exclude the RSS feeds for registering as a hit."
|
2315 |
+
msgstr "আরএসএস একটি আঘাত হিসেবে নিবন্ধন করার জন্য ফিড অপসারণের."
|
2316 |
+
|
2317 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:22
|
2318 |
+
msgid "browscap settings"
|
2319 |
+
msgstr "Browscap সেটিংস"
|
2320 |
+
|
2321 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:27
|
2322 |
+
msgid "browscap usage"
|
2323 |
+
msgstr "Browscap ব্যবহার"
|
2324 |
+
|
2325 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:32
|
2326 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:56
|
2327 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:76
|
2328 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:92
|
2329 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:116
|
2330 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:132
|
2331 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:148
|
2332 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:160
|
2333 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:187
|
2334 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:199
|
2335 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:214
|
2336 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:228
|
2337 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:258
|
2338 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:270
|
2339 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:313
|
2340 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:47
|
2341 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:71
|
2342 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:104
|
2343 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:40
|
2344 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:69
|
2345 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:81
|
2346 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:93
|
2347 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:105
|
2348 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:121
|
2349 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:87
|
2350 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:107
|
2351 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:147
|
2352 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:159
|
2353 |
+
msgid "Active"
|
2354 |
+
msgstr "সক্রিয়"
|
2355 |
|
2356 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:33
|
2357 |
+
msgid "The browscap database will be downloaded and used to detect robots."
|
2358 |
+
msgstr "Browscap ডাটাবেস ডাউনলোড এবং রোবট সনাক্ত করতে ব্যবহার করা হবে."
|
2359 |
|
2360 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:39
|
2361 |
+
msgid "Update browscap Info"
|
2362 |
+
msgstr "আপডেট Browscap তথ্য"
|
2363 |
|
2364 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:44
|
2365 |
+
msgid "Download browscap Database"
|
2366 |
+
msgstr "ডাউনলোড Browscap ডাটাবেস"
|
2367 |
|
2368 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:45
|
2369 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:60
|
2370 |
+
msgid "Save changes on this page to download the update."
|
2371 |
+
msgstr "আপডেট ডাউনলোড করতে এই পৃষ্ঠায় পরিবর্তনগুলি সংরক্ষণ করুন."
|
2372 |
|
2373 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:51
|
2374 |
+
msgid "Schedule weekly update of browscap DB"
|
2375 |
+
msgstr "Browscap ডিবি সাপ্তাহিক আপডেট সময়সূচী"
|
2376 |
|
2377 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:59
|
2378 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:74
|
2379 |
+
msgid "Next update will be"
|
2380 |
+
msgstr "পরবর্তী আপডেট করা হবে"
|
2381 |
|
2382 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:74
|
2383 |
+
msgid "Download of the browscap database will be scheduled for once a week."
|
2384 |
+
msgstr "Browscap ডাটাবেস ডাউনলোড করুন একবার এক সপ্তাহের জন্য নির্ধারিত করা হবে."
|
2385 |
|
2386 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:50
|
2387 |
+
msgid "This will delete the manual when you save the settings, are you sure?"
|
2388 |
+
msgstr "আপনি সেটিংস সংরক্ষণ করুন যখন এই আপনি নিশ্চিত, ম্যানুয়াল মুছে ফেলা হবে?"
|
2389 |
|
2390 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:77
|
2391 |
+
msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
|
2392 |
+
msgstr "এই বৈশিষ্ট্য ডাটাবেসের মধ্যে IP ঠিকানা সংরক্ষণ কিন্তু এর পরিবর্তে একটি অনন্য হ্যাশ ব্যবহার করা হবে না. এই নির্বাচিত হয় যদি "সমগ্র ইউজার এজেন্ট স্ট্রিং সঞ্চয়" সেটিং অক্ষম করা হবে. আপনি এটি যদি সক্রিয় থাকে অবস্থান তথ্য পুনরুদ্ধার ভবিষ্যতে IP ঠিকানা পুনরুদ্ধার করতে সক্ষম হবে না."
|
2393 |
|
2394 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:82
|
2395 |
+
msgid "Users Online"
|
2396 |
+
msgstr "অনলাইন ব্যবহারকারী"
|
2397 |
|
2398 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:87
|
2399 |
+
msgid "User online"
|
2400 |
+
msgstr "ব্যবহারকারী অনলাইন"
|
languages/wp_statistics-cs.mo
CHANGED
Binary file
|
languages/wp_statistics-cs.po
CHANGED
@@ -1,2119 +1,2400 @@
|
|
1 |
-
# Translation of
|
2 |
-
# This file is distributed under the same license as the
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"PO-Revision-Date:
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
10 |
-
"X-Generator: Poedit 1.
|
11 |
-
"Project-Id-Version:
|
12 |
"POT-Creation-Date: \n"
|
13 |
"Last-Translator: \n"
|
14 |
"Language-Team: \n"
|
15 |
"Language: cs\n"
|
16 |
|
17 |
-
#: includes/
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
#: includes/
|
22 |
-
|
23 |
-
|
|
|
|
|
24 |
|
25 |
-
#: includes/
|
26 |
-
msgid "
|
27 |
-
msgstr "
|
28 |
|
29 |
-
#: includes/
|
30 |
-
msgid "
|
31 |
-
msgstr "
|
32 |
|
33 |
-
#: includes/
|
34 |
-
msgid "
|
35 |
-
msgstr "
|
36 |
|
37 |
-
#: includes/
|
38 |
-
msgid "
|
39 |
-
msgstr "
|
40 |
|
41 |
-
#: includes/
|
42 |
-
|
43 |
-
|
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/
|
49 |
-
|
50 |
-
|
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/
|
56 |
-
|
57 |
-
|
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/
|
64 |
-
msgid "
|
65 |
-
msgstr "
|
66 |
|
67 |
-
#: includes/
|
68 |
-
msgid "
|
69 |
-
msgstr "
|
70 |
|
71 |
-
#: includes/
|
72 |
-
|
73 |
-
|
|
|
|
|
|
|
74 |
|
75 |
-
#: includes/settings/tabs/wps-
|
76 |
-
msgid ""
|
77 |
-
"
|
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-
|
84 |
-
msgid "
|
85 |
-
msgstr "
|
86 |
|
87 |
-
#: includes/settings/tabs/wps-
|
88 |
-
msgid ""
|
89 |
-
"
|
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-
|
98 |
-
msgid "
|
99 |
-
msgstr "
|
100 |
|
101 |
-
#: includes/settings/tabs/wps-
|
102 |
-
msgid "
|
103 |
-
msgstr "
|
104 |
|
105 |
-
#: includes/settings/tabs/wps-
|
106 |
-
|
107 |
-
|
108 |
-
msgstr "Četli jste %s?"
|
109 |
|
110 |
-
#: includes/settings/tabs/wps-
|
111 |
-
msgid "
|
112 |
-
msgstr "
|
113 |
|
114 |
-
#: includes/settings/tabs/wps-
|
115 |
-
msgid "
|
116 |
-
msgstr "
|
117 |
|
118 |
-
#: includes/settings/tabs/wps-
|
119 |
-
msgid "
|
120 |
-
msgstr "
|
121 |
|
122 |
-
#: includes/settings/tabs/wps-
|
123 |
-
msgid "
|
124 |
-
msgstr "
|
125 |
|
126 |
-
#: includes/settings/tabs/wps-
|
127 |
-
msgid ""
|
128 |
-
"
|
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-
|
133 |
-
msgid "
|
134 |
-
msgstr "
|
135 |
|
136 |
-
#: includes/settings/tabs/wps-
|
137 |
-
msgid "
|
138 |
-
msgstr "
|
139 |
|
140 |
-
#: includes/settings/tabs/wps-
|
141 |
-
msgid "
|
142 |
-
msgstr "
|
143 |
|
144 |
-
#: includes/settings/tabs/wps-
|
145 |
-
msgid "
|
146 |
-
msgstr "
|
147 |
|
148 |
-
#: includes/settings/tabs/wps-general.php:
|
149 |
-
msgid ""
|
150 |
-
|
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:
|
161 |
-
msgid "
|
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:
|
166 |
-
msgid "
|
167 |
-
msgstr "
|
168 |
|
169 |
-
#: wp-statistics.php:
|
170 |
-
msgid ""
|
171 |
-
"
|
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:
|
178 |
-
msgid "
|
179 |
-
msgstr "
|
180 |
|
181 |
-
#: wp-statistics.php:
|
182 |
-
msgid ""
|
183 |
-
"
|
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-
|
190 |
-
msgid "
|
191 |
-
msgstr "
|
192 |
|
193 |
-
#: wp-statistics.php:
|
194 |
-
msgid ""
|
195 |
-
"
|
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:
|
200 |
-
msgid ""
|
201 |
-
"
|
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:
|
208 |
-
msgid ""
|
209 |
-
"GeoIP
|
210 |
-
msgstr "GeoIP kolekce není aktivní, přejděte na %s a tuto funkci povolit."
|
211 |
|
212 |
-
#: wp-statistics.php:
|
213 |
-
msgid "
|
214 |
-
msgstr "
|
215 |
|
216 |
-
|
217 |
-
|
|
|
218 |
|
219 |
-
|
220 |
-
|
|
|
221 |
|
222 |
-
#: includes/settings/wps-
|
223 |
-
msgid "
|
224 |
-
msgstr "
|
225 |
|
226 |
-
#: wp-statistics.php:
|
227 |
-
msgid "
|
228 |
-
msgstr "
|
229 |
|
230 |
-
#: wp-statistics.php:
|
231 |
-
msgid "
|
232 |
-
msgstr "
|
233 |
|
234 |
-
#: wp-statistics.php:
|
235 |
-
msgid "
|
236 |
-
msgstr "
|
237 |
|
238 |
-
#: includes/
|
239 |
-
msgid "
|
240 |
-
msgstr "
|
241 |
|
242 |
-
#: includes/
|
243 |
-
msgid "
|
244 |
-
msgstr "
|
245 |
|
246 |
-
#: includes/
|
247 |
-
msgid "
|
248 |
-
msgstr "
|
249 |
|
250 |
-
#: includes/
|
251 |
-
msgid ""
|
252 |
-
"
|
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/
|
260 |
-
msgid ""
|
261 |
-
"
|
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/
|
268 |
-
msgid "
|
269 |
-
msgstr "
|
270 |
|
271 |
-
#: includes/
|
272 |
-
msgid "
|
273 |
-
msgstr "
|
274 |
|
275 |
-
#: includes/
|
276 |
-
|
277 |
-
|
278 |
-
msgid ", created on "
|
279 |
-
msgstr ", na "
|
280 |
|
281 |
-
#: includes/
|
282 |
-
msgid "
|
283 |
-
msgstr "
|
284 |
|
285 |
-
#: includes/
|
286 |
-
msgid "
|
287 |
-
msgstr "
|
288 |
|
289 |
-
#: includes/
|
290 |
-
msgid "
|
291 |
-
msgstr "
|
292 |
|
293 |
-
#: includes/
|
294 |
-
msgid "
|
295 |
-
msgstr "
|
296 |
|
297 |
-
#: includes/
|
298 |
-
msgid "
|
299 |
-
msgstr "
|
300 |
|
301 |
-
#: includes/settings/tabs/wps-
|
302 |
-
msgid "
|
303 |
-
msgstr "
|
304 |
|
305 |
-
#: includes/settings/tabs/wps-
|
306 |
-
msgid "
|
307 |
-
msgstr "
|
308 |
|
309 |
-
#: includes/settings/tabs/wps-
|
310 |
-
msgid "
|
311 |
-
msgstr "
|
312 |
|
313 |
-
#: includes/settings/tabs/wps-
|
314 |
-
msgid "Update
|
315 |
-
msgstr "
|
316 |
|
317 |
-
#: includes/settings/tabs/wps-
|
318 |
-
msgid "
|
319 |
-
msgstr "
|
320 |
|
321 |
-
#: includes/settings/tabs/wps-
|
322 |
-
msgid "
|
323 |
-
msgstr "
|
324 |
|
325 |
-
#: includes/settings/tabs/wps-
|
326 |
-
|
327 |
-
|
|
|
328 |
|
329 |
-
#: includes/
|
330 |
-
msgid ""
|
331 |
-
"
|
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/
|
344 |
-
msgid ""
|
345 |
-
|
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/
|
354 |
-
msgid ""
|
355 |
-
"
|
356 |
-
msgstr "Gratulujeme vaše instalace je již datum, nic společného."
|
357 |
|
358 |
-
#: includes/settings/tabs/wps-
|
359 |
-
msgid "
|
360 |
-
msgstr ""
|
361 |
-
"Už jste Hledat na internetu pro všechny chybové zprávy, které obdržíte?"
|
362 |
|
363 |
-
#: includes/settings/tabs/wps-
|
364 |
-
msgid ""
|
365 |
-
"
|
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-
|
372 |
-
|
373 |
-
|
|
|
|
|
374 |
|
375 |
-
#:
|
376 |
-
msgid "
|
377 |
-
msgstr "
|
378 |
|
379 |
-
#: includes/
|
380 |
-
|
381 |
-
|
382 |
-
msgid "#hash#"
|
383 |
-
msgstr "#hash #"
|
384 |
|
385 |
-
#: includes/
|
386 |
-
msgid ""
|
387 |
-
"
|
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/
|
394 |
-
msgid ""
|
395 |
-
|
396 |
-
msgstr ""
|
397 |
-
"Aktualizuje všechny neznámé lokalizační údaje v databázi, to může chvíli "
|
398 |
-
"trvat"
|
399 |
|
400 |
-
#: includes/
|
401 |
-
|
402 |
-
|
403 |
-
msgstr "Adresy IP"
|
404 |
|
405 |
-
#: includes/
|
406 |
-
|
407 |
-
|
408 |
-
msgstr "Algoritmus hash IP adresy"
|
409 |
|
410 |
-
#: includes/
|
411 |
-
msgid ""
|
412 |
-
"
|
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/
|
420 |
-
msgid "
|
421 |
-
msgstr "
|
422 |
|
423 |
-
#: includes/settings/tabs/wps-
|
424 |
-
msgid "
|
425 |
-
msgstr "
|
426 |
|
427 |
-
#: includes/settings/tabs/wps-
|
428 |
-
msgid ""
|
429 |
-
"
|
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-
|
438 |
-
msgid "
|
439 |
-
msgstr "
|
440 |
|
441 |
-
#: includes/settings/tabs/wps-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
"
|
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-
|
451 |
-
|
452 |
-
|
|
|
|
|
453 |
|
454 |
-
#: includes/settings/tabs/wps-
|
455 |
-
|
456 |
-
|
457 |
-
"
|
458 |
-
"
|
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/
|
600 |
-
|
601 |
-
|
|
|
|
|
602 |
|
603 |
-
#:
|
604 |
-
|
605 |
-
"
|
606 |
-
msgstr ""
|
607 |
-
"Tento produkt obsahuje GeoLite2 data vytvořená MaxMind, k dispozici od %s."
|
608 |
|
609 |
-
#:
|
610 |
-
|
611 |
-
|
|
|
|
|
612 |
|
613 |
-
#:
|
614 |
-
|
615 |
-
|
|
|
|
|
616 |
|
617 |
-
#: includes/
|
618 |
-
|
619 |
-
|
|
|
620 |
|
621 |
-
#:
|
622 |
-
msgid "
|
623 |
-
msgstr "
|
624 |
|
625 |
-
#: includes/settings/tabs/wps-
|
626 |
-
|
627 |
-
|
|
|
628 |
|
629 |
-
#: includes/settings/tabs/wps-
|
630 |
-
msgid "
|
631 |
-
msgstr "
|
632 |
|
633 |
-
#: includes/settings/tabs/wps-
|
634 |
-
msgid "
|
635 |
-
msgstr "
|
636 |
|
637 |
-
#: includes/settings/tabs/wps-
|
638 |
-
msgid "
|
639 |
-
msgstr "
|
640 |
|
641 |
-
#: includes/settings/tabs/wps-
|
642 |
-
msgid "
|
643 |
-
msgstr "
|
644 |
|
645 |
-
#: includes/settings/tabs/wps-
|
646 |
-
|
647 |
-
|
|
|
|
|
648 |
|
649 |
-
#: includes/settings/tabs/wps-
|
650 |
-
msgid ""
|
651 |
-
"
|
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-
|
658 |
-
msgid "
|
659 |
-
msgstr "
|
660 |
|
661 |
-
#: includes/settings/tabs/wps-
|
662 |
-
msgid "
|
663 |
-
msgstr "
|
664 |
|
665 |
-
#: includes/settings/tabs/wps-
|
666 |
-
msgid "
|
667 |
-
msgstr "
|
668 |
|
669 |
-
#: includes/settings/tabs/wps-
|
670 |
-
msgid "
|
671 |
-
msgstr "
|
672 |
|
673 |
-
#: includes/settings/tabs/wps-
|
674 |
-
msgid "
|
675 |
-
msgstr "
|
676 |
|
677 |
-
#: includes/settings/tabs/wps-
|
678 |
-
msgid "
|
679 |
-
msgstr "
|
680 |
|
681 |
-
#: includes/settings/tabs/wps-
|
682 |
-
msgid "
|
683 |
-
msgstr "
|
684 |
|
685 |
-
#: includes/
|
686 |
-
|
687 |
-
|
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-
|
696 |
-
msgid ""
|
697 |
-
"
|
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-
|
706 |
-
msgid ""
|
707 |
-
"
|
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-
|
716 |
-
msgid ""
|
717 |
-
"
|
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:
|
724 |
-
|
725 |
-
|
726 |
-
msgstr "Žádný"
|
727 |
|
728 |
-
#: includes/settings/tabs/wps-overview-display.php:
|
729 |
-
|
730 |
-
|
731 |
-
msgstr "O"
|
732 |
|
733 |
-
#: includes/settings/tabs/wps-overview-display.php:
|
734 |
-
msgid "Widgets to Display"
|
735 |
-
msgstr "Widgety
|
736 |
|
737 |
-
#: includes/settings/tabs/wps-overview-display.php:
|
738 |
-
msgid ""
|
739 |
-
"
|
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:
|
748 |
msgid "Slot"
|
749 |
msgstr "Slot"
|
750 |
|
751 |
-
#: includes/settings/tabs/wps-overview-display.php:
|
752 |
msgid "Column A"
|
753 |
msgstr "Sloupec A"
|
754 |
|
755 |
-
#: includes/settings/tabs/wps-overview-display.php:
|
756 |
msgid "Column B"
|
757 |
msgstr "Sloupec B"
|
758 |
|
759 |
-
#: includes/settings/tabs/wps-overview-display.php:
|
760 |
msgid "Slot 1"
|
761 |
msgstr "Slot 1"
|
762 |
|
763 |
-
#: includes/settings/tabs/wps-overview-display.php:
|
764 |
msgid "Slot 2"
|
765 |
msgstr "Slot 2"
|
766 |
|
767 |
-
#: includes/settings/tabs/wps-overview-display.php:
|
768 |
msgid "Slot 3"
|
769 |
msgstr "Slot 3"
|
770 |
|
771 |
-
#: includes/settings/tabs/wps-overview-display.php:
|
772 |
msgid "Slot 4"
|
773 |
msgstr "Slot 4"
|
774 |
|
775 |
-
#: includes/settings/tabs/wps-overview-display.php:
|
776 |
msgid "Slot 5"
|
777 |
msgstr "Slot 5"
|
778 |
|
779 |
-
#: includes/settings/tabs/wps-overview-display.php:
|
780 |
msgid "Slot 6"
|
781 |
msgstr "Slot 6"
|
782 |
|
783 |
-
#: includes/settings/tabs/wps-overview-display.php:
|
|
|
784 |
msgid "N/A"
|
785 |
msgstr "N/A"
|
786 |
|
787 |
-
#:
|
788 |
-
msgid "
|
789 |
-
msgstr "
|
790 |
|
791 |
-
#:
|
792 |
-
msgid "
|
793 |
-
msgstr "
|
794 |
|
795 |
-
#:
|
796 |
-
msgid "
|
797 |
-
msgstr "
|
798 |
|
799 |
-
#:
|
800 |
-
msgid "Once
|
801 |
-
msgstr "
|
802 |
|
803 |
-
#: wp-statistics.php:
|
804 |
-
msgid "
|
805 |
-
msgstr "
|
806 |
|
807 |
-
#: includes/
|
808 |
-
msgid "
|
809 |
-
msgstr "
|
810 |
|
811 |
-
#:
|
812 |
-
msgid "
|
813 |
-
msgstr "
|
814 |
|
815 |
-
#: includes/
|
816 |
-
msgid "
|
817 |
-
msgstr "
|
818 |
|
819 |
-
#: includes/
|
820 |
-
msgid "
|
821 |
-
msgstr "
|
822 |
|
823 |
-
#: wp-statistics.php:
|
824 |
-
msgid "
|
825 |
-
msgstr "
|
826 |
|
827 |
-
#: wp-statistics.php:
|
828 |
-
msgid "
|
829 |
-
msgstr "
|
830 |
|
831 |
-
#: includes/
|
832 |
-
msgid "
|
833 |
-
msgstr "
|
834 |
|
835 |
-
#: includes/
|
836 |
-
msgid "
|
837 |
-
msgstr "
|
838 |
|
839 |
-
#: includes/
|
840 |
-
msgid "
|
841 |
-
msgstr "
|
842 |
|
843 |
-
#: includes/settings/
|
844 |
-
msgid "
|
845 |
-
msgstr "
|
846 |
|
847 |
-
#:
|
848 |
-
msgid "
|
849 |
-
msgstr "
|
850 |
|
851 |
-
#:
|
852 |
-
msgid "
|
853 |
-
msgstr "
|
854 |
|
855 |
-
#:
|
856 |
-
msgid ""
|
857 |
-
"
|
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 |
-
#:
|
868 |
-
msgid "
|
869 |
-
msgstr "
|
870 |
|
871 |
-
#:
|
872 |
-
msgid "
|
873 |
-
msgstr "
|
874 |
|
875 |
-
#:
|
876 |
-
|
877 |
-
|
|
|
|
|
878 |
|
879 |
-
#:
|
880 |
-
msgid "
|
881 |
-
msgstr "
|
882 |
|
883 |
-
#:
|
884 |
-
|
885 |
-
|
|
|
886 |
|
887 |
-
#:
|
888 |
-
|
889 |
-
|
|
|
890 |
|
891 |
-
#:
|
892 |
-
|
893 |
-
|
|
|
894 |
|
895 |
-
#: wp-statistics.php:
|
896 |
-
|
897 |
-
|
|
|
898 |
|
899 |
-
#: wp-statistics.php:
|
900 |
-
msgid "
|
901 |
-
msgstr "
|
902 |
|
903 |
-
#: wp-statistics.php:
|
904 |
-
|
905 |
-
|
|
|
906 |
|
907 |
-
#: wp-statistics.php:
|
908 |
-
|
909 |
-
|
|
|
910 |
|
911 |
-
#: wp-statistics.php:
|
912 |
-
|
913 |
-
|
|
|
914 |
|
915 |
-
#: widget.php:
|
916 |
-
|
917 |
-
|
|
|
918 |
|
919 |
-
#:
|
920 |
-
#:
|
921 |
-
msgid "
|
922 |
-
msgstr "
|
923 |
|
924 |
-
#: wp-statistics.php:
|
925 |
-
|
926 |
-
|
|
|
927 |
|
928 |
-
#: wp-statistics.php:
|
929 |
-
|
930 |
-
|
|
|
931 |
|
932 |
-
#: wp-statistics.php:
|
933 |
-
|
934 |
-
|
|
|
935 |
|
936 |
-
#: wp-statistics.php:
|
937 |
-
|
938 |
-
|
|
|
939 |
|
940 |
-
#:
|
941 |
-
msgid "
|
942 |
-
msgstr "
|
943 |
|
944 |
-
#:
|
945 |
-
msgid "
|
946 |
-
msgstr "
|
947 |
|
948 |
-
#:
|
949 |
-
|
950 |
-
|
|
|
951 |
|
952 |
-
#:
|
953 |
-
msgid "
|
954 |
-
msgstr "
|
955 |
|
956 |
-
#:
|
957 |
-
msgid "
|
958 |
-
msgstr "
|
959 |
|
960 |
-
#:
|
961 |
-
msgid "
|
962 |
-
msgstr "
|
963 |
|
964 |
-
#:
|
965 |
-
msgid "
|
966 |
-
msgstr "
|
967 |
|
968 |
-
#:
|
969 |
-
msgid "
|
970 |
-
msgstr "
|
971 |
|
972 |
-
#:
|
973 |
-
msgid "
|
974 |
-
msgstr "
|
975 |
|
976 |
-
#:
|
977 |
-
msgid "
|
978 |
-
msgstr "
|
979 |
|
980 |
-
#:
|
981 |
-
msgid "
|
982 |
-
msgstr "
|
983 |
|
984 |
-
#:
|
985 |
-
msgid "
|
986 |
-
msgstr "
|
987 |
|
988 |
-
#:
|
989 |
-
|
990 |
-
|
|
|
|
|
991 |
|
992 |
-
#:
|
993 |
-
msgid "
|
994 |
-
msgstr ""
|
995 |
-
"Je PHP nouzovém režimu aktivní. GeoIP kód není podporován v nouzovém režimu."
|
996 |
|
997 |
-
#:
|
998 |
-
msgid "
|
999 |
-
msgstr "
|
1000 |
|
1001 |
-
#:
|
1002 |
-
msgid ""
|
1003 |
-
"
|
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 |
-
#:
|
1010 |
-
msgid "
|
1011 |
-
msgstr "
|
1012 |
|
1013 |
-
#:
|
1014 |
-
|
1015 |
-
|
|
|
|
|
1016 |
|
1017 |
-
#:
|
1018 |
-
msgid ""
|
1019 |
-
"
|
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 |
-
#:
|
1026 |
-
msgid "
|
1027 |
-
msgstr "
|
1028 |
|
1029 |
-
#:
|
1030 |
-
msgid "
|
1031 |
-
msgstr "
|
1032 |
|
1033 |
-
#:
|
1034 |
-
msgid "
|
1035 |
-
msgstr "
|
1036 |
|
1037 |
-
#:
|
1038 |
-
msgid "
|
1039 |
-
msgstr "
|
1040 |
|
1041 |
-
#:
|
1042 |
-
|
1043 |
-
|
1044 |
-
|
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 |
-
#:
|
1050 |
-
|
1051 |
-
|
|
|
1052 |
|
1053 |
-
#:
|
1054 |
-
|
1055 |
-
|
|
|
1056 |
|
1057 |
-
#:
|
1058 |
-
|
1059 |
-
|
|
|
1060 |
|
1061 |
-
#:
|
1062 |
-
|
1063 |
-
"
|
1064 |
-
"
|
1065 |
-
msgstr ""
|
1066 |
-
"GeoIP kolekce vyžaduje cURL PHP rozšíření a to není nahrané ve Vaší verzi "
|
1067 |
-
"PHP!"
|
1068 |
|
1069 |
-
#:
|
1070 |
-
|
1071 |
-
"
|
1072 |
-
"
|
1073 |
-
msgstr ""
|
1074 |
-
"GeoIP kolekce vyžaduje BC Math PHP rozšíření a to není nahrané ve Vaší verzi "
|
1075 |
-
"PHP!"
|
1076 |
|
1077 |
-
#:
|
1078 |
-
|
1079 |
-
|
1080 |
-
|
1081 |
-
msgstr "Nemožné nahrát GeoIP databázi, zajistěte stažení v nastavení."
|
1082 |
|
1083 |
-
#:
|
1084 |
-
|
1085 |
-
|
|
|
1086 |
|
1087 |
-
#:
|
1088 |
-
msgid "
|
1089 |
-
msgstr "
|
1090 |
|
1091 |
-
#:
|
1092 |
-
|
1093 |
-
|
1094 |
-
#: includes/log/widgets/search.php:8 includes/log/widgets/words.php:16
|
1095 |
-
msgid "More"
|
1096 |
-
msgstr "Více"
|
1097 |
|
1098 |
-
#:
|
1099 |
-
msgid "
|
1100 |
-
msgstr "
|
1101 |
|
1102 |
-
#:
|
1103 |
-
msgid ""
|
1104 |
-
"
|
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 |
-
#:
|
1111 |
-
msgid "
|
1112 |
-
msgstr "
|
1113 |
|
1114 |
-
#:
|
1115 |
-
msgid "
|
1116 |
-
msgstr "
|
1117 |
|
1118 |
-
#:
|
1119 |
-
msgid "
|
1120 |
-
msgstr "
|
1121 |
|
1122 |
-
#:
|
1123 |
-
msgid ""
|
1124 |
-
"
|
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 |
-
#:
|
1131 |
-
msgid "
|
1132 |
-
msgstr "
|
1133 |
|
1134 |
-
#:
|
1135 |
-
|
1136 |
-
|
1137 |
-
"
|
1138 |
-
"
|
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 |
-
#:
|
1145 |
-
|
1146 |
-
|
1147 |
-
msgstr "Zapnout"
|
1148 |
|
1149 |
-
#:
|
1150 |
-
msgid ""
|
1151 |
-
"
|
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 |
-
#:
|
1162 |
-
msgid "
|
1163 |
-
msgstr "
|
1164 |
|
1165 |
-
#:
|
1166 |
-
msgid "
|
1167 |
-
msgstr "
|
1168 |
|
1169 |
-
#:
|
1170 |
-
msgid "
|
1171 |
-
msgstr "
|
1172 |
|
1173 |
-
#:
|
1174 |
-
msgid "
|
1175 |
-
msgstr "
|
1176 |
|
1177 |
-
#:
|
1178 |
-
msgid "
|
1179 |
-
msgstr "
|
1180 |
|
1181 |
-
#:
|
1182 |
-
msgid "
|
1183 |
-
msgstr "
|
1184 |
|
1185 |
-
#:
|
1186 |
-
msgid "
|
1187 |
-
msgstr "
|
1188 |
|
1189 |
-
#:
|
1190 |
-
msgid "
|
1191 |
-
msgstr "
|
1192 |
|
1193 |
-
#:
|
1194 |
-
msgid "
|
1195 |
-
msgstr "
|
1196 |
|
1197 |
-
#:
|
1198 |
-
msgid "
|
1199 |
-
msgstr "
|
1200 |
|
1201 |
-
#:
|
1202 |
-
msgid "
|
1203 |
-
msgstr "
|
1204 |
|
1205 |
-
#:
|
1206 |
-
msgid "
|
1207 |
-
msgstr "
|
1208 |
|
1209 |
-
#:
|
1210 |
-
|
1211 |
-
|
|
|
1212 |
|
1213 |
-
#:
|
1214 |
-
|
1215 |
-
|
|
|
|
|
1216 |
|
1217 |
-
#:
|
1218 |
-
msgid "
|
1219 |
-
msgstr "
|
1220 |
|
1221 |
-
#:
|
1222 |
-
|
1223 |
-
|
|
|
|
|
|
|
1224 |
|
1225 |
-
#:
|
1226 |
-
|
1227 |
-
|
|
|
1228 |
|
1229 |
-
#:
|
1230 |
-
|
1231 |
-
|
1232 |
-
|
1233 |
-
|
1234 |
-
"
|
1235 |
-
"hodnota je 30 dní."
|
1236 |
|
1237 |
-
#:
|
1238 |
-
|
1239 |
-
|
|
|
|
|
|
|
|
|
1240 |
|
1241 |
-
#:
|
1242 |
-
|
1243 |
-
|
|
|
|
|
1244 |
|
1245 |
-
#:
|
1246 |
-
|
1247 |
-
|
1248 |
-
|
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 |
-
#:
|
1254 |
-
|
1255 |
-
|
|
|
|
|
|
|
1256 |
|
1257 |
-
#:
|
1258 |
-
|
1259 |
-
|
|
|
|
|
1260 |
|
1261 |
-
#:
|
1262 |
-
msgid ""
|
1263 |
-
"
|
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 |
-
#:
|
1270 |
-
msgid "
|
1271 |
-
msgstr "
|
1272 |
|
1273 |
-
#:
|
1274 |
-
msgid "
|
1275 |
-
msgstr "
|
1276 |
|
1277 |
-
#: includes/
|
1278 |
-
msgid ""
|
1279 |
-
"
|
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/
|
1286 |
-
msgid "GeoIP"
|
1287 |
-
msgstr "GeoIP"
|
1288 |
|
1289 |
-
#: includes/
|
1290 |
-
#: includes/
|
1291 |
-
|
1292 |
-
|
|
|
|
|
1293 |
|
1294 |
-
#: includes/
|
1295 |
-
|
1296 |
-
|
1297 |
-
|
1298 |
-
|
1299 |
-
"
|
1300 |
-
"vlastnost vypnuta"
|
1301 |
|
1302 |
-
#:
|
1303 |
-
msgid "
|
1304 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1305 |
|
1306 |
-
#: includes/log/widgets/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1307 |
msgid "Daily Total"
|
1308 |
msgstr "Denně celkem"
|
1309 |
|
1310 |
-
#: includes/log/widgets/summary.php:
|
1311 |
msgid "Current Time and Date"
|
1312 |
msgstr "Aktuální čas a datum"
|
1313 |
|
1314 |
-
#: includes/
|
1315 |
-
|
1316 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1317 |
msgid "Update Now!"
|
1318 |
msgstr "!Aktualizovat nyní"
|
1319 |
|
1320 |
-
#: includes/
|
1321 |
-
msgid ""
|
1322 |
-
"
|
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/
|
1331 |
-
msgid ""
|
1332 |
-
"
|
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/
|
1339 |
-
msgid "
|
1340 |
-
msgstr "
|
1341 |
|
1342 |
-
#: includes/
|
1343 |
-
msgid "
|
1344 |
-
msgstr "
|
1345 |
|
1346 |
-
#: includes/
|
1347 |
-
|
1348 |
-
|
|
|
1349 |
|
1350 |
-
#: includes/
|
1351 |
-
msgid ""
|
1352 |
-
"
|
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/
|
1358 |
-
|
1359 |
-
|
1360 |
-
|
1361 |
-
|
1362 |
-
|
1363 |
-
|
1364 |
-
"
|
1365 |
-
"
|
1366 |
|
1367 |
-
#: includes/
|
1368 |
-
msgid "
|
1369 |
-
msgstr "
|
1370 |
|
1371 |
-
#: includes/
|
1372 |
-
msgid "
|
1373 |
-
msgstr "
|
1374 |
|
1375 |
-
#: includes/
|
1376 |
-
msgid "
|
1377 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1378 |
|
1379 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1380 |
msgid "Version Info"
|
1381 |
msgstr "Verze info"
|
1382 |
|
1383 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:
|
1384 |
msgid "WP Statistics Version"
|
1385 |
msgstr "WP Statistics Verze"
|
1386 |
|
1387 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:
|
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:
|
1392 |
msgid "PHP Version"
|
1393 |
msgstr "PHP Verze"
|
1394 |
|
1395 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:
|
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:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1400 |
msgid "jQuery Version"
|
1401 |
msgstr "jQuery Verze"
|
1402 |
|
1403 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:
|
1404 |
msgid "The jQuery version you are running."
|
1405 |
msgstr " Query verze kterou používáte."
|
1406 |
|
1407 |
-
#: wp-statistics.php:
|
1408 |
-
msgid "
|
1409 |
-
msgstr "
|
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/
|
1478 |
-
msgid "
|
1479 |
-
msgstr "
|
1480 |
|
1481 |
-
#: includes/
|
1482 |
-
msgid "
|
1483 |
-
msgstr "
|
1484 |
|
1485 |
-
#: includes/
|
1486 |
-
msgid ""
|
1487 |
-
"
|
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/
|
1494 |
-
msgid "
|
1495 |
-
msgstr "
|
1496 |
|
1497 |
-
#: includes/optimization/tabs/wps-optimization-
|
1498 |
-
|
1499 |
-
|
1500 |
-
msgid "Countries"
|
1501 |
-
msgstr "Země"
|
1502 |
|
1503 |
-
#: wp-
|
1504 |
-
msgid "
|
1505 |
-
msgstr "
|
1506 |
|
1507 |
-
#: wp-statistics.php:
|
1508 |
-
msgid "
|
1509 |
-
msgstr "
|
1510 |
|
1511 |
-
#: wp-statistics.php:
|
1512 |
-
msgid "
|
1513 |
-
msgstr "
|
1514 |
|
1515 |
-
#: wp-statistics.php:
|
1516 |
-
msgid "
|
1517 |
-
msgstr "
|
1518 |
|
1519 |
-
#: includes/
|
1520 |
-
|
1521 |
-
|
|
|
|
|
1522 |
|
1523 |
-
#: includes/
|
1524 |
-
msgid "
|
1525 |
-
msgstr "
|
1526 |
|
1527 |
-
#: includes/
|
1528 |
-
msgid "
|
1529 |
-
msgstr "
|
1530 |
|
1531 |
-
#: includes/
|
1532 |
-
msgid "
|
1533 |
-
msgstr "
|
1534 |
|
1535 |
-
#:
|
1536 |
-
msgid "
|
1537 |
-
msgstr "
|
1538 |
|
1539 |
-
#: includes/
|
1540 |
-
|
1541 |
-
|
1542 |
-
msgstr "10 Dnů"
|
1543 |
|
1544 |
-
#: includes/
|
1545 |
-
|
1546 |
-
|
1547 |
-
msgstr "20 Dnů"
|
1548 |
|
1549 |
-
#: includes/
|
1550 |
-
|
1551 |
-
|
1552 |
-
msgstr "30 Dnů"
|
1553 |
|
1554 |
-
#: includes/
|
1555 |
-
|
1556 |
-
|
1557 |
-
msgstr "2 Měsíce"
|
1558 |
|
1559 |
-
#: includes/
|
1560 |
-
|
1561 |
-
|
1562 |
-
msgstr "3 Měsíce"
|
1563 |
|
1564 |
-
#: includes/
|
1565 |
-
|
1566 |
-
|
1567 |
-
msgstr "6 Měsíců"
|
1568 |
|
1569 |
-
#: includes/
|
1570 |
-
|
1571 |
-
|
1572 |
-
msgstr "9 Měsíců"
|
1573 |
|
1574 |
-
#: includes/
|
1575 |
-
|
1576 |
-
|
1577 |
-
msgstr "1 Rok"
|
1578 |
|
1579 |
-
#: includes/
|
1580 |
-
msgid "
|
1581 |
-
msgstr "
|
1582 |
|
1583 |
-
#: includes/
|
1584 |
-
|
1585 |
-
|
1586 |
-
#: includes/optimization/tabs/wps-optimization-purging.php:150
|
1587 |
-
msgid "days"
|
1588 |
-
msgstr "dnů"
|
1589 |
|
1590 |
-
#: includes/
|
1591 |
-
|
1592 |
-
|
1593 |
-
msgstr "Pořadí"
|
1594 |
|
1595 |
-
#:
|
1596 |
-
msgid "
|
1597 |
-
msgstr "
|
1598 |
|
1599 |
-
#:
|
1600 |
-
msgid "
|
1601 |
-
msgstr "
|
1602 |
|
1603 |
-
#:
|
1604 |
-
msgid "
|
1605 |
-
msgstr "
|
1606 |
|
1607 |
-
#: includes/
|
1608 |
-
msgid "
|
1609 |
-
msgstr "
|
1610 |
|
1611 |
-
#: includes/
|
1612 |
-
|
1613 |
-
|
|
|
1614 |
|
1615 |
-
#: includes/optimization/tabs/wps-optimization-
|
1616 |
-
|
1617 |
-
|
|
|
1618 |
|
1619 |
-
#: includes/optimization/tabs/wps-optimization-
|
1620 |
-
msgid "
|
1621 |
-
msgstr "
|
1622 |
|
1623 |
-
#: includes/optimization/
|
1624 |
-
msgid "
|
1625 |
-
msgstr "
|
1626 |
|
1627 |
-
#: includes/optimization/
|
1628 |
-
|
1629 |
-
|
1630 |
-
msgstr "Smazat nyní!"
|
1631 |
|
1632 |
-
#: includes/optimization/
|
1633 |
-
msgid "
|
1634 |
-
msgstr "
|
1635 |
|
1636 |
-
#: includes/optimization/
|
1637 |
-
msgid "
|
1638 |
-
msgstr "
|
1639 |
|
1640 |
-
#: includes/optimization/
|
1641 |
-
msgid "
|
1642 |
-
msgstr "
|
1643 |
|
1644 |
-
#: includes/
|
1645 |
-
msgid "
|
1646 |
-
msgstr "
|
1647 |
|
1648 |
-
#: includes/
|
1649 |
-
msgid "
|
1650 |
-
msgstr "
|
1651 |
|
1652 |
-
#: includes/settings/tabs/wps-
|
1653 |
-
msgid "
|
1654 |
-
msgstr "
|
1655 |
|
1656 |
-
#: includes/settings/tabs/wps-
|
1657 |
-
msgid "
|
1658 |
-
msgstr "
|
1659 |
|
1660 |
-
#: includes/settings/tabs/wps-
|
1661 |
-
msgid "
|
1662 |
-
msgstr "
|
1663 |
|
1664 |
-
#: includes/settings/tabs/wps-
|
1665 |
-
msgid "
|
1666 |
-
msgstr "
|
1667 |
|
1668 |
-
#: includes/settings/tabs/wps-
|
1669 |
-
|
1670 |
-
|
1671 |
-
msgstr "Uložte změny na této stránce můžete stáhnout aktualizaci."
|
1672 |
|
1673 |
-
#: includes/
|
1674 |
-
|
1675 |
-
|
1676 |
-
#: includes/optimization/tabs/wps-optimization-purging.php:90
|
1677 |
-
msgid "Are you sure?"
|
1678 |
-
msgstr "Jste si jistý?"
|
1679 |
|
1680 |
-
#: includes/
|
1681 |
-
msgid "
|
1682 |
-
msgstr "
|
1683 |
|
1684 |
-
#: wp-statistics.php:
|
1685 |
-
msgid "
|
1686 |
-
msgstr "
|
1687 |
|
1688 |
-
#: includes/
|
1689 |
-
|
1690 |
-
|
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/
|
1697 |
-
|
1698 |
-
|
1699 |
-
msgid "Please select the desired items."
|
1700 |
-
msgstr "Prosím vyber požadované položky."
|
1701 |
|
1702 |
-
#: includes/
|
1703 |
-
msgid "
|
1704 |
-
msgstr "
|
1705 |
|
1706 |
-
#: includes/
|
1707 |
-
|
1708 |
-
|
1709 |
-
msgstr "Využití paměti v PHP"
|
1710 |
|
1711 |
-
#: includes/
|
1712 |
-
msgid "
|
1713 |
-
msgstr "
|
1714 |
|
1715 |
-
#: includes/
|
1716 |
-
|
1717 |
-
|
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/
|
1724 |
-
#: includes/
|
1725 |
-
|
1726 |
-
|
1727 |
-
#: includes/optimization/tabs/wps-optimization-resources.php:93
|
1728 |
-
msgid "Number of rows"
|
1729 |
-
msgstr "Počet řádků"
|
1730 |
|
1731 |
-
#: includes/
|
1732 |
-
|
1733 |
-
|
1734 |
-
msgstr "Export"
|
1735 |
|
1736 |
-
#: includes/
|
1737 |
-
msgid "
|
1738 |
-
msgstr "
|
1739 |
|
1740 |
-
#: includes/
|
1741 |
-
msgid "
|
1742 |
-
msgstr "
|
1743 |
|
1744 |
-
#:
|
1745 |
-
msgid "Export To"
|
1746 |
-
msgstr "Exportovat do"
|
1 |
+
# Translation of WP Statistics in Czech
|
2 |
+
# This file is distributed under the same license as the WP Statistics package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2015-01-27 19:17-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.7.4\n"
|
11 |
+
"Project-Id-Version: WP Statistics\n"
|
12 |
"POT-Creation-Date: \n"
|
13 |
"Last-Translator: \n"
|
14 |
"Language-Team: \n"
|
15 |
"Language: cs\n"
|
16 |
|
17 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:93
|
18 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:133
|
19 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:149
|
20 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:188
|
21 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:200
|
22 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:229
|
23 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:122
|
24 |
+
msgid "Enable or disable this feature"
|
25 |
+
msgstr "Zapnout nebo vypnout tuto vlastnost"
|
26 |
|
27 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:99
|
28 |
+
msgid "Check for online users every"
|
29 |
+
msgstr "Kontrola online uživatelů každých"
|
30 |
|
31 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:104
|
32 |
+
msgid "Second"
|
33 |
+
msgstr "Sekunda"
|
34 |
|
35 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:105
|
36 |
+
msgid "Time for the check accurate online user in the site. Now: %s Second"
|
37 |
+
msgstr "Čas pro kontrolu přesné online uživatele v síti. Nyní: %s druhé"
|
38 |
|
39 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:111
|
40 |
+
msgid "Record all user"
|
41 |
+
msgstr "Zaznamenejte všechny uživatelské"
|
42 |
|
43 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:117
|
44 |
+
msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
|
45 |
+
msgstr "Ignoruje nastavení pro vyloučení a zaznamenává všechny uživatele, kteří jsou online (včetně samostatné doporučení a roboty). Měly by být použity pouze pro řešení problémů."
|
|
|
|
|
|
|
46 |
|
47 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:155
|
48 |
+
msgid "Store entire user agent string"
|
49 |
+
msgstr "Uložení celé identifikační řetězec prohlížeče"
|
|
|
|
|
|
|
50 |
|
51 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:161
|
52 |
+
msgid "Only enabled for debugging"
|
53 |
+
msgstr "Jen zapnout pro debugging"
|
|
|
|
|
|
|
|
|
54 |
|
55 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:167
|
56 |
+
msgid "Coefficient per visitor"
|
57 |
+
msgstr "Koeficient na návštěvníka"
|
58 |
|
59 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:172
|
60 |
+
msgid "For each visit to account for several hits. Currently %s."
|
61 |
+
msgstr "Pro každou návštěvu k účtu pro několik hitů. V současné době %s."
|
62 |
|
63 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:177
|
64 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:182
|
65 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:295
|
66 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:368
|
67 |
+
msgid "Pages"
|
68 |
+
msgstr "Stránky"
|
69 |
|
70 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:194
|
71 |
+
msgid "Track all pages"
|
72 |
+
msgstr "Sledovat všechny stránky"
|
|
|
|
|
|
|
|
|
73 |
|
74 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:209
|
75 |
+
msgid "Strip parameters from URI"
|
76 |
+
msgstr "Strip parametry URI"
|
77 |
|
78 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:215
|
79 |
+
msgid "This will remove anything after the ? in a URL."
|
80 |
+
msgstr "Tím se odstraní něco po? v URL."
|
|
|
|
|
|
|
|
|
|
|
|
|
81 |
|
82 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:223
|
83 |
+
msgid "Disable hits column in post/pages list"
|
84 |
+
msgstr "Zakázat hity sloupec v seznamu post/stránky"
|
85 |
|
86 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:234
|
87 |
+
msgid "Miscellaneous"
|
88 |
+
msgstr "Různé"
|
89 |
|
90 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:239
|
91 |
+
msgid "Show stats in menu bar"
|
92 |
+
msgstr "Zobrazit statistiky v menu baru"
|
|
|
93 |
|
94 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:244
|
95 |
+
msgid "No"
|
96 |
+
msgstr "Ne"
|
97 |
|
98 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:245
|
99 |
+
msgid "Yes"
|
100 |
+
msgstr "Ano"
|
101 |
|
102 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:247
|
103 |
+
msgid "Show stats in admin menu bar"
|
104 |
+
msgstr "Zobrazit statistiku v admin menu baru"
|
105 |
|
106 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:253
|
107 |
+
msgid "Hide admin notices about non active features"
|
108 |
+
msgstr "SKrýt admin oznámení o neaktivních vlastnostech"
|
109 |
|
110 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:259
|
111 |
+
msgid "By default WP Statistics displays an alert if any of the core features are disabled on every admin page, this option will disable these notices."
|
112 |
+
msgstr "Ve výchozím nastavení WP Statistics zobrazí výstrahu, pokud některý ze základních funkcí jsou zakázány na každé stránce správce, tato možnost zakáže tato oznámení."
|
|
|
|
|
113 |
|
114 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:265
|
115 |
+
msgid "Delete the manual"
|
116 |
+
msgstr "Odstranit manuál"
|
117 |
|
118 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:271
|
119 |
+
msgid "By default WP Statistics stores the admin manual in the plugin directory (~5 meg), if this option is enabled it will be deleted now and during upgrades in the future."
|
120 |
+
msgstr "Ve výchozím nastavení ukládá statistiky WP admin ruční v adresáři plugin (~ 5 meg), je-li tato možnost povolena, bude odstraněn dnes a během upgrade v budoucnu."
|
121 |
|
122 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:276
|
123 |
+
msgid "Search Engines"
|
124 |
+
msgstr "Vyhledávače"
|
125 |
|
126 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:281
|
127 |
+
msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
|
128 |
+
msgstr "Zakázání všech vyhledávačů není dovoleno, to povede ve všech vyhledávačích je aktivní."
|
129 |
|
130 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:296
|
131 |
+
msgid "disable"
|
132 |
+
msgstr "vypnout"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
133 |
|
134 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:297
|
135 |
+
msgid "Disable %s from data collection and reporting."
|
136 |
+
msgstr "Zakážete %s ze shromažďování údajů a výkaznictví."
|
|
|
137 |
|
138 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:303
|
139 |
+
msgid "Charts"
|
140 |
+
msgstr "Grafy"
|
141 |
|
142 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:308
|
143 |
+
msgid "Include totals"
|
144 |
+
msgstr "Zahrnout součty"
|
|
|
|
|
|
|
|
|
145 |
|
146 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:314
|
147 |
+
msgid "Add a total line to charts with multiple values, like the search engine referrals"
|
148 |
+
msgstr "Přidání řádku Celkem se grafy s více hodnotami, jako je hledání vyhledávač doporučováním"
|
149 |
|
150 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:27
|
151 |
+
msgid "GeoIP settings"
|
152 |
+
msgstr "GeoIP nastavení"
|
|
|
|
|
|
|
|
|
153 |
|
154 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:32
|
155 |
+
msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
|
156 |
+
msgstr "IP umístění služby poskytované GeoLite2 data vytvořená MaxMind, k dispozici od %s."
|
157 |
|
158 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:42
|
159 |
+
msgid "GeoIP collection"
|
160 |
+
msgstr "GeoIP kolekce"
|
|
|
|
|
161 |
|
162 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:48
|
163 |
+
msgid "For get more information and location (country) from visitor, enable this feature."
|
164 |
+
msgstr "Zapněte tuto vlastnost pro získání více informací a lokace (země) návštěvníka."
|
|
|
|
|
|
|
|
|
165 |
|
166 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:54
|
167 |
+
msgid "Update GeoIP Info"
|
168 |
+
msgstr "Aktualizovat GeoIP Info"
|
|
|
169 |
|
170 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:59
|
171 |
+
msgid "Download GeoIP Database"
|
172 |
+
msgstr "Stáhnout GeoIP Databázi"
|
173 |
|
174 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:66
|
175 |
+
msgid "Schedule monthly update of GeoIP DB"
|
176 |
+
msgstr "Naplánovat měsíční aktualizaci GeoIP DB"
|
177 |
|
178 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:92
|
179 |
+
msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
|
180 |
+
msgstr "Stažení databáze GeoIP bude naplánováno na 2 dny po první úterý v měsíci."
|
181 |
|
182 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:93
|
183 |
+
msgid "This option will also download the database if the local filesize is less than 1k (which usually means the stub that comes with the plugin is still in place)."
|
184 |
+
msgstr "Tato možnost bude také stáhnout databáze, je-li místní velikost souboru je menší než 1 KB (což obvykle znamená, že se zakázaným inzerováním, který je dodáván s plugin je stále na svém místě)."
|
185 |
|
186 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:99
|
187 |
+
msgid "Populate missing GeoIP after update of GeoIP DB"
|
188 |
+
msgstr "Vyplnit chybějící GeoIP po aktualizaci GeoIP DB"
|
189 |
|
190 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:105
|
191 |
+
msgid "Update any missing GeoIP data after downloading a new database."
|
192 |
+
msgstr "Aktualizovat chybějící GeoIP data po stažení nové databáze."
|
193 |
|
194 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:111
|
195 |
+
msgid "Country code for private IP addresses"
|
196 |
+
msgstr "Kód země pro soukromé IP adresy"
|
197 |
|
198 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:116
|
199 |
+
msgid "The international standard two letter country code (ie. US = United States, CA = Canada, etc.) for private (non-routable) IP addresses (ie. 10.0.0.1, 192.158.1.1, 127.0.0.1, etc.). Use \"000\" (three zeros) to use \"Unknown\" as the country code."
|
200 |
+
msgstr "Standardní dva code Mezinárodní písmeno země (např. US = Spojené státy, CA = Kanada, atd.), Pro soukromé (bez směrování) IP adresy (např. 10.0.0.1, 192.158.1.1, 127.0.0.1, atd.). Pomocí "000" (tři nuly), k použití "neznámé", protože kód země."
|
201 |
|
202 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:127
|
203 |
+
msgid "GeoIP collection is disabled due to the following reasons:"
|
204 |
+
msgstr "Kolekce GeoIP je zakázáno z následujících důvodů:"
|
205 |
|
206 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:130
|
207 |
+
msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
|
208 |
+
msgstr "GeoIP kolekce vyžaduje PHP %s nebo vyšš, z důvodu instalované verze PHP je vlastnost vypnuta"
|
209 |
|
210 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:135
|
211 |
+
msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
|
212 |
+
msgstr "GeoIP kolekce vyžaduje cURL PHP rozšíření a to není nahrané ve Vaší verzi PHP!"
|
|
|
|
|
|
|
|
|
|
|
213 |
|
214 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:141
|
215 |
+
msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
|
216 |
+
msgstr "GeoIP kolekce vyžaduje BC Math PHP rozšíření a to není nahrané ve Vaší verzi PHP!"
|
|
|
|
|
|
|
|
|
217 |
|
218 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:147
|
219 |
+
msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
|
220 |
+
msgstr "PHP nouzový režim zjištěn! GeoIP kolekce není podporován s PHP je nouzový režim povolen!"
|
221 |
|
222 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:20
|
223 |
+
msgid "This will permanently delete data from the database each day, are you sure you want to enable this option?"
|
224 |
+
msgstr "To bude trvale odstranit data z databáze každý den, jste si jisti, že chcete povolit tuto možnost?"
|
225 |
|
226 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:30
|
227 |
+
msgid "Database Maintenance"
|
228 |
+
msgstr "Údržba databáze"
|
|
|
|
|
229 |
|
230 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:35
|
231 |
+
msgid "Run a daily WP Cron job to prune the databases"
|
232 |
+
msgstr "Spustit denní WP cronu prořezávat databáze"
|
233 |
|
234 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:41
|
235 |
+
msgid "A WP Cron job will be run daily to prune any data older than a set number of days."
|
236 |
+
msgstr "WP má úloha poběží denně vyřadit všechna data, která je starší než stanovený počet dní."
|
237 |
|
238 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:47
|
239 |
+
msgid "Prune data older than"
|
240 |
+
msgstr "Vyřadit data starší než"
|
241 |
|
242 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:52
|
243 |
+
msgid "Days"
|
244 |
+
msgstr "Dny"
|
245 |
|
246 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:53
|
247 |
+
msgid "The number of days to keep statistics for. Minimum value is 30 days. Invalid values will disable the daily maintenance."
|
248 |
+
msgstr "Počet dnů zachovat statistiky. Minimální hodnota je 30 dní. Neplatné hodnoty zakáže každodenní údržbu."
|
249 |
|
250 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:44
|
251 |
+
msgid "Common Report Options"
|
252 |
+
msgstr "Možnosti Společné zprávy"
|
253 |
|
254 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:49
|
255 |
+
msgid "E-mail addresses"
|
256 |
+
msgstr "E-mail adresy"
|
257 |
|
258 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:54
|
259 |
+
msgid "A comma separated list of e-mail addresses to send reports to."
|
260 |
+
msgstr "Čárkou oddělený seznam e-mailových adres pro odeslání zprávy."
|
261 |
|
262 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:59
|
263 |
+
msgid "Update Reports"
|
264 |
+
msgstr "Zprávy o update"
|
265 |
|
266 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:64
|
267 |
+
msgid "Browscap"
|
268 |
+
msgstr "Browscap"
|
269 |
|
270 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:70
|
271 |
+
msgid "Send a report whenever the browscap.ini is updated."
|
272 |
+
msgstr "Poslat zprávu, jakmile je Browscap.ini aktualizován."
|
273 |
|
274 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:76
|
275 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:104
|
276 |
+
msgid "GeoIP"
|
277 |
+
msgstr "GeoIP"
|
278 |
|
279 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:82
|
280 |
+
msgid "Send a report whenever the GeoIP database is updated."
|
281 |
+
msgstr "Poslat zprávu, jakmile je databáze GeoIP aktualizován."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
282 |
|
283 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:88
|
284 |
+
msgid "Pruning"
|
285 |
+
msgstr "Prořezávání"
|
|
|
|
|
|
|
|
|
|
|
|
|
286 |
|
287 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:94
|
288 |
+
msgid "Send a report whenever the pruning of database is run."
|
289 |
+
msgstr "Poslat zprávu, jakmile se spustí prořezávání databáze."
|
|
|
290 |
|
291 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:100
|
292 |
+
msgid "Upgrade"
|
293 |
+
msgstr "Upgrade"
|
|
|
294 |
|
295 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:106
|
296 |
+
msgid "Send a report whenever the plugin is upgraded."
|
297 |
+
msgstr "Poslat zprávu, jakmile je plugin inovován."
|
|
|
|
|
|
|
|
|
298 |
|
299 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:111
|
300 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:116
|
301 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:152
|
302 |
+
msgid "Statistical reporting"
|
303 |
+
msgstr "Statistický reporting"
|
304 |
|
305 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:129
|
306 |
+
msgid "Schedule"
|
307 |
+
msgstr "Plán"
|
308 |
|
309 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:153
|
310 |
+
msgid "Select how often to receive statistical report."
|
311 |
+
msgstr "Vyberte, jak často chcete dostávat statistickou zprávu."
|
|
|
|
|
312 |
|
313 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:159
|
314 |
+
msgid "Send reports via"
|
315 |
+
msgstr "Zaslat reporty via"
|
|
|
|
|
|
|
|
|
316 |
|
317 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:165
|
318 |
+
msgid "Email"
|
319 |
+
msgstr "Email"
|
|
|
|
|
|
|
320 |
|
321 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:167
|
322 |
+
msgid "SMS"
|
323 |
+
msgstr "SMS"
|
|
|
324 |
|
325 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:170
|
326 |
+
msgid "Select delivery method for statistical report."
|
327 |
+
msgstr "Zvolit způsob doručení pro statistické zprávy."
|
|
|
328 |
|
329 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:173
|
330 |
+
msgid "Note: To send SMS text messages please install the %s plugin."
|
331 |
+
msgstr "Poznámka: Poslat SMS textové zprávy prosím nainstalovat zásuvný modul %s."
|
|
|
|
|
|
|
|
|
|
|
332 |
|
333 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:173
|
334 |
+
msgid "WordPress SMS"
|
335 |
+
msgstr "WordPress SMS"
|
336 |
|
337 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:180
|
338 |
+
msgid "Report body"
|
339 |
+
msgstr "Tělo reportu"
|
340 |
|
341 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:185
|
342 |
+
msgid "Enter the contents of the report."
|
343 |
+
msgstr "Zadejte obsah zprávy."
|
|
|
|
|
|
|
|
|
|
|
|
|
344 |
|
345 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:187
|
346 |
+
msgid "Any shortcode supported by your installation of WordPress, include all shortcodes for WP Statistics (see the admin manual for a list of codes available) are supported in the body of the message. Here are some examples:"
|
347 |
+
msgstr "Jakékoli zkrácený podporována instalace WordPress, zahrnují všechny Shortcodes pro WP statistiky (viz návod admin pro seznam kódů dostupných), jsou podporovány v těle zprávy. Zde je několik příkladů:"
|
348 |
|
349 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:188
|
350 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:38
|
351 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:245
|
352 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:464
|
353 |
+
msgid "User Online"
|
354 |
+
msgstr "Online uživatelé"
|
|
|
|
|
355 |
|
356 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:189
|
357 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:52
|
358 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:251
|
359 |
+
msgid "Today Visitor"
|
360 |
+
msgstr "Dnešní návštěvník"
|
361 |
|
362 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:190
|
363 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:45
|
364 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:248
|
365 |
+
msgid "Today Visit"
|
366 |
+
msgstr "Dnešní návštěva"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
367 |
|
368 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:191
|
369 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:66
|
370 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:257
|
371 |
+
msgid "Yesterday Visitor"
|
372 |
+
msgstr "Včerejší návštěvník"
|
373 |
|
374 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:192
|
375 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:59
|
376 |
+
msgid "Yesterday Visit"
|
377 |
+
msgstr "Včerejší návštěva"
|
|
|
378 |
|
379 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:193
|
380 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:101
|
381 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:272
|
382 |
+
msgid "Total Visitor"
|
383 |
+
msgstr "Celkem návštěvníků"
|
384 |
|
385 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:194
|
386 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:94
|
387 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:269
|
388 |
+
msgid "Total Visit"
|
389 |
+
msgstr "Celkem návštěv"
|
390 |
|
391 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:23
|
392 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:32
|
393 |
+
msgid "None"
|
394 |
+
msgstr "Žádný"
|
395 |
|
396 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:24
|
397 |
+
msgid "Summary Statistics"
|
398 |
+
msgstr "Souhrné statistiky"
|
399 |
|
400 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:28
|
401 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:108
|
402 |
+
msgid "About"
|
403 |
+
msgstr "O"
|
404 |
|
405 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:34
|
406 |
+
msgid "Hits Statistical Chart"
|
407 |
+
msgstr "Statistický graf hitů"
|
408 |
|
409 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:36
|
410 |
+
msgid "Search Engine Referrers Statistical Chart"
|
411 |
+
msgstr "Statistický graf odkazujících vyhledávačů"
|
412 |
|
413 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:38
|
414 |
+
msgid "Top Pages Visited"
|
415 |
+
msgstr "Top navštívené stránky"
|
416 |
|
417 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:73
|
418 |
+
msgid "Dashboard"
|
419 |
+
msgstr "Palubní deska"
|
420 |
|
421 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:77
|
422 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:97
|
423 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:117
|
424 |
+
msgid "The following items are global to all users."
|
425 |
+
msgstr "Následující položky jsou globální pro všechny uživatele."
|
426 |
|
427 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:82
|
428 |
+
msgid "Disable dashboard widgets"
|
429 |
+
msgstr "Zakázat Dashboard Widgety"
|
|
|
|
|
|
|
|
|
430 |
|
431 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:88
|
432 |
+
msgid "Disable the dashboard widgets."
|
433 |
+
msgstr "Zakázat Dashboard Widgety."
|
434 |
|
435 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:93
|
436 |
+
msgid "Page/Post Editor"
|
437 |
+
msgstr "Page / Post Editor"
|
438 |
|
439 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:102
|
440 |
+
msgid "Disable post/page editor widget"
|
441 |
+
msgstr "Zakázat pošta / strana editor Widget"
|
442 |
|
443 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:108
|
444 |
+
msgid "Disable the page/post editor widget."
|
445 |
+
msgstr "Zakázat strana / editor příspěvků widgetu."
|
446 |
|
447 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:122
|
448 |
+
msgid "Map type"
|
449 |
+
msgstr "Typ mapy"
|
450 |
|
451 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:128
|
452 |
+
msgid "Google"
|
453 |
+
msgstr "Google"
|
454 |
|
455 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:128
|
456 |
+
msgid "JQVMap"
|
457 |
+
msgstr "JQVMap"
|
458 |
|
459 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:135
|
460 |
+
msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
|
461 |
+
msgstr "Zvolením \"Google\" bude použity mapové službý Google pro vykreslení návštěv (požaduje přístup na Google(. "
|
|
|
|
|
|
|
|
|
|
|
|
|
462 |
|
463 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:136
|
464 |
+
msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
|
465 |
+
msgstr " \"JQVMap\" volba použije JQVMap javascript mapovou knihovnu k vykreslení návštěv (vyžaduje externí služby)."
|
|
|
|
|
|
|
|
|
|
|
|
|
466 |
|
467 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:142
|
468 |
+
msgid "Disable map"
|
469 |
+
msgstr "Vypnout mapu"
|
|
|
|
|
|
|
|
|
|
|
|
|
470 |
|
471 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:148
|
472 |
+
msgid "Disable the map display"
|
473 |
+
msgstr "Vypnout zobrazení mapy"
|
|
|
|
|
|
|
|
|
474 |
|
475 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:154
|
476 |
+
msgid "Get country location from Google"
|
477 |
+
msgstr "Získat polohu země z Google"
|
|
|
478 |
|
479 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:160
|
480 |
+
msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
|
481 |
+
msgstr "Tato funkce může způsobit snížení výkonu při prohlížení statistiky a je platná pouze pokud typ mapy je nastavena na \"Google\"."
|
|
|
482 |
|
483 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:171
|
484 |
+
msgid "Overview Widgets to Display"
|
485 |
+
msgstr "Přehled Widgety na zobrazení"
|
486 |
|
487 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:175
|
488 |
+
msgid "The following items are unique to each user. If you do not select the 'About' widget it will automatically be displayed in the last positon of column A."
|
489 |
+
msgstr "Následující položky jsou jedinečné pro každého uživatele. Pokud nezaškrtnete políčko \"O mně\" widget bude automaticky zobrazen v poslední pozici sloupce A."
|
|
|
|
|
|
|
|
|
|
|
|
|
490 |
|
491 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:180
|
492 |
msgid "Slot"
|
493 |
msgstr "Slot"
|
494 |
|
495 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:184
|
496 |
msgid "Column A"
|
497 |
msgstr "Sloupec A"
|
498 |
|
499 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:188
|
500 |
msgid "Column B"
|
501 |
msgstr "Sloupec B"
|
502 |
|
503 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:194
|
504 |
msgid "Slot 1"
|
505 |
msgstr "Slot 1"
|
506 |
|
507 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:224
|
508 |
msgid "Slot 2"
|
509 |
msgstr "Slot 2"
|
510 |
|
511 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:254
|
512 |
msgid "Slot 3"
|
513 |
msgstr "Slot 3"
|
514 |
|
515 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:284
|
516 |
msgid "Slot 4"
|
517 |
msgstr "Slot 4"
|
518 |
|
519 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:314
|
520 |
msgid "Slot 5"
|
521 |
msgstr "Slot 5"
|
522 |
|
523 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:344
|
524 |
msgid "Slot 6"
|
525 |
msgstr "Slot 6"
|
526 |
|
527 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:348
|
528 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:370
|
529 |
msgid "N/A"
|
530 |
msgstr "N/A"
|
531 |
|
532 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:366
|
533 |
+
msgid "Slot 7"
|
534 |
+
msgstr "Slot 7"
|
535 |
|
536 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:15
|
537 |
+
msgid "WP Statisitcs Removal"
|
538 |
+
msgstr "WP Statisitcs Odstranění"
|
539 |
|
540 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:20
|
541 |
+
msgid "Uninstalling WP Statistics will not remove the data and settings, you can use this option to remove the WP Statistics data from your install before uninstalling the plugin."
|
542 |
+
msgstr "Odinstalace WP Statistika neodstraní data a nastavení, můžete použít tuto možnost k odstranění dat WP statistiky z vašeho nainstalovat před odinstalováním plugin."
|
543 |
|
544 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:23
|
545 |
+
msgid "Once you submit this form the settings will be deleted during the page load, however WP Statistics will still show up in your Admin menu until another page load is executed."
|
546 |
+
msgstr "Po odeslání tohoto formuláře nastavení budou v průběhu zatížení stránky smazané, ale WP Statistiky budou i nadále zobrazovat v nabídce pro správu, dokud je další načítání stránky popraven."
|
547 |
|
548 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:29
|
549 |
+
msgid "Remove data and settings"
|
550 |
+
msgstr "Odstranit data a nastavení"
|
551 |
|
552 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:34
|
553 |
+
msgid "Remove"
|
554 |
+
msgstr "Odstranit"
|
555 |
|
556 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:35
|
557 |
+
msgid "Remove data and settings, this action cannot be undone."
|
558 |
+
msgstr "Odstranit data a nastavení, se tato akce nelze vzít zpět."
|
559 |
|
560 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:100
|
561 |
+
msgid "General"
|
562 |
+
msgstr "Obecné"
|
563 |
|
564 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:101
|
565 |
+
msgid "Notifications"
|
566 |
+
msgstr "Oznámení"
|
567 |
|
568 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:102
|
569 |
+
msgid "Dashboard/Overview"
|
570 |
+
msgstr "Dashboard / Přehled"
|
571 |
|
572 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:103
|
573 |
+
msgid "Access/Exclusions"
|
574 |
+
msgstr "Přístupy/Vyjímky"
|
575 |
|
576 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:105
|
577 |
+
msgid "browscap"
|
578 |
+
msgstr "Browscap"
|
579 |
|
580 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:106
|
581 |
+
msgid "Maintenance"
|
582 |
+
msgstr "Údržba"
|
583 |
|
584 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:107
|
585 |
+
msgid "Removal"
|
586 |
+
msgstr "Odstranění"
|
587 |
|
588 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:150
|
589 |
+
msgid "Update"
|
590 |
+
msgstr "Aktualizovat"
|
591 |
|
592 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/manual/manual.php:29
|
593 |
+
msgid "Manual not found: %s"
|
594 |
+
msgstr "Manuál nebyl nalezen: %s"
|
595 |
|
596 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/manual/manual.php:39
|
597 |
+
msgid "Invalid file type selected: %s"
|
598 |
+
msgstr "Vybraný typ souboru je neplatná: %s"
|
599 |
|
600 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:10
|
601 |
+
msgid "Once Weekly"
|
602 |
+
msgstr "Jednou týdně"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
603 |
|
604 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:17
|
605 |
+
msgid "Once Every 2 Weeks"
|
606 |
+
msgstr "Jednou za 2 týdny"
|
607 |
|
608 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:24
|
609 |
+
msgid "Once Every 4 Weeks"
|
610 |
+
msgstr "Jednou za 4 týdny"
|
611 |
|
612 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:14
|
613 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:284
|
614 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:321
|
615 |
+
msgid "Statistics"
|
616 |
+
msgstr "Statistiky"
|
617 |
|
618 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:15
|
619 |
+
msgid "Show site stats in sidebar."
|
620 |
+
msgstr "Zobrazit statistiky stránek v postranním panelu."
|
621 |
|
622 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:73
|
623 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:260
|
624 |
+
msgid "Week Visit"
|
625 |
+
msgstr "Týdenní návštěva"
|
626 |
|
627 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:80
|
628 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:263
|
629 |
+
msgid "Month Visit"
|
630 |
+
msgstr "Měsíční návštěva"
|
631 |
|
632 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:87
|
633 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:266
|
634 |
+
msgid "Years Visit"
|
635 |
+
msgstr "Roční návštěvnost"
|
636 |
|
637 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:108
|
638 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:275
|
639 |
+
msgid "Total Page Views"
|
640 |
+
msgstr "Celkový počet zobrazení stránky"
|
641 |
|
642 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:116
|
643 |
+
msgid "Search Engine referred"
|
644 |
+
msgstr "Vyhledávač podle"
|
645 |
|
646 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:123
|
647 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:298
|
648 |
+
msgid "Total Posts"
|
649 |
+
msgstr "Celkem příspěvků"
|
650 |
|
651 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:130
|
652 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:301
|
653 |
+
msgid "Total Pages"
|
654 |
+
msgstr "Celkem stránek"
|
655 |
|
656 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:137
|
657 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:304
|
658 |
+
msgid "Total Comments"
|
659 |
+
msgstr "Celkem komentářů"
|
660 |
|
661 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:144
|
662 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:307
|
663 |
+
msgid "Total Spams"
|
664 |
+
msgstr "Celkem Spamů"
|
665 |
|
666 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:151
|
667 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:310
|
668 |
+
msgid "Total Users"
|
669 |
+
msgstr "Celkem uživatelů"
|
670 |
|
671 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:158
|
672 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:313
|
673 |
+
msgid "Average Posts"
|
674 |
+
msgstr "Průměr příspěvků"
|
675 |
|
676 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:165
|
677 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:316
|
678 |
+
msgid "Average Comments"
|
679 |
+
msgstr "Průměr komentářů"
|
680 |
|
681 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:172
|
682 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:319
|
683 |
+
msgid "Average Users"
|
684 |
+
msgstr "Průměr uživatelů"
|
685 |
|
686 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:179
|
687 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:322
|
688 |
+
msgid "Last Post Date"
|
689 |
+
msgstr "Datum posledního příspěvku"
|
690 |
|
691 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:238
|
692 |
+
msgid "Name"
|
693 |
+
msgstr "Jméno"
|
694 |
|
695 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:242
|
696 |
+
msgid "Items"
|
697 |
+
msgstr "Položky"
|
698 |
|
699 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:254
|
700 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:489
|
701 |
+
msgid "Yesterday visit"
|
702 |
+
msgstr "Včera návštěv"
|
703 |
|
704 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:278
|
705 |
+
msgid "Search Engine Referred"
|
706 |
+
msgstr "Vyhledávač podle"
|
707 |
|
708 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:281
|
709 |
+
msgid "Select type of search engine"
|
710 |
+
msgstr "Vyberte typ vyhledávače"
|
711 |
|
712 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
|
713 |
+
msgid "ERROR: WP Statistics has detected an unsupported version of PHP, WP Statistics will not function without PHP Version "
|
714 |
+
msgstr "Chyba: WP Statistics zjistila nepodporovanou verzi PHP, WP Statistics nebude fungovat bez verze PHP "
|
715 |
|
716 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
|
717 |
+
msgid " or higher!"
|
718 |
+
msgstr "nebo vyšší!"
|
719 |
|
720 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
|
721 |
+
msgid "Your current PHP version is"
|
722 |
+
msgstr "Vaše aktuální verze PHP je"
|
723 |
|
724 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:42
|
725 |
+
msgid "WP Statistics has been removed, please disable and delete it."
|
726 |
+
msgstr "WP Statistika byla odstraněna, prosím, vypněte a odstraňte ji."
|
727 |
|
728 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:53
|
729 |
+
msgid "WP Statistics"
|
730 |
+
msgstr "WP Statistiky"
|
731 |
|
732 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:54
|
733 |
+
msgid "Complete statistics for your WordPress site."
|
734 |
+
msgstr "Kompletní statistiky pro váš web WordPress."
|
735 |
|
736 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:97
|
737 |
+
msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
|
738 |
+
msgstr "On-line sledování v WP Statistics uživatelů není povoleno, přejděte na %s a umožňují."
|
739 |
|
740 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:97
|
741 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:100
|
742 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:103
|
743 |
+
msgid "setting page"
|
744 |
+
msgstr "nastavení stránky"
|
745 |
|
746 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:100
|
747 |
+
msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
|
748 |
+
msgstr "Sledování přístupů v WP Statistics není povoleno, přejděte na %s a umožňují."
|
|
|
749 |
|
750 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:103
|
751 |
+
msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
|
752 |
+
msgstr "Návštěvník v WP Statistics sledování není povoleno, přejděte na %s a umožňují."
|
753 |
|
754 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:106
|
755 |
+
msgid "GeoIP collection is not active, please go to %s and enable this feature."
|
756 |
+
msgstr "GeoIP kolekce není aktivní, přejděte na %s a tuto funkci povolit."
|
|
|
|
|
|
|
|
|
757 |
|
758 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:106
|
759 |
+
msgid "Setting page > GeoIP"
|
760 |
+
msgstr "Nastavení stránky > GeoIP"
|
761 |
|
762 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:191
|
763 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:303
|
764 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:375
|
765 |
+
msgid "Settings"
|
766 |
+
msgstr "Nastavení"
|
767 |
|
768 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:203
|
769 |
+
msgid "Click here to visit the plugin on WordPress.org"
|
770 |
+
msgstr "Chcete-li navštívit plugin WordPress.org"
|
|
|
|
|
|
|
|
|
771 |
|
772 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:203
|
773 |
+
msgid "Visit WordPress.org page"
|
774 |
+
msgstr "Navštivte stránku WordPress.org"
|
775 |
|
776 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:206
|
777 |
+
msgid "Click here to rate and review this plugin on WordPress.org"
|
778 |
+
msgstr "Klikněte zde pro hodnocení a recenzování tento plugin na WordPress.org"
|
779 |
|
780 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:206
|
781 |
+
msgid "Rate this plugin"
|
782 |
+
msgstr "Ohodnoť tento plugin"
|
783 |
|
784 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:250
|
785 |
+
msgid "WP Statistics - Hits"
|
786 |
+
msgstr "WP Statistics - Hits"
|
787 |
|
788 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:287
|
789 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:324
|
790 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:362
|
791 |
+
msgid "Overview"
|
792 |
+
msgstr "Přehled"
|
|
|
|
|
793 |
|
794 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:294
|
795 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:367
|
796 |
+
msgid "Online"
|
797 |
+
msgstr "Online"
|
798 |
|
799 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:296
|
800 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:369
|
801 |
+
msgid "Referrers"
|
802 |
+
msgstr "Odkazující"
|
803 |
|
804 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:297
|
805 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:370
|
806 |
+
msgid "Searches"
|
807 |
+
msgstr "Vyhledávání"
|
808 |
|
809 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:298
|
810 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:371
|
811 |
+
msgid "Search Words"
|
812 |
+
msgstr "Hledaná slova"
|
|
|
|
|
|
|
813 |
|
814 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:299
|
815 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:372
|
816 |
+
msgid "Top Visitors Today"
|
817 |
+
msgstr "Top Návštěvníci dnes"
|
|
|
|
|
|
|
818 |
|
819 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:302
|
820 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:374
|
821 |
+
msgid "Optimization"
|
822 |
+
msgstr "Optimalizace"
|
|
|
823 |
|
824 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:307
|
825 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:338
|
826 |
+
msgid "Manual"
|
827 |
+
msgstr "Manuál"
|
828 |
|
829 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:353
|
830 |
+
msgid "Site"
|
831 |
+
msgstr "Site"
|
832 |
|
833 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:354
|
834 |
+
msgid "Options"
|
835 |
+
msgstr "Možnosti"
|
|
|
|
|
|
|
836 |
|
837 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:471
|
838 |
+
msgid "Today visitor"
|
839 |
+
msgstr "Dnešní návštěvník"
|
840 |
|
841 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:477
|
842 |
+
msgid "Today visit"
|
843 |
+
msgstr "Dnešní návštěva"
|
|
|
|
|
|
|
|
|
844 |
|
845 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:483
|
846 |
+
msgid "Yesterday visitor"
|
847 |
+
msgstr "Včera návštěvníků"
|
848 |
|
849 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:495
|
850 |
+
msgid "View Stats"
|
851 |
+
msgstr "Zobrazit statistiky"
|
852 |
|
853 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:519
|
854 |
+
msgid "Download ODF file"
|
855 |
+
msgstr "Stáhnout soubor ODF"
|
856 |
|
857 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:520
|
858 |
+
msgid "Download HTML file"
|
859 |
+
msgstr "Stáhnout HTML soubor"
|
|
|
|
|
|
|
|
|
860 |
|
861 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:524
|
862 |
+
msgid "Manual file not found."
|
863 |
+
msgstr "Ruční soubor nebyl nalezen."
|
864 |
|
865 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:591
|
866 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:702
|
867 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:736
|
868 |
+
msgid "You do not have sufficient permissions to access this page."
|
869 |
+
msgstr "Nemáte dostatečná práva pro přístup na tuto stránku."
|
|
|
|
|
|
|
|
|
870 |
|
871 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:604
|
872 |
+
msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
|
873 |
+
msgstr "Plugin tabulky neexistují v databázi! Prosím, znovu spustit%s instalací rutinní%s."
|
|
|
874 |
|
875 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-install.php:250
|
876 |
+
msgid "WP Statistics %s installed on"
|
877 |
+
msgstr "WP Statistika%s instalován na"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
878 |
|
879 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:34
|
880 |
+
msgid "Error downloading GeoIP database from: %s - %s"
|
881 |
+
msgstr "Chyba při stahování GeoIP databáze od: %s - %s"
|
882 |
|
883 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:45
|
884 |
+
msgid "Error could not open downloaded GeoIP database for reading: %s"
|
885 |
+
msgstr "Chyba nelze otevřít stažené GeoIP databázi pro čtení: %s"
|
886 |
|
887 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:52
|
888 |
+
msgid "Error could not open destination GeoIP database for writing %s"
|
889 |
+
msgstr "Chyba nelze otevřít cílovou databázi GeoIP pro psaní %s"
|
890 |
|
891 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:68
|
892 |
+
msgid "GeoIP Database updated successfully!"
|
893 |
+
msgstr "GeoIP Databáze byla úspěšně aktualizována!"
|
894 |
|
895 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:93
|
896 |
+
msgid "GeoIP update on"
|
897 |
+
msgstr "GeoIP aktualizuje"
|
898 |
|
899 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:160
|
900 |
+
msgid "Error downloading browscap database from: %s - %s"
|
901 |
+
msgstr "Chyba při stahování browscap databáze od: %s - %s"
|
902 |
|
903 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:262
|
904 |
+
msgid "browscap database updated successfully!"
|
905 |
+
msgstr "Browscap databáze úspěšně aktualizován!"
|
906 |
|
907 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:273
|
908 |
+
msgid "browscap database updated failed! Cache file too large, reverting to previous browscap.ini."
|
909 |
+
msgstr "browscap aktualizace databáze se nezdařilo! Soubor Cache příliš velký, návrat k předchozímu Browscap.ini."
|
910 |
|
911 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:281
|
912 |
+
msgid "browscap database updated failed! New browscap.ini is mis-identifing user agents as crawlers, reverting to previous browscap.ini."
|
913 |
+
msgstr "browscap aktualizace databáze se nezdařilo! New Browscap.ini je mis-identifing uživatelských agentů jako roboti, návrat k předchozímu Browscap.ini."
|
914 |
|
915 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:303
|
916 |
+
msgid "browscap already at current version!"
|
917 |
+
msgstr "Browscap již v aktuální verzi!"
|
918 |
|
919 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:316
|
920 |
+
msgid "Browscap.ini update on"
|
921 |
+
msgstr "Browscap.ini aktualizace"
|
922 |
|
923 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:55
|
924 |
+
msgid "Quick Stats"
|
925 |
+
msgstr "Rychlé statistiky"
|
926 |
|
927 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:56
|
928 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:54
|
929 |
+
msgid "Top 10 Browsers"
|
930 |
+
msgstr "Top 10 Prohlížečů"
|
931 |
|
932 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:57
|
933 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:11
|
934 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:27
|
935 |
+
msgid "Top 10 Countries"
|
936 |
+
msgstr "Pořadí"
|
937 |
|
938 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:58
|
939 |
+
msgid "Today's Visitor Map"
|
940 |
+
msgstr "Mapa Návštěvník Dnešní"
|
941 |
|
942 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:59
|
943 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:46
|
944 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:8
|
945 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:8
|
946 |
+
msgid "Hit Statistics"
|
947 |
+
msgstr "Statistika hitů"
|
948 |
|
949 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:60
|
950 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:11
|
951 |
+
msgid "Top 10 Pages"
|
952 |
+
msgstr "Top 10 stránek"
|
953 |
|
954 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:61
|
955 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:30
|
956 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:8
|
957 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:39
|
958 |
+
msgid "Recent Visitors"
|
959 |
+
msgstr "Aktuální návštěvníci"
|
|
|
960 |
|
961 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:62
|
962 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:27
|
963 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:42
|
964 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:13
|
965 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:26
|
966 |
+
msgid "Top Referring Sites"
|
967 |
+
msgstr "Nejlepší odkazující stránky"
|
968 |
|
969 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:63
|
970 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:7
|
971 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:74
|
972 |
+
msgid "Search Engine Referrals"
|
973 |
+
msgstr "Vyhledávací Engine odkazy"
|
974 |
|
975 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:64
|
976 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:8
|
977 |
+
msgid "Summary"
|
978 |
+
msgstr "Souhrn"
|
|
|
|
|
|
|
979 |
|
980 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:65
|
981 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:30
|
982 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:8
|
983 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:37
|
984 |
+
msgid "Latest Search Words"
|
985 |
+
msgstr "Poslední vyhledávaný slova"
|
986 |
|
987 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:66
|
988 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:8
|
989 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:35
|
990 |
+
msgid "Top 10 Visitors Today"
|
991 |
+
msgstr "Top 10 Návštěvníci dnes"
|
992 |
|
993 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:97
|
994 |
+
msgid "Please reload the dashboard to display the content of this widget."
|
995 |
+
msgstr "Obnovte palubní desku pro zobrazení obsahu tohoto udělátka."
|
|
|
|
|
|
|
|
|
996 |
|
997 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:138
|
998 |
+
msgid "WP Statistics Overview"
|
999 |
+
msgstr "WP Statistics Přehled"
|
1000 |
|
1001 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:63
|
1002 |
+
msgid "This post is not yet published."
|
1003 |
+
msgstr "Tento příspěvek je dosud nezveřejněné."
|
1004 |
|
1005 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:26
|
1006 |
+
msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
|
1007 |
+
msgstr "Nemožné nahrát GeoIP databázi, zajistěte stažení v nastavení."
|
|
|
|
|
|
|
|
|
1008 |
|
1009 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:50
|
1010 |
+
msgid "Updated %s GeoIP records in the visitors database."
|
1011 |
+
msgstr "Aktualizovat %s GeoIP záznamy v databázi návětěvníků."
|
1012 |
|
1013 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:21
|
1014 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:39
|
1015 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:50
|
1016 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:83
|
1017 |
+
msgid "%s data older than %s days purged successfully."
|
1018 |
+
msgstr "%s data starší než %s dnφ úspěšně vyprázdněna."
|
1019 |
|
1020 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:23
|
1021 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:41
|
1022 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:52
|
1023 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:85
|
1024 |
+
msgid "No records found to purge from %s!"
|
1025 |
+
msgstr "Žádné záznamy nalezeny očistit od %s!"
|
|
|
1026 |
|
1027 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:98
|
1028 |
+
msgid "Database pruned on"
|
1029 |
+
msgstr "Databáze prořezaný na"
|
1030 |
+
|
1031 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:103
|
1032 |
+
msgid "Please select a value over 30 days."
|
1033 |
+
msgstr "Prosím vyber hodnotu nad 30 dní."
|
1034 |
+
|
1035 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:8
|
1036 |
+
msgid "Browser Statistics"
|
1037 |
+
msgstr "Statistiky prohlížečů"
|
1038 |
+
|
1039 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:14
|
1040 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:98
|
1041 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:233
|
1042 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:74
|
1043 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
|
1044 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:61
|
1045 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:60
|
1046 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:17
|
1047 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:47
|
1048 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:29
|
1049 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:19
|
1050 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:137
|
1051 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:38
|
1052 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:7
|
1053 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:6
|
1054 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:9
|
1055 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:8
|
1056 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:7
|
1057 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:8
|
1058 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:9
|
1059 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:6
|
1060 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:11
|
1061 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:6
|
1062 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:7
|
1063 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:7
|
1064 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:6
|
1065 |
+
msgid "Click to toggle"
|
1066 |
+
msgstr "Klik na vypínač"
|
1067 |
+
|
1068 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:15
|
1069 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:7
|
1070 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:25
|
1071 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:288
|
1072 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:363
|
1073 |
+
msgid "Browsers"
|
1074 |
+
msgstr "Prohlížeče"
|
1075 |
+
|
1076 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:42
|
1077 |
+
msgid "Browsers by type"
|
1078 |
+
msgstr "Prohlížeče podle typu"
|
1079 |
+
|
1080 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:99
|
1081 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:34
|
1082 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:302
|
1083 |
+
msgid "Platform"
|
1084 |
+
msgstr "Platforma"
|
1085 |
+
|
1086 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:126
|
1087 |
+
msgid "Browsers by platform"
|
1088 |
+
msgstr "Platforma prohlížečů"
|
1089 |
+
|
1090 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:234
|
1091 |
+
msgid "%s Version"
|
1092 |
+
msgstr "%s Verze"
|
1093 |
+
|
1094 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:8
|
1095 |
+
msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
|
1096 |
+
msgstr "Pozor: Vyloučení nejsou nastaveny v současnosti zaznamenávají, výsledky níže nemusí odrážet aktuální statistiky!"
|
1097 |
+
|
1098 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:54
|
1099 |
+
msgid "Exclusions Statistics"
|
1100 |
+
msgstr "Vyloučení statistiky"
|
1101 |
+
|
1102 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:57
|
1103 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:12
|
1104 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:33
|
1105 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:15
|
1106 |
+
msgid "10 Days"
|
1107 |
+
msgstr "10 Dnů"
|
1108 |
+
|
1109 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:58
|
1110 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:13
|
1111 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:34
|
1112 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:16
|
1113 |
+
msgid "20 Days"
|
1114 |
+
msgstr "20 Dnů"
|
1115 |
+
|
1116 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:59
|
1117 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:14
|
1118 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:35
|
1119 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:17
|
1120 |
+
msgid "30 Days"
|
1121 |
+
msgstr "30 Dnů"
|
1122 |
+
|
1123 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:60
|
1124 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:15
|
1125 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:36
|
1126 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:18
|
1127 |
+
msgid "2 Months"
|
1128 |
+
msgstr "2 Měsíce"
|
1129 |
+
|
1130 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:61
|
1131 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:16
|
1132 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:37
|
1133 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:19
|
1134 |
+
msgid "3 Months"
|
1135 |
+
msgstr "3 Měsíce"
|
1136 |
+
|
1137 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:62
|
1138 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:17
|
1139 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:38
|
1140 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:20
|
1141 |
+
msgid "6 Months"
|
1142 |
+
msgstr "6 Měsíců"
|
1143 |
+
|
1144 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:63
|
1145 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:18
|
1146 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:39
|
1147 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
|
1148 |
+
msgid "9 Months"
|
1149 |
+
msgstr "9 Měsíců"
|
1150 |
+
|
1151 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:64
|
1152 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:19
|
1153 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:40
|
1154 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
|
1155 |
+
msgid "1 Year"
|
1156 |
+
msgstr "1 Rok"
|
1157 |
+
|
1158 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:68
|
1159 |
+
msgid "Total Exclusions: %s"
|
1160 |
+
msgstr "Celkem vyjímek: %s"
|
1161 |
+
|
1162 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:75
|
1163 |
+
msgid "Exclusions Statistical Chart"
|
1164 |
+
msgstr "Statistický graf vyjímek"
|
1165 |
+
|
1166 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:97
|
1167 |
+
msgid "Excluded hits in the last"
|
1168 |
+
msgstr "Vyloučené hity v posledních"
|
1169 |
+
|
1170 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:97
|
1171 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:60
|
1172 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:71
|
1173 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:51
|
1174 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:55
|
1175 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:151
|
1176 |
+
msgid "days"
|
1177 |
+
msgstr "dnů"
|
1178 |
+
|
1179 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:118
|
1180 |
+
msgid "Number of excluded hits"
|
1181 |
+
msgstr "Počet vyjmutých hitů"
|
1182 |
+
|
1183 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:27
|
1184 |
+
msgid "Hits Statistics Chart"
|
1185 |
+
msgstr "Graf statistiky přístupů"
|
1186 |
+
|
1187 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:60
|
1188 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:51
|
1189 |
+
msgid "Hits in the last"
|
1190 |
+
msgstr "Hity v posledních"
|
1191 |
+
|
1192 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:81
|
1193 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:72
|
1194 |
+
msgid "Number of visits and visitors"
|
1195 |
+
msgstr "Počet návštěv a návštěvníků"
|
1196 |
+
|
1197 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:95
|
1198 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:86
|
1199 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:30
|
1200 |
+
msgid "Visit"
|
1201 |
+
msgstr "Návštěva"
|
1202 |
+
|
1203 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:95
|
1204 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:86
|
1205 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:29
|
1206 |
+
msgid "Visitor"
|
1207 |
+
msgstr "Návštěvník"
|
1208 |
+
|
1209 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:62
|
1210 |
+
msgid "Latest Search Word Statistics"
|
1211 |
+
msgstr "Stastiky posledně vyhledávaných slov"
|
1212 |
+
|
1213 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:97
|
1214 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:97
|
1215 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:48
|
1216 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:84
|
1217 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:71
|
1218 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:30
|
1219 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:32
|
1220 |
+
msgid "#hash#"
|
1221 |
+
msgstr "#hash #"
|
1222 |
+
|
1223 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:102
|
1224 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:102
|
1225 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:53
|
1226 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:71
|
1227 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:35
|
1228 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:39
|
1229 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:33
|
1230 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:113
|
1231 |
+
msgid "Map"
|
1232 |
+
msgstr "Mapa"
|
1233 |
+
|
1234 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:139
|
1235 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:135
|
1236 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:105
|
1237 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
|
1238 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
|
1239 |
+
msgid "Page"
|
1240 |
+
msgstr "Stránka"
|
1241 |
+
|
1242 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:139
|
1243 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:135
|
1244 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:105
|
1245 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
|
1246 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
|
1247 |
+
msgid "From"
|
1248 |
+
msgstr "Od"
|
1249 |
+
|
1250 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:32
|
1251 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:29
|
1252 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:135
|
1253 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:294
|
1254 |
+
msgid "All"
|
1255 |
+
msgstr "Všechno"
|
1256 |
+
|
1257 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:62
|
1258 |
+
msgid "Search for"
|
1259 |
+
msgstr "Hledat"
|
1260 |
+
|
1261 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:64
|
1262 |
+
msgid "Recent Visitor Statistics"
|
1263 |
+
msgstr "Nedávné statistiky návštěvnosti"
|
1264 |
+
|
1265 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:11
|
1266 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:18
|
1267 |
+
msgid "Online Users"
|
1268 |
+
msgstr "Online uživatelé"
|
1269 |
+
|
1270 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:73
|
1271 |
+
msgid "Online for "
|
1272 |
+
msgstr "Online pro"
|
1273 |
+
|
1274 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:29
|
1275 |
+
msgid "Page Trend for Post ID"
|
1276 |
+
msgstr "Stránky Trend pro ID příspěvku"
|
1277 |
+
|
1278 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:48
|
1279 |
+
msgid "Page Trend"
|
1280 |
+
msgstr "Stránky Trend"
|
1281 |
+
|
1282 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:11
|
1283 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:30
|
1284 |
+
msgid "Search Engine Referral Statistics"
|
1285 |
+
msgstr "Vyhledávací Engine referenční Statistika"
|
1286 |
+
|
1287 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:71
|
1288 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:55
|
1289 |
+
msgid "Search engine referrals in the last"
|
1290 |
+
msgstr "Vyhledávací stroj doporučení v posledních"
|
1291 |
+
|
1292 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:92
|
1293 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:76
|
1294 |
+
msgid "Number of referrals"
|
1295 |
+
msgstr "Počet odkazů"
|
1296 |
+
|
1297 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:106
|
1298 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:90
|
1299 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:64
|
1300 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:104
|
1301 |
+
msgid "Total"
|
1302 |
+
msgstr "Celkem"
|
1303 |
+
|
1304 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:11
|
1305 |
+
msgid "Top Countries"
|
1306 |
+
msgstr "Top zemí"
|
1307 |
+
|
1308 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:20
|
1309 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:30
|
1310 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:27
|
1311 |
+
msgid "Rank"
|
1312 |
+
msgstr "Vlajka"
|
1313 |
+
|
1314 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:21
|
1315 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:31
|
1316 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:29
|
1317 |
+
msgid "Flag"
|
1318 |
+
msgstr "Počet návštěvníků"
|
1319 |
+
|
1320 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:22
|
1321 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:32
|
1322 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:30
|
1323 |
+
msgid "Country"
|
1324 |
+
msgstr "Země"
|
1325 |
+
|
1326 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:23
|
1327 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:33
|
1328 |
+
msgid "Visitor Count"
|
1329 |
+
msgstr "Počet návštěvníků"
|
1330 |
+
|
1331 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:13
|
1332 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:138
|
1333 |
+
msgid "Top Pages"
|
1334 |
+
msgstr "Nejlepší stránky"
|
1335 |
+
|
1336 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:20
|
1337 |
+
msgid "Top 5 Pages Trends"
|
1338 |
+
msgstr "Top 5 stránek trendy"
|
1339 |
+
|
1340 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:49
|
1341 |
+
msgid "Top 5 Page Trending Stats"
|
1342 |
+
msgstr "Top 5 stránek trendy statistiky"
|
1343 |
+
|
1344 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:70
|
1345 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/page.php:58
|
1346 |
+
msgid "Number of Hits"
|
1347 |
+
msgstr "Počet přístupů"
|
1348 |
+
|
1349 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:166
|
1350 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:32
|
1351 |
+
msgid "No page title found"
|
1352 |
+
msgstr "Žádný titulek stránky nalézt"
|
1353 |
+
|
1354 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:169
|
1355 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:35
|
1356 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:37
|
1357 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:122
|
1358 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:127
|
1359 |
+
msgid "Visits"
|
1360 |
+
msgstr "Návštěvy"
|
1361 |
+
|
1362 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:4
|
1363 |
+
msgid "To be added soon"
|
1364 |
+
msgstr "Brzy bude přidáno"
|
1365 |
+
|
1366 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:40
|
1367 |
+
msgid "Referring sites from"
|
1368 |
+
msgstr "Odkazující stránky od"
|
1369 |
+
|
1370 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:110
|
1371 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:30
|
1372 |
+
msgid "References"
|
1373 |
+
msgstr "Odkazy"
|
1374 |
+
|
1375 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-visitors.php:12
|
1376 |
+
msgid "Top 100 Visitors Today"
|
1377 |
+
msgstr "Top 100 Návštěvníci dnes"
|
1378 |
+
|
1379 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:8
|
1380 |
+
msgid "About WP Statistics Version %s"
|
1381 |
+
msgstr "O WP Statistics Verze %s"
|
1382 |
|
1383 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:25
|
1384 |
+
msgid "Website"
|
1385 |
+
msgstr "Web stránky"
|
1386 |
+
|
1387 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:26
|
1388 |
+
msgid "Rate and Review"
|
1389 |
+
msgstr "Hodnotit a recenzovat"
|
1390 |
+
|
1391 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:30
|
1392 |
+
msgid "More Information"
|
1393 |
+
msgstr "Více informací"
|
1394 |
+
|
1395 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:39
|
1396 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:12
|
1397 |
+
msgid "This product includes GeoLite2 data created by MaxMind, available from %s."
|
1398 |
+
msgstr "Tento produkt obsahuje GeoLite2 data vytvořená MaxMind, k dispozici od %s."
|
1399 |
+
|
1400 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:7
|
1401 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:11
|
1402 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:8
|
1403 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:11
|
1404 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:8
|
1405 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:13
|
1406 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:7
|
1407 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:8
|
1408 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:8
|
1409 |
+
msgid "More"
|
1410 |
+
msgstr "Více"
|
1411 |
+
|
1412 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:47
|
1413 |
+
msgid "Other"
|
1414 |
+
msgstr "Jiný"
|
1415 |
+
|
1416 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:9
|
1417 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:9
|
1418 |
+
msgid "Today Visitors Map"
|
1419 |
+
msgstr "Dnešní mapa návštšvníků"
|
1420 |
+
|
1421 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:31
|
1422 |
+
msgid "Address"
|
1423 |
+
msgstr "Adresa"
|
1424 |
+
|
1425 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:23
|
1426 |
+
msgid "User(s) Online"
|
1427 |
+
msgstr "Online uživatelé"
|
1428 |
+
|
1429 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:34
|
1430 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:79
|
1431 |
+
msgid "Today"
|
1432 |
+
msgstr "Dnes"
|
1433 |
+
|
1434 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:40
|
1435 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:80
|
1436 |
+
msgid "Yesterday"
|
1437 |
+
msgstr "Včera"
|
1438 |
+
|
1439 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:46
|
1440 |
+
msgid "Week"
|
1441 |
+
msgstr "Týden"
|
1442 |
+
|
1443 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:52
|
1444 |
+
msgid "Month"
|
1445 |
+
msgstr "Měsíc"
|
1446 |
+
|
1447 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:58
|
1448 |
+
msgid "Year"
|
1449 |
+
msgstr "Rok"
|
1450 |
+
|
1451 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:98
|
1452 |
msgid "Daily Total"
|
1453 |
msgstr "Denně celkem"
|
1454 |
|
1455 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:117
|
1456 |
msgid "Current Time and Date"
|
1457 |
msgstr "Aktuální čas a datum"
|
1458 |
|
1459 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:117
|
1460 |
+
msgid "(Adjustment)"
|
1461 |
+
msgstr "(Nastavení)"
|
1462 |
+
|
1463 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:121
|
1464 |
+
msgid "Date: %s"
|
1465 |
+
msgstr "Datum: %s"
|
1466 |
+
|
1467 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:125
|
1468 |
+
msgid "Time: %s"
|
1469 |
+
msgstr "Čas: %s"
|
1470 |
+
|
1471 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:28
|
1472 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:215
|
1473 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:293
|
1474 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:366
|
1475 |
+
msgid "Hits"
|
1476 |
+
msgstr "Hity"
|
1477 |
+
|
1478 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:31
|
1479 |
+
msgid "IP"
|
1480 |
+
msgstr "IP"
|
1481 |
+
|
1482 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:33
|
1483 |
+
msgid "Agent"
|
1484 |
+
msgstr "Agent"
|
1485 |
+
|
1486 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:35
|
1487 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:291
|
1488 |
+
msgid "Version"
|
1489 |
+
msgstr "Verze"
|
1490 |
+
|
1491 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:5
|
1492 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:5
|
1493 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:5
|
1494 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:5
|
1495 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:6
|
1496 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:6
|
1497 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/manual/manual.php:5
|
1498 |
+
msgid "Access denied!"
|
1499 |
+
msgstr "Přístup zakázán!"
|
1500 |
+
|
1501 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:14
|
1502 |
+
msgid "%s agent data deleted successfully."
|
1503 |
+
msgstr "%s agenta data úspěšně smazána."
|
1504 |
+
|
1505 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:17
|
1506 |
+
msgid "No agent data found to remove!"
|
1507 |
+
msgstr "Žádné údaje agentů bylo zjištěno, že odstranit!"
|
1508 |
+
|
1509 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:21
|
1510 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:21
|
1511 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:42
|
1512 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:57
|
1513 |
+
msgid "Please select the desired items."
|
1514 |
+
msgstr "Prosím vyber požadované položky."
|
1515 |
+
|
1516 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:14
|
1517 |
+
msgid "%s platform data deleted successfully."
|
1518 |
+
msgstr "údaje platforma %s úspěšně smazána."
|
1519 |
+
|
1520 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:17
|
1521 |
+
msgid "No platform data found to remove!"
|
1522 |
+
msgstr "Žádná data nástupištěm odstranit!"
|
1523 |
+
|
1524 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:53
|
1525 |
+
msgid "%s table data deleted successfully."
|
1526 |
+
msgstr "data tabulky %s úspěšně smazána."
|
1527 |
+
|
1528 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:57
|
1529 |
+
msgid "Error, %s not emptied!"
|
1530 |
+
msgstr "Chyba, %s není vyprázdněno!"
|
1531 |
+
|
1532 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:5
|
1533 |
+
msgid "Database Setup"
|
1534 |
+
msgstr "Nastavení databáze"
|
1535 |
+
|
1536 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:10
|
1537 |
+
msgid "Re-run Install"
|
1538 |
+
msgstr "Spusťte znovu instalaci"
|
1539 |
+
|
1540 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:14
|
1541 |
+
msgid "Install Now!"
|
1542 |
+
msgstr "Nainstalujte nyní!"
|
1543 |
+
|
1544 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:15
|
1545 |
+
msgid "If for some reason your installation of WP Statistics is missing the database tables or other core items, this will re-execute the install process."
|
1546 |
+
msgstr "Pokud z nějakého důvodu instalace WP Statistics chybí, databázové tabulky nebo jiné položky jádro, to bude znovu provést instalačního procesu."
|
1547 |
+
|
1548 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:20
|
1549 |
+
msgid "Database Index"
|
1550 |
+
msgstr "Databáze Index"
|
1551 |
+
|
1552 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
|
1553 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
|
1554 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:290
|
1555 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:364
|
1556 |
+
msgid "Countries"
|
1557 |
+
msgstr "Země"
|
1558 |
+
|
1559 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:39
|
1560 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:25
|
1561 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:40
|
1562 |
msgid "Update Now!"
|
1563 |
msgstr "!Aktualizovat nyní"
|
1564 |
|
1565 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:40
|
1566 |
+
msgid "Older installs of WP Statistics allow for duplicate entries in the visitors table in a corner case. Newer installs protect against this with a unique index on the table. To create the index on the older installs duplicate entries must be deleted first. Clicking \"Update Now\" will scan the vistitors table, delete duplicate entries and add the index."
|
1567 |
+
msgstr "Starší instalace WP Statistics umožňují Duplicitní položky v tabulce návštěvníků v případě rohové. Novější instalace se proti tomu bránit s jedinečný index v tabulce. Chcete-li vytvořit index na starší instaluje duplicitní položky musí být odstraněny jako první. Klepnutím na \"Update Now\" prohledá tabulku vistitors, odstranit duplicitní položky a přidat indexu."
|
|
|
|
|
|
|
|
|
|
|
|
|
1568 |
|
1569 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:41
|
1570 |
+
msgid "This operation could take a long time on installs with many rows in the visitors table."
|
1571 |
+
msgstr "Tato operace může trvat dlouhou dobu na nainstaluje s mnoha řádků v tabulce návštěvníků."
|
|
|
|
|
|
|
|
|
1572 |
|
1573 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:46
|
1574 |
+
msgid "Older installs of WP Statistics allow for duplicate entries in the visitors table in a corner case. Newer installs protect against this with a unique index on the table."
|
1575 |
+
msgstr "Starší instalace WP Statistics umožňují Duplicitní položky v tabulce návštěvníků v případě rohové. Novější instalace se proti tomu bránit s jedinečný index v tabulce."
|
1576 |
|
1577 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:47
|
1578 |
+
msgid "Congratulations, your installation is already up to date, nothing to do."
|
1579 |
+
msgstr "Gratulujeme vaše instalace je již datum, nic společného."
|
1580 |
|
1581 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:7
|
1582 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:147
|
1583 |
+
msgid "Export"
|
1584 |
+
msgstr "Export"
|
1585 |
|
1586 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:12
|
1587 |
+
msgid "Export from"
|
1588 |
+
msgstr "Export od"
|
|
|
|
|
|
|
1589 |
|
1590 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:17
|
1591 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:35
|
1592 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:129
|
1593 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:170
|
1594 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:194
|
1595 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:134
|
1596 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:164
|
1597 |
+
msgid "Please select"
|
1598 |
+
msgstr "Prosím vyber"
|
1599 |
|
1600 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:24
|
1601 |
+
msgid "Select the table for the output file."
|
1602 |
+
msgstr "Vyberte tabulku pro výstupní soubor."
|
1603 |
|
1604 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:30
|
1605 |
+
msgid "Export To"
|
1606 |
+
msgstr "Exportovat do"
|
1607 |
|
1608 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:41
|
1609 |
+
msgid "Select the output file type."
|
1610 |
+
msgstr "Vyber typ výstupní souboru."
|
1611 |
+
|
1612 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:47
|
1613 |
+
msgid "Include Header Row"
|
1614 |
+
msgstr "Zahrnout řádek záhlaví"
|
1615 |
+
|
1616 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:52
|
1617 |
+
msgid "Include a header row as the first line of the exported file."
|
1618 |
+
msgstr "Zahrnout řádek záhlaví jako první řádek v exportovaném souboru."
|
1619 |
+
|
1620 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:53
|
1621 |
+
msgid "Start Now!"
|
1622 |
+
msgstr "Start Nyní!"
|
1623 |
+
|
1624 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:15
|
1625 |
+
msgid "Historical Values"
|
1626 |
+
msgstr "Historické hodnoty"
|
1627 |
+
|
1628 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:20
|
1629 |
+
msgid "Note: As you have just purged the database you must reload this page for these numbers to be correct."
|
1630 |
+
msgstr "Poznámka: Jak jste právě očistil databázi, musíte znovu načíst tuto stránku na tato čísla za správné."
|
1631 |
+
|
1632 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:26
|
1633 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:138
|
1634 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:143
|
1635 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:300
|
1636 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:373
|
1637 |
+
msgid "Visitors"
|
1638 |
+
msgstr "Návštěvníci"
|
1639 |
+
|
1640 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:31
|
1641 |
+
msgid "Number of historical number of visitors to the site (current value is %s)."
|
1642 |
+
msgstr "Počet historické počtu návštěvníků stránek (aktuální hodnota je%s)."
|
1643 |
+
|
1644 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:42
|
1645 |
+
msgid "Number of historical number of visits to the site (current value is %s)."
|
1646 |
+
msgstr "Počet historické počtu návštěv stránek (aktuální hodnota je%s)."
|
1647 |
+
|
1648 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:48
|
1649 |
+
msgid "Update now!"
|
1650 |
+
msgstr "Aktualizovat nyní!"
|
1651 |
+
|
1652 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:10
|
1653 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:37
|
1654 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:63
|
1655 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:91
|
1656 |
+
msgid "Are you sure?"
|
1657 |
+
msgstr "Jste si jistý?"
|
1658 |
+
|
1659 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:119
|
1660 |
+
msgid "Data"
|
1661 |
+
msgstr "Data"
|
1662 |
+
|
1663 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:124
|
1664 |
+
msgid "Empty Table"
|
1665 |
+
msgstr "Prázdná tabulka"
|
1666 |
+
|
1667 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:137
|
1668 |
+
msgid "All data table will be lost."
|
1669 |
+
msgstr "Všechna data budou ztracena!"
|
1670 |
+
|
1671 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:138
|
1672 |
+
msgid "Clear now!"
|
1673 |
+
msgstr "Vyčistit nyní!"
|
1674 |
+
|
1675 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:146
|
1676 |
+
msgid "Purge records older than"
|
1677 |
+
msgstr "Pročistit záznamy starší než"
|
1678 |
+
|
1679 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:152
|
1680 |
+
msgid "Deleted user statistics data older than the selected number of days. Minimum value is 30 days."
|
1681 |
+
msgstr "Odstraněný uživatel statistická data starší než zvolený počet dní. Minimální hodnota je 30 dní."
|
1682 |
+
|
1683 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:153
|
1684 |
+
msgid "Purge now!"
|
1685 |
+
msgstr "Pročistit nyní!"
|
1686 |
+
|
1687 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:160
|
1688 |
+
msgid "Delete User Agent Types"
|
1689 |
+
msgstr "Odstranit typy uživatelských agentů"
|
1690 |
+
|
1691 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:165
|
1692 |
+
msgid "Delete Agents"
|
1693 |
+
msgstr "Smazat Agenty"
|
1694 |
+
|
1695 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:180
|
1696 |
+
msgid "All visitor data will be lost for this agent type."
|
1697 |
+
msgstr "Všechna data návštěvníků budou ztraceny pro tento typ agenta."
|
1698 |
+
|
1699 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:181
|
1700 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:205
|
1701 |
+
msgid "Delete now!"
|
1702 |
+
msgstr "Smazat nyní!"
|
1703 |
+
|
1704 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:189
|
1705 |
+
msgid "Delete Platforms"
|
1706 |
+
msgstr "Vymazat platformy"
|
1707 |
+
|
1708 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:204
|
1709 |
+
msgid "All visitor data will be lost for this platform type."
|
1710 |
+
msgstr "Všechna data návštěvníků budou ztraceny pro tento typ platformy."
|
1711 |
+
|
1712 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:17
|
1713 |
+
msgid "Resources"
|
1714 |
+
msgstr "Zdroje"
|
1715 |
+
|
1716 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:22
|
1717 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:27
|
1718 |
+
msgid "Memory usage in PHP"
|
1719 |
+
msgstr "Využití paměti v PHP"
|
1720 |
+
|
1721 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:26
|
1722 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:37
|
1723 |
+
msgid "Byte"
|
1724 |
+
msgstr "Bytů"
|
1725 |
+
|
1726 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:33
|
1727 |
+
msgid "Last Overview page memory usage"
|
1728 |
+
msgstr "Poslední Přehled využití strana paměti"
|
1729 |
+
|
1730 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:38
|
1731 |
+
msgid "Memory usage in the overview page"
|
1732 |
+
msgstr "Využití paměti na přehledové stránce"
|
1733 |
+
|
1734 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:44
|
1735 |
+
msgid "PHP Memory Limit"
|
1736 |
+
msgstr "PHP Paměť Limit"
|
1737 |
+
|
1738 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:49
|
1739 |
+
msgid "The memory limit a script is allowed to consume, set in php.ini."
|
1740 |
+
msgstr "Limit paměti skriptu je dovoleno konzumovat, v php.ini."
|
1741 |
+
|
1742 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:55
|
1743 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:66
|
1744 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:77
|
1745 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:88
|
1746 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:99
|
1747 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:110
|
1748 |
+
msgid "Number of rows in the %s table"
|
1749 |
+
msgstr "Počet řádků v tabulce %s"
|
1750 |
+
|
1751 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:59
|
1752 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:70
|
1753 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:81
|
1754 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:92
|
1755 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:103
|
1756 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:114
|
1757 |
+
msgid "Row"
|
1758 |
+
msgstr "Řádek"
|
1759 |
|
1760 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:60
|
1761 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:71
|
1762 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:82
|
1763 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:93
|
1764 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:104
|
1765 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:115
|
1766 |
+
msgid "Number of rows"
|
1767 |
+
msgstr "Počet řádků"
|
1768 |
+
|
1769 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:120
|
1770 |
msgid "Version Info"
|
1771 |
msgstr "Verze info"
|
1772 |
|
1773 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:125
|
1774 |
msgid "WP Statistics Version"
|
1775 |
msgstr "WP Statistics Verze"
|
1776 |
|
1777 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:130
|
1778 |
msgid "The WP Statistics version you are running."
|
1779 |
msgstr "Používáte verzi WP Statistics."
|
1780 |
|
1781 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:136
|
1782 |
msgid "PHP Version"
|
1783 |
msgstr "PHP Verze"
|
1784 |
|
1785 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:141
|
1786 |
msgid "The PHP version you are running."
|
1787 |
msgstr "PHP verze kterou používáte."
|
1788 |
|
1789 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:147
|
1790 |
+
msgid "PHP Safe Mode"
|
1791 |
+
msgstr "PHP Bezpečný mód"
|
1792 |
+
|
1793 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:152
|
1794 |
+
msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
|
1795 |
+
msgstr "Je PHP nouzovém režimu aktivní. GeoIP kód není podporován v nouzovém režimu."
|
1796 |
+
|
1797 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:158
|
1798 |
msgid "jQuery Version"
|
1799 |
msgstr "jQuery Verze"
|
1800 |
|
1801 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:163
|
1802 |
msgid "The jQuery version you are running."
|
1803 |
msgstr " Query verze kterou používáte."
|
1804 |
|
1805 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:169
|
1806 |
+
msgid "cURL Version"
|
1807 |
+
msgstr "cURL Verze"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1808 |
|
1809 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:173
|
1810 |
+
msgid "cURL not installed"
|
1811 |
+
msgstr "cURL není instalováno"
|
1812 |
|
1813 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:174
|
1814 |
+
msgid "The PHP cURL Extension version you are running. cURL is required for the GeoIP code, if it is not installed GeoIP will be disabled."
|
1815 |
+
msgstr "PHP cURL Extension verze kterou používáte. cURL je požadováno pro GeoIP kód, jestliže neni instalování GeoIP bude vypnuté."
|
1816 |
|
1817 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:180
|
1818 |
+
msgid "BC Math"
|
1819 |
+
msgstr "BC Math"
|
|
|
|
|
|
|
|
|
1820 |
|
1821 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:184
|
1822 |
+
msgid "Installed"
|
1823 |
+
msgstr "Instalováno"
|
1824 |
|
1825 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:184
|
1826 |
+
msgid "Not installed"
|
1827 |
+
msgstr "Neinstalováno"
|
|
|
|
|
1828 |
|
1829 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:185
|
1830 |
+
msgid "If the PHP BC Math Extension is installed. BC Math is no longer required for the GeoIP code and is listed here only for historical reasons."
|
1831 |
+
msgstr "Pokud je nainstalováno rozšíření PHP BC Math. BCMath již není zapotřebí pro kód GeoIP a je zde uveden pouze z historických důvodů."
|
1832 |
|
1833 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:190
|
1834 |
+
msgid "File Info"
|
1835 |
+
msgstr "Informace o souboru"
|
1836 |
|
1837 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:195
|
1838 |
+
msgid "GeoIP Database"
|
1839 |
+
msgstr "GeoIP databáze"
|
1840 |
|
1841 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:204
|
1842 |
+
msgid "Database file does not exist."
|
1843 |
+
msgstr "Databáze neexistuje"
|
1844 |
|
1845 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:206
|
1846 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:225
|
1847 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:244
|
1848 |
+
msgid ", created on "
|
1849 |
+
msgstr ", na "
|
1850 |
|
1851 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:208
|
1852 |
+
msgid "The file size and date of the GeoIP database."
|
1853 |
+
msgstr "Velikost souboru a datum GeoIP databáze."
|
1854 |
|
1855 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:214
|
1856 |
+
msgid "browscap.ini File"
|
1857 |
+
msgstr "Soubor Browscap.ini"
|
1858 |
|
1859 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:223
|
1860 |
+
msgid "browscap.ini file does not exist."
|
1861 |
+
msgstr "Soubor Browscap.ini neexistuje."
|
1862 |
|
1863 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:227
|
1864 |
+
msgid "The file size and date of the browscap.ini file."
|
1865 |
+
msgstr "Velikost souboru a datum souboru browscap.ini."
|
1866 |
|
1867 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:233
|
1868 |
+
msgid "browscap Cache File"
|
1869 |
+
msgstr "Browscap soubor mezipaměti"
|
|
|
1870 |
|
1871 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:242
|
1872 |
+
msgid "browscap cache file does not exist."
|
1873 |
+
msgstr "Browscap cache soubor neexistuje."
|
|
|
1874 |
|
1875 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:246
|
1876 |
+
msgid "The file size and date of the browscap cache file."
|
1877 |
+
msgstr "Velikost souboru a datum tohoto souboru browscap."
|
|
|
1878 |
|
1879 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:251
|
1880 |
+
msgid "Client Info"
|
1881 |
+
msgstr "Klient Info"
|
|
|
1882 |
|
1883 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:256
|
1884 |
+
msgid "Client IP"
|
1885 |
+
msgstr "Klient IP"
|
|
|
1886 |
|
1887 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:261
|
1888 |
+
msgid "The client IP address."
|
1889 |
+
msgstr "Klientovo IP adresa"
|
|
|
1890 |
|
1891 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:267
|
1892 |
+
msgid "User Agent"
|
1893 |
+
msgstr "Uživatelský agent"
|
|
|
1894 |
|
1895 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:272
|
1896 |
+
msgid "The client user agent string."
|
1897 |
+
msgstr "Řetězec agenta uživatele klienta."
|
|
|
1898 |
|
1899 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:278
|
1900 |
+
msgid "Browser"
|
1901 |
+
msgstr "Browser"
|
1902 |
|
1903 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:285
|
1904 |
+
msgid "The detected client browser."
|
1905 |
+
msgstr "Zjištěna Prohlížeč klienta."
|
|
|
|
|
|
|
1906 |
|
1907 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:296
|
1908 |
+
msgid "The detected client browser version."
|
1909 |
+
msgstr "Zjištěna verze klienta prohlížeče."
|
|
|
1910 |
|
1911 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:307
|
1912 |
+
msgid "The detected client platform."
|
1913 |
+
msgstr "Zjištěna Klient platformu."
|
1914 |
|
1915 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:4
|
1916 |
+
msgid "This will replace all IP addresses in the database with hash values and cannot be undo, are you sure?"
|
1917 |
+
msgstr "To nahradí všechny IP adresy v databázi hodnoty hash a nemůže být zpět, jste si jisti?"
|
1918 |
|
1919 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:16
|
1920 |
+
msgid "GeoIP Options"
|
1921 |
+
msgstr "GeoIP Vlastnosti"
|
1922 |
|
1923 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:26
|
1924 |
+
msgid "Updates any unknown location data in the database, this may take a while"
|
1925 |
+
msgstr "Aktualizuje všechny neznámé lokalizační údaje v databázi, to může chvíli trvat"
|
1926 |
|
1927 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:31
|
1928 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:66
|
1929 |
+
msgid "IP Addresses"
|
1930 |
+
msgstr "Adresy IP"
|
1931 |
|
1932 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:36
|
1933 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:71
|
1934 |
+
msgid "Hash IP Addresses"
|
1935 |
+
msgstr "Algoritmus hash IP adresy"
|
1936 |
|
1937 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:41
|
1938 |
+
msgid "Replace IP addresses in the database with hash values, you will not be able to recover the IP addresses in the future to populate location information afterwards and this may take a while"
|
1939 |
+
msgstr "Nahradit hodnoty hash, adresy IP v databázi nebude možné obnovit adresy IP v budoucnu k vyplnění informací o umístění později a to může chvíli trvat"
|
1940 |
|
1941 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:43
|
1942 |
+
msgid "IP Addresses replaced with hash values."
|
1943 |
+
msgstr "IP adresy nahrazeny hodnoty hash."
|
1944 |
|
1945 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:51
|
1946 |
+
msgid "Install routine complete."
|
1947 |
+
msgstr "Instalujte kompletní rutina."
|
|
|
1948 |
|
1949 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:146
|
1950 |
+
msgid "Resources/Information"
|
1951 |
+
msgstr "Zdroje/Informace"
|
1952 |
|
1953 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:148
|
1954 |
+
msgid "Purging"
|
1955 |
+
msgstr "Pročištění"
|
1956 |
|
1957 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:149
|
1958 |
+
msgid "Database"
|
1959 |
+
msgstr "Databáze"
|
1960 |
|
1961 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:150
|
1962 |
+
msgid "Updates"
|
1963 |
+
msgstr "Aktualizace"
|
1964 |
|
1965 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:151
|
1966 |
+
msgid "Historical"
|
1967 |
+
msgstr "Historický"
|
1968 |
|
1969 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:8
|
1970 |
+
msgid "WP Statistics V%s"
|
1971 |
+
msgstr "WP Statistiky V%s"
|
1972 |
|
1973 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:20
|
1974 |
+
msgid "Visit Us Online"
|
1975 |
+
msgstr "Navštivte nás Online"
|
1976 |
|
1977 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:24
|
1978 |
+
msgid "Come visit our great new %s and keep up to date on the latest news about WP Statistics."
|
1979 |
+
msgstr "Přijďte navštívit naše skvělé nové %s a aktualizuje na nejnovější zprávy o WP Statistics."
|
1980 |
|
1981 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:24
|
1982 |
+
msgid "website"
|
1983 |
+
msgstr "webové stránky"
|
1984 |
|
1985 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:28
|
1986 |
+
msgid "Rate and Review at WordPress.org"
|
1987 |
+
msgstr "Ohodnoť a prohlédni WordPress.org"
|
|
|
1988 |
|
1989 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:32
|
1990 |
+
msgid "Thanks for installing WP Statistics, we encourage you to submit a "
|
1991 |
+
msgstr "Děkujeme za instalaci WP Stastiky, doporučujeme ti zaslat"
|
|
|
|
|
|
|
1992 |
|
1993 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:32
|
1994 |
+
msgid "rating and review"
|
1995 |
+
msgstr "Hodnocení a recenze"
|
1996 |
|
1997 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:32
|
1998 |
+
msgid "over at WordPress.org. Your feedback is greatly appreciated!"
|
1999 |
+
msgstr "více než na WordPress.org. Vaše zpětná vazba je velmi ceněn!"
|
2000 |
|
2001 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:36
|
2002 |
+
msgid "Translations"
|
2003 |
+
msgstr "Překlady"
|
|
|
|
|
|
|
|
|
2004 |
|
2005 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:40
|
2006 |
+
msgid "WP Statistics supports internationalization and we encourage our users to submit translations, please visit our %s to see the current status and %s if you would like to help."
|
2007 |
+
msgstr "WP Statistics podporuje internacionalizaci a doporučujeme našim uživatelům odeslat překlady, navštivte prosím naši %s Chcete-li zobrazit aktuální stav a %s, pokud byste chtěli pomoci."
|
|
|
|
|
2008 |
|
2009 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:40
|
2010 |
+
msgid "translation collaboration site"
|
2011 |
+
msgstr "Web pro spolupráci Překlad"
|
2012 |
|
2013 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:40
|
2014 |
+
msgid "drop us a line"
|
2015 |
+
msgstr "Podejte nám zprávu"
|
|
|
2016 |
|
2017 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:44
|
2018 |
+
msgid "Support"
|
2019 |
+
msgstr "Podpora"
|
2020 |
|
2021 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:49
|
2022 |
+
msgid "We're sorry you're having problem with WP Statistics and we're happy to help out. Here are a few things to do before contacting us:"
|
2023 |
+
msgstr "Omlouváme se, máte problémy s WP Statistics a my jsme rádi pomohli. Zde je pár věci na práci než se obrátíte na nás:"
|
|
|
|
|
|
|
|
|
2024 |
|
2025 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:52
|
2026 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:53
|
2027 |
+
msgid "Have you read the %s?"
|
2028 |
+
msgstr "Četli jste %s?"
|
|
|
|
|
|
|
2029 |
|
2030 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:52
|
2031 |
+
msgid "FAQs"
|
2032 |
+
msgstr "Nejčastější dotazy"
|
|
|
2033 |
|
2034 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:53
|
2035 |
+
msgid "manual"
|
2036 |
+
msgstr "manuál"
|
2037 |
|
2038 |
+
#: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:54
|
2039 |
+
msgid "Have you search the %s for a similar issue?"
|
2040 |
+
msgstr "Už jste Hledat %s pro podobný problém?"
|
2041 |
|
2042 |
+
#: F
|
|
|
|