WP Statistics - Version 8.8

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 Icon 128x128 WP Statistics
Version 8.8
Comparing to
See all releases

Code changes from version 8.7.2 to 8.8

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
- if( !isset( $ip_arr[1] ) ) { $ip_arr[1] = 0; }
 
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
- // Ignore more than one hit per second.
245
- if( $this->result->last_visit != $this->Current_Date('Y-m-d H:i:s') ) {
 
 
 
246
 
247
- // If we're a returning visitor, update the current record in the database, otherwise, create a new one.
248
- if( $this->result->last_counter != $this->Current_Date('Y-m-d') ) {
249
- // 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
250
- // for this IP address we want to do an "INSERT ... ON DUPLICATE KEY" which WordPress doesn't support.
251
- $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 );
252
-
253
- $this->db->query( $sqlstring );
254
- } else {
255
-
256
- $this->db->update(
257
- $this->tb_prefix . "statistics_visit",
258
- array(
259
- 'last_visit' => $this->Current_Date(),
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
- // Now get the location information from the MaxMind database.
19
- try
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
- // Store the location in the protected $location variable from the parent class.
42
- $this->location = $location;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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=wps_referers_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_referers_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,7 +106,7 @@
106
  $i++;
107
 
108
  echo "<div class='log-item'>";
109
- echo "<div class='log-referred'>{$i} - <a href='?page=wps_referers_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>";
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=wps_referers_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,7 +51,7 @@
51
  foreach( $get_urls as $items => $value) {
52
 
53
  echo "<tr>";
54
- echo "<td><a href='?page=wps_referers_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
  }
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://teamwork.wp-parsi.com/projects/wp-statistics" target="_blank">' . __('translation collaboration site', 'wp_statistics') . '</a>', '<a href="http://wp-statistics.com/contact/" target="_blank">' . __( 'drop us a line', 'wp_statistics') . '</a>');?></td>
41
  </tr>
42
 
43
  <tr valign="top">
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("wps_geoip","wps_update_geoip","wps_schedule_geoip","wps_auto_pop");
 
 
 
 
 
 
 
 
 
 
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
- <?php
 
 
 
 
 
 
 
 
 
 
 
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
- if(get_magic_quotes_gpc())
27
- $value = stripslashes($value);
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) 2014 WP Statistics
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: WP Statistics 8.7\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-statistics\n"
7
- "POT-Creation-Date: 2014-12-26 16:38:23+00:00\n"
 
 
 
 
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: 2014-12-26 11:47-0500\n"
12
- "Last-Translator: Core Team <admin@wp-statistics.com>\n"
13
- "Language-Team: Core Team <admin@wp-statistics.com>\n"
14
- "Language: en\n"
15
- "X-Generator: Poedit 1.7.1\n"
16
-
17
- #: dashboard.php:55
 
 
18
  msgid "Quick Stats"
19
  msgstr ""
20
 
21
- #: dashboard.php:56 includes/log/widgets/browsers.php:54
 
22
  msgid "Top 10 Browsers"
23
  msgstr ""
24
 
25
- #: dashboard.php:57 includes/log/widgets/countries.php:11
26
- #: includes/settings/tabs/wps-overview-display.php:27
 
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 editor.php:46 includes/log/hit-statistics.php:8
35
- #: includes/log/widgets/hits.php:8
 
 
36
  msgid "Hit Statistics"
37
  msgstr ""
38
 
39
- #: dashboard.php:60 includes/log/widgets/pages.php:11
 
40
  msgid "Top 10 Pages"
41
  msgstr ""
42
 
43
- #: dashboard.php:61 includes/log/last-visitor.php:30
44
- #: includes/log/widgets/recent.php:8
45
- #: includes/settings/tabs/wps-overview-display.php:39
 
46
  msgid "Recent Visitors"
47
  msgstr ""
48
 
49
- #: dashboard.php:62 includes/log/top-referring.php:27
50
- #: includes/log/top-referring.php:42 includes/log/widgets/referring.php:13
51
- #: includes/settings/tabs/wps-overview-display.php:26
 
 
52
  msgid "Top Referring Sites"
53
  msgstr ""
54
 
55
- #: dashboard.php:63 includes/log/widgets/search.php:7
56
- #: includes/log/widgets/summary.php:74
 
57
  msgid "Search Engine Referrals"
58
  msgstr ""
59
 
60
- #: dashboard.php:64 includes/log/widgets/summary.php:8
 
61
  msgid "Summary"
62
  msgstr ""
63
 
64
- #: dashboard.php:65 includes/log/last-search.php:30
65
- #: includes/log/widgets/words.php:8
66
- #: includes/settings/tabs/wps-overview-display.php:37
 
67
  msgid "Latest Search Words"
68
  msgstr ""
69
 
70
- #: dashboard.php:66 includes/log/widgets/top.visitors.php:8
71
- #: includes/settings/tabs/wps-overview-display.php:35
 
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 includes/functions/purge.php:39
98
- #: includes/functions/purge.php:50 includes/functions/purge.php:83
 
 
 
99
  msgid "%s data older than %s days purged successfully."
100
  msgstr ""
101
 
102
- #: includes/functions/purge.php:23 includes/functions/purge.php:41
103
- #: includes/functions/purge.php:52 includes/functions/purge.php:85
 
 
 
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 includes/log/all-browsers.php:98
120
- #: includes/log/all-browsers.php:233 includes/log/exclusions.php:74
121
- #: includes/log/hit-statistics.php:26 includes/log/last-search.php:61
122
- #: includes/log/last-visitor.php:60 includes/log/online.php:17
123
- #: includes/log/page-statistics.php:47 includes/log/search-statistics.php:29
124
- #: includes/log/top-pages.php:19 includes/log/top-pages.php:137
125
- #: includes/log/top-referring.php:38 includes/log/widgets/about.php:7
126
- #: includes/log/widgets/browsers.php:6 includes/log/widgets/countries.php:9
127
- #: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:7
128
- #: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:9
129
- #: includes/log/widgets/recent.php:6 includes/log/widgets/referring.php:11
130
- #: includes/log/widgets/search.php:6 includes/log/widgets/summary.php:7
131
- #: includes/log/widgets/top.visitors.php:7 includes/log/widgets/words.php:6
 
 
 
 
 
 
 
 
 
 
 
 
 
132
  msgid "Click to toggle"
133
  msgstr ""
134
 
135
- #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:7
136
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:274
 
 
 
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 includes/log/widgets/top.visitors.php:34
145
- #: includes/optimization/tabs/wps-optimization-resources.php:302
 
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 includes/log/hit-statistics.php:12
168
- #: includes/log/page-statistics.php:33 includes/log/search-statistics.php:15
 
 
169
  msgid "10 Days"
170
  msgstr ""
171
 
172
- #: includes/log/exclusions.php:58 includes/log/hit-statistics.php:13
173
- #: includes/log/page-statistics.php:34 includes/log/search-statistics.php:16
 
 
174
  msgid "20 Days"
175
  msgstr ""
176
 
177
- #: includes/log/exclusions.php:59 includes/log/hit-statistics.php:14
178
- #: includes/log/page-statistics.php:35 includes/log/search-statistics.php:17
 
 
179
  msgid "30 Days"
180
  msgstr ""
181
 
182
- #: includes/log/exclusions.php:60 includes/log/hit-statistics.php:15
183
- #: includes/log/page-statistics.php:36 includes/log/search-statistics.php:18
 
 
184
  msgid "2 Months"
185
  msgstr ""
186
 
187
- #: includes/log/exclusions.php:61 includes/log/hit-statistics.php:16
188
- #: includes/log/page-statistics.php:37 includes/log/search-statistics.php:19
 
 
189
  msgid "3 Months"
190
  msgstr ""
191
 
192
- #: includes/log/exclusions.php:62 includes/log/hit-statistics.php:17
193
- #: includes/log/page-statistics.php:38 includes/log/search-statistics.php:20
 
 
194
  msgid "6 Months"
195
  msgstr ""
196
 
197
- #: includes/log/exclusions.php:63 includes/log/hit-statistics.php:18
198
- #: includes/log/page-statistics.php:39 includes/log/search-statistics.php:21
 
 
199
  msgid "9 Months"
200
  msgstr ""
201
 
202
- #: includes/log/exclusions.php:64 includes/log/hit-statistics.php:19
203
- #: includes/log/page-statistics.php:40 includes/log/search-statistics.php:22
 
 
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 includes/log/hit-statistics.php:60
220
- #: includes/log/search-statistics.php:71 includes/log/widgets/hits.php:51
221
- #: includes/log/widgets/search.php:55
222
- #: includes/optimization/tabs/wps-optimization-purging.php:151
 
 
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 includes/log/widgets/hits.php:51
 
235
  msgid "Hits in the last"
236
  msgstr ""
237
 
238
- #: includes/log/hit-statistics.php:81 includes/log/widgets/hits.php:72
 
239
  msgid "Number of visits and visitors"
240
  msgstr ""
241
 
242
- #: includes/log/hit-statistics.php:95 includes/log/widgets/hits.php:86
243
- #: includes/log/widgets/summary.php:30
 
244
  msgid "Visit"
245
  msgstr ""
246
 
247
- #: includes/log/hit-statistics.php:95 includes/log/widgets/hits.php:86
248
- #: includes/log/widgets/summary.php:29
 
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 includes/log/last-visitor.php:97
257
- #: includes/log/online.php:48 includes/log/widgets/google.map.php:84
258
- #: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:30
259
- #: includes/log/widgets/words.php:32
 
 
 
260
  msgid "#hash#"
261
  msgstr ""
262
 
263
- #: includes/log/last-search.php:102 includes/log/last-visitor.php:102
264
- #: includes/log/online.php:53 includes/log/top-referring.php:71
265
- #: includes/log/widgets/recent.php:35 includes/log/widgets/words.php:39
266
- #: includes/settings/tabs/wps-overview-display.php:33
267
- #: includes/settings/tabs/wps-overview-display.php:113
 
 
 
268
  msgid "Map"
269
  msgstr ""
270
 
271
- #: includes/log/last-search.php:139 includes/log/last-visitor.php:135
272
- #: includes/log/online.php:105 includes/log/top-pages.php:187
273
- #: includes/log/top-referring.php:125
 
 
274
  msgid "Page"
275
  msgstr ""
276
 
277
- #: includes/log/last-search.php:139 includes/log/last-visitor.php:135
278
- #: includes/log/online.php:105 includes/log/top-pages.php:187
279
- #: includes/log/top-referring.php:125
 
 
280
  msgid "From"
281
  msgstr ""
282
 
283
- #: includes/log/last-visitor.php:32 includes/log/top-referring.php:29
284
- #: includes/optimization/tabs/wps-optimization-purging.php:135 widget.php:294
 
 
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 includes/log/online.php:18
 
297
  msgid "Online Users"
298
  msgstr ""
299
 
300
- #: includes/log/online.php:73
301
  msgid "Online for "
302
  msgstr ""
303
 
304
- #: includes/log/page-statistics.php:29
 
 
 
 
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
- #: includes/log/search-statistics.php:11 includes/log/search-statistics.php:30
 
313
  msgid "Search Engine Referral Statistics"
314
  msgstr ""
315
 
316
- #: includes/log/search-statistics.php:71 includes/log/widgets/search.php:55
 
317
  msgid "Search engine referrals in the last"
318
  msgstr ""
319
 
320
- #: includes/log/search-statistics.php:92 includes/log/widgets/search.php:76
 
321
  msgid "Number of referrals"
322
  msgstr ""
323
 
324
- #: includes/log/search-statistics.php:106 includes/log/widgets/search.php:90
325
- #: includes/log/widgets/summary.php:64 includes/log/widgets/summary.php:104
 
 
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 includes/log/widgets/countries.php:30
334
- #: includes/log/widgets/top.visitors.php:27
 
335
  msgid "Rank"
336
  msgstr ""
337
 
338
- #: includes/log/top-countries.php:21 includes/log/widgets/countries.php:31
339
- #: includes/log/widgets/top.visitors.php:29
 
340
  msgid "Flag"
341
  msgstr ""
342
 
343
- #: includes/log/top-countries.php:22 includes/log/widgets/countries.php:32
344
- #: includes/log/widgets/top.visitors.php:30
 
345
  msgid "Country"
346
  msgstr ""
347
 
348
- #: includes/log/top-countries.php:23 includes/log/widgets/countries.php:33
 
349
  msgid "Visitor Count"
350
  msgstr ""
351
 
352
- #: includes/log/top-pages.php:13 includes/log/top-pages.php:138
 
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 includes/log/widgets/page.php:58
 
365
  msgid "Number of Hits"
366
  msgstr ""
367
 
368
- #: includes/log/top-pages.php:166 includes/log/widgets/pages.php:32
 
369
  msgid "No page title found"
370
  msgstr ""
371
 
372
- #: includes/log/top-pages.php:169 includes/log/widgets/pages.php:35
373
- #: includes/optimization/tabs/wps-optimization-historical.php:37
374
- #: includes/settings/tabs/wps-general.php:122
375
- #: includes/settings/tabs/wps-general.php:127
 
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 includes/log/widgets/referring.php:30
 
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 includes/settings/tabs/wps-about.php:12
 
 
412
  msgid ""
413
  "This product includes GeoLite2 data created by MaxMind, available from %s."
414
  msgstr ""
415
 
416
- #: includes/log/widgets/browsers.php:7 includes/log/widgets/countries.php:11
417
- #: includes/log/widgets/hits.php:8 includes/log/widgets/pages.php:11
418
- #: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:13
419
- #: includes/log/widgets/search.php:7 includes/log/widgets/top.visitors.php:8
420
- #: includes/log/widgets/words.php:8
 
 
 
 
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 includes/log/widgets/jqv.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 includes/log/widgets/summary.php:79
 
441
  msgid "Today"
442
  msgstr ""
443
 
444
- #: includes/log/widgets/summary.php:40 includes/log/widgets/summary.php:80
 
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 wp-statistics.php:201
481
- #: wp-statistics.php:279
 
 
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 includes/optimization/export.php:5
501
- #: includes/optimization/purge-data.php:6
502
- #: includes/optimization/wps-optimization.php:6 manual/manual.php:5
 
 
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 includes/optimization/export.php:57
 
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:276
 
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 wp-statistics.php:286
 
 
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 wp-statistics.php:278
 
 
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-browscap.php:22
 
 
 
 
 
 
 
 
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:37
1409
- #: includes/settings/tabs/wps-geoip.php:61
1410
- #: includes/settings/tabs/wps-geoip.php:94
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:50
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:64
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 wp-statistics.php:281
 
 
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:17
1618
  msgid "GeoIP settings"
1619
  msgstr ""
1620
 
1621
- #: includes/settings/tabs/wps-geoip.php:22
 
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:32
1628
  msgid "GeoIP collection"
1629
  msgstr ""
1630
 
1631
- #: includes/settings/tabs/wps-geoip.php:38
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:44
1638
  msgid "Update GeoIP Info"
1639
  msgstr ""
1640
 
1641
- #: includes/settings/tabs/wps-geoip.php:49
1642
  msgid "Download GeoIP Database"
1643
  msgstr ""
1644
 
1645
- #: includes/settings/tabs/wps-geoip.php:56
1646
  msgid "Schedule monthly update of GeoIP DB"
1647
  msgstr ""
1648
 
1649
- #: includes/settings/tabs/wps-geoip.php:82
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:83
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:89
1663
  msgid "Populate missing GeoIP after update of GeoIP DB"
1664
  msgstr ""
1665
 
1666
- #: includes/settings/tabs/wps-geoip.php:95
1667
  msgid "Update any missing GeoIP data after downloading a new database."
1668
  msgstr ""
1669
 
1670
- #: includes/settings/tabs/wps-geoip.php:106
 
 
 
 
 
 
 
 
 
 
 
 
1671
  msgid "GeoIP collection is disabled due to the following reasons:"
1672
  msgstr ""
1673
 
1674
- #: includes/settings/tabs/wps-geoip.php:109
 
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:114
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:120
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:126
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 schedule.php:152
 
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 widget.php:38
1834
- #: widget.php:245 wp-statistics.php:337
 
 
1835
  msgid "User Online"
1836
  msgstr ""
1837
 
1838
- #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
1839
- #: widget.php:251
 
1840
  msgid "Today Visitor"
1841
  msgstr ""
1842
 
1843
- #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
1844
- #: widget.php:248
 
1845
  msgid "Today Visit"
1846
  msgstr ""
1847
 
1848
- #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
1849
- #: widget.php:257
 
1850
  msgid "Yesterday Visitor"
1851
  msgstr ""
1852
 
1853
- #: includes/settings/tabs/wps-notifications.php:192 widget.php:59
 
1854
  msgid "Yesterday Visit"
1855
  msgstr ""
1856
 
1857
- #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
1858
- #: widget.php:272
 
1859
  msgid "Total Visitor"
1860
  msgstr ""
1861
 
1862
- #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
1863
- #: widget.php:269
 
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
- #: widget.php:14 wp-statistics.php:270
 
 
2104
  msgid "Statistics"
2105
  msgstr ""
2106
 
2107
- #: widget.php:15
2108
  msgid "Show site stats in sidebar."
2109
  msgstr ""
2110
 
2111
- #: widget.php:73 widget.php:260
 
2112
  msgid "Week Visit"
2113
  msgstr ""
2114
 
2115
- #: widget.php:80 widget.php:263
 
2116
  msgid "Month Visit"
2117
  msgstr ""
2118
 
2119
- #: widget.php:87 widget.php:266
 
2120
  msgid "Years Visit"
2121
  msgstr ""
2122
 
2123
- #: widget.php:108 widget.php:275
 
2124
  msgid "Total Page Views"
2125
  msgstr ""
2126
 
2127
- #: widget.php:116
2128
  msgid "Search Engine referred"
2129
  msgstr ""
2130
 
2131
- #: widget.php:123 widget.php:298
 
2132
  msgid "Total Posts"
2133
  msgstr ""
2134
 
2135
- #: widget.php:130 widget.php:301
 
2136
  msgid "Total Pages"
2137
  msgstr ""
2138
 
2139
- #: widget.php:137 widget.php:304
 
2140
  msgid "Total Comments"
2141
  msgstr ""
2142
 
2143
- #: widget.php:144 widget.php:307
 
2144
  msgid "Total Spams"
2145
  msgstr ""
2146
 
2147
- #: widget.php:151 widget.php:310
 
2148
  msgid "Total Users"
2149
  msgstr ""
2150
 
2151
- #: widget.php:158 widget.php:313
 
2152
  msgid "Average Posts"
2153
  msgstr ""
2154
 
2155
- #: widget.php:165 widget.php:316
 
2156
  msgid "Average Comments"
2157
  msgstr ""
2158
 
2159
- #: widget.php:172 widget.php:319
 
2160
  msgid "Average Users"
2161
  msgstr ""
2162
 
2163
- #: widget.php:179 widget.php:322
 
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
- #: widget.php:254 wp-statistics.php:362
 
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
- #. Plugin Name of the plugin/theme
2206
- #: wp-statistics.php:53
2207
  msgid "WP Statistics"
2208
  msgstr ""
2209
 
2210
- #. Description of the plugin/theme
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-statistics.php:97 wp-statistics.php:100 wp-statistics.php:103
 
 
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.php:177 wp-statistics.php:289
 
 
2246
  msgid "Settings"
2247
  msgstr ""
2248
 
2249
- #: wp-statistics.php:189
2250
  msgid "Click here to visit the plugin on WordPress.org"
2251
  msgstr ""
2252
 
2253
- #: wp-statistics.php:189
2254
  msgid "Visit WordPress.org page"
2255
  msgstr ""
2256
 
2257
- #: wp-statistics.php:192
2258
  msgid "Click here to rate and review this plugin on WordPress.org"
2259
  msgstr ""
2260
 
2261
- #: wp-statistics.php:192
2262
  msgid "Rate this plugin"
2263
  msgstr ""
2264
 
2265
- #: wp-statistics.php:236
2266
  msgid "WP Statistics - Hits"
2267
  msgstr ""
2268
 
2269
- #: wp-statistics.php:273
 
 
2270
  msgid "Overview"
2271
  msgstr ""
2272
 
2273
- #: wp-statistics.php:280
 
2274
  msgid "Online"
2275
  msgstr ""
2276
 
2277
- #: wp-statistics.php:282
2278
- msgid "Referers"
 
2279
  msgstr ""
2280
 
2281
- #: wp-statistics.php:283
 
2282
  msgid "Searches"
2283
  msgstr ""
2284
 
2285
- #: wp-statistics.php:284
 
2286
  msgid "Search Words"
2287
  msgstr ""
2288
 
2289
- #: wp-statistics.php:285
 
2290
  msgid "Top Visitors Today"
2291
  msgstr ""
2292
 
2293
- #: wp-statistics.php:288
 
2294
  msgid "Optimization"
2295
  msgstr ""
2296
 
2297
- #: wp-statistics.php:293
 
2298
  msgid "Manual"
2299
  msgstr ""
2300
 
2301
- #: wp-statistics.php:344
 
 
 
 
 
 
 
 
2302
  msgid "Today visitor"
2303
  msgstr ""
2304
 
2305
- #: wp-statistics.php:350
2306
  msgid "Today visit"
2307
  msgstr ""
2308
 
2309
- #: wp-statistics.php:356
2310
  msgid "Yesterday visitor"
2311
  msgstr ""
2312
 
2313
- #: wp-statistics.php:368
2314
  msgid "View Stats"
2315
  msgstr ""
2316
 
2317
- #: wp-statistics.php:392
2318
  msgid "Download ODF file"
2319
  msgstr ""
2320
 
2321
- #: wp-statistics.php:393
2322
  msgid "Download HTML file"
2323
  msgstr ""
2324
 
2325
- #: wp-statistics.php:397
2326
  msgid "Manual file not found."
2327
  msgstr ""
2328
 
2329
- #: wp-statistics.php:482 wp-statistics.php:593 wp-statistics.php:627
 
 
2330
  msgid "You do not have sufficient permissions to access this page."
2331
  msgstr ""
2332
 
2333
- #: wp-statistics.php:495
 
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
- "Project-Id-Version: wp-statistics\n"
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
- "X-Poedit-KeywordsList: gettext;gettext_noop;_e;__\n"
14
- "X-Poedit-Basepath: F:\\Program Files\\xampp\\htdocs\\wordpress\\wp-content"
15
- "\\plugins\\wp-statistics\n"
16
- "X-Poedit-SourceCharset: utf-8\n"
17
- "X-Generator: Poedit 1.7.1\n"
18
- "X-Poedit-SearchPath-0: F:\\Program Files\\xampp\\htdocs\\wordpress\\wp-"
19
- "content\\plugins\\wp-statistics\n"
20
-
21
- #: dashboard.php:55
22
- msgid "Quick Stats"
23
- msgstr "إحصائيات سريعة"
 
 
 
 
 
 
24
 
25
- #: dashboard.php:56 includes/log/widgets/browsers.php:54
26
- msgid "Top 10 Browsers"
27
- msgstr "أفضل 10 متصفحات"
28
 
29
- #: dashboard.php:57 includes/log/widgets/countries.php:11
30
- #: includes/settings/tabs/wps-overview-display.php:27
31
- msgid "Top 10 Countries"
32
- msgstr "أعلى 10 دول"
33
 
34
- #: dashboard.php:58
35
- msgid "Today's Visitor Map"
36
- msgstr "خريطة زوار اليوم"
37
 
38
- #: dashboard.php:59 editor.php:46 includes/log/hit-statistics.php:8
39
- #: includes/log/widgets/hits.php:8
40
- msgid "Hit Statistics"
41
- msgstr "احصائية النقرات"
42
 
43
- #: dashboard.php:60 includes/log/widgets/pages.php:11
44
- msgid "Top 10 Pages"
45
- msgstr "أفضل 10 صفحات"
46
 
47
- #: dashboard.php:61 includes/log/last-visitor.php:30
48
- #: includes/log/widgets/recent.php:8
49
- #: includes/settings/tabs/wps-overview-display.php:39
50
- msgid "Recent Visitors"
51
- msgstr "الزيارات الأخيرة"
52
 
53
- #: dashboard.php:62 includes/log/top-referring.php:27
54
- #: includes/log/top-referring.php:42 includes/log/widgets/referring.php:13
55
- #: includes/settings/tabs/wps-overview-display.php:26
56
- msgid "Top Referring Sites"
57
- msgstr "أعلى المواقع اشارة"
58
 
59
- #: dashboard.php:63 includes/log/widgets/search.php:7
60
- #: includes/log/widgets/summary.php:74
61
- msgid "Search Engine Referrals"
62
- msgstr "إحالات محرك البحث"
63
 
64
- #: dashboard.php:64 includes/log/widgets/summary.php:8
65
- msgid "Summary"
66
- msgstr "ملخص"
67
 
68
- #: dashboard.php:65 includes/log/last-search.php:30
69
- #: includes/log/widgets/words.php:8
70
- #: includes/settings/tabs/wps-overview-display.php:37
71
- msgid "Latest Search Words"
72
- msgstr "أحدث كلمات البحث"
 
73
 
74
- #: dashboard.php:66 includes/log/widgets/top.visitors.php:8
75
- #: includes/settings/tabs/wps-overview-display.php:35
76
- msgid "Top 10 Visitors Today"
77
- msgstr "أفضل 10 زوار اليوم"
78
 
79
- #: dashboard.php:97
80
- msgid "Please reload the dashboard to display the content of this widget."
81
- msgstr "يرجى تحميل لوحة المعلومات لعرض محتوى هذه القطعة."
82
 
83
- #: dashboard.php:138
84
- msgid "WP Statistics Overview"
85
- msgstr "نظرة عامة لإحصائيات ووردبريس"
86
 
87
- #: editor.php:63
88
- msgid "This post is not yet published."
89
- msgstr "لم يتم نشر هذا المقال حتى الآن."
90
 
91
- #: includes/functions/geoip-populate.php:26
92
- msgid ""
93
- "Unable to load the GeoIP database, make sure you have downloaded it in the "
94
- "settings page."
95
- msgstr ""
96
- "غير قادر على تحميل قاعدة البيانات GeoIP، تأكد من أنك قمت بتنزيلها في صفحة "
97
- "الإعدادات."
98
 
99
- #: includes/functions/geoip-populate.php:50
100
- msgid "Updated %s GeoIP records in the visitors database."
101
- msgstr "تحديث السجلات %s GeoIP في قاعدة بيانات الزوار."
102
 
103
- #: includes/functions/purge.php:21 includes/functions/purge.php:39
104
- #: includes/functions/purge.php:50 includes/functions/purge.php:83
105
- msgid "%s data older than %s days purged successfully."
106
- msgstr "البيانات %s مضى عليها أكثر من %s أيام طهرت فيه بنجاح."
107
 
108
- #: includes/functions/purge.php:23 includes/functions/purge.php:41
109
- #: includes/functions/purge.php:52 includes/functions/purge.php:85
110
- msgid "No records found to purge from %s!"
111
- msgstr "لا توجد سجلات للتخلص من %s!"
112
 
113
- #: includes/functions/purge.php:98
114
- msgid "Database pruned on"
115
- msgstr "قاعدة بيانات مجردة على"
116
 
117
- #: includes/functions/purge.php:103
118
- msgid "Please select a value over 30 days."
119
- msgstr "يرجى تحديد قيمة أكثر من 30 يوما."
120
 
121
- #: includes/log/all-browsers.php:8
122
- msgid "Browser Statistics"
123
- msgstr "إحصائيات المتصفح"
124
 
125
- #: includes/log/all-browsers.php:14 includes/log/all-browsers.php:98
126
- #: includes/log/all-browsers.php:233 includes/log/exclusions.php:74
127
- #: includes/log/hit-statistics.php:26 includes/log/last-search.php:61
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
- #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:7
142
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:274
143
- msgid "Browsers"
144
- msgstr "المتصفحات"
145
 
146
- #: includes/log/all-browsers.php:42
147
- msgid "Browsers by type"
148
- msgstr "حسب نوع المتصفحات"
149
 
150
- #: includes/log/all-browsers.php:99 includes/log/widgets/top.visitors.php:34
151
- #: includes/optimization/tabs/wps-optimization-resources.php:302
152
- msgid "Platform"
153
- msgstr "المنصة"
154
 
155
- #: includes/log/all-browsers.php:126
156
- msgid "Browsers by platform"
157
- msgstr "حسب نوع المنصة"
158
 
159
- #: includes/log/all-browsers.php:234
160
- msgid "%s Version"
161
- msgstr "الإصدار %s"
162
 
163
- #: includes/log/exclusions.php:8
164
- msgid ""
165
- "Attention: Exclusion are not currently set to be recorded, the results below "
166
- "may not reflect current statistics!"
167
- msgstr ""
168
- "تنبيه: لم يتم تعيين الاستثناءات حاليا ليتم تسجيلها، قد لا تستطيع عكس نتائج "
169
- "الإحصائيات الحالية أدناه!"
170
 
171
- #: includes/log/exclusions.php:54
172
- msgid "Exclusions Statistics"
173
- msgstr "استثناءات الاحصائيات"
174
 
175
- #: includes/log/exclusions.php:57 includes/log/hit-statistics.php:12
176
- #: includes/log/page-statistics.php:33 includes/log/search-statistics.php:15
177
- msgid "10 Days"
178
- msgstr "10 أيام"
179
 
180
- #: includes/log/exclusions.php:58 includes/log/hit-statistics.php:13
181
- #: includes/log/page-statistics.php:34 includes/log/search-statistics.php:16
182
- msgid "20 Days"
183
- msgstr "20 يوم"
184
 
185
- #: includes/log/exclusions.php:59 includes/log/hit-statistics.php:14
186
- #: includes/log/page-statistics.php:35 includes/log/search-statistics.php:17
187
- msgid "30 Days"
188
- msgstr "30 يو م"
189
 
190
- #: includes/log/exclusions.php:60 includes/log/hit-statistics.php:15
191
- #: includes/log/page-statistics.php:36 includes/log/search-statistics.php:18
192
- msgid "2 Months"
193
- msgstr "شهرين"
194
 
195
- #: includes/log/exclusions.php:61 includes/log/hit-statistics.php:16
196
- #: includes/log/page-statistics.php:37 includes/log/search-statistics.php:19
197
- msgid "3 Months"
198
- msgstr "3 أشهر"
199
 
200
- #: includes/log/exclusions.php:62 includes/log/hit-statistics.php:17
201
- #: includes/log/page-statistics.php:38 includes/log/search-statistics.php:20
202
- msgid "6 Months"
203
- msgstr "6 أشهر"
204
 
205
- #: includes/log/exclusions.php:63 includes/log/hit-statistics.php:18
206
- #: includes/log/page-statistics.php:39 includes/log/search-statistics.php:21
207
- msgid "9 Months"
208
- msgstr "9 أشهر"
209
 
210
- #: includes/log/exclusions.php:64 includes/log/hit-statistics.php:19
211
- #: includes/log/page-statistics.php:40 includes/log/search-statistics.php:22
212
- msgid "1 Year"
213
- msgstr "سنة"
214
 
215
- #: includes/log/exclusions.php:68
216
- msgid "Total Exclusions: %s"
217
- msgstr "مجموع الاستثناءات: %s"
218
 
219
- #: includes/log/exclusions.php:75
220
- msgid "Exclusions Statistical Chart"
221
- msgstr "الرسم البياني لإحصائيات الاستثناءات"
222
 
223
- #: includes/log/exclusions.php:97
224
- msgid "Excluded hits in the last"
225
- msgstr "استبعاد النقرات في الأخير"
226
 
227
- #: includes/log/exclusions.php:97 includes/log/hit-statistics.php:60
228
- #: includes/log/search-statistics.php:71 includes/log/widgets/hits.php:51
229
- #: includes/log/widgets/search.php:55
230
- #: includes/optimization/tabs/wps-optimization-purging.php:151
231
- msgid "days"
232
- msgstr "أيام"
233
 
234
- #: includes/log/exclusions.php:118
235
- msgid "Number of excluded hits"
236
- msgstr "عدد الزيارات المستبعدة"
237
 
238
- #: includes/log/hit-statistics.php:27
239
- msgid "Hits Statistics Chart"
240
- msgstr "الرسم البياني لاحصائيات النقرات"
241
 
242
- #: includes/log/hit-statistics.php:60 includes/log/widgets/hits.php:51
243
- msgid "Hits in the last"
244
- msgstr "آخر النقرات"
245
 
246
- #: includes/log/hit-statistics.php:81 includes/log/widgets/hits.php:72
247
- msgid "Number of visits and visitors"
248
- msgstr "عدد الزيارات والزوار"
249
 
250
- #: includes/log/hit-statistics.php:95 includes/log/widgets/hits.php:86
251
- #: includes/log/widgets/summary.php:30
252
- msgid "Visit"
253
- msgstr "زيارة"
254
 
255
- #: includes/log/hit-statistics.php:95 includes/log/widgets/hits.php:86
256
- #: includes/log/widgets/summary.php:29
257
- msgid "Visitor"
258
- msgstr "زائر"
259
 
260
- #: includes/log/last-search.php:62
261
- msgid "Latest Search Word Statistics"
262
- msgstr "أحصائيات أحدث كلمات البحث"
263
 
264
- #: includes/log/last-search.php:97 includes/log/last-visitor.php:97
265
- #: includes/log/online.php:48 includes/log/widgets/google.map.php:84
266
- #: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:30
267
- #: includes/log/widgets/words.php:32
268
- msgid "#hash#"
269
- msgstr "#hash#"
270
 
271
- #: includes/log/last-search.php:102 includes/log/last-visitor.php:102
272
- #: includes/log/online.php:53 includes/log/top-referring.php:71
273
- #: includes/log/widgets/recent.php:35 includes/log/widgets/words.php:39
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/log/last-search.php:139 includes/log/last-visitor.php:135
280
- #: includes/log/online.php:105 includes/log/top-pages.php:187
281
- #: includes/log/top-referring.php:125
282
- msgid "Page"
283
- msgstr "صفحة"
284
 
285
- #: includes/log/last-search.php:139 includes/log/last-visitor.php:135
286
- #: includes/log/online.php:105 includes/log/top-pages.php:187
287
- #: includes/log/top-referring.php:125
288
- msgid "From"
289
- msgstr "من"
290
 
291
- #: includes/log/last-visitor.php:32 includes/log/top-referring.php:29
292
- #: includes/optimization/tabs/wps-optimization-purging.php:135 widget.php:294
293
- msgid "All"
294
- msgstr "الكل"
295
 
296
- #: includes/log/last-visitor.php:62
297
- msgid "Search for"
298
- msgstr "البحث عن"
299
 
300
- #: includes/log/last-visitor.php:64
301
- msgid "Recent Visitor Statistics"
302
- msgstr "آخر إحصائيات الزوار"
303
 
304
- #: includes/log/online.php:11 includes/log/online.php:18
305
- msgid "Online Users"
306
- msgstr "المستخدمين على الانترنت"
307
 
308
- #: includes/log/online.php:73
309
- msgid "Online for "
310
- msgstr "متصل لـ"
311
 
312
- #: includes/log/page-statistics.php:29
313
- msgid "Page Trend for Post ID"
314
- msgstr "صفحة الأكثر رواجاً بمعرف المشاركة"
315
 
316
- #: includes/log/page-statistics.php:48
317
- msgid "Page Trend"
318
- msgstr "الصفحة الأكثر رواجاً"
319
 
320
- #: includes/log/search-statistics.php:11 includes/log/search-statistics.php:30
321
- msgid "Search Engine Referral Statistics"
322
- msgstr "إحصائيات مرجعية محرك البحث"
323
 
324
- #: includes/log/search-statistics.php:71 includes/log/widgets/search.php:55
325
- msgid "Search engine referrals in the last"
326
- msgstr "إحالات محرك البحث في الأخير"
327
 
328
- #: includes/log/search-statistics.php:92 includes/log/widgets/search.php:76
329
- msgid "Number of referrals"
330
- msgstr "عدد الإحالات"
 
331
 
332
- #: includes/log/search-statistics.php:106 includes/log/widgets/search.php:90
333
- #: includes/log/widgets/summary.php:64 includes/log/widgets/summary.php:104
334
- msgid "Total"
335
- msgstr "المجموع"
336
 
337
- #: includes/log/top-countries.php:11
338
- msgid "Top Countries"
339
- msgstr "أفضل الدول"
340
 
341
- #: includes/log/top-countries.php:20 includes/log/widgets/countries.php:30
342
- #: includes/log/widgets/top.visitors.php:27
343
- msgid "Rank"
344
- msgstr "الترتيب"
345
 
346
- #: includes/log/top-countries.php:21 includes/log/widgets/countries.php:31
347
- #: includes/log/widgets/top.visitors.php:29
348
- msgid "Flag"
349
- msgstr "العلم"
350
 
351
- #: includes/log/top-countries.php:22 includes/log/widgets/countries.php:32
352
- #: includes/log/widgets/top.visitors.php:30
353
- msgid "Country"
354
- msgstr "الدولة"
355
 
356
- #: includes/log/top-countries.php:23 includes/log/widgets/countries.php:33
357
- msgid "Visitor Count"
358
- msgstr "عدد الزوار"
 
 
359
 
360
- #: includes/log/top-pages.php:13 includes/log/top-pages.php:138
361
- msgid "Top Pages"
362
- msgstr "أفضل الصفحات"
363
 
364
- #: includes/log/top-pages.php:20
365
- msgid "Top 5 Pages Trends"
366
- msgstr "الصفحات الـ5 الأكثر رواجاً"
367
 
368
- #: includes/log/top-pages.php:49
369
- msgid "Top 5 Page Trending Stats"
370
- msgstr "احصائيات الصفحات الـ5 الأكثر رواجاً"
371
 
372
- #: includes/log/top-pages.php:70 includes/log/widgets/page.php:58
373
- msgid "Number of Hits"
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
- #: includes/log/top-pages.php:169 includes/log/widgets/pages.php:35
381
- #: includes/optimization/tabs/wps-optimization-historical.php:37
382
- #: includes/settings/tabs/wps-general.php:122
383
- #: includes/settings/tabs/wps-general.php:127
384
- msgid "Visits"
385
- msgstr "الزيارات"
386
 
387
- #: includes/log/top-referring.php:4
388
- msgid "To be added soon"
389
- msgstr "تضاف قريبا"
390
 
391
- #: includes/log/top-referring.php:40
392
- msgid "Referring sites from"
393
- msgstr "مواقع اشارة من"
394
 
395
- #: includes/log/top-referring.php:110 includes/log/widgets/referring.php:30
396
- msgid "References"
397
- msgstr "المراجع"
398
 
399
- #: includes/log/top-visitors.php:12
400
- msgid "Top 100 Visitors Today"
401
- msgstr "أفضل 100 زائر اليوم"
402
 
403
- #: includes/log/widgets/about.php:8
404
- msgid "About WP Statistics Version %s"
405
- msgstr "حول إصدار احصائيات ووردبريس %s"
406
 
407
- #: includes/log/widgets/about.php:25
408
- msgid "Website"
409
- msgstr "الموقع"
410
 
411
- #: includes/log/widgets/about.php:26
412
- msgid "Rate and Review"
413
- msgstr "التقييم والمراجعة"
 
 
 
414
 
415
- #: includes/log/widgets/about.php:30
416
- msgid "More Information"
417
- msgstr "مزيد من المعلومات"
 
 
418
 
419
- #: includes/log/widgets/about.php:39 includes/settings/tabs/wps-about.php:12
420
- msgid ""
421
- "This product includes GeoLite2 data created by MaxMind, available from %s."
422
- msgstr ""
423
- "يتضمن هذا المنتج البيانات GeoLite2 التي أنشأتها MaxMind، المتاحة من %s."
424
 
425
- #: includes/log/widgets/browsers.php:7 includes/log/widgets/countries.php:11
426
- #: includes/log/widgets/hits.php:8 includes/log/widgets/pages.php:11
427
- #: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:13
428
- #: includes/log/widgets/search.php:7 includes/log/widgets/top.visitors.php:8
429
- #: includes/log/widgets/words.php:8
430
- msgid "More"
431
- msgstr "المزيد"
432
 
433
- #: includes/log/widgets/browsers.php:47
434
- msgid "Other"
435
- msgstr "أخرى"
 
436
 
437
- #: includes/log/widgets/google.map.php:9 includes/log/widgets/jqv.map.php:9
438
- msgid "Today Visitors Map"
439
- msgstr "خريطة زوار اليوم"
 
 
440
 
441
- #: includes/log/widgets/referring.php:31
442
- msgid "Address"
443
- msgstr "العنوان"
 
 
444
 
445
- #: includes/log/widgets/summary.php:23
446
- msgid "User(s) Online"
447
- msgstr "المتصلين على الانترنت"
 
448
 
449
- #: includes/log/widgets/summary.php:34 includes/log/widgets/summary.php:79
450
- msgid "Today"
451
- msgstr "اليوم"
452
 
453
- #: includes/log/widgets/summary.php:40 includes/log/widgets/summary.php:80
454
- msgid "Yesterday"
455
- msgstr "الأمس"
 
456
 
457
- #: includes/log/widgets/summary.php:46
458
- msgid "Week"
459
- msgstr "أسبوع"
460
 
461
- #: includes/log/widgets/summary.php:52
462
- msgid "Month"
463
- msgstr "الشهر"
464
 
465
- #: includes/log/widgets/summary.php:58
466
- msgid "Year"
467
- msgstr "سنة"
468
 
469
- #: includes/log/widgets/summary.php:98
470
- msgid "Daily Total"
471
- msgstr "المجموع اليومي"
472
 
473
- #: includes/log/widgets/summary.php:117
474
- msgid "Current Time and Date"
475
- msgstr "التوقيت الحالي و التاريخ"
 
 
476
 
477
- #: includes/log/widgets/summary.php:117
478
- msgid "(Adjustment)"
479
- msgstr "(التوافق)"
480
 
481
- #: includes/log/widgets/summary.php:121
482
- msgid "Date: %s"
483
- msgstr "التاريخ: %s"
484
 
485
- #: includes/log/widgets/summary.php:125
486
- msgid "Time: %s"
487
- msgstr "التوقيت: %s"
488
 
489
- #: includes/log/widgets/top.visitors.php:28 wp-statistics.php:201
490
- #: wp-statistics.php:279
491
- msgid "Hits"
492
- msgstr "نقرات"
493
 
494
- #: includes/log/widgets/top.visitors.php:31
495
- msgid "IP"
496
- msgstr "IP"
497
 
498
- #: includes/log/widgets/top.visitors.php:33
499
- msgid "Agent"
500
- msgstr "وكيل"
501
 
502
- #: includes/log/widgets/top.visitors.php:35
503
- #: includes/optimization/tabs/wps-optimization-resources.php:291
504
- msgid "Version"
505
- msgstr "الإصدار"
506
 
507
- #: includes/optimization/delete-agents.php:5
508
- #: includes/optimization/delete-platforms.php:5
509
- #: includes/optimization/empty.php:5 includes/optimization/export.php:5
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/optimization/delete-agents.php:14
516
- msgid "%s agent data deleted successfully."
517
- msgstr "%s تم حذف بيانات الوكيل بنجاح."
518
 
519
- #: includes/optimization/delete-agents.php:17
520
- msgid "No agent data found to remove!"
521
- msgstr "لا توجد بيانات وكيل لإزالتها!"
522
 
523
- #: includes/optimization/delete-agents.php:21
524
- #: includes/optimization/delete-platforms.php:21
525
- #: includes/optimization/empty.php:42 includes/optimization/export.php:57
526
- msgid "Please select the desired items."
527
- msgstr "يرجى تحديد العناصر المطلوبة."
528
 
529
- #: includes/optimization/delete-platforms.php:14
530
- msgid "%s platform data deleted successfully."
531
- msgstr "%s تم حذف بيانات المنصة بنجاح."
532
 
533
- #: includes/optimization/delete-platforms.php:17
534
- msgid "No platform data found to remove!"
535
- msgstr "لا توجد بيانات منصة لإزالتها!"
536
 
537
- #: includes/optimization/empty.php:53
538
- msgid "%s table data deleted successfully."
539
- msgstr "%s تم حذف بيانات الجدول بنجاح."
540
 
541
- #: includes/optimization/empty.php:57
542
- msgid "Error, %s not emptied!"
543
- msgstr "خطأ, %s لم يتم التفريغ!"
544
 
545
- #: includes/optimization/tabs/wps-optimization-database.php:5
546
- msgid "Database Setup"
547
- msgstr "إعداد قاعدة البيانات"
548
 
549
- #: includes/optimization/tabs/wps-optimization-database.php:10
550
- msgid "Re-run Install"
551
- msgstr "إعادة تشغيل التثبيت"
552
 
553
- #: includes/optimization/tabs/wps-optimization-database.php:14
554
- msgid "Install Now!"
555
- msgstr "تثبيت الآن!"
556
 
557
- #: includes/optimization/tabs/wps-optimization-database.php:15
558
- msgid ""
559
- "If for some reason your installation of WP Statistics is missing the "
560
- "database tables or other core items, this will re-execute the install "
561
- "process."
562
- msgstr ""
563
- "لسبب ما اذا فقدت بيانات في قاعدة البيانات أو احد العناصر الأساسية, هذا الأمر "
564
- "سيعيد تنفيذ العملية مرة أخرى."
565
 
566
- #: includes/optimization/tabs/wps-optimization-database.php:20
567
- msgid "Database Index"
568
- msgstr "فهرس قاعدة بيانات"
569
 
570
- #: includes/optimization/tabs/wps-optimization-database.php:25
571
- #: includes/optimization/tabs/wps-optimization-updates.php:21
572
- #: wp-statistics.php:276
573
- msgid "Countries"
574
- msgstr "الدول"
575
 
576
- #: includes/optimization/tabs/wps-optimization-database.php:39
577
- #: includes/optimization/tabs/wps-optimization-updates.php:25
578
- #: includes/optimization/tabs/wps-optimization-updates.php:40
579
- msgid "Update Now!"
580
- msgstr "تحديث الآن!"
581
 
582
- #: includes/optimization/tabs/wps-optimization-database.php:40
583
- msgid ""
584
- "Older installs of WP Statistics allow for duplicate entries in the visitors "
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/optimization/tabs/wps-optimization-database.php:41
596
- msgid ""
597
- "This operation could take a long time on installs with many rows in the "
598
- "visitors table."
599
- msgstr ""
600
- "هذه العملية يمكن أن تستغرق وقتا طويلا على تثبيت مع العديد من الصفوف في جدول "
601
- "الزوار."
602
 
603
- #: includes/optimization/tabs/wps-optimization-database.php:46
604
- msgid ""
605
- "Older installs of WP Statistics allow for duplicate entries in the visitors "
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/optimization/tabs/wps-optimization-database.php:47
614
- msgid ""
615
- "Congratulations, your installation is already up to date, nothing to do."
616
- msgstr "تهانينا، التثبيت موجود بالفعل حتى الآن، لا شيء للقيام به."
617
 
618
- #: includes/optimization/tabs/wps-optimization-export.php:7
619
- #: includes/optimization/wps-optimization.php:147
620
- msgid "Export"
621
- msgstr "تصدير"
622
 
623
- #: includes/optimization/tabs/wps-optimization-export.php:12
624
- msgid "Export from"
625
- msgstr "التصدير من"
626
 
627
- #: includes/optimization/tabs/wps-optimization-export.php:17
628
- #: includes/optimization/tabs/wps-optimization-export.php:35
629
- #: includes/optimization/tabs/wps-optimization-purging.php:129
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/optimization/tabs/wps-optimization-export.php:24
638
- msgid "Select the table for the output file."
639
- msgstr "حدد الجدول لملف الإخراج."
640
 
641
- #: includes/optimization/tabs/wps-optimization-export.php:30
642
- msgid "Export To"
643
- msgstr "التصدير لـ"
644
 
645
- #: includes/optimization/tabs/wps-optimization-export.php:41
646
- msgid "Select the output file type."
647
- msgstr "حدد نوع ملف الإخراج."
648
 
649
- #: includes/optimization/tabs/wps-optimization-export.php:47
650
- msgid "Include Header Row"
651
- msgstr "تضمين رأس الصف"
652
 
653
- #: includes/optimization/tabs/wps-optimization-export.php:52
654
- msgid "Include a header row as the first line of the exported file."
655
- msgstr "تضمين صف الرأس كما في السطر الأول من الملف الذي تم تصديره."
656
 
657
- #: includes/optimization/tabs/wps-optimization-export.php:53
658
- msgid "Start Now!"
659
- msgstr "ابدأ الآن!"
660
 
661
- #: includes/optimization/tabs/wps-optimization-historical.php:15
662
- msgid "Historical Values"
663
- msgstr "القيم التاريخية"
664
 
665
- #: includes/optimization/tabs/wps-optimization-historical.php:20
666
- msgid ""
667
- "Note: As you have just purged the database you must reload this page for "
668
- "these numbers to be correct."
669
- msgstr ""
670
- "ملاحظة: كلما قمت بتطهير قاعدة البيانات يجب تحميل هذه الصفحة لتكون الأرقام "
671
- "صحيحة."
672
 
673
- #: includes/optimization/tabs/wps-optimization-historical.php:26
674
- #: includes/settings/tabs/wps-general.php:138
675
- #: includes/settings/tabs/wps-general.php:143 wp-statistics.php:286
676
- msgid "Visitors"
677
- msgstr "الزوار"
678
 
679
- #: includes/optimization/tabs/wps-optimization-historical.php:31
680
- msgid ""
681
- "Number of historical number of visitors to the site (current value is %s)."
682
- msgstr "العدد التاريخي لزوار الموقع (القيمة الحالية هي %s)."
683
 
684
- #: includes/optimization/tabs/wps-optimization-historical.php:42
685
- msgid ""
686
- "Number of historical number of visits to the site (current value is %s)."
687
- msgstr "العدد التاريخي لزيارات الموقع (القيمة الحالية هي %s)."
688
 
689
- #: includes/optimization/tabs/wps-optimization-historical.php:48
690
- msgid "Update now!"
691
- msgstr "تحديث الآن!"
692
 
693
- #: includes/optimization/tabs/wps-optimization-purging.php:10
694
- #: includes/optimization/tabs/wps-optimization-purging.php:37
695
- #: includes/optimization/tabs/wps-optimization-purging.php:63
696
- #: includes/optimization/tabs/wps-optimization-purging.php:91
697
- msgid "Are you sure?"
698
- msgstr "هل أنت متأكد؟"
699
 
700
- #: includes/optimization/tabs/wps-optimization-purging.php:119
701
- msgid "Data"
702
- msgstr "المعطيات"
703
 
704
- #: includes/optimization/tabs/wps-optimization-purging.php:124
705
- msgid "Empty Table"
706
- msgstr "تفريغ الجدول"
707
 
708
- #: includes/optimization/tabs/wps-optimization-purging.php:137
709
- msgid "All data table will be lost."
710
- msgstr "سيتم فقدان جميع البيانات الجدول."
711
-
712
- #: includes/optimization/tabs/wps-optimization-purging.php:138
713
- msgid "Clear now!"
714
- msgstr "مسح الآن!"
715
 
716
- #: includes/optimization/tabs/wps-optimization-purging.php:146
717
- msgid "Purge records older than"
718
- msgstr "سجلات الضخ أقدم من"
719
 
720
- #: includes/optimization/tabs/wps-optimization-purging.php:152
721
- msgid ""
722
- "Deleted user statistics data older than the selected number of days. "
723
- "Minimum value is 30 days."
724
- msgstr ""
725
- "بيانات الاحصائيات المستخدم المحذوف أقدم من الرقم المحدد من الأيام. قيمة الحد "
726
- "الأدنى هو 30 يوما."
727
 
728
- #: includes/optimization/tabs/wps-optimization-purging.php:153
729
- msgid "Purge now!"
730
- msgstr "ضخ الآن!"
731
 
732
- #: includes/optimization/tabs/wps-optimization-purging.php:160
733
- msgid "Delete User Agent Types"
734
- msgstr "حذف أنواع وكيل العضو"
 
735
 
736
- #: includes/optimization/tabs/wps-optimization-purging.php:165
737
- msgid "Delete Agents"
738
- msgstr "حذف الوكلاء"
 
739
 
740
- #: includes/optimization/tabs/wps-optimization-purging.php:180
741
- msgid "All visitor data will be lost for this agent type."
742
- msgstr "سيتم فقد جميع البيانات الزائر لهذا النوع."
 
743
 
744
- #: includes/optimization/tabs/wps-optimization-purging.php:181
745
- #: includes/optimization/tabs/wps-optimization-purging.php:205
746
- msgid "Delete now!"
747
- msgstr "حذف الآن!"
748
 
749
- #: includes/optimization/tabs/wps-optimization-purging.php:189
750
- msgid "Delete Platforms"
751
- msgstr "حذف المنصات"
752
 
753
- #: includes/optimization/tabs/wps-optimization-purging.php:204
754
- msgid "All visitor data will be lost for this platform type."
755
- msgstr "سيتم فقد جميع البيانات الزائر لنوع هذه المنصة."
 
756
 
757
- #: includes/optimization/tabs/wps-optimization-resources.php:17
758
- msgid "Resources"
759
- msgstr "الموارد"
 
760
 
761
- #: includes/optimization/tabs/wps-optimization-resources.php:22
762
- #: includes/optimization/tabs/wps-optimization-resources.php:27
763
- msgid "Memory usage in PHP"
764
- msgstr "استخدام الذاكرة في PHP"
765
 
766
- #: includes/optimization/tabs/wps-optimization-resources.php:26
767
- #: includes/optimization/tabs/wps-optimization-resources.php:37
768
- msgid "Byte"
769
- msgstr "بايت"
770
 
771
- #: includes/optimization/tabs/wps-optimization-resources.php:33
772
- msgid "Last Overview page memory usage"
773
- msgstr "آخر نظرة عامة على استخدام صفحة الذاكرة"
 
774
 
775
- #: includes/optimization/tabs/wps-optimization-resources.php:38
776
- msgid "Memory usage in the overview page"
777
- msgstr "استخدام الذاكرة في صفحة نظرة عامة"
 
778
 
779
- #: includes/optimization/tabs/wps-optimization-resources.php:44
780
- msgid "PHP Memory Limit"
781
- msgstr "حدود ذاكرة PHP"
 
782
 
783
- #: includes/optimization/tabs/wps-optimization-resources.php:49
784
- msgid "The memory limit a script is allowed to consume, set in php.ini."
785
- msgstr ""
786
- "حدود الذاكرة تسمح للبرنامج النصي باستهلاك حد معين، قم بتعيين ملف php.ini."
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
- #: includes/optimization/tabs/wps-optimization-resources.php:59
798
- #: includes/optimization/tabs/wps-optimization-resources.php:70
799
- #: includes/optimization/tabs/wps-optimization-resources.php:81
800
- #: includes/optimization/tabs/wps-optimization-resources.php:92
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
- #: includes/optimization/tabs/wps-optimization-resources.php:60
807
- #: includes/optimization/tabs/wps-optimization-resources.php:71
808
- #: includes/optimization/tabs/wps-optimization-resources.php:82
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
- #: includes/optimization/tabs/wps-optimization-resources.php:120
816
- msgid "Version Info"
817
- msgstr "معلومات الإصدار"
818
 
819
- #: includes/optimization/tabs/wps-optimization-resources.php:125
820
- msgid "WP Statistics Version"
821
- msgstr "نسخة WP Statistics"
 
822
 
823
- #: includes/optimization/tabs/wps-optimization-resources.php:130
824
- msgid "The WP Statistics version you are running."
825
- msgstr "إصدار WP Statistics."
826
 
827
- #: includes/optimization/tabs/wps-optimization-resources.php:136
828
- msgid "PHP Version"
829
- msgstr "نسخة PHP"
830
 
831
- #: includes/optimization/tabs/wps-optimization-resources.php:141
832
- msgid "The PHP version you are running."
833
- msgstr "إصدار PHP."
834
 
835
- #: includes/optimization/tabs/wps-optimization-resources.php:147
836
- msgid "PHP Safe Mode"
837
- msgstr "الوضع الآمن PHP"
838
 
839
- #: includes/optimization/tabs/wps-optimization-resources.php:152
840
- msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
841
- msgstr "هل الوضع الآمن نشط. الكود GeoIP غير معتمد في الوضع الآمن."
842
 
843
- #: includes/optimization/tabs/wps-optimization-resources.php:158
844
- msgid "jQuery Version"
845
- msgstr "نسخة jQuery"
846
 
847
- #: includes/optimization/tabs/wps-optimization-resources.php:163
848
- msgid "The jQuery version you are running."
849
- msgstr "إصدار jQuery."
850
 
851
- #: includes/optimization/tabs/wps-optimization-resources.php:169
852
- msgid "cURL Version"
853
- msgstr "إصدار cURL"
854
 
855
- #: includes/optimization/tabs/wps-optimization-resources.php:173
856
- msgid "cURL not installed"
857
- msgstr "cURL غير مثبت"
858
 
859
- #: includes/optimization/tabs/wps-optimization-resources.php:174
860
- msgid ""
861
- "The PHP cURL Extension version you are running. cURL is required for the "
862
- "GeoIP code, if it is not installed GeoIP will be disabled."
863
- msgstr ""
864
- "نسخة الملحق PHP cURL تعمل. الملحق cURL مطلوب لعمل كود GeoIP, وإذا لم يتم "
865
- "تثبيته يتم تعطيل GeoIP."
866
 
867
- #: includes/optimization/tabs/wps-optimization-resources.php:180
868
- msgid "BC Math"
869
- msgstr "BC Math"
870
 
871
- #: includes/optimization/tabs/wps-optimization-resources.php:184
872
- msgid "Installed"
873
- msgstr "مثبت"
874
 
875
- #: includes/optimization/tabs/wps-optimization-resources.php:184
876
- msgid "Not installed"
877
- msgstr "غير مثبت"
878
 
879
- #: includes/optimization/tabs/wps-optimization-resources.php:185
880
- msgid ""
881
- "If the PHP BC Math Extension is installed. BC Math is no longer required "
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
- #: includes/optimization/tabs/wps-optimization-resources.php:190
888
- msgid "File Info"
889
- msgstr "معلومات عن الملف"
 
 
890
 
891
- #: includes/optimization/tabs/wps-optimization-resources.php:195
892
- msgid "GeoIP Database"
893
- msgstr "قاعدة بيانات GeoIP"
894
 
895
- #: includes/optimization/tabs/wps-optimization-resources.php:204
896
- msgid "Database file does not exist."
897
- msgstr "لا وجود لملف قاعدة البيانات."
898
 
899
- #: includes/optimization/tabs/wps-optimization-resources.php:206
900
- #: includes/optimization/tabs/wps-optimization-resources.php:225
901
- #: includes/optimization/tabs/wps-optimization-resources.php:244
902
- msgid ", created on "
903
- msgstr "، التي تم إنشاؤها على"
904
 
905
- #: includes/optimization/tabs/wps-optimization-resources.php:208
906
- msgid "The file size and date of the GeoIP database."
907
- msgstr "حجم الملف والتاريخ من قاعدة بيانات GeoIP."
908
 
909
- #: includes/optimization/tabs/wps-optimization-resources.php:214
910
- msgid "browscap.ini File"
911
- msgstr "ملف browscap.ini"
912
 
913
- #: includes/optimization/tabs/wps-optimization-resources.php:223
914
- msgid "browscap.ini file does not exist."
915
- msgstr "لا وجود لملف browscap.ini."
 
 
916
 
917
- #: includes/optimization/tabs/wps-optimization-resources.php:227
918
- msgid "The file size and date of the browscap.ini file."
919
- msgstr "حجم الملف وتاريخ الملف browscap.ini."
 
920
 
921
- #: includes/optimization/tabs/wps-optimization-resources.php:233
922
- msgid "browscap Cache File"
923
- msgstr "browscap ملف ذاكرة التخزين المؤقت"
 
924
 
925
- #: includes/optimization/tabs/wps-optimization-resources.php:242
926
- msgid "browscap cache file does not exist."
927
- msgstr "لا وجود لملف ذاكرة التخزين المؤقت browscap."
 
928
 
929
- #: includes/optimization/tabs/wps-optimization-resources.php:246
930
- msgid "The file size and date of the browscap cache file."
931
- msgstr "حجم الملف وتاريخ الملف المؤقت browscap."
 
932
 
933
- #: includes/optimization/tabs/wps-optimization-resources.php:251
934
- msgid "Client Info"
935
- msgstr "معلومات العميل"
 
936
 
937
- #: includes/optimization/tabs/wps-optimization-resources.php:256
938
- msgid "Client IP"
939
- msgstr "IP العميل"
 
940
 
941
- #: includes/optimization/tabs/wps-optimization-resources.php:261
942
- msgid "The client IP address."
943
- msgstr "عنوان IP للعميل."
 
944
 
945
- #: includes/optimization/tabs/wps-optimization-resources.php:267
946
- msgid "User Agent"
947
- msgstr "وكيل المستخدم"
948
 
949
- #: includes/optimization/tabs/wps-optimization-resources.php:272
950
- msgid "The client user agent string."
951
- msgstr "سلسلة عامل المستخدم العميل."
952
 
953
- #: includes/optimization/tabs/wps-optimization-resources.php:278
954
- msgid "Browser"
955
- msgstr "المتصفح"
956
 
957
- #: includes/optimization/tabs/wps-optimization-resources.php:285
958
- msgid "The detected client browser."
959
- msgstr "مستكشف مستعرض العميل."
960
 
961
- #: includes/optimization/tabs/wps-optimization-resources.php:296
962
- msgid "The detected client browser version."
963
- msgstr "إصدار مستكشف مستعرض العميل."
964
 
965
- #: includes/optimization/tabs/wps-optimization-resources.php:307
966
- msgid "The detected client platform."
967
- msgstr "مستكشف منصة العميل"
968
 
969
- #: includes/optimization/tabs/wps-optimization-updates.php:4
970
- msgid ""
971
- "This will replace all IP addresses in the database with hash values and "
972
- "cannot be undo, are you sure?"
973
- msgstr ""
974
- "سيؤدي ذلك إلى استبدال جميع عناوين IP في قاعدة البيانات مع قيم التجزئة ولا "
975
- "يمكن التراجع، هل أنت متأكد؟"
976
 
977
- #: includes/optimization/tabs/wps-optimization-updates.php:16
978
- msgid "GeoIP Options"
979
- msgstr "خيارات GeoIP"
980
 
981
- #: includes/optimization/tabs/wps-optimization-updates.php:26
982
- msgid ""
983
- "Updates any unknown location data in the database, this may take a while"
984
- msgstr ""
985
- "تحديث أي بيانات الموقع غير معروفة في قاعدة البيانات, هذا قد يستغرق بعض الوقت"
986
 
987
- #: includes/optimization/tabs/wps-optimization-updates.php:31
988
- #: includes/settings/tabs/wps-general.php:66
989
- msgid "IP Addresses"
990
- msgstr "عناوين IP"
 
991
 
992
- #: includes/optimization/tabs/wps-optimization-updates.php:36
993
- #: includes/settings/tabs/wps-general.php:71
994
- msgid "Hash IP Addresses"
995
- msgstr "عناوين IP المجزئة"
996
 
997
- #: includes/optimization/tabs/wps-optimization-updates.php:41
998
- msgid ""
999
- "Replace IP addresses in the database with hash values, you will not be able "
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
- #: includes/optimization/wps-optimization.php:43
1008
- msgid "IP Addresses replaced with hash values."
1009
- msgstr "استبدال عناوين IP مع قيم التجزئة."
1010
 
1011
- #: includes/optimization/wps-optimization.php:51
1012
- msgid "Install routine complete."
1013
- msgstr "التثبيت الكامل الروتيني."
1014
 
1015
- #: includes/optimization/wps-optimization.php:146
1016
- msgid "Resources/Information"
1017
- msgstr "الموارد/معلومات"
1018
 
1019
- #: includes/optimization/wps-optimization.php:148
1020
- msgid "Purging"
1021
- msgstr "تطهير"
1022
 
1023
- #: includes/optimization/wps-optimization.php:149
1024
- msgid "Database"
1025
- msgstr "قاعدة البيانات"
1026
 
1027
- #: includes/optimization/wps-optimization.php:150
1028
- msgid "Updates"
1029
- msgstr "تحديثات"
1030
 
1031
- #: includes/optimization/wps-optimization.php:151
1032
- msgid "Historical"
1033
- msgstr "التاريخي"
1034
 
1035
- #: includes/settings/tabs/wps-about.php:8
1036
- msgid "WP Statistics V%s"
1037
- msgstr "WP Statistics V%s"
1038
 
1039
- #: includes/settings/tabs/wps-about.php:20
1040
- msgid "Visit Us Online"
1041
- msgstr "زورونا على الإنترنت"
1042
 
1043
- #: includes/settings/tabs/wps-about.php:24
1044
- msgid ""
1045
- "Come visit our great new %s and keep up to date on the latest news about WP "
1046
- "Statistics."
1047
- msgstr ""
1048
- "قم بزيارة موقعنا الجديد كلياً على %s وأبقى على إطلاع دائم حول أخبار احصائيات "
1049
- "ووردبريس."
1050
 
1051
- #: includes/settings/tabs/wps-about.php:24
1052
- msgid "website"
1053
- msgstr "الموقع"
1054
 
1055
- #: includes/settings/tabs/wps-about.php:28
1056
- msgid "Rate and Review at WordPress.org"
1057
- msgstr "التقييم و المراجعة في WordPress.org"
1058
 
1059
- #: includes/settings/tabs/wps-about.php:32
1060
- msgid "Thanks for installing WP Statistics, we encourage you to submit a "
1061
- msgstr "كل الشكر لتثبيت احصائيات ووردبريس، ونحن نشجعكم على تقديم"
 
1062
 
1063
- #: includes/settings/tabs/wps-about.php:32
1064
- msgid "rating and review"
1065
- msgstr "التقييم و المراجعة"
 
 
1066
 
1067
- #: includes/settings/tabs/wps-about.php:32
1068
- msgid "over at WordPress.org. Your feedback is greatly appreciated!"
1069
- msgstr "في WordPress.org. حيث أن ملاحظاتكم في موضع تقدير دائماً!"
1070
 
1071
- #: includes/settings/tabs/wps-about.php:36
1072
- msgid "Translations"
1073
- msgstr "الترجمات"
 
 
 
1074
 
1075
- #: includes/settings/tabs/wps-about.php:40
1076
- msgid ""
1077
- "WP Statistics supports internationalization and we encourage our users to "
1078
- "submit translations, please visit our %s to see the current status and %s if "
1079
- "you would like to help."
1080
- msgstr ""
1081
- "احصائيات ووردبريس تدعم التدويل ونحن نشجع مستخدمينا على تقديم الترجمات، يرجى "
1082
- "زيارة موقعنا %s لرؤية الوضع الحالي و %s إذا كنت ترغب في المساعدة."
1083
 
1084
- #: includes/settings/tabs/wps-about.php:40
1085
- msgid "translation collaboration site"
1086
- msgstr "الموقع التعاوني للترجمة"
 
 
 
1087
 
1088
- #: includes/settings/tabs/wps-about.php:40
1089
- msgid "drop us a line"
1090
- msgstr "اترك لنا رسالة"
 
 
 
 
1091
 
1092
- #: includes/settings/tabs/wps-about.php:44
1093
- msgid "Support"
1094
- msgstr "دعم"
 
 
1095
 
1096
- #: includes/settings/tabs/wps-about.php:49
1097
- msgid ""
1098
- "We're sorry you're having problem with WP Statistics and we're happy to help "
1099
- "out. Here are a few things to do before contacting us:"
1100
- msgstr ""
1101
- "نحن آسفون إن كنت تواجه مشكلة مع احصائيات ووردبريس ونحن سعداء للمساعدة. وهنا "
1102
- "عدد قليل من الأشياء للقيام بها قبل الاتصال بنا:"
1103
 
1104
- #: includes/settings/tabs/wps-about.php:52
1105
- #: includes/settings/tabs/wps-about.php:53
1106
- msgid "Have you read the %s?"
1107
- msgstr "هل قرأت %s؟"
 
 
1108
 
1109
- #: includes/settings/tabs/wps-about.php:52
1110
- msgid "FAQs"
1111
- msgstr "أسئلة وأجوبة"
 
 
1112
 
1113
- #: includes/settings/tabs/wps-about.php:53
1114
- msgid "manual"
1115
- msgstr "الدليل"
1116
 
1117
- #: includes/settings/tabs/wps-about.php:54
1118
- msgid "Have you search the %s for a similar issue?"
1119
- msgstr "هل بحثت في %s لمشكلة مشابهة؟"
1120
 
1121
- #: includes/settings/tabs/wps-about.php:54
1122
- msgid "support forum"
1123
- msgstr "منتدى الدعم"
1124
 
1125
- #: includes/settings/tabs/wps-about.php:55
1126
- msgid "Have you search the Internet for any error messages you are receiving?"
1127
- msgstr "هل بحثت في الإنترنت عن أي رسائل خطأ التي تظهر لك؟"
1128
 
1129
- #: includes/settings/tabs/wps-about.php:56
1130
- msgid "Make sure you have access to your PHP error logs."
1131
- msgstr "تأكد أن لديك الوصول إلى سجلات الخطأ PHP الخاص بك."
1132
 
1133
- #: includes/settings/tabs/wps-about.php:59
1134
- msgid "And a few things to double-check:"
1135
- msgstr "وعدد قليل من الأشياء الأخرى:"
 
 
 
1136
 
1137
- #: includes/settings/tabs/wps-about.php:62
1138
- msgid "How's your memory_limit in php.ini?"
1139
- msgstr "كيف حال memory_limit الخاصة بك في ملف php.ini؟"
 
 
 
1140
 
1141
- #: includes/settings/tabs/wps-about.php:63
1142
- msgid "Have you tried disabling any other plugins you may have installed?"
1143
- msgstr "هل حاولت تعطيل أي إضافات أخرى التي قد تم تثبيتها؟"
1144
 
1145
- #: includes/settings/tabs/wps-about.php:64
1146
- msgid "Have you tried using the default WordPress theme?"
1147
- msgstr "هل حاولت استخدام المظهر الافتراضي للوردبريس؟"
1148
 
1149
- #: includes/settings/tabs/wps-about.php:65
1150
- msgid "Have you double checked the plugin settings?"
1151
- msgstr "هل ضاعفت الفحص على إعدادات البرنامج المساعد؟"
1152
 
1153
- #: includes/settings/tabs/wps-about.php:66
1154
- msgid "Do you have all the required PHP extensions installed?"
1155
- msgstr "هل قمت بتثبيت جميع ملحقات PHP المطلوبة؟"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1156
 
1157
- #: includes/settings/tabs/wps-about.php:67
1158
- msgid ""
1159
- "Are you getting a blank or incomplete page displayed in your browser? Did "
1160
- "you view the source for the page and check for any fatal errors?"
1161
- msgstr ""
1162
- "أنت تحصل على صفحة فارغة أو غير مكتملة العرض في المستعرض الخاص بك؟ قم بعرض "
1163
- "المصدر للصفحة وتحقق من وجود أية أخطاء قاتلة؟"
1164
 
1165
- #: includes/settings/tabs/wps-about.php:68
1166
- msgid "Have you checked your PHP and web server error logs?"
1167
- msgstr "هل راجعت سجل أخطاء الـPHP الخاص بك؟"
1168
 
1169
- #: includes/settings/tabs/wps-about.php:71
1170
- msgid "Still not having any luck?"
1171
- msgstr "لم يحالفك الحظ حتى الآن؟"
 
 
1172
 
1173
- #: includes/settings/tabs/wps-about.php:71
1174
- msgid ""
1175
- "Then please open a new thread on the %s and we'll respond as soon as "
1176
- "possible."
1177
- msgstr "الرجاء فتح موضوع جديد في %s، وسنقوم بالرد في أقرب وقت ممكن."
1178
 
1179
- #: includes/settings/tabs/wps-about.php:71
1180
- msgid "WordPress.org support forum"
1181
- msgstr "منتدى الدعم"
1182
 
1183
- #: includes/settings/tabs/wps-about.php:75
1184
- msgid "Alternatively %s support is available as well."
1185
- msgstr "كما أنه يتوفر دعم للغة %s كذلك."
1186
 
1187
- #: includes/settings/tabs/wps-about.php:75
1188
- msgid "Farsi"
1189
- msgstr "الفارسية"
1190
 
1191
- #: includes/settings/tabs/wps-access-level.php:21
1192
- msgid "WP Statistics Honey Page"
1193
- msgstr "احصائيات ووردبريس صفحة العسل"
 
 
 
1194
 
1195
- #: includes/settings/tabs/wps-access-level.php:22
1196
- msgid "This is the honey pot for WP Statistics to use, do not delete."
1197
- msgstr "هذا هو وعاء العسل لاحصائيات ووردبريس المستخدم, لا تحذف"
 
 
 
1198
 
1199
- #: includes/settings/tabs/wps-access-level.php:45
1200
- msgid "Access Levels"
1201
- msgstr "مستويات الوصول"
 
 
 
1202
 
1203
- #: includes/settings/tabs/wps-access-level.php:74
1204
- msgid "Required user level to view WP Statistics"
1205
- msgstr "مطلوب مستوى المستخدم لعرض الاحصائيات"
 
 
 
1206
 
1207
- #: includes/settings/tabs/wps-access-level.php:89
1208
- msgid "Required user level to manage WP Statistics"
1209
- msgstr "مطلوب مستوى المستخدم لإدارة الاحصائيات"
 
 
 
1210
 
1211
- #: includes/settings/tabs/wps-access-level.php:97
1212
- msgid "See the %s for details on capability levels."
1213
- msgstr "اطلع على %s لمزيد من التفاصيل على مستويات القدرة."
 
 
 
1214
 
1215
- #: includes/settings/tabs/wps-access-level.php:97
1216
- msgid "WordPress Roles and Capabilities page"
1217
- msgstr "أدوار وقدرات صفحة ووردبريس"
 
 
 
1218
 
1219
- #: includes/settings/tabs/wps-access-level.php:98
1220
- msgid ""
1221
- "Hint: manage_network = Super Admin Network, manage_options = Administrator, "
1222
- "edit_others_posts = Editor, publish_posts = Author, edit_posts = "
1223
- "Contributor, read = Everyone."
1224
- msgstr ""
1225
- "تلميح: manage_network = مسؤول, manage_options = مدير, edit_others_posts = "
1226
- "محرر, publish_posts = كاتب, edit_posts = مساهم, read = الجميع"
1227
 
1228
- #: includes/settings/tabs/wps-access-level.php:99
1229
- msgid ""
1230
- "Each of the above casscades the rights upwards in the default WordPress "
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/settings/tabs/wps-access-level.php:100
1238
- msgid ""
1239
- "If you need a more robust solution to delegate access you might want to look "
1240
- "at %s in the WordPress plugin directory."
1241
- msgstr ""
1242
- "إذا كنت في حاجة الى حل أكثر قوة لتفويض الوصول التي قد ترغب في النظر في %s "
1243
- "الدليل المساعد لووردبريس."
1244
 
1245
- #: includes/settings/tabs/wps-access-level.php:105 wp-statistics.php:278
1246
- msgid "Exclusions"
1247
- msgstr "الاستثناءات"
1248
 
1249
- #: includes/settings/tabs/wps-access-level.php:109
1250
- msgid "Record exclusions"
1251
- msgstr "سجل الاستثناءات"
 
 
 
 
 
1252
 
1253
- #: includes/settings/tabs/wps-access-level.php:111
1254
- #: includes/settings/tabs/wps-access-level.php:165
1255
- #: includes/settings/tabs/wps-access-level.php:192
1256
- msgid "Enable"
1257
- msgstr "تمكين"
1258
 
1259
- #: includes/settings/tabs/wps-access-level.php:112
1260
- msgid ""
1261
- "This will record all the excluded hits in a separate table with the reasons "
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/settings/tabs/wps-access-level.php:117
1272
- msgid "Exclude User Roles"
1273
- msgstr "استبعاد أدوار المستخدم"
 
1274
 
1275
- #: includes/settings/tabs/wps-access-level.php:133
1276
- #: includes/settings/tabs/wps-access-level.php:247
1277
- #: includes/settings/tabs/wps-access-level.php:254
1278
- msgid "Exclude"
1279
- msgstr "منع"
1280
 
1281
- #: includes/settings/tabs/wps-access-level.php:134
1282
- msgid "Exclude %s role from data collection."
1283
- msgstr "استبعاد دور %s من جمع البيانات."
 
 
1284
 
1285
- #: includes/settings/tabs/wps-access-level.php:140
1286
- msgid "IP/Robot Exclusions"
1287
- msgstr "استثناءات IP/Robot"
 
 
1288
 
1289
- #: includes/settings/tabs/wps-access-level.php:144
1290
- msgid "Robot list"
1291
- msgstr "قائمة الروبوت"
1292
 
1293
- #: includes/settings/tabs/wps-access-level.php:157
1294
- msgid ""
1295
- "A list of words (one per line) to match against to detect robots. Entries "
1296
- "must be at least 4 characters long or they will be ignored."
1297
- msgstr ""
1298
- "قائمة من الكلمات (واحد في كل سطر) لمطابقة ضد للكشف عن الروبوتات. يجب أن تكون "
1299
- "إدخالات 4 أحرف على الأقل أو أنها سيتم تجاهلها."
 
 
1300
 
1301
- #: includes/settings/tabs/wps-access-level.php:158
1302
- msgid "Reset to Default"
1303
- msgstr "إعادة تعيين إلى الافتراضي"
 
 
 
 
 
 
 
1304
 
1305
- #: includes/settings/tabs/wps-access-level.php:163
1306
- msgid "Force robot list update after upgrades"
1307
- msgstr "إجبار تحديث قائمة الربوت بعد الترقيات"
 
 
 
 
1308
 
1309
- #: includes/settings/tabs/wps-access-level.php:166
1310
- msgid ""
1311
- "Force the robot list to be reset to the default after an update to WP "
1312
- "Statistics takes place. Note if this option is enabled any custom robots "
1313
- "you have added to the list will be lost."
1314
- msgstr ""
1315
- "إجبار قائمة الروبوت لإعادة تعيين إلى الافتراضي بعد تحديث احصائيات ووردبريس "
1316
- "لتأخذ مكان. ملاحظة إذا تم تمكين هذا الخيار أي روبوتات تم تخصيصها في القائمة "
1317
- "سوف تضيع."
1318
 
1319
- #: includes/settings/tabs/wps-access-level.php:171
1320
- msgid "Robot visit threshold"
1321
- msgstr "الحد الأدنى بزيارة الروبوت"
 
 
 
1322
 
1323
- #: includes/settings/tabs/wps-access-level.php:174
1324
- msgid ""
1325
- "Treat visitors with more than this number of visits per day as robots. 0 = "
1326
- "disabled."
1327
- msgstr ""
1328
- "تعامل للزوار أكثر من هذا العدد من مرة في اليوم الواحد كما الروبوتات. 0 = "
1329
- "تعطيل."
1330
 
1331
- #: includes/settings/tabs/wps-access-level.php:179
1332
- msgid "Excluded IP address list"
1333
- msgstr "قائمة عناوين IP المستبعدة"
1334
 
1335
- #: includes/settings/tabs/wps-access-level.php:182
1336
- msgid ""
1337
- "A list of IP addresses and subnet masks (one per line) to exclude from "
1338
- "statistics collection (both 192.168.0.0/24 and 192.168.0.0/255.255.255.0 "
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/settings/tabs/wps-access-level.php:183
1348
- msgid "Add 10.0.0.0"
1349
- msgstr "إضافة 10.0.0.0"
1350
 
1351
- #: includes/settings/tabs/wps-access-level.php:184
1352
- msgid "Add 172.16.0.0"
1353
- msgstr "إضافة 172.16.0.0"
1354
 
1355
- #: includes/settings/tabs/wps-access-level.php:185
1356
- msgid "Add 192.168.0.0"
1357
- msgstr "إضافة 192.168.0.0"
1358
 
1359
- #: includes/settings/tabs/wps-access-level.php:190
1360
- msgid "Use honey pot"
1361
- msgstr "استخدام وعاء العسل"
 
1362
 
1363
- #: includes/settings/tabs/wps-access-level.php:193
1364
- msgid "Use a honey pot page to identify robots."
1365
- msgstr "استخدام صفحة وعاء العسل لتحديد الروبوتات."
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/settings/tabs/wps-overview-display.php:366
2133
- msgid "Slot 7"
2134
- msgstr "الشريحة 7"
 
2135
 
2136
- #: includes/settings/tabs/wps-removal.php:15
2137
- msgid "WP Statisitcs Removal"
2138
- msgstr "إزالة احصائيات ووردبريس"
 
 
 
2139
 
2140
- #: includes/settings/tabs/wps-removal.php:20
2141
- msgid ""
2142
- "Uninstalling WP Statistics will not remove the data and settings, you can "
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/settings/tabs/wps-removal.php:23
2150
- msgid ""
2151
- "Once you submit this form the settings will be deleted during the page load, "
2152
- "however WP Statistics will still show up in your Admin menu until another "
2153
- "page load is executed."
2154
- msgstr ""
2155
- "بمجرد التقدم في هذا الخيار سيتم حذف الإعدادات أثناء تحميل صفحة هذا النموذج، "
2156
- "ولكن سوف تزال تظهر احصائيات ووردبريس في قائمة المشرف الخاص بك حتى يتم تحميل "
2157
- "الصفحة مرة أخرى."
2158
 
2159
- #: includes/settings/tabs/wps-removal.php:29
2160
- msgid "Remove data and settings"
2161
- msgstr "إزالة البيانات والإعدادات"
 
 
2162
 
2163
- #: includes/settings/tabs/wps-removal.php:34
2164
- msgid "Remove"
2165
- msgstr "إزالة"
 
 
2166
 
2167
- #: includes/settings/tabs/wps-removal.php:35
2168
- msgid "Remove data and settings, this action cannot be undone."
2169
- msgstr "إزالة البيانات والإعدادات، لا يمكنك التراجع مستقبلاً."
 
2170
 
2171
- #: includes/settings/wps-settings.php:100
2172
- msgid "General"
2173
- msgstr "عام"
 
2174
 
2175
- #: includes/settings/wps-settings.php:101
2176
- msgid "Notifications"
2177
- msgstr "الإشعارات"
2178
 
2179
- #: includes/settings/wps-settings.php:102
2180
- msgid "Dashboard/Overview"
2181
- msgstr "اللوحة/نظرة عامة"
2182
 
2183
- #: includes/settings/wps-settings.php:103
2184
- msgid "Access/Exclusions"
2185
- msgstr "وصول/استثناءات"
 
2186
 
2187
- #: includes/settings/wps-settings.php:105
2188
- msgid "browscap"
2189
- msgstr "browscap"
 
2190
 
2191
- #: includes/settings/wps-settings.php:106
2192
- msgid "Maintenance"
2193
- msgstr "صيانة"
 
 
 
 
2194
 
2195
- #: includes/settings/wps-settings.php:107
2196
- msgid "Removal"
2197
- msgstr "الإزالة"
2198
 
2199
- #: includes/settings/wps-settings.php:150
2200
- msgid "Update"
2201
- msgstr "تحديث"
2202
 
2203
- #: manual/manual.php:29
2204
- msgid "Manual not found: %s"
2205
- msgstr "الدليل لم يعثر على: %s"
 
2206
 
2207
- #: manual/manual.php:39
2208
- msgid "Invalid file type selected: %s"
2209
- msgstr "نوع الملف المختار غير صالح: %s"
2210
 
2211
- #: schedule.php:10
2212
- msgid "Once Weekly"
2213
- msgstr "مرة كل أسبوع"
2214
 
2215
- #: schedule.php:17
2216
- msgid "Once Every 2 Weeks"
2217
- msgstr "مرة كل 2 أسابيع"
2218
 
2219
- #: schedule.php:24
2220
- msgid "Once Every 4 Weeks"
2221
- msgstr "مرة كل 4 أسابيع"
2222
 
2223
- #: widget.php:14 wp-statistics.php:270
2224
- msgid "Statistics"
2225
- msgstr "الاحصائيات"
2226
 
2227
- #: widget.php:15
2228
- msgid "Show site stats in sidebar."
2229
- msgstr "عرض احصائيات الموقع في الشريط الجانبي."
 
 
 
 
 
 
 
 
 
 
 
 
 
2230
 
2231
- #: widget.php:73 widget.php:260
2232
- msgid "Week Visit"
2233
- msgstr "زيارات الأسبوع"
2234
 
2235
- #: widget.php:80 widget.php:263
2236
- msgid "Month Visit"
2237
- msgstr "زيارات الشهر"
 
2238
 
2239
- #: widget.php:87 widget.php:266
2240
- msgid "Years Visit"
2241
- msgstr "زيارات السنة"
2242
 
2243
- #: widget.php:108 widget.php:275
2244
- msgid "Total Page Views"
2245
- msgstr "مجموع مشاهدات الصفحة"
2246
 
2247
- #: widget.php:116
2248
- msgid "Search Engine referred"
2249
- msgstr "محرك البحث المشار"
 
2250
 
2251
- #: widget.php:123 widget.php:298
2252
- msgid "Total Posts"
2253
- msgstr "إجمالي المشاركات"
 
2254
 
2255
- #: widget.php:130 widget.php:301
2256
- msgid "Total Pages"
2257
- msgstr "إجمالي الصفحات"
2258
 
2259
- #: widget.php:137 widget.php:304
2260
- msgid "Total Comments"
2261
- msgstr "إجمالي التعليقات"
2262
 
2263
- #: widget.php:144 widget.php:307
2264
- msgid "Total Spams"
2265
- msgstr "إجمالي السبام"
2266
 
2267
- #: widget.php:151 widget.php:310
2268
- msgid "Total Users"
2269
- msgstr "عدد الاعضاء"
2270
 
2271
- #: widget.php:158 widget.php:313
2272
- msgid "Average Posts"
2273
- msgstr "متوسط المشاركات"
2274
 
2275
- #: widget.php:165 widget.php:316
2276
- msgid "Average Comments"
2277
- msgstr "متوسط التعليقات"
2278
 
2279
- #: widget.php:172 widget.php:319
2280
- msgid "Average Users"
2281
- msgstr "متوسط الاعضاء"
2282
 
2283
- #: widget.php:179 widget.php:322
2284
- msgid "Last Post Date"
2285
- msgstr "تاريخ آخر مشاركة"
2286
 
2287
- #: widget.php:238
2288
- msgid "Name"
2289
- msgstr "الأسم"
 
 
 
2290
 
2291
- #: widget.php:242
2292
- msgid "Items"
2293
- msgstr "البنود"
2294
 
2295
- #: widget.php:254 wp-statistics.php:362
2296
- msgid "Yesterday visit"
2297
- msgstr "زيارات الأمس"
2298
 
2299
- #: widget.php:278
2300
- msgid "Search Engine Referred"
2301
- msgstr "محرك بحث المشارين"
 
2302
 
2303
- #: widget.php:281
2304
- msgid "Select type of search engine"
2305
- msgstr "حدد نوع من محرك البحث"
 
 
 
 
 
 
2306
 
2307
- #: wp-statistics.php:27
2308
- msgid ""
2309
- "ERROR: WP Statistics has detected an unsupported version of PHP, WP "
2310
- "Statistics will not function without PHP Version "
2311
- msgstr ""
2312
- "خطأ: كشف احصائيات ووردبريس أن إصدار PHP لديك غير معتمد، و احصائيات ووردبريس "
2313
- "لن تعمل دون PHP النسخة"
2314
 
2315
- #: wp-statistics.php:27
2316
- msgid " or higher!"
2317
- msgstr "أو أعلى!"
2318
 
2319
- #: wp-statistics.php:27
2320
- msgid "Your current PHP version is"
2321
- msgstr "نسخة PHP الحالي هو"
 
 
 
2322
 
2323
- #: wp-statistics.php:42
2324
- msgid "WP Statistics has been removed, please disable and delete it."
2325
- msgstr "تمت إزالة احصائيات ووردبريس، يرجى التعطيل والحذف."
2326
 
2327
- #. Plugin Name of the plugin/theme
2328
- #: wp-statistics.php:53
2329
- msgid "WP Statistics"
2330
- msgstr "احصائيات ووردبريس"
2331
 
2332
- #. Description of the plugin/theme
2333
- #: wp-statistics.php:54
2334
- msgid "Complete statistics for your WordPress site."
2335
- msgstr "إحصاءات كاملة لموقع ووردبريس الخاص بك."
2336
 
2337
- #: wp-statistics.php:97
2338
- msgid ""
2339
- "Online user tracking in WP Statistics is not enabled, please go to %s and "
2340
- "enable it."
2341
- msgstr ""
2342
- "لم يتم تمكين تتبع المستخدم عبر الإنترنت في احصائيات ووردبريس، يرجى الذهاب "
2343
- "إلى %s وتمكينه."
2344
 
2345
- #: wp-statistics.php:97 wp-statistics.php:100 wp-statistics.php:103
2346
- msgid "setting page"
2347
- msgstr "صفحة الإعدادات"
2348
 
2349
- #: wp-statistics.php:100
2350
- msgid ""
2351
- "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
2352
- msgstr ""
2353
- "تتبع النقرات في احصائيات ووردبريس لم يتم تمكينه، يرجى الذهاب إلى %s وتمكينه."
2354
 
2355
- #: wp-statistics.php:103
2356
- msgid ""
2357
- "Visitor tracking in WP Statistics is not enabled, please go to %s and enable "
2358
- "it."
2359
- msgstr ""
2360
- "لم يتم تمكين تتبع الزائر في احصائيات ووردبريس، يرجى الذهاب إلى %s وتمكينه."
2361
 
2362
- #: wp-statistics.php:106
2363
- msgid ""
2364
- "GeoIP collection is not active, please go to %s and enable this feature."
2365
- msgstr "مجموعة GeoIP غير نشطه، يرجى الذهاب إلى %s وتمكين هذه الميزة."
2366
 
2367
- #: wp-statistics.php:106
2368
- msgid "Setting page > GeoIP"
2369
- msgstr "صفحة الإعدادات > GeoIP"
2370
 
2371
- #: wp-statistics.php:177 wp-statistics.php:289
2372
- msgid "Settings"
2373
- msgstr "الإعدادات"
 
 
 
2374
 
2375
- #: wp-statistics.php:189
2376
- msgid "Click here to visit the plugin on WordPress.org"
2377
- msgstr "انقر هنا لزيارة صفحة الإضافة على WordPress.org"
 
 
2378
 
2379
- #: wp-statistics.php:189
2380
- msgid "Visit WordPress.org page"
2381
- msgstr "زيارة صفحة WordPress.org"
2382
 
2383
- #: wp-statistics.php:192
2384
- msgid "Click here to rate and review this plugin on WordPress.org"
2385
- msgstr "أنقر هنا لمراجهة وتقييم الإضافة على WordPress.org"
2386
 
2387
- #: wp-statistics.php:192
2388
- msgid "Rate this plugin"
2389
- msgstr "ضع تقييمك لهذه الاضافة"
2390
 
2391
- #: wp-statistics.php:236
2392
- msgid "WP Statistics - Hits"
2393
- msgstr "احصائيات ووردبريس - الزيارات"
2394
 
2395
- #: wp-statistics.php:273
2396
- msgid "Overview"
2397
- msgstr "نظرة عامة"
 
2398
 
2399
- #: wp-statistics.php:280
2400
- msgid "Online"
2401
- msgstr "المتواجدون"
2402
 
2403
- #: wp-statistics.php:282
2404
- msgid "Referers"
2405
- msgstr "المراجع"
 
 
 
 
 
 
2406
 
2407
- #: wp-statistics.php:283
2408
- msgid "Searches"
2409
- msgstr "عمليات البحث"
2410
 
2411
- #: wp-statistics.php:284
2412
- msgid "Search Words"
2413
- msgstr "كلمات البحث"
2414
 
2415
- #: wp-statistics.php:285
2416
- msgid "Top Visitors Today"
2417
- msgstr "أعلى زوار اليوم"
2418
 
2419
- #: wp-statistics.php:288
2420
- msgid "Optimization"
2421
- msgstr "التحسين"
2422
 
2423
- #: wp-statistics.php:293
2424
- msgid "Manual"
2425
- msgstr "الدليل"
2426
 
2427
- #: wp-statistics.php:344
2428
- msgid "Today visitor"
2429
- msgstr "زوار اليوم"
2430
 
2431
- #: wp-statistics.php:350
2432
- msgid "Today visit"
2433
- msgstr "زيارات اليوم"
2434
 
2435
- #: wp-statistics.php:356
2436
- msgid "Yesterday visitor"
2437
- msgstr "زيارات الأمس"
2438
 
2439
- #: wp-statistics.php:368
2440
- msgid "View Stats"
2441
- msgstr "عرض الإحصائيات"
 
 
 
 
2442
 
2443
- #: wp-statistics.php:392
2444
- msgid "Download ODF file"
2445
- msgstr "تحميل ملف ODF"
2446
 
2447
- #: wp-statistics.php:393
2448
- msgid "Download HTML file"
2449
- msgstr "تحميل ملف HTML"
2450
 
2451
- #: wp-statistics.php:397
2452
- msgid "Manual file not found."
2453
- msgstr "لم يتم العثور على ملف الدليل."
2454
 
2455
- #: wp-statistics.php:482 wp-statistics.php:593 wp-statistics.php:627
2456
- msgid "You do not have sufficient permissions to access this page."
2457
- msgstr "ليس لديك الصلاحيات الكافية لدخول هذه الصفحة."
 
 
 
2458
 
2459
- #: wp-statistics.php:495
2460
- msgid ""
2461
- "Plugin tables do not exist in the database! Please re-run the %s install "
2462
- "routine %s."
2463
- msgstr ""
2464
- "جداول البرنامج المساعد لا وجود لها في قاعدة البيانات! يرجى إعادة تشغيل %s "
2465
- "التثبيت الروتيني %s."
2466
 
2467
- #: wps-install.php:250
2468
- msgid "WP Statistics %s installed on"
2469
- msgstr "احصائيات ووردبريس %s مثبتة على"
2470
 
2471
- #: wps-updates.php:34
2472
- msgid "Error downloading GeoIP database from: %s - %s"
2473
- msgstr "خطأ تحميل قاعدة بيانات GeoIP من: %s - %s"
2474
 
2475
- #: wps-updates.php:45
2476
- msgid "Error could not open downloaded GeoIP database for reading: %s"
2477
- msgstr "خطأ لا يمكن فتح قاعدة البيانات GeoIP التي تم تحميلها للقراءة: %s"
2478
 
2479
- #: wps-updates.php:52
2480
- msgid "Error could not open destination GeoIP database for writing %s"
2481
- msgstr "خطأ لا يمكن فتح قاعدة البيانات GeoIP لجهة الكتابة %s"
2482
 
2483
- #: wps-updates.php:68
2484
- msgid "GeoIP Database updated successfully!"
2485
- msgstr "تم تحديث قاعدة بيانات GeoIP بنجاح!"
2486
 
2487
- #: wps-updates.php:93
2488
- msgid "GeoIP update on"
2489
- msgstr "تحديث GeoIP على"
2490
 
2491
- #: wps-updates.php:160
2492
- msgid "Error downloading browscap database from: %s - %s"
2493
- msgstr "خطأ في قاعدة بيانات browscap تحميل من: %s - %s"
2494
 
2495
- #: wps-updates.php:262
2496
- msgid "browscap database updated successfully!"
2497
- msgstr "قاعدة بيانات browscap تم تحديثها بنجاح!"
2498
 
2499
- #: wps-updates.php:273
2500
- msgid ""
2501
- "browscap database updated failed! Cache file too large, reverting to "
2502
- "previous browscap.ini."
2503
- msgstr ""
2504
- "تحديث قاعدة بيانات browscap فشل! ملف الكاش كبير جدا، تم الرجوع إلى browscap."
2505
- "ini السابق."
2506
 
2507
- #: wps-updates.php:281
2508
- msgid ""
2509
- "browscap database updated failed! New browscap.ini is mis-identifing user "
2510
- "agents as crawlers, reverting to previous browscap.ini."
2511
- msgstr ""
2512
- "تحديث قاعدة بيانات browscap فشل! لم تتم تحديد هوية browscap.ini الجديدة لكلا "
2513
- "من المستخدم والزواحف، وتم الرجوع إلى browscap.ini السابق."
2514
 
2515
- #: wps-updates.php:303
2516
- msgid "browscap already at current version!"
2517
- msgstr "browscap بالفعل في النسخة الحالية!"
2518
 
2519
- #: wps-updates.php:316
2520
- msgid "Browscap.ini update on"
2521
- msgstr "تحديث Browscap.ini على"
2522
 
2523
- #~ msgid "Browsers by Type"
2524
- #~ msgstr "المتصفحات حسب النوع"
 
2525
 
2526
- #~ msgid "Browser share"
2527
- #~ msgstr "مشاركة بالمتصفح"
 
 
2528
 
2529
- #~ msgid "Browsers by Platform"
2530
- #~ msgstr "المتصفحات حسب المنصة"
 
 
2531
 
2532
- #~ msgid "Platform share"
2533
- #~ msgstr "مشاركة المنصة"
 
2534
 
2535
- #~ msgid "Browser version share"
2536
- #~ msgstr "نسخة متصفح المشارك"
 
2537
 
2538
- #~ msgid "Excluded hits chart in the last"
2539
- #~ msgstr "مشاهدة الرسم البياني للنقرات المستبعدة في المشاركة"
 
2540
 
2541
- #~ msgid "Hits chart in the last"
2542
- #~ msgstr "الرسم البياني في هذه المشاركة"
 
 
 
 
 
 
 
 
 
 
2543
 
2544
- #~ msgid "Latest search words"
2545
- #~ msgstr "آخر كلمات البحث"
 
 
 
 
 
 
2546
 
2547
- #~ msgid "Date: <code dir=\"ltr\">%s</code></code>"
2548
- #~ msgstr "التاريخ: <code dir=\"rtl\">%s</code></code>"
 
 
 
 
 
 
2549
 
2550
- #~ msgid "Time: <code dir=\"ltr\">%s</code>"
2551
- #~ msgstr "الوقت: <code dir=\"rtl\">%s</code></code>"
 
2552
 
2553
- #~ msgid "Graph of Browsers"
2554
- #~ msgstr "الرسم البياني من المتصفحات"
 
2555
 
2556
- #~ msgid "Top referring sites"
2557
- #~ msgstr "أعلى المواقع زيارة"
 
2558
 
2559
- #~ msgid "Reference"
2560
- #~ msgstr "المرجع"
 
2561
 
2562
- #~ msgid "About plugin"
2563
- #~ msgstr "عن الإضافة"
 
2564
 
2565
- #~ msgid "Plugin version: %s"
2566
- #~ msgstr "إصدار الإضافة: %s"
 
2567
 
2568
- #~ msgid "Facebook"
2569
- #~ msgstr "فيس بوك"
 
2570
 
2571
- #~ msgid "Weblog"
2572
- #~ msgstr "مدونتنا"
 
2573
 
2574
- #~ msgid ""
2575
- #~ "Please donate to WP Statistics. With your help WP Statistics will rule "
2576
- #~ "the world!"
2577
- #~ msgstr ""
2578
- #~ "يرجى التبرع لمنتج WP Statistics, فبتبرعكم سوف نصل بمنتج WP Statistics الى "
2579
- #~ "سيادة الووردبريس."
2580
 
2581
- #~ msgid "Donate"
2582
- #~ msgstr "تبرع"
 
2583
 
2584
- #~ msgid "Hits chart in the last 20 days"
2585
- #~ msgstr "مخطط الفعاليات في الـ20 يوماً الماضية"
 
2586
 
2587
- #~ msgid "Referrer search engine chart in the last 20 days"
2588
- #~ msgstr "مرجعية محرك البحث التخطيطي في الـ20 يوما الماضية"
 
2589
 
2590
- #~ msgid "Number of referrer"
2591
- #~ msgstr "عدد الإحالات"
 
2592
 
2593
- #~ msgid "Today visitors on map"
2594
- #~ msgstr "زوار اليوم على الخريطة"
 
2595
 
2596
- #~ msgid "Page Trending Stats"
2597
- #~ msgstr "احصائيات الصفحة الاكثر رواجاً"
 
2598
 
2599
- #~ msgid "Search Engine Referrers Statistics"
2600
- #~ msgstr "احصائيات محركات البحث"
 
2601
 
2602
- #~ msgid "Referrer search engine chart in the last"
2603
- #~ msgstr "الرسم البياني لمحرك بحث المرجعية في الماضي"
 
2604
 
2605
- #~ msgid "<code>%s</code> agent data deleted successfully."
2606
- #~ msgstr "<code>%s</code> حذف بيانات الوكيل بنجاح."
 
2607
 
2608
- #~ msgid "<code>%s</code> platform data deleted successfully."
2609
- #~ msgstr "<code>%s</code> حذف بيانات المنصة بنجاح."
 
2610
 
2611
- #~ msgid "<code>%s</code> table data deleted successfully."
2612
- #~ msgstr "<code>%s</code> حذف بيانات الجدول بنجاح."
 
 
 
2613
 
2614
- #~ msgid ""
2615
- #~ "<code>%s</code> data older than <code>%s</code> days purged successfully."
2616
- #~ msgstr ""
2617
- #~ "بيانات <code>%s</code> مضى عليها أكثر من <code>%s</code> أيام ضخ بنجاح."
2618
 
2619
- #~ msgid "No records found to purge from <code>%s</code>!"
2620
- #~ msgstr "لاتوجد سجلات للضخ من <code>%s</code>!"
 
2621
 
2622
- #~ msgid "Please select."
2623
- #~ msgstr "الرجاء اختيار."
 
2624
 
2625
- #~ msgid "GeoIP File Info"
2626
- #~ msgstr "معلومات ملف GeoIP"
 
2627
 
2628
- #~ msgid "File Date"
2629
- #~ msgstr "ملف التاريخ"
 
2630
 
2631
- #~ msgid "The file date of the GeoIP database."
2632
- #~ msgstr "تاريخ الملف من قاعدة البيانات GeoIP."
 
2633
 
2634
- #~ msgid "File Size"
2635
- #~ msgstr "حجم الملف"
 
2636
 
2637
- #~ msgid "The file size of the GeoIP database."
2638
- #~ msgstr "حجم ملف قاعدة البيانات GeoIP."
 
2639
 
2640
- #~ msgid ""
2641
- #~ "Get updates for the location and the countries, this may take a while"
2642
- #~ msgstr "الحصول على تحديثات للموقع والدول، وهذا قد يستغرق بعض الوقت"
2643
 
2644
- #~ msgid "Number of rows in the <code>%s</code> table"
2645
- #~ msgstr "عدد الصفوف في الجدول <code>%s</code>"
 
2646
 
2647
- #~ msgid ""
2648
- #~ "If the PHP BC Math Extension is installed. BC Math is required for the "
2649
- #~ "GeoIP code, if it is not installed GeoIP will be disabled."
2650
- #~ msgstr ""
2651
- #~ "إذا تم تثبيت الملحق PHP BC Math. فأن كود GeoIP مطلوب في BC Math, واذا لم "
2652
- #~ "يتم تثبيته يتم تعطيل GeoIP."
2653
 
2654
- #~ msgid "Search Engine reffered"
2655
- #~ msgstr "محركات البحث"
 
2656
 
2657
- #~ msgid "General Settings"
2658
- #~ msgstr "إعدادات عامة"
 
2659
 
2660
- #~ msgid ""
2661
- #~ "See the %sWordPress Roles and Capabilities page%s for details on "
2662
- #~ "capability levels."
2663
- #~ msgstr ""
2664
- #~ "انظر أدوار %s ووردبريس وقدرات الصفحة %s للتفاصيل على مستويات القدرة."
2665
 
2666
- #~ msgid ""
2667
- #~ "By default WP Statistics displays an alert if any of the core features "
2668
- #~ "are disbaled on every admin page, this option will disable these notices."
2669
- #~ msgstr ""
2670
- #~ "افتراضيا احصائيات ووردبريس يعرض تنبيها اذا تم تعطيل أي من الميزات "
2671
- #~ "الأساسية على كل مشرف, فإن هذا الخيار يقوم بتعطيل الإشعارات."
2672
 
2673
- #~ msgid "Search Enginges"
2674
- #~ msgstr "محرك البحث"
 
2675
 
2676
- #~ msgid "Chart type"
2677
- #~ msgstr "نوع الرسم البياني"
 
2678
 
2679
- #~ msgid "Line"
2680
- #~ msgstr "سطر"
 
2681
 
2682
- #~ msgid "Spline"
2683
- #~ msgstr "شريحة"
 
2684
 
2685
- #~ msgid "Area"
2686
- #~ msgstr "منطقة"
 
 
2687
 
2688
- #~ msgid "Area Spline"
2689
- #~ msgstr "منطقة منحنية"
 
 
2690
 
2691
- #~ msgid "Column"
2692
- #~ msgstr "عمود"
 
2693
 
2694
- #~ msgid "Bar"
2695
- #~ msgstr "شريط"
 
2696
 
2697
- #~ msgid "Scatter"
2698
- #~ msgstr "تبعثر"
 
2699
 
2700
- #~ msgid "Chart type in view stats."
2701
- #~ msgstr "نوع الرسم البياني في مشاهدة البيانات."
 
2702
 
2703
- #~ msgid "Alternate map location"
2704
- #~ msgstr "خريطة الموقع البديل"
 
2705
 
2706
- #~ msgid ""
2707
- #~ "Place the map above the recent visitors area instead of at the top of the "
2708
- #~ "page."
2709
- #~ msgstr ""
2710
- #~ "وضع الخريطة فوق منطقة الزوار الأخيرة بدلا من في الجزء العلوي من الصفحة."
2711
 
2712
- #~ msgid ""
2713
- #~ "This feature may cause a performance degradation when viewing statistics."
2714
- #~ msgstr "قد تسبب هذه الميزة انخفاض أداء الموقع عند عرض الإحصائيات."
2715
 
2716
- #~ msgid "Time send"
2717
- #~ msgstr "وقت الارسال"
 
2718
 
2719
- #~ msgid "Hourly"
2720
- #~ msgstr "كل ساعة"
 
2721
 
2722
- #~ msgid "Twice daily"
2723
- #~ msgstr "مرتين يوميا"
 
2724
 
2725
- #~ msgid "daily"
2726
- #~ msgstr "يوميا"
 
2727
 
2728
- #~ msgid "Select when receiving statistics report."
2729
- #~ msgstr "حدد عند استلام إحصاءات التقرير."
 
2730
 
2731
- #~ msgid "Send Statistical reporting to"
2732
- #~ msgstr "إرسال تقارير الإحصائيات إلى"
 
2733
 
2734
- #~ msgid "Type Select Get Status Report."
2735
- #~ msgstr "حدد نوع الحصول على التقرير."
 
2736
 
2737
- #~ msgid ""
2738
- #~ "Note: To send SMS text messages please install the <a href=\"%s\" target="
2739
- #~ "\"_blank\">Wordpress SMS</a> plugin."
2740
- #~ msgstr ""
2741
- #~ "ملاحظة: لإرسال الرسائل النصية SMS الرجاء تثبيت البرنامج المساعد <a href="
2742
- #~ "\"%s\" target=\"_blank\">Wordpress SMS</a>."
2743
 
2744
- #~ msgid "Send Content Report"
2745
- #~ msgstr "أرسل المحتوى"
 
2746
 
2747
- #~ msgid "Enter the contents of the reports received."
2748
- #~ msgstr "أدخل محتويات التقارير الواردة."
 
2749
 
2750
- #~ msgid "Input data:"
2751
- #~ msgstr "إدخال البيانات:"
 
2752
 
2753
- #~ msgid "Show site stats in sidebar"
2754
- #~ msgstr "إظهار إحصائيات الموقع في الشريط الجانبي"
 
2755
 
2756
- #~ msgid "Wordpress Statistics"
2757
- #~ msgstr "احصائيات ووردبريس"
 
2758
 
2759
- #~ msgid "Complete statistics for your blog."
2760
- #~ msgstr "الإحصائيات الكاملة للمدونة الخاصة بك."
 
2761
 
2762
- #~ msgid ""
2763
- #~ "Facilities Wordpress Statistics not enabled! Please go to <a href=\"%s"
2764
- #~ "\">setting page</a> and enable statistics"
2765
- #~ msgstr ""
2766
- #~ "إضافة Wordpress Statistics غير مفعلة! الرجاء الذهاب الى <a href=\"%s"
2767
- #~ "\">صفحة الإعدادات</a> وقم بتفعيلها"
2768
 
2769
- #~ msgid ""
2770
- #~ "GeoIP collection is not active! Please go to <a href=\"%s\">Setting page "
2771
- #~ "> GeoIP</a> and enable this feature (GeoIP can detect the visitors "
2772
- #~ "country)"
2773
- #~ msgstr ""
2774
- #~ "مجموعة GeoIP غير نشطة! يرجى الذهاب الى <a href=\"%s\">صفحة الإعدادات > "
2775
- #~ "GeoIP</a> وقم بتمكين هذه الميزة (GeoIP يمكن الكشف عن بلد آخر)"
2776
 
2777
- #~ msgid "Visit plugin page"
2778
- #~ msgstr "زيارة صفحة الأضافة"
 
2779
 
2780
- #~ msgid ""
2781
- #~ "Table plugin does not exist! Please disable and re-enable the plugin."
2782
- #~ msgstr ""
2783
- #~ "هناك جدول مفقود في البرنامج المساعد! الرجاء تعطيل البرنامج المساعد ومن ثم "
2784
- #~ "تفعيلة مرة أخرى."
2785
 
2786
- #~ msgid "Number of rows in the <code>%sstatistics_useronline</code> table"
2787
- #~ msgstr "عدد الصفوف في الجدول <code>%sstatistics_useronline</code>"
 
2788
 
2789
- #~ msgid "Number of rows in the <code>%sstatistics_visitor</code> table"
2790
- #~ msgstr "عدد الصفوف في الجدول <code>%sstatistics_visitor</code>"
 
2791
 
2792
- #~ msgid "(See more)"
2793
- #~ msgstr "(عرض المزيد)"
 
2794
 
2795
- #~ msgid "Type date for last update"
2796
- #~ msgstr "اكتب تاريخ آخر تحديث"
 
2797
 
2798
- #~ msgid "English"
2799
- #~ msgstr "الانجليزية"
 
2800
 
2801
- #~ msgid "Persian"
2802
- #~ msgstr "الفارسية"
 
2803
 
2804
- #~ msgid "Admin Levels"
2805
- #~ msgstr "مستويات المشرف"
 
2806
 
2807
- #~ msgid "Statistical reporting settings"
2808
- #~ msgstr "إعدادات تقارير الإحصائيات"
 
2809
 
2810
- #~ msgid "Yahoo!"
2811
- #~ msgstr "ياهو!"
 
2812
 
2813
- #~ msgid "Bing"
2814
- #~ msgstr "بينج"
 
2815
 
2816
- #~ msgid "Empty"
2817
- #~ msgstr "تفريغ"
 
2818
 
2819
- #~ msgid "Chart Settings"
2820
- #~ msgstr "إعدادات الرسم البياني"
 
2821
 
2822
- #~ msgid "Firefox"
2823
- #~ msgstr " فَيَرفُكس"
 
2824
 
2825
- #~ msgid "IE"
2826
- #~ msgstr "اكسبلورر"
 
2827
 
2828
- #~ msgid "Ipad"
2829
- #~ msgstr "آيباد"
 
2830
 
2831
- #~ msgid "Android"
2832
- #~ msgstr "آندرويد"
 
2833
 
2834
- #~ msgid "Chrome"
2835
- #~ msgstr "كروم"
 
2836
 
2837
- #~ msgid "Safari"
2838
- #~ msgstr "سفاري"
 
2839
 
2840
- #~ msgid "Opera"
2841
- #~ msgstr "أوبرا"
 
2842
 
2843
- #~ msgid ""
2844
- #~ "Please donate to the plugin. With the help of plug-ins you can quickly "
2845
- #~ "spread."
2846
- #~ msgstr ""
2847
- #~ "يرجى التبرع لهذا البرنامج المساعد. وذلك لمساعدتنا في إضافة المكونات "
2848
- #~ "الاضافية في أسرع وقت."
2849
 
2850
- #~ msgid "Word"
2851
- #~ msgstr "كلمة"
 
2852
 
2853
- #~ msgid "Site"
2854
- #~ msgstr "الموقع"
 
2855
 
2856
- #~ msgid "Unknown"
2857
- #~ msgstr "غير معروف"
 
2858
 
2859
- #~ msgid "Province"
2860
- #~ msgstr "الولاية"
 
2861
 
2862
- #~ msgid "Display IP Information On-screen statistics"
2863
- #~ msgstr "عرض معلومات IP على شاشة الاحصائيات"
 
2864
 
2865
- #~ msgid ""
2866
- #~ "Showing the flag country and Visitor province name (May be a bit slow)"
2867
- #~ msgstr "عرض علم الدولة و محافظات الزوار (قد يكون بطئ بعض الشي)"
2868
 
2869
- #~ msgid "Added"
2870
- #~ msgstr "أضيفت"
 
2871
 
2872
- #~ msgid "value"
2873
- #~ msgstr "قيمة"
 
 
 
2874
 
2875
- #~ msgid "Was"
2876
- #~ msgstr "وكان"
 
2877
 
2878
- #~ msgid "low value"
2879
- #~ msgstr "تخفيض القيمة"
 
 
 
2880
 
2881
- #~ msgid "Thanks for your report!"
2882
- #~ msgstr "شكرا على التقرير الخاص بك!"
 
2883
 
2884
- #~ msgid "Error! Please Enter all field"
2885
- #~ msgstr "خطأ! الرجاء إدخال جميع الحقول"
 
2886
 
2887
- #~ msgid "All plugin data is deleted"
2888
- #~ msgstr "تم حذف جميع بيانات الإضافة"
 
 
 
 
2889
 
2890
- #~ msgid "plugin options have been deleted"
2891
- #~ msgstr "تم حذف خيارات الإضافة"
 
2892
 
2893
- #~ msgid "Plugin home page"
2894
- #~ msgstr "موقع الإضافة"
 
2895
 
2896
- #~ msgid "Stats Log"
2897
- #~ msgstr "دخول الإحصائيات"
 
2898
 
2899
- #~ msgid "Configuration"
2900
- #~ msgstr "التكوين"
 
2901
 
2902
- #~ msgid "Enable Statistics"
2903
- #~ msgstr "تمكين الاحصائيات"
 
2904
 
2905
- #~ msgid "Statistics are enabled."
2906
- #~ msgstr "تم تمكين الإحصائيات."
 
2907
 
2908
- #~ msgid "Statistics are disabled!"
2909
- #~ msgstr "الإحصائيات معطلة!"
 
2910
 
2911
- #~ msgid "General configuration"
2912
- #~ msgstr "التكوين العام"
 
2913
 
2914
- #~ msgid "Show decimals number"
2915
- #~ msgstr "عرض عدد عشرى"
 
2916
 
2917
- #~ msgid "Show number stats with decimal. For examle: 3,500"
2918
- #~ msgstr "إظهار ارقام الاحصائيات بالشكل العشري. مثال: 3,500"
 
2919
 
2920
- #~ msgid "Daily referer of search engines"
2921
- #~ msgstr "المرجعية يوميا من محركات البحث"
 
2922
 
2923
- #~ msgid "Can be calculated daily or total search engines"
2924
- #~ msgstr "يمكنك حساب محركات البحث بشكل يومي أو كلي"
 
2925
 
2926
- #~ msgid "Increase value of the total hits by"
2927
- #~ msgstr "زيادة قيمة إجمالي الزيارات من قبل"
 
2928
 
2929
- #~ msgid "Done"
2930
- #~ msgstr "تم"
 
2931
 
2932
- #~ msgid "Your total visit sum with this value"
2933
- #~ msgstr "ضع القيمة هنا لزيادة المجموع الكلي للزيارات"
 
2934
 
2935
- #~ msgid "Reduce value of the total hits by"
2936
- #~ msgstr "خفض قيمة إجمالي الزيارات من قبل"
 
2937
 
2938
- #~ msgid "Your total visit minus with this value"
2939
- #~ msgstr "ضع القيمة هنا لتقليص المجموع الكلي من الزيارات"
 
2940
 
2941
- #~ msgid "Number item for show Statistics"
2942
- #~ msgstr "عدد البنود الظاهرة في الاحصائيات"
 
2943
 
2944
- #~ msgid "Default 5"
2945
- #~ msgstr "الإفتراضي 5"
 
2946
 
2947
- #~ msgid "Number for submit item in Database and show that"
2948
- #~ msgstr "ضع عدد البنود المراد ظهورها في الاحصائيات"
 
2949
 
2950
- #~ msgid "Default 1"
2951
- #~ msgstr "الإفتراضي 1"
 
2952
 
2953
- #~ msgid "The CSS Class for the containing widget"
2954
- #~ msgstr "الـ CSS ـكلاس تحتوي على قطعة"
 
2955
 
2956
- #~ msgid "If empty. class=\"widget\" will be used"
2957
- #~ msgstr "اذا كانت فارغة class=\"القطعة\" سوف تستخدم"
 
2958
 
2959
- #~ msgid "Refresh Stats every"
2960
- #~ msgstr "تحديث الإحصائيات كل"
 
2961
 
2962
- #~ msgid "Second(s)"
2963
- #~ msgstr "(ثانية) ثواني"
 
2964
 
2965
- #~ msgid "Recommended"
2966
- #~ msgstr "موصى به"
 
2967
 
2968
- #~ msgid "To reduce pressure on the server, this defaults to 10 sec"
2969
- #~ msgstr "لتخفيف الضغط على الخادم، ضع القيمة الإفتراضية 10 ثواني"
 
2970
 
2971
- #~ msgid "Pagerank configuration"
2972
- #~ msgstr "إعدادات البيج رانك"
 
2973
 
2974
- #~ msgid "Your url for Google pagerank check"
2975
- #~ msgstr "رابط الفحص الخاص بك لجوجل بيج رانك"
 
2976
 
2977
- #~ msgid "If empty. you website url is used"
2978
- #~ msgstr "اذا كانت فارغة. سيتم أستخدام رابط موقعك"
 
2979
 
2980
- #~ msgid "Your url for Alexa pagerank check"
2981
- #~ msgstr "رابط الفحص الخاص بك لـ Alexa بيج رانك"
 
2982
 
2983
- #~ msgid "This plugin created by"
2984
- #~ msgstr "هذه الإضافة تم إنشاؤها بواسطة"
 
2985
 
2986
- #~ msgid "from"
2987
- #~ msgstr "من"
 
2988
 
2989
- #~ msgid "group"
2990
- #~ msgstr "مجموعة"
 
2991
 
2992
- #~ msgid "Language"
2993
- #~ msgstr "لغة"
 
2994
 
2995
- #~ msgid "by"
2996
- #~ msgstr "بواسطة"
 
2997
 
2998
- #~ msgid "for translate language files. please send files for"
2999
- #~ msgstr "لملفات ترجمة اللغة: الرجاء ارسال الملفات لـ"
 
3000
 
3001
- #~ msgid "Show Functions"
3002
- #~ msgstr "عرض وظائف"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3003
 
3004
- #~ msgid "User Online Live"
3005
- #~ msgstr "المتواجدين الآن"
 
3006
 
3007
- #~ msgid "Total Visit Live"
3008
- #~ msgstr "مجموع الزوار الآن"
 
3009
 
3010
- #~ msgid "Total Feedburner Subscribe"
3011
- #~ msgstr "مشتركي الخلاصات"
 
3012
 
3013
- #~ msgid "Google Pagerank"
3014
- #~ msgstr "جوجل بيج رانك"
 
 
3015
 
3016
- #~ msgid "Alexa Pagerank"
3017
- #~ msgstr "اليكسا بيج رانك"
 
3018
 
3019
- #~ msgid "Hide"
3020
- #~ msgstr "إخفاء"
 
 
3021
 
3022
- #~ msgid "Your Name"
3023
- #~ msgstr "اسمك"
 
3024
 
3025
- #~ msgid "Description Problem"
3026
- #~ msgstr "وصف المشكلة"
 
3027
 
3028
- #~ msgid "Send Problem"
3029
- #~ msgstr "ارسال مشكلة"
 
3030
 
3031
- #~ msgid "Delete all data, including tables and plugin options"
3032
- #~ msgstr "حذف جميع البيانات ، بما في ذلك الجداول وخيارات البرنامج المساعد"
 
3033
 
3034
- #~ msgid "Stats weblog"
3035
- #~ msgstr "احصائيات المدونة"
 
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 Wordpress Statistics in Bulgarian
2
- # This file is distributed under the same license as the Wordpress Statistics package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2014-10-14 17:14-0500\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: Poedit 1.6.9\n"
11
- "Project-Id-Version: Wordpress Statistics\n"
12
  "POT-Creation-Date: \n"
13
  "Last-Translator: \n"
14
  "Language-Team: \n"
15
  "Language: bg_BG\n"
16
 
17
- #: includes/log/widgets/about.php:8
18
- msgid "About WP Statistics Version %s"
19
- msgstr "За WP Statistics версия %s"
20
-
21
- #: includes/log/widgets/summary.php:106
22
- msgid "Date: %s"
23
- msgstr "Дата: %s"
 
 
24
 
25
- #: includes/log/widgets/summary.php:110
26
- msgid "Time: %s"
27
- msgstr "Време: %s"
28
 
29
- #: includes/optimization/delete-agents.php:14
30
- msgid "%s agent data deleted successfully."
31
- msgstr "%s агент данни изтрито успешно."
32
 
33
- #: includes/optimization/delete-platforms.php:14
34
- msgid "%s platform data deleted successfully."
35
- msgstr "%s платформа данни изтрито успешно."
36
 
37
- #: includes/optimization/empty.php:53
38
- msgid "%s table data deleted successfully."
39
- msgstr "%s таблични данни изтрито успешно."
40
 
41
- #: includes/optimization/purge-data.php:17
42
- #: includes/optimization/purge-data.php:27
43
- #: includes/optimization/purge-data.php:37
44
- #: includes/optimization/purge-data.php:47
45
- msgid "%s data older than %s days purged successfully."
46
- msgstr "%s данни по-стари от %s дни, прочистват успешно."
47
 
48
- #: includes/optimization/purge-data.php:19
49
- #: includes/optimization/purge-data.php:29
50
- #: includes/optimization/purge-data.php:39
51
- #: includes/optimization/purge-data.php:49
52
- msgid "No records found to purge from %s!"
53
- msgstr "Няма намерени за продухване от %s записи!"
54
 
55
- #: includes/optimization/tabs/wps-optimization-resources.php:44
56
- #: includes/optimization/tabs/wps-optimization-resources.php:55
57
- #: includes/optimization/tabs/wps-optimization-resources.php:66
58
- #: includes/optimization/tabs/wps-optimization-resources.php:77
59
- #: includes/optimization/tabs/wps-optimization-resources.php:88
60
- msgid "Number of rows in the %s table"
61
- msgstr "Брой редове в таблицата на %s"
62
 
63
- #: includes/optimization/tabs/wps-optimization-resources.php:211
64
- msgid "browscap Cache File"
65
- msgstr "browscap кеш файл"
66
 
67
- #: includes/optimization/tabs/wps-optimization-resources.php:220
68
- msgid "browscap cache file does not exist."
69
- msgstr "browscap кеш файл не съществува."
70
 
71
- #: includes/optimization/tabs/wps-optimization-resources.php:224
72
- msgid "The file size and date of the browscap cache file."
73
- msgstr "Размера на файла и датата на кеш файла на browscap."
 
 
 
74
 
75
- #: includes/settings/tabs/wps-about.php:24
76
- msgid ""
77
- "Come visit our great new %s and keep up to date on the latest news about WP "
78
- "Statistics."
79
- msgstr ""
80
- "Елате ни голям нов %s и поддържа актуална с последните новини за WP "
81
- "Statistics."
82
 
83
- #: includes/settings/tabs/wps-about.php:24
84
- msgid "website"
85
- msgstr "уебсайт"
86
 
87
- #: includes/settings/tabs/wps-about.php:40
88
- msgid ""
89
- "WP Statistics supports internationalization and we encourage our users to "
90
- "submit translations, please visit our %s to see the current status and %s if "
91
- "you would like to help."
92
- msgstr ""
93
- "WP Statistics подкрепя интернационализацията и ние насърчаваме потребителите "
94
- "да представят преводи, моля посетете нашия %s да видите текущото състояние и "
95
- "%s, ако искате да помогне."
96
 
97
- #: includes/settings/tabs/wps-about.php:40
98
- msgid "translation collaboration site"
99
- msgstr "сайт за съвместна работа на превод"
100
 
101
- #: includes/settings/tabs/wps-about.php:40
102
- msgid "drop us a line"
103
- msgstr "пишете ни линия"
104
 
105
- #: includes/settings/tabs/wps-about.php:52
106
- #: includes/settings/tabs/wps-about.php:53
107
- msgid "Have you read the %s?"
108
- msgstr "Чели ли сте на %s?"
109
 
110
- #: includes/settings/tabs/wps-about.php:52
111
- msgid "FAQs"
112
- msgstr "Често задавани въпроси"
113
 
114
- #: includes/settings/tabs/wps-about.php:53
115
- msgid "manual"
116
- msgstr "ръководство"
117
 
118
- #: includes/settings/tabs/wps-about.php:54
119
- msgid "Have you search the %s for a similar issue?"
120
- msgstr "Имате ли търси %s за подобен проблем?"
121
 
122
- #: includes/settings/tabs/wps-about.php:54
123
- msgid "support forum"
124
- msgstr "подкрепа форум"
125
 
126
- #: includes/settings/tabs/wps-about.php:70
127
- msgid ""
128
- "Then please open a new thread on the %s and we'll respond as soon as "
129
- "possible."
130
- msgstr ""
131
- "След това отворете нова тема на %s и ние ще отговорим възможно най-скоро."
132
 
133
- #: includes/settings/tabs/wps-about.php:70
134
- msgid "WordPress.org support forum"
135
- msgstr "WordPress.org подкрепа форум"
136
 
137
- #: includes/settings/tabs/wps-about.php:74
138
- msgid "Alternatively %s support is available as well."
139
- msgstr "Алтернативно %s поддръжка е наличен."
140
 
141
- #: includes/settings/tabs/wps-access-level.php:85
142
- msgid "See the %s for details on capability levels."
143
- msgstr "Вижте %s за повече информация на способности."
144
 
145
- #: includes/settings/tabs/wps-access-level.php:85
146
- msgid "WordPress Roles and Capabilities page"
147
- msgstr "Страница WordPress роли и възможности"
148
 
149
- #: includes/settings/tabs/wps-general.php:67
150
- msgid ""
151
- "This feature will not store IP addresses in the database but instead used a "
152
- "unique hash. The \"Store entire user agent string\" setting will be "
153
- "disabled if this is selected. You will not be able to recover the IP "
154
- "addresses in the future to recover location information if this is enabled."
155
- msgstr ""
156
- "Тази функция няма да съхранява IP адреси в базата данни, но вместо това "
157
- "използва уникален хашиш. \"Store целия потребителски агент string\" "
158
- "настройка ще бъде забранена, ако тази опция е избрана. Вие няма да можете да "
159
- "възстановите IP адресите в бъдеще да се възстанови информацията за "
160
- "местоположението, ако това е разрешено."
161
 
162
- #: includes/settings/tabs/wps-general.php:340
163
- msgid "Note: To send SMS text messages please install the %s plugin."
164
- msgstr ""
165
- "Забележка: За да изпратите SMS текстови съобщения моля инсталирайте %s "
166
- "плъгин."
167
 
168
- #: includes/settings/tabs/wps-general.php:340
169
- msgid "WordPress SMS"
170
- msgstr "WordPress SMS"
171
 
172
- #: wp-statistics.php:27
173
- msgid ""
174
- "ERROR: WP Statistics has detected an unsupported version of PHP, WP "
175
- "Statistics will not function without PHP Version "
176
- msgstr ""
177
- "ГРЕШКА: WP Statistics откри неподдържана версия на PHP, WP Statistics няма "
178
- "да функционира без PHP версия "
179
 
180
- #: wp-statistics.php:27
181
- msgid " or higher!"
182
- msgstr "или по-висока!"
183
 
184
- #: wp-statistics.php:81
185
- msgid ""
186
- "Online user tracking in WP Statistics is not enabled, please go to %s and "
187
- "enable it."
188
- msgstr ""
189
- "Онлайн потребител, проследяване в WP Statistics не е разрешен, моля отидете "
190
- "на %s и го активирате."
191
 
192
- #: wp-statistics.php:81 wp-statistics.php:84 wp-statistics.php:87
193
- msgid "setting page"
194
- msgstr "определянето страница"
195
 
196
- #: wp-statistics.php:84
197
- msgid ""
198
- "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
199
- msgstr ""
200
- "Хита проследяващия в WP Statistics не е разрешен, моля отидете на %s и го "
201
- "активирате."
202
 
203
- #: wp-statistics.php:87
204
- msgid ""
205
- "Visitor tracking in WP Statistics is not enabled, please go to %s and enable "
206
- "it."
207
- msgstr ""
208
- "Посетител проследяване в WP Statistics не е разрешен, моля отидете на %s и "
209
- "го активирате."
210
 
211
- #: wp-statistics.php:90
212
- msgid ""
213
- "GeoIP collection is not active, please go to %s and enable this feature."
214
- msgstr ""
215
- "GeoIP колекция не е активен, моля отидете на %s и активирате тази функция."
216
 
217
- #: wp-statistics.php:90
218
- msgid "Setting page > GeoIP"
219
- msgstr "Определянето страница > GeoIP"
220
 
221
- msgid "http://wp-statistics.com/"
222
- msgstr "http://WP-Statistics.com/"
 
223
 
224
- msgid "Mostafa Soufi & Greg Ross"
225
- msgstr "Mostafa Soufi & Грег Рос"
 
226
 
227
- #: includes/settings/wps-settings.php:90
228
- msgid "browscap"
229
- msgstr "browscap"
230
 
231
- #: wp-statistics.php:706
232
- msgid "Error downloading browscap database from: %s - %s"
233
- msgstr "Грешка при изтегляне на browscap база данни от: %s - %s"
234
 
235
- #: wp-statistics.php:794
236
- msgid "browscap database updated successfully!"
237
- msgstr "browscap база данни, актуализирани успешно!"
238
 
239
- #: wp-statistics.php:802
240
- msgid "browscap already at current version!"
241
- msgstr "browscap вече в текущата версия!"
242
 
243
- #: includes/optimization/tabs/wps-optimization-database.php:5
244
- msgid "Database Setup"
245
- msgstr "Настройка на база данни"
246
 
247
- #: includes/optimization/tabs/wps-optimization-database.php:10
248
- msgid "Re-run Install"
249
- msgstr "Изпълнете отново инсталиране"
250
 
251
- #: includes/optimization/tabs/wps-optimization-database.php:14
252
- msgid "Install Now!"
253
- msgstr "Инсталирай сега!"
254
 
255
- #: includes/optimization/tabs/wps-optimization-database.php:15
256
- msgid ""
257
- "If for some reason your installation of WP Statistics is missing the "
258
- "database tables or other core items, this will re-execute the install "
259
- "process."
260
- msgstr ""
261
- "Ако по някаква причина вашата инсталация на WP Statistics липсва таблиците в "
262
- "базата данни или други основни елементи, това отново ще изпълни процеса на "
263
- "инсталиране."
264
 
265
- #: includes/optimization/tabs/wps-optimization-resources.php:163
266
- msgid ""
267
- "If the PHP BC Math Extension is installed. BC Math is no longer required "
268
- "for the GeoIP code and is listed here only for historical reasons."
269
- msgstr ""
270
- "Ако PHP ПР.н.е математика разширението е инсталирано. ПР.н.е математика вече "
271
- "не е необходима за GeoIP код и е изброени тук само с исторически причини."
272
 
273
- #: includes/optimization/tabs/wps-optimization-resources.php:168
274
- msgid "File Info"
275
- msgstr "Инфо за файла"
276
 
277
- #: includes/optimization/tabs/wps-optimization-resources.php:173
278
- msgid "GeoIP Database"
279
- msgstr "GeoIP база данни"
280
 
281
- #: includes/optimization/tabs/wps-optimization-resources.php:184
282
- #: includes/optimization/tabs/wps-optimization-resources.php:203
283
- #: includes/optimization/tabs/wps-optimization-resources.php:222
284
- msgid ", created on "
285
- msgstr ", създаден на "
286
 
287
- #: includes/optimization/tabs/wps-optimization-resources.php:186
288
- msgid "The file size and date of the GeoIP database."
289
- msgstr "Размера на файла и датата на GeoIP базата данни."
290
 
291
- #: includes/optimization/tabs/wps-optimization-resources.php:192
292
- msgid "browscap.ini File"
293
- msgstr "browscap.ini файл"
294
 
295
- #: includes/optimization/tabs/wps-optimization-resources.php:201
296
- msgid "browscap.ini file does not exist."
297
- msgstr "browscap.ini файл не съществува."
298
 
299
- #: includes/optimization/tabs/wps-optimization-resources.php:205
300
- msgid "The file size and date of the browscap.ini file."
301
- msgstr "Размера на файла и датата на файла browscap.ini."
302
 
303
- #: includes/optimization/wps-optimization.php:51
304
- msgid "Install routine complete."
305
- msgstr "Инсталиране на ежедневието пълна."
306
 
307
- #: includes/settings/tabs/wps-browscap.php:17
308
- msgid "browscap settings"
309
- msgstr "browscap настройки"
310
 
311
- #: includes/settings/tabs/wps-browscap.php:22
312
- msgid "browscap usage"
313
- msgstr "използване на browscap"
314
 
315
- #: includes/settings/tabs/wps-browscap.php:28
316
- msgid "The browscap database will be downloaded and used to detect robots."
317
- msgstr ""
318
- "Базата данни на browscap ще бъдат изтеглени и използвани за откриване на "
319
- "роботи."
320
 
321
- #: includes/settings/tabs/wps-browscap.php:34
322
- msgid "Update browscap Info"
323
- msgstr "Актуализиране на browscap информация"
324
 
325
- #: includes/settings/tabs/wps-browscap.php:39
326
- msgid "Download browscap Database"
327
- msgstr "Изтегли browscap база данни"
328
 
329
- #: includes/settings/tabs/wps-browscap.php:46
330
- msgid "Schedule weekly update of browscap DB"
331
- msgstr "Планиране на седмична актуализация на browscap DB"
332
 
333
- #: includes/settings/tabs/wps-browscap.php:69
334
- msgid "Download of the browscap database will be scheduled for once a week."
335
- msgstr ""
336
- "Изтегляне на базата данни на browscap ще бъде насрочено за един път седмично."
337
 
338
- #: includes/optimization/tabs/wps-optimization-database.php:40
339
- msgid ""
340
- "Older installs of WP Statistics allow for duplicate entries in the visitors "
341
- "table in a corner case. Newer installs protect against this with a unique "
342
- "index on the table. To create the index on the older installs duplicate "
343
- "entries must be deleted first. Clicking \"Update Now\" will scan the "
344
- "vistitors table, delete duplicate entries and add the index."
345
- msgstr ""
346
- "По-старите инсталации на WP Statistics позволяват дублиране на записи в "
347
- "таблицата на посетителите в ъгъла случай. По-новите инсталира защита срещу "
348
- "това с уникален индекс на масата. За да създадете индекса на на по-старите "
349
- "инсталира дублираните записи трябва да бъдат изтрити първи. Щракнете върху "
350
- "\"Update Now\" ще сканира таблицата vistitors, изтриване на дублиращи се "
351
- "записи и да добавите към индекса."
352
-
353
- #: includes/optimization/tabs/wps-optimization-database.php:46
354
- msgid ""
355
- "Older installs of WP Statistics allow for duplicate entries in the visitors "
356
- "table in a corner case. Newer installs protect against this with a unique "
357
- "index on the table."
358
- msgstr ""
359
- "По-старите инсталации на WP Statistics позволяват дублиране на записи в "
360
- "таблицата на посетителите в ъгъла случай. По-новите инсталира защита срещу "
361
- "това с уникален индекс на масата."
362
 
363
- #: includes/optimization/tabs/wps-optimization-database.php:47
364
- msgid ""
365
- "Congratulations, your installation is already up to date, nothing to do."
366
- msgstr "Поздравления вашата инсталация е вече до дата, нищо общо."
367
 
368
- #: includes/settings/tabs/wps-about.php:55
369
- msgid "Have you search the Internet for any error messages you are receiving?"
370
- msgstr "Има ли търсене в интернет за всички съобщения за грешка, получавате?"
371
 
372
- #: includes/settings/tabs/wps-about.php:66
373
- msgid ""
374
- "Are you getting a blank or incomplete page displayed in your browser? Did "
375
- "you view the source for the page and check for any fatal errors?"
376
- msgstr ""
377
- "Получавате ли празни или непълни страница показва в браузъра си? Видя ли "
378
- "преглед на източника на страницата и проверете за фатални грешки?"
379
 
380
- #: includes/settings/tabs/wps-about.php:67
381
- msgid "Have you checked your PHP and web server error logs?"
382
- msgstr "Проверихте ли вашия PHP и уеб сървър грешка логове?"
383
 
384
- #: widget.php:15
385
- msgid "Show site stats in sidebar."
386
- msgstr "Показване на статистика на сайт в страничната лента."
 
 
387
 
388
- #: includes/log/last-search.php:97 includes/log/last-visitor.php:94
389
- #: includes/log/widgets/google.map.php:65 includes/log/widgets/jqv.map.php:59
390
- #: includes/log/widgets/recent.php:22 includes/log/widgets/words.php:25
391
- msgid "#hash#"
392
- msgstr "#hash #"
393
 
394
- #: includes/optimization/tabs/wps-optimization-updates.php:4
395
- msgid ""
396
- "This will replace all IP addresses in the database with hash values and "
397
- "cannot be undo, are you sure?"
398
- msgstr ""
399
- "Това ще замести всички IP адреси в базата данни с хашиш стойности и не може "
400
- "да се отмени, сигурен ли сте?"
401
 
402
- #: includes/optimization/tabs/wps-optimization-updates.php:26
403
- msgid ""
404
- "Updates any unknown location data in the database, this may take a while"
405
- msgstr ""
406
- "Актуализира неизвестно местоположение данни в базата данни, това може да "
407
- "отнеме известно време"
408
 
409
- #: includes/optimization/tabs/wps-optimization-updates.php:31
410
- #: includes/settings/tabs/wps-general.php:56
411
- msgid "IP Addresses"
412
- msgstr "IP адреси"
413
 
414
- #: includes/optimization/tabs/wps-optimization-updates.php:36
415
- #: includes/settings/tabs/wps-general.php:61
416
- msgid "Hash IP Addresses"
417
- msgstr "Хеш IP адреси"
418
 
419
- #: includes/optimization/tabs/wps-optimization-updates.php:41
420
- msgid ""
421
- "Replace IP addresses in the database with hash values, you will not be able "
422
- "to recover the IP addresses in the future to populate location information "
423
- "afterwards and this may take a while"
424
- msgstr ""
425
- "Замени IP адреси в базата данни с хашиш стойности, вие няма да можете да "
426
- "възстановите IP адресите в бъдеще да попълните местоположението информация "
427
- "след това и това може да отнеме известно време"
428
 
429
- #: includes/optimization/wps-optimization.php:43
430
- msgid "IP Addresses replaced with hash values."
431
- msgstr "IP адреси се заменят с хеш стойности."
432
 
433
- #: includes/settings/tabs/wps-access-level.php:149
434
- msgid "Force robot list update after upgrades"
435
- msgstr "Сила робот списък актуализация след ъпгрейд"
436
 
437
- #: includes/settings/tabs/wps-access-level.php:152
438
- msgid ""
439
- "Force the robot list to be reset to the default after an update to WP "
440
- "Statistics takes place. Note if this option is enabled any custom robots "
441
- "you have added to the list will be lost."
442
- msgstr ""
443
- "Сила списъка на робот, за да се възстанови по подразбиране след актуализация "
444
- "на WP Statistics се провежда. Забележка Ако тази опция е разрешена по "
445
- "потребителски роботи, вие сте добавили към списъка ще бъдат загубени."
446
 
447
- #: includes/settings/tabs/wps-general.php:40
448
- msgid "This will delete the manual when you save the settings, are you sure?"
449
- msgstr "Това ще изтрие ръчно, когато запишете настройките, сигурен ли сте?"
450
 
451
- #: includes/settings/tabs/wps-general.php:220
452
- msgid ""
453
- "By default WP Statistics displays an alert if any of the core features are "
454
- "disabled on every admin page, this option will disable these notices."
455
- msgstr ""
456
- "По подразбиране WP Statistics показва предупреждение, ако някой от основните "
457
- "функции са забранени на всяка страница, Админ, тази опция ще забраните тези "
458
- "съобщения."
459
 
460
- #: includes/settings/tabs/wps-general.php:226
461
- msgid "Delete the manual"
462
- msgstr "Изтриване на наръчника"
 
 
 
463
 
464
- #: includes/settings/tabs/wps-general.php:232
465
- msgid ""
466
- "By default WP Statistics stores the admin manual in the plugin directory (~5 "
467
- "meg), if this option is enabled it will be deleted now and during upgrades "
468
- "in the future."
469
- msgstr ""
470
- "По подразбиране WP Statistics съхранява администратор ръководство в плъгин "
471
- "директорията (~ 5 Мег), ако тази опция е включена тя ще бъде изтрита сега и "
472
- "по време на ъпгрейд в бъдеще."
473
 
474
- #: includes/optimization/tabs/wps-optimization-database.php:20
475
- msgid "Database Index"
476
- msgstr "Индекс на база данни"
477
-
478
- #: includes/optimization/tabs/wps-optimization-database.php:41
479
- msgid ""
480
- "This operation could take a long time on installs with many rows in the "
481
- "visitors table."
482
- msgstr ""
483
- "Тази операция може да отнеме много време на настанявам с много редове в "
484
- "таблицата на посетителите."
485
-
486
- #: includes/optimization/wps-optimization.php:129
487
- msgid "Database"
488
- msgstr "База данни"
489
-
490
- #: includes/settings/tabs/wps-general.php:298
491
- msgid "Schedule"
492
- msgstr "График"
493
-
494
- #: includes/settings/tabs/wps-general.php:328
495
- msgid "Send reports via"
496
- msgstr "Изпрати отчетите чрез"
497
-
498
- #: includes/settings/tabs/wps-general.php:347
499
- msgid "E-mail addresses"
500
- msgstr "Имейл адреси"
501
-
502
- #: includes/settings/tabs/wps-general.php:352
503
- msgid ""
504
- "A comma separated list of e-mail addresses to send the reports to if e-mail "
505
- "is selected above."
506
- msgstr ""
507
- "Списък на имейл адреси за изпращане на доклади до ако имейл е избран по-"
508
- "горе, разделени със запетая."
509
-
510
- #: includes/settings/tabs/wps-general.php:358
511
- msgid "Report body"
512
- msgstr "Тялото на доклада"
513
-
514
- #: includes/settings/tabs/wps-overview-display.php:75
515
- msgid "The following three items are global to all users."
516
- msgstr "Следните три елемента са глобални за всички потребители."
517
-
518
- #: includes/settings/tabs/wps-overview-display.php:80
519
- msgid "Map type"
520
- msgstr "Тип карта"
521
-
522
- #: includes/settings/tabs/wps-overview-display.php:86
523
- msgid "JQVMap"
524
- msgstr "JQVMap"
525
-
526
- #: includes/settings/tabs/wps-overview-display.php:93
527
- msgid ""
528
- "The \"Google\" option will use Google's mapping service to plot the recent "
529
- "visitors (requires access to Google)."
530
- msgstr ""
531
- "\"Google\" опция ще използва на Google картографска услуга да начертаете "
532
- "последните посетители (изисква достъп до Google)."
533
-
534
- #: includes/settings/tabs/wps-overview-display.php:94
535
- msgid ""
536
- "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the "
537
- "recent visitors (requires no extenral services)."
538
- msgstr ""
539
- "\"JQVMap\" опция ще използва JQVMap библиотека javascript картографиране да "
540
- "начертаете последните посетители (изисква extenral услуги)."
541
-
542
- #: includes/settings/tabs/wps-overview-display.php:118
543
- msgid ""
544
- "This feature may cause a performance degradation when viewing statistics and "
545
- "is only valid if the map type is set to \"Google\"."
546
- msgstr ""
547
- "Тази функция може да доведе до намаляване на производителността, когато "
548
- "разглеждате статистиката и е валидно, ако типът на картата е настроено на "
549
- "\"Google само\"."
550
-
551
- #: includes/log/all-browsers.php:50
552
- msgid "Browsers by type"
553
- msgstr "Браузъри по вид"
554
-
555
- #: includes/log/all-browsers.php:133
556
- msgid "Browsers by platform"
557
- msgstr "Браузъри по платформа"
558
-
559
- #: includes/log/exclusions.php:97
560
- msgid "Excluded hits in the last"
561
- msgstr "Изключени хитове през последните"
562
-
563
- #: includes/log/hit-statistics.php:36
564
- msgid "Hits Statistics Chart"
565
- msgstr "Хитове статистика диаграма"
566
-
567
- #: includes/log/hit-statistics.php:69 includes/log/widgets/hits.php:39
568
- msgid "Hits in the last"
569
- msgstr "Хитове през последните"
570
-
571
- #: includes/log/last-search.php:30 includes/log/widgets/words.php:16
572
- #: includes/settings/tabs/wps-overview-display.php:36
573
- msgid "Latest Search Words"
574
- msgstr "Последни думи за търсене"
575
-
576
- #: includes/log/last-search.php:62
577
- msgid "Latest Search Word Statistics"
578
- msgstr "Последни Търсене дума статистика"
579
-
580
- #: includes/log/last-visitor.php:61
581
- msgid "Recent Visitor Statistics"
582
- msgstr "Последните посетител статистика"
583
-
584
- #: includes/log/widgets/google.map.php:9 includes/log/widgets/jqv.map.php:9
585
- msgid "Today Visitors Map"
586
- msgstr "Днес посетителите карта"
587
-
588
- #: includes/log/widgets/summary.php:8
589
- msgid "Summary"
590
- msgstr "Резюме"
591
-
592
- #: includes/log/widgets/summary.php:13
593
- msgid "User(s) Online"
594
- msgstr "Потребител(и) онлайн"
595
-
596
- #: includes/log/widgets/browsers.php:45
597
- msgid "Top 10 Browsers"
598
- msgstr "Топ 10 браузъри"
599
-
600
- #: includes/log/top-referring.php:34 includes/log/top-referring.php:49
601
- #: includes/log/widgets/referring.php:13
602
- #: includes/settings/tabs/wps-overview-display.php:26
603
- msgid "Top Referring Sites"
604
- msgstr "Топ Препращащи сайтове"
605
-
606
- #: includes/log/widgets/about.php:16
607
- msgid "Rate and Review"
608
- msgstr "И преглед"
609
 
610
- #: includes/log/widgets/about.php:20
611
- msgid "More Information"
612
- msgstr "Повече информация"
 
 
613
 
614
- #: includes/log/widgets/about.php:29 includes/settings/tabs/wps-about.php:12
615
- msgid ""
616
- "This product includes GeoLite2 data created by MaxMind, available from %s."
617
- msgstr ""
618
- "Този продукт съдържа GeoLite2 данни, създадени от MaxMind, достъпни от %s."
619
 
620
- #: includes/log/search-statistics.php:77 includes/log/widgets/search.php:46
621
- msgid "Search engine referrals in the last"
622
- msgstr "Търсене двигател референции в последните"
 
 
623
 
624
- #: includes/log/search-statistics.php:98 includes/log/widgets/search.php:67
625
- msgid "Number of referrals"
626
- msgstr "Брой препращания"
 
 
627
 
628
- #: includes/log/widgets/pages.php:13
629
- msgid "Top 10 Pages"
630
- msgstr "Топ 10 страници"
 
631
 
632
- #: includes/log/search-statistics.php:17 includes/log/search-statistics.php:36
633
- msgid "Search Engine Referral Statistics"
634
- msgstr "Търсене двигател сезиране статистика"
635
 
636
- #: includes/settings/tabs/wps-about.php:8
637
- msgid "WP Statistics V%s"
638
- msgstr "WP Statistics V %s"
 
639
 
640
- #: includes/settings/tabs/wps-about.php:20
641
- msgid "Visit Us Online"
642
- msgstr "Посетете ни онлайн"
643
 
644
- #: includes/settings/tabs/wps-about.php:28
645
- msgid "Rate and Review at WordPress.org"
646
- msgstr "И преглед в WordPress.org"
647
 
648
- #: includes/settings/tabs/wps-about.php:32
649
- msgid "Thanks for installing WP Statistics, we encourage you to submit a "
650
- msgstr ""
651
- "Благодаря за инсталиране на WP Statistics, ние ви препоръчваме да изпратите "
652
 
653
- #: includes/settings/tabs/wps-about.php:32
654
- msgid "rating and review"
655
- msgstr "Оценка и преглед"
656
 
657
- #: includes/settings/tabs/wps-about.php:32
658
- msgid "over at WordPress.org. Your feedback is greatly appreciated!"
659
- msgstr "над в WordPress.org. Вашето мнение е много оценявам!"
 
 
660
 
661
- #: includes/settings/tabs/wps-about.php:49
662
- msgid ""
663
- "We're sorry you're having problem with WP Statistics and we're happy to help "
664
- "out. Here are a few things to do before contacting us:"
665
- msgstr ""
666
- "Ние сме съжалявам, имате проблем с WP Statistics и ние сме щастливи да "
667
- "помогне. Ето няколко неща, за да направите преди да се свържете с нас:"
668
 
669
- #: includes/settings/tabs/wps-about.php:58
670
- msgid "And a few things to double-check:"
671
- msgstr "И няколко неща, за да проверете отново:"
672
 
673
- #: includes/settings/tabs/wps-about.php:61
674
- msgid "How's your memory_limit in php.ini?"
675
- msgstr "Как е вашата memory_limit в php.ini?"
676
 
677
- #: includes/settings/tabs/wps-about.php:62
678
- msgid "Have you tried disabling any other plugins you may have installed?"
679
- msgstr ""
680
- "Били ли сте опитвали Деактивирането на всички други плъгини, които сте "
681
- "инсталирали?"
682
 
683
- #: includes/settings/tabs/wps-about.php:63
684
- msgid "Have you tried using the default WordPress theme?"
685
- msgstr "Били ли сте опитвали използване на подразбиране WordPress тема?"
686
 
687
- #: includes/settings/tabs/wps-about.php:64
688
- msgid "Have you double checked the plugin settings?"
689
- msgstr "Имате ли двойно проверени настройките на плъгин?"
690
 
691
- #: includes/settings/tabs/wps-about.php:65
692
- msgid "Do you have all the required PHP extensions installed?"
693
- msgstr "Имате ли всички необходими PHP разширения инсталирани?"
694
 
695
- #: includes/settings/tabs/wps-about.php:70
696
- msgid "Still not having any luck?"
697
- msgstr "Все още не е късм?"
698
 
699
- #: includes/optimization/tabs/wps-optimization-export.php:17
700
- #: includes/optimization/tabs/wps-optimization-export.php:35
701
- #: includes/optimization/tabs/wps-optimization-purging.php:128
702
- #: includes/optimization/tabs/wps-optimization-purging.php:169
703
- #: includes/optimization/tabs/wps-optimization-purging.php:193
704
- #: includes/settings/tabs/wps-general.php:303
705
- #: includes/settings/tabs/wps-general.php:333
706
- msgid "Please select"
707
- msgstr "Моля изберете"
708
 
709
- #: includes/settings/tabs/wps-general.php:365
710
- msgid ""
711
- "Any shortcode supported by your installation of WordPress, include all "
712
- "shortcodes for WP Statistics (see the admin manual for a list of codes "
713
- "available) are supported in the body of the message."
714
- msgstr ""
715
- "Някакви shortcode, се поддържат от вашата инсталация на WordPress, включва "
716
- "всички shortcodes за WP Statistics (виж ръководство за списък на наличните "
717
- "кодове на администратор) се поддържат в тялото на съобщението."
718
 
719
- #: includes/settings/tabs/wps-general.php:368
720
- msgid ""
721
- "Input data codes are now deprecated and will be removed in a future version "
722
- "of WP Statistics, please use the appropriate shortcodes, they are included "
723
- "here only for historical purposes:"
724
- msgstr ""
725
- "Кодове за въвеждане на данни сега са остарели и ще бъдат отстранени в бъдеща "
726
- "версия на WP Statistics, моля, използвайте подходящи shortcodes, тук са "
727
- "включени само за исторически цели:"
728
 
729
- #: includes/settings/tabs/wps-geoip.php:22
730
- msgid ""
731
- "IP location services provided by GeoLite2 data created by MaxMind, available "
732
- "from %s."
733
- msgstr ""
734
- "IP местоположение услуги, предоставяни от GeoLite2 данни, създадени от "
735
- "MaxMind, достъпни от %s."
736
 
737
- #: includes/settings/tabs/wps-overview-display.php:23
738
- #: includes/settings/tabs/wps-overview-display.php:32
739
- msgid "None"
740
- msgstr "Няма"
741
 
742
- #: includes/settings/tabs/wps-overview-display.php:28
743
- #: includes/settings/wps-settings.php:92
744
- msgid "About"
745
- msgstr "За"
746
 
747
- #: includes/settings/tabs/wps-overview-display.php:123
748
- msgid "Widgets to Display"
749
- msgstr "Джаджи за показване"
750
 
751
- #: includes/settings/tabs/wps-overview-display.php:132
752
- msgid ""
753
- "The following items are unique to each user. If you do not select the "
754
- "'About' widget it will automatically be displayed in the last positon of "
755
- "column A."
756
- msgstr ""
757
- "Следните елементи са уникални за всеки потребител. Ако не изберете \"За\" "
758
- "джаджа автоматично ще бъдат показани в на последните позицията на колоната A."
759
 
760
- #: includes/settings/tabs/wps-overview-display.php:137
761
  msgid "Slot"
762
  msgstr "Слот"
763
 
764
- #: includes/settings/tabs/wps-overview-display.php:141
765
  msgid "Column A"
766
  msgstr "Колона А"
767
 
768
- #: includes/settings/tabs/wps-overview-display.php:145
769
  msgid "Column B"
770
  msgstr "Колона B"
771
 
772
- #: includes/settings/tabs/wps-overview-display.php:151
773
  msgid "Slot 1"
774
  msgstr "Слот 1"
775
 
776
- #: includes/settings/tabs/wps-overview-display.php:181
777
  msgid "Slot 2"
778
  msgstr "Слот 2"
779
 
780
- #: includes/settings/tabs/wps-overview-display.php:211
781
  msgid "Slot 3"
782
  msgstr "Слот 3"
783
 
784
- #: includes/settings/tabs/wps-overview-display.php:241
785
  msgid "Slot 4"
786
  msgstr "Слот 4"
787
 
788
- #: includes/settings/tabs/wps-overview-display.php:271
789
  msgid "Slot 5"
790
  msgstr "Слот 5"
791
 
792
- #: includes/settings/tabs/wps-overview-display.php:301
793
  msgid "Slot 6"
794
  msgstr "Слот за 6"
795
 
796
- #: includes/settings/tabs/wps-overview-display.php:305
 
797
  msgid "N/A"
798
  msgstr "N/A"
799
 
800
- #: widget.php:280
801
- msgid "Search Engine Referred"
802
- msgstr "Търсачката по"
803
 
804
- #: schedule.php:10
805
- msgid "Once Weekly"
806
- msgstr "Веднъж седмично"
807
 
808
- #: schedule.php:17
809
- msgid "Once Every 2 Weeks"
810
- msgstr "Веднъж на всеки 2 седмици"
811
 
812
- #: schedule.php:24
813
- msgid "Once Every 4 Weeks"
814
- msgstr "Веднъж на всеки 4 седмици"
815
 
816
- #: wp-statistics.php:39
817
- msgid "Complete statistics for your WordPress site."
818
- msgstr "Пълна статистика за вашия сайт WordPress."
819
 
820
- #: includes/log/widgets/about.php:15
821
- msgid "Website"
822
- msgstr "Уебсайт"
823
 
824
- #: includes/log/top-referring.php:117 includes/log/widgets/referring.php:19
825
- msgid "References"
826
- msgstr "Препратки"
827
 
828
- #: includes/optimization/tabs/wps-optimization-resources.php:33
829
- msgid "PHP Memory Limit"
830
- msgstr "PHP памет граница"
831
 
832
- #: includes/optimization/tabs/wps-optimization-resources.php:38
833
- msgid "The memory limit a script is allowed to consume, set in php.ini."
834
- msgstr ""
835
- "Памет граница скрипт е разрешено да се консумират, определени в php.ini."
836
 
837
- #: wp-statistics.php:38
838
- msgid "WP Statistics"
839
- msgstr "WP Statistics"
840
 
841
- #: wp-statistics.php:164
842
- msgid "Visit WordPress.org page"
843
- msgstr "Посетете страницата на WordPress.org"
844
 
845
- #: includes/log/page-statistics.php:29
846
- msgid "Page Trend for Post ID"
847
- msgstr "Страница тенденция за пост номер"
848
 
849
- #: includes/log/page-statistics.php:48
850
- msgid "Page Trend"
851
- msgstr "Страница тенденция"
852
 
853
- #: includes/log/page-statistics.php:68
854
- msgid "Page Trending Stats"
855
- msgstr "Страница тенденция статистика"
856
 
857
- #: includes/settings/tabs/wps-access-level.php:97
858
- msgid "Record exclusions"
859
- msgstr "Запис изключения"
860
 
861
- #: includes/settings/tabs/wps-access-level.php:130
862
- msgid "Robot list"
863
- msgstr "Робот списък"
864
 
865
- #: includes/settings/tabs/wps-access-level.php:157
866
- msgid "Excluded IP address list"
867
- msgstr "Изключените IP адресен списък"
868
 
869
- #: includes/settings/tabs/wps-access-level.php:160
870
- msgid ""
871
- "A list of IP addresses and subnet masks (one per line) to exclude from "
872
- "statistics collection (both 192.168.0.0/24 and 192.168.0.0/255.255.255.0 "
873
- "formats are accepted). To specify an IP address only, use a subnet value of "
874
- "32 or 255.255.255.255."
875
- msgstr ""
876
- "Списък на IP адреси и подмрежа маски (по един на ред) да се изключат от "
877
- "статистиката колекция (192.168.0.0/24 и 192.168.0.0/255.255.255.0 формати се "
878
- "приемат). За да зададете IP адрес само, използвайте подмрежа стойност на 32 "
879
- "или 255.255.255.255."
880
 
881
- #: includes/settings/tabs/wps-access-level.php:172
882
- msgid "Excluded login page"
883
- msgstr "Изключените вход страница"
884
 
885
- #: includes/settings/tabs/wps-access-level.php:179
886
- msgid "Excluded admin pages"
887
- msgstr "Изключените администратор страници"
888
 
889
- #: includes/settings/tabs/wps-general.php:72
890
- msgid "Users Online"
891
- msgstr "Потребители онлайн"
 
 
892
 
893
- #: includes/settings/tabs/wps-general.php:77
894
- msgid "User online"
895
- msgstr "Потребител онлайн"
896
 
897
- #: includes/settings/tabs/wps-general.php:172
898
- msgid "Track all pages"
899
- msgstr "Проследяване на всички страници"
 
900
 
901
- #: includes/settings/tabs/wps-general.php:184
902
- msgid "Disable hits column in post/pages list"
903
- msgstr "Забрани хитове колона пост/страници списък"
 
904
 
905
- #: includes/settings/tabs/wps-general.php:195
906
- msgid "Miscellaneous"
907
- msgstr "Разни"
 
908
 
909
- #: wp-statistics.php:164
910
- msgid "Click here to visit the plugin on WordPress.org"
911
- msgstr "Щракнете тук, за да посетите плъгин от WordPress.org"
 
912
 
913
- #: wp-statistics.php:167
914
- msgid "Click here to rate and review this plugin on WordPress.org"
915
- msgstr ""
916
- "Щракнете тук, за да оцените и да преразгледа този плъгин от WordPress.org"
917
 
918
- #: wp-statistics.php:167
919
- msgid "Rate this plugin"
920
- msgstr "Оцени този плъгин"
 
921
 
922
- #: wp-statistics.php:211
923
- msgid "WP Statistics - Hits"
924
- msgstr "WP-статистика - хитове"
 
925
 
926
- #: wp-statistics.php:599
927
- msgid "Error downloading GeoIP database from: %s - %s"
928
- msgstr "Грешка при изтегляне на базата от данни от GeoIP: %s - %s"
 
929
 
930
- #: widget.php:108 widget.php:277
931
- msgid "Total Page Views"
932
- msgstr "Общо изгледи на страница"
 
933
 
934
- #: includes/settings/tabs/wps-general.php:155
935
- #: includes/settings/tabs/wps-general.php:160 wp-statistics.php:259
936
- msgid "Pages"
937
- msgstr "Страници"
938
 
939
- #: wp-statistics.php:266
940
- msgid "Manual"
941
- msgstr "Ръководство"
 
942
 
943
- #: wp-statistics.php:364
944
- msgid "Download ODF file"
945
- msgstr "Изтегляне на ODF файл"
 
946
 
947
- #: wp-statistics.php:365
948
- msgid "Download HTML file"
949
- msgstr "Изтегли HTML файл"
 
950
 
951
- #: wp-statistics.php:369
952
- msgid "Manual file not found."
953
- msgstr "Ръчно файлът не е намерен."
 
954
 
955
- #: includes/log/exclusions.php:54
956
- msgid "Exclusions Statistics"
957
- msgstr "Изключения статистика"
958
 
959
- #: includes/settings/tabs/wps-overview-display.php:37
960
- msgid "Top Pages Visited"
961
- msgstr "Най-посещаваните страници"
962
 
963
- #: includes/log/top-pages.php:160 includes/log/widgets/pages.php:27
964
- msgid "No page title found"
965
- msgstr "Няма намерени заглавието на страницата"
 
966
 
967
- #: includes/log/top-pages.php:13 includes/log/top-pages.php:132
968
- msgid "Top Pages"
969
- msgstr "Топ страници"
970
 
971
- #: includes/log/top-pages.php:20
972
- msgid "Top 5 Pages Trends"
973
- msgstr "Топ 5 страници тенденции"
974
 
975
- #: includes/log/top-pages.php:49
976
- msgid "Top 5 Page Trending Stats"
977
- msgstr "Топ 5 страница тенденция статистика"
978
 
979
- #: includes/log/page-statistics.php:89 includes/log/top-pages.php:70
980
- msgid "Number of Hits"
981
- msgstr "Брой посещения"
982
 
983
- #: manual/manual.php:29
984
- msgid "Manual not found: %s"
985
- msgstr "Ръководството не е намерен: %s"
986
 
987
- #: manual/manual.php:39
988
- msgid "Invalid file type selected: %s"
989
- msgstr "Невалиден тип файл избран: %s"
990
 
991
- #: widget.php:116
992
- msgid "Search Engine referred"
993
- msgstr "Търсачката по"
994
 
995
- #: includes/optimization/tabs/wps-optimization-export.php:47
996
- msgid "Include Header Row"
997
- msgstr "Включва заглавен ред"
998
 
999
- #: includes/optimization/tabs/wps-optimization-export.php:52
1000
- msgid "Include a header row as the first line of the exported file."
1001
- msgstr "Включва заглавен ред на първия ред от експортирания файл."
1002
 
1003
- #: includes/optimization/tabs/wps-optimization-resources.php:125
1004
- msgid "PHP Safe Mode"
1005
- msgstr "PHP безопасен режим"
 
 
1006
 
1007
- #: includes/optimization/tabs/wps-optimization-resources.php:130
1008
- msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
1009
- msgstr ""
1010
- "Се сигурния режим на PHP активни. GeoIP код не се поддържа в безопасен режим."
1011
 
1012
- #: includes/settings/tabs/wps-geoip.php:106
1013
- msgid "GeoIP collection is disabled due to the following reasons:"
1014
- msgstr "GeoIP колекция е забранена поради следните причини:"
1015
 
1016
- #: includes/settings/tabs/wps-geoip.php:126
1017
- msgid ""
1018
- "PHP safe mode detected! GeoIP collection is not supported with PHP's safe "
1019
- "mode enabled!"
1020
- msgstr ""
1021
- "Безопасен режим PHP открити! GeoIP колекция не се поддържа на PHP защитен "
1022
- "режим!"
1023
 
1024
- #: includes/settings/tabs/wps-general.php:214
1025
- msgid "Hide admin notices about non active features"
1026
- msgstr "Скрий администратор обявления за не са активни функции"
1027
 
1028
- #: includes/settings/tabs/wps-general.php:237
1029
- msgid "Search Enginges"
1030
- msgstr "Търсене Enginges"
 
 
1031
 
1032
- #: includes/settings/tabs/wps-general.php:242
1033
- msgid ""
1034
- "Disabling all search engines is not allowed, doing so will result in all "
1035
- "search engines being active."
1036
- msgstr ""
1037
- "Деактивирането на всички търсещи машини не е позволено, това ще доведе до "
1038
- "всички търсещи машини са активни."
1039
 
1040
- #: includes/settings/tabs/wps-general.php:257
1041
- msgid "disable"
1042
- msgstr "забрани"
1043
 
1044
- #: includes/settings/tabs/wps-general.php:258
1045
- msgid "Disable %s from data collection and reporting."
1046
- msgstr "Изключете %s от събирането на данни и докладване."
1047
 
1048
- #: includes/optimization/tabs/wps-optimization-resources.php:147
1049
- msgid "cURL Version"
1050
- msgstr "Навийте версия"
1051
 
1052
- #: includes/optimization/tabs/wps-optimization-resources.php:151
1053
- msgid "cURL not installed"
1054
- msgstr "Навийте не е инсталиран"
1055
 
1056
- #: includes/optimization/tabs/wps-optimization-resources.php:152
1057
- msgid ""
1058
- "The PHP cURL Extension version you are running. cURL is required for the "
1059
- "GeoIP code, if it is not installed GeoIP will be disabled."
1060
- msgstr ""
1061
- "PHP къдря версия на разширение, която изпълнявате. Навийте се изисква за "
1062
- "GeoIP код, ако не е инсталиран GeoIP ще бъде забранена."
1063
 
1064
- #: includes/optimization/tabs/wps-optimization-resources.php:158
1065
- msgid "BC Math"
1066
- msgstr "Математика ПР.н.е."
 
1067
 
1068
- #: includes/optimization/tabs/wps-optimization-resources.php:162
1069
- msgid "Installed"
1070
- msgstr "Инсталирани"
 
1071
 
1072
- #: includes/optimization/tabs/wps-optimization-resources.php:162
1073
- msgid "Not installed"
1074
- msgstr "Не е инсталиран"
 
1075
 
1076
- #: includes/settings/tabs/wps-geoip.php:114
1077
- msgid ""
1078
- "GeoIP collection requires the cURL PHP extension and it is not loaded on "
1079
- "your version of PHP!"
1080
- msgstr ""
1081
- "GeoIP колекция изисква разширение на PHP къдря и тя не е заредена на вашата "
1082
- "версия на PHP!"
1083
 
1084
- #: includes/settings/tabs/wps-geoip.php:120
1085
- msgid ""
1086
- "GeoIP collection requires the BC Math PHP extension and it is not loaded on "
1087
- "your version of PHP!"
1088
- msgstr ""
1089
- "GeoIP колекция изисква ПР.н.е математика PHP продължаване и то не е заредена "
1090
- "на вашата версия на PHP!"
1091
 
1092
- #: includes/functions/geoip-populate.php:26
1093
- msgid ""
1094
- "Unable to load the GeoIP database, make sure you have downloaded it in the "
1095
- "settings page."
1096
- msgstr ""
1097
- "Не може да зареди GeoIP базата данни, се уверете, че сте го изтеглили в "
1098
- "страницата Настройки."
1099
 
1100
- #: includes/optimization/tabs/wps-optimization-resources.php:182
1101
- msgid "Database file does not exist."
1102
- msgstr "Файл от база данни не съществува."
 
1103
 
1104
- #: includes/log/last-visitor.php:59
1105
- msgid "Search for"
1106
- msgstr "Търсене за"
1107
 
1108
- #: includes/log/widgets/browsers.php:8 includes/log/widgets/countries.php:11
1109
- #: includes/log/widgets/hits.php:8 includes/log/widgets/pages.php:13
1110
- #: includes/log/widgets/recent.php:9 includes/log/widgets/referring.php:13
1111
- #: includes/log/widgets/search.php:8 includes/log/widgets/words.php:16
1112
- msgid "More"
1113
- msgstr "Повече"
1114
 
1115
- #: includes/settings/tabs/wps-general.php:269
1116
- msgid "Include totals"
1117
- msgstr "Включва общи суми"
1118
 
1119
- #: includes/settings/tabs/wps-general.php:275
1120
- msgid ""
1121
- "Add a total line to charts with multiple values, like the search engine "
1122
- "referrals"
1123
- msgstr ""
1124
- "Добавяне на обща линия за диаграми с множество стойности, като търсене "
1125
- "двигател референции"
1126
 
1127
- #: includes/settings/tabs/wps-overview-display.php:100
1128
- msgid "Disable map"
1129
- msgstr "Забраняване на картата"
1130
 
1131
- #: includes/settings/tabs/wps-overview-display.php:106
1132
- msgid "Disable the map display"
1133
- msgstr "Забраняване на показването на картите"
1134
 
1135
- #: includes/settings/tabs/wps-overview-display.php:112
1136
- msgid "Get country location from Google"
1137
- msgstr "Се страна местоположение от Google"
1138
 
1139
- #: includes/log/exclusions.php:8
1140
- msgid ""
1141
- "Attention: Exclusion are not currently set to be recorded, the results below "
1142
- "may not reflect current statistics!"
1143
- msgstr ""
1144
- "Внимание: Изключване не са в момента зададени да се отчита, по-долу "
1145
- "резултатите може да не отразява текущата статистика!"
1146
 
1147
- #: includes/log/exclusions.php:118
1148
- msgid "Number of excluded hits"
1149
- msgstr "Броя на изключените хитове"
1150
 
1151
- #: includes/settings/tabs/wps-access-level.php:86
1152
- msgid ""
1153
- "Hint: manage_network = Super Admin Network, manage_options = Administrator, "
1154
- "edit_others_posts = Editor, publish_posts = Author, edit_posts = "
1155
- "Contributor, read = Everyone."
1156
- msgstr ""
1157
- "Съвет: manage_network = супер администратор мрежа, manage_options = "
1158
- "администратор, edit_others_posts = редактор, publish_posts = автор, "
1159
- "edit_posts = сътрудник, прочетете = всеки."
1160
 
1161
- #: includes/settings/tabs/wps-access-level.php:99
1162
- #: includes/settings/tabs/wps-access-level.php:151
1163
- msgid "Enable"
1164
- msgstr "Разреши"
1165
 
1166
- #: includes/settings/tabs/wps-access-level.php:100
1167
- msgid ""
1168
- "This will record all the excluded hits in a separate table with the reasons "
1169
- "why it was excluded but no other information. This will generate a lot of "
1170
- "data but is useful if you want to see the total number of hits your site "
1171
- "gets, not just actual user visits."
1172
- msgstr ""
1173
- "Това ще запише всички изключени хитове в отделна таблица с причините, защо е "
1174
- "изключен, но никаква друга информация. Това ще генерира много данни, но е "
1175
- "полезно, ако искате да видите общия брой на посещения вашия сайт получава, "
1176
- "не само действителен потребител посещения."
1177
 
1178
- #: includes/settings/tabs/wps-access-level.php:168
1179
- msgid "Site URL Exclusions"
1180
- msgstr "Сайт URL изключения"
1181
 
1182
- #: includes/settings/tabs/wps-access-level.php:175
1183
- msgid "Exclude the login page for registering as a hit."
1184
- msgstr "Изключване на страницата за вход за регистриране като хит."
1185
 
1186
- #: includes/settings/tabs/wps-access-level.php:182
1187
- msgid "Exclude the admin pages for registering as a hit."
1188
- msgstr "Изключи администратор страници за регистриране като хит."
1189
 
1190
- #: includes/settings/tabs/wps-access-level.php:93 wp-statistics.php:254
1191
- msgid "Exclusions"
1192
- msgstr "Изключения"
1193
 
1194
- #: includes/log/exclusions.php:68
1195
- msgid "Total Exclusions: %s"
1196
- msgstr "Общо изключения: %s"
1197
 
1198
- #: includes/log/exclusions.php:75
1199
- msgid "Exclusions Statistical Chart"
1200
- msgstr "Изключения статистически диаграма"
1201
 
1202
- #: includes/settings/tabs/wps-access-level.php:33
1203
- msgid "Access Levels"
1204
- msgstr "Нива на достъп"
1205
 
1206
- #: includes/optimization/wps-optimization.php:126
1207
- msgid "Resources/Information"
1208
- msgstr "Ресурси/информация"
1209
 
1210
- #: includes/optimization/wps-optimization.php:128
1211
- msgid "Purging"
1212
- msgstr "Прочистване"
1213
 
1214
- #: includes/optimization/wps-optimization.php:130
1215
- msgid "Updates"
1216
- msgstr "Актуализации"
1217
 
1218
- #: includes/settings/wps-settings.php:88
1219
- msgid "Access/Exclusions"
1220
- msgstr "Достъп/изключвания"
1221
 
1222
- #: includes/settings/wps-settings.php:91
1223
- msgid "Maintenance"
1224
- msgstr "Поддръжка"
1225
 
1226
- #: includes/settings/wps-settings.php:126
1227
- msgid "Update"
1228
- msgstr "Актуализация"
 
1229
 
1230
- #: includes/settings/wps-settings.php:86
1231
- msgid "General"
1232
- msgstr "Общи"
 
 
1233
 
1234
- #: includes/optimization/empty.php:57
1235
- msgid "Error, %s not emptied!"
1236
- msgstr "Грешка, %s не се изпразва!"
1237
 
1238
- #: includes/optimization/tabs/wps-optimization-purging.php:118
1239
- msgid "Data"
1240
- msgstr "Данни"
 
 
 
1241
 
1242
- #: includes/optimization/tabs/wps-optimization-purging.php:145
1243
- msgid "Purge records older than"
1244
- msgstr "Изтриване на записи по-стари от"
 
1245
 
1246
- #: includes/optimization/tabs/wps-optimization-purging.php:151
1247
- msgid ""
1248
- "Deleted user statistics data older than the selected number of days. "
1249
- "Minimum value is 30 days."
1250
- msgstr ""
1251
- "Изтрит потребител статистика данни по-стари от определен брой дни. "
1252
- "Минималната стойност е 30 дни."
1253
 
1254
- #: includes/optimization/tabs/wps-optimization-purging.php:152
1255
- msgid "Purge now!"
1256
- msgstr "Чистка сега!"
 
 
 
 
1257
 
1258
- #: includes/optimization/purge-data.php:55
1259
- msgid "Please select a value over 30 days."
1260
- msgstr "Моля изберете стойност над 30 дни."
 
 
1261
 
1262
- #: includes/settings/tabs/wps-maintenance.php:20
1263
- msgid ""
1264
- "This will permanently delete data from the database each day, are you sure "
1265
- "you want to enable this option?"
1266
- msgstr ""
1267
- "Това ще изтрие данни от базата данни всеки ден, наистина ли искате да "
1268
- "разрешите тази опция?"
1269
 
1270
- #: includes/settings/tabs/wps-maintenance.php:30
1271
- msgid "Database Maintenance"
1272
- msgstr "Поддръжка на база данни"
 
 
 
1273
 
1274
- #: includes/settings/tabs/wps-maintenance.php:35
1275
- msgid "Run a daily WP Cron job to prune the databases"
1276
- msgstr "Изпълни ежедневно WP Cron работа да режеш на бази данни"
 
 
1277
 
1278
- #: includes/settings/tabs/wps-maintenance.php:41
1279
- msgid ""
1280
- "A WP Cron job will be run daily to prune any data older than a set number of "
1281
- "days."
1282
- msgstr ""
1283
- "WP Cron работни места ще се изпълнява ежедневно да се режат всякакви данни, "
1284
- "по-стари от определен брой дни."
1285
 
1286
- #: includes/settings/tabs/wps-maintenance.php:47
1287
- msgid "Prune data older than"
1288
- msgstr "Премахване на данните по-стари от"
1289
 
1290
- #: includes/settings/tabs/wps-maintenance.php:52
1291
- msgid "Days"
1292
- msgstr "Дни"
1293
 
1294
- #: includes/settings/tabs/wps-maintenance.php:53
1295
- msgid ""
1296
- "The number of days to keep statistics for. Minimum value is 30 days. "
1297
- "Invalid values will disable the daily maintenance."
1298
- msgstr ""
1299
- "Броят на дните за запазване на статистика за. Минималната стойност е 30 дни. "
1300
- "Невалидни стойности ще забрани ежедневна поддръжка."
1301
 
1302
- #: includes/settings/wps-settings.php:89
1303
- msgid "GeoIP"
1304
- msgstr "GeoIP"
1305
 
1306
- #: includes/settings/tabs/wps-browscap.php:54
1307
- #: includes/settings/tabs/wps-geoip.php:64
1308
- msgid "Next update will be"
1309
- msgstr "Следващата актуализация ще бъде"
 
 
1310
 
1311
- #: includes/settings/tabs/wps-geoip.php:109
1312
- msgid ""
1313
- "GeoIP collection requires PHP %s or above, it is currently disabled due to "
1314
- "the installed PHP version being "
1315
- msgstr ""
1316
- "GeoIP колекция изисква PHP %s или по-горе, в момента е забранен поради "
1317
- "инсталирани PHP версия са "
1318
 
1319
- #: includes/log/widgets/search.php:8 includes/log/widgets/summary.php:64
1320
- msgid "Search Engine Referrals"
1321
- msgstr "Търсене двигател референции"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1322
 
1323
- #: includes/log/widgets/summary.php:88
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1324
  msgid "Daily Total"
1325
  msgstr "Ежедневно общо"
1326
 
1327
- #: includes/log/widgets/summary.php:102
1328
  msgid "Current Time and Date"
1329
  msgstr "Текущия час и дата"
1330
 
1331
- #: includes/optimization/tabs/wps-optimization-database.php:39
1332
- #: includes/optimization/tabs/wps-optimization-updates.php:25
1333
- #: includes/optimization/tabs/wps-optimization-updates.php:40
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1334
  msgid "Update Now!"
1335
  msgstr "Актуализирай сега!"
1336
 
1337
- #: includes/settings/tabs/wps-access-level.php:87
1338
- msgid ""
1339
- "Each of the above casscades the rights upwards in the default WordPress "
1340
- "configuration. So for example selecting publish_posts grants the right to "
1341
- "Authors, Editors, Admins and Super Admins."
1342
- msgstr ""
1343
- "Всяка една от горните casscades правата нагоре в конфигурацията по "
1344
- "подразбиране на WordPress. Така например избора на publish_posts предоставя "
1345
- "правото на автори, редактори, администратори и супер администратори."
1346
 
1347
- #: includes/settings/tabs/wps-access-level.php:88
1348
- msgid ""
1349
- "If you need a more robust solution to delegate access you might want to look "
1350
- "at %s in the WordPress plugin directory."
1351
- msgstr ""
1352
- "Ако имате нужда от по-силен решение за делегиране на достъп, може да искате "
1353
- "да погледнете %s в WordPress плъгин директорията."
1354
 
1355
- #: includes/settings/tabs/wps-access-level.php:62
1356
- msgid "Required user level to view WP Statistics"
1357
- msgstr "Изисква ниво на потребител за да видите статистика за WP"
1358
 
1359
- #: includes/settings/tabs/wps-access-level.php:77
1360
- msgid "Required user level to manage WP Statistics"
1361
- msgstr "Изисква потребителско ниво, за да управлявате WP Statistics"
1362
 
1363
- #: includes/settings/tabs/wps-geoip.php:56
1364
- msgid "Schedule monthly update of GeoIP DB"
1365
- msgstr "Месечна актуализация график на GeoIP DB"
 
1366
 
1367
- #: includes/settings/tabs/wps-geoip.php:82
1368
- msgid ""
1369
- "Download of the GeoIP database will be scheduled for 2 days after the first "
1370
- "Tuesday of the month."
1371
- msgstr ""
1372
- "Изтегляне на GeoIP базата данни ще бъде насрочено за 2 дни след първия "
1373
- "вторник на месеца."
1374
 
1375
- #: includes/settings/tabs/wps-geoip.php:83
1376
- msgid ""
1377
- "This option will also download the database if the local filesize is less "
1378
- "than 1k (which usually means the stub that comes with the plugin is still in "
1379
- "place)."
1380
- msgstr ""
1381
- "Тази опция ще изтеглите базата данни ако местните големина е по-малко от 1k, "
1382
- "(което обикновено означава пън, която идва с приставката е все още на място)."
 
1383
 
1384
- #: includes/settings/tabs/wps-geoip.php:89
1385
- msgid "Populate missing GeoIP after update of GeoIP DB"
1386
- msgstr "Попълни липсващите GeoIP след актуализация на GeoIP DB"
1387
 
1388
- #: includes/settings/tabs/wps-geoip.php:95
1389
- msgid "Update any missing GeoIP data after downloading a new database."
1390
- msgstr "Липсващи GeoIP данни се актуализира след свалянето на нова база данни."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1391
 
1392
- #: includes/functions/geoip-populate.php:50
1393
- msgid "Updated %s GeoIP records in the visitors database."
1394
- msgstr "Актуализиран %s GeoIP записи в базата данни на посетителите."
 
 
 
 
 
1395
 
1396
- #: includes/optimization/tabs/wps-optimization-resources.php:98
 
 
 
 
 
 
 
 
 
1397
  msgid "Version Info"
1398
  msgstr "Информация за версията"
1399
 
1400
- #: includes/optimization/tabs/wps-optimization-resources.php:103
1401
  msgid "WP Statistics Version"
1402
  msgstr "Статистика на WP версия"
1403
 
1404
- #: includes/optimization/tabs/wps-optimization-resources.php:108
1405
  msgid "The WP Statistics version you are running."
1406
  msgstr "Версията на WP Statistics, която изпълнявате."
1407
 
1408
- #: includes/optimization/tabs/wps-optimization-resources.php:114
1409
  msgid "PHP Version"
1410
  msgstr "PHP версия"
1411
 
1412
- #: includes/optimization/tabs/wps-optimization-resources.php:119
1413
  msgid "The PHP version you are running."
1414
  msgstr "Версията на PHP, която изпълнявате."
1415
 
1416
- #: includes/optimization/tabs/wps-optimization-resources.php:136
 
 
 
 
 
 
 
 
1417
  msgid "jQuery Version"
1418
  msgstr "jQuery версия"
1419
 
1420
- #: includes/optimization/tabs/wps-optimization-resources.php:141
1421
  msgid "The jQuery version you are running."
1422
  msgstr "JQuery версия, която изпълнявате."
1423
 
1424
- #: wp-statistics.php:610
1425
- msgid "Error could not open downloaded GeoIP database for reading: %s"
1426
- msgstr "Грешка не може да отвори изтегления GeoIP база данни за четене: %s"
1427
-
1428
- #: wp-statistics.php:617
1429
- msgid "Error could not open destination GeoIP database for writing %s"
1430
- msgstr ""
1431
- "Грешка не може да отвори GeoIP база данни местоназначение за писане на %s"
1432
-
1433
- #: wp-statistics.php:633
1434
- msgid "GeoIP Database updated successfully!"
1435
- msgstr "GeoIP базата данни се актуализира успешно!"
1436
-
1437
- #: includes/optimization/tabs/wps-optimization-resources.php:229
1438
- msgid "Client Info"
1439
- msgstr "Информация за клиента"
1440
-
1441
- #: includes/optimization/tabs/wps-optimization-resources.php:234
1442
- msgid "Client IP"
1443
- msgstr "Клиент IP"
1444
-
1445
- #: includes/optimization/tabs/wps-optimization-resources.php:239
1446
- msgid "The client IP address."
1447
- msgstr "IP адреса на клиента."
1448
-
1449
- #: includes/optimization/tabs/wps-optimization-resources.php:245
1450
- msgid "User Agent"
1451
- msgstr "Потребителски агент"
1452
-
1453
- #: includes/optimization/tabs/wps-optimization-resources.php:250
1454
- msgid "The client user agent string."
1455
- msgstr "Клиент потребител фактор канап."
1456
-
1457
- #: includes/settings/tabs/wps-access-level.php:105
1458
- msgid "Exclude User Roles"
1459
- msgstr "Изключване на потребителски роли"
1460
-
1461
- #: includes/settings/tabs/wps-access-level.php:119
1462
- #: includes/settings/tabs/wps-access-level.php:174
1463
- #: includes/settings/tabs/wps-access-level.php:181
1464
- msgid "Exclude"
1465
- msgstr "Изключи"
1466
-
1467
- #: includes/settings/tabs/wps-access-level.php:120
1468
- msgid "Exclude %s role from data collection."
1469
- msgstr "%S роля да изключат от събирането на данни."
1470
-
1471
- #: includes/settings/tabs/wps-access-level.php:126
1472
- msgid "IP/Robot Exclusions"
1473
- msgstr "IP/робот изключвания"
1474
-
1475
- #: includes/settings/tabs/wps-access-level.php:143
1476
- msgid ""
1477
- "A list of words (one per line) to match against to detect robots. Entries "
1478
- "must be at least 4 characters long or they will be ignored."
1479
- msgstr ""
1480
- "Списък на думи, (по един на ред) за мач срещу за откриване на роботи. "
1481
- "Записите трябва да бъдат най-малко 4 символа или те ще бъдат игнорирани."
1482
-
1483
- #: includes/settings/tabs/wps-access-level.php:144
1484
- msgid "Reset to Default"
1485
- msgstr "Възстанови по подразбиране"
1486
-
1487
- #: includes/settings/tabs/wps-access-level.php:161
1488
- msgid "Add 10.0.0.0"
1489
- msgstr "Добави 10.0.0.0"
1490
-
1491
- #: includes/settings/tabs/wps-access-level.php:162
1492
- msgid "Add 172.16.0.0"
1493
- msgstr "Добави 172.16.0.0"
1494
 
1495
- #: includes/settings/tabs/wps-access-level.php:163
1496
- msgid "Add 192.168.0.0"
1497
- msgstr "Добави 192.168.0.0"
1498
 
1499
- #: includes/settings/tabs/wps-general.php:264
1500
- msgid "Charts"
1501
- msgstr "Диаграми"
1502
 
1503
- #: includes/settings/tabs/wps-geoip.php:38
1504
- msgid ""
1505
- "For get more information and location (country) from visitor, enable this "
1506
- "feature."
1507
- msgstr ""
1508
- "За да получите повече информация и местоположението (страната) от посетител, "
1509
- "активирате тази функция."
1510
 
1511
- #: includes/settings/wps-settings.php:87 wp-statistics.php:248
1512
- msgid "Overview"
1513
- msgstr "Общ преглед"
1514
 
1515
- #: includes/optimization/tabs/wps-optimization-database.php:25
1516
- #: includes/optimization/tabs/wps-optimization-updates.php:21
1517
- #: wp-statistics.php:251
1518
- msgid "Countries"
1519
- msgstr "Страни"
1520
 
1521
- #: wp-statistics.php:176 wp-statistics.php:253
1522
- msgid "Hits"
1523
- msgstr "Посещения"
1524
 
1525
- #: wp-statistics.php:255
1526
- msgid "Referers"
1527
- msgstr "Препоръчители"
1528
 
1529
- #: wp-statistics.php:256
1530
- msgid "Searches"
1531
- msgstr "Търсения"
1532
 
1533
- #: wp-statistics.php:257
1534
- msgid "Search Words"
1535
- msgstr "Думи за търсене"
1536
 
1537
- #: includes/settings/tabs/wps-general.php:94
1538
- msgid "Second"
1539
- msgstr "Секунда"
 
 
1540
 
1541
- #: includes/log/all-browsers.php:17
1542
- msgid "Browser Statistics"
1543
- msgstr "Браузър статистика"
1544
 
1545
- #: includes/log/all-browsers.php:107
1546
- msgid "Platform"
1547
- msgstr "Платформа"
1548
 
1549
- #: includes/log/all-browsers.php:241
1550
- msgid "%s Version"
1551
- msgstr "версия на %s"
1552
 
1553
- #: includes/log/hit-statistics.php:17 includes/log/widgets/hits.php:8
1554
- msgid "Hit Statistics"
1555
- msgstr "Удари статистика"
1556
 
1557
- #: includes/log/exclusions.php:57 includes/log/hit-statistics.php:21
1558
- #: includes/log/page-statistics.php:33 includes/log/search-statistics.php:21
1559
- msgid "10 Days"
1560
- msgstr "10 дни"
1561
 
1562
- #: includes/log/exclusions.php:58 includes/log/hit-statistics.php:22
1563
- #: includes/log/page-statistics.php:34 includes/log/search-statistics.php:22
1564
- msgid "20 Days"
1565
- msgstr "20 дни"
1566
 
1567
- #: includes/log/exclusions.php:59 includes/log/hit-statistics.php:23
1568
- #: includes/log/page-statistics.php:35 includes/log/search-statistics.php:23
1569
- msgid "30 Days"
1570
- msgstr "30 дни"
1571
 
1572
- #: includes/log/exclusions.php:60 includes/log/hit-statistics.php:24
1573
- #: includes/log/page-statistics.php:36 includes/log/search-statistics.php:24
1574
- msgid "2 Months"
1575
- msgstr "2 месеца"
1576
 
1577
- #: includes/log/exclusions.php:61 includes/log/hit-statistics.php:25
1578
- #: includes/log/page-statistics.php:37 includes/log/search-statistics.php:25
1579
- msgid "3 Months"
1580
- msgstr "3 месеца"
1581
 
1582
- #: includes/log/exclusions.php:62 includes/log/hit-statistics.php:26
1583
- #: includes/log/page-statistics.php:38 includes/log/search-statistics.php:26
1584
- msgid "6 Months"
1585
- msgstr "6 месеца"
1586
 
1587
- #: includes/log/exclusions.php:63 includes/log/hit-statistics.php:27
1588
- #: includes/log/page-statistics.php:39 includes/log/search-statistics.php:27
1589
- msgid "9 Months"
1590
- msgstr "9 месеца"
1591
 
1592
- #: includes/log/exclusions.php:64 includes/log/hit-statistics.php:28
1593
- #: includes/log/page-statistics.php:40 includes/log/search-statistics.php:28
1594
- msgid "1 Year"
1595
- msgstr "1 година"
1596
 
1597
- #: includes/settings/tabs/wps-overview-display.php:34
1598
- msgid "Hits Statistical Chart"
1599
- msgstr "Статистически диаграма хитове"
1600
 
1601
- #: includes/log/exclusions.php:97 includes/log/hit-statistics.php:69
1602
- #: includes/log/search-statistics.php:77 includes/log/widgets/hits.php:39
1603
- #: includes/log/widgets/search.php:46
1604
- #: includes/optimization/tabs/wps-optimization-purging.php:150
1605
- msgid "days"
1606
- msgstr "дни"
1607
 
1608
- #: includes/log/widgets/countries.php:11
1609
- #: includes/settings/tabs/wps-overview-display.php:27
1610
- msgid "Top 10 Countries"
1611
- msgstr "Топ 10 страни"
1612
 
1613
- #: includes/log/top-countries.php:28 includes/log/widgets/countries.php:17
1614
- msgid "Rank"
1615
- msgstr "Ранг"
1616
 
1617
- #: includes/log/top-countries.php:29 includes/log/widgets/countries.php:18
1618
- msgid "Flag"
1619
- msgstr "Флаг"
1620
 
1621
- #: includes/log/top-countries.php:31 includes/log/widgets/countries.php:20
1622
- msgid "Visitor Count"
1623
- msgstr "Посетител брой"
1624
 
1625
- #: includes/settings/tabs/wps-overview-display.php:35
1626
- msgid "Search Engine Referrers Statistical Chart"
1627
- msgstr "Търсене двигател референтите статистически диаграма"
1628
 
1629
- #: includes/log/top-countries.php:19
1630
- msgid "Top Countries"
1631
- msgstr "Топ страни"
 
1632
 
1633
- #: includes/optimization/tabs/wps-optimization-purging.php:159
1634
- msgid "Delete User Agent Types"
1635
- msgstr "Изтриване на потребителски агент типове"
 
1636
 
1637
- #: includes/optimization/tabs/wps-optimization-purging.php:164
1638
- msgid "Delete Agents"
1639
- msgstr "Изтриване на агенти"
1640
 
1641
- #: includes/optimization/tabs/wps-optimization-purging.php:179
1642
- msgid "All visitor data will be lost for this agent type."
1643
- msgstr "Всички посетител данни ще бъдат загубени за този агент тип."
1644
 
1645
- #: includes/optimization/tabs/wps-optimization-purging.php:180
1646
- #: includes/optimization/tabs/wps-optimization-purging.php:204
1647
- msgid "Delete now!"
1648
- msgstr "Изтриване сега!"
1649
 
1650
- #: includes/optimization/tabs/wps-optimization-purging.php:188
1651
- msgid "Delete Platforms"
1652
- msgstr "Изтриване на платформи"
1653
 
1654
- #: includes/optimization/tabs/wps-optimization-purging.php:203
1655
- msgid "All visitor data will be lost for this platform type."
1656
- msgstr "Всички посетител данни ще бъдат загубени за тази платформа тип."
1657
 
1658
- #: includes/optimization/tabs/wps-optimization-updates.php:16
1659
- msgid "GeoIP Options"
1660
- msgstr "GeoIP опции"
1661
 
1662
- #: includes/settings/tabs/wps-general.php:133
1663
- msgid "Store entire user agent string"
1664
- msgstr "Съхранява цялата потребител фактор канап"
1665
 
1666
- #: includes/settings/tabs/wps-general.php:139
1667
- msgid "Only enabled for debugging"
1668
- msgstr "Разрешена за отстраняване на грешки"
1669
 
1670
- #: includes/settings/tabs/wps-geoip.php:17
1671
- msgid "GeoIP settings"
1672
- msgstr "GeoIP настройки"
1673
 
1674
- #: includes/settings/tabs/wps-geoip.php:32
1675
- msgid "GeoIP collection"
1676
- msgstr "GeoIP колекция"
1677
 
1678
- #: includes/settings/tabs/wps-geoip.php:44
1679
- msgid "Update GeoIP Info"
1680
- msgstr "GeoIP информация актуализация"
1681
 
1682
- #: includes/settings/tabs/wps-geoip.php:49
1683
- msgid "Download GeoIP Database"
1684
- msgstr "Изтегли GeoIP база данни"
1685
 
1686
- #: includes/settings/tabs/wps-browscap.php:40
1687
- #: includes/settings/tabs/wps-geoip.php:50
1688
- msgid "Save changes on this page to download the update."
1689
- msgstr "Запишете промените на тази страница, за да изтеглите актуализацията."
1690
 
1691
- #: includes/optimization/tabs/wps-optimization-purging.php:10
1692
- #: includes/optimization/tabs/wps-optimization-purging.php:36
1693
- #: includes/optimization/tabs/wps-optimization-purging.php:62
1694
- #: includes/optimization/tabs/wps-optimization-purging.php:90
1695
- msgid "Are you sure?"
1696
- msgstr "Сигурни ли сте?"
1697
 
1698
- #: includes/optimization/tabs/wps-optimization-purging.php:137
1699
- msgid "Clear now!"
1700
- msgstr "Изчистване сега!"
1701
 
1702
- #: wp-statistics.php:261
1703
- msgid "Optimization"
1704
- msgstr "Оптимизация"
1705
 
1706
- #: includes/optimization/delete-agents.php:5
1707
- #: includes/optimization/delete-platforms.php:5
1708
- #: includes/optimization/empty.php:5 includes/optimization/export.php:5
1709
- #: includes/optimization/purge-data.php:5
1710
- #: includes/optimization/wps-optimization.php:3 manual/manual.php:5
1711
- msgid "Access denied!"
1712
- msgstr "Отказан достъп!"
1713
 
1714
- #: includes/optimization/delete-agents.php:18
1715
- #: includes/optimization/delete-platforms.php:18
1716
- #: includes/optimization/empty.php:42 includes/optimization/export.php:57
1717
- msgid "Please select the desired items."
1718
- msgstr "Моля изберете желаните елементи."
1719
 
1720
- #: includes/optimization/tabs/wps-optimization-resources.php:17
1721
- msgid "Resources"
1722
- msgstr "Ресурси"
1723
 
1724
- #: includes/optimization/tabs/wps-optimization-resources.php:22
1725
- #: includes/optimization/tabs/wps-optimization-resources.php:27
1726
- msgid "Memory usage in PHP"
1727
- msgstr "Памет отнасяне в PHP"
1728
 
1729
- #: includes/optimization/tabs/wps-optimization-resources.php:26
1730
- msgid "Byte"
1731
- msgstr "Байт"
1732
 
1733
- #: includes/optimization/tabs/wps-optimization-resources.php:48
1734
- #: includes/optimization/tabs/wps-optimization-resources.php:59
1735
- #: includes/optimization/tabs/wps-optimization-resources.php:70
1736
- #: includes/optimization/tabs/wps-optimization-resources.php:81
1737
- #: includes/optimization/tabs/wps-optimization-resources.php:92
1738
- msgid "Row"
1739
- msgstr "Ред"
1740
 
1741
- #: includes/optimization/tabs/wps-optimization-resources.php:49
1742
- #: includes/optimization/tabs/wps-optimization-resources.php:60
1743
- #: includes/optimization/tabs/wps-optimization-resources.php:71
1744
- #: includes/optimization/tabs/wps-optimization-resources.php:82
1745
- #: includes/optimization/tabs/wps-optimization-resources.php:93
1746
- msgid "Number of rows"
1747
- msgstr "Брой редове"
1748
 
1749
- #: includes/optimization/tabs/wps-optimization-export.php:7
1750
- #: includes/optimization/wps-optimization.php:127
1751
- msgid "Export"
1752
- msgstr "Износ"
1753
 
1754
- #: includes/optimization/tabs/wps-optimization-export.php:12
1755
- msgid "Export from"
1756
- msgstr "Износ от"
1757
 
1758
- #: includes/optimization/tabs/wps-optimization-export.php:24
1759
- msgid "Select the table for the output file."
1760
- msgstr "Изберете таблицата за изходния файл."
1761
 
1762
- #: includes/optimization/tabs/wps-optimization-export.php:30
1763
- msgid "Export To"
1764
- msgstr "Експортиране в"
1765
 
1766
- #: includes/optimization/tabs/wps-optimization-export.php:41
1767
- msgid "Select the output file type."
1768
- msgstr "Изберете типа на изходния файл."
1769
 
1770
- #: includes/optimization/tabs/wps-optimization-export.php:53
1771
- msgid "Start Now!"
1772
- msgstr "Започнете сега!"
1773
 
1774
- #: includes/optimization/tabs/wps-optimization-purging.php:123
1775
- msgid "Empty Table"
1776
- msgstr "Празна таблица"
1777
 
1778
- #: includes/optimization/tabs/wps-optimization-purging.php:136
1779
- msgid "All data table will be lost."
1780
- msgstr "Таблица с всички данни ще бъдат загубени."
1781
 
1782
- #: includes/settings/tabs/wps-about.php:44
1783
- msgid "Support"
1784
- msgstr "Поддръжка"
1785
 
1786
- #: includes/settings/tabs/wps-about.php:74
1787
- msgid "Farsi"
1788
- msgstr "Фарси"
1789
 
1790
- #: includes/log/top-referring.php:47
1791
- msgid "Referring sites from"
1792
- msgstr "Препращащи сайтове от"
1793
 
1794
- #: includes/settings/tabs/wps-about.php:36
1795
- msgid "Translations"
1796
- msgstr "Преводи"
1797
 
1798
- #: includes/log/top-referring.php:4
1799
- msgid "To be added soon"
1800
- msgstr "Да бъде добавена скоро"
1801
 
1802
- #: includes/log/last-search.php:102 includes/log/last-visitor.php:99
1803
- #: includes/log/top-referring.php:78 includes/log/widgets/recent.php:27
1804
- #: includes/log/widgets/words.php:32
1805
- #: includes/settings/tabs/wps-overview-display.php:33
1806
- #: includes/settings/tabs/wps-overview-display.php:71
1807
- msgid "Map"
1808
- msgstr "Карта"
1809
 
1810
- #: includes/log/last-search.php:139 includes/log/last-visitor.php:132
1811
- #: includes/log/top-pages.php:181 includes/log/top-referring.php:132
1812
- msgid "Page"
1813
- msgstr "Страница"
1814
 
1815
- #: includes/log/last-search.php:139 includes/log/last-visitor.php:132
1816
- #: includes/log/top-pages.php:181 includes/log/top-referring.php:132
1817
- msgid "From"
1818
- msgstr "От"
1819
 
1820
- #: wp-statistics.php:455
1821
- msgid "Table plugin does not exist! Please disable and re-enable the plugin."
1822
- msgstr ""
1823
- "Таблица плъгин не съществува! Моля, деактивирайте и пак Активирайте плъгин."
1824
 
1825
- #: includes/settings/tabs/wps-general.php:280
1826
- #: includes/settings/tabs/wps-general.php:285 schedule.php:161
1827
- msgid "Statistical reporting"
1828
- msgstr "Статистическата отчетност"
1829
 
1830
- #: widget.php:14 wp-statistics.php:245
1831
- msgid "Statistics"
1832
- msgstr "Статистики"
1833
 
1834
- #: includes/settings/tabs/wps-general.php:369 widget.php:38 widget.php:247
1835
- #: wp-statistics.php:310
1836
- msgid "User Online"
1837
- msgstr "Онлайн потребители"
1838
 
1839
- #: includes/settings/tabs/wps-general.php:371 widget.php:45 widget.php:250
1840
- msgid "Today Visit"
1841
- msgstr "Посещения от днес"
1842
 
1843
- #: includes/settings/tabs/wps-general.php:370 widget.php:52 widget.php:253
1844
- msgid "Today Visitor"
1845
- msgstr "Днес посетителите"
1846
 
1847
- #: includes/settings/tabs/wps-general.php:373 widget.php:59
1848
- msgid "Yesterday Visit"
1849
- msgstr "Вчерашни посещения"
1850
 
1851
- #: includes/settings/tabs/wps-general.php:372 widget.php:66 widget.php:259
1852
- msgid "Yesterday Visitor"
1853
- msgstr "Вчера посетител"
1854
 
1855
- #: widget.php:73 widget.php:262
1856
- msgid "Week Visit"
1857
- msgstr "Седмични посещения"
1858
 
1859
- #: widget.php:80 widget.php:265
1860
- msgid "Month Visit"
1861
- msgstr "Месечни посещения"
1862
 
1863
- #: widget.php:87 widget.php:268
1864
- msgid "Years Visit"
1865
- msgstr "Годишни посещения"
1866
 
1867
- #: includes/settings/tabs/wps-general.php:375 widget.php:94 widget.php:271
1868
- msgid "Total Visit"
1869
- msgstr "Общо посещения"
1870
 
1871
- #: includes/settings/tabs/wps-general.php:374 widget.php:101 widget.php:274
1872
- msgid "Total Visitor"
1873
- msgstr "Общо посетител"
1874
 
1875
- #: widget.php:123 widget.php:300
1876
- msgid "Total Posts"
1877
- msgstr "Общо публикации"
 
 
1878
 
1879
- #: widget.php:130 widget.php:303
1880
- msgid "Total Pages"
1881
- msgstr "Общо страници"
1882
 
1883
- #: widget.php:137 widget.php:306
1884
- msgid "Total Comments"
1885
- msgstr "Общо коментари"
 
 
1886
 
1887
- #: widget.php:144 widget.php:309
1888
- msgid "Total Spams"
1889
- msgstr "Общо спам"
1890
 
1891
- #: widget.php:151 widget.php:312
1892
- msgid "Total Users"
1893
- msgstr "Общо потребители"
1894
 
1895
- #: widget.php:158 widget.php:315
1896
- msgid "Average Posts"
1897
- msgstr "Средно публикации"
 
 
 
1898
 
1899
- #: widget.php:165 widget.php:318
1900
- msgid "Average Comments"
1901
- msgstr "Средно коментари"
1902
 
1903
- #: widget.php:172 widget.php:321
1904
- msgid "Average Users"
1905
- msgstr "Средно потребители"
1906
 
1907
- #: widget.php:179 widget.php:324
1908
- msgid "Last Post Date"
1909
- msgstr "Последно добавена публикация"
1910
 
1911
- #: wp-statistics.php:340
1912
- msgid "View Stats"
1913
- msgstr "Преглед на статистиките"
1914
 
1915
- #: wp-statistics.php:152 wp-statistics.php:262
1916
- msgid "Settings"
1917
- msgstr "Настройки"
1918
 
1919
- #: wp-statistics.php:316
1920
- msgid "Today visitor"
1921
- msgstr "Днес посетителите"
1922
 
1923
- #: wp-statistics.php:322
1924
- msgid "Today visit"
1925
- msgstr "Днес, посетете"
1926
 
1927
- #: wp-statistics.php:328
1928
- msgid "Yesterday visitor"
1929
- msgstr "Вчера посетител"
1930
 
1931
- #: widget.php:256 wp-statistics.php:334
1932
- msgid "Yesterday visit"
1933
- msgstr "Вчерашни посещения"
1934
 
1935
- #: wp-statistics.php:444 wp-statistics.php:544 wp-statistics.php:815
1936
- msgid "You do not have sufficient permissions to access this page."
1937
- msgstr "Нямате права за тази страница"
1938
 
1939
- #: includes/log/all-browsers.php:23 includes/log/all-browsers.php:106
1940
- #: includes/log/all-browsers.php:240 includes/log/exclusions.php:74
1941
- #: includes/log/hit-statistics.php:35 includes/log/last-search.php:61
1942
- #: includes/log/last-visitor.php:57 includes/log/page-statistics.php:47
1943
- #: includes/log/search-statistics.php:35 includes/log/top-pages.php:19
1944
- #: includes/log/top-pages.php:131 includes/log/top-referring.php:45
1945
- #: includes/log/widgets/about.php:7 includes/log/widgets/browsers.php:7
1946
- #: includes/log/widgets/countries.php:9 includes/log/widgets/google.map.php:8
1947
- #: includes/log/widgets/hits.php:7 includes/log/widgets/jqv.map.php:8
1948
- #: includes/log/widgets/pages.php:11 includes/log/widgets/recent.php:7
1949
- #: includes/log/widgets/referring.php:11 includes/log/widgets/search.php:7
1950
- #: includes/log/widgets/summary.php:7 includes/log/widgets/words.php:14
1951
- msgid "Click to toggle"
1952
- msgstr "Щракнете за превключване"
1953
 
1954
- #: includes/settings/tabs/wps-overview-display.php:24
1955
- msgid "Summary Statistics"
1956
- msgstr "Обобщена статистика"
1957
 
1958
- #: includes/log/hit-statistics.php:104 includes/log/widgets/hits.php:74
1959
- #: includes/log/widgets/summary.php:19
1960
- msgid "Visitor"
1961
- msgstr "Посетител"
1962
 
1963
- #: includes/log/hit-statistics.php:104 includes/log/widgets/hits.php:74
1964
- #: includes/log/widgets/summary.php:20
1965
- msgid "Visit"
1966
- msgstr "Посетете"
1967
 
1968
- #: includes/log/widgets/summary.php:24 includes/log/widgets/summary.php:69
1969
- msgid "Today"
1970
- msgstr "Днес"
1971
 
1972
- #: includes/log/widgets/summary.php:30 includes/log/widgets/summary.php:70
1973
- msgid "Yesterday"
1974
- msgstr "Вчера"
1975
 
1976
- #: includes/log/widgets/summary.php:36
1977
- msgid "Week"
1978
- msgstr "Седмица"
1979
 
1980
- #: includes/log/widgets/summary.php:42
1981
- msgid "Month"
1982
- msgstr "Месец"
1983
 
1984
- #: includes/log/widgets/summary.php:48
1985
- msgid "Year"
1986
- msgstr "Година"
1987
 
1988
- #: includes/log/search-statistics.php:112 includes/log/widgets/search.php:81
1989
- #: includes/log/widgets/summary.php:54 includes/log/widgets/summary.php:94
1990
- msgid "Total"
1991
- msgstr "Общо"
1992
 
1993
- #: includes/log/widgets/summary.php:102
1994
- msgid "(Adjustment)"
1995
- msgstr "(Корекция)"
1996
 
1997
- #: includes/log/all-browsers.php:24 includes/log/widgets/browsers.php:8
1998
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:249
1999
- msgid "Browsers"
2000
- msgstr "Браузъри"
2001
 
2002
- #: includes/log/widgets/browsers.php:38
2003
- msgid "Other"
2004
- msgstr "Други"
2005
 
2006
- #: includes/log/widgets/referring.php:20
2007
- msgid "Address"
2008
- msgstr "Адрес"
2009
 
2010
- #: includes/log/hit-statistics.php:90 includes/log/widgets/hits.php:60
2011
- msgid "Number of visits and visitors"
2012
- msgstr "Броят на посещенията и посетителите"
2013
 
2014
- #: includes/settings/tabs/wps-overview-display.php:86
2015
- msgid "Google"
2016
- msgstr "Google"
2017
 
2018
- #: includes/log/last-visitor.php:27 includes/log/widgets/recent.php:9
2019
- #: includes/settings/tabs/wps-overview-display.php:38
2020
- msgid "Recent Visitors"
2021
- msgstr "Последните посетители"
2022
 
2023
- #: includes/log/top-countries.php:30 includes/log/widgets/countries.php:19
2024
- msgid "Country"
2025
- msgstr "Страна"
2026
 
2027
- #: includes/settings/tabs/wps-browscap.php:27
2028
- #: includes/settings/tabs/wps-browscap.php:51
2029
- #: includes/settings/tabs/wps-general.php:66
2030
- #: includes/settings/tabs/wps-general.php:82
2031
- #: includes/settings/tabs/wps-general.php:110
2032
- #: includes/settings/tabs/wps-general.php:126
2033
- #: includes/settings/tabs/wps-general.php:138
2034
- #: includes/settings/tabs/wps-general.php:165
2035
- #: includes/settings/tabs/wps-general.php:177
2036
- #: includes/settings/tabs/wps-general.php:189
2037
- #: includes/settings/tabs/wps-general.php:219
2038
- #: includes/settings/tabs/wps-general.php:231
2039
- #: includes/settings/tabs/wps-general.php:274
2040
- #: includes/settings/tabs/wps-general.php:290
2041
- #: includes/settings/tabs/wps-geoip.php:37
2042
- #: includes/settings/tabs/wps-geoip.php:61
2043
- #: includes/settings/tabs/wps-geoip.php:94
2044
- #: includes/settings/tabs/wps-maintenance.php:40
2045
- #: includes/settings/tabs/wps-overview-display.php:105
2046
- #: includes/settings/tabs/wps-overview-display.php:117
2047
- msgid "Active"
2048
- msgstr "Активен"
2049
 
2050
- #: includes/settings/tabs/wps-general.php:83
2051
- #: includes/settings/tabs/wps-general.php:111
2052
- #: includes/settings/tabs/wps-general.php:127
2053
- #: includes/settings/tabs/wps-general.php:166
2054
- #: includes/settings/tabs/wps-general.php:178
2055
- #: includes/settings/tabs/wps-general.php:190
2056
- #: includes/settings/tabs/wps-general.php:291
2057
- msgid "Enable or disable this feature"
2058
- msgstr "Разрешаване или забраняване на тази функция"
2059
 
2060
- #: includes/log/top-pages.php:163 includes/log/widgets/pages.php:30
2061
- #: includes/settings/tabs/wps-general.php:100
2062
- #: includes/settings/tabs/wps-general.php:105
2063
- msgid "Visits"
2064
- msgstr "Посещения"
2065
 
2066
- #: includes/settings/tabs/wps-general.php:116
2067
- #: includes/settings/tabs/wps-general.php:121 wp-statistics.php:258
2068
- msgid "Visitors"
2069
- msgstr "Посетители"
2070
 
2071
- #: includes/settings/tabs/wps-general.php:89
2072
- msgid "Check for online users every"
2073
- msgstr "Проверявай за онлайн потребители на всеки"
2074
 
2075
- #: includes/settings/tabs/wps-general.php:95
2076
- msgid "Time for the check accurate online user in the site. Now: %s Second"
2077
- msgstr "Времето за точна проверка онлайн потребителя в сайта. Сега: %s втори"
2078
 
2079
- #: includes/settings/tabs/wps-general.php:200
2080
- msgid "Show stats in menu bar"
2081
- msgstr "Покажи статистиките в менюто"
2082
 
2083
- #: includes/settings/tabs/wps-general.php:205
2084
- msgid "No"
2085
- msgstr "Не"
2086
 
2087
- #: includes/settings/tabs/wps-general.php:206
2088
- msgid "Yes"
2089
- msgstr "Да"
2090
 
2091
- #: includes/settings/tabs/wps-general.php:208
2092
- msgid "Show stats in admin menu bar"
2093
- msgstr "Покажи статистиките в админ менюто"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2094
 
2095
- #: includes/settings/tabs/wps-general.php:145
2096
- msgid "Coefficient per visitor"
2097
- msgstr "Коефициент за потребител"
2098
 
2099
- #: includes/settings/tabs/wps-general.php:150
2100
- msgid "For each visit to account for several hits. Currently %s."
2101
- msgstr "За всяко посещение на сметка за няколко хитове. В момента %s."
2102
 
2103
- #: includes/settings/tabs/wps-general.php:322
2104
- msgid "Select when receiving statistics report."
2105
- msgstr "Изберете при получаване на доклад за статистики."
2106
 
2107
- #: includes/settings/tabs/wps-general.php:334
2108
- msgid "Email"
2109
- msgstr "Имейл"
 
2110
 
2111
- #: includes/settings/tabs/wps-general.php:335
2112
- msgid "SMS"
2113
- msgstr "SMS"
2114
 
2115
- #: includes/settings/tabs/wps-general.php:337
2116
- msgid "Type Select Get Status Report."
2117
- msgstr "Тип изберете Get отчет за състоянието."
 
2118
 
2119
- #: includes/settings/tabs/wps-general.php:363
2120
- msgid "Enter the contents of the reports received."
2121
- msgstr "Въведете съдържанието на получените отчети."
2122
 
2123
- #: widget.php:240
2124
- msgid "Name"
2125
- msgstr "Име"
2126
 
2127
- #: widget.php:244
2128
- msgid "Items"
2129
- msgstr "Броя"
2130
 
2131
- #: widget.php:283
2132
- msgid "Select type of search engine"
2133
- msgstr "Изберете тип търсачка"
2134
 
2135
- #: includes/log/last-visitor.php:29 includes/log/top-referring.php:36
2136
- #: includes/optimization/tabs/wps-optimization-purging.php:134 widget.php:296
2137
- msgid "All"
2138
- msgstr "Всички"
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 и т.н.). Използвайте &quot;000&quot; (три нули) да използва &quot;Unknown&quot; кодът на страната."
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 "Списъкът с кодове на държавите (по един на ред, две писма всеки) да се изключат от събирането на статистически данни. Използвайте &quot;000&quot; (три нули), за да се изключи неизвестни страни."
 
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 "Списъкът с кодове на държавите (по един на ред, две писма всеки) да се включат в събирането на статистически данни, ако този списък не е празна, само посетители от включените страни ще бъдат записани. Използвайте &quot;000&quot; (три нули), за да се изключи неизвестни страни."
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
- "Project-Id-Version: wp-statistics\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-01-28 19:03+0330\n"
6
- "PO-Revision-Date: 2014-10-14 17:15-0500\n"
7
- "Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
8
- "Language-Team: \n"
9
- "Language: en\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-KeywordsList: gettext;gettext_noop;_e;__\n"
14
- "X-Poedit-Basepath: F:\\Program Files\\xampp\\htdocs\\wordpress\\wp-content"
15
- "\\plugins\\wp-statistics\n"
16
- "X-Generator: Poedit 1.6.9\n"
17
- "X-Poedit-SearchPath-0: F:\\Program Files\\xampp\\htdocs\\wordpress\\wp-"
18
- "content\\plugins\\wp-statistics\n"
19
-
20
- #: F:\Program
21
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/schedule.php:32
22
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:103
23
- #, fuzzy
24
- msgid "Statistical reporting"
25
- msgstr "সরাসরি পরিসংখ্যান কনফিগার"
 
 
 
 
26
 
27
- #: F:\Program
28
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:4
29
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:6
30
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:58
31
- msgid "Statistics"
32
- msgstr "পরিসংখ্যান"
33
 
34
- #: F:\Program
35
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:5
36
- msgid "Show site stats in sidebar"
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:\Program
50
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:26
51
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:161
52
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:12
53
- msgid "Today Visit"
54
- msgstr "আজ দেখেছে"
55
 
56
- #: F:\Program
57
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:33
58
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:160
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:\Program
65
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:40
66
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:163
67
- msgid "Yesterday Visit"
68
- msgstr "গতকাল দেখেছে"
69
 
70
- #: F:\Program
71
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:47
72
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:162
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:\Program
79
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:54
80
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:24
81
- msgid "Week Visit"
82
- msgstr "এ সপ্তাহে দেখেছে"
83
 
84
- #: F:\Program
85
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:61
86
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:27
87
- msgid "Month Visit"
88
- msgstr "এ মাসে দেখেছে"
89
 
90
- #: F:\Program
91
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:68
92
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:30
93
- msgid "Years Visit"
94
- msgstr "এ বছরে দেখেছে"
95
 
96
- #: F:\Program
97
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:75
98
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:165
99
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:33
100
- msgid "Total Visit"
101
- msgstr "মোট দেখা হয়েছে"
102
 
103
- #: F:\Program
104
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:82
105
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:164
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:\Program
112
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:90
113
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:39
114
- msgid "Search Engine reffered"
115
- msgstr "সার্চ ইঞ্জিন রেফার করেছে"
116
 
117
- #: F:\Program
118
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:105
119
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:57
120
- msgid "Total Posts"
121
- msgstr "মোট পোষ্ট"
122
 
123
- #: F:\Program
124
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:112
125
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:60
126
- msgid "Total Pages"
127
- msgstr "মোট পাতা"
128
 
129
- #: F:\Program
130
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:119
131
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:63
132
- msgid "Total Comments"
133
- msgstr "মোট মন্তব্য"
134
 
135
- #: F:\Program
136
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:126
137
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:66
138
- msgid "Total Spams"
139
- msgstr "মোট স্প্যাম"
140
 
141
- #: F:\Program
142
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:133
143
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:69
144
- msgid "Total Users"
145
- msgstr "মোট ব্যবহারকারী"
146
 
147
- #: F:\Program
148
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:140
149
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:72
150
- msgid "Average Posts"
151
- msgstr "গড় পোষ্ট"
152
 
153
- #: F:\Program
154
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:147
155
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:75
156
- msgid "Average Comments"
157
- msgstr "গড় মন্তব্য"
158
 
159
- #: F:\Program
160
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:154
161
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:78
162
- msgid "Average Users"
163
- msgstr "গড় ব্যবহারকারী"
164
 
165
- #: F:\Program
166
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:161
167
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:81
168
- msgid "Last Post Date"
169
- msgstr "শেষ পোষ্টের তারিখ"
170
 
171
- #: F:\Program
172
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:60
173
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:105
174
- msgid "View Stats"
175
- msgstr ""
176
 
177
- #: F:\Program
178
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:61
179
- msgid "Settings"
180
- msgstr "সেটিসং"
181
 
182
- #: F:\Program
183
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:85
184
- #, fuzzy
185
- msgid "Today visitor"
186
- msgstr "আজ দেখেছে"
187
 
188
- #: F:\Program
189
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:90
190
- #, fuzzy
191
- msgid "Today visit"
192
- msgstr "আজ দেখেছে"
193
 
194
- #: F:\Program
195
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:95
196
- #, fuzzy
197
- msgid "Yesterday visitor"
198
- msgstr "গতকাল দেখেছে"
199
 
200
- #: F:\Program
201
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:100
202
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:18
203
- msgid "Yesterday visit"
204
- msgstr "গতকাল দেখেছে"
205
 
206
- #: F:\Program
207
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:134
208
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:151
209
- msgid "You do not have sufficient permissions to access this page."
210
- msgstr "আপনার এই পেজ দেখার মত পর্যাপ্ত অনুমতি নেই।"
211
 
212
- #: F:\Program
213
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:8
214
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:69
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:\Program
224
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:9
225
- #, fuzzy
226
- msgid "Summary Statistics"
227
- msgstr "পরিসংখ্যান"
228
 
229
- #: F:\Program
230
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:20
231
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:305
232
- msgid "Visitor"
233
- msgstr ""
234
 
235
- #: F:\Program
236
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:21
237
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:315
238
- #, fuzzy
239
- msgid "Visit"
240
- msgstr "এ সপ্তাহে দেখেছে"
241
 
242
- #: F:\Program
243
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:25
244
- #, fuzzy
245
- msgid "Today"
246
- msgstr "আজ দেখেছে"
247
 
248
- #: F:\Program
249
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:31
250
- #, fuzzy
251
- msgid "Yesterday"
252
- msgstr "গতকাল দেখেছে"
253
 
254
- #: F:\Program
255
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:37
256
- msgid "Week"
257
- msgstr ""
258
 
259
- #: F:\Program
260
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:43
261
- #, fuzzy
262
- msgid "Month"
263
- msgstr "এ মাসে দেখেছে"
264
 
265
- #: F:\Program
266
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:49
267
- msgid "Year"
268
- msgstr ""
269
 
270
- #: F:\Program
271
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:55
272
- #, fuzzy
273
- msgid "Total"
274
- msgstr "মোট দেখা হয়েছে"
275
 
276
- #: F:\Program
277
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:62
278
- #, php-format
279
- msgid ""
280
- "Today date: <code dir=\"ltr\">%s</code>, Time: <code dir=\"ltr\">%s</code>"
281
- msgstr ""
282
 
283
- #: F:\Program
284
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:64
285
- msgid "(Adjustment)"
286
- msgstr ""
287
 
288
- #: F:\Program
289
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:70
290
- msgid "Browsers"
291
- msgstr ""
292
 
293
- #: F:\Program
294
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:101
295
- msgid "Graph of Browsers"
296
- msgstr ""
297
 
298
- #: F:\Program
299
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:143
300
- msgid "Browser share"
301
- msgstr ""
302
 
303
- #: F:\Program
304
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:145
305
- msgid "Firefox"
306
- msgstr ""
307
 
308
- #: F:\Program
309
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:146
310
- msgid "IE"
311
- msgstr ""
312
 
313
- #: F:\Program
314
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:147
315
- msgid "Ipad"
316
- msgstr ""
317
 
318
- #: F:\Program
319
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:148
320
- msgid "Android"
321
- msgstr ""
322
 
323
- #: F:\Program
324
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:149
325
- msgid "Chrome"
326
- msgstr ""
327
 
328
- #: F:\Program
329
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:150
330
- msgid "Safari"
331
- msgstr ""
332
 
333
- #: F:\Program
334
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:151
335
- msgid "Other"
336
- msgstr ""
337
 
338
- #: F:\Program
339
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:166
340
- msgid "Top referring sites"
341
- msgstr ""
342
 
343
- #: F:\Program
344
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:171
345
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:342
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:\Program
352
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:172
353
- msgid "Address"
354
- msgstr ""
355
 
356
- #: F:\Program
357
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:210
358
- #, fuzzy
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:\Program
374
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:215
375
- msgid "Support plugin"
376
- msgstr ""
377
 
378
- #: F:\Program
379
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:216
380
- msgid "Weblog"
381
- msgstr ""
382
 
383
- #: F:\Program
384
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:221
385
- msgid ""
386
- "Please donate to the plugin. With the help of plug-ins you can quickly "
387
- "spread."
388
- msgstr ""
389
 
390
- #: F:\Program
391
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:224
392
- msgid "Donate"
393
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
394
 
395
- #: F:\Program
396
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:245
397
- #, fuzzy
398
- msgid "Statistical Chart"
 
 
 
399
  msgstr "পরিসংখ্যান"
400
 
401
- #: F:\Program
402
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:260
403
- msgid "Chart hit in the last 20 days"
404
- msgstr ""
405
 
406
- #: F:\Program
407
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:279
408
- msgid "Number of visits and visitors"
409
- msgstr ""
410
 
411
- #: F:\Program
412
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:335
413
- msgid "Latest search words"
414
- msgstr ""
415
 
416
- #: F:\Program
417
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:339
418
- msgid "Word"
419
- msgstr ""
420
 
421
- #: F:\Program
422
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:340
423
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:384
424
- msgid "Date"
425
- msgstr ""
426
 
427
- #: F:\Program
428
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:341
429
- msgid "Site"
430
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
431
 
432
- #: F:\Program
433
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:354
434
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:44
 
 
 
 
 
 
435
  msgid "Google"
436
  msgstr "গুগল"
437
 
438
- #: F:\Program
439
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:356
440
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:47
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:\Program
459
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:375
460
- #, fuzzy
461
- msgid "Recent Visitors"
462
- msgstr "এ সপ্তাহে দেখেছে"
463
 
464
- #: F:\Program
465
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:379
466
- msgid "IP"
467
- msgstr "আইপি"
468
 
469
- #: F:\Program
470
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:381
471
- msgid "Country"
472
- msgstr ""
473
 
474
- #: F:\Program
475
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:382
476
- msgid "Province"
477
- msgstr ""
478
 
479
- #: F:\Program
480
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:385
481
- msgid "Browser"
482
- msgstr ""
483
 
484
- #: F:\Program
485
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:9
486
- #, fuzzy
487
- msgid "General Settings"
488
- msgstr "সেটিসং"
489
 
490
- #: F:\Program
491
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:19
492
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:31
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:\Program
500
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:20
501
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:32
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:\Program
508
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:26
509
- #, fuzzy
510
- msgid "Visits"
511
- msgstr "এ সপ্তাহে দেখেছে"
512
 
513
- #: F:\Program
514
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:38
515
- msgid "Visitors"
516
- msgstr ""
517
 
518
- #: F:\Program
519
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:50
520
- msgid "Check for online users every"
521
- msgstr "অনলাইনের ব্যবহারকারী চেক করবে"
522
 
523
- #: F:\Program
524
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:55
525
- #, fuzzy
526
- msgid "Secound"
527
- msgstr "সেকেন্ড"
528
 
529
- #: F:\Program
530
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:56
531
- #, fuzzy, php-format
532
- msgid "Time for the check accurate online user in the site. Now: %s Second"
533
- msgstr "এই সাইটের সঠিক অনলাইন দর্শক চেক করার জন্য । ডিফল্ট: ৬০ সেকেন্ড"
534
 
535
- #: F:\Program
536
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:62
537
- msgid "Show stats in menu bar"
538
- msgstr "স্টাটস মেনুবারে দেখাও"
539
 
540
- #: F:\Program
541
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:67
542
- msgid "No"
543
- msgstr "না"
544
 
545
- #: F:\Program
546
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:68
547
- msgid "Yes"
548
- msgstr "হ্যা"
549
 
550
- #: F:\Program
551
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:70
552
- msgid "Show stats in admin menu bar"
553
- msgstr "স্টাটস অ্যাডমিনের মেনুবারে দেখাও"
554
 
555
- #: F:\Program
556
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:76
557
- msgid "Coefficient per visitor"
558
- msgstr "দর্শকের সুদক্ষতা"
559
 
560
- #: F:\Program
561
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:81
562
- #, fuzzy, php-format
563
- msgid "For each visit to account for several hits. Currently %s."
564
- msgstr "দর্শনাথীর প্রতি হিট গননা করা হবে"
565
 
566
- #: F:\Program
567
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:87
568
- msgid "Display IP Information On-screen statistics"
569
- msgstr ""
570
 
571
- #: F:\Program
572
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:93
573
- msgid "Showing the flag country and Visitor province name (May be a bit slow)"
574
- msgstr ""
575
 
576
- #: F:\Program
577
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:98
578
- msgid "Statistical reporting settings"
579
- msgstr ""
580
 
581
- #: F:\Program
582
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:116
583
- #, fuzzy
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:\Program
600
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:123
601
- msgid "Twice daily"
602
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
603
 
604
- #: F:\Program
605
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:124
606
- msgid "daily"
607
- msgstr ""
608
 
609
- #: F:\Program
610
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:126
611
- msgid "Select when receiving statistics report."
612
- msgstr ""
613
 
614
- #: F:\Program
615
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:132
616
- msgid "Send Statistical reporting to"
617
- msgstr ""
618
 
619
- #: F:\Program
620
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:138
621
- msgid "Email"
622
- msgstr ""
623
 
624
- #: F:\Program
625
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:139
626
- msgid "SMS"
627
- msgstr ""
628
 
629
- #: F:\Program
630
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:141
631
- msgid "Type Select Get Status Report."
632
- msgstr ""
633
 
634
- #: F:\Program
635
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:144
636
- #, php-format
637
- msgid ""
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:\Program
643
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:151
644
- msgid "Send Content Report"
645
- msgstr ""
646
 
647
- #: F:\Program
648
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:156
649
- msgid "Enter the contents of the reports received."
650
- msgstr ""
651
 
652
- #: F:\Program
653
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:158
654
- msgid "Input data:"
655
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
656
 
657
- #: F:\Program
658
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:2
659
  msgid "Name"
660
  msgstr "নাম"
661
 
662
- #: F:\Program
663
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:6
664
  msgid "Items"
665
  msgstr "আইটেম"
666
 
667
- #: F:\Program
668
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:42
 
 
 
 
 
 
 
 
669
  msgid "Select type of search engine"
670
  msgstr "সার্চ ইঞ্জিন নির্বাচন করুন"
671
 
672
- #: F:\Program
673
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:53
674
- msgid "All"
675
- msgstr "সকল"
 
 
 
 
 
 
 
 
 
 
 
676
 
677
- #: F:\Program
678
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:84
679
- msgid "Type date for last update"
680
- msgstr "সর্বশেষ হালনাগাদের তারিখ দিন"
681
 
682
- #: F:\Program
683
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:86
684
- msgid "English"
685
- msgstr "ইংরেজী"
686
 
687
- #: F:\Program
688
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:89
689
- msgid "Persian"
690
- msgstr "পারসি"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
691
 
692
- #~ msgid "Added"
693
- #~ msgstr "যুক্ত হয়েছে"
 
694
 
695
- #~ msgid "value"
696
- #~ msgstr "মান"
 
697
 
698
- #~ msgid "Was"
699
- #~ msgstr "হয়েছিলো"
 
700
 
701
- #~ msgid "low value"
702
- #~ msgstr "কম মান"
 
703
 
704
- #~ msgid "Access is Denied!"
705
- #~ msgstr "প্রবেশ নিষেধ!"
 
706
 
707
- #~ msgid "Thanks for your report!"
708
- #~ msgstr "আপনার রিপোর্টের জন্য ধন্যবাদ!"
 
709
 
710
- #~ msgid "Error! Please Enter all field"
711
- #~ msgstr "ত্রুটি! দয়া করে সকল ফিল্ডে তথ্য দিন"
 
712
 
713
- #~ msgid "deleted!"
714
- #~ msgstr "মুছে ফেলেছে!"
 
715
 
716
- #~ msgid "All plugin data is deleted"
717
- #~ msgstr "প্লাগইনের সকল তথ্য মুছে ফেলা হয়েছে"
 
 
 
718
 
719
- #~ msgid "plugin options have been deleted"
720
- #~ msgstr "প্লাগইন অপশন মুছে ফেলা হয়েছে"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
721
 
722
- #~ msgid "WP-Statistics"
723
- #~ msgstr "ওয়ার্ডপ্রেস-পরিসংখ্যান"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
724
 
725
- #~ msgid "Plugin home page"
726
- #~ msgstr "প্লাগইন নীড়পাতা"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
727
 
728
- #~ msgid ""
729
- #~ "WP-Statistics not enabled! Please go to <a href=\"%s\">setting page</a> "
730
- #~ "and enable statistics"
731
- #~ msgstr ""
732
- #~ "ওয়ার্ডপ্রেস-পরিসংখ্যান সক্রিয় নয়! <a href=\"%s\">পেজে সেটিং</a> গিয়ে "
733
- #~ "পরিসংখ্যান সক্রিয় করুন"
734
 
735
- #~ msgid "Stats Log"
736
- #~ msgstr "স্টাটস লগ"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
737
 
738
- #~ msgid "Users Online"
739
- #~ msgstr "ব্যবহারকারী অনলাইনে"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
740
 
741
- #~ msgid "Are you sure?"
742
- #~ msgstr "আপনি কি নিশ্চিত?"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
743
 
744
- #~ msgid "Configuration"
745
- #~ msgstr "কনফিগার"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
746
 
747
- #~ msgid "Enable Statistics"
748
- #~ msgstr "পরিসংখ্যান সক্রিয়"
 
 
749
 
750
- #~ msgid "Statistics are enabled."
751
- #~ msgstr "পরিসংখ্যান সক্রিয় হয়েছে"
 
752
 
753
- #~ msgid "Statistics are disabled!"
754
- #~ msgstr "পরিসংখ্যান নিক্রিয় হয়েছে!"
 
755
 
756
- #~ msgid "General configuration"
757
- #~ msgstr "সাধারণ কনফিগার"
 
 
758
 
759
- #~ msgid "Show decimals number"
760
- #~ msgstr "ডেসিমেল নম্বর দেখাও"
 
 
761
 
762
- #~ msgid "Show number stats with decimal. For examle: 3,500"
763
- #~ msgstr "নম্বরগুলো ভগ্নাংশসহ দেখাও। উদাহারন: ৩,৫০০"
 
764
 
765
- #~ msgid "Daily referer of search engines"
766
- #~ msgstr "প্রতিদিনের সার্চইঞ্জিনের রেফার"
 
767
 
768
- #~ msgid "Can be calculated daily or total search engines"
769
- #~ msgstr "প্রতিদিনের বা মোট সার্চ ইঞ্জিন ধরে হিসাব করুন"
 
770
 
771
- #~ msgid "Increase value of the total hits by"
772
- #~ msgstr "মোট হিট থেকে মান বাড়িয়ে দিন"
 
773
 
774
- #~ msgid "Done"
775
- #~ msgstr "সম্পন্ন হয়েছে"
 
776
 
777
- #~ msgid "Your total visit sum with this value"
778
- #~ msgstr "আপনার মোট দেখার সাথে এই মান যোগ করুন"
 
779
 
780
- #~ msgid "Reduce value of the total hits by"
781
- #~ msgstr "মোট হিট থেকে মান কমিয়ে দিন"
 
782
 
783
- #~ msgid "Your total visit minus with this value"
784
- #~ msgstr "আপনার মোট দেখার সাথে এই মান বিয়োগ করুন"
 
785
 
786
- #~ msgid "Number item for show Statistics"
787
- #~ msgstr "পরিসংখ্যানে কত আইটেম দেখাবে"
 
 
 
 
788
 
789
- #~ msgid "Default 5"
790
- #~ msgstr "ডিফল্ট ৫"
 
791
 
792
- #~ msgid "Number for submit item in Database and show that"
793
- #~ msgstr "ডাটাবেজে কত আইটেম সাবমিট করা হয়েছে তা দেখাও"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
794
 
795
- #~ msgid "Default 1"
796
- #~ msgstr "ডিফল্ট "
 
797
 
798
- #~ msgid "Refresh Stats every"
799
- #~ msgstr "স্টাটস রিফ্রেস হবে প্রতি"
 
800
 
801
- #~ msgid "Second(s)"
802
- #~ msgstr "সেকেন্ড"
 
803
 
804
- #~ msgid "Recommended"
805
- #~ msgstr "সুপারিশকৃত"
 
806
 
807
- #~ msgid "To reduce pressure on the server, this defaults to 10 sec"
808
- #~ msgstr "সার্ভারে চাপ কমানোর জন্য ডিফল্ট হচ্ছে ১০ সেকেন্ড"
 
809
 
810
- #~ msgid "Pagerank configuration"
811
- #~ msgstr "পেজর‍্যংক কনফিগার"
 
812
 
813
- #~ msgid "Your url for Google pagerank check"
814
- #~ msgstr "গুগল পেজর‍্যাংকে আপনার ইউআরএল"
 
815
 
816
- #~ msgid "If empty. you website url is used"
817
- #~ msgstr "যদি শুন্য হয়। আপনার ওয়েবসাইট ব্যবহৃত হচ্ছে"
 
818
 
819
- #~ msgid "Your url for Alexa pagerank check"
820
- #~ msgstr "অ্যারেক্সা পেজর‍্যাংকে আপনার ইউআরএল"
 
821
 
822
- #~ msgid "Update"
823
- #~ msgstr "হালনাগাত"
 
824
 
825
- #~ msgid "This plugin created by"
826
- #~ msgstr "প্লাগইনটি তৈরী করেছেন"
 
827
 
828
- #~ msgid "from"
829
- #~ msgstr "হতে"
 
830
 
831
- #~ msgid "group"
832
- #~ msgstr "গ্রুপ"
 
833
 
834
- #~ msgid "Language"
835
- #~ msgstr "ভাষা"
 
836
 
837
- #~ msgid "by"
838
- #~ msgstr "করেছে"
 
839
 
840
- #~ msgid "for translate language files. please send files for"
841
- #~ msgstr "ভাষাস্তরের ফাইল। দয়া করে ফাইলটি সেন্ট করুন"
 
 
842
 
843
- #~ msgid "Show Functions"
844
- #~ msgstr "কর্য দেখাও"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
845
 
846
- #~ msgid "Report Problem"
847
- #~ msgstr "রিপোর্ট সমস্যা"
 
848
 
849
- #~ msgid "User Online Live"
850
- #~ msgstr "এখন ব্যবহারকারী আছে"
 
851
 
852
- #~ msgid "Total Visit Live"
853
- #~ msgstr "এখন মোট দেখছে"
 
854
 
855
- #~ msgid "Total Feedburner Subscribe"
856
- #~ msgstr "মোট ফিডবার্নার গ্রাহক"
 
857
 
858
- #~ msgid "Google Pagerank"
859
- #~ msgstr "গুগল পেজর‍্যাংক"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
860
 
861
- #~ msgid "Alexa Pagerank"
862
- #~ msgstr "এ্যালেক্সা পেজর‍্যাংক"
 
863
 
864
- #~ msgid "Hide"
865
- #~ msgstr "লুকানো"
 
866
 
867
- #~ msgid "Your Name"
868
- #~ msgstr "আপনার নাম"
 
869
 
870
- #~ msgid "Description Problem"
871
- #~ msgstr "বর্ণনা সমস্যা"
 
 
872
 
873
- #~ msgid "Send Problem"
874
- #~ msgstr "সমস্যা পাঠান"
 
875
 
876
- #~ msgid "Unistall plugin"
877
- #~ msgstr "প্লাগইন আনইনষ্টল"
 
 
878
 
879
- #~ msgid "Delete all data, including tables and plugin options"
880
- #~ msgstr "সমস্যা তথ্য মুছে ফেলুন, টেবিল এবং প্লাগইন অপমন সগ"
 
881
 
882
- #~ msgid "Uninstall"
883
- #~ msgstr "আনইনস্টল"
 
884
 
885
- #~ msgid "Stats weblog"
886
- #~ msgstr "স্টাটস ওয়েবলগ"
 
887
 
888
- #~ msgid "Agent"
889
- #~ msgstr "এজেন্ট"
 
890
 
891
- #~ msgid "Referrer"
892
- #~ msgstr "রেফারার"
 
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, ইত্যাদি). দেশের কোড হিসাবে &quot;অজানা&quot; ব্যবহার &quot;000&quot; (তিন শূন্য) ব্যবহার করুন."
 
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 "সাম্প্রতিক দর্শক প্লটে বিভক্ত গুগল ম্যাপিং সেবা ব্যবহার করা হবে &quot;গুগল&quot; বিকল্প (গুগল এক্সেস প্রয়োজন)."
 
 
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 "&quot;JQVMap&quot; বিকল্প সাম্প্রতিক দর্শক (কোন 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 "পরিসংখ্যান দেখছেন এবং মানচিত্র টাইপ &quot;গুগল&quot; সেট করা হয় কেবল বৈধ হলে এই বৈশিষ্ট্য একটি কার্যকারিতা অবনতি হতে পারে."
 
 
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 "নিম্নলিখিত আইটেম প্রত্যেক ব্যবহারকারীর জন্য পৃথক হবে. আপনি &#39;আমার&#39; নির্বাচন করবেন না এটি স্বয়ংক্রিয়ভাবে কলাম এ শেষ ফার্দিনান্দ প্রদর্শিত হবে উইজেট"
 
 
 
 
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 "সেট পাতা&gt; 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 "ডাব্লু পরিসংখ্যান পুরাতন ইনস্টলেশনের কোণার ক্ষেত্রে দর্শক টেবিল ডুপ্লিকেট এন্ট্রি জন্য অনুমতি দেয়. নবীনতর ইনস্টলেশনের টেবিলের উপর একটি অনন্য সূচক সঙ্গে এই বিরুদ্ধে রক্ষা করা. পুরোনো সূচক তৈরি করতে ডুপ্লিকেট এন্ট্রি প্রথম মুছে ফেলা হবে ইনস্টল করা হবে. ক্লিক করে &quot;এখনই আপডেট করুন&quot;, 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 "দেশের কোড (প্রতি লাইনে এক, দুই অক্ষর প্রতিটি) একটি তালিকা পরিসংখ্যান সংগ্রহ থেকে বাদ দিতে. অজানা দেশে অগ্রাহ্য &quot;000&quot; (তিন শূন্য) ব্যবহার করুন."
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 "দেশের কোড (প্রতি লাইনে এক, দুই অক্ষর প্রতিটি) একটি তালিকা এই তালিকা খালি না হয়, অন্তর্ভুক্ত দেশ থেকে শুধুমাত্র দর্শক রেকর্ড করা হবে, পরিসংখ্যান সংগ্রহে অন্তর্ভুক্ত. অজানা দেশে অগ্রাহ্য &quot;000&quot; (তিন শূন্য) ব্যবহার করুন."
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 ঠিকানা সংরক্ষণ কিন্তু এর পরিবর্তে একটি অনন্য হ্যাশ ব্যবহার করা হবে না. এই নির্বাচিত হয় যদি &quot;সমগ্র ইউজার এজেন্ট স্ট্রিং সঞ্চয়&quot; সেটিং অক্ষম করা হবে. আপনি এটি যদি সক্রিয় থাকে অবস্থান তথ্য পুনরুদ্ধার ভবিষ্যতে 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 Wordpress Statistics in Czech
2
- # This file is distributed under the same license as the Wordpress Statistics package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2014-10-14 17:15-0500\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
10
- "X-Generator: Poedit 1.6.9\n"
11
- "Project-Id-Version: Wordpress Statistics\n"
12
  "POT-Creation-Date: \n"
13
  "Last-Translator: \n"
14
  "Language-Team: \n"
15
  "Language: cs\n"
16
 
17
- #: includes/log/widgets/about.php:8
18
- msgid "About WP Statistics Version %s"
19
- msgstr "O WP Statistics Verze %s"
20
-
21
- #: includes/log/widgets/summary.php:106
22
- msgid "Date: %s"
23
- msgstr "Datum: %s"
 
 
24
 
25
- #: includes/log/widgets/summary.php:110
26
- msgid "Time: %s"
27
- msgstr "Čas: %s"
28
 
29
- #: includes/optimization/delete-agents.php:14
30
- msgid "%s agent data deleted successfully."
31
- msgstr "%s agenta data úspěšně smazána."
32
 
33
- #: includes/optimization/delete-platforms.php:14
34
- msgid "%s platform data deleted successfully."
35
- msgstr "údaje platforma %s úspěšně smazána."
36
 
37
- #: includes/optimization/empty.php:53
38
- msgid "%s table data deleted successfully."
39
- msgstr "data tabulky %s úspěšně smazána."
40
 
41
- #: includes/optimization/purge-data.php:17
42
- #: includes/optimization/purge-data.php:27
43
- #: includes/optimization/purge-data.php:37
44
- #: includes/optimization/purge-data.php:47
45
- msgid "%s data older than %s days purged successfully."
46
- msgstr "%s data starší než %s dnφ úspěšně vyprázdněna."
47
 
48
- #: includes/optimization/purge-data.php:19
49
- #: includes/optimization/purge-data.php:29
50
- #: includes/optimization/purge-data.php:39
51
- #: includes/optimization/purge-data.php:49
52
- msgid "No records found to purge from %s!"
53
- msgstr "Žádné záznamy nalezeny očistit od %s!"
54
 
55
- #: includes/optimization/tabs/wps-optimization-resources.php:44
56
- #: includes/optimization/tabs/wps-optimization-resources.php:55
57
- #: includes/optimization/tabs/wps-optimization-resources.php:66
58
- #: includes/optimization/tabs/wps-optimization-resources.php:77
59
- #: includes/optimization/tabs/wps-optimization-resources.php:88
60
- msgid "Number of rows in the %s table"
61
- msgstr "Počet řádků v tabulce %s"
62
 
63
- #: includes/optimization/tabs/wps-optimization-resources.php:211
64
- msgid "browscap Cache File"
65
- msgstr "Browscap soubor mezipaměti"
66
 
67
- #: includes/optimization/tabs/wps-optimization-resources.php:220
68
- msgid "browscap cache file does not exist."
69
- msgstr "Browscap cache soubor neexistuje."
70
 
71
- #: includes/optimization/tabs/wps-optimization-resources.php:224
72
- msgid "The file size and date of the browscap cache file."
73
- msgstr "Velikost souboru a datum tohoto souboru browscap."
 
 
 
74
 
75
- #: includes/settings/tabs/wps-about.php:24
76
- msgid ""
77
- "Come visit our great new %s and keep up to date on the latest news about WP "
78
- "Statistics."
79
- msgstr ""
80
- "Přijďte navštívit naše skvělé nové %s a aktualizuje na nejnovější zprávy o "
81
- "WP Statistics."
82
 
83
- #: includes/settings/tabs/wps-about.php:24
84
- msgid "website"
85
- msgstr "webové stránky"
86
 
87
- #: includes/settings/tabs/wps-about.php:40
88
- msgid ""
89
- "WP Statistics supports internationalization and we encourage our users to "
90
- "submit translations, please visit our %s to see the current status and %s if "
91
- "you would like to help."
92
- msgstr ""
93
- "WP Statistics podporuje internacionalizaci a doporučujeme našim uživatelům "
94
- "odeslat překlady, navštivte prosím naši %s Chcete-li zobrazit aktuální stav "
95
- "a %s, pokud byste chtěli pomoci."
96
 
97
- #: includes/settings/tabs/wps-about.php:40
98
- msgid "translation collaboration site"
99
- msgstr "Web pro spolupráci Překlad"
100
 
101
- #: includes/settings/tabs/wps-about.php:40
102
- msgid "drop us a line"
103
- msgstr "Podejte nám zprávu"
104
 
105
- #: includes/settings/tabs/wps-about.php:52
106
- #: includes/settings/tabs/wps-about.php:53
107
- msgid "Have you read the %s?"
108
- msgstr "Četli jste %s?"
109
 
110
- #: includes/settings/tabs/wps-about.php:52
111
- msgid "FAQs"
112
- msgstr "Nejčastější dotazy"
113
 
114
- #: includes/settings/tabs/wps-about.php:53
115
- msgid "manual"
116
- msgstr "manuál"
117
 
118
- #: includes/settings/tabs/wps-about.php:54
119
- msgid "Have you search the %s for a similar issue?"
120
- msgstr " jste Hledat %s pro podobný problém?"
121
 
122
- #: includes/settings/tabs/wps-about.php:54
123
- msgid "support forum"
124
- msgstr "fórum podpory"
125
 
126
- #: includes/settings/tabs/wps-about.php:70
127
- msgid ""
128
- "Then please open a new thread on the %s and we'll respond as soon as "
129
- "possible."
130
- msgstr "Pak prosím otevřít nové vlákno na %s a odpovíme co nejdříve."
131
 
132
- #: includes/settings/tabs/wps-about.php:70
133
- msgid "WordPress.org support forum"
134
- msgstr "Fórum podpory WordPress.org"
135
 
136
- #: includes/settings/tabs/wps-about.php:74
137
- msgid "Alternatively %s support is available as well."
138
- msgstr "Další možností %s podpora je k dispozici také."
139
 
140
- #: includes/settings/tabs/wps-access-level.php:85
141
- msgid "See the %s for details on capability levels."
142
- msgstr "Viz %s další informace o úrovních schopností."
143
 
144
- #: includes/settings/tabs/wps-access-level.php:85
145
- msgid "WordPress Roles and Capabilities page"
146
- msgstr "Stránky WordPress rolí a funkcí"
147
 
148
- #: includes/settings/tabs/wps-general.php:67
149
- msgid ""
150
- "This feature will not store IP addresses in the database but instead used a "
151
- "unique hash. The \"Store entire user agent string\" setting will be "
152
- "disabled if this is selected. You will not be able to recover the IP "
153
- "addresses in the future to recover location information if this is enabled."
154
- msgstr ""
155
- "Tato funkce nebude ukládat IP adresy do databáze, ale místo toho používá "
156
- "jedinečný algoritmus hash. \"Store celé uživatelské agent string\" nastavení "
157
- "bude zakázáno, pokud je vybrána tato možnost. Nebude schopen obnovit adresy "
158
- "IP v budoucnosti obnovit informace o poloze, pokud je to povoleno."
159
 
160
- #: includes/settings/tabs/wps-general.php:340
161
- msgid "Note: To send SMS text messages please install the %s plugin."
162
- msgstr ""
163
- "Poznámka: Poslat SMS textové zprávy prosím nainstalovat zásuvný modul %s."
164
 
165
- #: includes/settings/tabs/wps-general.php:340
166
- msgid "WordPress SMS"
167
- msgstr "WordPress SMS"
168
 
169
- #: wp-statistics.php:27
170
- msgid ""
171
- "ERROR: WP Statistics has detected an unsupported version of PHP, WP "
172
- "Statistics will not function without PHP Version "
173
- msgstr ""
174
- "Chyba: WP Statistics zjistila nepodporovanou verzi PHP, WP Statistics nebude "
175
- "fungovat bez verze PHP "
176
 
177
- #: wp-statistics.php:27
178
- msgid " or higher!"
179
- msgstr "nebo vyšší!"
180
 
181
- #: wp-statistics.php:81
182
- msgid ""
183
- "Online user tracking in WP Statistics is not enabled, please go to %s and "
184
- "enable it."
185
- msgstr ""
186
- "On-line sledování v WP Statistics uživatelů není povoleno, přejděte na %s a "
187
- "umožňují."
188
 
189
- #: wp-statistics.php:81 wp-statistics.php:84 wp-statistics.php:87
190
- msgid "setting page"
191
- msgstr "nastavení stránky"
192
 
193
- #: wp-statistics.php:84
194
- msgid ""
195
- "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
196
- msgstr ""
197
- "Sledování přístupů v WP Statistics není povoleno, přejděte na %s a umožňují."
198
 
199
- #: wp-statistics.php:87
200
- msgid ""
201
- "Visitor tracking in WP Statistics is not enabled, please go to %s and enable "
202
- "it."
203
- msgstr ""
204
- "Návštěvník v WP Statistics sledování není povoleno, přejděte na %s a "
205
- "umožňují."
206
 
207
- #: wp-statistics.php:90
208
- msgid ""
209
- "GeoIP collection is not active, please go to %s and enable this feature."
210
- msgstr "GeoIP kolekce není aktivní, přejděte na %s a tuto funkci povolit."
211
 
212
- #: wp-statistics.php:90
213
- msgid "Setting page > GeoIP"
214
- msgstr "Nastavení stránky > GeoIP"
215
 
216
- msgid "http://wp-statistics.com/"
217
- msgstr "http://WP-STATISTICS.com/"
 
218
 
219
- msgid "Mostafa Soufi & Greg Ross"
220
- msgstr "Mostafa Lucie & Greg Ross"
 
221
 
222
- #: includes/settings/wps-settings.php:90
223
- msgid "browscap"
224
- msgstr "Browscap"
225
 
226
- #: wp-statistics.php:706
227
- msgid "Error downloading browscap database from: %s - %s"
228
- msgstr "Chyba při stahování browscap databáze od: %s - %s"
229
 
230
- #: wp-statistics.php:794
231
- msgid "browscap database updated successfully!"
232
- msgstr "Browscap databáze úspěšně aktualizován!"
233
 
234
- #: wp-statistics.php:802
235
- msgid "browscap already at current version!"
236
- msgstr "Browscap již v aktuální verzi!"
237
 
238
- #: includes/optimization/tabs/wps-optimization-database.php:5
239
- msgid "Database Setup"
240
- msgstr "Nastavení databáze"
241
 
242
- #: includes/optimization/tabs/wps-optimization-database.php:10
243
- msgid "Re-run Install"
244
- msgstr "Spusťte znovu instalaci"
245
 
246
- #: includes/optimization/tabs/wps-optimization-database.php:14
247
- msgid "Install Now!"
248
- msgstr "Nainstalujte nyní!"
249
 
250
- #: includes/optimization/tabs/wps-optimization-database.php:15
251
- msgid ""
252
- "If for some reason your installation of WP Statistics is missing the "
253
- "database tables or other core items, this will re-execute the install "
254
- "process."
255
- msgstr ""
256
- "Pokud z nějakého důvodu instalace WP Statistics chybí, databázové tabulky "
257
- "nebo jiné položky jádro, to bude znovu provést instalačního procesu."
258
 
259
- #: includes/optimization/tabs/wps-optimization-resources.php:163
260
- msgid ""
261
- "If the PHP BC Math Extension is installed. BC Math is no longer required "
262
- "for the GeoIP code and is listed here only for historical reasons."
263
- msgstr ""
264
- "Pokud je nainstalováno rozšíření PHP BC Math. BCMath již není zapotřebí pro "
265
- "kód GeoIP a je zde uveden pouze z historických důvodů."
266
 
267
- #: includes/optimization/tabs/wps-optimization-resources.php:168
268
- msgid "File Info"
269
- msgstr "Informace o souboru"
270
 
271
- #: includes/optimization/tabs/wps-optimization-resources.php:173
272
- msgid "GeoIP Database"
273
- msgstr "GeoIP databáze"
274
 
275
- #: includes/optimization/tabs/wps-optimization-resources.php:184
276
- #: includes/optimization/tabs/wps-optimization-resources.php:203
277
- #: includes/optimization/tabs/wps-optimization-resources.php:222
278
- msgid ", created on "
279
- msgstr ", na "
280
 
281
- #: includes/optimization/tabs/wps-optimization-resources.php:186
282
- msgid "The file size and date of the GeoIP database."
283
- msgstr "Velikost souboru a datum GeoIP databáze."
284
 
285
- #: includes/optimization/tabs/wps-optimization-resources.php:192
286
- msgid "browscap.ini File"
287
- msgstr "Soubor Browscap.ini"
288
 
289
- #: includes/optimization/tabs/wps-optimization-resources.php:201
290
- msgid "browscap.ini file does not exist."
291
- msgstr "Soubor Browscap.ini neexistuje."
292
 
293
- #: includes/optimization/tabs/wps-optimization-resources.php:205
294
- msgid "The file size and date of the browscap.ini file."
295
- msgstr "Velikost souboru a datum souboru browscap.ini."
296
 
297
- #: includes/optimization/wps-optimization.php:51
298
- msgid "Install routine complete."
299
- msgstr "Instalujte kompletní rutina."
300
 
301
- #: includes/settings/tabs/wps-browscap.php:17
302
- msgid "browscap settings"
303
- msgstr "Browscap nastavení"
304
 
305
- #: includes/settings/tabs/wps-browscap.php:22
306
- msgid "browscap usage"
307
- msgstr "Browscap využití"
308
 
309
- #: includes/settings/tabs/wps-browscap.php:28
310
- msgid "The browscap database will be downloaded and used to detect robots."
311
- msgstr "Browscap databáze bude stáhnout a slouží k detekci roboty."
312
 
313
- #: includes/settings/tabs/wps-browscap.php:34
314
- msgid "Update browscap Info"
315
- msgstr "Aktualizovat browscap Info"
316
 
317
- #: includes/settings/tabs/wps-browscap.php:39
318
- msgid "Download browscap Database"
319
- msgstr "Stáhnout browscap databáze"
320
 
321
- #: includes/settings/tabs/wps-browscap.php:46
322
- msgid "Schedule weekly update of browscap DB"
323
- msgstr "Rozvrh týdenní aktualizace browscap DB"
324
 
325
- #: includes/settings/tabs/wps-browscap.php:69
326
- msgid "Download of the browscap database will be scheduled for once a week."
327
- msgstr "Ke stažení browscap databáze bude naplánován pro jednou za týden."
 
328
 
329
- #: includes/optimization/tabs/wps-optimization-database.php:40
330
- msgid ""
331
- "Older installs of WP Statistics allow for duplicate entries in the visitors "
332
- "table in a corner case. Newer installs protect against this with a unique "
333
- "index on the table. To create the index on the older installs duplicate "
334
- "entries must be deleted first. Clicking \"Update Now\" will scan the "
335
- "vistitors table, delete duplicate entries and add the index."
336
- msgstr ""
337
- "Starší instalace WP Statistics umožňují Duplicitní položky v tabulce "
338
- "návštěvníků v případě rohové. Novější instalace se proti tomu bránit s "
339
- "jedinečný index v tabulce. Chcete-li vytvořit index na starší instaluje "
340
- "duplicitní položky musí být odstraněny jako první. Klepnutím na \"Update Now"
341
- "\" prohledá tabulku vistitors, odstranit duplicitní položky a přidat indexu."
342
 
343
- #: includes/optimization/tabs/wps-optimization-database.php:46
344
- msgid ""
345
- "Older installs of WP Statistics allow for duplicate entries in the visitors "
346
- "table in a corner case. Newer installs protect against this with a unique "
347
- "index on the table."
348
- msgstr ""
349
- "Starší instalace WP Statistics umožňují Duplicitní položky v tabulce "
350
- "návštěvníků v případě rohové. Novější instalace se proti tomu bránit s "
351
- "jedinečný index v tabulce."
352
 
353
- #: includes/optimization/tabs/wps-optimization-database.php:47
354
- msgid ""
355
- "Congratulations, your installation is already up to date, nothing to do."
356
- msgstr "Gratulujeme vaše instalace je již datum, nic společného."
357
 
358
- #: includes/settings/tabs/wps-about.php:55
359
- msgid "Have you search the Internet for any error messages you are receiving?"
360
- msgstr ""
361
- "Už jste Hledat na internetu pro všechny chybové zprávy, které obdržíte?"
362
 
363
- #: includes/settings/tabs/wps-about.php:66
364
- msgid ""
365
- "Are you getting a blank or incomplete page displayed in your browser? Did "
366
- "you view the source for the page and check for any fatal errors?"
367
- msgstr ""
368
- "Dostáváš prázdné nebo neúplné stránky zobrazené v prohlížeči? Jste zobrazit "
369
- "zdroj jazyk pro stránku a zkontrolujte případné závažné chyby?"
370
 
371
- #: includes/settings/tabs/wps-about.php:67
372
- msgid "Have you checked your PHP and web server error logs?"
373
- msgstr "Zkontrolovali jste protokolů chyb serveru PHP a web?"
 
 
374
 
375
- #: widget.php:15
376
- msgid "Show site stats in sidebar."
377
- msgstr "Zobrazit statistiky stránek v postranním panelu."
378
 
379
- #: includes/log/last-search.php:97 includes/log/last-visitor.php:94
380
- #: includes/log/widgets/google.map.php:65 includes/log/widgets/jqv.map.php:59
381
- #: includes/log/widgets/recent.php:22 includes/log/widgets/words.php:25
382
- msgid "#hash#"
383
- msgstr "#hash #"
384
 
385
- #: includes/optimization/tabs/wps-optimization-updates.php:4
386
- msgid ""
387
- "This will replace all IP addresses in the database with hash values and "
388
- "cannot be undo, are you sure?"
389
- msgstr ""
390
- "To nahradí všechny IP adresy v databázi hodnoty hash a nemůže být zpět, jste "
391
- "si jisti?"
392
 
393
- #: includes/optimization/tabs/wps-optimization-updates.php:26
394
- msgid ""
395
- "Updates any unknown location data in the database, this may take a while"
396
- msgstr ""
397
- "Aktualizuje všechny neznámé lokalizační údaje v databázi, to může chvíli "
398
- "trvat"
399
 
400
- #: includes/optimization/tabs/wps-optimization-updates.php:31
401
- #: includes/settings/tabs/wps-general.php:56
402
- msgid "IP Addresses"
403
- msgstr "Adresy IP"
404
 
405
- #: includes/optimization/tabs/wps-optimization-updates.php:36
406
- #: includes/settings/tabs/wps-general.php:61
407
- msgid "Hash IP Addresses"
408
- msgstr "Algoritmus hash IP adresy"
409
 
410
- #: includes/optimization/tabs/wps-optimization-updates.php:41
411
- msgid ""
412
- "Replace IP addresses in the database with hash values, you will not be able "
413
- "to recover the IP addresses in the future to populate location information "
414
- "afterwards and this may take a while"
415
- msgstr ""
416
- "Nahradit hodnoty hash, adresy IP v databázi nebude možné obnovit adresy IP v "
417
- "budoucnu k vyplnění informací o umístění později a to může chvíli trvat"
418
 
419
- #: includes/optimization/wps-optimization.php:43
420
- msgid "IP Addresses replaced with hash values."
421
- msgstr "IP adresy nahrazeny hodnoty hash."
422
 
423
- #: includes/settings/tabs/wps-access-level.php:149
424
- msgid "Force robot list update after upgrades"
425
- msgstr "Vynutit robota seznamu aktualizaci po inovaci"
426
 
427
- #: includes/settings/tabs/wps-access-level.php:152
428
- msgid ""
429
- "Force the robot list to be reset to the default after an update to WP "
430
- "Statistics takes place. Note if this option is enabled any custom robots "
431
- "you have added to the list will be lost."
432
- msgstr ""
433
- "Platnost seznamu robota tak, aby obnovit na výchozí po aktualizaci "
434
- "statistiky WP se koná. Poznámka: je-li tato možnost povolena, žádné vlastní "
435
- "roboty, které jste přidali do seznamu budou ztraceny."
436
 
437
- #: includes/settings/tabs/wps-general.php:40
438
- msgid "This will delete the manual when you save the settings, are you sure?"
439
- msgstr "To odstraní ruční, když uložíte nastavení, jste si jisti?"
440
 
441
- #: includes/settings/tabs/wps-general.php:220
442
- msgid ""
443
- "By default WP Statistics displays an alert if any of the core features are "
444
- "disabled on every admin page, this option will disable these notices."
445
- msgstr ""
446
- "Ve výchozím nastavení WP Statistics zobrazí výstrahu, pokud některý ze "
447
- "základních funkcí jsou zakázány na každé stránce správce, tato možnost "
448
- "zakáže tato oznámení."
449
 
450
- #: includes/settings/tabs/wps-general.php:226
451
- msgid "Delete the manual"
452
- msgstr "Odstranit manuál"
 
 
453
 
454
- #: includes/settings/tabs/wps-general.php:232
455
- msgid ""
456
- "By default WP Statistics stores the admin manual in the plugin directory (~5 "
457
- "meg), if this option is enabled it will be deleted now and during upgrades "
458
- "in the future."
459
- msgstr ""
460
- "Ve výchozím nastavení ukládá statistiky WP admin ruční v adresáři plugin (~ "
461
- "5 meg), je-li tato možnost povolena, bude odstraněn dnes a během upgrade v "
462
- "budoucnu."
463
-
464
- #: includes/optimization/tabs/wps-optimization-database.php:20
465
- msgid "Database Index"
466
- msgstr "Databáze Index"
467
-
468
- #: includes/optimization/tabs/wps-optimization-database.php:41
469
- msgid ""
470
- "This operation could take a long time on installs with many rows in the "
471
- "visitors table."
472
- msgstr ""
473
- "Tato operace může trvat dlouhou dobu na nainstaluje s mnoha řádků v tabulce "
474
- "návštěvníků."
475
-
476
- #: includes/optimization/wps-optimization.php:129
477
- msgid "Database"
478
- msgstr "Databáze"
479
-
480
- #: includes/settings/tabs/wps-general.php:298
481
- msgid "Schedule"
482
- msgstr "Plán"
483
-
484
- #: includes/settings/tabs/wps-general.php:328
485
- msgid "Send reports via"
486
- msgstr "Zaslat reporty via"
487
-
488
- #: includes/settings/tabs/wps-general.php:347
489
- msgid "E-mail addresses"
490
- msgstr "E-mail adresy"
491
-
492
- #: includes/settings/tabs/wps-general.php:352
493
- msgid ""
494
- "A comma separated list of e-mail addresses to send the reports to if e-mail "
495
- "is selected above."
496
- msgstr ""
497
- "Čárkami oddělený seznam e-mailových adres k odesílání zpráv, pokud je výše "
498
- "vybrané e-mailové."
499
-
500
- #: includes/settings/tabs/wps-general.php:358
501
- msgid "Report body"
502
- msgstr "Tělo reportu"
503
-
504
- #: includes/settings/tabs/wps-overview-display.php:75
505
- msgid "The following three items are global to all users."
506
- msgstr "Násleedující tři položky jsou globální pro všechny uživatele."
507
-
508
- #: includes/settings/tabs/wps-overview-display.php:80
509
- msgid "Map type"
510
- msgstr "Typ mapy"
511
-
512
- #: includes/settings/tabs/wps-overview-display.php:86
513
- msgid "JQVMap"
514
- msgstr "JQVMap"
515
-
516
- #: includes/settings/tabs/wps-overview-display.php:93
517
- msgid ""
518
- "The \"Google\" option will use Google's mapping service to plot the recent "
519
- "visitors (requires access to Google)."
520
- msgstr ""
521
- "Zvolením \"Google\" bude použity mapové službý Google pro vykreslení návštěv "
522
- "(požaduje přístup na Google(. "
523
-
524
- #: includes/settings/tabs/wps-overview-display.php:94
525
- msgid ""
526
- "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the "
527
- "recent visitors (requires no extenral services)."
528
- msgstr ""
529
- " \"JQVMap\" volba použije JQVMap javascript mapovou knihovnu k vykreslení "
530
- "návštěv (vyžaduje externí služby)."
531
-
532
- #: includes/settings/tabs/wps-overview-display.php:118
533
- msgid ""
534
- "This feature may cause a performance degradation when viewing statistics and "
535
- "is only valid if the map type is set to \"Google\"."
536
- msgstr ""
537
- "Tato funkce může způsobit snížení výkonu při prohlížení statistiky a je "
538
- "platná pouze pokud typ mapy je nastavena na \"Google\"."
539
-
540
- #: includes/log/all-browsers.php:50
541
- msgid "Browsers by type"
542
- msgstr "Prohlížeče podle typu"
543
-
544
- #: includes/log/all-browsers.php:133
545
- msgid "Browsers by platform"
546
- msgstr "Platforma prohlížečů"
547
-
548
- #: includes/log/exclusions.php:97
549
- msgid "Excluded hits in the last"
550
- msgstr "Vyloučené hity v posledních"
551
-
552
- #: includes/log/hit-statistics.php:36
553
- msgid "Hits Statistics Chart"
554
- msgstr "Graf statistiky přístupů"
555
-
556
- #: includes/log/hit-statistics.php:69 includes/log/widgets/hits.php:39
557
- msgid "Hits in the last"
558
- msgstr "Hity v posledních"
559
-
560
- #: includes/log/last-search.php:30 includes/log/widgets/words.php:16
561
- #: includes/settings/tabs/wps-overview-display.php:36
562
- msgid "Latest Search Words"
563
- msgstr "Poslední vyhledávaný slova"
564
-
565
- #: includes/log/last-search.php:62
566
- msgid "Latest Search Word Statistics"
567
- msgstr "Stastiky posledně vyhledávaných slov"
568
-
569
- #: includes/log/last-visitor.php:61
570
- msgid "Recent Visitor Statistics"
571
- msgstr "Nedávné statistiky návštěvnosti"
572
-
573
- #: includes/log/widgets/google.map.php:9 includes/log/widgets/jqv.map.php:9
574
- msgid "Today Visitors Map"
575
- msgstr "Dnešní mapa návštšvníků"
576
-
577
- #: includes/log/widgets/summary.php:8
578
- msgid "Summary"
579
- msgstr "Souhrn"
580
-
581
- #: includes/log/widgets/summary.php:13
582
- msgid "User(s) Online"
583
- msgstr "Online uživatelé"
584
-
585
- #: includes/log/widgets/browsers.php:45
586
- msgid "Top 10 Browsers"
587
- msgstr "Top 10 Prohlížečů"
588
-
589
- #: includes/log/top-referring.php:34 includes/log/top-referring.php:49
590
- #: includes/log/widgets/referring.php:13
591
- #: includes/settings/tabs/wps-overview-display.php:26
592
- msgid "Top Referring Sites"
593
- msgstr "Nejlepší odkazující stránky"
594
-
595
- #: includes/log/widgets/about.php:16
596
- msgid "Rate and Review"
597
- msgstr "Hodnotit a recenzovat"
598
 
599
- #: includes/log/widgets/about.php:20
600
- msgid "More Information"
601
- msgstr "Více informací"
 
 
602
 
603
- #: includes/log/widgets/about.php:29 includes/settings/tabs/wps-about.php:12
604
- msgid ""
605
- "This product includes GeoLite2 data created by MaxMind, available from %s."
606
- msgstr ""
607
- "Tento produkt obsahuje GeoLite2 data vytvořená MaxMind, k dispozici od %s."
608
 
609
- #: includes/log/search-statistics.php:77 includes/log/widgets/search.php:46
610
- msgid "Search engine referrals in the last"
611
- msgstr "Vyhledávací stroj doporučení v posledních"
 
 
612
 
613
- #: includes/log/search-statistics.php:98 includes/log/widgets/search.php:67
614
- msgid "Number of referrals"
615
- msgstr "Počet odkazů"
 
 
616
 
617
- #: includes/log/widgets/pages.php:13
618
- msgid "Top 10 Pages"
619
- msgstr "Top 10 stránek"
 
620
 
621
- #: includes/log/search-statistics.php:17 includes/log/search-statistics.php:36
622
- msgid "Search Engine Referral Statistics"
623
- msgstr "Vyhledávací Engine referenční Statistika"
624
 
625
- #: includes/settings/tabs/wps-about.php:8
626
- msgid "WP Statistics V%s"
627
- msgstr "WP Statistiky V%s"
 
628
 
629
- #: includes/settings/tabs/wps-about.php:20
630
- msgid "Visit Us Online"
631
- msgstr "Navštivte nás Online"
632
 
633
- #: includes/settings/tabs/wps-about.php:28
634
- msgid "Rate and Review at WordPress.org"
635
- msgstr "Ohodnoť a prohlédni WordPress.org"
636
 
637
- #: includes/settings/tabs/wps-about.php:32
638
- msgid "Thanks for installing WP Statistics, we encourage you to submit a "
639
- msgstr "Děkujeme za instalaci WP Stastiky, doporučujeme ti zaslat"
640
 
641
- #: includes/settings/tabs/wps-about.php:32
642
- msgid "rating and review"
643
- msgstr "Hodnocení a recenze"
644
 
645
- #: includes/settings/tabs/wps-about.php:32
646
- msgid "over at WordPress.org. Your feedback is greatly appreciated!"
647
- msgstr "více než na WordPress.org. Vaše zpětná vazba je velmi ceněn!"
 
 
648
 
649
- #: includes/settings/tabs/wps-about.php:49
650
- msgid ""
651
- "We're sorry you're having problem with WP Statistics and we're happy to help "
652
- "out. Here are a few things to do before contacting us:"
653
- msgstr ""
654
- "Omlouváme se, máte problémy s WP Statistics a my jsme rádi pomohli. Zde je "
655
- "pár věci na práci než se obrátíte na nás:"
656
 
657
- #: includes/settings/tabs/wps-about.php:58
658
- msgid "And a few things to double-check:"
659
- msgstr "A pár věcí na dvakrát:"
660
 
661
- #: includes/settings/tabs/wps-about.php:61
662
- msgid "How's your memory_limit in php.ini?"
663
- msgstr "Jak máš nastaven memory_limit v php.ini?"
664
 
665
- #: includes/settings/tabs/wps-about.php:62
666
- msgid "Have you tried disabling any other plugins you may have installed?"
667
- msgstr " jste vyzkoušeli, zakázání jiné pluginy, které jste nainstalovali?"
668
 
669
- #: includes/settings/tabs/wps-about.php:63
670
- msgid "Have you tried using the default WordPress theme?"
671
- msgstr " jste vyzkoušeli pomocí výchozí WordPress téma?"
672
 
673
- #: includes/settings/tabs/wps-about.php:64
674
- msgid "Have you double checked the plugin settings?"
675
- msgstr "Zkontrolovali jste dvojí nastavení pluginu?"
676
 
677
- #: includes/settings/tabs/wps-about.php:65
678
- msgid "Do you have all the required PHP extensions installed?"
679
- msgstr "Máte instalované všechny vyžadované PHP rozšíření?"
680
 
681
- #: includes/settings/tabs/wps-about.php:70
682
- msgid "Still not having any luck?"
683
- msgstr "Ještě nemají žádné štěstí?"
684
 
685
- #: includes/optimization/tabs/wps-optimization-export.php:17
686
- #: includes/optimization/tabs/wps-optimization-export.php:35
687
- #: includes/optimization/tabs/wps-optimization-purging.php:128
688
- #: includes/optimization/tabs/wps-optimization-purging.php:169
689
- #: includes/optimization/tabs/wps-optimization-purging.php:193
690
- #: includes/settings/tabs/wps-general.php:303
691
- #: includes/settings/tabs/wps-general.php:333
692
- msgid "Please select"
693
- msgstr "Prosím vyber"
694
 
695
- #: includes/settings/tabs/wps-general.php:365
696
- msgid ""
697
- "Any shortcode supported by your installation of WordPress, include all "
698
- "shortcodes for WP Statistics (see the admin manual for a list of codes "
699
- "available) are supported in the body of the message."
700
- msgstr ""
701
- "Nějaký nedostatek, podporované instalace WordPress, zahrnout všechny "
702
- "shortcodes pro WP Statistics (viz příručka správce seznam kódů, které jsou k "
703
- "dispozici) jsou podporovány v těle zprávy."
704
 
705
- #: includes/settings/tabs/wps-general.php:368
706
- msgid ""
707
- "Input data codes are now deprecated and will be removed in a future version "
708
- "of WP Statistics, please use the appropriate shortcodes, they are included "
709
- "here only for historical purposes:"
710
- msgstr ""
711
- "Vstupní data kódy jsou nyní zastaralé a budou odstraněny v budoucí verzi WP "
712
- "Statistics, použijte odpovídající shortcodes, jsou zde zahrnuty pouze pro "
713
- "historické účely:"
714
 
715
- #: includes/settings/tabs/wps-geoip.php:22
716
- msgid ""
717
- "IP location services provided by GeoLite2 data created by MaxMind, available "
718
- "from %s."
719
- msgstr ""
720
- "IP umístění služby poskytované GeoLite2 data vytvořená MaxMind, k dispozici "
721
- "od %s."
722
 
723
- #: includes/settings/tabs/wps-overview-display.php:23
724
- #: includes/settings/tabs/wps-overview-display.php:32
725
- msgid "None"
726
- msgstr "Žádný"
727
 
728
- #: includes/settings/tabs/wps-overview-display.php:28
729
- #: includes/settings/wps-settings.php:92
730
- msgid "About"
731
- msgstr "O"
732
 
733
- #: includes/settings/tabs/wps-overview-display.php:123
734
- msgid "Widgets to Display"
735
- msgstr "Widgety k zobrazení"
736
 
737
- #: includes/settings/tabs/wps-overview-display.php:132
738
- msgid ""
739
- "The following items are unique to each user. If you do not select the "
740
- "'About' widget it will automatically be displayed in the last positon of "
741
- "column A."
742
- msgstr ""
743
- "Následující položky jsou jedinečné pro každého uživatele. Pokud nezaškrtnete "
744
- "políčko \"O mně\" widget bude automaticky zobrazen v poslední pozici sloupce "
745
- "A."
746
 
747
- #: includes/settings/tabs/wps-overview-display.php:137
748
  msgid "Slot"
749
  msgstr "Slot"
750
 
751
- #: includes/settings/tabs/wps-overview-display.php:141
752
  msgid "Column A"
753
  msgstr "Sloupec A"
754
 
755
- #: includes/settings/tabs/wps-overview-display.php:145
756
  msgid "Column B"
757
  msgstr "Sloupec B"
758
 
759
- #: includes/settings/tabs/wps-overview-display.php:151
760
  msgid "Slot 1"
761
  msgstr "Slot 1"
762
 
763
- #: includes/settings/tabs/wps-overview-display.php:181
764
  msgid "Slot 2"
765
  msgstr "Slot 2"
766
 
767
- #: includes/settings/tabs/wps-overview-display.php:211
768
  msgid "Slot 3"
769
  msgstr "Slot 3"
770
 
771
- #: includes/settings/tabs/wps-overview-display.php:241
772
  msgid "Slot 4"
773
  msgstr "Slot 4"
774
 
775
- #: includes/settings/tabs/wps-overview-display.php:271
776
  msgid "Slot 5"
777
  msgstr "Slot 5"
778
 
779
- #: includes/settings/tabs/wps-overview-display.php:301
780
  msgid "Slot 6"
781
  msgstr "Slot 6"
782
 
783
- #: includes/settings/tabs/wps-overview-display.php:305
 
784
  msgid "N/A"
785
  msgstr "N/A"
786
 
787
- #: widget.php:280
788
- msgid "Search Engine Referred"
789
- msgstr "Vyhledávač podle"
790
 
791
- #: schedule.php:10
792
- msgid "Once Weekly"
793
- msgstr "Jednou týdně"
794
 
795
- #: schedule.php:17
796
- msgid "Once Every 2 Weeks"
797
- msgstr "Jednou za 2 týdny"
798
 
799
- #: schedule.php:24
800
- msgid "Once Every 4 Weeks"
801
- msgstr "Jednou za 4 týdny"
802
 
803
- #: wp-statistics.php:39
804
- msgid "Complete statistics for your WordPress site."
805
- msgstr "Kompletní statistiky pro váš web WordPress."
806
 
807
- #: includes/log/widgets/about.php:15
808
- msgid "Website"
809
- msgstr "Web stránky"
810
 
811
- #: includes/log/top-referring.php:117 includes/log/widgets/referring.php:19
812
- msgid "References"
813
- msgstr "Odkazy"
814
 
815
- #: includes/optimization/tabs/wps-optimization-resources.php:33
816
- msgid "PHP Memory Limit"
817
- msgstr "PHP Paměť Limit"
818
 
819
- #: includes/optimization/tabs/wps-optimization-resources.php:38
820
- msgid "The memory limit a script is allowed to consume, set in php.ini."
821
- msgstr "Limit paměti skriptu je dovoleno konzumovat, v php.ini."
822
 
823
- #: wp-statistics.php:38
824
- msgid "WP Statistics"
825
- msgstr "WP Statistiky"
826
 
827
- #: wp-statistics.php:164
828
- msgid "Visit WordPress.org page"
829
- msgstr "Navštivte stránku WordPress.org"
830
 
831
- #: includes/log/page-statistics.php:29
832
- msgid "Page Trend for Post ID"
833
- msgstr "Stránky Trend pro ID příspěvku"
834
 
835
- #: includes/log/page-statistics.php:48
836
- msgid "Page Trend"
837
- msgstr "Stránky Trend"
838
 
839
- #: includes/log/page-statistics.php:68
840
- msgid "Page Trending Stats"
841
- msgstr "Stránky trendy statistiky"
842
 
843
- #: includes/settings/tabs/wps-access-level.php:97
844
- msgid "Record exclusions"
845
- msgstr "Vyloučení záznamů"
846
 
847
- #: includes/settings/tabs/wps-access-level.php:130
848
- msgid "Robot list"
849
- msgstr "Seznam robotů"
850
 
851
- #: includes/settings/tabs/wps-access-level.php:157
852
- msgid "Excluded IP address list"
853
- msgstr "Vyloučené seznam adres IP"
854
 
855
- #: includes/settings/tabs/wps-access-level.php:160
856
- msgid ""
857
- "A list of IP addresses and subnet masks (one per line) to exclude from "
858
- "statistics collection (both 192.168.0.0/24 and 192.168.0.0/255.255.255.0 "
859
- "formats are accepted). To specify an IP address only, use a subnet value of "
860
- "32 or 255.255.255.255."
861
- msgstr ""
862
- "Seznam adres IP a podsítě masky (jeden na řádek) vyloučit ze sběru "
863
- "statistických údajů (192.168.0.0/24 a 192.168.0.0/255.255.255.0 formáty jsou "
864
- "přijímány). Chcete-li určit adresu IP, použijte podsítě hodnotu 32 nebo "
865
- "255.255.255.255."
866
 
867
- #: includes/settings/tabs/wps-access-level.php:172
868
- msgid "Excluded login page"
869
- msgstr "Vyloučené přihlašovací stránka"
870
 
871
- #: includes/settings/tabs/wps-access-level.php:179
872
- msgid "Excluded admin pages"
873
- msgstr "Vyloučené admin stránky"
874
 
875
- #: includes/settings/tabs/wps-general.php:72
876
- msgid "Users Online"
877
- msgstr "Uživatelé online"
 
 
878
 
879
- #: includes/settings/tabs/wps-general.php:77
880
- msgid "User online"
881
- msgstr "Uživatel online"
882
 
883
- #: includes/settings/tabs/wps-general.php:172
884
- msgid "Track all pages"
885
- msgstr "Sledovat všechny stránky"
 
886
 
887
- #: includes/settings/tabs/wps-general.php:184
888
- msgid "Disable hits column in post/pages list"
889
- msgstr "Zakázat hity sloupec v seznamu post/stránky"
 
890
 
891
- #: includes/settings/tabs/wps-general.php:195
892
- msgid "Miscellaneous"
893
- msgstr "Různé"
 
894
 
895
- #: wp-statistics.php:164
896
- msgid "Click here to visit the plugin on WordPress.org"
897
- msgstr "Chcete-li navštívit plugin WordPress.org"
 
898
 
899
- #: wp-statistics.php:167
900
- msgid "Click here to rate and review this plugin on WordPress.org"
901
- msgstr "Klikněte zde pro hodnocení a recenzování tento plugin na WordPress.org"
902
 
903
- #: wp-statistics.php:167
904
- msgid "Rate this plugin"
905
- msgstr "Ohodnoť tento plugin"
 
906
 
907
- #: wp-statistics.php:211
908
- msgid "WP Statistics - Hits"
909
- msgstr "WP Statistics - Hits"
 
910
 
911
- #: wp-statistics.php:599
912
- msgid "Error downloading GeoIP database from: %s - %s"
913
- msgstr "Chyba při stahování GeoIP databáze od: %s - %s"
 
914
 
915
- #: widget.php:108 widget.php:277
916
- msgid "Total Page Views"
917
- msgstr "Celkový počet zobrazení stránky"
 
918
 
919
- #: includes/settings/tabs/wps-general.php:155
920
- #: includes/settings/tabs/wps-general.php:160 wp-statistics.php:259
921
- msgid "Pages"
922
- msgstr "Stránky"
923
 
924
- #: wp-statistics.php:266
925
- msgid "Manual"
926
- msgstr "Manuál"
 
927
 
928
- #: wp-statistics.php:364
929
- msgid "Download ODF file"
930
- msgstr "Stáhnout soubor ODF"
 
931
 
932
- #: wp-statistics.php:365
933
- msgid "Download HTML file"
934
- msgstr "Stáhnout HTML soubor"
 
935
 
936
- #: wp-statistics.php:369
937
- msgid "Manual file not found."
938
- msgstr "Ruční soubor nebyl nalezen."
 
939
 
940
- #: includes/log/exclusions.php:54
941
- msgid "Exclusions Statistics"
942
- msgstr "Vyloučení statistiky"
943
 
944
- #: includes/settings/tabs/wps-overview-display.php:37
945
- msgid "Top Pages Visited"
946
- msgstr "Top navštívené stránky"
947
 
948
- #: includes/log/top-pages.php:160 includes/log/widgets/pages.php:27
949
- msgid "No page title found"
950
- msgstr "Žádný titulek stránky nalézt"
 
951
 
952
- #: includes/log/top-pages.php:13 includes/log/top-pages.php:132
953
- msgid "Top Pages"
954
- msgstr "Nejlepší stránky"
955
 
956
- #: includes/log/top-pages.php:20
957
- msgid "Top 5 Pages Trends"
958
- msgstr "Top 5 stránek trendy"
959
 
960
- #: includes/log/top-pages.php:49
961
- msgid "Top 5 Page Trending Stats"
962
- msgstr "Top 5 stránek trendy statistiky"
963
 
964
- #: includes/log/page-statistics.php:89 includes/log/top-pages.php:70
965
- msgid "Number of Hits"
966
- msgstr "Počet přístupů"
967
 
968
- #: manual/manual.php:29
969
- msgid "Manual not found: %s"
970
- msgstr "Manuál nebyl nalezen: %s"
971
 
972
- #: manual/manual.php:39
973
- msgid "Invalid file type selected: %s"
974
- msgstr "Vybraný typ souboru je neplatná: %s"
975
 
976
- #: widget.php:116
977
- msgid "Search Engine referred"
978
- msgstr "Vyhledávač podle"
979
 
980
- #: includes/optimization/tabs/wps-optimization-export.php:47
981
- msgid "Include Header Row"
982
- msgstr "Zahrnout řádek záhlaví"
983
 
984
- #: includes/optimization/tabs/wps-optimization-export.php:52
985
- msgid "Include a header row as the first line of the exported file."
986
- msgstr "Zahrnout řádek záhlaví jako první řádek v exportovaném souboru."
987
 
988
- #: includes/optimization/tabs/wps-optimization-resources.php:125
989
- msgid "PHP Safe Mode"
990
- msgstr "PHP Bezpečný mód"
 
 
991
 
992
- #: includes/optimization/tabs/wps-optimization-resources.php:130
993
- msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
994
- msgstr ""
995
- "Je PHP nouzovém režimu aktivní. GeoIP kód není podporován v nouzovém režimu."
996
 
997
- #: includes/settings/tabs/wps-geoip.php:106
998
- msgid "GeoIP collection is disabled due to the following reasons:"
999
- msgstr "Kolekce GeoIP je zakázáno z následujících důvodů:"
1000
 
1001
- #: includes/settings/tabs/wps-geoip.php:126
1002
- msgid ""
1003
- "PHP safe mode detected! GeoIP collection is not supported with PHP's safe "
1004
- "mode enabled!"
1005
- msgstr ""
1006
- "PHP nouzový režim zjištěn! GeoIP kolekce není podporován s PHP je nouzový "
1007
- "režim povolen!"
1008
 
1009
- #: includes/settings/tabs/wps-general.php:214
1010
- msgid "Hide admin notices about non active features"
1011
- msgstr "SKrýt admin oznámení o neaktivních vlastnostech"
1012
 
1013
- #: includes/settings/tabs/wps-general.php:237
1014
- msgid "Search Enginges"
1015
- msgstr "Vyhledávače"
 
 
1016
 
1017
- #: includes/settings/tabs/wps-general.php:242
1018
- msgid ""
1019
- "Disabling all search engines is not allowed, doing so will result in all "
1020
- "search engines being active."
1021
- msgstr ""
1022
- "Zakázání všech vyhledávačů není dovoleno, to povede ve všech vyhledávačích "
1023
- "je aktivní."
1024
 
1025
- #: includes/settings/tabs/wps-general.php:257
1026
- msgid "disable"
1027
- msgstr "vypnout"
1028
 
1029
- #: includes/settings/tabs/wps-general.php:258
1030
- msgid "Disable %s from data collection and reporting."
1031
- msgstr "Zakážete %s ze shromažďování údajů a výkaznictví."
1032
 
1033
- #: includes/optimization/tabs/wps-optimization-resources.php:147
1034
- msgid "cURL Version"
1035
- msgstr "cURL Verze"
1036
 
1037
- #: includes/optimization/tabs/wps-optimization-resources.php:151
1038
- msgid "cURL not installed"
1039
- msgstr "cURL není instalováno"
1040
 
1041
- #: includes/optimization/tabs/wps-optimization-resources.php:152
1042
- msgid ""
1043
- "The PHP cURL Extension version you are running. cURL is required for the "
1044
- "GeoIP code, if it is not installed GeoIP will be disabled."
1045
- msgstr ""
1046
- "PHP cURL Extension verze kterou používáte. cURL je požadováno pro GeoIP "
1047
- "kód, jestliže neni instalování GeoIP bude vypnuté."
1048
 
1049
- #: includes/optimization/tabs/wps-optimization-resources.php:158
1050
- msgid "BC Math"
1051
- msgstr "BC Math"
 
1052
 
1053
- #: includes/optimization/tabs/wps-optimization-resources.php:162
1054
- msgid "Installed"
1055
- msgstr "Instalováno"
 
1056
 
1057
- #: includes/optimization/tabs/wps-optimization-resources.php:162
1058
- msgid "Not installed"
1059
- msgstr "Neinstalováno"
 
1060
 
1061
- #: includes/settings/tabs/wps-geoip.php:114
1062
- msgid ""
1063
- "GeoIP collection requires the cURL PHP extension and it is not loaded on "
1064
- "your version of PHP!"
1065
- msgstr ""
1066
- "GeoIP kolekce vyžaduje cURL PHP rozšíření a to není nahrané ve Vaší verzi "
1067
- "PHP!"
1068
 
1069
- #: includes/settings/tabs/wps-geoip.php:120
1070
- msgid ""
1071
- "GeoIP collection requires the BC Math PHP extension and it is not loaded on "
1072
- "your version of PHP!"
1073
- msgstr ""
1074
- "GeoIP kolekce vyžaduje BC Math PHP rozšíření a to není nahrané ve Vaší verzi "
1075
- "PHP!"
1076
 
1077
- #: includes/functions/geoip-populate.php:26
1078
- msgid ""
1079
- "Unable to load the GeoIP database, make sure you have downloaded it in the "
1080
- "settings page."
1081
- msgstr "Nemožné nahrát GeoIP databázi, zajistěte stažení v nastavení."
1082
 
1083
- #: includes/optimization/tabs/wps-optimization-resources.php:182
1084
- msgid "Database file does not exist."
1085
- msgstr "Databáze neexistuje"
 
1086
 
1087
- #: includes/log/last-visitor.php:59
1088
- msgid "Search for"
1089
- msgstr "Hledat"
1090
 
1091
- #: includes/log/widgets/browsers.php:8 includes/log/widgets/countries.php:11
1092
- #: includes/log/widgets/hits.php:8 includes/log/widgets/pages.php:13
1093
- #: includes/log/widgets/recent.php:9 includes/log/widgets/referring.php:13
1094
- #: includes/log/widgets/search.php:8 includes/log/widgets/words.php:16
1095
- msgid "More"
1096
- msgstr "Více"
1097
 
1098
- #: includes/settings/tabs/wps-general.php:269
1099
- msgid "Include totals"
1100
- msgstr "Zahrnout součty"
1101
 
1102
- #: includes/settings/tabs/wps-general.php:275
1103
- msgid ""
1104
- "Add a total line to charts with multiple values, like the search engine "
1105
- "referrals"
1106
- msgstr ""
1107
- "Přidání řádku Celkem se grafy s více hodnotami, jako je hledání vyhledávač "
1108
- "doporučováním"
1109
 
1110
- #: includes/settings/tabs/wps-overview-display.php:100
1111
- msgid "Disable map"
1112
- msgstr "Vypnout mapu"
1113
 
1114
- #: includes/settings/tabs/wps-overview-display.php:106
1115
- msgid "Disable the map display"
1116
- msgstr "Vypnout zobrazení mapy"
1117
 
1118
- #: includes/settings/tabs/wps-overview-display.php:112
1119
- msgid "Get country location from Google"
1120
- msgstr "Získat polohu země z Google"
1121
 
1122
- #: includes/log/exclusions.php:8
1123
- msgid ""
1124
- "Attention: Exclusion are not currently set to be recorded, the results below "
1125
- "may not reflect current statistics!"
1126
- msgstr ""
1127
- "Pozor: Vyloučení nejsou nastaveny v současnosti zaznamenávají, výsledky níže "
1128
- "nemusí odrážet aktuální statistiky!"
1129
 
1130
- #: includes/log/exclusions.php:118
1131
- msgid "Number of excluded hits"
1132
- msgstr "Počet vyjmutých hitů"
1133
 
1134
- #: includes/settings/tabs/wps-access-level.php:86
1135
- msgid ""
1136
- "Hint: manage_network = Super Admin Network, manage_options = Administrator, "
1137
- "edit_others_posts = Editor, publish_posts = Author, edit_posts = "
1138
- "Contributor, read = Everyone."
1139
- msgstr ""
1140
- "Tip: manage_network = Super Admin síť, manage_options = správce, "
1141
- "edit_others_posts = Editor, publish_posts = autor, edit_posts = přispěvatel, "
1142
- "číst = všichni."
1143
 
1144
- #: includes/settings/tabs/wps-access-level.php:99
1145
- #: includes/settings/tabs/wps-access-level.php:151
1146
- msgid "Enable"
1147
- msgstr "Zapnout"
1148
 
1149
- #: includes/settings/tabs/wps-access-level.php:100
1150
- msgid ""
1151
- "This will record all the excluded hits in a separate table with the reasons "
1152
- "why it was excluded but no other information. This will generate a lot of "
1153
- "data but is useful if you want to see the total number of hits your site "
1154
- "gets, not just actual user visits."
1155
- msgstr ""
1156
- "To bude zaznamenávat všechny vyloučené hity v samostatné tabulce s důvody, "
1157
- "proč byla vyloučena, ale žádné další informace. To bude generovat velké "
1158
- "množství dat, ale je užitečné, pokud chcete zobrazit celkový počet přístupů "
1159
- "vašich stránek dostane, ne jen skutečné uživatele návštěvy."
1160
 
1161
- #: includes/settings/tabs/wps-access-level.php:168
1162
- msgid "Site URL Exclusions"
1163
- msgstr "URL vyjímky"
1164
 
1165
- #: includes/settings/tabs/wps-access-level.php:175
1166
- msgid "Exclude the login page for registering as a hit."
1167
- msgstr "Vylučte přihlašovací stránku pro registraci jako hit."
1168
 
1169
- #: includes/settings/tabs/wps-access-level.php:182
1170
- msgid "Exclude the admin pages for registering as a hit."
1171
- msgstr "Vylučte admin stránky pro registraci jako hit."
1172
 
1173
- #: includes/settings/tabs/wps-access-level.php:93 wp-statistics.php:254
1174
- msgid "Exclusions"
1175
- msgstr "Vyjímky"
1176
 
1177
- #: includes/log/exclusions.php:68
1178
- msgid "Total Exclusions: %s"
1179
- msgstr "Celkem vyjímek: %s"
1180
 
1181
- #: includes/log/exclusions.php:75
1182
- msgid "Exclusions Statistical Chart"
1183
- msgstr "Statistický graf vyjímek"
1184
 
1185
- #: includes/settings/tabs/wps-access-level.php:33
1186
- msgid "Access Levels"
1187
- msgstr "Úrovně přístupů"
1188
 
1189
- #: includes/optimization/wps-optimization.php:126
1190
- msgid "Resources/Information"
1191
- msgstr "Zdroje/Informace"
1192
 
1193
- #: includes/optimization/wps-optimization.php:128
1194
- msgid "Purging"
1195
- msgstr "Pročištění"
1196
 
1197
- #: includes/optimization/wps-optimization.php:130
1198
- msgid "Updates"
1199
- msgstr "Aktualizace"
1200
 
1201
- #: includes/settings/wps-settings.php:88
1202
- msgid "Access/Exclusions"
1203
- msgstr "Přístupy/Vyjímky"
1204
 
1205
- #: includes/settings/wps-settings.php:91
1206
- msgid "Maintenance"
1207
- msgstr "Údržba"
1208
 
1209
- #: includes/settings/wps-settings.php:126
1210
- msgid "Update"
1211
- msgstr "Aktualizovat"
 
1212
 
1213
- #: includes/settings/wps-settings.php:86
1214
- msgid "General"
1215
- msgstr "Obecné"
 
 
1216
 
1217
- #: includes/optimization/empty.php:57
1218
- msgid "Error, %s not emptied!"
1219
- msgstr "Chyba, %s není vyprázdněno!"
1220
 
1221
- #: includes/optimization/tabs/wps-optimization-purging.php:118
1222
- msgid "Data"
1223
- msgstr "Data"
 
 
 
1224
 
1225
- #: includes/optimization/tabs/wps-optimization-purging.php:145
1226
- msgid "Purge records older than"
1227
- msgstr "Pročistit záznamy starší než"
 
1228
 
1229
- #: includes/optimization/tabs/wps-optimization-purging.php:151
1230
- msgid ""
1231
- "Deleted user statistics data older than the selected number of days. "
1232
- "Minimum value is 30 days."
1233
- msgstr ""
1234
- "Odstraněný uživatel statistická data starší než zvolený počet dní. Minimální "
1235
- "hodnota je 30 dní."
1236
 
1237
- #: includes/optimization/tabs/wps-optimization-purging.php:152
1238
- msgid "Purge now!"
1239
- msgstr "Pročistit nyní!"
 
 
 
 
1240
 
1241
- #: includes/optimization/purge-data.php:55
1242
- msgid "Please select a value over 30 days."
1243
- msgstr "Prosím vyber hodnotu nad 30 dní."
 
 
1244
 
1245
- #: includes/settings/tabs/wps-maintenance.php:20
1246
- msgid ""
1247
- "This will permanently delete data from the database each day, are you sure "
1248
- "you want to enable this option?"
1249
- msgstr ""
1250
- "To bude trvale odstranit data z databáze každý den, jste si jisti, že chcete "
1251
- "povolit tuto možnost?"
1252
 
1253
- #: includes/settings/tabs/wps-maintenance.php:30
1254
- msgid "Database Maintenance"
1255
- msgstr "Údržba databáze"
 
 
 
1256
 
1257
- #: includes/settings/tabs/wps-maintenance.php:35
1258
- msgid "Run a daily WP Cron job to prune the databases"
1259
- msgstr "Spustit denní WP cronu prořezávat databáze"
 
 
1260
 
1261
- #: includes/settings/tabs/wps-maintenance.php:41
1262
- msgid ""
1263
- "A WP Cron job will be run daily to prune any data older than a set number of "
1264
- "days."
1265
- msgstr ""
1266
- "WP má úloha poběží denně vyřadit všechna data, která je starší než stanovený "
1267
- "počet dní."
1268
 
1269
- #: includes/settings/tabs/wps-maintenance.php:47
1270
- msgid "Prune data older than"
1271
- msgstr "Vyřadit data starší než"
1272
 
1273
- #: includes/settings/tabs/wps-maintenance.php:52
1274
- msgid "Days"
1275
- msgstr "Dny"
1276
 
1277
- #: includes/settings/tabs/wps-maintenance.php:53
1278
- msgid ""
1279
- "The number of days to keep statistics for. Minimum value is 30 days. "
1280
- "Invalid values will disable the daily maintenance."
1281
- msgstr ""
1282
- "Počet dnů zachovat statistiky. Minimální hodnota je 30 dní. Neplatné hodnoty "
1283
- "zakáže každodenní údržbu."
1284
 
1285
- #: includes/settings/wps-settings.php:89
1286
- msgid "GeoIP"
1287
- msgstr "GeoIP"
1288
 
1289
- #: includes/settings/tabs/wps-browscap.php:54
1290
- #: includes/settings/tabs/wps-geoip.php:64
1291
- msgid "Next update will be"
1292
- msgstr "Další update bude"
 
 
1293
 
1294
- #: includes/settings/tabs/wps-geoip.php:109
1295
- msgid ""
1296
- "GeoIP collection requires PHP %s or above, it is currently disabled due to "
1297
- "the installed PHP version being "
1298
- msgstr ""
1299
- "GeoIP kolekce vyžaduje PHP %s nebo vyšš, z důvodu instalované verze PHP je "
1300
- "vlastnost vypnuta"
1301
 
1302
- #: includes/log/widgets/search.php:8 includes/log/widgets/summary.php:64
1303
- msgid "Search Engine Referrals"
1304
- msgstr "Vyhledávací Engine odkazy"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1305
 
1306
- #: includes/log/widgets/summary.php:88
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1307
  msgid "Daily Total"
1308
  msgstr "Denně celkem"
1309
 
1310
- #: includes/log/widgets/summary.php:102
1311
  msgid "Current Time and Date"
1312
  msgstr "Aktuální čas a datum"
1313
 
1314
- #: includes/optimization/tabs/wps-optimization-database.php:39
1315
- #: includes/optimization/tabs/wps-optimization-updates.php:25
1316
- #: includes/optimization/tabs/wps-optimization-updates.php:40
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1317
  msgid "Update Now!"
1318
  msgstr "!Aktualizovat nyní"
1319
 
1320
- #: includes/settings/tabs/wps-access-level.php:87
1321
- msgid ""
1322
- "Each of the above casscades the rights upwards in the default WordPress "
1323
- "configuration. So for example selecting publish_posts grants the right to "
1324
- "Authors, Editors, Admins and Super Admins."
1325
- msgstr ""
1326
- "Každý z výše uvedených casscades práva směrem nahoru v WordPress výchozí "
1327
- "konfiguraci. Tak například výběrem publish_posts uděluje právo autorů, "
1328
- "redaktoři, administrátoři a Super Admins."
1329
 
1330
- #: includes/settings/tabs/wps-access-level.php:88
1331
- msgid ""
1332
- "If you need a more robust solution to delegate access you might want to look "
1333
- "at %s in the WordPress plugin directory."
1334
- msgstr ""
1335
- "Pokud budete potřebovat robustnější řešení pro přístup delegáta budete chtít "
1336
- "podívat na %s do WordPress plugin adresáři."
1337
 
1338
- #: includes/settings/tabs/wps-access-level.php:62
1339
- msgid "Required user level to view WP Statistics"
1340
- msgstr "Požadována uživatelská úrověn k prohlížení WP Statistik"
1341
 
1342
- #: includes/settings/tabs/wps-access-level.php:77
1343
- msgid "Required user level to manage WP Statistics"
1344
- msgstr "Uživatelská úroveň pro správu statistiky WP"
1345
 
1346
- #: includes/settings/tabs/wps-geoip.php:56
1347
- msgid "Schedule monthly update of GeoIP DB"
1348
- msgstr "Naplánovat měsíční aktualizaci GeoIP DB"
 
1349
 
1350
- #: includes/settings/tabs/wps-geoip.php:82
1351
- msgid ""
1352
- "Download of the GeoIP database will be scheduled for 2 days after the first "
1353
- "Tuesday of the month."
1354
- msgstr ""
1355
- "Stažení databáze GeoIP bude naplánováno na 2 dny po první úterý v měsíci."
1356
 
1357
- #: includes/settings/tabs/wps-geoip.php:83
1358
- msgid ""
1359
- "This option will also download the database if the local filesize is less "
1360
- "than 1k (which usually means the stub that comes with the plugin is still in "
1361
- "place)."
1362
- msgstr ""
1363
- "Tato možnost bude také stáhnout databáze, je-li místní velikost souboru je "
1364
- "menší než 1 KB (což obvykle znamená, že se zakázaným inzerováním, který je "
1365
- "dodáván s plugin je stále na svém místě)."
1366
 
1367
- #: includes/settings/tabs/wps-geoip.php:89
1368
- msgid "Populate missing GeoIP after update of GeoIP DB"
1369
- msgstr "Vyplnit chybějící GeoIP po aktualizaci GeoIP DB"
1370
 
1371
- #: includes/settings/tabs/wps-geoip.php:95
1372
- msgid "Update any missing GeoIP data after downloading a new database."
1373
- msgstr "Aktualizovat chybějící GeoIP data po stažení nové databáze."
1374
 
1375
- #: includes/functions/geoip-populate.php:50
1376
- msgid "Updated %s GeoIP records in the visitors database."
1377
- msgstr "Aktualizovat %s GeoIP záznamy v databázi návětěvníků."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1378
 
1379
- #: includes/optimization/tabs/wps-optimization-resources.php:98
 
 
 
 
 
 
 
 
 
1380
  msgid "Version Info"
1381
  msgstr "Verze info"
1382
 
1383
- #: includes/optimization/tabs/wps-optimization-resources.php:103
1384
  msgid "WP Statistics Version"
1385
  msgstr "WP Statistics Verze"
1386
 
1387
- #: includes/optimization/tabs/wps-optimization-resources.php:108
1388
  msgid "The WP Statistics version you are running."
1389
  msgstr "Používáte verzi WP Statistics."
1390
 
1391
- #: includes/optimization/tabs/wps-optimization-resources.php:114
1392
  msgid "PHP Version"
1393
  msgstr "PHP Verze"
1394
 
1395
- #: includes/optimization/tabs/wps-optimization-resources.php:119
1396
  msgid "The PHP version you are running."
1397
  msgstr "PHP verze kterou používáte."
1398
 
1399
- #: includes/optimization/tabs/wps-optimization-resources.php:136
 
 
 
 
 
 
 
 
1400
  msgid "jQuery Version"
1401
  msgstr "jQuery Verze"
1402
 
1403
- #: includes/optimization/tabs/wps-optimization-resources.php:141
1404
  msgid "The jQuery version you are running."
1405
  msgstr " Query verze kterou používáte."
1406
 
1407
- #: wp-statistics.php:610
1408
- msgid "Error could not open downloaded GeoIP database for reading: %s"
1409
- msgstr "Chyba nelze otevřít stažené GeoIP databázi pro čtení: %s"
1410
-
1411
- #: wp-statistics.php:617
1412
- msgid "Error could not open destination GeoIP database for writing %s"
1413
- msgstr "Chyba nelze otevřít cílovou databázi GeoIP pro psaní %s"
1414
-
1415
- #: wp-statistics.php:633
1416
- msgid "GeoIP Database updated successfully!"
1417
- msgstr "GeoIP Databáze byla úspěšně aktualizována!"
1418
-
1419
- #: includes/optimization/tabs/wps-optimization-resources.php:229
1420
- msgid "Client Info"
1421
- msgstr "Klient Info"
1422
-
1423
- #: includes/optimization/tabs/wps-optimization-resources.php:234
1424
- msgid "Client IP"
1425
- msgstr "Klient IP"
1426
-
1427
- #: includes/optimization/tabs/wps-optimization-resources.php:239
1428
- msgid "The client IP address."
1429
- msgstr "Klientovo IP adresa"
1430
-
1431
- #: includes/optimization/tabs/wps-optimization-resources.php:245
1432
- msgid "User Agent"
1433
- msgstr "Uživatelský agent"
1434
-
1435
- #: includes/optimization/tabs/wps-optimization-resources.php:250
1436
- msgid "The client user agent string."
1437
- msgstr "Řetězec agenta uživatele klienta."
1438
-
1439
- #: includes/settings/tabs/wps-access-level.php:105
1440
- msgid "Exclude User Roles"
1441
- msgstr "Vyloučení rolí uživatelů"
1442
-
1443
- #: includes/settings/tabs/wps-access-level.php:119
1444
- #: includes/settings/tabs/wps-access-level.php:174
1445
- #: includes/settings/tabs/wps-access-level.php:181
1446
- msgid "Exclude"
1447
- msgstr "Vyjímka"
1448
-
1449
- #: includes/settings/tabs/wps-access-level.php:120
1450
- msgid "Exclude %s role from data collection."
1451
- msgstr "Vylučte úlohu %s ze sběru údajů."
1452
-
1453
- #: includes/settings/tabs/wps-access-level.php:126
1454
- msgid "IP/Robot Exclusions"
1455
- msgstr "IP/Robot vyjímky"
1456
-
1457
- #: includes/settings/tabs/wps-access-level.php:143
1458
- msgid ""
1459
- "A list of words (one per line) to match against to detect robots. Entries "
1460
- "must be at least 4 characters long or they will be ignored."
1461
- msgstr ""
1462
- "Seznam slov, (jeden na řádek) porovnávat odhalit roboty. Položky musí být "
1463
- "dlouhé nejméně 4 znaky, nebo budou ignorovány."
1464
-
1465
- #: includes/settings/tabs/wps-access-level.php:144
1466
- msgid "Reset to Default"
1467
- msgstr "Reset do Defaultního nastavení"
1468
-
1469
- #: includes/settings/tabs/wps-access-level.php:161
1470
- msgid "Add 10.0.0.0"
1471
- msgstr "Přidat 10.0.0.0"
1472
-
1473
- #: includes/settings/tabs/wps-access-level.php:162
1474
- msgid "Add 172.16.0.0"
1475
- msgstr "Přidat 172.16.0.0"
1476
 
1477
- #: includes/settings/tabs/wps-access-level.php:163
1478
- msgid "Add 192.168.0.0"
1479
- msgstr "Přidat 192.168.0.0"
1480
 
1481
- #: includes/settings/tabs/wps-general.php:264
1482
- msgid "Charts"
1483
- msgstr "Grafy"
1484
 
1485
- #: includes/settings/tabs/wps-geoip.php:38
1486
- msgid ""
1487
- "For get more information and location (country) from visitor, enable this "
1488
- "feature."
1489
- msgstr ""
1490
- "Zapněte tuto vlastnost pro získání více informací a lokace (země) "
1491
- "návštěvníka."
1492
 
1493
- #: includes/settings/wps-settings.php:87 wp-statistics.php:248
1494
- msgid "Overview"
1495
- msgstr "Přehled"
1496
 
1497
- #: includes/optimization/tabs/wps-optimization-database.php:25
1498
- #: includes/optimization/tabs/wps-optimization-updates.php:21
1499
- #: wp-statistics.php:251
1500
- msgid "Countries"
1501
- msgstr "Země"
1502
 
1503
- #: wp-statistics.php:176 wp-statistics.php:253
1504
- msgid "Hits"
1505
- msgstr "Hity"
1506
 
1507
- #: wp-statistics.php:255
1508
- msgid "Referers"
1509
- msgstr "Odkazující"
1510
 
1511
- #: wp-statistics.php:256
1512
- msgid "Searches"
1513
- msgstr "Vyhledávání"
1514
 
1515
- #: wp-statistics.php:257
1516
- msgid "Search Words"
1517
- msgstr "Hledaná slova"
1518
 
1519
- #: includes/settings/tabs/wps-general.php:94
1520
- msgid "Second"
1521
- msgstr "Sekunda"
 
 
1522
 
1523
- #: includes/log/all-browsers.php:17
1524
- msgid "Browser Statistics"
1525
- msgstr "Statistiky prohlížečů"
1526
 
1527
- #: includes/log/all-browsers.php:107
1528
- msgid "Platform"
1529
- msgstr "Platforma"
1530
 
1531
- #: includes/log/all-browsers.php:241
1532
- msgid "%s Version"
1533
- msgstr "%s Verze"
1534
 
1535
- #: includes/log/hit-statistics.php:17 includes/log/widgets/hits.php:8
1536
- msgid "Hit Statistics"
1537
- msgstr "Statistika hitů"
1538
 
1539
- #: includes/log/exclusions.php:57 includes/log/hit-statistics.php:21
1540
- #: includes/log/page-statistics.php:33 includes/log/search-statistics.php:21
1541
- msgid "10 Days"
1542
- msgstr "10 Dnů"
1543
 
1544
- #: includes/log/exclusions.php:58 includes/log/hit-statistics.php:22
1545
- #: includes/log/page-statistics.php:34 includes/log/search-statistics.php:22
1546
- msgid "20 Days"
1547
- msgstr "20 Dnů"
1548
 
1549
- #: includes/log/exclusions.php:59 includes/log/hit-statistics.php:23
1550
- #: includes/log/page-statistics.php:35 includes/log/search-statistics.php:23
1551
- msgid "30 Days"
1552
- msgstr "30 Dnů"
1553
 
1554
- #: includes/log/exclusions.php:60 includes/log/hit-statistics.php:24
1555
- #: includes/log/page-statistics.php:36 includes/log/search-statistics.php:24
1556
- msgid "2 Months"
1557
- msgstr "2 Měsíce"
1558
 
1559
- #: includes/log/exclusions.php:61 includes/log/hit-statistics.php:25
1560
- #: includes/log/page-statistics.php:37 includes/log/search-statistics.php:25
1561
- msgid "3 Months"
1562
- msgstr "3 Měsíce"
1563
 
1564
- #: includes/log/exclusions.php:62 includes/log/hit-statistics.php:26
1565
- #: includes/log/page-statistics.php:38 includes/log/search-statistics.php:26
1566
- msgid "6 Months"
1567
- msgstr "6 Měsíců"
1568
 
1569
- #: includes/log/exclusions.php:63 includes/log/hit-statistics.php:27
1570
- #: includes/log/page-statistics.php:39 includes/log/search-statistics.php:27
1571
- msgid "9 Months"
1572
- msgstr "9 Měsíců"
1573
 
1574
- #: includes/log/exclusions.php:64 includes/log/hit-statistics.php:28
1575
- #: includes/log/page-statistics.php:40 includes/log/search-statistics.php:28
1576
- msgid "1 Year"
1577
- msgstr "1 Rok"
1578
 
1579
- #: includes/settings/tabs/wps-overview-display.php:34
1580
- msgid "Hits Statistical Chart"
1581
- msgstr "Statistický graf hitů"
1582
 
1583
- #: includes/log/exclusions.php:97 includes/log/hit-statistics.php:69
1584
- #: includes/log/search-statistics.php:77 includes/log/widgets/hits.php:39
1585
- #: includes/log/widgets/search.php:46
1586
- #: includes/optimization/tabs/wps-optimization-purging.php:150
1587
- msgid "days"
1588
- msgstr "dnů"
1589
 
1590
- #: includes/log/widgets/countries.php:11
1591
- #: includes/settings/tabs/wps-overview-display.php:27
1592
- msgid "Top 10 Countries"
1593
- msgstr "Pořadí"
1594
 
1595
- #: includes/log/top-countries.php:28 includes/log/widgets/countries.php:17
1596
- msgid "Rank"
1597
- msgstr "Vlajka"
1598
 
1599
- #: includes/log/top-countries.php:29 includes/log/widgets/countries.php:18
1600
- msgid "Flag"
1601
- msgstr "Počet návštěvníků"
1602
 
1603
- #: includes/log/top-countries.php:31 includes/log/widgets/countries.php:20
1604
- msgid "Visitor Count"
1605
- msgstr "Počet návštěvníků"
1606
 
1607
- #: includes/settings/tabs/wps-overview-display.php:35
1608
- msgid "Search Engine Referrers Statistical Chart"
1609
- msgstr "Statistický graf odkazujících vyhledávačů"
1610
 
1611
- #: includes/log/top-countries.php:19
1612
- msgid "Top Countries"
1613
- msgstr "Top zemí"
 
1614
 
1615
- #: includes/optimization/tabs/wps-optimization-purging.php:159
1616
- msgid "Delete User Agent Types"
1617
- msgstr "Odstranit typy uživatelských agentů"
 
1618
 
1619
- #: includes/optimization/tabs/wps-optimization-purging.php:164
1620
- msgid "Delete Agents"
1621
- msgstr "Smazat Agenty"
1622
 
1623
- #: includes/optimization/tabs/wps-optimization-purging.php:179
1624
- msgid "All visitor data will be lost for this agent type."
1625
- msgstr "Všechna data návštěvníků budou ztraceny pro tento typ agenta."
1626
 
1627
- #: includes/optimization/tabs/wps-optimization-purging.php:180
1628
- #: includes/optimization/tabs/wps-optimization-purging.php:204
1629
- msgid "Delete now!"
1630
- msgstr "Smazat nyní!"
1631
 
1632
- #: includes/optimization/tabs/wps-optimization-purging.php:188
1633
- msgid "Delete Platforms"
1634
- msgstr "Vymazat platformy"
1635
 
1636
- #: includes/optimization/tabs/wps-optimization-purging.php:203
1637
- msgid "All visitor data will be lost for this platform type."
1638
- msgstr "Všechna data návštěvníků budou ztraceny pro tento typ platformy."
1639
 
1640
- #: includes/optimization/tabs/wps-optimization-updates.php:16
1641
- msgid "GeoIP Options"
1642
- msgstr "GeoIP Vlastnosti"
1643
 
1644
- #: includes/settings/tabs/wps-general.php:133
1645
- msgid "Store entire user agent string"
1646
- msgstr "Uložení celé identifikační řetězec prohlížeče"
1647
 
1648
- #: includes/settings/tabs/wps-general.php:139
1649
- msgid "Only enabled for debugging"
1650
- msgstr "Jen zapnout pro debugging"
1651
 
1652
- #: includes/settings/tabs/wps-geoip.php:17
1653
- msgid "GeoIP settings"
1654
- msgstr "GeoIP nastavení"
1655
 
1656
- #: includes/settings/tabs/wps-geoip.php:32
1657
- msgid "GeoIP collection"
1658
- msgstr "GeoIP kolekce"
1659
 
1660
- #: includes/settings/tabs/wps-geoip.php:44
1661
- msgid "Update GeoIP Info"
1662
- msgstr "Aktualizovat GeoIP Info"
1663
 
1664
- #: includes/settings/tabs/wps-geoip.php:49
1665
- msgid "Download GeoIP Database"
1666
- msgstr "Stáhnout GeoIP Databázi"
1667
 
1668
- #: includes/settings/tabs/wps-browscap.php:40
1669
- #: includes/settings/tabs/wps-geoip.php:50
1670
- msgid "Save changes on this page to download the update."
1671
- msgstr "Uložte změny na této stránce můžete stáhnout aktualizaci."
1672
 
1673
- #: includes/optimization/tabs/wps-optimization-purging.php:10
1674
- #: includes/optimization/tabs/wps-optimization-purging.php:36
1675
- #: includes/optimization/tabs/wps-optimization-purging.php:62
1676
- #: includes/optimization/tabs/wps-optimization-purging.php:90
1677
- msgid "Are you sure?"
1678
- msgstr "Jste si jistý?"
1679
 
1680
- #: includes/optimization/tabs/wps-optimization-purging.php:137
1681
- msgid "Clear now!"
1682
- msgstr "Vyčistit nyní!"
1683
 
1684
- #: wp-statistics.php:261
1685
- msgid "Optimization"
1686
- msgstr "Optimalizace"
1687
 
1688
- #: includes/optimization/delete-agents.php:5
1689
- #: includes/optimization/delete-platforms.php:5
1690
- #: includes/optimization/empty.php:5 includes/optimization/export.php:5
1691
- #: includes/optimization/purge-data.php:5
1692
- #: includes/optimization/wps-optimization.php:3 manual/manual.php:5
1693
- msgid "Access denied!"
1694
- msgstr "Přístup zakázán!"
1695
 
1696
- #: includes/optimization/delete-agents.php:18
1697
- #: includes/optimization/delete-platforms.php:18
1698
- #: includes/optimization/empty.php:42 includes/optimization/export.php:57
1699
- msgid "Please select the desired items."
1700
- msgstr "Prosím vyber požadované položky."
1701
 
1702
- #: includes/optimization/tabs/wps-optimization-resources.php:17
1703
- msgid "Resources"
1704
- msgstr "Zdroje"
1705
 
1706
- #: includes/optimization/tabs/wps-optimization-resources.php:22
1707
- #: includes/optimization/tabs/wps-optimization-resources.php:27
1708
- msgid "Memory usage in PHP"
1709
- msgstr "Využití paměti v PHP"
1710
 
1711
- #: includes/optimization/tabs/wps-optimization-resources.php:26
1712
- msgid "Byte"
1713
- msgstr "Bytů"
1714
 
1715
- #: includes/optimization/tabs/wps-optimization-resources.php:48
1716
- #: includes/optimization/tabs/wps-optimization-resources.php:59
1717
- #: includes/optimization/tabs/wps-optimization-resources.php:70
1718
- #: includes/optimization/tabs/wps-optimization-resources.php:81
1719
- #: includes/optimization/tabs/wps-optimization-resources.php:92
1720
- msgid "Row"
1721
- msgstr "Řádek"
1722
 
1723
- #: includes/optimization/tabs/wps-optimization-resources.php:49
1724
- #: includes/optimization/tabs/wps-optimization-resources.php:60
1725
- #: includes/optimization/tabs/wps-optimization-resources.php:71
1726
- #: includes/optimization/tabs/wps-optimization-resources.php:82
1727
- #: includes/optimization/tabs/wps-optimization-resources.php:93
1728
- msgid "Number of rows"
1729
- msgstr "Počet řádků"
1730
 
1731
- #: includes/optimization/tabs/wps-optimization-export.php:7
1732
- #: includes/optimization/wps-optimization.php:127
1733
- msgid "Export"
1734
- msgstr "Export"
1735
 
1736
- #: includes/optimization/tabs/wps-optimization-export.php:12
1737
- msgid "Export from"
1738
- msgstr "Export od"
1739
 
1740
- #: includes/optimization/tabs/wps-optimization-export.php:24
1741
- msgid "Select the table for the output file."
1742
- msgstr "Vyberte tabulku pro výstupní soubor."
1743
 
1744
- #: includes/optimization/tabs/wps-optimization-export.php:30
1745
- msgid "Export To"
1746
- msgstr "Exportovat do"
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í &quot;000&quot; (tři nuly), k použití &quot;neznámé&quot;, 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 " jste Hledat %s pro podobný problém?"
2041
 
2042
+ #: F