WP Statistics - Version 9.5

Version Description

BACKUP YOUR DATABASE BEFORE INSTALLING! This release alters the table structure of the database. This release creates a new table for search engine/words for performance improvements, however you must convert your data to the new format via the Statistics->Optimization->Database tab.

Download this release

Release Info

Developer GregRoss
Plugin Icon 128x128 WP Statistics
Version 9.5
Comparing to
See all releases

Code changes from version 9.4.1 to 9.5

Files changed (66) hide show
  1. dashboard.php +1 -3
  2. includes/classes/hits.class.php +53 -2
  3. includes/classes/statistics.class.php +20 -0
  4. includes/functions/functions.php +110 -60
  5. includes/log/exclusions.php +4 -4
  6. includes/log/last-search.php +41 -24
  7. includes/log/last-visitor.php +19 -19
  8. includes/log/top-referring.php +87 -60
  9. includes/log/widgets/referring.php +34 -24
  10. includes/log/widgets/words.php +41 -23
  11. includes/optimization/tabs/wps-optimization-database.php +32 -0
  12. includes/optimization/wps-optimization.php +32 -0
  13. includes/settings/tabs/wps-browscap.php +0 -81
  14. includes/settings/tabs/{wps-geoip.php → wps-externals.php} +128 -2
  15. includes/settings/wps-settings.php +10 -21
  16. languages/default.mo +0 -0
  17. languages/default.po +335 -256
  18. languages/wp-statistics-da.po +189 -125
  19. languages/wp_statistics-ar.mo +0 -0
  20. languages/wp_statistics-ar.po +197 -133
  21. languages/wp_statistics-bg_BG.mo +0 -0
  22. languages/wp_statistics-bg_BG.po +189 -125
  23. languages/wp_statistics-bn_BD.po +189 -125
  24. languages/wp_statistics-ckb.mo +0 -0
  25. languages/wp_statistics-ckb.po +189 -125
  26. languages/wp_statistics-cs.mo +0 -0
  27. languages/wp_statistics-cs.po +189 -125
  28. languages/wp_statistics-de_DE.mo +0 -0
  29. languages/wp_statistics-de_DE.po +189 -125
  30. languages/wp_statistics-eo.mo +0 -0
  31. languages/wp_statistics-eo.po +2675 -0
  32. languages/wp_statistics-es_ES.mo +0 -0
  33. languages/wp_statistics-es_ES.po +189 -125
  34. languages/wp_statistics-fa_IR.mo +0 -0
  35. languages/wp_statistics-fa_IR.po +189 -125
  36. languages/wp_statistics-fr_FR.mo +0 -0
  37. languages/wp_statistics-fr_FR.po +189 -125
  38. languages/wp_statistics-hu_HU.mo +0 -0
  39. languages/wp_statistics-hu_HU.po +308 -244
  40. languages/wp_statistics-id_ID.mo +0 -0
  41. languages/wp_statistics-id_ID.po +189 -125
  42. languages/wp_statistics-it_IT.mo +0 -0
  43. languages/wp_statistics-it_IT.po +189 -125
  44. languages/wp_statistics-ja.mo +0 -0
  45. languages/wp_statistics-ja.po +189 -125
  46. languages/wp_statistics-nl_NL.mo +0 -0
  47. languages/wp_statistics-nl_NL.po +213 -149
  48. languages/wp_statistics-pl_PL.mo +0 -0
  49. languages/wp_statistics-pl_PL.po +189 -125
  50. languages/wp_statistics-pt_BR.mo +0 -0
  51. languages/wp_statistics-pt_BR.po +189 -125
  52. languages/wp_statistics-ro_RO.mo +0 -0
  53. languages/wp_statistics-ro_RO.po +189 -125
  54. languages/wp_statistics-ru_RU.mo +0 -0
  55. languages/wp_statistics-ru_RU.po +189 -125
  56. languages/wp_statistics-ru_UA.po +189 -125
  57. languages/wp_statistics-sk_SK.mo +0 -0
  58. languages/wp_statistics-sk_SK.po +582 -518
  59. languages/wp_statistics-sr_RS.mo +0 -0
  60. languages/wp_statistics-sr_RS.po +189 -125
  61. languages/wp_statistics-sv_SE.mo +0 -0
  62. languages/wp_statistics-sv_SE.po +198 -134
  63. languages/wp_statistics-tr_TR.mo +0 -0
  64. languages/wp_statistics-tr_TR.po +189 -125
  65. languages/wp_statistics-uk.mo +0 -0
  66. languages/wp_statistics-uk.po +230 -166
dashboard.php CHANGED
@@ -262,10 +262,8 @@
262
  // Include the hits chart widget, we're going to display the last 10 days only as the WordPress columns are kind of small to do much else.
263
  include_once( dirname( __FILE__ ) . "/includes/log/widgets/referring.php");
264
 
265
- $result = $wpdb->get_results("SELECT `referred` FROM `{$wpdb->prefix}statistics_visitor` WHERE referred <> ''");
266
-
267
  if( sizeof( $result ) > 0 ) {
268
- wp_statistics_generate_referring_postbox_content($result);
269
  }
270
  }
271
 
262
  // Include the hits chart widget, we're going to display the last 10 days only as the WordPress columns are kind of small to do much else.
263
  include_once( dirname( __FILE__ ) . "/includes/log/widgets/referring.php");
264
 
 
 
265
  if( sizeof( $result ) > 0 ) {
266
+ wp_statistics_generate_referring_postbox_content();
267
  }
268
  }
269
 
includes/classes/hits.class.php CHANGED
@@ -61,7 +61,7 @@
61
  // Order of exclusion checks is:
62
  // 1 - Robots
63
  // 2 - IP/Subnets
64
- // 3 - Self Referrals & login page
65
  // 4 - User roles
66
  // 5 - Host name list
67
  //
@@ -188,6 +188,27 @@
188
  }
189
  }
190
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
191
  if( $this->get_option('exclude_feeds') == 1 && !$this->exclusion_match ) {
192
  if( is_object( $WP_Statistics ) ) {
193
  if( $WP_Statistics->check_feed() ) {
@@ -327,7 +348,7 @@
327
 
328
  // This function records unique visitors to the site.
329
  public function Visitors() {
330
- global $wp_query;
331
 
332
  // Get the pages or posts ID if it exists.
333
  if( is_object( $wp_query ) ) {
@@ -368,6 +389,36 @@
368
  $sqlstring = $this->db->prepare( 'INSERT IGNORE INTO ' . $this->tb_prefix . 'statistics_visitor (last_counter, referred, agent, platform, version, ip, location, UAString, hits, honeypot) VALUES ( %s, %s, %s, %s, %s, %s, %s, %s, 1, %s )', $this->Current_date('Y-m-d'), $this->get_Referred(), $this->agent['browser'], $this->agent['platform'], $this->agent['version'], $this->ip_hash ? $this->ip_hash : $this->ip, $this->location, $ua, $honeypot );
369
 
370
  $this->db->query( $sqlstring );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
371
  }
372
  else {
373
  // Normally we've done all of our exclusion matching during the class creation, however for the robot threshold is calculated here to avoid another call the database.
61
  // Order of exclusion checks is:
62
  // 1 - Robots
63
  // 2 - IP/Subnets
64
+ // 3 - Self Referrals, Referrer Spam & login page
65
  // 4 - User roles
66
  // 5 - Host name list
67
  //
188
  }
189
  }
190
 
191
+ if( $this->get_option('referrerspam') == 1 && !$this->exclusion_match ) {
192
+ $referrer = $this->get_Referred();
193
+
194
+ // Pull the referrer spam list from the database.
195
+ $referrerspamlist = explode( "\n", $this->get_option('referrerspamlist') );
196
+
197
+ // Check to see if we match any of the robots.
198
+ foreach($referrerspamlist as $item) {
199
+ $item = trim($item);
200
+
201
+ // If the match case is less than 4 characters long, it might match too much so don't execute it.
202
+ if(strlen($item) > 3) {
203
+ if(stripos($referrer, $item) !== FALSE) {
204
+ $this->exclusion_match = TRUE;
205
+ $this->exclusion_reason = "referrer_spam";
206
+ break;
207
+ }
208
+ }
209
+ }
210
+ }
211
+
212
  if( $this->get_option('exclude_feeds') == 1 && !$this->exclusion_match ) {
213
  if( is_object( $WP_Statistics ) ) {
214
  if( $WP_Statistics->check_feed() ) {
348
 
349
  // This function records unique visitors to the site.
350
  public function Visitors() {
351
+ global $wp_query, $WP_Statistics;
352
 
353
  // Get the pages or posts ID if it exists.
354
  if( is_object( $wp_query ) ) {
389
  $sqlstring = $this->db->prepare( 'INSERT IGNORE INTO ' . $this->tb_prefix . 'statistics_visitor (last_counter, referred, agent, platform, version, ip, location, UAString, hits, honeypot) VALUES ( %s, %s, %s, %s, %s, %s, %s, %s, 1, %s )', $this->Current_date('Y-m-d'), $this->get_Referred(), $this->agent['browser'], $this->agent['platform'], $this->agent['version'], $this->ip_hash ? $this->ip_hash : $this->ip, $this->location, $ua, $honeypot );
390
 
391
  $this->db->query( $sqlstring );
392
+
393
+ // Now parse the referrer and store the results in the search table if the database has been converted.
394
+ // Also make sure we actually inserted a row on the INSERT IGNORE above or we'll create duplicate entries.
395
+ if( $this->get_option('search_converted') && $this->db->insert_id ) {
396
+
397
+ $search_engines = wp_statistics_searchengine_list();
398
+ $referred = $this->get_Referred();
399
+
400
+ // Parse the URL in to it's component parts.
401
+ $parts = parse_url($referred);
402
+
403
+ // Loop through the SE list until we find which search engine matches.
404
+ foreach( $search_engines as $key => $value ) {
405
+ $search_regex = wp_statistics_searchengine_regex($key);
406
+
407
+ preg_match( '/' . $search_regex . '/', $parts['host'], $matches);
408
+
409
+ if( isset($matches[1]) ) {
410
+ $data['last_counter'] = $this->Current_date('Y-m-d');
411
+ $data['engine'] = $key;
412
+ $data['words'] = $WP_Statistics->Search_Engine_QueryString( $referred );
413
+ $data['host'] = $parts['host'];
414
+ $data['visitor'] = $this->db->insert_id ;
415
+
416
+ if( $data['words'] == 'No search query found!' ) { $data['words'] = ''; }
417
+
418
+ $this->db->insert( $this->db->prefix . 'statistics_search', $data );
419
+ }
420
+ }
421
+ }
422
  }
423
  else {
424
  // Normally we've done all of our exclusion matching during the class creation, however for the robot threshold is calculated here to avoid another call the database.
includes/classes/statistics.class.php CHANGED
@@ -434,6 +434,26 @@
434
  return array('name' => 'Unknown', 'tag' => '', 'sqlpattern' => '', 'regexpattern' => '', 'querykey' => 'q', 'image' => 'unknown.png' );
435
  }
436
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
437
  // This function will parse a URL from a referrer and return the search query words used.
438
  public function Search_Engine_QueryString($url = false) {
439
 
434
  return array('name' => 'Unknown', 'tag' => '', 'sqlpattern' => '', 'regexpattern' => '', 'querykey' => 'q', 'image' => 'unknown.png' );
435
  }
436
 
437
+ // This function returns an array of information about a given search engine based on the url passed in.
438
+ // It is used in several places to get the SE icon or the sql query to select an individual SE from the database.
439
+ public function Search_Engine_Info_By_Engine($engine = false) {
440
+
441
+ // If there is no URL and no referrer, always return false.
442
+ if($engine == false) {
443
+ return false;
444
+ }
445
+
446
+ // Get the list of search engines we currently support.
447
+ $search_engines = wp_statistics_searchengine_list();
448
+
449
+ if( array_key_exists( $engine, $search_engines ) ) {
450
+ return $search_engines[$engine];
451
+ }
452
+
453
+ // If no SE matched, return some defaults.
454
+ return array('name' => 'Unknown', 'tag' => '', 'sqlpattern' => '', 'regexpattern' => '', 'querykey' => 'q', 'image' => 'unknown.png' );
455
+ }
456
+
457
  // This function will parse a URL from a referrer and return the search query words used.
458
  public function Search_Engine_QueryString($url = false) {
459
 
includes/functions/functions.php CHANGED
@@ -420,39 +420,55 @@
420
 
421
  // This function will return the SQL WHERE clause for getting the search words for a given search engine.
422
  function wp_statistics_searchword_query ($search_engine = 'all') {
 
423
 
424
  // Get a complete list of search engines
425
  $searchengine_list = wp_statistics_searchengine_list();
426
  $search_query = '';
427
 
428
- // Are we getting results for all search engines or a specific one?
429
- if( strtolower($search_engine) == 'all' ) {
430
- // For all of them? Ok, look through the search engine list and create a SQL query string to get them all from the database.
431
- // NOTE: This SQL query can be *VERY* long.
432
- foreach( $searchengine_list as $se ) {
433
- // The SQL pattern for a search engine may be an array if it has to handle multiple domains (like google.com and google.ca) or other factors.
434
- if( is_array( $se['sqlpattern'] ) ) {
435
- foreach( $se['sqlpattern'] as $subse ) {
436
- $search_query .= "(`referred` LIKE '{$subse}{$se['querykey']}=%' AND `referred` NOT LIKE '{$subse}{$se['querykey']}=&%' AND `referred` NOT LIKE '{$subse}{$se['querykey']}=') OR ";
437
- }
438
- } else {
439
- $search_query .= "(`referred` LIKE '{$se['sqlpattern']}{$se['querykey']}=%' AND `referred` NOT LIKE '{$se['sqlpattern']}{$se['querykey']}=&%' AND `referred` NOT LIKE '{$se['sqlpattern']}{$se['querykey']}=') OR ";
440
  }
 
 
 
 
 
441
  }
442
-
443
- // Trim off the last ' OR ' for the loop above.
444
- $search_query = substr( $search_query, 0, strlen( $search_query ) - 4 );
445
  } else {
446
- // For just one? Ok, the SQL pattern for a search engine may be an array if it has to handle multiple domains (like google.com and google.ca) or other factors.
447
- if( is_array( $searchengine_list[$search_engine]['sqlpattern'] ) ) {
448
- foreach( $searchengine_list[$search_engine]['sqlpattern'] as $se ) {
449
- $search_query .= "(`referred` LIKE '{$se}{$searchengine_list[$search_engine]['querykey']}=%' AND `referred` NOT LIKE '{$se}{$searchengine_list[$search_engine]['querykey']}=&%' AND `referred` NOT LIKE '{$se}{$searchengine_list[$search_engine]['querykey']}=') OR ";
 
 
 
 
 
 
 
 
 
450
  }
451
-
452
  // Trim off the last ' OR ' for the loop above.
453
  $search_query = substr( $search_query, 0, strlen( $search_query ) - 4 );
454
  } else {
455
- $search_query .= "(`referred` LIKE '{$searchengine_list[$search_engine]['sqlpattern']}{$searchengine_list[$search_engine]['querykey']}=%' AND `referred` NOT LIKE '{$searchengine_list[$search_engine]['sqlpattern']}{$searchengine_list[$search_engine]['querykey']}=&%' AND `referred` NOT LIKE '{$searchengine_list[$search_engine]['sqlpattern']}{$searchengine_list[$search_engine]['querykey']}=')";
 
 
 
 
 
 
 
 
 
 
456
  }
457
  }
458
 
@@ -461,40 +477,56 @@
461
 
462
  // This function will return the SQL WHERE clause for getting the search engine.
463
  function wp_statistics_searchengine_query ($search_engine = 'all') {
464
-
 
465
  // Get a complete list of search engines
466
  $searchengine_list = wp_statistics_searchengine_list();
467
  $search_query = '';
468
-
469
- // Are we getting results for all search engines or a specific one?
470
- if( strtolower($search_engine) == 'all' ) {
471
- // For all of them? Ok, look through the search engine list and create a SQL query string to get them all from the database.
472
- // NOTE: This SQL query can be long.
473
- foreach( $searchengine_list as $se ) {
474
- // The SQL pattern for a search engine may be an array if it has to handle multiple domains (like google.com and google.ca) or other factors.
475
- if( is_array( $se['sqlpattern'] ) ) {
476
- foreach( $se['sqlpattern'] as $subse ) {
477
- $search_query .= "`referred` LIKE '{$subse}' OR ";
478
- }
479
- } else {
480
- $search_query .= "`referred` LIKE '{$se['sqlpattern']}' OR ";
481
  }
 
 
 
 
 
482
  }
483
-
484
- // Trim off the last ' OR ' for the loop above.
485
- $search_query = substr( $search_query, 0, strlen( $search_query ) - 4 );
486
  } else {
487
- // For just one? Ok, the SQL pattern for a search engine may be an array if it has to handle multiple domains (like google.com and google.ca) or other factors.
488
- if( is_array( $searchengine_list[$search_engine]['sqlpattern'] ) ) {
489
- foreach( $searchengine_list[$search_engine]['sqlpattern'] as $se ) {
490
- $search_query .= "`referred` LIKE '{$se}' OR ";
 
 
 
 
 
 
 
 
 
491
  }
492
-
493
  // Trim off the last ' OR ' for the loop above.
494
  $search_query = substr( $search_query, 0, strlen( $search_query ) - 4 );
495
- }
496
- else {
497
- $search_query .= "`referred` LIKE '{$searchengine_list[$search_engine]['sqlpattern']}'";
 
 
 
 
 
 
 
 
 
 
498
  }
499
  }
500
 
@@ -546,6 +578,15 @@
546
 
547
  global $wpdb, $WP_Statistics;
548
 
 
 
 
 
 
 
 
 
 
549
  // Get a complete list of search engines
550
  $search_query = wp_statistics_searchengine_query($search_engine);
551
 
@@ -553,36 +594,36 @@
553
  // They're pretty self explanatory.
554
  switch($time) {
555
  case 'today':
556
- $result = $wpdb->query("SELECT * FROM `{$wpdb->prefix}statistics_visitor` WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d')}' AND {$search_query}");
557
  break;
558
 
559
  case 'yesterday':
560
- $result = $wpdb->query("SELECT * FROM `{$wpdb->prefix}statistics_visitor` WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d', -1)}' AND {$search_query}");
561
 
562
  break;
563
 
564
  case 'week':
565
- $result = $wpdb->query("SELECT * FROM `{$wpdb->prefix}statistics_visitor` WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d', -7)}' AND {$search_query}");
566
 
567
  break;
568
 
569
  case 'month':
570
- $result = $wpdb->query("SELECT * FROM `{$wpdb->prefix}statistics_visitor` WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d', -30)}' AND {$search_query}");
571
 
572
  break;
573
 
574
  case 'year':
575
- $result = $wpdb->query("SELECT * FROM `{$wpdb->prefix}statistics_visitor` WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d', -360)}' AND {$search_query}");
576
 
577
  break;
578
 
579
  case 'total':
580
- $result = $wpdb->query("SELECT * FROM `{$wpdb->prefix}statistics_visitor` WHERE {$search_query}");
581
 
582
  break;
583
 
584
  default:
585
- $result = $wpdb->query("SELECT * FROM `{$wpdb->prefix}statistics_visitor` WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d', $time)}' AND {$search_query}");
586
 
587
  break;
588
  }
@@ -595,6 +636,15 @@
595
 
596
  global $wpdb, $WP_Statistics;
597
 
 
 
 
 
 
 
 
 
 
598
  // Get a complete list of search engines
599
  $search_query = wp_statistics_searchword_query($search_engine);
600
 
@@ -602,36 +652,36 @@
602
  // They're pretty self explanatory.
603
  switch($time) {
604
  case 'today':
605
- $result = $wpdb->query("SELECT * FROM `{$wpdb->prefix}statistics_visitor` WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d')}' AND {$search_query}");
606
  break;
607
 
608
  case 'yesterday':
609
- $result = $wpdb->query("SELECT * FROM `{$wpdb->prefix}statistics_visitor` WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d', -1)}' AND {$search_query}");
610
 
611
  break;
612
 
613
  case 'week':
614
- $result = $wpdb->query("SELECT * FROM `{$wpdb->prefix}statistics_visitor` WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d', -7)}' AND {$search_query}");
615
 
616
  break;
617
 
618
  case 'month':
619
- $result = $wpdb->query("SELECT * FROM `{$wpdb->prefix}statistics_visitor` WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d', -30)}' AND {$search_query}");
620
 
621
  break;
622
 
623
  case 'year':
624
- $result = $wpdb->query("SELECT * FROM `{$wpdb->prefix}statistics_visitor` WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d', -360)}' AND {$search_query}");
625
 
626
  break;
627
 
628
  case 'total':
629
- $result = $wpdb->query("SELECT * FROM `{$wpdb->prefix}statistics_visitor` WHERE {$search_query}");
630
 
631
  break;
632
 
633
  default:
634
- $result = $wpdb->query("SELECT * FROM `{$wpdb->prefix}statistics_visitor` WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d', $time)}' AND {$search_query}");
635
 
636
  break;
637
  }
420
 
421
  // This function will return the SQL WHERE clause for getting the search words for a given search engine.
422
  function wp_statistics_searchword_query ($search_engine = 'all') {
423
+ GLOBAL $WP_Statistics;
424
 
425
  // Get a complete list of search engines
426
  $searchengine_list = wp_statistics_searchengine_list();
427
  $search_query = '';
428
 
429
+ if( $WP_Statistics->get_option('search_converted') ) {
430
+ // Are we getting results for all search engines or a specific one?
431
+ if( strtolower($search_engine) == 'all' ) {
432
+ // For all of them? Ok, look through the search engine list and create a SQL query string to get them all from the database.
433
+ foreach( $searchengine_list as $key => $se ) {
434
+ $search_query .= "( `engine` = '{$key}' AND `words` <> '' ) OR ";
 
 
 
 
 
 
435
  }
436
+
437
+ // Trim off the last ' OR ' for the loop above.
438
+ $search_query = substr( $search_query, 0, strlen( $search_query ) - 4 );
439
+ } else {
440
+ $search_query .= "`engine` = '{$search_engine}' AND `words` <> ''";
441
  }
 
 
 
442
  } else {
443
+ // Are we getting results for all search engines or a specific one?
444
+ if( strtolower($search_engine) == 'all' ) {
445
+ // For all of them? Ok, look through the search engine list and create a SQL query string to get them all from the database.
446
+ // NOTE: This SQL query can be *VERY* long.
447
+ foreach( $searchengine_list as $se ) {
448
+ // The SQL pattern for a search engine may be an array if it has to handle multiple domains (like google.com and google.ca) or other factors.
449
+ if( is_array( $se['sqlpattern'] ) ) {
450
+ foreach( $se['sqlpattern'] as $subse ) {
451
+ $search_query .= "(`referred` LIKE '{$subse}{$se['querykey']}=%' AND `referred` NOT LIKE '{$subse}{$se['querykey']}=&%' AND `referred` NOT LIKE '{$subse}{$se['querykey']}=') OR ";
452
+ }
453
+ } else {
454
+ $search_query .= "(`referred` LIKE '{$se['sqlpattern']}{$se['querykey']}=%' AND `referred` NOT LIKE '{$se['sqlpattern']}{$se['querykey']}=&%' AND `referred` NOT LIKE '{$se['sqlpattern']}{$se['querykey']}=') OR ";
455
+ }
456
  }
457
+
458
  // Trim off the last ' OR ' for the loop above.
459
  $search_query = substr( $search_query, 0, strlen( $search_query ) - 4 );
460
  } else {
461
+ // For just one? Ok, the SQL pattern for a search engine may be an array if it has to handle multiple domains (like google.com and google.ca) or other factors.
462
+ if( is_array( $searchengine_list[$search_engine]['sqlpattern'] ) ) {
463
+ foreach( $searchengine_list[$search_engine]['sqlpattern'] as $se ) {
464
+ $search_query .= "(`referred` LIKE '{$se}{$searchengine_list[$search_engine]['querykey']}=%' AND `referred` NOT LIKE '{$se}{$searchengine_list[$search_engine]['querykey']}=&%' AND `referred` NOT LIKE '{$se}{$searchengine_list[$search_engine]['querykey']}=') OR ";
465
+ }
466
+
467
+ // Trim off the last ' OR ' for the loop above.
468
+ $search_query = substr( $search_query, 0, strlen( $search_query ) - 4 );
469
+ } else {
470
+ $search_query .= "(`referred` LIKE '{$searchengine_list[$search_engine]['sqlpattern']}{$searchengine_list[$search_engine]['querykey']}=%' AND `referred` NOT LIKE '{$searchengine_list[$search_engine]['sqlpattern']}{$searchengine_list[$search_engine]['querykey']}=&%' AND `referred` NOT LIKE '{$searchengine_list[$search_engine]['sqlpattern']}{$searchengine_list[$search_engine]['querykey']}=')";
471
+ }
472
  }
473
  }
474
 
477
 
478
  // This function will return the SQL WHERE clause for getting the search engine.
479
  function wp_statistics_searchengine_query ($search_engine = 'all') {
480
+ GLOBAL $WP_Statistics;
481
+
482
  // Get a complete list of search engines
483
  $searchengine_list = wp_statistics_searchengine_list();
484
  $search_query = '';
485
+
486
+ if( $WP_Statistics->get_option('search_converted') ) {
487
+ // Are we getting results for all search engines or a specific one?
488
+ if( strtolower($search_engine) == 'all' ) {
489
+ // For all of them? Ok, look through the search engine list and create a SQL query string to get them all from the database.
490
+ foreach( $searchengine_list as $key => $se ) {
491
+ $search_query .= "`engine` = '{$key}' OR ";
 
 
 
 
 
 
492
  }
493
+
494
+ // Trim off the last ' OR ' for the loop above.
495
+ $search_query = substr( $search_query, 0, strlen( $search_query ) - 4 );
496
+ } else {
497
+ $search_query .= "`engine` = '{$search_engine}'";
498
  }
 
 
 
499
  } else {
500
+ // Are we getting results for all search engines or a specific one?
501
+ if( strtolower($search_engine) == 'all' ) {
502
+ // For all of them? Ok, look through the search engine list and create a SQL query string to get them all from the database.
503
+ // NOTE: This SQL query can be long.
504
+ foreach( $searchengine_list as $se ) {
505
+ // The SQL pattern for a search engine may be an array if it has to handle multiple domains (like google.com and google.ca) or other factors.
506
+ if( is_array( $se['sqlpattern'] ) ) {
507
+ foreach( $se['sqlpattern'] as $subse ) {
508
+ $search_query .= "`referred` LIKE '{$subse}' OR ";
509
+ }
510
+ } else {
511
+ $search_query .= "`referred` LIKE '{$se['sqlpattern']}' OR ";
512
+ }
513
  }
514
+
515
  // Trim off the last ' OR ' for the loop above.
516
  $search_query = substr( $search_query, 0, strlen( $search_query ) - 4 );
517
+ } else {
518
+ // For just one? Ok, the SQL pattern for a search engine may be an array if it has to handle multiple domains (like google.com and google.ca) or other factors.
519
+ if( is_array( $searchengine_list[$search_engine]['sqlpattern'] ) ) {
520
+ foreach( $searchengine_list[$search_engine]['sqlpattern'] as $se ) {
521
+ $search_query .= "`referred` LIKE '{$se}' OR ";
522
+ }
523
+
524
+ // Trim off the last ' OR ' for the loop above.
525
+ $search_query = substr( $search_query, 0, strlen( $search_query ) - 4 );
526
+ }
527
+ else {
528
+ $search_query .= "`referred` LIKE '{$searchengine_list[$search_engine]['sqlpattern']}'";
529
+ }
530
  }
531
  }
532
 
578
 
579
  global $wpdb, $WP_Statistics;
580
 
581
+ // Determine if we're using the old or new method of storing search engine info and build the appropriate table name.
582
+ $tablename = $wpdb->prefix . 'statistics_';
583
+
584
+ if( $WP_Statistics->get_option('search_converted') ) {
585
+ $tablename .= 'search';
586
+ } else {
587
+ $tablename .= 'visitor';
588
+ }
589
+
590
  // Get a complete list of search engines
591
  $search_query = wp_statistics_searchengine_query($search_engine);
592
 
594
  // They're pretty self explanatory.
595
  switch($time) {
596
  case 'today':
597
+ $result = $wpdb->query("SELECT * FROM `{$tablename}` WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d')}' AND {$search_query}");
598
  break;
599
 
600
  case 'yesterday':
601
+ $result = $wpdb->query("SELECT * FROM `{$tablename}` WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d', -1)}' AND {$search_query}");
602
 
603
  break;
604
 
605
  case 'week':
606
+ $result = $wpdb->query("SELECT * FROM `{$tablename}` WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d', -7)}' AND {$search_query}");
607
 
608
  break;
609
 
610
  case 'month':
611
+ $result = $wpdb->query("SELECT * FROM `{$tablename}` WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d', -30)}' AND {$search_query}");
612
 
613
  break;
614
 
615
  case 'year':
616
+ $result = $wpdb->query("SELECT * FROM `{$tablename}` WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d', -360)}' AND {$search_query}");
617
 
618
  break;
619
 
620
  case 'total':
621
+ $result = $wpdb->query("SELECT * FROM `{$tablename}` WHERE {$search_query}");
622
 
623
  break;
624
 
625
  default:
626
+ $result = $wpdb->query("SELECT * FROM `{$tablename}` WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d', $time)}' AND {$search_query}");
627
 
628
  break;
629
  }
636
 
637
  global $wpdb, $WP_Statistics;
638
 
639
+ // Determine if we're using the old or new method of storing search engine info and build the appropriate table name.
640
+ $tablename = $wpdb->prefix . 'statistics_';
641
+
642
+ if( $WP_Statistics->get_option('search_converted') ) {
643
+ $tablename .= 'search';
644
+ } else {
645
+ $tablename .= 'visitor';
646
+ }
647
+
648
  // Get a complete list of search engines
649
  $search_query = wp_statistics_searchword_query($search_engine);
650
 
652
  // They're pretty self explanatory.
653
  switch($time) {
654
  case 'today':
655
+ $result = $wpdb->query("SELECT * FROM `{$tablename}` WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d')}' AND {$search_query}");
656
  break;
657
 
658
  case 'yesterday':
659
+ $result = $wpdb->query("SELECT * FROM `{$tablename}` WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d', -1)}' AND {$search_query}");
660
 
661
  break;
662
 
663
  case 'week':
664
+ $result = $wpdb->query("SELECT * FROM `{$tablename}` WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d', -7)}' AND {$search_query}");
665
 
666
  break;
667
 
668
  case 'month':
669
+ $result = $wpdb->query("SELECT * FROM `{$tablename}` WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d', -30)}' AND {$search_query}");
670
 
671
  break;
672
 
673
  case 'year':
674
+ $result = $wpdb->query("SELECT * FROM `{$tablename}` WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d', -360)}' AND {$search_query}");
675
 
676
  break;
677
 
678
  case 'total':
679
+ $result = $wpdb->query("SELECT * FROM `{$tablename}` WHERE {$search_query}");
680
 
681
  break;
682
 
683
  default:
684
+ $result = $wpdb->query("SELECT * FROM `{$tablename}` WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d', $time)}' AND {$search_query}");
685
 
686
  break;
687
  }
includes/log/exclusions.php CHANGED
@@ -18,10 +18,10 @@
18
 
19
  $total_stats = $WP_Statistics->get_option( 'chart_totals' );
20
 
21
- $excluded_reasons = array('Robot','Browscap','IP Match','Self Referral','Login Page','Admin Page','User Role','GeoIP','Hostname', 'Robot Threshold','Honey Pot','Feeds', 'Excluded URL', '404 Pages');
22
- $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', 'Excluded URL' => 'excluded_url', '404 Pages' => 'excluded_404s');
23
- $excluded_reason_db = array('Robot' => 'robot','Browscap' => 'browscap','IP Match' => 'ip match','Self Referral' => 'self referral','Login Page' => 'login page','Admin Page' => 'admin page','User Role' => 'user role','Total' => 'total','GeoIP' => 'geoip','Hostname' => 'hostname','Robot Threshold' => 'robot_threshold','Honey Pot' => 'honeypot','Feeds' => 'feed', 'Excluded URL' => 'excluded url', '404 Pages' => '404');
24
- $excluded_reason_translate = array( 'Robot' => json_encode(__('Robot', 'wp_statistics')), 'Browscap' => json_encode(__('Browscap', 'wp_statistics')), 'IP Match' => json_encode(__('IP Match', 'wp_statistics')), 'Self Referral' => json_encode(__('Self Referral', 'wp_statistics')), 'Login Page' => json_encode(__('Login Page', 'wp_statistics')), 'Admin Page' => json_encode(__('Admin Page', 'wp_statistics')), 'User Role' => json_encode(__('User Role', 'wp_statistics')), 'Total' => json_encode(__('Total', 'wp_statistics')), 'GeoIP' => json_encode(__('GeoIP', 'wp_statistics')), 'Hostname' => json_encode(__('Hostname', 'wp_statistics')), 'Robot Threshold' => json_encode(__('Robot Threshold', 'wp_statistics')), 'Honey Pot' => json_encode(__('Honey Pot', 'wp_statistics')), 'Feeds' => json_encode(__('Feeds', 'wp_statistics') ), 'Excluded URL' => json_encode(__('Excluded URL', 'wp_statistics') ),'404 Pages' => json_encode(__('404 Pages', 'wp_statistics') ));
25
  $excluded_results = array('Total' => array() );
26
  $excluded_total = 0;
27
 
18
 
19
  $total_stats = $WP_Statistics->get_option( 'chart_totals' );
20
 
21
+ $excluded_reasons = array('Robot','Browscap','IP Match','Self Referral','Login Page','Admin Page','User Role','GeoIP','Hostname', 'Robot Threshold','Honey Pot','Feeds', 'Excluded URL', '404 Pages', 'Referrer Spam');
22
+ $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', 'Excluded URL' => 'excluded_url', '404 Pages' => 'excluded_404s', 'Referrer Spam' => 'referrer_spam' );
23
+ $excluded_reason_db = array('Robot' => 'robot','Browscap' => 'browscap','IP Match' => 'ip match','Self Referral' => 'self referral','Login Page' => 'login page','Admin Page' => 'admin page','User Role' => 'user role','Total' => 'total','GeoIP' => 'geoip','Hostname' => 'hostname','Robot Threshold' => 'robot_threshold','Honey Pot' => 'honeypot','Feeds' => 'feed', 'Excluded URL' => 'excluded url', '404 Pages' => '404', 'Referrer Spam' => 'referrer_spam');
24
+ $excluded_reason_translate = array( 'Robot' => json_encode(__('Robot', 'wp_statistics')), 'Browscap' => json_encode(__('Browscap', 'wp_statistics')), 'IP Match' => json_encode(__('IP Match', 'wp_statistics')), 'Self Referral' => json_encode(__('Self Referral', 'wp_statistics')), 'Login Page' => json_encode(__('Login Page', 'wp_statistics')), 'Admin Page' => json_encode(__('Admin Page', 'wp_statistics')), 'User Role' => json_encode(__('User Role', 'wp_statistics')), 'Total' => json_encode(__('Total', 'wp_statistics')), 'GeoIP' => json_encode(__('GeoIP', 'wp_statistics')), 'Hostname' => json_encode(__('Hostname', 'wp_statistics')), 'Robot Threshold' => json_encode(__('Robot Threshold', 'wp_statistics')), 'Honey Pot' => json_encode(__('Honey Pot', 'wp_statistics')), 'Feeds' => json_encode(__('Feeds', 'wp_statistics') ), 'Excluded URL' => json_encode(__('Excluded URL', 'wp_statistics') ),'404 Pages' => json_encode(__('404 Pages', 'wp_statistics') ), 'Referrer Spam' => json_encode(__('Referrer Spam', 'wp_statistics') ) );
25
  $excluded_results = array('Total' => array() );
26
  $excluded_total = 0;
27
 
includes/log/last-search.php CHANGED
@@ -86,9 +86,19 @@
86
  } else {
87
  $search_query = wp_statistics_searchword_query('all');
88
  }
89
-
90
- $result = $wpdb->get_results("SELECT * FROM `{$wpdb->prefix}statistics_visitor` WHERE {$search_query} ORDER BY `{$wpdb->prefix}statistics_visitor`.`ID` DESC LIMIT {$start}, {$end}");
91
 
 
 
 
 
 
 
 
 
 
 
 
 
92
  $ISOCountryCode = $WP_Statistics->get_country_codes();
93
 
94
  $dash_icon = wp_statistics_icons('dashicons-location-alt', 'map');
@@ -104,30 +114,37 @@
104
  $ip_string = "<a href='http://www.geoiptool.com/en/?IP={$items->ip}' target='_blank'>{$items->ip}</a>";
105
  $map_string = "<a class='show-map' href='http://www.geoiptool.com/en/?IP={$items->ip}' target='_blank' title='".__('Map', 'wp_statistics')."'>{$dash_icon}</a>";
106
  }
 
 
 
 
 
 
 
 
107
 
108
  echo "<div class='log-item'>";
109
- echo "<div class='log-referred'>".$WP_Statistics->Search_Engine_QueryString($items->referred)."</div>";
110
- echo "<div class='log-ip'>" . date(get_option('date_format'), strtotime($items->last_counter)) . " - {$ip_string}</div>";
111
- echo "<div class='clear'></div>";
112
- echo "<div class='log-url'>";
113
- echo $map_string;
114
-
115
- if($WP_Statistics->get_option('geoip')) {
116
- echo "<img src='".plugins_url('wp-statistics/assets/images/flags/' . $items->location . '.png')."' title='{$ISOCountryCode[$items->location]}' class='log-tools'/>";
117
- }
118
-
119
- $this_search_engine = $WP_Statistics->Search_Engine_Info($items->referred);
120
- echo "<a href='?page=wp-statistics/wp-statistics.php&type=last-all-search&referred={$this_search_engine['tag']}'><img src='".plugins_url('wp-statistics/assets/images/' . $this_search_engine['image'])."' class='log-tools' title='".__($this_search_engine['name'], 'wp_statistics')."'/></a>";
121
-
122
- if( array_search( strtolower( $items->agent ), array( "chrome", "firefox", "msie", "opera", "safari" ) ) !== FALSE ){
123
- $agent = "<img src='".plugins_url('wp-statistics/assets/images/').$items->agent.".png' class='log-tools' title='{$items->agent}'/>";
124
- } else {
125
- $agent = wp_statistics_icons('dashicons-editor-help', 'unknown');
126
- }
127
-
128
- echo "<a href='?page=wp-statistics/wp-statistics.php&type=last-all-visitor&agent={$items->agent}'>{$agent}</a>";
129
-
130
- echo "<a href='" . htmlentities($items->referred,ENT_QUOTES) . "' title='" . htmlentities($items->referred,ENT_QUOTES) . "'>".wp_statistics_icons('dashicons-admin-links', 'link') . " " . htmlentities($items->referred,ENT_QUOTES) . "</a></div>";
131
  echo "</div>";
132
  }
133
  }
86
  } else {
87
  $search_query = wp_statistics_searchword_query('all');
88
  }
 
 
89
 
90
+ // Determine if we're using the old or new method of storing search engine info and build the appropriate table name.
91
+ $tablename = $wpdb->prefix . 'statistics_';
92
+
93
+ if( $WP_Statistics->get_option('search_converted') ) {
94
+ $tabletwo = $tablename . 'visitor';
95
+ $tablename .= 'search';
96
+ $result = $wpdb->get_results("SELECT * FROM `{$tablename}` INNER JOIN `{$tabletwo}` on {$tablename}.`visitor` = {$tabletwo}.`ID` WHERE {$search_query} ORDER BY `{$tablename}`.`ID` DESC LIMIT {$start}, {$end}");
97
+ } else {
98
+ $tablename .= 'visitor';
99
+ $result = $wpdb->get_results("SELECT * FROM `{$tablename}` WHERE {$search_query} ORDER BY `{$tablename}`.`ID` DESC LIMIT {$start}, {$end}");
100
+ }
101
+
102
  $ISOCountryCode = $WP_Statistics->get_country_codes();
103
 
104
  $dash_icon = wp_statistics_icons('dashicons-location-alt', 'map');
114
  $ip_string = "<a href='http://www.geoiptool.com/en/?IP={$items->ip}' target='_blank'>{$items->ip}</a>";
115
  $map_string = "<a class='show-map' href='http://www.geoiptool.com/en/?IP={$items->ip}' target='_blank' title='".__('Map', 'wp_statistics')."'>{$dash_icon}</a>";
116
  }
117
+
118
+ if( $WP_Statistics->get_option('search_converted') ) {
119
+ $this_search_engine = $WP_Statistics->Search_Engine_Info_By_Engine($items->engine);
120
+ $words = $items->words;
121
+ } else {
122
+ $this_search_engine = $WP_Statistics->Search_Engine_Info($items->referred);
123
+ $words = $WP_Statistics->Search_Engine_QueryString($items->referred);
124
+ }
125
 
126
  echo "<div class='log-item'>";
127
+ echo "<div class='log-referred'>".$words."</div>";
128
+ echo "<div class='log-ip'>" . date(get_option('date_format'), strtotime($items->last_counter)) . " - {$ip_string}</div>";
129
+ echo "<div class='clear'></div>";
130
+ echo "<div class='log-url'>";
131
+ echo $map_string;
132
+
133
+ if($WP_Statistics->get_option('geoip')) {
134
+ echo "<img src='".plugins_url('wp-statistics/assets/images/flags/' . $items->location . '.png')."' title='{$ISOCountryCode[$items->location]}' class='log-tools'/>";
135
+ }
136
+
137
+ echo "<a href='?page=wp-statistics/wp-statistics.php&type=last-all-search&referred={$this_search_engine['tag']}'><img src='".plugins_url('wp-statistics/assets/images/' . $this_search_engine['image'])."' class='log-tools' title='".__($this_search_engine['name'], 'wp_statistics')."'/></a>";
138
+
139
+ if( array_search( strtolower( $items->agent ), array( "chrome", "firefox", "msie", "opera", "safari" ) ) !== FALSE ){
140
+ $agent = "<img src='".plugins_url('wp-statistics/assets/images/').$items->agent.".png' class='log-tools' title='{$items->agent}'/>";
141
+ } else {
142
+ $agent = wp_statistics_icons('dashicons-editor-help', 'unknown');
143
+ }
144
+
145
+ echo "<a href='?page=wp-statistics/wp-statistics.php&type=last-all-visitor&agent={$items->agent}'>{$agent}</a>";
146
+
147
+ echo "<a href='" . htmlentities($items->referred,ENT_QUOTES) . "' title='" . htmlentities($items->referred,ENT_QUOTES) . "'>".wp_statistics_icons('dashicons-admin-links', 'link') . " " . htmlentities($items->referred,ENT_QUOTES) . "</a></div>";
 
148
  echo "</div>";
149
  }
150
  }
includes/log/last-visitor.php CHANGED
@@ -107,25 +107,25 @@
107
  }
108
 
109
  echo "<div class='log-item'>";
110
- echo "<div class='log-referred'>{$ip_string}</div>";
111
- echo "<div class='log-ip'>" . date(get_option('date_format'), strtotime($items->last_counter)) . "</div>";
112
- echo "<div class='clear'></div>";
113
- echo "<div class='log-url'>";
114
- echo $map_string;
115
-
116
- if($WP_Statistics->get_option('geoip')) {
117
- echo "<img src='".plugins_url('wp-statistics/assets/images/flags/' . $items->location . '.png')."' title='{$ISOCountryCode[$items->location]}' class='log-tools'/>";
118
- }
119
-
120
- if( array_search( strtolower( $items->agent ), array( "chrome", "firefox", "msie", "opera", "safari" ) ) !== FALSE ){
121
- $agent = "<img src='".plugins_url('wp-statistics/assets/images/').$items->agent.".png' class='log-tools' title='{$items->agent}'/>";
122
- } else {
123
- $agent = wp_statistics_icons('dashicons-editor-help', 'unknown');
124
- }
125
-
126
- echo "<a href='?page=wps_visitors_menu&agent={$items->agent}'>{$agent}</a>";
127
-
128
- echo "<a href='" . htmlentities($items->referred,ENT_QUOTES) . "' title='" . htmlentities($items->referred,ENT_QUOTES) . "'>" . wp_statistics_icons('dashicons-admin-links', 'link') . " " . htmlentities($items->referred,ENT_QUOTES) . "</a></div>";
129
  echo "</div>";
130
  }
131
 
107
  }
108
 
109
  echo "<div class='log-item'>";
110
+ echo "<div class='log-referred'>{$ip_string}</div>";
111
+ echo "<div class='log-ip'>" . date(get_option('date_format'), strtotime($items->last_counter)) . "</div>";
112
+ echo "<div class='clear'></div>";
113
+ echo "<div class='log-url'>";
114
+ echo $map_string;
115
+
116
+ if($WP_Statistics->get_option('geoip')) {
117
+ echo "<img src='".plugins_url('wp-statistics/assets/images/flags/' . $items->location . '.png')."' title='{$ISOCountryCode[$items->location]}' class='log-tools'/>";
118
+ }
119
+
120
+ if( array_search( strtolower( $items->agent ), array( "chrome", "firefox", "msie", "opera", "safari" ) ) !== FALSE ){
121
+ $agent = "<img src='".plugins_url('wp-statistics/assets/images/').$items->agent.".png' class='log-tools' title='{$items->agent}'/>";
122
+ } else {
123
+ $agent = wp_statistics_icons('dashicons-editor-help', 'unknown');
124
+ }
125
+
126
+ echo "<a href='?page=wps_visitors_menu&agent={$items->agent}'>{$agent}</a>";
127
+
128
+ echo "<a href='" . htmlentities($items->referred,ENT_QUOTES) . "' title='" . htmlentities($items->referred,ENT_QUOTES) . "'>" . wp_statistics_icons('dashicons-admin-links', 'link') . " " . htmlentities($items->referred,ENT_QUOTES) . "</a></div>";
129
  echo "</div>";
130
  }
131
 
includes/log/top-referring.php CHANGED
@@ -9,27 +9,64 @@
9
  </script>
10
  <?php
11
  if( array_key_exists('referr',$_GET) ) {
12
- $referr = '%' . $_GET['referr'] . '%';
13
  $title = $_GET['referr'];
14
  }
15
  else {
16
  $referr = '';
17
  }
18
 
19
- if( $referr ) {
20
- $total = $wpdb->get_var($wpdb->prepare("SELECT COUNT(*) FROM `{$wpdb->prefix}statistics_visitor` WHERE `referred` LIKE %s", $referr));
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  } else {
22
- $total = $wpdb->get_var("SELECT COUNT(*) FROM `{$wpdb->prefix}statistics_visitor` WHERE referred <> ''");
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
  }
 
24
  ?>
25
  <div class="wrap">
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">
35
  <div class="metabox-holder">
@@ -43,75 +80,64 @@
43
  <?php } ?>
44
  <div class="inside">
45
  <?php
46
- // Instantiate pagination object with appropriate arguments
47
- $pagesPerSection = 10;
48
- $options = array(25, "All");
49
- $stylePageOff = "pageOff";
50
- $stylePageOn = "pageOn";
51
- $styleErrors = "paginationErrors";
52
- $styleSelect = "paginationSelect";
53
-
54
- $Pagination = new WP_Statistics_Pagination($total, $pagesPerSection, $options, false, $stylePageOff, $stylePageOn, $styleErrors, $styleSelect);
55
-
56
- $start = $Pagination->getEntryStart();
57
- $end = $Pagination->getEntryEnd();
58
-
59
  echo "<div class='log-latest'>";
60
-
61
- if( $referr ) {
62
-
63
- $result = $wpdb->get_results("SELECT * FROM `{$wpdb->prefix}statistics_visitor` WHERE `referred` LIKE '%{$referr}%' AND referred <> '' ORDER BY `{$wpdb->prefix}statistics_visitor`.`ID` DESC LIMIT {$start}, {$end}");
 
 
 
 
 
 
 
64
 
65
- foreach($result as $items) {
66
-
67
- echo "<div class='log-item'>";
68
- echo "<div class='log-referred'><a href='?page=wp-statistics/wp-statistics.php&type=last-all-visitor&ip={$items->ip}'>".wp_statistics_icons('dashicons-visibility', 'visibility')."{$items->ip}</a></div>";
69
- echo "<div class='log-ip'>" . date(get_option('date_format'), strtotime($items->last_counter)) . " - <a href='http://www.geoiptool.com/en/?IP={$items->ip}' target='_blank'>{$items->ip}</a></div>";
 
 
 
 
 
 
 
 
70
  echo "<div class='clear'></div>";
71
  echo "<a class='show-map' title='".__('Map', 'wp_statistics')."'><div class='dashicons dashicons-location-alt'></div></a>";
72
 
73
- if( array_search( strtolower( $items->agent ), array( "chrome", "firefox", "msie", "opera", "safari" ) ) !== FALSE ){
74
- $agent = "<img src='".plugins_url('wp-statistics/assets/images/').$items->agent.".png' class='log-tools' title='{$items->agent}'/>";
75
  } else {
76
  $agent = "<div class='dashicons dashicons-editor-help'></div>";
77
  }
78
 
79
- echo "<div class='log-agent'><a href='?page=wp-statistics/wp-statistics.php&type=last-all-visitor&agent={$items->agent}'>{$agent}</a></div>";
80
-
81
- echo "<div class='log-url'><a href='" . htmlentities($items->referred,ENT_QUOTES) . "'><div class='dashicons dashicons-admin-links'></div> " . htmlentities(substr($items->referred, 0, 100),ENT_QUOTES) . "[...]</a></div>";
82
- echo "</div>";
83
-
84
- }
85
- } else {
86
-
87
- $result = $wpdb->get_results("SELECT `referred` FROM `{$wpdb->prefix}statistics_visitor` WHERE referred <> ''");
88
-
89
- $urls = array();
90
- foreach( $result as $items ) {
91
-
92
- $url = parse_url($items->referred);
93
-
94
- if( empty($url['host']) )
95
- continue;
96
 
97
- $urls[] = $url['host'];
98
- }
99
- $get_urls = array_count_values($urls);
100
- arsort( $get_urls );
101
- $get_urls = array_slice($get_urls, $start, $end);
102
-
103
- $i = 0;
104
- foreach( $get_urls as $items => $value) {
105
 
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>";
113
- echo "</div>";
114
-
 
115
  }
116
  }
117
 
@@ -121,8 +147,9 @@
121
  </div>
122
 
123
  <div class="pagination-log">
124
- <?php echo $Pagination->display(); ?>
125
  <p id="result-log"><?php echo ' ' . __('Page', 'wp_statistics') . ' ' . $Pagination->getCurrentPage() . ' ' . __('From', 'wp_statistics') . ' ' . $Pagination->getTotalPages(); ?></p>
 
126
  </div>
127
  </div>
128
  </div>
9
  </script>
10
  <?php
11
  if( array_key_exists('referr',$_GET) ) {
12
+ $referr = $_GET['referr'];
13
  $title = $_GET['referr'];
14
  }
15
  else {
16
  $referr = '';
17
  }
18
 
19
+ $get_urls = array();
20
+ $total = 0;
21
+
22
+ if( $WP_Statistics->get_option('search_converted') ) {
23
+ if( $referr ) {
24
+ $total = $wpdb->get_var($wpdb->prepare("SELECT COUNT(*) FROM `{$wpdb->prefix}statistics_search` WHERE `host` = %s", $referr ));
25
+ } else {
26
+ $result = $wpdb->get_results( "SELECT DISTINCT host FROM {$wpdb->prefix}statistics_search" );
27
+
28
+ foreach( $result as $item ) {
29
+ $get_urls[$item->host] = $wpdb->get_var( "SELECT count(*) FROM {$wpdb->prefix}statistics_search WHERE host = '{$item->host}'" );
30
+ }
31
+
32
+ $total = count( $get_urls );
33
+ }
34
  } else {
35
+ if( $referr ) {
36
+ $result = $wpdb->get_results($wpdb->prepare("SELECT * FROM `{$wpdb->prefix}statistics_visitor` WHERE `referred` LIKE %s' AND referred <> '' ORDER BY `{$wpdb->prefix}statistics_visitor`.`ID` DESC", '%' . $referr . '%' ) );
37
+
38
+ $total = count( $result );
39
+ } else {
40
+ $result = $wpdb->get_results( "SELECT referred FROM {$wpdb->prefix}statistics_visitor WHERE referred <> ''" );
41
+
42
+ $urls = array();
43
+ foreach( $result as $item ) {
44
+
45
+ $url = parse_url($item->referred);
46
+
47
+ if( empty($url['host']) || stristr(get_bloginfo('url'), $url['host']) )
48
+ continue;
49
+
50
+ $urls[] = $url['host'];
51
+ }
52
+
53
+ $get_urls = array_count_values($urls);
54
+
55
+ $total = count( $get_urls );
56
+ }
57
  }
58
+
59
  ?>
60
  <div class="wrap">
61
  <?php screen_icon('options-general'); ?>
62
  <h2><?php _e('Top Referring Sites', 'wp_statistics'); ?></h2>
63
  <ul class="subsubsub">
 
64
  <?php if($referr) { ?>
65
+ <li class="all"><a <?php if(!$referr) { echo 'class="current"'; } ?>href="?page=wps_referrers_menu"><?php _e('All', 'wp_statistics'); ?></a></li>
66
  | <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>
67
+ <?php } else { ?>
68
+ <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>
69
+ <?php }?>
70
  </ul>
71
  <div class="postbox-container" id="last-log">
72
  <div class="metabox-holder">
80
  <?php } ?>
81
  <div class="inside">
82
  <?php
 
 
 
 
 
 
 
 
 
 
 
 
 
83
  echo "<div class='log-latest'>";
84
+
85
+ if( $total > 0 ) {
86
+ // Initiate pagination object with appropriate arguments
87
+ $pagesPerSection = 10;
88
+ $options = array(25, "All");
89
+ $stylePageOff = "pageOff";
90
+ $stylePageOn = "pageOn";
91
+ $styleErrors = "paginationErrors";
92
+ $styleSelect = "paginationSelect";
93
+
94
+ $Pagination = new WP_Statistics_Pagination($total, $pagesPerSection, $options, false, $stylePageOff, $stylePageOn, $styleErrors, $styleSelect);
95
 
96
+ $start = $Pagination->getEntryStart();
97
+ $end = $Pagination->getEntryEnd();
98
+
99
+ if( $WP_Statistics->get_option('search_converted') ) {
100
+ $result = $wpdb->get_results($wpdb->prepare("SELECT * FROM `{$wpdb->prefix}statistics_search` INNER JOIN `{$wpdb->prefix}statistics_visitor` on {$wpdb->prefix}statistics_search.`visitor` = {$wpdb->prefix}statistics_visitor.`ID` WHERE `host` = %s ORDER BY `{$wpdb->prefix}statistics_search`.`ID` DESC LIMIT %d, %d", $referr, $start, $end ) );
101
+ }
102
+
103
+ if( $referr ) {
104
+ foreach($result as $item) {
105
+
106
+ echo "<div class='log-item'>";
107
+ echo "<div class='log-referred'><a href='?page=wp-statistics/wp-statistics.php&type=last-all-visitor&ip={$item->ip}'>".wp_statistics_icons('dashicons-visibility', 'visibility')."{$item->ip}</a></div>";
108
+ echo "<div class='log-ip'>" . date(get_option('date_format'), strtotime($item->last_counter)) . " - <a href='http://www.geoiptool.com/en/?IP={$item->ip}' target='_blank'>{$item->ip}</a></div>";
109
  echo "<div class='clear'></div>";
110
  echo "<a class='show-map' title='".__('Map', 'wp_statistics')."'><div class='dashicons dashicons-location-alt'></div></a>";
111
 
112
+ if( array_search( strtolower( $item->agent ), array( "chrome", "firefox", "msie", "opera", "safari" ) ) !== FALSE ){
113
+ $agent = "<img src='".plugins_url('wp-statistics/assets/images/').$item->agent.".png' class='log-tools' title='{$item->agent}'/>";
114
  } else {
115
  $agent = "<div class='dashicons dashicons-editor-help'></div>";
116
  }
117
 
118
+ echo "<div class='log-agent'><a href='?page=wp-statistics/wp-statistics.php&type=last-all-visitor&agent={$item->agent}'>{$agent}</a>";
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
119
 
120
+ echo "<a href='" . htmlentities($item->referred,ENT_QUOTES) . "'><div class='dashicons dashicons-admin-links'></div> " . htmlentities(substr($item->referred, 0, 100),ENT_QUOTES) . "[...]</a></div>";
121
+ echo "</div>";
 
 
 
 
 
 
122
 
123
+ }
124
+ } else {
125
+ arsort( $get_urls );
126
+ $get_urls = array_slice($get_urls, $start, $end);
127
 
128
+ $i = 0;
129
+ foreach( $get_urls as $items => $value) {
130
+
131
+ $i++;
132
+
133
+ echo "<div class='log-item'>";
134
  echo "<div class='log-referred'>{$i} - <a href='?page=wps_referrers_menu&referr={$items}'>{$items}</a></div>";
135
  echo "<div class='log-ip'>".__('References', 'wp_statistics').": " . number_format_i18n($value) . "</div>";
136
  echo "<div class='clear'></div>";
137
  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>";
138
+ echo "</div>";
139
+
140
+ }
141
  }
142
  }
143
 
147
  </div>
148
 
149
  <div class="pagination-log">
150
+ <?php if( $total > 0 ) { echo $Pagination->display(); ?>
151
  <p id="result-log"><?php echo ' ' . __('Page', 'wp_statistics') . ' ' . $Pagination->getCurrentPage() . ' ' . __('From', 'wp_statistics') . ' ' . $Pagination->getTotalPages(); ?></p>
152
+ <?php } ?>
153
  </div>
154
  </div>
155
  </div>
includes/log/widgets/referring.php CHANGED
@@ -3,12 +3,7 @@
3
 
4
  global $wpdb, $WP_Statistics;
5
 
6
- global $wpdb, $WP_Statistics;
7
-
8
  if( $WP_Statistics->get_option( 'visitors' ) ) {
9
- $result = $wpdb->get_results("SELECT `referred` FROM `{$wpdb->prefix}statistics_visitor` WHERE referred <> ''");
10
-
11
- if( sizeof( $result ) > 0 ) {
12
  ?>
13
  <div class="postbox">
14
  <div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
@@ -17,17 +12,47 @@
17
  </h3>
18
  <div class="inside">
19
  <div class="inside">
20
- <?php wp_statistics_generate_referring_postbox_content($result); ?>
21
  </div>
22
  </div>
23
  </div>
24
  <?php
25
- }
26
  }
27
  }
28
 
29
- function wp_statistics_generate_referring_postbox_content($result, $count = 10) {
30
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31
  ?>
32
  <table width="100%" class="widefat table-stats" id="last-referrer">
33
  <tr>
@@ -36,22 +61,7 @@
36
  </tr>
37
 
38
  <?php
39
-
40
- $urls = array();
41
- foreach( $result as $items ) {
42
-
43
- $url = parse_url($items->referred);
44
-
45
- if( empty($url['host']) || stristr(get_bloginfo('url'), $url['host']) )
46
- continue;
47
-
48
- $urls[] = $url['host'];
49
- }
50
-
51
- $get_urls = array_count_values($urls);
52
- arsort( $get_urls );
53
- $get_urls = array_slice($get_urls, 0, $count);
54
-
55
  foreach( $get_urls as $items => $value) {
56
 
57
  echo "<tr>";
3
 
4
  global $wpdb, $WP_Statistics;
5
 
 
 
6
  if( $WP_Statistics->get_option( 'visitors' ) ) {
 
 
 
7
  ?>
8
  <div class="postbox">
9
  <div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
12
  </h3>
13
  <div class="inside">
14
  <div class="inside">
15
+ <?php wp_statistics_generate_referring_postbox_content(); ?>
16
  </div>
17
  </div>
18
  </div>
19
  <?php
 
20
  }
21
  }
22
 
23
+ function wp_statistics_generate_referring_postbox_content($count = 10) {
24
 
25
+ global $wpdb, $WP_Statistics;
26
+
27
+ $get_urls = array();
28
+
29
+ if( $WP_Statistics->get_option('search_converted') ) {
30
+ $result = $wpdb->get_results( "SELECT DISTINCT host FROM {$wpdb->prefix}statistics_search" );
31
+
32
+ foreach( $result as $item ) {
33
+ $get_urls[$item->host] = $wpdb->get_var( "SELECT count(*) FROM {$wpdb->prefix}statistics_search WHERE host = '{$item->host}'" );
34
+ }
35
+
36
+ } else {
37
+ $result = $wpdb->get_results( "SELECT referred FROM {$wpdb->prefix}statistics_visitor WHERE referred <> ''" );
38
+
39
+ $urls = array();
40
+ foreach( $result as $item ) {
41
+
42
+ $url = parse_url($item->referred);
43
+
44
+ if( empty($url['host']) || stristr(get_bloginfo('url'), $url['host']) )
45
+ continue;
46
+
47
+ $urls[] = $url['host'];
48
+ }
49
+
50
+ $get_urls = array_count_values($urls);
51
+ }
52
+
53
+ arsort( $get_urls );
54
+ $get_urls = array_slice($get_urls, 0, $count);
55
+
56
  ?>
57
  <table width="100%" class="widefat table-stats" id="last-referrer">
58
  <tr>
61
  </tr>
62
 
63
  <?php
64
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
65
  foreach( $get_urls as $items => $value) {
66
 
67
  echo "<tr>";
includes/log/widgets/words.php CHANGED
@@ -25,8 +25,18 @@
25
  // Retrieve MySQL data for the search words.
26
  $search_query = wp_statistics_searchword_query('all');
27
 
28
- $result = $wpdb->get_results("SELECT * FROM `{$wpdb->prefix}statistics_visitor` WHERE {$search_query} ORDER BY `{$wpdb->prefix}statistics_visitor`.`ID` DESC LIMIT 0, {$count}");
 
29
 
 
 
 
 
 
 
 
 
 
30
  if( sizeof($result) > 0 ) {
31
  echo "<div class='log-latest'>";
32
 
@@ -34,30 +44,38 @@
34
  if( !$WP_Statistics->Search_Engine_QueryString($items->referred) ) continue;
35
 
36
  if( substr( $items->ip, 0, 6 ) == '#hash#' ) { $ip_string = __('#hash#', 'wp_statistics'); } else { $ip_string = "<a href='http://www.geoiptool.com/en/?IP={$items->ip}' target='_blank'>{$items->ip}</a>"; }
 
 
 
 
 
 
 
 
37
 
38
  echo "<div class='log-item'>";
39
- echo "<div class='log-referred'>".$WP_Statistics->Search_Engine_QueryString($items->referred)."</div>";
40
- echo "<div class='log-ip'>" . date(get_option('date_format'), strtotime($items->last_counter)) . " - {$ip_string}</div>";
41
- echo "<div class='clear'></div>";
42
- echo "<div class='log-url'>";
43
- echo "<a class='show-map' href='http://www.geoiptool.com/en/?IP={$items->ip}' target='_blank' title='".__('Map', 'wp_statistics')."'>".wp_statistics_icons('dashicons-location-alt', 'map')."</a>";
44
-
45
- if($WP_Statistics->get_option('geoip')) {
46
- echo "<img src='".plugins_url('wp-statistics/assets/images/flags/' . $items->location . '.png')."' title='{$ISOCountryCode[$items->location]}' class='log-tools'/>";
47
- }
48
-
49
- $this_search_engine = $WP_Statistics->Search_Engine_Info($items->referred);
50
- echo "<a href='?page=wp-statistics/wp-statistics.php&type=last-all-search&referred={$this_search_engine['tag']}'><img src='".plugins_url('wp-statistics/assets/images/' . $this_search_engine['image'])."' class='log-tools' title='".$this_search_engine['translated']."'/></a>";
51
-
52
- if( array_search( strtolower( $items->agent ), array( "chrome", "firefox", "msie", "opera", "safari" ) ) !== FALSE ){
53
- $agent = "<img src='".plugins_url('wp-statistics/assets/images/').$items->agent.".png' class='log-tools' title='{$items->agent}'/>";
54
- } else {
55
- $agent = wp_statistics_icons('dashicons-editor-help', 'unknown');
56
- }
57
-
58
- echo "<a href='?page=wp-statistics/wp-statistics.php&type=last-all-visitor&agent={$items->agent}'>{$agent}</a>";
59
-
60
- echo "<a href='" . htmlentities($items->referred,ENT_QUOTES) . "' title='" . htmlentities($items->referred,ENT_QUOTES) . "'>" . wp_statistics_icons('dashicons-admin-links', 'link') . " " . htmlentities($items->referred,ENT_QUOTES) . "</a></div>";
61
  echo "</div>";
62
  }
63
 
25
  // Retrieve MySQL data for the search words.
26
  $search_query = wp_statistics_searchword_query('all');
27
 
28
+ // Determine if we're using the old or new method of storing search engine info and build the appropriate table name.
29
+ $tablename = $wpdb->prefix . 'statistics_';
30
 
31
+ if( $WP_Statistics->get_option('search_converted') ) {
32
+ $tabletwo = $tablename . 'visitor';
33
+ $tablename .= 'search';
34
+ $result = $wpdb->get_results("SELECT * FROM `{$tablename}` INNER JOIN `{$tabletwo}` on {$tablename}.`visitor` = {$tabletwo}.`ID` WHERE {$search_query} ORDER BY `{$tablename}`.`ID` DESC LIMIT 0, {$count}");
35
+ } else {
36
+ $tablename .= 'visitor';
37
+ $result = $wpdb->get_results("SELECT * FROM `{$tablename}` WHERE {$search_query} ORDER BY `{$tablename}`.`ID` DESC LIMIT 0, {$count}");
38
+ }
39
+
40
  if( sizeof($result) > 0 ) {
41
  echo "<div class='log-latest'>";
42
 
44
  if( !$WP_Statistics->Search_Engine_QueryString($items->referred) ) continue;
45
 
46
  if( substr( $items->ip, 0, 6 ) == '#hash#' ) { $ip_string = __('#hash#', 'wp_statistics'); } else { $ip_string = "<a href='http://www.geoiptool.com/en/?IP={$items->ip}' target='_blank'>{$items->ip}</a>"; }
47
+
48
+ if( $WP_Statistics->get_option('search_converted') ) {
49
+ $this_search_engine = $WP_Statistics->Search_Engine_Info_By_Engine($items->engine);
50
+ $words = $items->words;
51
+ } else {
52
+ $this_search_engine = $WP_Statistics->Search_Engine_Info($items->referred);
53
+ $words = $WP_Statistics->Search_Engine_QueryString($items->referred);
54
+ }
55
 
56
  echo "<div class='log-item'>";
57
+ echo "<div class='log-referred'>".$words."</div>";
58
+ echo "<div class='log-ip'>" . date(get_option('date_format'), strtotime($items->last_counter)) . " - {$ip_string}</div>";
59
+ echo "<div class='clear'></div>";
60
+ echo "<div class='log-url'>";
61
+ echo "<a class='show-map' href='http://www.geoiptool.com/en/?IP={$items->ip}' target='_blank' title='".__('Map', 'wp_statistics')."'>".wp_statistics_icons('dashicons-location-alt', 'map')."</a>";
62
+
63
+ if($WP_Statistics->get_option('geoip')) {
64
+ echo "<img src='".plugins_url('wp-statistics/assets/images/flags/' . $items->location . '.png')."' title='{$ISOCountryCode[$items->location]}' class='log-tools'/>";
65
+ }
66
+
67
+ $this_search_engine = $WP_Statistics->Search_Engine_Info($items->referred);
68
+ echo "<a href='?page=wp-statistics/wp-statistics.php&type=last-all-search&referred={$this_search_engine['tag']}'><img src='".plugins_url('wp-statistics/assets/images/' . $this_search_engine['image'])."' class='log-tools' title='".$this_search_engine['translated']."'/></a>";
69
+
70
+ if( array_search( strtolower( $items->agent ), array( "chrome", "firefox", "msie", "opera", "safari" ) ) !== FALSE ){
71
+ $agent = "<img src='".plugins_url('wp-statistics/assets/images/').$items->agent.".png' class='log-tools' title='{$items->agent}'/>";
72
+ } else {
73
+ $agent = wp_statistics_icons('dashicons-editor-help', 'unknown');
74
+ }
75
+
76
+ echo "<a href='?page=wp-statistics/wp-statistics.php&type=last-all-visitor&agent={$items->agent}'>{$agent}</a>";
77
+
78
+ echo "<a href='" . htmlentities($items->referred,ENT_QUOTES) . "' title='" . htmlentities($items->referred,ENT_QUOTES) . "'>" . wp_statistics_icons('dashicons-admin-links', 'link') . " " . htmlentities($items->referred,ENT_QUOTES) . "</a></div>";
79
  echo "</div>";
80
  }
81
 
includes/optimization/tabs/wps-optimization-database.php CHANGED
@@ -81,6 +81,38 @@
81
  </td>
82
 
83
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
84
  </tbody>
85
  </table>
86
  </div>
81
  </td>
82
 
83
  </tr>
84
+
85
+ <tr valign="top">
86
+ <th scope="row" colspan="2"><h3><?php _e('Search Table', 'wp_statistics'); ?></h3></th>
87
+ </tr>
88
+
89
+ <tr valign="top">
90
+ <th scope="row">
91
+ <label for="index-submit"><?php _e('Convert', 'wp_statistics'); ?>:</label>
92
+ </th>
93
+ <td>
94
+ <?php
95
+ GLOBAL $WP_Statistics;
96
+
97
+ // Note, the result will be the number of fields contained in the index, so in our case 1.
98
+ if( $WP_Statistics->get_option('search_converted') != 1 ) {
99
+ ?>
100
+ <input id="visits-submit" class="button button-primary" type="button" value="<?php _e('Convert Now!', 'wp_statistics'); ?>" name="search-submit" onclick="location.href=document.URL+'&search=1&tab=database'">
101
+ <p class="description"><?php _e('Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion, however the old data must first be converted to the new format before it can be used.', 'wp_statistics'); ?></p>
102
+ <p class="description"><?php _e('This operation could take a long time on installs with many rows in the visitors table.', 'wp_statistics'); ?></p>
103
+ <?php
104
+ }
105
+ else {
106
+ ?>
107
+ <p class="description"><?php _e('Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion.', 'wp_statistics'); ?></p>
108
+ <p class="description"><?php _e('Congratulations, your installation is already up to date, nothing to do.', 'wp_statistics'); ?></p>
109
+ <?php
110
+ }
111
+ ?>
112
+ </td>
113
+
114
+ </tr>
115
+
116
  </tbody>
117
  </table>
118
  </div>
includes/optimization/wps-optimization.php CHANGED
@@ -145,6 +145,38 @@
145
 
146
  }
147
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
148
  $selected_tab = "";
149
  if( array_key_exists( 'tab', $_GET ) ) { $selected_tab = $_GET['tab']; }
150
 
145
 
146
  }
147
 
148
+ if( array_key_exists( 'search', $_GET ) ) {
149
+
150
+ // Make sure we get all the search engines, even the ones the disabled ones.
151
+ $se_list = wp_statistics_searchengine_list();
152
+ $total = 0;
153
+
154
+ foreach( $se_list as $key => $se ) {
155
+
156
+ $sql = wp_statistics_searchengine_query( $key );
157
+ $result = $wpdb->get_results( "SELECT * FROM `{$wpdb->prefix}statistics_visitor` WHERE {$sql}" );
158
+
159
+ foreach( $result as $row ) {
160
+ $parts = parse_url( $row->referred );
161
+
162
+ $data['last_counter'] = $row->last_counter;
163
+ $data['engine'] = $key;
164
+ $data['host'] = $parts['host'];
165
+ $data['words'] = $WP_Statistics->Search_Engine_QueryString( $row->referred );
166
+ $data['visitor'] = $row->ID;
167
+
168
+ if( $data['words'] == 'No search query found!' ) { $data['words'] = ''; }
169
+
170
+ $wpdb->insert( $wpdb->prefix . 'statistics_search', $data );
171
+ $total++;
172
+ }
173
+ }
174
+
175
+ $WP_Statistics->update_option('search_converted', 1);
176
+ echo "<div class='updated settings-error'><p><strong>" . sprintf( __('Search table conversion complete, %d rows added.', 'wp_statistics'), $total ) . "</strong></p></div>";
177
+
178
+ }
179
+
180
  $selected_tab = "";
181
  if( array_key_exists( 'tab', $_GET ) ) { $selected_tab = $_GET['tab']; }
182
 
includes/settings/tabs/wps-browscap.php DELETED
@@ -1,81 +0,0 @@
1
- <?php
2
- if( $wps_nonce_valid ) {
3
-
4
- $wps_option_list = array("wps_browscap","wps_update_browscap","wps_schedule_browscap");
5
-
6
- foreach( $wps_option_list as $option ) {
7
- $new_option = str_replace( "wps_", "", $option );
8
- if( array_key_exists( $option, $_POST ) ) { $value = $_POST[$option]; } else { $value = ''; }
9
- $WP_Statistics->store_option($new_option, $value);
10
- }
11
-
12
- // If we're focing the download of the browscap.ini file, make sure to flush the last download time from the options.
13
- if( array_key_exists( 'wps_update_browscap', $_POST ) ) {
14
- $WP_Statistics->store_option('last_browscap_dl', 0);
15
- }
16
- }
17
-
18
- ?>
19
- <table class="form-table">
20
- <tbody>
21
- <tr valign="top">
22
- <th scope="row" colspan="2"><h3><?php _e('browscap settings', 'wp_statistics'); ?></h3></th>
23
- </tr>
24
-
25
- <tr valign="top">
26
- <th scope="row">
27
- <label for="browscap-enable"><?php _e('browscap usage', 'wp_statistics'); ?>:</label>
28
- </th>
29
-
30
- <td>
31
- <input id="browscap-enable" type="checkbox" name="wps_browscap" <?php echo $WP_Statistics->get_option('browscap')==true? "checked='checked'":'';?>>
32
- <label for="browscap-enable"><?php _e('Active', 'wp_statistics'); ?></label>
33
- <p class="description"><?php _e('The browscap database will be downloaded and used to detect robots.', 'wp_statistics'); ?></p>
34
- </td>
35
- </tr>
36
-
37
- <tr valign="top">
38
- <th scope="row">
39
- <label for="geoip-update"><?php _e('Update browscap Info', 'wp_statistics'); ?>:</label>
40
- </th>
41
-
42
- <td>
43
- <input id="browscap-update" type="checkbox" name="wps_update_browscap" <?php echo $WP_Statistics->get_option('update_browscap')==true? "checked='checked'":'';?>>
44
- <label for="browscap-update"><?php _e('Download browscap Database', 'wp_statistics'); ?></label>
45
- <p class="description"><?php _e('Save changes on this page to download the update.', 'wp_statistics'); ?></p>
46
- </td>
47
- </tr>
48
-
49
- <tr valign="top">
50
- <th scope="row">
51
- <label for="browscap-schedule"><?php _e('Schedule weekly update of browscap DB', 'wp_statistics'); ?>:</label>
52
- </th>
53
-
54
- <td>
55
- <input id="browscap-schedule" type="checkbox" name="wps_schedule_browscap" <?php echo $WP_Statistics->get_option('schedule_browscap')==true? "checked='checked'":'';?>>
56
- <label for="browscap-schedule"><?php _e('Active', 'wp_statistics'); ?></label>
57
- <?php
58
- if( $WP_Statistics->get_option('schedule_browscap') ) {
59
- echo '<p class="description">' . __('Next update will be') .': <code>';
60
- $last_update = $WP_Statistics->get_option('last_browscap_dl');
61
- $next_update = $last_update + (86400 * 7);
62
-
63
- $next_schedule = wp_next_scheduled('wp_statistics_browscap_hook');
64
-
65
- if( $next_schedule ) {
66
- echo date( get_option('date_format'), $next_update ) . ' @ ' . date( get_option('time_format'), $next_schedule );
67
- } else {
68
- echo date( get_option('date_format'), $next_update ) . ' @ ' . date( get_option('time_format'), time() );
69
- }
70
-
71
- echo '</code></p>';
72
- }
73
- ?>
74
- <p class="description"><?php _e('Download of the browscap database will be scheduled for once a week.', 'wp_statistics'); ?></p>
75
- </td>
76
- </tr>
77
-
78
- </tbody>
79
- </table>
80
-
81
- <?php submit_button(__('Update', 'wp_statistics'), 'primary', 'submit'); ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
includes/settings/tabs/{wps-geoip.php → wps-externals.php} RENAMED
@@ -1,7 +1,7 @@
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 ) ) {
@@ -18,6 +18,11 @@ if( $wps_nonce_valid ) {
18
  if( array_key_exists( $option, $_POST ) ) { $value = $_POST[$option]; } else { $value = ''; }
19
  $WP_Statistics->store_option($new_option, $value);
20
  }
 
 
 
 
 
21
  }
22
 
23
  ?>
@@ -152,7 +157,128 @@ if( $wps_nonce_valid ) {
152
  </tr>
153
  <?php
154
  } ?>
155
- </tbody>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
156
  </table>
157
 
158
  <?php submit_button(__('Update', 'wp_statistics'), 'primary', 'submit'); ?>
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','wps_browscap','wps_update_browscap','wps_schedule_browscap','wps_referrerspam','wps_update_referrerspam','wps_schedule_referrerspam');
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 ) ) {
18
  if( array_key_exists( $option, $_POST ) ) { $value = $_POST[$option]; } else { $value = ''; }
19
  $WP_Statistics->store_option($new_option, $value);
20
  }
21
+
22
+ // If we're focing the download of the browscap.ini file, make sure to flush the last download time from the options.
23
+ if( array_key_exists( 'wps_update_browscap', $_POST ) ) {
24
+ $WP_Statistics->store_option('last_browscap_dl', 0);
25
+ }
26
  }
27
 
28
  ?>
157
  </tr>
158
  <?php
159
  } ?>
160
+
161
+ <tr valign="top">
162
+ <th scope="row" colspan="2"><h3><?php _e('browscap settings', 'wp_statistics'); ?></h3></th>
163
+ </tr>
164
+
165
+ <tr valign="top">
166
+ <th scope="row">
167
+ <label for="browscap-enable"><?php _e('browscap usage', 'wp_statistics'); ?>:</label>
168
+ </th>
169
+
170
+ <td>
171
+ <input id="browscap-enable" type="checkbox" name="wps_browscap" <?php echo $WP_Statistics->get_option('browscap')==true? "checked='checked'":'';?>>
172
+ <label for="browscap-enable"><?php _e('Active', 'wp_statistics'); ?></label>
173
+ <p class="description"><?php _e('The browscap database will be downloaded and used to detect robots.', 'wp_statistics'); ?></p>
174
+ </td>
175
+ </tr>
176
+
177
+ <tr valign="top">
178
+ <th scope="row">
179
+ <label for="browscap-update"><?php _e('Update browscap Info', 'wp_statistics'); ?>:</label>
180
+ </th>
181
+
182
+ <td>
183
+ <input id="browscap-update" type="checkbox" name="wps_update_browscap" <?php echo $WP_Statistics->get_option('update_browscap')==true? "checked='checked'":'';?>>
184
+ <label for="browscap-update"><?php _e('Download browscap Database', 'wp_statistics'); ?></label>
185
+ <p class="description"><?php _e('Save changes on this page to download the update.', 'wp_statistics'); ?></p>
186
+ </td>
187
+ </tr>
188
+
189
+ <tr valign="top">
190
+ <th scope="row">
191
+ <label for="browscap-schedule"><?php _e('Schedule weekly update of browscap DB', 'wp_statistics'); ?>:</label>
192
+ </th>
193
+
194
+ <td>
195
+ <input id="browscap-schedule" type="checkbox" name="wps_schedule_browscap" <?php echo $WP_Statistics->get_option('schedule_browscap')==true? "checked='checked'":'';?>>
196
+ <label for="browscap-schedule"><?php _e('Active', 'wp_statistics'); ?></label>
197
+ <?php
198
+ if( $WP_Statistics->get_option('schedule_browscap') ) {
199
+ echo '<p class="description">' . __('Next update will be') .': <code>';
200
+ $last_update = $WP_Statistics->get_option('last_browscap_dl');
201
+ $next_update = $last_update + (86400 * 7);
202
+
203
+ $next_schedule = wp_next_scheduled('wp_statistics_browscap_hook');
204
+
205
+ if( $next_schedule ) {
206
+ echo date( get_option('date_format'), $next_update ) . ' @ ' . date( get_option('time_format'), $next_schedule );
207
+ } else {
208
+ echo date( get_option('date_format'), $next_update ) . ' @ ' . date( get_option('time_format'), time() );
209
+ }
210
+
211
+ echo '</code></p>';
212
+ }
213
+ ?>
214
+ <p class="description"><?php _e('Download of the browscap database will be scheduled for once a week.', 'wp_statistics'); ?></p>
215
+ </td>
216
+ </tr>
217
+
218
+ <tr valign="top">
219
+ <th scope="row" colspan="2"><h3><?php _e('Piwik Referrer Spam Blacklist settings', 'wp_statistics'); ?></h3></th>
220
+ </tr>
221
+
222
+ <tr valign="top">
223
+ <th scope="row" colspan="2">
224
+ <?php echo sprintf(__('Referrer spam blacklist is provided by Piwik, available from %s.', 'wp_statistics'), '<a href="https://github.com/piwik/referrer-spam-blacklist" target=_blank>https://github.com/piwik/referrer-spam-blacklist</a>'); ?>
225
+ </th>
226
+ </tr>
227
+
228
+ <tr valign="top">
229
+ <th scope="row">
230
+ <label for="referrerspam-enable"><?php _e('Piwik Referrer Spam Blacklist usage', 'wp_statistics'); ?>:</label>
231
+ </th>
232
+
233
+ <td>
234
+ <input id="referrerspam-enable" type="checkbox" name="wps_referrerspam" <?php echo $WP_Statistics->get_option('referrerspam')==true? "checked='checked'":'';?>>
235
+ <label for="referrerspam-enable"><?php _e('Active', 'wp_statistics'); ?></label>
236
+ <p class="description"><?php _e('The Piwik Referrer Spam Blacklist database will be downloaded and used to detect referrer spam.', 'wp_statistics'); ?></p>
237
+ </td>
238
+ </tr>
239
+
240
+ <tr valign="top">
241
+ <th scope="row">
242
+ <label for="geoip-update"><?php _e('Update Piwik Referrer Spam Blacklist Info', 'wp_statistics'); ?>:</label>
243
+ </th>
244
+
245
+ <td>
246
+ <input id="referrerspam-update" type="checkbox" name="wps_update_referrerspam" <?php echo $WP_Statistics->get_option('update_referrerspam')==true? "checked='checked'":'';?>>
247
+ <label for="referrerspam-update"><?php _e('Download Piwik Referrer Spam Blacklist Database', 'wp_statistics'); ?></label>
248
+ <p class="description"><?php _e('Save changes on this page to download the update.', 'wp_statistics'); ?></p>
249
+ </td>
250
+ </tr>
251
+
252
+ <tr valign="top">
253
+ <th scope="row">
254
+ <label for="referrerspam-schedule"><?php _e('Schedule weekly update of Piwik Referrer Spam Blacklist DB', 'wp_statistics'); ?>:</label>
255
+ </th>
256
+
257
+ <td>
258
+ <input id="referrerspam-schedule" type="checkbox" name="wps_schedule_referrerspam" <?php echo $WP_Statistics->get_option('schedule_referrerspam')==true? "checked='checked'":'';?>>
259
+ <label for="referrerspam-schedule"><?php _e('Active', 'wp_statistics'); ?></label>
260
+ <?php
261
+ if( $WP_Statistics->get_option('schedule_referrerspam') ) {
262
+ echo '<p class="description">' . __('Next update will be') .': <code>';
263
+ $last_update = $WP_Statistics->get_option('schedule_referrerspam');
264
+ $next_update = $last_update + (86400 * 7);
265
+
266
+ $next_schedule = wp_next_scheduled('wp_statistics_referrerspam_hook');
267
+
268
+ if( $next_schedule ) {
269
+ echo date( get_option('date_format'), $next_update ) . ' @ ' . date( get_option('time_format'), $next_schedule );
270
+ } else {
271
+ echo date( get_option('date_format'), $next_update ) . ' @ ' . date( get_option('time_format'), time() );
272
+ }
273
+
274
+ echo '</code></p>';
275
+ }
276
+ ?>
277
+ <p class="description"><?php _e('Download of the Piwik Referrer Spam Blacklist database will be scheduled for once a week.', 'wp_statistics'); ?></p>
278
+ </td>
279
+ </tr>
280
+
281
+ </tbody>
282
  </table>
283
 
284
  <?php submit_button(__('Update', 'wp_statistics'), 'primary', 'submit'); ?>
includes/settings/wps-settings.php CHANGED
@@ -30,20 +30,17 @@ switch( $selected_tab )
30
  case 'exclusions':
31
  if( $wps_admin ) { $current_tab = 4; } else { $current_tab = 0; }
32
  break;
33
- case 'geoip':
34
  if( $wps_admin ) { $current_tab = 5; } else { $current_tab = 0; }
35
  break;
36
- case 'browscap':
37
- if( $wps_admin ) { $current_tab = 6; } else { $current_tab = 0; }
38
- break;
39
  case 'maintenance':
40
- if( $wps_admin ) { $current_tab = 7; } else { $current_tab = 0; }
41
  break;
42
  case 'removal':
43
- if( $wps_admin ) { $current_tab = 8; } else { $current_tab = 0; }
44
  break;
45
  case 'about':
46
- if( $wps_admin ) { $current_tab = 9; } else { $current_tab = 1; }
47
  break;
48
  default:
49
  $current_tab = 0;
@@ -75,18 +72,15 @@ switch( $selected_tab )
75
  if( wps_admin == 1 ) { tab = 'exclusions'; } else { tab = 'about'; }
76
  break;
77
  case 5:
78
- if( wps_admin == 1 ) { tab = 'geoip'; } else { tab = 'about'; }
79
  break;
80
  case 6:
81
- if( wps_admin == 1 ) { tab = 'browscap'; } else { tab = 'about'; }
82
- break;
83
- case 7:
84
  if( wps_admin == 1 ) { tab = 'maintenance'; } else { tab = 'about'; }
85
  break;
86
- case 8:
87
  if( wps_admin == 1 ) { tab = 'removal'; } else { tab = 'about'; }
88
  break;
89
- case 9:
90
  tab = 'about';
91
  break;
92
  }
@@ -108,8 +102,7 @@ switch( $selected_tab )
108
  <li class="ui-state-default ui-corner-top"><a class="ui-tabs-anchor" href="#overview-display-settings"><span><?php _e('Dashboard/Overview', 'wp_statistics'); ?></span></a></li>
109
  <?php if( $wps_admin ) { ?> <li class="ui-state-default ui-corner-top"><a class="ui-tabs-anchor" href="#access-settings"><span><?php _e('Access Levels', 'wp_statistics'); ?></span></a></li><?php } ?>
110
  <?php if( $wps_admin ) { ?> <li class="ui-state-default ui-corner-top"><a class="ui-tabs-anchor" href="#exclusions-settings"><span><?php _e('Exclusions', 'wp_statistics'); ?></span></a></li><?php } ?>
111
- <?php if( $wps_admin ) { ?> <li class="ui-state-default ui-corner-top"><a class="ui-tabs-anchor" href="#geoip-settings"><span><?php _e('GeoIP', 'wp_statistics'); ?></span></a></li><?php } ?>
112
- <?php if( $wps_admin ) { ?> <li class="ui-state-default ui-corner-top"><a class="ui-tabs-anchor" href="#browscap-settings"><span><?php _e('browscap', 'wp_statistics'); ?></span></a></li><?php } ?>
113
  <?php if( $wps_admin ) { ?> <li class="ui-state-default ui-corner-top"><a class="ui-tabs-anchor" href="#maintenance-settings"><span><?php _e('Maintenance', 'wp_statistics'); ?></span></a></li><?php } ?>
114
  <?php if( $wps_admin ) { ?> <li class="ui-state-default ui-corner-top"><a class="ui-tabs-anchor" href="#removal-settings"><span><?php _e('Removal', 'wp_statistics'); ?></span></a></li><?php } ?>
115
  <li class="ui-state-default ui-corner-top"><a class="ui-tabs-anchor" href="#about"><span><?php _e('About', 'wp_statistics'); ?></span></a></li>
@@ -135,12 +128,8 @@ switch( $selected_tab )
135
  <?php if( $wps_admin ) { include( dirname( __FILE__ ) . '/tabs/wps-exclusions.php' ); } ?>
136
  </div>
137
 
138
- <div id="geoip-settings">
139
- <?php if( $wps_admin ) { include( dirname( __FILE__ ) . '/tabs/wps-geoip.php' ); } ?>
140
- </div>
141
-
142
- <div id="browscap-settings">
143
- <?php if( $wps_admin ) { include( dirname( __FILE__ ) . '/tabs/wps-browscap.php' ); } ?>
144
  </div>
145
 
146
  <div id="maintenance-settings">
30
  case 'exclusions':
31
  if( $wps_admin ) { $current_tab = 4; } else { $current_tab = 0; }
32
  break;
33
+ case 'externals':
34
  if( $wps_admin ) { $current_tab = 5; } else { $current_tab = 0; }
35
  break;
 
 
 
36
  case 'maintenance':
37
+ if( $wps_admin ) { $current_tab = 6; } else { $current_tab = 0; }
38
  break;
39
  case 'removal':
40
+ if( $wps_admin ) { $current_tab = 7; } else { $current_tab = 0; }
41
  break;
42
  case 'about':
43
+ if( $wps_admin ) { $current_tab = 8; } else { $current_tab = 1; }
44
  break;
45
  default:
46
  $current_tab = 0;
72
  if( wps_admin == 1 ) { tab = 'exclusions'; } else { tab = 'about'; }
73
  break;
74
  case 5:
75
+ if( wps_admin == 1 ) { tab = 'Externals'; } else { tab = 'about'; }
76
  break;
77
  case 6:
 
 
 
78
  if( wps_admin == 1 ) { tab = 'maintenance'; } else { tab = 'about'; }
79
  break;
80
+ case 7:
81
  if( wps_admin == 1 ) { tab = 'removal'; } else { tab = 'about'; }
82
  break;
83
+ case 8:
84
  tab = 'about';
85
  break;
86
  }
102
  <li class="ui-state-default ui-corner-top"><a class="ui-tabs-anchor" href="#overview-display-settings"><span><?php _e('Dashboard/Overview', 'wp_statistics'); ?></span></a></li>
103
  <?php if( $wps_admin ) { ?> <li class="ui-state-default ui-corner-top"><a class="ui-tabs-anchor" href="#access-settings"><span><?php _e('Access Levels', 'wp_statistics'); ?></span></a></li><?php } ?>
104
  <?php if( $wps_admin ) { ?> <li class="ui-state-default ui-corner-top"><a class="ui-tabs-anchor" href="#exclusions-settings"><span><?php _e('Exclusions', 'wp_statistics'); ?></span></a></li><?php } ?>
105
+ <?php if( $wps_admin ) { ?> <li class="ui-state-default ui-corner-top"><a class="ui-tabs-anchor" href="#externals-settings"><span><?php _e('Externals', 'wp_statistics'); ?></span></a></li><?php } ?>
 
106
  <?php if( $wps_admin ) { ?> <li class="ui-state-default ui-corner-top"><a class="ui-tabs-anchor" href="#maintenance-settings"><span><?php _e('Maintenance', 'wp_statistics'); ?></span></a></li><?php } ?>
107
  <?php if( $wps_admin ) { ?> <li class="ui-state-default ui-corner-top"><a class="ui-tabs-anchor" href="#removal-settings"><span><?php _e('Removal', 'wp_statistics'); ?></span></a></li><?php } ?>
108
  <li class="ui-state-default ui-corner-top"><a class="ui-tabs-anchor" href="#about"><span><?php _e('About', 'wp_statistics'); ?></span></a></li>
128
  <?php if( $wps_admin ) { include( dirname( __FILE__ ) . '/tabs/wps-exclusions.php' ); } ?>
129
  </div>
130
 
131
+ <div id="externals-settings">
132
+ <?php if( $wps_admin ) { include( dirname( __FILE__ ) . '/tabs/wps-externals.php' ); } ?>
 
 
 
 
133
  </div>
134
 
135
  <div id="maintenance-settings">
languages/default.mo CHANGED
Binary file
languages/default.po CHANGED
@@ -2,16 +2,15 @@
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: WP Statistics 9.3.1\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-statistics\n"
7
- "POT-Creation-Date: 2015-06-19 17:08:19+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: 2015-06-19 13:11-0500\n"
12
- "Last-Translator: \n"
13
- "Language-Team: \n"
14
- "X-Generator: Poedit 1.7.5\n"
15
 
16
  #: ajax.php:31
17
  msgid "%s agent data deleted successfully."
@@ -116,88 +115,88 @@ msgstr ""
116
  msgid "Hits in the last 20 days"
117
  msgstr ""
118
 
119
- #: includes/functions/functions.php:398
120
  msgid "Baidu"
121
  msgstr ""
122
 
123
- #: includes/functions/functions.php:399
124
  msgid "Bing"
125
  msgstr ""
126
 
127
- #: includes/functions/functions.php:400
128
  msgid "clearch.org"
129
  msgstr ""
130
 
131
- #: includes/functions/functions.php:401
132
  msgid "DuckDuckGo"
133
  msgstr ""
134
 
135
- #: includes/functions/functions.php:402
136
  #: includes/settings/tabs/wps-overview-display.php:128
137
  msgid "Google"
138
  msgstr ""
139
 
140
- #: includes/functions/functions.php:403
141
  msgid "Yahoo!"
142
  msgstr ""
143
 
144
- #: includes/functions/functions.php:404
145
  msgid "Yandex"
146
  msgstr ""
147
 
148
- #: includes/functions/functions.php:879
149
  msgid "10 Days"
150
  msgstr ""
151
 
152
- #: includes/functions/functions.php:879
153
  msgid "20 Days"
154
  msgstr ""
155
 
156
- #: includes/functions/functions.php:879
157
  msgid "30 Days"
158
  msgstr ""
159
 
160
- #: includes/functions/functions.php:879
161
  msgid "2 Months"
162
  msgstr ""
163
 
164
- #: includes/functions/functions.php:879
165
  msgid "3 Months"
166
  msgstr ""
167
 
168
- #: includes/functions/functions.php:879
169
  msgid "6 Months"
170
  msgstr ""
171
 
172
- #: includes/functions/functions.php:879
173
  msgid "9 Months"
174
  msgstr ""
175
 
176
- #: includes/functions/functions.php:879
177
  msgid "1 Year"
178
  msgstr ""
179
 
180
- #: includes/functions/functions.php:922 includes/functions/functions.php:925
181
  msgid "Range"
182
  msgstr ""
183
 
184
- #: includes/functions/functions.php:929 includes/log/top-visitors.php:29
185
  msgid "MM/DD/YYYY"
186
  msgstr ""
187
 
188
- #: includes/functions/functions.php:929
189
  msgid "to"
190
  msgstr ""
191
 
192
- #: includes/functions/functions.php:929 includes/log/top-visitors.php:29
193
  msgid "Go"
194
  msgstr ""
195
 
196
- #: includes/functions/functions.php:967
197
  msgid "%s table data deleted successfully."
198
  msgstr ""
199
 
200
- #: includes/functions/functions.php:971
201
  msgid "Error, %s not emptied!"
202
  msgstr ""
203
 
@@ -259,8 +258,8 @@ msgid "Click to toggle"
259
  msgstr ""
260
 
261
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
262
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:346
263
- #: wp-statistics.php:422
264
  msgid "Browsers"
265
  msgstr ""
266
 
@@ -324,7 +323,6 @@ msgstr ""
324
 
325
  #: includes/log/exclusions.php:24
326
  #: includes/settings/tabs/wps-notifications.php:76
327
- #: includes/settings/wps-settings.php:111
328
  msgid "GeoIP"
329
  msgstr ""
330
 
@@ -352,6 +350,10 @@ msgstr ""
352
  msgid "404 Pages"
353
  msgstr ""
354
 
 
 
 
 
355
  #: includes/log/exclusions.php:64
356
  msgid "Exclusions Statistics"
357
  msgstr ""
@@ -381,8 +383,8 @@ msgstr ""
381
 
382
  #: includes/log/exclusions.php:197
383
  #: includes/settings/tabs/wps-exclusions.php:46
384
- #: includes/settings/wps-settings.php:110 wp-statistics.php:348
385
- #: wp-statistics.php:424
386
  msgid "Exclusions"
387
  msgstr ""
388
 
@@ -426,28 +428,28 @@ msgstr ""
426
  msgid "Latest Search Word Statistics"
427
  msgstr ""
428
 
429
- #: includes/log/last-search.php:100 includes/log/last-visitor.php:101
430
  #: includes/log/online.php:50 includes/log/widgets/google.map.php:84
431
  #: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
432
- #: includes/log/widgets/words.php:36
433
  msgid "#hash#"
434
  msgstr ""
435
 
436
- #: includes/log/last-search.php:105 includes/log/last-visitor.php:106
437
  #: includes/log/online.php:55 includes/log/top-referring.php:71
438
- #: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:43
439
  #: includes/settings/tabs/wps-overview-display.php:33
440
  #: includes/settings/tabs/wps-overview-display.php:113
441
  msgid "Map"
442
  msgstr ""
443
 
444
- #: includes/log/last-search.php:142 includes/log/last-visitor.php:139
445
  #: includes/log/online.php:109 includes/log/top-pages.php:198
446
  #: includes/log/top-referring.php:125
447
  msgid "Page"
448
  msgstr ""
449
 
450
- #: includes/log/last-search.php:142 includes/log/last-visitor.php:139
451
  #: includes/log/online.php:109 includes/log/top-pages.php:198
452
  #: includes/log/top-referring.php:125
453
  msgid "From"
@@ -685,8 +687,8 @@ msgid "Time: %s"
685
  msgstr ""
686
 
687
  #: includes/log/widgets/top.visitors.php:31
688
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:273
689
- #: wp-statistics.php:349 wp-statistics.php:425
690
  msgid "Hits"
691
  msgstr ""
692
 
@@ -728,7 +730,7 @@ msgstr ""
728
 
729
  #: includes/optimization/tabs/wps-optimization-database.php:25
730
  #: includes/optimization/tabs/wps-optimization-updates.php:21
731
- #: wp-statistics.php:347 wp-statistics.php:423
732
  msgid "Countries"
733
  msgstr ""
734
 
@@ -749,6 +751,7 @@ msgid ""
749
  msgstr ""
750
 
751
  #: includes/optimization/tabs/wps-optimization-database.php:41
 
752
  msgid ""
753
  "This operation could take a long time on installs with many rows in the "
754
  "visitors table."
@@ -763,6 +766,7 @@ msgstr ""
763
 
764
  #: includes/optimization/tabs/wps-optimization-database.php:47
765
  #: includes/optimization/tabs/wps-optimization-database.php:77
 
766
  msgid ""
767
  "Congratulations, your installation is already up to date, nothing to do."
768
  msgstr ""
@@ -793,8 +797,36 @@ msgid ""
793
  "index on the table."
794
  msgstr ""
795
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
796
  #: includes/optimization/tabs/wps-optimization-export.php:8
797
- #: includes/optimization/wps-optimization.php:183
798
  msgid "Export"
799
  msgstr ""
800
 
@@ -849,7 +881,7 @@ msgstr ""
849
  #: includes/optimization/tabs/wps-optimization-historical.php:26
850
  #: includes/settings/tabs/wps-general.php:138
851
  #: includes/settings/tabs/wps-general.php:143 shortcode.php:133
852
- #: wp-statistics.php:356 wp-statistics.php:432
853
  msgid "Visitors"
854
  msgstr ""
855
 
@@ -1195,23 +1227,27 @@ msgstr ""
1195
  msgid "Install routine complete."
1196
  msgstr ""
1197
 
1198
- #: includes/optimization/wps-optimization.php:182
 
 
 
 
1199
  msgid "Resources/Information"
1200
  msgstr ""
1201
 
1202
- #: includes/optimization/wps-optimization.php:184
1203
  msgid "Purging"
1204
  msgstr ""
1205
 
1206
- #: includes/optimization/wps-optimization.php:185
1207
  msgid "Database"
1208
  msgstr ""
1209
 
1210
- #: includes/optimization/wps-optimization.php:186
1211
  msgid "Updates"
1212
  msgstr ""
1213
 
1214
- #: includes/optimization/wps-optimization.php:187
1215
  msgid "Historical"
1216
  msgstr ""
1217
 
@@ -1219,7 +1255,7 @@ msgstr ""
1219
  msgid "WP Statistics V%s"
1220
  msgstr ""
1221
 
1222
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:362
1223
  msgid "Donate"
1224
  msgstr ""
1225
 
@@ -1378,7 +1414,7 @@ msgid "Farsi"
1378
  msgstr ""
1379
 
1380
  #: includes/settings/tabs/wps-access-level.php:23
1381
- #: includes/settings/wps-settings.php:109
1382
  msgid "Access Levels"
1383
  msgstr ""
1384
 
@@ -1419,10 +1455,9 @@ msgid ""
1419
  msgstr ""
1420
 
1421
  #: includes/settings/tabs/wps-access-level.php:85
1422
- #: includes/settings/tabs/wps-browscap.php:81
1423
  #: includes/settings/tabs/wps-exclusions.php:234
 
1424
  #: includes/settings/tabs/wps-general.php:349
1425
- #: includes/settings/tabs/wps-geoip.php:158
1426
  #: includes/settings/tabs/wps-maintenance.php:84
1427
  #: includes/settings/tabs/wps-notifications.php:201
1428
  #: includes/settings/tabs/wps-overview-display.php:388
@@ -1430,78 +1465,6 @@ msgstr ""
1430
  msgid "Update"
1431
  msgstr ""
1432
 
1433
- #: includes/settings/tabs/wps-browscap.php:22
1434
- msgid "browscap settings"
1435
- msgstr ""
1436
-
1437
- #: includes/settings/tabs/wps-browscap.php:27
1438
- msgid "browscap usage"
1439
- msgstr ""
1440
-
1441
- #: includes/settings/tabs/wps-browscap.php:32
1442
- #: includes/settings/tabs/wps-browscap.php:56
1443
- #: includes/settings/tabs/wps-general.php:76
1444
- #: includes/settings/tabs/wps-general.php:92
1445
- #: includes/settings/tabs/wps-general.php:116
1446
- #: includes/settings/tabs/wps-general.php:132
1447
- #: includes/settings/tabs/wps-general.php:148
1448
- #: includes/settings/tabs/wps-general.php:160
1449
- #: includes/settings/tabs/wps-general.php:187
1450
- #: includes/settings/tabs/wps-general.php:199
1451
- #: includes/settings/tabs/wps-general.php:214
1452
- #: includes/settings/tabs/wps-general.php:228
1453
- #: includes/settings/tabs/wps-general.php:258
1454
- #: includes/settings/tabs/wps-general.php:270
1455
- #: includes/settings/tabs/wps-general.php:286
1456
- #: includes/settings/tabs/wps-general.php:325
1457
- #: includes/settings/tabs/wps-general.php:341
1458
- #: includes/settings/tabs/wps-geoip.php:47
1459
- #: includes/settings/tabs/wps-geoip.php:71
1460
- #: includes/settings/tabs/wps-geoip.php:104
1461
- #: includes/settings/tabs/wps-maintenance.php:40
1462
- #: includes/settings/tabs/wps-maintenance.php:64
1463
- #: includes/settings/tabs/wps-notifications.php:69
1464
- #: includes/settings/tabs/wps-notifications.php:81
1465
- #: includes/settings/tabs/wps-notifications.php:93
1466
- #: includes/settings/tabs/wps-notifications.php:105
1467
- #: includes/settings/tabs/wps-notifications.php:121
1468
- #: includes/settings/tabs/wps-overview-display.php:87
1469
- #: includes/settings/tabs/wps-overview-display.php:107
1470
- #: includes/settings/tabs/wps-overview-display.php:147
1471
- #: includes/settings/tabs/wps-overview-display.php:159
1472
- msgid "Active"
1473
- msgstr ""
1474
-
1475
- #: includes/settings/tabs/wps-browscap.php:33
1476
- msgid "The browscap database will be downloaded and used to detect robots."
1477
- msgstr ""
1478
-
1479
- #: includes/settings/tabs/wps-browscap.php:39
1480
- msgid "Update browscap Info"
1481
- msgstr ""
1482
-
1483
- #: includes/settings/tabs/wps-browscap.php:44
1484
- msgid "Download browscap Database"
1485
- msgstr ""
1486
-
1487
- #: includes/settings/tabs/wps-browscap.php:45
1488
- #: includes/settings/tabs/wps-geoip.php:60
1489
- msgid "Save changes on this page to download the update."
1490
- msgstr ""
1491
-
1492
- #: includes/settings/tabs/wps-browscap.php:51
1493
- msgid "Schedule weekly update of browscap DB"
1494
- msgstr ""
1495
-
1496
- #: includes/settings/tabs/wps-browscap.php:59
1497
- #: includes/settings/tabs/wps-geoip.php:74
1498
- msgid "Next update will be"
1499
- msgstr ""
1500
-
1501
- #: includes/settings/tabs/wps-browscap.php:74
1502
- msgid "Download of the browscap database will be scheduled for once a week."
1503
- msgstr ""
1504
-
1505
  #: includes/settings/tabs/wps-exclusions.php:21
1506
  msgid "WP Statistics Honey Pot Page"
1507
  msgstr ""
@@ -1740,6 +1703,211 @@ msgid ""
1740
  "only to the script name. Entries less than two characters will be ignored."
1741
  msgstr ""
1742
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1743
  #: includes/settings/tabs/wps-general.php:50
1744
  msgid "This will delete the manual when you save the settings, are you sure?"
1745
  msgstr ""
@@ -1810,8 +1978,8 @@ msgid "For each visit to account for several hits. Currently %s."
1810
  msgstr ""
1811
 
1812
  #: includes/settings/tabs/wps-general.php:177
1813
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:351
1814
- #: wp-statistics.php:427
1815
  msgid "Pages"
1816
  msgstr ""
1817
 
@@ -1930,99 +2098,6 @@ msgid ""
1930
  "Statistics (requires two page loads)"
1931
  msgstr ""
1932
 
1933
- #: includes/settings/tabs/wps-geoip.php:27
1934
- msgid "GeoIP settings"
1935
- msgstr ""
1936
-
1937
- #: includes/settings/tabs/wps-geoip.php:32
1938
- msgid ""
1939
- "IP location services provided by GeoLite2 data created by MaxMind, available "
1940
- "from %s."
1941
- msgstr ""
1942
-
1943
- #: includes/settings/tabs/wps-geoip.php:42
1944
- msgid "GeoIP collection"
1945
- msgstr ""
1946
-
1947
- #: includes/settings/tabs/wps-geoip.php:48
1948
- msgid ""
1949
- "For get more information and location (country) from visitor, enable this "
1950
- "feature."
1951
- msgstr ""
1952
-
1953
- #: includes/settings/tabs/wps-geoip.php:54
1954
- msgid "Update GeoIP Info"
1955
- msgstr ""
1956
-
1957
- #: includes/settings/tabs/wps-geoip.php:59
1958
- msgid "Download GeoIP Database"
1959
- msgstr ""
1960
-
1961
- #: includes/settings/tabs/wps-geoip.php:66
1962
- msgid "Schedule monthly update of GeoIP DB"
1963
- msgstr ""
1964
-
1965
- #: includes/settings/tabs/wps-geoip.php:92
1966
- msgid ""
1967
- "Download of the GeoIP database will be scheduled for 2 days after the first "
1968
- "Tuesday of the month."
1969
- msgstr ""
1970
-
1971
- #: includes/settings/tabs/wps-geoip.php:93
1972
- msgid ""
1973
- "This option will also download the database if the local filesize is less "
1974
- "than 1k (which usually means the stub that comes with the plugin is still in "
1975
- "place)."
1976
- msgstr ""
1977
-
1978
- #: includes/settings/tabs/wps-geoip.php:99
1979
- msgid "Populate missing GeoIP after update of GeoIP DB"
1980
- msgstr ""
1981
-
1982
- #: includes/settings/tabs/wps-geoip.php:105
1983
- msgid "Update any missing GeoIP data after downloading a new database."
1984
- msgstr ""
1985
-
1986
- #: includes/settings/tabs/wps-geoip.php:111
1987
- msgid "Country code for private IP addresses"
1988
- msgstr ""
1989
-
1990
- #: includes/settings/tabs/wps-geoip.php:116
1991
- msgid ""
1992
- "The international standard two letter country code (ie. US = United States, "
1993
- "CA = Canada, etc.) for private (non-routable) IP addresses (ie. 10.0.0.1, "
1994
- "192.158.1.1, 127.0.0.1, etc.). Use \"000\" (three zeros) to use \"Unknown\" "
1995
- "as the country code."
1996
- msgstr ""
1997
-
1998
- #: includes/settings/tabs/wps-geoip.php:127
1999
- msgid "GeoIP collection is disabled due to the following reasons:"
2000
- msgstr ""
2001
-
2002
- #: includes/settings/tabs/wps-geoip.php:130
2003
- msgid ""
2004
- "GeoIP collection requires PHP %s or above, it is currently disabled due to "
2005
- "the installed PHP version being "
2006
- msgstr ""
2007
-
2008
- #: includes/settings/tabs/wps-geoip.php:135
2009
- msgid ""
2010
- "GeoIP collection requires the cURL PHP extension and it is not loaded on "
2011
- "your version of PHP!"
2012
- msgstr ""
2013
-
2014
- #: includes/settings/tabs/wps-geoip.php:141
2015
- msgid ""
2016
- "GeoIP collection requires the BC Math PHP extension and it is not loaded on "
2017
- "your version of PHP!"
2018
- msgstr ""
2019
-
2020
- #: includes/settings/tabs/wps-geoip.php:147
2021
- msgid ""
2022
- "PHP safe mode detected! GeoIP collection is not supported with PHP's safe "
2023
- "mode enabled!"
2024
- msgstr ""
2025
-
2026
  #: includes/settings/tabs/wps-maintenance.php:20
2027
  msgid ""
2028
  "This will permanently delete data from the database each day, are you sure "
@@ -2116,7 +2191,7 @@ msgid "Send a report whenever the plugin is upgraded."
2116
  msgstr ""
2117
 
2118
  #: includes/settings/tabs/wps-notifications.php:111
2119
- #: includes/settings/tabs/wps-notifications.php:116 schedule.php:199
2120
  msgid "Statistical reporting"
2121
  msgstr ""
2122
 
@@ -2168,7 +2243,7 @@ msgid ""
2168
  msgstr ""
2169
 
2170
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
2171
- #: widget.php:245 wp-statistics.php:532
2172
  msgid "User Online"
2173
  msgstr ""
2174
 
@@ -2211,7 +2286,7 @@ msgid "Summary Statistics"
2211
  msgstr ""
2212
 
2213
  #: includes/settings/tabs/wps-overview-display.php:28
2214
- #: includes/settings/wps-settings.php:115
2215
  msgid "About"
2216
  msgstr ""
2217
 
@@ -2381,27 +2456,27 @@ msgstr ""
2381
  msgid "Remove data and settings, this action cannot be undone."
2382
  msgstr ""
2383
 
2384
- #: includes/settings/wps-settings.php:106
2385
  msgid "General"
2386
  msgstr ""
2387
 
2388
- #: includes/settings/wps-settings.php:107
2389
  msgid "Notifications"
2390
  msgstr ""
2391
 
2392
- #: includes/settings/wps-settings.php:108
2393
  msgid "Dashboard/Overview"
2394
  msgstr ""
2395
 
2396
- #: includes/settings/wps-settings.php:112
2397
- msgid "browscap"
2398
  msgstr ""
2399
 
2400
- #: includes/settings/wps-settings.php:113
2401
  msgid "Maintenance"
2402
  msgstr ""
2403
 
2404
- #: includes/settings/wps-settings.php:114
2405
  msgid "Removal"
2406
  msgstr ""
2407
 
@@ -2429,7 +2504,7 @@ msgstr ""
2429
  msgid "Page Visits"
2430
  msgstr ""
2431
 
2432
- #: shortcode.php:135 wp-statistics.php:353 wp-statistics.php:429
2433
  msgid "Searches"
2434
  msgstr ""
2435
 
@@ -2503,7 +2578,7 @@ msgstr ""
2503
  msgid "International"
2504
  msgstr ""
2505
 
2506
- #: widget.php:14 wp-statistics.php:342 wp-statistics.php:380
2507
  msgid "Statistics"
2508
  msgstr ""
2509
 
@@ -2571,7 +2646,7 @@ msgstr ""
2571
  msgid "Items"
2572
  msgstr ""
2573
 
2574
- #: widget.php:254 wp-statistics.php:557
2575
  msgid "Yesterday visit"
2576
  msgstr ""
2577
 
@@ -2583,11 +2658,13 @@ msgstr ""
2583
  msgid "Select type of search engine"
2584
  msgstr ""
2585
 
 
2586
  #. Plugin Name of the plugin/theme
2587
  #: wp-statistics.php:37
2588
  msgid "WP Statistics"
2589
  msgstr ""
2590
 
 
2591
  #. Description of the plugin/theme
2592
  #: wp-statistics.php:38
2593
  msgid "Complete statistics for your WordPress site."
@@ -2641,99 +2718,99 @@ msgstr ""
2641
  msgid "Setting page > GeoIP"
2642
  msgstr ""
2643
 
2644
- #: wp-statistics.php:237
2645
  msgid "WP Statistics %s installed on"
2646
  msgstr ""
2647
 
2648
- #: wp-statistics.php:249 wp-statistics.php:361 wp-statistics.php:434
2649
  msgid "Settings"
2650
  msgstr ""
2651
 
2652
- #: wp-statistics.php:261
2653
  msgid "Click here to visit the plugin on WordPress.org"
2654
  msgstr ""
2655
 
2656
- #: wp-statistics.php:261
2657
  msgid "Visit WordPress.org page"
2658
  msgstr ""
2659
 
2660
- #: wp-statistics.php:264
2661
  msgid "Click here to rate and review this plugin on WordPress.org"
2662
  msgstr ""
2663
 
2664
- #: wp-statistics.php:264
2665
  msgid "Rate this plugin"
2666
  msgstr ""
2667
 
2668
- #: wp-statistics.php:308
2669
  msgid "WP Statistics - Hits"
2670
  msgstr ""
2671
 
2672
- #: wp-statistics.php:345 wp-statistics.php:383 wp-statistics.php:421
2673
  msgid "Overview"
2674
  msgstr ""
2675
 
2676
- #: wp-statistics.php:350 wp-statistics.php:426
2677
  msgid "Online"
2678
  msgstr ""
2679
 
2680
- #: wp-statistics.php:352 wp-statistics.php:428
2681
  msgid "Referrers"
2682
  msgstr ""
2683
 
2684
- #: wp-statistics.php:354 wp-statistics.php:430
2685
  msgid "Search Words"
2686
  msgstr ""
2687
 
2688
- #: wp-statistics.php:355 wp-statistics.php:431
2689
  msgid "Top Visitors Today"
2690
  msgstr ""
2691
 
2692
- #: wp-statistics.php:360 wp-statistics.php:433
2693
  msgid "Optimization"
2694
  msgstr ""
2695
 
2696
- #: wp-statistics.php:366 wp-statistics.php:397
2697
  msgid "Manual"
2698
  msgstr ""
2699
 
2700
- #: wp-statistics.php:412
2701
  msgid "Site"
2702
  msgstr ""
2703
 
2704
- #: wp-statistics.php:413
2705
  msgid "Options"
2706
  msgstr ""
2707
 
2708
- #: wp-statistics.php:539
2709
  msgid "Today visitor"
2710
  msgstr ""
2711
 
2712
- #: wp-statistics.php:545
2713
  msgid "Today visit"
2714
  msgstr ""
2715
 
2716
- #: wp-statistics.php:551
2717
  msgid "Yesterday visitor"
2718
  msgstr ""
2719
 
2720
- #: wp-statistics.php:563
2721
  msgid "View Stats"
2722
  msgstr ""
2723
 
2724
- #: wp-statistics.php:587
2725
  msgid "Download ODF file"
2726
  msgstr ""
2727
 
2728
- #: wp-statistics.php:588
2729
  msgid "Download HTML file"
2730
  msgstr ""
2731
 
2732
- #: wp-statistics.php:592
2733
  msgid "Manual file not found."
2734
  msgstr ""
2735
 
2736
- #: wp-statistics.php:659 wp-statistics.php:770 wp-statistics.php:804
2737
  msgid "You do not have sufficient permissions to access this page."
2738
  msgstr ""
2739
 
@@ -2797,7 +2874,9 @@ msgstr ""
2797
  msgid "Browscap.ini update on"
2798
  msgstr ""
2799
 
 
2800
  #. Plugin URI of the plugin/theme
 
2801
  #. Author URI of the plugin/theme
2802
  msgid "http://wp-statistics.com/"
2803
  msgstr ""
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: WP Statistics 9.4.1\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-statistics\n"
7
+ "POT-Creation-Date: 2015-07-23 16:03:06+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
+ "PO-Revision-Date: 2015-MO-DA HO:MI+ZONE\n"
12
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
+ "Language-Team: LANGUAGE <LL@li.org>\n"
 
14
 
15
  #: ajax.php:31
16
  msgid "%s agent data deleted successfully."
115
  msgid "Hits in the last 20 days"
116
  msgstr ""
117
 
118
+ #: includes/functions/functions.php:400
119
  msgid "Baidu"
120
  msgstr ""
121
 
122
+ #: includes/functions/functions.php:401
123
  msgid "Bing"
124
  msgstr ""
125
 
126
+ #: includes/functions/functions.php:402
127
  msgid "clearch.org"
128
  msgstr ""
129
 
130
+ #: includes/functions/functions.php:403
131
  msgid "DuckDuckGo"
132
  msgstr ""
133
 
134
+ #: includes/functions/functions.php:404
135
  #: includes/settings/tabs/wps-overview-display.php:128
136
  msgid "Google"
137
  msgstr ""
138
 
139
+ #: includes/functions/functions.php:405
140
  msgid "Yahoo!"
141
  msgstr ""
142
 
143
+ #: includes/functions/functions.php:406
144
  msgid "Yandex"
145
  msgstr ""
146
 
147
+ #: includes/functions/functions.php:931
148
  msgid "10 Days"
149
  msgstr ""
150
 
151
+ #: includes/functions/functions.php:931
152
  msgid "20 Days"
153
  msgstr ""
154
 
155
+ #: includes/functions/functions.php:931
156
  msgid "30 Days"
157
  msgstr ""
158
 
159
+ #: includes/functions/functions.php:931
160
  msgid "2 Months"
161
  msgstr ""
162
 
163
+ #: includes/functions/functions.php:931
164
  msgid "3 Months"
165
  msgstr ""
166
 
167
+ #: includes/functions/functions.php:931
168
  msgid "6 Months"
169
  msgstr ""
170
 
171
+ #: includes/functions/functions.php:931
172
  msgid "9 Months"
173
  msgstr ""
174
 
175
+ #: includes/functions/functions.php:931
176
  msgid "1 Year"
177
  msgstr ""
178
 
179
+ #: includes/functions/functions.php:974 includes/functions/functions.php:977
180
  msgid "Range"
181
  msgstr ""
182
 
183
+ #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
184
  msgid "MM/DD/YYYY"
185
  msgstr ""
186
 
187
+ #: includes/functions/functions.php:981
188
  msgid "to"
189
  msgstr ""
190
 
191
+ #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
192
  msgid "Go"
193
  msgstr ""
194
 
195
+ #: includes/functions/functions.php:1019
196
  msgid "%s table data deleted successfully."
197
  msgstr ""
198
 
199
+ #: includes/functions/functions.php:1023
200
  msgid "Error, %s not emptied!"
201
  msgstr ""
202
 
258
  msgstr ""
259
 
260
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
261
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
262
+ #: wp-statistics.php:426
263
  msgid "Browsers"
264
  msgstr ""
265
 
323
 
324
  #: includes/log/exclusions.php:24
325
  #: includes/settings/tabs/wps-notifications.php:76
 
326
  msgid "GeoIP"
327
  msgstr ""
328
 
350
  msgid "404 Pages"
351
  msgstr ""
352
 
353
+ #: includes/log/exclusions.php:24
354
+ msgid "Referrer Spam"
355
+ msgstr ""
356
+
357
  #: includes/log/exclusions.php:64
358
  msgid "Exclusions Statistics"
359
  msgstr ""
383
 
384
  #: includes/log/exclusions.php:197
385
  #: includes/settings/tabs/wps-exclusions.php:46
386
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:352
387
+ #: wp-statistics.php:428
388
  msgid "Exclusions"
389
  msgstr ""
390
 
428
  msgid "Latest Search Word Statistics"
429
  msgstr ""
430
 
431
+ #: includes/log/last-search.php:110 includes/log/last-visitor.php:101
432
  #: includes/log/online.php:50 includes/log/widgets/google.map.php:84
433
  #: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
434
+ #: includes/log/widgets/words.php:46
435
  msgid "#hash#"
436
  msgstr ""
437
 
438
+ #: includes/log/last-search.php:115 includes/log/last-visitor.php:106
439
  #: includes/log/online.php:55 includes/log/top-referring.php:71
440
+ #: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
441
  #: includes/settings/tabs/wps-overview-display.php:33
442
  #: includes/settings/tabs/wps-overview-display.php:113
443
  msgid "Map"
444
  msgstr ""
445
 
446
+ #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
447
  #: includes/log/online.php:109 includes/log/top-pages.php:198
448
  #: includes/log/top-referring.php:125
449
  msgid "Page"
450
  msgstr ""
451
 
452
+ #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
453
  #: includes/log/online.php:109 includes/log/top-pages.php:198
454
  #: includes/log/top-referring.php:125
455
  msgid "From"
687
  msgstr ""
688
 
689
  #: includes/log/widgets/top.visitors.php:31
690
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
691
+ #: wp-statistics.php:353 wp-statistics.php:429
692
  msgid "Hits"
693
  msgstr ""
694
 
730
 
731
  #: includes/optimization/tabs/wps-optimization-database.php:25
732
  #: includes/optimization/tabs/wps-optimization-updates.php:21
733
+ #: wp-statistics.php:351 wp-statistics.php:427
734
  msgid "Countries"
735
  msgstr ""
736
 
751
  msgstr ""
752
 
753
  #: includes/optimization/tabs/wps-optimization-database.php:41
754
+ #: includes/optimization/tabs/wps-optimization-database.php:102
755
  msgid ""
756
  "This operation could take a long time on installs with many rows in the "
757
  "visitors table."
766
 
767
  #: includes/optimization/tabs/wps-optimization-database.php:47
768
  #: includes/optimization/tabs/wps-optimization-database.php:77
769
+ #: includes/optimization/tabs/wps-optimization-database.php:108
770
  msgid ""
771
  "Congratulations, your installation is already up to date, nothing to do."
772
  msgstr ""
797
  "index on the table."
798
  msgstr ""
799
 
800
+ #: includes/optimization/tabs/wps-optimization-database.php:86
801
+ msgid "Search Table"
802
+ msgstr ""
803
+
804
+ #: includes/optimization/tabs/wps-optimization-database.php:91
805
+ msgid "Convert"
806
+ msgstr ""
807
+
808
+ #: includes/optimization/tabs/wps-optimization-database.php:100
809
+ msgid "Convert Now!"
810
+ msgstr ""
811
+
812
+ #: includes/optimization/tabs/wps-optimization-database.php:101
813
+ msgid ""
814
+ "Older installs of WP Statistics store details of searches in the visitors "
815
+ "table which can become a performance issue on large datasets. A new table "
816
+ "has been created to hold this information in a more scalable fashion, "
817
+ "however the old data must first be converted to the new format before it can "
818
+ "be used."
819
+ msgstr ""
820
+
821
+ #: includes/optimization/tabs/wps-optimization-database.php:107
822
+ msgid ""
823
+ "Older installs of WP Statistics store details of searches in the visitors "
824
+ "table which can become a performance issue on large datasets. A new table "
825
+ "has been created to hold this information in a more scalable fashion."
826
+ msgstr ""
827
+
828
  #: includes/optimization/tabs/wps-optimization-export.php:8
829
+ #: includes/optimization/wps-optimization.php:212
830
  msgid "Export"
831
  msgstr ""
832
 
881
  #: includes/optimization/tabs/wps-optimization-historical.php:26
882
  #: includes/settings/tabs/wps-general.php:138
883
  #: includes/settings/tabs/wps-general.php:143 shortcode.php:133
884
+ #: wp-statistics.php:360 wp-statistics.php:436
885
  msgid "Visitors"
886
  msgstr ""
887
 
1227
  msgid "Install routine complete."
1228
  msgstr ""
1229
 
1230
+ #: includes/optimization/wps-optimization.php:173
1231
+ msgid "Search table conversion complete, %d rows added."
1232
+ msgstr ""
1233
+
1234
+ #: includes/optimization/wps-optimization.php:211
1235
  msgid "Resources/Information"
1236
  msgstr ""
1237
 
1238
+ #: includes/optimization/wps-optimization.php:213
1239
  msgid "Purging"
1240
  msgstr ""
1241
 
1242
+ #: includes/optimization/wps-optimization.php:214
1243
  msgid "Database"
1244
  msgstr ""
1245
 
1246
+ #: includes/optimization/wps-optimization.php:215
1247
  msgid "Updates"
1248
  msgstr ""
1249
 
1250
+ #: includes/optimization/wps-optimization.php:216
1251
  msgid "Historical"
1252
  msgstr ""
1253
 
1255
  msgid "WP Statistics V%s"
1256
  msgstr ""
1257
 
1258
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
1259
  msgid "Donate"
1260
  msgstr ""
1261
 
1414
  msgstr ""
1415
 
1416
  #: includes/settings/tabs/wps-access-level.php:23
1417
+ #: includes/settings/wps-settings.php:103
1418
  msgid "Access Levels"
1419
  msgstr ""
1420
 
1455
  msgstr ""
1456
 
1457
  #: includes/settings/tabs/wps-access-level.php:85
 
1458
  #: includes/settings/tabs/wps-exclusions.php:234
1459
+ #: includes/settings/tabs/wps-externals.php:284
1460
  #: includes/settings/tabs/wps-general.php:349
 
1461
  #: includes/settings/tabs/wps-maintenance.php:84
1462
  #: includes/settings/tabs/wps-notifications.php:201
1463
  #: includes/settings/tabs/wps-overview-display.php:388
1465
  msgid "Update"
1466
  msgstr ""
1467
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1468
  #: includes/settings/tabs/wps-exclusions.php:21
1469
  msgid "WP Statistics Honey Pot Page"
1470
  msgstr ""
1703
  "only to the script name. Entries less than two characters will be ignored."
1704
  msgstr ""
1705
 
1706
+ #: includes/settings/tabs/wps-externals.php:32
1707
+ msgid "GeoIP settings"
1708
+ msgstr ""
1709
+
1710
+ #: includes/settings/tabs/wps-externals.php:37
1711
+ msgid ""
1712
+ "IP location services provided by GeoLite2 data created by MaxMind, available "
1713
+ "from %s."
1714
+ msgstr ""
1715
+
1716
+ #: includes/settings/tabs/wps-externals.php:47
1717
+ msgid "GeoIP collection"
1718
+ msgstr ""
1719
+
1720
+ #: includes/settings/tabs/wps-externals.php:52
1721
+ #: includes/settings/tabs/wps-externals.php:76
1722
+ #: includes/settings/tabs/wps-externals.php:109
1723
+ #: includes/settings/tabs/wps-externals.php:172
1724
+ #: includes/settings/tabs/wps-externals.php:196
1725
+ #: includes/settings/tabs/wps-externals.php:235
1726
+ #: includes/settings/tabs/wps-externals.php:259
1727
+ #: includes/settings/tabs/wps-general.php:76
1728
+ #: includes/settings/tabs/wps-general.php:92
1729
+ #: includes/settings/tabs/wps-general.php:116
1730
+ #: includes/settings/tabs/wps-general.php:132
1731
+ #: includes/settings/tabs/wps-general.php:148
1732
+ #: includes/settings/tabs/wps-general.php:160
1733
+ #: includes/settings/tabs/wps-general.php:187
1734
+ #: includes/settings/tabs/wps-general.php:199
1735
+ #: includes/settings/tabs/wps-general.php:214
1736
+ #: includes/settings/tabs/wps-general.php:228
1737
+ #: includes/settings/tabs/wps-general.php:258
1738
+ #: includes/settings/tabs/wps-general.php:270
1739
+ #: includes/settings/tabs/wps-general.php:286
1740
+ #: includes/settings/tabs/wps-general.php:325
1741
+ #: includes/settings/tabs/wps-general.php:341
1742
+ #: includes/settings/tabs/wps-maintenance.php:40
1743
+ #: includes/settings/tabs/wps-maintenance.php:64
1744
+ #: includes/settings/tabs/wps-notifications.php:69
1745
+ #: includes/settings/tabs/wps-notifications.php:81
1746
+ #: includes/settings/tabs/wps-notifications.php:93
1747
+ #: includes/settings/tabs/wps-notifications.php:105
1748
+ #: includes/settings/tabs/wps-notifications.php:121
1749
+ #: includes/settings/tabs/wps-overview-display.php:87
1750
+ #: includes/settings/tabs/wps-overview-display.php:107
1751
+ #: includes/settings/tabs/wps-overview-display.php:147
1752
+ #: includes/settings/tabs/wps-overview-display.php:159
1753
+ msgid "Active"
1754
+ msgstr ""
1755
+
1756
+ #: includes/settings/tabs/wps-externals.php:53
1757
+ msgid ""
1758
+ "For get more information and location (country) from visitor, enable this "
1759
+ "feature."
1760
+ msgstr ""
1761
+
1762
+ #: includes/settings/tabs/wps-externals.php:59
1763
+ msgid "Update GeoIP Info"
1764
+ msgstr ""
1765
+
1766
+ #: includes/settings/tabs/wps-externals.php:64
1767
+ msgid "Download GeoIP Database"
1768
+ msgstr ""
1769
+
1770
+ #: includes/settings/tabs/wps-externals.php:65
1771
+ #: includes/settings/tabs/wps-externals.php:185
1772
+ #: includes/settings/tabs/wps-externals.php:248
1773
+ msgid "Save changes on this page to download the update."
1774
+ msgstr ""
1775
+
1776
+ #: includes/settings/tabs/wps-externals.php:71
1777
+ msgid "Schedule monthly update of GeoIP DB"
1778
+ msgstr ""
1779
+
1780
+ #: includes/settings/tabs/wps-externals.php:79
1781
+ #: includes/settings/tabs/wps-externals.php:199
1782
+ #: includes/settings/tabs/wps-externals.php:262
1783
+ msgid "Next update will be"
1784
+ msgstr ""
1785
+
1786
+ #: includes/settings/tabs/wps-externals.php:97
1787
+ msgid ""
1788
+ "Download of the GeoIP database will be scheduled for 2 days after the first "
1789
+ "Tuesday of the month."
1790
+ msgstr ""
1791
+
1792
+ #: includes/settings/tabs/wps-externals.php:98
1793
+ msgid ""
1794
+ "This option will also download the database if the local filesize is less "
1795
+ "than 1k (which usually means the stub that comes with the plugin is still in "
1796
+ "place)."
1797
+ msgstr ""
1798
+
1799
+ #: includes/settings/tabs/wps-externals.php:104
1800
+ msgid "Populate missing GeoIP after update of GeoIP DB"
1801
+ msgstr ""
1802
+
1803
+ #: includes/settings/tabs/wps-externals.php:110
1804
+ msgid "Update any missing GeoIP data after downloading a new database."
1805
+ msgstr ""
1806
+
1807
+ #: includes/settings/tabs/wps-externals.php:116
1808
+ msgid "Country code for private IP addresses"
1809
+ msgstr ""
1810
+
1811
+ #: includes/settings/tabs/wps-externals.php:121
1812
+ msgid ""
1813
+ "The international standard two letter country code (ie. US = United States, "
1814
+ "CA = Canada, etc.) for private (non-routable) IP addresses (ie. 10.0.0.1, "
1815
+ "192.158.1.1, 127.0.0.1, etc.). Use \"000\" (three zeros) to use \"Unknown\" "
1816
+ "as the country code."
1817
+ msgstr ""
1818
+
1819
+ #: includes/settings/tabs/wps-externals.php:132
1820
+ msgid "GeoIP collection is disabled due to the following reasons:"
1821
+ msgstr ""
1822
+
1823
+ #: includes/settings/tabs/wps-externals.php:135
1824
+ msgid ""
1825
+ "GeoIP collection requires PHP %s or above, it is currently disabled due to "
1826
+ "the installed PHP version being "
1827
+ msgstr ""
1828
+
1829
+ #: includes/settings/tabs/wps-externals.php:140
1830
+ msgid ""
1831
+ "GeoIP collection requires the cURL PHP extension and it is not loaded on "
1832
+ "your version of PHP!"
1833
+ msgstr ""
1834
+
1835
+ #: includes/settings/tabs/wps-externals.php:146
1836
+ msgid ""
1837
+ "GeoIP collection requires the BC Math PHP extension and it is not loaded on "
1838
+ "your version of PHP!"
1839
+ msgstr ""
1840
+
1841
+ #: includes/settings/tabs/wps-externals.php:152
1842
+ msgid ""
1843
+ "PHP safe mode detected! GeoIP collection is not supported with PHP's safe "
1844
+ "mode enabled!"
1845
+ msgstr ""
1846
+
1847
+ #: includes/settings/tabs/wps-externals.php:162
1848
+ msgid "browscap settings"
1849
+ msgstr ""
1850
+
1851
+ #: includes/settings/tabs/wps-externals.php:167
1852
+ msgid "browscap usage"
1853
+ msgstr ""
1854
+
1855
+ #: includes/settings/tabs/wps-externals.php:173
1856
+ msgid "The browscap database will be downloaded and used to detect robots."
1857
+ msgstr ""
1858
+
1859
+ #: includes/settings/tabs/wps-externals.php:179
1860
+ msgid "Update browscap Info"
1861
+ msgstr ""
1862
+
1863
+ #: includes/settings/tabs/wps-externals.php:184
1864
+ msgid "Download browscap Database"
1865
+ msgstr ""
1866
+
1867
+ #: includes/settings/tabs/wps-externals.php:191
1868
+ msgid "Schedule weekly update of browscap DB"
1869
+ msgstr ""
1870
+
1871
+ #: includes/settings/tabs/wps-externals.php:214
1872
+ msgid "Download of the browscap database will be scheduled for once a week."
1873
+ msgstr ""
1874
+
1875
+ #: includes/settings/tabs/wps-externals.php:219
1876
+ msgid "Piwik Referrer Spam Blacklist settings"
1877
+ msgstr ""
1878
+
1879
+ #: includes/settings/tabs/wps-externals.php:224
1880
+ msgid "Referrer spam blacklist is provided by Piwik, available from %s."
1881
+ msgstr ""
1882
+
1883
+ #: includes/settings/tabs/wps-externals.php:230
1884
+ msgid "Piwik Referrer Spam Blacklist usage"
1885
+ msgstr ""
1886
+
1887
+ #: includes/settings/tabs/wps-externals.php:236
1888
+ msgid ""
1889
+ "The Piwik Referrer Spam Blacklist database will be downloaded and used to "
1890
+ "detect referrer spam."
1891
+ msgstr ""
1892
+
1893
+ #: includes/settings/tabs/wps-externals.php:242
1894
+ msgid "Update Piwik Referrer Spam Blacklist Info"
1895
+ msgstr ""
1896
+
1897
+ #: includes/settings/tabs/wps-externals.php:247
1898
+ msgid "Download Piwik Referrer Spam Blacklist Database"
1899
+ msgstr ""
1900
+
1901
+ #: includes/settings/tabs/wps-externals.php:254
1902
+ msgid "Schedule weekly update of Piwik Referrer Spam Blacklist DB"
1903
+ msgstr ""
1904
+
1905
+ #: includes/settings/tabs/wps-externals.php:277
1906
+ msgid ""
1907
+ "Download of the Piwik Referrer Spam Blacklist database will be scheduled for "
1908
+ "once a week."
1909
+ msgstr ""
1910
+
1911
  #: includes/settings/tabs/wps-general.php:50
1912
  msgid "This will delete the manual when you save the settings, are you sure?"
1913
  msgstr ""
1978
  msgstr ""
1979
 
1980
  #: includes/settings/tabs/wps-general.php:177
1981
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
1982
+ #: wp-statistics.php:431
1983
  msgid "Pages"
1984
  msgstr ""
1985
 
2098
  "Statistics (requires two page loads)"
2099
  msgstr ""
2100
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2101
  #: includes/settings/tabs/wps-maintenance.php:20
2102
  msgid ""
2103
  "This will permanently delete data from the database each day, are you sure "
2191
  msgstr ""
2192
 
2193
  #: includes/settings/tabs/wps-notifications.php:111
2194
+ #: includes/settings/tabs/wps-notifications.php:116 schedule.php:221
2195
  msgid "Statistical reporting"
2196
  msgstr ""
2197
 
2243
  msgstr ""
2244
 
2245
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
2246
+ #: widget.php:245 wp-statistics.php:536
2247
  msgid "User Online"
2248
  msgstr ""
2249
 
2286
  msgstr ""
2287
 
2288
  #: includes/settings/tabs/wps-overview-display.php:28
2289
+ #: includes/settings/wps-settings.php:108
2290
  msgid "About"
2291
  msgstr ""
2292
 
2456
  msgid "Remove data and settings, this action cannot be undone."
2457
  msgstr ""
2458
 
2459
+ #: includes/settings/wps-settings.php:100
2460
  msgid "General"
2461
  msgstr ""
2462
 
2463
+ #: includes/settings/wps-settings.php:101
2464
  msgid "Notifications"
2465
  msgstr ""
2466
 
2467
+ #: includes/settings/wps-settings.php:102
2468
  msgid "Dashboard/Overview"
2469
  msgstr ""
2470
 
2471
+ #: includes/settings/wps-settings.php:105
2472
+ msgid "Externals"
2473
  msgstr ""
2474
 
2475
+ #: includes/settings/wps-settings.php:106
2476
  msgid "Maintenance"
2477
  msgstr ""
2478
 
2479
+ #: includes/settings/wps-settings.php:107
2480
  msgid "Removal"
2481
  msgstr ""
2482
 
2504
  msgid "Page Visits"
2505
  msgstr ""
2506
 
2507
+ #: shortcode.php:135 wp-statistics.php:357 wp-statistics.php:433
2508
  msgid "Searches"
2509
  msgstr ""
2510
 
2578
  msgid "International"
2579
  msgstr ""
2580
 
2581
+ #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
2582
  msgid "Statistics"
2583
  msgstr ""
2584
 
2646
  msgid "Items"
2647
  msgstr ""
2648
 
2649
+ #: widget.php:254 wp-statistics.php:561
2650
  msgid "Yesterday visit"
2651
  msgstr ""
2652
 
2658
  msgid "Select type of search engine"
2659
  msgstr ""
2660
 
2661
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
2662
  #. Plugin Name of the plugin/theme
2663
  #: wp-statistics.php:37
2664
  msgid "WP Statistics"
2665
  msgstr ""
2666
 
2667
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
2668
  #. Description of the plugin/theme
2669
  #: wp-statistics.php:38
2670
  msgid "Complete statistics for your WordPress site."
2718
  msgid "Setting page > GeoIP"
2719
  msgstr ""
2720
 
2721
+ #: wp-statistics.php:241
2722
  msgid "WP Statistics %s installed on"
2723
  msgstr ""
2724
 
2725
+ #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
2726
  msgid "Settings"
2727
  msgstr ""
2728
 
2729
+ #: wp-statistics.php:265
2730
  msgid "Click here to visit the plugin on WordPress.org"
2731
  msgstr ""
2732
 
2733
+ #: wp-statistics.php:265
2734
  msgid "Visit WordPress.org page"
2735
  msgstr ""
2736
 
2737
+ #: wp-statistics.php:268
2738
  msgid "Click here to rate and review this plugin on WordPress.org"
2739
  msgstr ""
2740
 
2741
+ #: wp-statistics.php:268
2742
  msgid "Rate this plugin"
2743
  msgstr ""
2744
 
2745
+ #: wp-statistics.php:312
2746
  msgid "WP Statistics - Hits"
2747
  msgstr ""
2748
 
2749
+ #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
2750
  msgid "Overview"
2751
  msgstr ""
2752
 
2753
+ #: wp-statistics.php:354 wp-statistics.php:430
2754
  msgid "Online"
2755
  msgstr ""
2756
 
2757
+ #: wp-statistics.php:356 wp-statistics.php:432
2758
  msgid "Referrers"
2759
  msgstr ""
2760
 
2761
+ #: wp-statistics.php:358 wp-statistics.php:434
2762
  msgid "Search Words"
2763
  msgstr ""
2764
 
2765
+ #: wp-statistics.php:359 wp-statistics.php:435
2766
  msgid "Top Visitors Today"
2767
  msgstr ""
2768
 
2769
+ #: wp-statistics.php:364 wp-statistics.php:437
2770
  msgid "Optimization"
2771
  msgstr ""
2772
 
2773
+ #: wp-statistics.php:370 wp-statistics.php:401
2774
  msgid "Manual"
2775
  msgstr ""
2776
 
2777
+ #: wp-statistics.php:416
2778
  msgid "Site"
2779
  msgstr ""
2780
 
2781
+ #: wp-statistics.php:417
2782
  msgid "Options"
2783
  msgstr ""
2784
 
2785
+ #: wp-statistics.php:543
2786
  msgid "Today visitor"
2787
  msgstr ""
2788
 
2789
+ #: wp-statistics.php:549
2790
  msgid "Today visit"
2791
  msgstr ""
2792
 
2793
+ #: wp-statistics.php:555
2794
  msgid "Yesterday visitor"
2795
  msgstr ""
2796
 
2797
+ #: wp-statistics.php:567
2798
  msgid "View Stats"
2799
  msgstr ""
2800
 
2801
+ #: wp-statistics.php:591
2802
  msgid "Download ODF file"
2803
  msgstr ""
2804
 
2805
+ #: wp-statistics.php:592
2806
  msgid "Download HTML file"
2807
  msgstr ""
2808
 
2809
+ #: wp-statistics.php:596
2810
  msgid "Manual file not found."
2811
  msgstr ""
2812
 
2813
+ #: wp-statistics.php:663 wp-statistics.php:770 wp-statistics.php:804
2814
  msgid "You do not have sufficient permissions to access this page."
2815
  msgstr ""
2816
 
2874
  msgid "Browscap.ini update on"
2875
  msgstr ""
2876
 
2877
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
2878
  #. Plugin URI of the plugin/theme
2879
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
2880
  #. Author URI of the plugin/theme
2881
  msgid "http://wp-statistics.com/"
2882
  msgstr ""
languages/wp-statistics-da.po CHANGED
@@ -10,6 +10,70 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  #: includes/settings/tabs/wps-exclusions.php:148
14
  msgid "Treat corrupt browser info as a bot"
15
  msgstr ""
@@ -158,7 +222,7 @@ msgstr ""
158
  msgid "Have you thought about donating to WP Statistics?"
159
  msgstr ""
160
 
161
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:362
162
  msgid "Donate"
163
  msgstr ""
164
 
@@ -194,11 +258,11 @@ msgstr ""
194
  msgid "Time Frame"
195
  msgstr ""
196
 
197
- #: includes/functions/functions.php:929
198
  msgid "to"
199
  msgstr ""
200
 
201
- #: includes/functions/functions.php:929 includes/log/top-visitors.php:29
202
  msgid "Go"
203
  msgstr ""
204
 
@@ -242,11 +306,11 @@ msgstr ""
242
  msgid "Filtered by"
243
  msgstr ""
244
 
245
- #: includes/functions/functions.php:922 includes/functions/functions.php:925
246
  msgid "Range"
247
  msgstr ""
248
 
249
- #: includes/functions/functions.php:929 includes/log/top-visitors.php:29
250
  msgid "MM/DD/YYYY"
251
  msgstr ""
252
 
@@ -290,27 +354,27 @@ msgstr ""
290
  msgid "Last 7 Days (Week)"
291
  msgstr ""
292
 
293
- #: includes/functions/functions.php:403
294
  msgid "Yahoo!"
295
  msgstr ""
296
 
297
- #: includes/functions/functions.php:404
298
  msgid "Yandex"
299
  msgstr ""
300
 
301
- #: includes/functions/functions.php:400
302
  msgid "clearch.org"
303
  msgstr ""
304
 
305
- #: includes/functions/functions.php:401
306
  msgid "DuckDuckGo"
307
  msgstr ""
308
 
309
- #: includes/functions/functions.php:399
310
  msgid "Bing"
311
  msgstr ""
312
 
313
- #: includes/functions/functions.php:398
314
  msgid "Baidu"
315
  msgstr ""
316
 
@@ -413,8 +477,8 @@ msgid "For each visit to account for several hits. Currently %s."
413
  msgstr ""
414
 
415
  #: includes/settings/tabs/wps-general.php:177
416
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:351
417
- #: wp-statistics.php:427
418
  msgid "Pages"
419
  msgstr ""
420
 
@@ -498,75 +562,75 @@ msgstr ""
498
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
499
  msgstr ""
500
 
501
- #: includes/settings/tabs/wps-geoip.php:27
502
  msgid "GeoIP settings"
503
  msgstr ""
504
 
505
- #: includes/settings/tabs/wps-geoip.php:32
506
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
507
  msgstr ""
508
 
509
- #: includes/settings/tabs/wps-geoip.php:42
510
  msgid "GeoIP collection"
511
  msgstr ""
512
 
513
- #: includes/settings/tabs/wps-geoip.php:48
514
  msgid "For get more information and location (country) from visitor, enable this feature."
515
  msgstr ""
516
 
517
- #: includes/settings/tabs/wps-geoip.php:54
518
  msgid "Update GeoIP Info"
519
  msgstr ""
520
 
521
- #: includes/settings/tabs/wps-geoip.php:59
522
  msgid "Download GeoIP Database"
523
  msgstr ""
524
 
525
- #: includes/settings/tabs/wps-geoip.php:66
526
  msgid "Schedule monthly update of GeoIP DB"
527
  msgstr ""
528
 
529
- #: includes/settings/tabs/wps-geoip.php:92
530
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
531
  msgstr ""
532
 
533
- #: includes/settings/tabs/wps-geoip.php:93
534
  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)."
535
  msgstr ""
536
 
537
- #: includes/settings/tabs/wps-geoip.php:99
538
  msgid "Populate missing GeoIP after update of GeoIP DB"
539
  msgstr ""
540
 
541
- #: includes/settings/tabs/wps-geoip.php:105
542
  msgid "Update any missing GeoIP data after downloading a new database."
543
  msgstr ""
544
 
545
- #: includes/settings/tabs/wps-geoip.php:111
546
  msgid "Country code for private IP addresses"
547
  msgstr ""
548
 
549
- #: includes/settings/tabs/wps-geoip.php:116
550
  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."
551
  msgstr ""
552
 
553
- #: includes/settings/tabs/wps-geoip.php:127
554
  msgid "GeoIP collection is disabled due to the following reasons:"
555
  msgstr ""
556
 
557
- #: includes/settings/tabs/wps-geoip.php:130
558
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
559
  msgstr ""
560
 
561
- #: includes/settings/tabs/wps-geoip.php:135
562
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
563
  msgstr ""
564
 
565
- #: includes/settings/tabs/wps-geoip.php:141
566
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
567
  msgstr ""
568
 
569
- #: includes/settings/tabs/wps-geoip.php:147
570
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
571
  msgstr ""
572
 
@@ -626,7 +690,6 @@ msgstr ""
626
 
627
  #: includes/log/exclusions.php:24
628
  #: includes/settings/tabs/wps-notifications.php:76
629
- #: includes/settings/wps-settings.php:111
630
  msgid "GeoIP"
631
  msgstr ""
632
 
@@ -651,7 +714,7 @@ msgid "Send a report whenever the plugin is upgraded."
651
  msgstr ""
652
 
653
  #: includes/settings/tabs/wps-notifications.php:111
654
- #: includes/settings/tabs/wps-notifications.php:116 schedule.php:199
655
  msgid "Statistical reporting"
656
  msgstr ""
657
 
@@ -700,7 +763,7 @@ msgid "Any shortcode supported by your installation of WordPress, include all sh
700
  msgstr ""
701
 
702
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
703
- #: widget.php:245 wp-statistics.php:532
704
  msgid "User Online"
705
  msgstr ""
706
 
@@ -743,7 +806,7 @@ msgid "Summary Statistics"
743
  msgstr ""
744
 
745
  #: includes/settings/tabs/wps-overview-display.php:28
746
- #: includes/settings/wps-settings.php:115
747
  msgid "About"
748
  msgstr ""
749
 
@@ -793,7 +856,7 @@ msgstr ""
793
  msgid "Map type"
794
  msgstr ""
795
 
796
- #: includes/functions/functions.php:402
797
  #: includes/settings/tabs/wps-overview-display.php:128
798
  msgid "Google"
799
  msgstr ""
@@ -903,35 +966,30 @@ msgstr ""
903
  msgid "Remove data and settings, this action cannot be undone."
904
  msgstr ""
905
 
906
- #: includes/settings/wps-settings.php:106
907
  msgid "General"
908
  msgstr ""
909
 
910
- #: includes/settings/wps-settings.php:107
911
  msgid "Notifications"
912
  msgstr ""
913
 
914
- #: includes/settings/wps-settings.php:108
915
  msgid "Dashboard/Overview"
916
  msgstr ""
917
 
918
- #: includes/settings/wps-settings.php:112
919
- msgid "browscap"
920
- msgstr ""
921
-
922
- #: includes/settings/wps-settings.php:113
923
  msgid "Maintenance"
924
  msgstr ""
925
 
926
- #: includes/settings/wps-settings.php:114
927
  msgid "Removal"
928
  msgstr ""
929
 
930
  #: includes/settings/tabs/wps-access-level.php:85
931
- #: includes/settings/tabs/wps-browscap.php:81
932
  #: includes/settings/tabs/wps-exclusions.php:234
 
933
  #: includes/settings/tabs/wps-general.php:349
934
- #: includes/settings/tabs/wps-geoip.php:158
935
  #: includes/settings/tabs/wps-maintenance.php:84
936
  #: includes/settings/tabs/wps-notifications.php:201
937
  #: includes/settings/tabs/wps-overview-display.php:388
@@ -951,7 +1009,7 @@ msgstr ""
951
  msgid "Once Every 4 Weeks"
952
  msgstr ""
953
 
954
- #: widget.php:14 wp-statistics.php:342 wp-statistics.php:380
955
  msgid "Statistics"
956
  msgstr ""
957
 
@@ -1023,7 +1081,7 @@ msgstr ""
1023
  msgid "Items"
1024
  msgstr ""
1025
 
1026
- #: widget.php:254 wp-statistics.php:557
1027
  msgid "Yesterday visit"
1028
  msgstr ""
1029
 
@@ -1051,13 +1109,13 @@ msgstr ""
1051
  msgid "WP Statistics has been removed, please disable and delete it."
1052
  msgstr ""
1053
 
1054
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1055
  #. Plugin Name of the plugin/theme
1056
  #: wp-statistics.php:37
1057
  msgid "WP Statistics"
1058
  msgstr ""
1059
 
1060
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1061
  #. Description of the plugin/theme
1062
  #: wp-statistics.php:38
1063
  msgid "Complete statistics for your WordPress site."
@@ -1087,99 +1145,99 @@ msgstr ""
1087
  msgid "Setting page > GeoIP"
1088
  msgstr ""
1089
 
1090
- #: wp-statistics.php:249 wp-statistics.php:361 wp-statistics.php:434
1091
  msgid "Settings"
1092
  msgstr ""
1093
 
1094
- #: wp-statistics.php:261
1095
  msgid "Click here to visit the plugin on WordPress.org"
1096
  msgstr ""
1097
 
1098
- #: wp-statistics.php:261
1099
  msgid "Visit WordPress.org page"
1100
  msgstr ""
1101
 
1102
- #: wp-statistics.php:264
1103
  msgid "Click here to rate and review this plugin on WordPress.org"
1104
  msgstr ""
1105
 
1106
- #: wp-statistics.php:264
1107
  msgid "Rate this plugin"
1108
  msgstr ""
1109
 
1110
- #: wp-statistics.php:308
1111
  msgid "WP Statistics - Hits"
1112
  msgstr ""
1113
 
1114
- #: wp-statistics.php:345 wp-statistics.php:383 wp-statistics.php:421
1115
  msgid "Overview"
1116
  msgstr ""
1117
 
1118
- #: wp-statistics.php:350 wp-statistics.php:426
1119
  msgid "Online"
1120
  msgstr ""
1121
 
1122
- #: wp-statistics.php:352 wp-statistics.php:428
1123
  msgid "Referrers"
1124
  msgstr ""
1125
 
1126
- #: shortcode.php:135 wp-statistics.php:353 wp-statistics.php:429
1127
  msgid "Searches"
1128
  msgstr ""
1129
 
1130
- #: wp-statistics.php:354 wp-statistics.php:430
1131
  msgid "Search Words"
1132
  msgstr ""
1133
 
1134
- #: wp-statistics.php:355 wp-statistics.php:431
1135
  msgid "Top Visitors Today"
1136
  msgstr ""
1137
 
1138
- #: wp-statistics.php:360 wp-statistics.php:433
1139
  msgid "Optimization"
1140
  msgstr ""
1141
 
1142
- #: wp-statistics.php:366 wp-statistics.php:397
1143
  msgid "Manual"
1144
  msgstr ""
1145
 
1146
- #: wp-statistics.php:412
1147
  msgid "Site"
1148
  msgstr ""
1149
 
1150
- #: wp-statistics.php:413
1151
  msgid "Options"
1152
  msgstr ""
1153
 
1154
- #: wp-statistics.php:539
1155
  msgid "Today visitor"
1156
  msgstr ""
1157
 
1158
- #: wp-statistics.php:545
1159
  msgid "Today visit"
1160
  msgstr ""
1161
 
1162
- #: wp-statistics.php:551
1163
  msgid "Yesterday visitor"
1164
  msgstr ""
1165
 
1166
- #: wp-statistics.php:563
1167
  msgid "View Stats"
1168
  msgstr ""
1169
 
1170
- #: wp-statistics.php:587
1171
  msgid "Download ODF file"
1172
  msgstr ""
1173
 
1174
- #: wp-statistics.php:588
1175
  msgid "Download HTML file"
1176
  msgstr ""
1177
 
1178
- #: wp-statistics.php:592
1179
  msgid "Manual file not found."
1180
  msgstr ""
1181
 
1182
- #: wp-statistics.php:659 wp-statistics.php:770 wp-statistics.php:804
1183
  msgid "You do not have sufficient permissions to access this page."
1184
  msgstr ""
1185
 
@@ -1187,7 +1245,7 @@ msgstr ""
1187
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
1188
  msgstr ""
1189
 
1190
- #: wp-statistics.php:237
1191
  msgid "WP Statistics %s installed on"
1192
  msgstr ""
1193
 
@@ -1235,9 +1293,9 @@ msgstr ""
1235
  msgid "Browscap.ini update on"
1236
  msgstr ""
1237
 
1238
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1239
  #. Plugin URI of the plugin/theme
1240
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1241
  #. Author URI of the plugin/theme
1242
  msgid "http://wp-statistics.com/"
1243
  msgstr ""
@@ -1364,8 +1422,8 @@ msgid "Click to toggle"
1364
  msgstr ""
1365
 
1366
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1367
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:346
1368
- #: wp-statistics.php:422
1369
  msgid "Browsers"
1370
  msgstr ""
1371
 
@@ -1394,35 +1452,35 @@ msgstr ""
1394
  msgid "Exclusions Statistics"
1395
  msgstr ""
1396
 
1397
- #: includes/functions/functions.php:879
1398
  msgid "10 Days"
1399
  msgstr ""
1400
 
1401
- #: includes/functions/functions.php:879
1402
  msgid "20 Days"
1403
  msgstr ""
1404
 
1405
- #: includes/functions/functions.php:879
1406
  msgid "30 Days"
1407
  msgstr ""
1408
 
1409
- #: includes/functions/functions.php:879
1410
  msgid "2 Months"
1411
  msgstr ""
1412
 
1413
- #: includes/functions/functions.php:879
1414
  msgid "3 Months"
1415
  msgstr ""
1416
 
1417
- #: includes/functions/functions.php:879
1418
  msgid "6 Months"
1419
  msgstr ""
1420
 
1421
- #: includes/functions/functions.php:879
1422
  msgid "9 Months"
1423
  msgstr ""
1424
 
1425
- #: includes/functions/functions.php:879
1426
  msgid "1 Year"
1427
  msgstr ""
1428
 
@@ -1471,28 +1529,28 @@ msgstr ""
1471
  msgid "Latest Search Word Statistics"
1472
  msgstr ""
1473
 
1474
- #: includes/log/last-search.php:100 includes/log/last-visitor.php:101
1475
  #: includes/log/online.php:50 includes/log/widgets/google.map.php:84
1476
  #: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
1477
- #: includes/log/widgets/words.php:36
1478
  msgid "#hash#"
1479
  msgstr ""
1480
 
1481
- #: includes/log/last-search.php:105 includes/log/last-visitor.php:106
1482
  #: includes/log/online.php:55 includes/log/top-referring.php:71
1483
- #: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:43
1484
  #: includes/settings/tabs/wps-overview-display.php:33
1485
  #: includes/settings/tabs/wps-overview-display.php:113
1486
  msgid "Map"
1487
  msgstr ""
1488
 
1489
- #: includes/log/last-search.php:142 includes/log/last-visitor.php:139
1490
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1491
  #: includes/log/top-referring.php:125
1492
  msgid "Page"
1493
  msgstr ""
1494
 
1495
- #: includes/log/last-search.php:142 includes/log/last-visitor.php:139
1496
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1497
  #: includes/log/top-referring.php:125
1498
  msgid "From"
@@ -1681,8 +1739,8 @@ msgid "Time: %s"
1681
  msgstr ""
1682
 
1683
  #: includes/log/widgets/top.visitors.php:31
1684
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:273
1685
- #: wp-statistics.php:349 wp-statistics.php:425
1686
  msgid "Hits"
1687
  msgstr ""
1688
 
@@ -1724,11 +1782,11 @@ msgstr ""
1724
  msgid "No platform data found to remove!"
1725
  msgstr ""
1726
 
1727
- #: includes/functions/functions.php:967
1728
  msgid "%s table data deleted successfully."
1729
  msgstr ""
1730
 
1731
- #: includes/functions/functions.php:971
1732
  msgid "Error, %s not emptied!"
1733
  msgstr ""
1734
 
@@ -1754,7 +1812,7 @@ msgstr ""
1754
 
1755
  #: includes/optimization/tabs/wps-optimization-database.php:25
1756
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1757
- #: wp-statistics.php:347 wp-statistics.php:423
1758
  msgid "Countries"
1759
  msgstr ""
1760
 
@@ -1770,6 +1828,7 @@ msgid "Older installs of WP Statistics allow for duplicate entries in the visito
1770
  msgstr ""
1771
 
1772
  #: includes/optimization/tabs/wps-optimization-database.php:41
 
1773
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1774
  msgstr ""
1775
 
@@ -1779,11 +1838,12 @@ msgstr ""
1779
 
1780
  #: includes/optimization/tabs/wps-optimization-database.php:47
1781
  #: includes/optimization/tabs/wps-optimization-database.php:77
 
1782
  msgid "Congratulations, your installation is already up to date, nothing to do."
1783
  msgstr ""
1784
 
1785
  #: includes/optimization/tabs/wps-optimization-export.php:8
1786
- #: includes/optimization/wps-optimization.php:183
1787
  msgid "Export"
1788
  msgstr ""
1789
 
@@ -1836,7 +1896,7 @@ msgstr ""
1836
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1837
  #: includes/settings/tabs/wps-general.php:138
1838
  #: includes/settings/tabs/wps-general.php:143 shortcode.php:133
1839
- #: wp-statistics.php:356 wp-statistics.php:432
1840
  msgid "Visitors"
1841
  msgstr ""
1842
 
@@ -2151,23 +2211,23 @@ msgstr ""
2151
  msgid "Install routine complete."
2152
  msgstr ""
2153
 
2154
- #: includes/optimization/wps-optimization.php:182
2155
  msgid "Resources/Information"
2156
  msgstr ""
2157
 
2158
- #: includes/optimization/wps-optimization.php:184
2159
  msgid "Purging"
2160
  msgstr ""
2161
 
2162
- #: includes/optimization/wps-optimization.php:185
2163
  msgid "Database"
2164
  msgstr ""
2165
 
2166
- #: includes/optimization/wps-optimization.php:186
2167
  msgid "Updates"
2168
  msgstr ""
2169
 
2170
- #: includes/optimization/wps-optimization.php:187
2171
  msgid "Historical"
2172
  msgstr ""
2173
 
@@ -2317,7 +2377,7 @@ msgid "This is the honey pot for WP Statistics to use, do not delete."
2317
  msgstr ""
2318
 
2319
  #: includes/settings/tabs/wps-access-level.php:23
2320
- #: includes/settings/wps-settings.php:109
2321
  msgid "Access Levels"
2322
  msgstr ""
2323
 
@@ -2350,8 +2410,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2350
  msgstr ""
2351
 
2352
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2353
- #: includes/settings/wps-settings.php:110 wp-statistics.php:348
2354
- #: wp-statistics.php:424
2355
  msgid "Exclusions"
2356
  msgstr ""
2357
 
@@ -2522,16 +2582,21 @@ msgstr ""
2522
  msgid "Exclude the RSS feeds for registering as a hit."
2523
  msgstr ""
2524
 
2525
- #: includes/settings/tabs/wps-browscap.php:22
2526
  msgid "browscap settings"
2527
  msgstr ""
2528
 
2529
- #: includes/settings/tabs/wps-browscap.php:27
2530
  msgid "browscap usage"
2531
  msgstr ""
2532
 
2533
- #: includes/settings/tabs/wps-browscap.php:32
2534
- #: includes/settings/tabs/wps-browscap.php:56
 
 
 
 
 
2535
  #: includes/settings/tabs/wps-general.php:76
2536
  #: includes/settings/tabs/wps-general.php:92
2537
  #: includes/settings/tabs/wps-general.php:116
@@ -2547,9 +2612,6 @@ msgstr ""
2547
  #: includes/settings/tabs/wps-general.php:286
2548
  #: includes/settings/tabs/wps-general.php:325
2549
  #: includes/settings/tabs/wps-general.php:341
2550
- #: includes/settings/tabs/wps-geoip.php:47
2551
- #: includes/settings/tabs/wps-geoip.php:71
2552
- #: includes/settings/tabs/wps-geoip.php:104
2553
  #: includes/settings/tabs/wps-maintenance.php:40
2554
  #: includes/settings/tabs/wps-maintenance.php:64
2555
  #: includes/settings/tabs/wps-notifications.php:69
@@ -2564,33 +2626,35 @@ msgstr ""
2564
  msgid "Active"
2565
  msgstr ""
2566
 
2567
- #: includes/settings/tabs/wps-browscap.php:33
2568
  msgid "The browscap database will be downloaded and used to detect robots."
2569
  msgstr ""
2570
 
2571
- #: includes/settings/tabs/wps-browscap.php:39
2572
  msgid "Update browscap Info"
2573
  msgstr ""
2574
 
2575
- #: includes/settings/tabs/wps-browscap.php:44
2576
  msgid "Download browscap Database"
2577
  msgstr ""
2578
 
2579
- #: includes/settings/tabs/wps-browscap.php:45
2580
- #: includes/settings/tabs/wps-geoip.php:60
 
2581
  msgid "Save changes on this page to download the update."
2582
  msgstr ""
2583
 
2584
- #: includes/settings/tabs/wps-browscap.php:51
2585
  msgid "Schedule weekly update of browscap DB"
2586
  msgstr ""
2587
 
2588
- #: includes/settings/tabs/wps-browscap.php:59
2589
- #: includes/settings/tabs/wps-geoip.php:74
 
2590
  msgid "Next update will be"
2591
  msgstr ""
2592
 
2593
- #: includes/settings/tabs/wps-browscap.php:74
2594
  msgid "Download of the browscap database will be scheduled for once a week."
2595
  msgstr ""
2596
 
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: includes/optimization/wps-optimization.php:173
14
+ msgid "Search table conversion complete, %d rows added."
15
+ msgstr ""
16
+
17
+ #: includes/optimization/tabs/wps-optimization-database.php:107
18
+ msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion."
19
+ msgstr ""
20
+
21
+ #: includes/optimization/tabs/wps-optimization-database.php:86
22
+ msgid "Search Table"
23
+ msgstr ""
24
+
25
+ #: includes/optimization/tabs/wps-optimization-database.php:91
26
+ msgid "Convert"
27
+ msgstr ""
28
+
29
+ #: includes/optimization/tabs/wps-optimization-database.php:100
30
+ msgid "Convert Now!"
31
+ msgstr ""
32
+
33
+ #: includes/optimization/tabs/wps-optimization-database.php:101
34
+ msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion, however the old data must first be converted to the new format before it can be used."
35
+ msgstr ""
36
+
37
+ #: includes/log/exclusions.php:24
38
+ msgid "Referrer Spam"
39
+ msgstr ""
40
+
41
+ #: includes/settings/tabs/wps-externals.php:277
42
+ msgid "Download of the Piwik Referrer Spam Blacklist database will be scheduled for once a week."
43
+ msgstr ""
44
+
45
+ #: includes/settings/wps-settings.php:105
46
+ msgid "Externals"
47
+ msgstr ""
48
+
49
+ #: includes/settings/tabs/wps-externals.php:219
50
+ msgid "Piwik Referrer Spam Blacklist settings"
51
+ msgstr ""
52
+
53
+ #: includes/settings/tabs/wps-externals.php:254
54
+ msgid "Schedule weekly update of Piwik Referrer Spam Blacklist DB"
55
+ msgstr ""
56
+
57
+ #: includes/settings/tabs/wps-externals.php:247
58
+ msgid "Download Piwik Referrer Spam Blacklist Database"
59
+ msgstr ""
60
+
61
+ #: includes/settings/tabs/wps-externals.php:242
62
+ msgid "Update Piwik Referrer Spam Blacklist Info"
63
+ msgstr ""
64
+
65
+ #: includes/settings/tabs/wps-externals.php:236
66
+ msgid "The Piwik Referrer Spam Blacklist database will be downloaded and used to detect referrer spam."
67
+ msgstr ""
68
+
69
+ #: includes/settings/tabs/wps-externals.php:224
70
+ msgid "Referrer spam blacklist is provided by Piwik, available from %s."
71
+ msgstr ""
72
+
73
+ #: includes/settings/tabs/wps-externals.php:230
74
+ msgid "Piwik Referrer Spam Blacklist usage"
75
+ msgstr ""
76
+
77
  #: includes/settings/tabs/wps-exclusions.php:148
78
  msgid "Treat corrupt browser info as a bot"
79
  msgstr ""
222
  msgid "Have you thought about donating to WP Statistics?"
223
  msgstr ""
224
 
225
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
226
  msgid "Donate"
227
  msgstr ""
228
 
258
  msgid "Time Frame"
259
  msgstr ""
260
 
261
+ #: includes/functions/functions.php:981
262
  msgid "to"
263
  msgstr ""
264
 
265
+ #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
266
  msgid "Go"
267
  msgstr ""
268
 
306
  msgid "Filtered by"
307
  msgstr ""
308
 
309
+ #: includes/functions/functions.php:974 includes/functions/functions.php:977
310
  msgid "Range"
311
  msgstr ""
312
 
313
+ #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
314
  msgid "MM/DD/YYYY"
315
  msgstr ""
316
 
354
  msgid "Last 7 Days (Week)"
355
  msgstr ""
356
 
357
+ #: includes/functions/functions.php:405
358
  msgid "Yahoo!"
359
  msgstr ""
360
 
361
+ #: includes/functions/functions.php:406
362
  msgid "Yandex"
363
  msgstr ""
364
 
365
+ #: includes/functions/functions.php:402
366
  msgid "clearch.org"
367
  msgstr ""
368
 
369
+ #: includes/functions/functions.php:403
370
  msgid "DuckDuckGo"
371
  msgstr ""
372
 
373
+ #: includes/functions/functions.php:401
374
  msgid "Bing"
375
  msgstr ""
376
 
377
+ #: includes/functions/functions.php:400
378
  msgid "Baidu"
379
  msgstr ""
380
 
477
  msgstr ""
478
 
479
  #: includes/settings/tabs/wps-general.php:177
480
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
481
+ #: wp-statistics.php:431
482
  msgid "Pages"
483
  msgstr ""
484
 
562
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
563
  msgstr ""
564
 
565
+ #: includes/settings/tabs/wps-externals.php:32
566
  msgid "GeoIP settings"
567
  msgstr ""
568
 
569
+ #: includes/settings/tabs/wps-externals.php:37
570
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
571
  msgstr ""
572
 
573
+ #: includes/settings/tabs/wps-externals.php:47
574
  msgid "GeoIP collection"
575
  msgstr ""
576
 
577
+ #: includes/settings/tabs/wps-externals.php:53
578
  msgid "For get more information and location (country) from visitor, enable this feature."
579
  msgstr ""
580
 
581
+ #: includes/settings/tabs/wps-externals.php:59
582
  msgid "Update GeoIP Info"
583
  msgstr ""
584
 
585
+ #: includes/settings/tabs/wps-externals.php:64
586
  msgid "Download GeoIP Database"
587
  msgstr ""
588
 
589
+ #: includes/settings/tabs/wps-externals.php:71
590
  msgid "Schedule monthly update of GeoIP DB"
591
  msgstr ""
592
 
593
+ #: includes/settings/tabs/wps-externals.php:97
594
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
595
  msgstr ""
596
 
597
+ #: includes/settings/tabs/wps-externals.php:98
598
  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)."
599
  msgstr ""
600
 
601
+ #: includes/settings/tabs/wps-externals.php:104
602
  msgid "Populate missing GeoIP after update of GeoIP DB"
603
  msgstr ""
604
 
605
+ #: includes/settings/tabs/wps-externals.php:110
606
  msgid "Update any missing GeoIP data after downloading a new database."
607
  msgstr ""
608
 
609
+ #: includes/settings/tabs/wps-externals.php:116
610
  msgid "Country code for private IP addresses"
611
  msgstr ""
612
 
613
+ #: includes/settings/tabs/wps-externals.php:121
614
  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."
615
  msgstr ""
616
 
617
+ #: includes/settings/tabs/wps-externals.php:132
618
  msgid "GeoIP collection is disabled due to the following reasons:"
619
  msgstr ""
620
 
621
+ #: includes/settings/tabs/wps-externals.php:135
622
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
623
  msgstr ""
624
 
625
+ #: includes/settings/tabs/wps-externals.php:140
626
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
627
  msgstr ""
628
 
629
+ #: includes/settings/tabs/wps-externals.php:146
630
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
631
  msgstr ""
632
 
633
+ #: includes/settings/tabs/wps-externals.php:152
634
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
635
  msgstr ""
636
 
690
 
691
  #: includes/log/exclusions.php:24
692
  #: includes/settings/tabs/wps-notifications.php:76
 
693
  msgid "GeoIP"
694
  msgstr ""
695
 
714
  msgstr ""
715
 
716
  #: includes/settings/tabs/wps-notifications.php:111
717
+ #: includes/settings/tabs/wps-notifications.php:116 schedule.php:221
718
  msgid "Statistical reporting"
719
  msgstr ""
720
 
763
  msgstr ""
764
 
765
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
766
+ #: widget.php:245 wp-statistics.php:536
767
  msgid "User Online"
768
  msgstr ""
769
 
806
  msgstr ""
807
 
808
  #: includes/settings/tabs/wps-overview-display.php:28
809
+ #: includes/settings/wps-settings.php:108
810
  msgid "About"
811
  msgstr ""
812
 
856
  msgid "Map type"
857
  msgstr ""
858
 
859
+ #: includes/functions/functions.php:404
860
  #: includes/settings/tabs/wps-overview-display.php:128
861
  msgid "Google"
862
  msgstr ""
966
  msgid "Remove data and settings, this action cannot be undone."
967
  msgstr ""
968
 
969
+ #: includes/settings/wps-settings.php:100
970
  msgid "General"
971
  msgstr ""
972
 
973
+ #: includes/settings/wps-settings.php:101
974
  msgid "Notifications"
975
  msgstr ""
976
 
977
+ #: includes/settings/wps-settings.php:102
978
  msgid "Dashboard/Overview"
979
  msgstr ""
980
 
981
+ #: includes/settings/wps-settings.php:106
 
 
 
 
982
  msgid "Maintenance"
983
  msgstr ""
984
 
985
+ #: includes/settings/wps-settings.php:107
986
  msgid "Removal"
987
  msgstr ""
988
 
989
  #: includes/settings/tabs/wps-access-level.php:85
 
990
  #: includes/settings/tabs/wps-exclusions.php:234
991
+ #: includes/settings/tabs/wps-externals.php:284
992
  #: includes/settings/tabs/wps-general.php:349
 
993
  #: includes/settings/tabs/wps-maintenance.php:84
994
  #: includes/settings/tabs/wps-notifications.php:201
995
  #: includes/settings/tabs/wps-overview-display.php:388
1009
  msgid "Once Every 4 Weeks"
1010
  msgstr ""
1011
 
1012
+ #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
1013
  msgid "Statistics"
1014
  msgstr ""
1015
 
1081
  msgid "Items"
1082
  msgstr ""
1083
 
1084
+ #: widget.php:254 wp-statistics.php:561
1085
  msgid "Yesterday visit"
1086
  msgstr ""
1087
 
1109
  msgid "WP Statistics has been removed, please disable and delete it."
1110
  msgstr ""
1111
 
1112
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1113
  #. Plugin Name of the plugin/theme
1114
  #: wp-statistics.php:37
1115
  msgid "WP Statistics"
1116
  msgstr ""
1117
 
1118
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1119
  #. Description of the plugin/theme
1120
  #: wp-statistics.php:38
1121
  msgid "Complete statistics for your WordPress site."
1145
  msgid "Setting page > GeoIP"
1146
  msgstr ""
1147
 
1148
+ #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
1149
  msgid "Settings"
1150
  msgstr ""
1151
 
1152
+ #: wp-statistics.php:265
1153
  msgid "Click here to visit the plugin on WordPress.org"
1154
  msgstr ""
1155
 
1156
+ #: wp-statistics.php:265
1157
  msgid "Visit WordPress.org page"
1158
  msgstr ""
1159
 
1160
+ #: wp-statistics.php:268
1161
  msgid "Click here to rate and review this plugin on WordPress.org"
1162
  msgstr ""
1163
 
1164
+ #: wp-statistics.php:268
1165
  msgid "Rate this plugin"
1166
  msgstr ""
1167
 
1168
+ #: wp-statistics.php:312
1169
  msgid "WP Statistics - Hits"
1170
  msgstr ""
1171
 
1172
+ #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
1173
  msgid "Overview"
1174
  msgstr ""
1175
 
1176
+ #: wp-statistics.php:354 wp-statistics.php:430
1177
  msgid "Online"
1178
  msgstr ""
1179
 
1180
+ #: wp-statistics.php:356 wp-statistics.php:432
1181
  msgid "Referrers"
1182
  msgstr ""
1183
 
1184
+ #: shortcode.php:135 wp-statistics.php:357 wp-statistics.php:433
1185
  msgid "Searches"
1186
  msgstr ""
1187
 
1188
+ #: wp-statistics.php:358 wp-statistics.php:434
1189
  msgid "Search Words"
1190
  msgstr ""
1191
 
1192
+ #: wp-statistics.php:359 wp-statistics.php:435
1193
  msgid "Top Visitors Today"
1194
  msgstr ""
1195
 
1196
+ #: wp-statistics.php:364 wp-statistics.php:437
1197
  msgid "Optimization"
1198
  msgstr ""
1199
 
1200
+ #: wp-statistics.php:370 wp-statistics.php:401
1201
  msgid "Manual"
1202
  msgstr ""
1203
 
1204
+ #: wp-statistics.php:416
1205
  msgid "Site"
1206
  msgstr ""
1207
 
1208
+ #: wp-statistics.php:417
1209
  msgid "Options"
1210
  msgstr ""
1211
 
1212
+ #: wp-statistics.php:543
1213
  msgid "Today visitor"
1214
  msgstr ""
1215
 
1216
+ #: wp-statistics.php:549
1217
  msgid "Today visit"
1218
  msgstr ""
1219
 
1220
+ #: wp-statistics.php:555
1221
  msgid "Yesterday visitor"
1222
  msgstr ""
1223
 
1224
+ #: wp-statistics.php:567
1225
  msgid "View Stats"
1226
  msgstr ""
1227
 
1228
+ #: wp-statistics.php:591
1229
  msgid "Download ODF file"
1230
  msgstr ""
1231
 
1232
+ #: wp-statistics.php:592
1233
  msgid "Download HTML file"
1234
  msgstr ""
1235
 
1236
+ #: wp-statistics.php:596
1237
  msgid "Manual file not found."
1238
  msgstr ""
1239
 
1240
+ #: wp-statistics.php:663 wp-statistics.php:770 wp-statistics.php:804
1241
  msgid "You do not have sufficient permissions to access this page."
1242
  msgstr ""
1243
 
1245
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
1246
  msgstr ""
1247
 
1248
+ #: wp-statistics.php:241
1249
  msgid "WP Statistics %s installed on"
1250
  msgstr ""
1251
 
1293
  msgid "Browscap.ini update on"
1294
  msgstr ""
1295
 
1296
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1297
  #. Plugin URI of the plugin/theme
1298
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1299
  #. Author URI of the plugin/theme
1300
  msgid "http://wp-statistics.com/"
1301
  msgstr ""
1422
  msgstr ""
1423
 
1424
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1425
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
1426
+ #: wp-statistics.php:426
1427
  msgid "Browsers"
1428
  msgstr ""
1429
 
1452
  msgid "Exclusions Statistics"
1453
  msgstr ""
1454
 
1455
+ #: includes/functions/functions.php:931
1456
  msgid "10 Days"
1457
  msgstr ""
1458
 
1459
+ #: includes/functions/functions.php:931
1460
  msgid "20 Days"
1461
  msgstr ""
1462
 
1463
+ #: includes/functions/functions.php:931
1464
  msgid "30 Days"
1465
  msgstr ""
1466
 
1467
+ #: includes/functions/functions.php:931
1468
  msgid "2 Months"
1469
  msgstr ""
1470
 
1471
+ #: includes/functions/functions.php:931
1472
  msgid "3 Months"
1473
  msgstr ""
1474
 
1475
+ #: includes/functions/functions.php:931
1476
  msgid "6 Months"
1477
  msgstr ""
1478
 
1479
+ #: includes/functions/functions.php:931
1480
  msgid "9 Months"
1481
  msgstr ""
1482
 
1483
+ #: includes/functions/functions.php:931
1484
  msgid "1 Year"
1485
  msgstr ""
1486
 
1529
  msgid "Latest Search Word Statistics"
1530
  msgstr ""
1531
 
1532
+ #: includes/log/last-search.php:110 includes/log/last-visitor.php:101
1533
  #: includes/log/online.php:50 includes/log/widgets/google.map.php:84
1534
  #: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
1535
+ #: includes/log/widgets/words.php:46
1536
  msgid "#hash#"
1537
  msgstr ""
1538
 
1539
+ #: includes/log/last-search.php:115 includes/log/last-visitor.php:106
1540
  #: includes/log/online.php:55 includes/log/top-referring.php:71
1541
+ #: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
1542
  #: includes/settings/tabs/wps-overview-display.php:33
1543
  #: includes/settings/tabs/wps-overview-display.php:113
1544
  msgid "Map"
1545
  msgstr ""
1546
 
1547
+ #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1548
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1549
  #: includes/log/top-referring.php:125
1550
  msgid "Page"
1551
  msgstr ""
1552
 
1553
+ #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1554
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1555
  #: includes/log/top-referring.php:125
1556
  msgid "From"
1739
  msgstr ""
1740
 
1741
  #: includes/log/widgets/top.visitors.php:31
1742
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
1743
+ #: wp-statistics.php:353 wp-statistics.php:429
1744
  msgid "Hits"
1745
  msgstr ""
1746
 
1782
  msgid "No platform data found to remove!"
1783
  msgstr ""
1784
 
1785
+ #: includes/functions/functions.php:1019
1786
  msgid "%s table data deleted successfully."
1787
  msgstr ""
1788
 
1789
+ #: includes/functions/functions.php:1023
1790
  msgid "Error, %s not emptied!"
1791
  msgstr ""
1792
 
1812
 
1813
  #: includes/optimization/tabs/wps-optimization-database.php:25
1814
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1815
+ #: wp-statistics.php:351 wp-statistics.php:427
1816
  msgid "Countries"
1817
  msgstr ""
1818
 
1828
  msgstr ""
1829
 
1830
  #: includes/optimization/tabs/wps-optimization-database.php:41
1831
+ #: includes/optimization/tabs/wps-optimization-database.php:102
1832
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1833
  msgstr ""
1834
 
1838
 
1839
  #: includes/optimization/tabs/wps-optimization-database.php:47
1840
  #: includes/optimization/tabs/wps-optimization-database.php:77
1841
+ #: includes/optimization/tabs/wps-optimization-database.php:108
1842
  msgid "Congratulations, your installation is already up to date, nothing to do."
1843
  msgstr ""
1844
 
1845
  #: includes/optimization/tabs/wps-optimization-export.php:8
1846
+ #: includes/optimization/wps-optimization.php:212
1847
  msgid "Export"
1848
  msgstr ""
1849
 
1896
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1897
  #: includes/settings/tabs/wps-general.php:138
1898
  #: includes/settings/tabs/wps-general.php:143 shortcode.php:133
1899
+ #: wp-statistics.php:360 wp-statistics.php:436
1900
  msgid "Visitors"
1901
  msgstr ""
1902
 
2211
  msgid "Install routine complete."
2212
  msgstr ""
2213
 
2214
+ #: includes/optimization/wps-optimization.php:211
2215
  msgid "Resources/Information"
2216
  msgstr ""
2217
 
2218
+ #: includes/optimization/wps-optimization.php:213
2219
  msgid "Purging"
2220
  msgstr ""
2221
 
2222
+ #: includes/optimization/wps-optimization.php:214
2223
  msgid "Database"
2224
  msgstr ""
2225
 
2226
+ #: includes/optimization/wps-optimization.php:215
2227
  msgid "Updates"
2228
  msgstr ""
2229
 
2230
+ #: includes/optimization/wps-optimization.php:216
2231
  msgid "Historical"
2232
  msgstr ""
2233
 
2377
  msgstr ""
2378
 
2379
  #: includes/settings/tabs/wps-access-level.php:23
2380
+ #: includes/settings/wps-settings.php:103
2381
  msgid "Access Levels"
2382
  msgstr ""
2383
 
2410
  msgstr ""
2411
 
2412
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2413
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:352
2414
+ #: wp-statistics.php:428
2415
  msgid "Exclusions"
2416
  msgstr ""
2417
 
2582
  msgid "Exclude the RSS feeds for registering as a hit."
2583
  msgstr ""
2584
 
2585
+ #: includes/settings/tabs/wps-externals.php:162
2586
  msgid "browscap settings"
2587
  msgstr ""
2588
 
2589
+ #: includes/settings/tabs/wps-externals.php:167
2590
  msgid "browscap usage"
2591
  msgstr ""
2592
 
2593
+ #: includes/settings/tabs/wps-externals.php:52
2594
+ #: includes/settings/tabs/wps-externals.php:76
2595
+ #: includes/settings/tabs/wps-externals.php:109
2596
+ #: includes/settings/tabs/wps-externals.php:172
2597
+ #: includes/settings/tabs/wps-externals.php:196
2598
+ #: includes/settings/tabs/wps-externals.php:235
2599
+ #: includes/settings/tabs/wps-externals.php:259
2600
  #: includes/settings/tabs/wps-general.php:76
2601
  #: includes/settings/tabs/wps-general.php:92
2602
  #: includes/settings/tabs/wps-general.php:116
2612
  #: includes/settings/tabs/wps-general.php:286
2613
  #: includes/settings/tabs/wps-general.php:325
2614
  #: includes/settings/tabs/wps-general.php:341
 
 
 
2615
  #: includes/settings/tabs/wps-maintenance.php:40
2616
  #: includes/settings/tabs/wps-maintenance.php:64
2617
  #: includes/settings/tabs/wps-notifications.php:69
2626
  msgid "Active"
2627
  msgstr ""
2628
 
2629
+ #: includes/settings/tabs/wps-externals.php:173
2630
  msgid "The browscap database will be downloaded and used to detect robots."
2631
  msgstr ""
2632
 
2633
+ #: includes/settings/tabs/wps-externals.php:179
2634
  msgid "Update browscap Info"
2635
  msgstr ""
2636
 
2637
+ #: includes/settings/tabs/wps-externals.php:184
2638
  msgid "Download browscap Database"
2639
  msgstr ""
2640
 
2641
+ #: includes/settings/tabs/wps-externals.php:65
2642
+ #: includes/settings/tabs/wps-externals.php:185
2643
+ #: includes/settings/tabs/wps-externals.php:248
2644
  msgid "Save changes on this page to download the update."
2645
  msgstr ""
2646
 
2647
+ #: includes/settings/tabs/wps-externals.php:191
2648
  msgid "Schedule weekly update of browscap DB"
2649
  msgstr ""
2650
 
2651
+ #: includes/settings/tabs/wps-externals.php:79
2652
+ #: includes/settings/tabs/wps-externals.php:199
2653
+ #: includes/settings/tabs/wps-externals.php:262
2654
  msgid "Next update will be"
2655
  msgstr ""
2656
 
2657
+ #: includes/settings/tabs/wps-externals.php:214
2658
  msgid "Download of the browscap database will be scheduled for once a week."
2659
  msgstr ""
2660
 
languages/wp_statistics-ar.mo CHANGED
Binary file
languages/wp_statistics-ar.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2015-05-30 12:12:23+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -10,33 +10,97 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  #: includes/settings/tabs/wps-exclusions.php:148
14
  msgid "Treat corrupt browser info as a bot"
15
- msgstr ""
16
 
17
  #: includes/log/exclusions.php:24
18
  msgid "404 Pages"
19
- msgstr ""
20
 
21
  #: includes/log/top-visitors.php:26
22
  msgid "Date"
23
- msgstr ""
24
 
25
  #: includes/settings/tabs/wps-exclusions.php:151
26
  msgid "Treat any visitor with corrupt browser info (missing IP address or empty user agent string) as a robot."
27
- msgstr ""
28
 
29
  #: includes/settings/tabs/wps-exclusions.php:215
30
  msgid "Excluded 404 pages"
31
- msgstr ""
32
 
33
  #: includes/settings/tabs/wps-exclusions.php:218
34
  msgid "Exclude any URL that returns a \"404 - Not Found\" message."
35
- msgstr ""
36
 
37
  #: wps-updates.php:29
38
  msgid "Error creating GeoIP database directory, make sure your web server has permissions to create directories in : %s"
39
- msgstr ""
40
 
41
  #: includes/settings/tabs/wps-general.php:281
42
  msgid "Add page title to empty search words"
@@ -158,7 +222,7 @@ msgstr "مجموع كل الوقت"
158
  msgid "Have you thought about donating to WP Statistics?"
159
  msgstr "هل فكرت في التبرع لإحصائيات ووردبريس؟"
160
 
161
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:362
162
  msgid "Donate"
163
  msgstr "التبرع"
164
 
@@ -194,11 +258,11 @@ msgstr "عدد المقال"
194
  msgid "Time Frame"
195
  msgstr "الإطار الزمني"
196
 
197
- #: includes/functions/functions.php:929
198
  msgid "to"
199
  msgstr "إلى"
200
 
201
- #: includes/functions/functions.php:929 includes/log/top-visitors.php:29
202
  msgid "Go"
203
  msgstr "إذهب"
204
 
@@ -242,11 +306,11 @@ msgstr "التثبيتات القديمة من احصائيات ووردبريس
242
  msgid "Filtered by"
243
  msgstr "تمت تصفيتها من قبل"
244
 
245
- #: includes/functions/functions.php:922 includes/functions/functions.php:925
246
  msgid "Range"
247
  msgstr "المدى"
248
 
249
- #: includes/functions/functions.php:929 includes/log/top-visitors.php:29
250
  msgid "MM/DD/YYYY"
251
  msgstr "MM/DD/YYYY"
252
 
@@ -290,27 +354,27 @@ msgstr "آخر 30 يوم (شهر)"
290
  msgid "Last 7 Days (Week)"
291
  msgstr "آخر 7 أيام (أسبوع)"
292
 
293
- #: includes/functions/functions.php:403
294
  msgid "Yahoo!"
295
  msgstr "ياهو!"
296
 
297
- #: includes/functions/functions.php:404
298
  msgid "Yandex"
299
  msgstr "ياندكس"
300
 
301
- #: includes/functions/functions.php:400
302
  msgid "clearch.org"
303
  msgstr "clearch.org"
304
 
305
- #: includes/functions/functions.php:401
306
  msgid "DuckDuckGo"
307
  msgstr "دك دك غو"
308
 
309
- #: includes/functions/functions.php:399
310
  msgid "Bing"
311
  msgstr "بينج"
312
 
313
- #: includes/functions/functions.php:398
314
  msgid "Baidu"
315
  msgstr "بايدو"
316
 
@@ -413,8 +477,8 @@ msgid "For each visit to account for several hits. Currently %s."
413
  msgstr "حساب توجيه النقرات لكل زائر. حالياً %s."
414
 
415
  #: includes/settings/tabs/wps-general.php:177
416
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:351
417
- #: wp-statistics.php:427
418
  msgid "Pages"
419
  msgstr "الصفحات"
420
 
@@ -498,75 +562,75 @@ msgstr "تتضمن الاجماليات"
498
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
499
  msgstr "إضافة سطر مجموع المخططات مع قيم متعددة، مثل إحالات محرك البحث"
500
 
501
- #: includes/settings/tabs/wps-geoip.php:27
502
  msgid "GeoIP settings"
503
  msgstr "إعدادات GeoIP"
504
 
505
- #: includes/settings/tabs/wps-geoip.php:32
506
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
507
  msgstr "خدمات الموقع IP المقدمة من البيانات GeoLite2 التي أنشأتها MaxMind، المتاحة من %s."
508
 
509
- #: includes/settings/tabs/wps-geoip.php:42
510
  msgid "GeoIP collection"
511
  msgstr "مجموعة GeoIP"
512
 
513
- #: includes/settings/tabs/wps-geoip.php:48
514
  msgid "For get more information and location (country) from visitor, enable this feature."
515
  msgstr "للحصول على مزيد من المعلومات، والمكان (البلد) من الزوار، تمكين هذه الميزة."
516
 
517
- #: includes/settings/tabs/wps-geoip.php:54
518
  msgid "Update GeoIP Info"
519
  msgstr "تحديث معلومات GeoIP"
520
 
521
- #: includes/settings/tabs/wps-geoip.php:59
522
  msgid "Download GeoIP Database"
523
  msgstr "تحميل قاعدة بيانات GeoIP"
524
 
525
- #: includes/settings/tabs/wps-geoip.php:66
526
  msgid "Schedule monthly update of GeoIP DB"
527
  msgstr "جدولة التحديث الشهري لGeoIP DB"
528
 
529
- #: includes/settings/tabs/wps-geoip.php:92
530
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
531
  msgstr "سيتم جدولة التحميل من قاعدة البيانات GeoIP لمدة 2 يوما بعد يوم الثلاثاء الأول من الشهر."
532
 
533
- #: includes/settings/tabs/wps-geoip.php:93
534
  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)."
535
  msgstr "وهذا الخيار أيضا تحميل قاعدة البيانات إذا كان حجم الملف المحلي أقل من 1K (الذي يعني عادة أن طرف البرنامج التي تأتي مع البرنامج المساعد لا يزال في مكانه)."
536
 
537
- #: includes/settings/tabs/wps-geoip.php:99
538
  msgid "Populate missing GeoIP after update of GeoIP DB"
539
  msgstr "تعبئة GeoIP في عداد المفقودين بعد التحديث من GeoIP DB"
540
 
541
- #: includes/settings/tabs/wps-geoip.php:105
542
  msgid "Update any missing GeoIP data after downloading a new database."
543
  msgstr "تحديث أي بيانات GeoIP مفقودة بعد تحميل قاعدة البيانات الجديدة."
544
 
545
- #: includes/settings/tabs/wps-geoip.php:111
546
  msgid "Country code for private IP addresses"
547
  msgstr "رمز البلد لعناوين IP خاصة"
548
 
549
- #: includes/settings/tabs/wps-geoip.php:116
550
  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."
551
  msgstr "المعيار اثنين الرمز الدولي بلد إلكتروني (أي الولايات المتحدة = الولايات المتحدة الأمريكية، CA = كندا، الخ) ل(غير قابل للتوجيه) عناوين IP خاصة (أي. 10.0.0.1، 192.158.1.1، 127.0.0.1، وما إلى ذلك). استخدام \"000\" (ثلاثة أصفار) لاستخدام \"غير معروف\"، كما رمز البلد."
552
 
553
- #: includes/settings/tabs/wps-geoip.php:127
554
  msgid "GeoIP collection is disabled due to the following reasons:"
555
  msgstr "تم تعطيل مجموعة GeoIP وذلك للأسباب التالية:"
556
 
557
- #: includes/settings/tabs/wps-geoip.php:130
558
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
559
  msgstr "جمع GeoIP يتطلب PHP %s أو أعلى، يتم تعطيله حاليا نظرا لكونها نسخة PHP مثبتة"
560
 
561
- #: includes/settings/tabs/wps-geoip.php:135
562
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
563
  msgstr "مجموعة GeoIP تتطلب الملحق cURL PHP و هو غير مفعل على إصدار الـ PHP!"
564
 
565
- #: includes/settings/tabs/wps-geoip.php:141
566
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
567
  msgstr "مجموعة GeoIP تتطلب الملحق BC Math PHP و هو غير مفعل على إصدار الـ PHP!"
568
 
569
- #: includes/settings/tabs/wps-geoip.php:147
570
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
571
  msgstr "تم الكشف عن الوضع الآمن في PHP! مجموعة GeoIP غير معتمدة عند تمكين الوضع الآمن في PHP!"
572
 
@@ -626,7 +690,6 @@ msgstr "إرسال تقرير كلما يتم تحديث browscap.ini."
626
 
627
  #: includes/log/exclusions.php:24
628
  #: includes/settings/tabs/wps-notifications.php:76
629
- #: includes/settings/wps-settings.php:111
630
  msgid "GeoIP"
631
  msgstr "GeoIP"
632
 
@@ -651,7 +714,7 @@ msgid "Send a report whenever the plugin is upgraded."
651
  msgstr "إرسال تقرير كلما تتم ترقية البرنامج المساعد."
652
 
653
  #: includes/settings/tabs/wps-notifications.php:111
654
- #: includes/settings/tabs/wps-notifications.php:116 schedule.php:199
655
  msgid "Statistical reporting"
656
  msgstr "تقارير الإحصائيات"
657
 
@@ -700,7 +763,7 @@ msgid "Any shortcode supported by your installation of WordPress, include all sh
700
  msgstr "أي رمز قصير بدعم من مثبت ووردبريس، وتشمل جميع الاكواد المختصرة لاحصائيات ووردبريس (انظر دليل المشرف للحصول على قائمة رموز المتاحة) معتمدة في نص الرسالة. وهنا بعض الأمثلة:"
701
 
702
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
703
- #: widget.php:245 wp-statistics.php:532
704
  msgid "User Online"
705
  msgstr "المتواجدين الآن"
706
 
@@ -743,7 +806,7 @@ msgid "Summary Statistics"
743
  msgstr "ملخص الاحصائيات"
744
 
745
  #: includes/settings/tabs/wps-overview-display.php:28
746
- #: includes/settings/wps-settings.php:115
747
  msgid "About"
748
  msgstr "حول"
749
 
@@ -793,7 +856,7 @@ msgstr "تعطيل القطع لمحرر الصفحة/المشاركة"
793
  msgid "Map type"
794
  msgstr "نوع الخريطة"
795
 
796
- #: includes/functions/functions.php:402
797
  #: includes/settings/tabs/wps-overview-display.php:128
798
  msgid "Google"
799
  msgstr "جوجل"
@@ -903,35 +966,30 @@ msgstr "إزالة"
903
  msgid "Remove data and settings, this action cannot be undone."
904
  msgstr "إزالة البيانات والإعدادات، لا يمكنك التراجع مستقبلاً."
905
 
906
- #: includes/settings/wps-settings.php:106
907
  msgid "General"
908
  msgstr "عام"
909
 
910
- #: includes/settings/wps-settings.php:107
911
  msgid "Notifications"
912
  msgstr "الإشعارات"
913
 
914
- #: includes/settings/wps-settings.php:108
915
  msgid "Dashboard/Overview"
916
  msgstr "اللوحة/نظرة عامة"
917
 
918
- #: includes/settings/wps-settings.php:112
919
- msgid "browscap"
920
- msgstr "browscap"
921
-
922
- #: includes/settings/wps-settings.php:113
923
  msgid "Maintenance"
924
  msgstr "صيانة"
925
 
926
- #: includes/settings/wps-settings.php:114
927
  msgid "Removal"
928
  msgstr "الإزالة"
929
 
930
  #: includes/settings/tabs/wps-access-level.php:85
931
- #: includes/settings/tabs/wps-browscap.php:81
932
  #: includes/settings/tabs/wps-exclusions.php:234
 
933
  #: includes/settings/tabs/wps-general.php:349
934
- #: includes/settings/tabs/wps-geoip.php:158
935
  #: includes/settings/tabs/wps-maintenance.php:84
936
  #: includes/settings/tabs/wps-notifications.php:201
937
  #: includes/settings/tabs/wps-overview-display.php:388
@@ -951,7 +1009,7 @@ msgstr "مرة كل 2 أسابيع"
951
  msgid "Once Every 4 Weeks"
952
  msgstr "مرة كل 4 أسابيع"
953
 
954
- #: widget.php:14 wp-statistics.php:342 wp-statistics.php:380
955
  msgid "Statistics"
956
  msgstr "الاحصائيات"
957
 
@@ -1023,7 +1081,7 @@ msgstr "الأسم"
1023
  msgid "Items"
1024
  msgstr "البنود"
1025
 
1026
- #: widget.php:254 wp-statistics.php:557
1027
  msgid "Yesterday visit"
1028
  msgstr "زيارات الأمس"
1029
 
@@ -1051,13 +1109,13 @@ msgstr "نسخة PHP الحالي هو"
1051
  msgid "WP Statistics has been removed, please disable and delete it."
1052
  msgstr "تمت إزالة احصائيات ووردبريس، يرجى التعطيل والحذف."
1053
 
1054
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1055
  #. Plugin Name of the plugin/theme
1056
  #: wp-statistics.php:37
1057
  msgid "WP Statistics"
1058
  msgstr "احصائيات ووردبريس"
1059
 
1060
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1061
  #. Description of the plugin/theme
1062
  #: wp-statistics.php:38
1063
  msgid "Complete statistics for your WordPress site."
@@ -1087,99 +1145,99 @@ msgstr "مجموعة GeoIP غير نشطه، يرجى الذهاب إلى %s و
1087
  msgid "Setting page > GeoIP"
1088
  msgstr "صفحة الإعدادات > GeoIP"
1089
 
1090
- #: wp-statistics.php:249 wp-statistics.php:361 wp-statistics.php:434
1091
  msgid "Settings"
1092
  msgstr "الإعدادات"
1093
 
1094
- #: wp-statistics.php:261
1095
  msgid "Click here to visit the plugin on WordPress.org"
1096
  msgstr "انقر هنا لزيارة صفحة الإضافة على WordPress.org"
1097
 
1098
- #: wp-statistics.php:261
1099
  msgid "Visit WordPress.org page"
1100
  msgstr "زيارة صفحة WordPress.org"
1101
 
1102
- #: wp-statistics.php:264
1103
  msgid "Click here to rate and review this plugin on WordPress.org"
1104
  msgstr "أنقر هنا لمراجهة وتقييم الإضافة على WordPress.org"
1105
 
1106
- #: wp-statistics.php:264
1107
  msgid "Rate this plugin"
1108
  msgstr "ضع تقييمك لهذه الاضافة"
1109
 
1110
- #: wp-statistics.php:308
1111
  msgid "WP Statistics - Hits"
1112
  msgstr "احصائيات ووردبريس - الزيارات"
1113
 
1114
- #: wp-statistics.php:345 wp-statistics.php:383 wp-statistics.php:421
1115
  msgid "Overview"
1116
  msgstr "نظرة عامة"
1117
 
1118
- #: wp-statistics.php:350 wp-statistics.php:426
1119
  msgid "Online"
1120
  msgstr "المتواجدون"
1121
 
1122
- #: wp-statistics.php:352 wp-statistics.php:428
1123
  msgid "Referrers"
1124
  msgstr "الدعوات"
1125
 
1126
- #: shortcode.php:135 wp-statistics.php:353 wp-statistics.php:429
1127
  msgid "Searches"
1128
  msgstr "عمليات البحث"
1129
 
1130
- #: wp-statistics.php:354 wp-statistics.php:430
1131
  msgid "Search Words"
1132
  msgstr "كلمات البحث"
1133
 
1134
- #: wp-statistics.php:355 wp-statistics.php:431
1135
  msgid "Top Visitors Today"
1136
  msgstr "أعلى زوار اليوم"
1137
 
1138
- #: wp-statistics.php:360 wp-statistics.php:433
1139
  msgid "Optimization"
1140
  msgstr "التحسين"
1141
 
1142
- #: wp-statistics.php:366 wp-statistics.php:397
1143
  msgid "Manual"
1144
  msgstr "الدليل"
1145
 
1146
- #: wp-statistics.php:412
1147
  msgid "Site"
1148
  msgstr "موقع"
1149
 
1150
- #: wp-statistics.php:413
1151
  msgid "Options"
1152
  msgstr "خيارات"
1153
 
1154
- #: wp-statistics.php:539
1155
  msgid "Today visitor"
1156
  msgstr "زوار اليوم"
1157
 
1158
- #: wp-statistics.php:545
1159
  msgid "Today visit"
1160
  msgstr "زيارات اليوم"
1161
 
1162
- #: wp-statistics.php:551
1163
  msgid "Yesterday visitor"
1164
  msgstr "زيارات الأمس"
1165
 
1166
- #: wp-statistics.php:563
1167
  msgid "View Stats"
1168
  msgstr "عرض الإحصائيات"
1169
 
1170
- #: wp-statistics.php:587
1171
  msgid "Download ODF file"
1172
  msgstr "تحميل ملف ODF"
1173
 
1174
- #: wp-statistics.php:588
1175
  msgid "Download HTML file"
1176
  msgstr "تحميل ملف HTML"
1177
 
1178
- #: wp-statistics.php:592
1179
  msgid "Manual file not found."
1180
  msgstr "لم يتم العثور على ملف الدليل."
1181
 
1182
- #: wp-statistics.php:659 wp-statistics.php:770 wp-statistics.php:804
1183
  msgid "You do not have sufficient permissions to access this page."
1184
  msgstr "ليس لديك الصلاحيات الكافية لدخول هذه الصفحة."
1185
 
@@ -1187,7 +1245,7 @@ msgstr "ليس لديك الصلاحيات الكافية لدخول هذه ال
1187
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
1188
  msgstr "جداول البرنامج المساعد لا وجود لها في قاعدة البيانات! يرجى إعادة تشغيل %s التثبيت الروتيني %s."
1189
 
1190
- #: wp-statistics.php:237
1191
  msgid "WP Statistics %s installed on"
1192
  msgstr "احصائيات ووردبريس %s مثبتة على"
1193
 
@@ -1235,9 +1293,9 @@ msgstr "browscap بالفعل في النسخة الحالية!"
1235
  msgid "Browscap.ini update on"
1236
  msgstr "تحديث Browscap.ini على"
1237
 
1238
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1239
  #. Plugin URI of the plugin/theme
1240
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1241
  #. Author URI of the plugin/theme
1242
  msgid "http://wp-statistics.com/"
1243
  msgstr "http://wp-statistics.com/"
@@ -1364,8 +1422,8 @@ msgid "Click to toggle"
1364
  msgstr "انقر للتبديل"
1365
 
1366
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1367
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:346
1368
- #: wp-statistics.php:422
1369
  msgid "Browsers"
1370
  msgstr "المتصفحات"
1371
 
@@ -1394,35 +1452,35 @@ msgstr "تنبيه: لم يتم تعيين الاستثناءات حاليا ل
1394
  msgid "Exclusions Statistics"
1395
  msgstr "استثناءات الاحصائيات"
1396
 
1397
- #: includes/functions/functions.php:879
1398
  msgid "10 Days"
1399
  msgstr "10 أيام"
1400
 
1401
- #: includes/functions/functions.php:879
1402
  msgid "20 Days"
1403
  msgstr "20 يوم"
1404
 
1405
- #: includes/functions/functions.php:879
1406
  msgid "30 Days"
1407
  msgstr "30 يو م"
1408
 
1409
- #: includes/functions/functions.php:879
1410
  msgid "2 Months"
1411
  msgstr "شهرين"
1412
 
1413
- #: includes/functions/functions.php:879
1414
  msgid "3 Months"
1415
  msgstr "3 أشهر"
1416
 
1417
- #: includes/functions/functions.php:879
1418
  msgid "6 Months"
1419
  msgstr "6 أشهر"
1420
 
1421
- #: includes/functions/functions.php:879
1422
  msgid "9 Months"
1423
  msgstr "9 أشهر"
1424
 
1425
- #: includes/functions/functions.php:879
1426
  msgid "1 Year"
1427
  msgstr "سنة"
1428
 
@@ -1471,28 +1529,28 @@ msgstr "زائر"
1471
  msgid "Latest Search Word Statistics"
1472
  msgstr "أحصائيات أحدث كلمات البحث"
1473
 
1474
- #: includes/log/last-search.php:100 includes/log/last-visitor.php:101
1475
  #: includes/log/online.php:50 includes/log/widgets/google.map.php:84
1476
  #: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
1477
- #: includes/log/widgets/words.php:36
1478
  msgid "#hash#"
1479
  msgstr "#hash#"
1480
 
1481
- #: includes/log/last-search.php:105 includes/log/last-visitor.php:106
1482
  #: includes/log/online.php:55 includes/log/top-referring.php:71
1483
- #: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:43
1484
  #: includes/settings/tabs/wps-overview-display.php:33
1485
  #: includes/settings/tabs/wps-overview-display.php:113
1486
  msgid "Map"
1487
  msgstr "خريطة"
1488
 
1489
- #: includes/log/last-search.php:142 includes/log/last-visitor.php:139
1490
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1491
  #: includes/log/top-referring.php:125
1492
  msgid "Page"
1493
  msgstr "صفحة"
1494
 
1495
- #: includes/log/last-search.php:142 includes/log/last-visitor.php:139
1496
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1497
  #: includes/log/top-referring.php:125
1498
  msgid "From"
@@ -1681,8 +1739,8 @@ msgid "Time: %s"
1681
  msgstr "التوقيت: %s"
1682
 
1683
  #: includes/log/widgets/top.visitors.php:31
1684
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:273
1685
- #: wp-statistics.php:349 wp-statistics.php:425
1686
  msgid "Hits"
1687
  msgstr "نقرات"
1688
 
@@ -1724,11 +1782,11 @@ msgstr "%s تم حذف بيانات المنصة بنجاح."
1724
  msgid "No platform data found to remove!"
1725
  msgstr "لا توجد بيانات منصة لإزالتها!"
1726
 
1727
- #: includes/functions/functions.php:967
1728
  msgid "%s table data deleted successfully."
1729
  msgstr "%s تم حذف بيانات الجدول بنجاح."
1730
 
1731
- #: includes/functions/functions.php:971
1732
  msgid "Error, %s not emptied!"
1733
  msgstr "خطأ, %s لم يتم التفريغ!"
1734
 
@@ -1754,7 +1812,7 @@ msgstr "فهرس قاعدة بيانات"
1754
 
1755
  #: includes/optimization/tabs/wps-optimization-database.php:25
1756
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1757
- #: wp-statistics.php:347 wp-statistics.php:423
1758
  msgid "Countries"
1759
  msgstr "الدول"
1760
 
@@ -1770,6 +1828,7 @@ msgid "Older installs of WP Statistics allow for duplicate entries in the visito
1770
  msgstr "المنصب القديم لإضافة احصائيات ووردبريس تسمح للإدخالات المتكررة في جداول الزوار في بعض الحالات. بتثبيت أحدث منتج يجب تواجد الفهرس في الجداول. لإنشاء فهرس لمنتج قديم يجب أن يتم حذف الإدخالات المكررة أولاً. أنقر على \"تحديث الآن\" وسيقوم تلقائيا بفحص جدول الزوار وحذف كافة الإدخالات المكررة وإضافة الفهرس."
1771
 
1772
  #: includes/optimization/tabs/wps-optimization-database.php:41
 
1773
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1774
  msgstr "هذه العملية يمكن أن تستغرق وقتا طويلا على تثبيت مع العديد من الصفوف في جدول الزوار."
1775
 
@@ -1779,11 +1838,12 @@ msgstr "الإصدارات القديمة من منتج احصائيات وور
1779
 
1780
  #: includes/optimization/tabs/wps-optimization-database.php:47
1781
  #: includes/optimization/tabs/wps-optimization-database.php:77
 
1782
  msgid "Congratulations, your installation is already up to date, nothing to do."
1783
  msgstr "تهانينا، التثبيت موجود بالفعل حتى الآن، لا شيء للقيام به."
1784
 
1785
  #: includes/optimization/tabs/wps-optimization-export.php:8
1786
- #: includes/optimization/wps-optimization.php:183
1787
  msgid "Export"
1788
  msgstr "تصدير"
1789
 
@@ -1836,7 +1896,7 @@ msgstr "ملاحظة: كلما قمت بتطهير قاعدة البيانات
1836
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1837
  #: includes/settings/tabs/wps-general.php:138
1838
  #: includes/settings/tabs/wps-general.php:143 shortcode.php:133
1839
- #: wp-statistics.php:356 wp-statistics.php:432
1840
  msgid "Visitors"
1841
  msgstr "الزوار"
1842
 
@@ -2151,23 +2211,23 @@ msgstr "استبدال عناوين IP مع قيم التجزئة."
2151
  msgid "Install routine complete."
2152
  msgstr "التثبيت الكامل الروتيني."
2153
 
2154
- #: includes/optimization/wps-optimization.php:182
2155
  msgid "Resources/Information"
2156
  msgstr "الموارد/معلومات"
2157
 
2158
- #: includes/optimization/wps-optimization.php:184
2159
  msgid "Purging"
2160
  msgstr "تطهير"
2161
 
2162
- #: includes/optimization/wps-optimization.php:185
2163
  msgid "Database"
2164
  msgstr "قاعدة البيانات"
2165
 
2166
- #: includes/optimization/wps-optimization.php:186
2167
  msgid "Updates"
2168
  msgstr "تحديثات"
2169
 
2170
- #: includes/optimization/wps-optimization.php:187
2171
  msgid "Historical"
2172
  msgstr "التاريخي"
2173
 
@@ -2317,7 +2377,7 @@ msgid "This is the honey pot for WP Statistics to use, do not delete."
2317
  msgstr "هذا هو وعاء العسل لاحصائيات ووردبريس المستخدم, لا تحذف"
2318
 
2319
  #: includes/settings/tabs/wps-access-level.php:23
2320
- #: includes/settings/wps-settings.php:109
2321
  msgid "Access Levels"
2322
  msgstr "مستويات الوصول"
2323
 
@@ -2350,8 +2410,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2350
  msgstr "إذا كنت في حاجة الى حل أكثر قوة لتفويض الوصول التي قد ترغب في النظر في %s الدليل المساعد لووردبريس."
2351
 
2352
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2353
- #: includes/settings/wps-settings.php:110 wp-statistics.php:348
2354
- #: wp-statistics.php:424
2355
  msgid "Exclusions"
2356
  msgstr "الاستثناءات"
2357
 
@@ -2522,16 +2582,21 @@ msgstr "آر إس إس مستبعدة"
2522
  msgid "Exclude the RSS feeds for registering as a hit."
2523
  msgstr "استبعاد آر إس إس لتسجيل كما ضرب."
2524
 
2525
- #: includes/settings/tabs/wps-browscap.php:22
2526
  msgid "browscap settings"
2527
  msgstr "إعدادات browscap"
2528
 
2529
- #: includes/settings/tabs/wps-browscap.php:27
2530
  msgid "browscap usage"
2531
  msgstr "استخدام browscap"
2532
 
2533
- #: includes/settings/tabs/wps-browscap.php:32
2534
- #: includes/settings/tabs/wps-browscap.php:56
 
 
 
 
 
2535
  #: includes/settings/tabs/wps-general.php:76
2536
  #: includes/settings/tabs/wps-general.php:92
2537
  #: includes/settings/tabs/wps-general.php:116
@@ -2547,9 +2612,6 @@ msgstr "استخدام browscap"
2547
  #: includes/settings/tabs/wps-general.php:286
2548
  #: includes/settings/tabs/wps-general.php:325
2549
  #: includes/settings/tabs/wps-general.php:341
2550
- #: includes/settings/tabs/wps-geoip.php:47
2551
- #: includes/settings/tabs/wps-geoip.php:71
2552
- #: includes/settings/tabs/wps-geoip.php:104
2553
  #: includes/settings/tabs/wps-maintenance.php:40
2554
  #: includes/settings/tabs/wps-maintenance.php:64
2555
  #: includes/settings/tabs/wps-notifications.php:69
@@ -2564,33 +2626,35 @@ msgstr "استخدام browscap"
2564
  msgid "Active"
2565
  msgstr "تفعيل"
2566
 
2567
- #: includes/settings/tabs/wps-browscap.php:33
2568
  msgid "The browscap database will be downloaded and used to detect robots."
2569
  msgstr "سيتم تحميل قاعدة البيانات browscap وتستخدم للكشف عن الروبوتات."
2570
 
2571
- #: includes/settings/tabs/wps-browscap.php:39
2572
  msgid "Update browscap Info"
2573
  msgstr "تحديث معلومات browscap"
2574
 
2575
- #: includes/settings/tabs/wps-browscap.php:44
2576
  msgid "Download browscap Database"
2577
  msgstr "تحميل قاعدة بيانات browscap"
2578
 
2579
- #: includes/settings/tabs/wps-browscap.php:45
2580
- #: includes/settings/tabs/wps-geoip.php:60
 
2581
  msgid "Save changes on this page to download the update."
2582
  msgstr "حفظ التغييرات على هذه الصفحة لتحميل التحديث."
2583
 
2584
- #: includes/settings/tabs/wps-browscap.php:51
2585
  msgid "Schedule weekly update of browscap DB"
2586
  msgstr "جدولة التحديث الأسبوعي لـ browscap DB"
2587
 
2588
- #: includes/settings/tabs/wps-browscap.php:59
2589
- #: includes/settings/tabs/wps-geoip.php:74
 
2590
  msgid "Next update will be"
2591
  msgstr "التحديث القادم سيكون في"
2592
 
2593
- #: includes/settings/tabs/wps-browscap.php:74
2594
  msgid "Download of the browscap database will be scheduled for once a week."
2595
  msgstr "سيتم تحديد موعد تحميل قاعدة بيانات browscap لمرة واحدة في الأسبوع."
2596
 
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2015-07-05 15:47:10+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: includes/optimization/wps-optimization.php:173
14
+ msgid "Search table conversion complete, %d rows added."
15
+ msgstr ""
16
+
17
+ #: includes/optimization/tabs/wps-optimization-database.php:107
18
+ msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion."
19
+ msgstr ""
20
+
21
+ #: includes/optimization/tabs/wps-optimization-database.php:86
22
+ msgid "Search Table"
23
+ msgstr ""
24
+
25
+ #: includes/optimization/tabs/wps-optimization-database.php:91
26
+ msgid "Convert"
27
+ msgstr ""
28
+
29
+ #: includes/optimization/tabs/wps-optimization-database.php:100
30
+ msgid "Convert Now!"
31
+ msgstr ""
32
+
33
+ #: includes/optimization/tabs/wps-optimization-database.php:101
34
+ msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion, however the old data must first be converted to the new format before it can be used."
35
+ msgstr ""
36
+
37
+ #: includes/log/exclusions.php:24
38
+ msgid "Referrer Spam"
39
+ msgstr ""
40
+
41
+ #: includes/settings/tabs/wps-externals.php:277
42
+ msgid "Download of the Piwik Referrer Spam Blacklist database will be scheduled for once a week."
43
+ msgstr ""
44
+
45
+ #: includes/settings/wps-settings.php:105
46
+ msgid "Externals"
47
+ msgstr ""
48
+
49
+ #: includes/settings/tabs/wps-externals.php:219
50
+ msgid "Piwik Referrer Spam Blacklist settings"
51
+ msgstr ""
52
+
53
+ #: includes/settings/tabs/wps-externals.php:254
54
+ msgid "Schedule weekly update of Piwik Referrer Spam Blacklist DB"
55
+ msgstr ""
56
+
57
+ #: includes/settings/tabs/wps-externals.php:247
58
+ msgid "Download Piwik Referrer Spam Blacklist Database"
59
+ msgstr ""
60
+
61
+ #: includes/settings/tabs/wps-externals.php:242
62
+ msgid "Update Piwik Referrer Spam Blacklist Info"
63
+ msgstr ""
64
+
65
+ #: includes/settings/tabs/wps-externals.php:236
66
+ msgid "The Piwik Referrer Spam Blacklist database will be downloaded and used to detect referrer spam."
67
+ msgstr ""
68
+
69
+ #: includes/settings/tabs/wps-externals.php:224
70
+ msgid "Referrer spam blacklist is provided by Piwik, available from %s."
71
+ msgstr ""
72
+
73
+ #: includes/settings/tabs/wps-externals.php:230
74
+ msgid "Piwik Referrer Spam Blacklist usage"
75
+ msgstr ""
76
+
77
  #: includes/settings/tabs/wps-exclusions.php:148
78
  msgid "Treat corrupt browser info as a bot"
79
+ msgstr "علاج معلومات المتصفح فاسدة بوت"
80
 
81
  #: includes/log/exclusions.php:24
82
  msgid "404 Pages"
83
+ msgstr "404 صفحات"
84
 
85
  #: includes/log/top-visitors.php:26
86
  msgid "Date"
87
+ msgstr "تاريخ"
88
 
89
  #: includes/settings/tabs/wps-exclusions.php:151
90
  msgid "Treat any visitor with corrupt browser info (missing IP address or empty user agent string) as a robot."
91
+ msgstr "علاج أي زائر مع معلومات الفاسدة المتصفح (عنوان IP مفقود أو فارغة سلسلة عامل المستخدم) على الروبوت."
92
 
93
  #: includes/settings/tabs/wps-exclusions.php:215
94
  msgid "Excluded 404 pages"
95
+ msgstr "استبعاد 404 صفحات"
96
 
97
  #: includes/settings/tabs/wps-exclusions.php:218
98
  msgid "Exclude any URL that returns a \"404 - Not Found\" message."
99
+ msgstr "استبعاد أي URL التي تقوم بإرجاع - رسالة &quot;404 لم يتم العثور على&quot;."
100
 
101
  #: wps-updates.php:29
102
  msgid "Error creating GeoIP database directory, make sure your web server has permissions to create directories in : %s"
103
+ msgstr "خطأ في إنشاء GeoIP دليل قاعدة البيانات، تأكد من خادم الويب الخاص بك لديه أذونات لإنشاء الدلائل في:٪ الصورة"
104
 
105
  #: includes/settings/tabs/wps-general.php:281
106
  msgid "Add page title to empty search words"
222
  msgid "Have you thought about donating to WP Statistics?"
223
  msgstr "هل فكرت في التبرع لإحصائيات ووردبريس؟"
224
 
225
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
226
  msgid "Donate"
227
  msgstr "التبرع"
228
 
258
  msgid "Time Frame"
259
  msgstr "الإطار الزمني"
260
 
261
+ #: includes/functions/functions.php:981
262
  msgid "to"
263
  msgstr "إلى"
264
 
265
+ #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
266
  msgid "Go"
267
  msgstr "إذهب"
268
 
306
  msgid "Filtered by"
307
  msgstr "تمت تصفيتها من قبل"
308
 
309
+ #: includes/functions/functions.php:974 includes/functions/functions.php:977
310
  msgid "Range"
311
  msgstr "المدى"
312
 
313
+ #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
314
  msgid "MM/DD/YYYY"
315
  msgstr "MM/DD/YYYY"
316
 
354
  msgid "Last 7 Days (Week)"
355
  msgstr "آخر 7 أيام (أسبوع)"
356
 
357
+ #: includes/functions/functions.php:405
358
  msgid "Yahoo!"
359
  msgstr "ياهو!"
360
 
361
+ #: includes/functions/functions.php:406
362
  msgid "Yandex"
363
  msgstr "ياندكس"
364
 
365
+ #: includes/functions/functions.php:402
366
  msgid "clearch.org"
367
  msgstr "clearch.org"
368
 
369
+ #: includes/functions/functions.php:403
370
  msgid "DuckDuckGo"
371
  msgstr "دك دك غو"
372
 
373
+ #: includes/functions/functions.php:401
374
  msgid "Bing"
375
  msgstr "بينج"
376
 
377
+ #: includes/functions/functions.php:400
378
  msgid "Baidu"
379
  msgstr "بايدو"
380
 
477
  msgstr "حساب توجيه النقرات لكل زائر. حالياً %s."
478
 
479
  #: includes/settings/tabs/wps-general.php:177
480
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
481
+ #: wp-statistics.php:431
482
  msgid "Pages"
483
  msgstr "الصفحات"
484
 
562
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
563
  msgstr "إضافة سطر مجموع المخططات مع قيم متعددة، مثل إحالات محرك البحث"
564
 
565
+ #: includes/settings/tabs/wps-externals.php:32
566
  msgid "GeoIP settings"
567
  msgstr "إعدادات GeoIP"
568
 
569
+ #: includes/settings/tabs/wps-externals.php:37
570
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
571
  msgstr "خدمات الموقع IP المقدمة من البيانات GeoLite2 التي أنشأتها MaxMind، المتاحة من %s."
572
 
573
+ #: includes/settings/tabs/wps-externals.php:47
574
  msgid "GeoIP collection"
575
  msgstr "مجموعة GeoIP"
576
 
577
+ #: includes/settings/tabs/wps-externals.php:53
578
  msgid "For get more information and location (country) from visitor, enable this feature."
579
  msgstr "للحصول على مزيد من المعلومات، والمكان (البلد) من الزوار، تمكين هذه الميزة."
580
 
581
+ #: includes/settings/tabs/wps-externals.php:59
582
  msgid "Update GeoIP Info"
583
  msgstr "تحديث معلومات GeoIP"
584
 
585
+ #: includes/settings/tabs/wps-externals.php:64
586
  msgid "Download GeoIP Database"
587
  msgstr "تحميل قاعدة بيانات GeoIP"
588
 
589
+ #: includes/settings/tabs/wps-externals.php:71
590
  msgid "Schedule monthly update of GeoIP DB"
591
  msgstr "جدولة التحديث الشهري لGeoIP DB"
592
 
593
+ #: includes/settings/tabs/wps-externals.php:97
594
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
595
  msgstr "سيتم جدولة التحميل من قاعدة البيانات GeoIP لمدة 2 يوما بعد يوم الثلاثاء الأول من الشهر."
596
 
597
+ #: includes/settings/tabs/wps-externals.php:98
598
  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)."
599
  msgstr "وهذا الخيار أيضا تحميل قاعدة البيانات إذا كان حجم الملف المحلي أقل من 1K (الذي يعني عادة أن طرف البرنامج التي تأتي مع البرنامج المساعد لا يزال في مكانه)."
600
 
601
+ #: includes/settings/tabs/wps-externals.php:104
602
  msgid "Populate missing GeoIP after update of GeoIP DB"
603
  msgstr "تعبئة GeoIP في عداد المفقودين بعد التحديث من GeoIP DB"
604
 
605
+ #: includes/settings/tabs/wps-externals.php:110
606
  msgid "Update any missing GeoIP data after downloading a new database."
607
  msgstr "تحديث أي بيانات GeoIP مفقودة بعد تحميل قاعدة البيانات الجديدة."
608
 
609
+ #: includes/settings/tabs/wps-externals.php:116
610
  msgid "Country code for private IP addresses"
611
  msgstr "رمز البلد لعناوين IP خاصة"
612
 
613
+ #: includes/settings/tabs/wps-externals.php:121
614
  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."
615
  msgstr "المعيار اثنين الرمز الدولي بلد إلكتروني (أي الولايات المتحدة = الولايات المتحدة الأمريكية، CA = كندا، الخ) ل(غير قابل للتوجيه) عناوين IP خاصة (أي. 10.0.0.1، 192.158.1.1، 127.0.0.1، وما إلى ذلك). استخدام \"000\" (ثلاثة أصفار) لاستخدام \"غير معروف\"، كما رمز البلد."
616
 
617
+ #: includes/settings/tabs/wps-externals.php:132
618
  msgid "GeoIP collection is disabled due to the following reasons:"
619
  msgstr "تم تعطيل مجموعة GeoIP وذلك للأسباب التالية:"
620
 
621
+ #: includes/settings/tabs/wps-externals.php:135
622
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
623
  msgstr "جمع GeoIP يتطلب PHP %s أو أعلى، يتم تعطيله حاليا نظرا لكونها نسخة PHP مثبتة"
624
 
625
+ #: includes/settings/tabs/wps-externals.php:140
626
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
627
  msgstr "مجموعة GeoIP تتطلب الملحق cURL PHP و هو غير مفعل على إصدار الـ PHP!"
628
 
629
+ #: includes/settings/tabs/wps-externals.php:146
630
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
631
  msgstr "مجموعة GeoIP تتطلب الملحق BC Math PHP و هو غير مفعل على إصدار الـ PHP!"
632
 
633
+ #: includes/settings/tabs/wps-externals.php:152
634
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
635
  msgstr "تم الكشف عن الوضع الآمن في PHP! مجموعة GeoIP غير معتمدة عند تمكين الوضع الآمن في PHP!"
636
 
690
 
691
  #: includes/log/exclusions.php:24
692
  #: includes/settings/tabs/wps-notifications.php:76
 
693
  msgid "GeoIP"
694
  msgstr "GeoIP"
695
 
714
  msgstr "إرسال تقرير كلما تتم ترقية البرنامج المساعد."
715
 
716
  #: includes/settings/tabs/wps-notifications.php:111
717
+ #: includes/settings/tabs/wps-notifications.php:116 schedule.php:221
718
  msgid "Statistical reporting"
719
  msgstr "تقارير الإحصائيات"
720
 
763
  msgstr "أي رمز قصير بدعم من مثبت ووردبريس، وتشمل جميع الاكواد المختصرة لاحصائيات ووردبريس (انظر دليل المشرف للحصول على قائمة رموز المتاحة) معتمدة في نص الرسالة. وهنا بعض الأمثلة:"
764
 
765
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
766
+ #: widget.php:245 wp-statistics.php:536
767
  msgid "User Online"
768
  msgstr "المتواجدين الآن"
769
 
806
  msgstr "ملخص الاحصائيات"
807
 
808
  #: includes/settings/tabs/wps-overview-display.php:28
809
+ #: includes/settings/wps-settings.php:108
810
  msgid "About"
811
  msgstr "حول"
812
 
856
  msgid "Map type"
857
  msgstr "نوع الخريطة"
858
 
859
+ #: includes/functions/functions.php:404
860
  #: includes/settings/tabs/wps-overview-display.php:128
861
  msgid "Google"
862
  msgstr "جوجل"
966
  msgid "Remove data and settings, this action cannot be undone."
967
  msgstr "إزالة البيانات والإعدادات، لا يمكنك التراجع مستقبلاً."
968
 
969
+ #: includes/settings/wps-settings.php:100
970
  msgid "General"
971
  msgstr "عام"
972
 
973
+ #: includes/settings/wps-settings.php:101
974
  msgid "Notifications"
975
  msgstr "الإشعارات"
976
 
977
+ #: includes/settings/wps-settings.php:102
978
  msgid "Dashboard/Overview"
979
  msgstr "اللوحة/نظرة عامة"
980
 
981
+ #: includes/settings/wps-settings.php:106
 
 
 
 
982
  msgid "Maintenance"
983
  msgstr "صيانة"
984
 
985
+ #: includes/settings/wps-settings.php:107
986
  msgid "Removal"
987
  msgstr "الإزالة"
988
 
989
  #: includes/settings/tabs/wps-access-level.php:85
 
990
  #: includes/settings/tabs/wps-exclusions.php:234
991
+ #: includes/settings/tabs/wps-externals.php:284
992
  #: includes/settings/tabs/wps-general.php:349
 
993
  #: includes/settings/tabs/wps-maintenance.php:84
994
  #: includes/settings/tabs/wps-notifications.php:201
995
  #: includes/settings/tabs/wps-overview-display.php:388
1009
  msgid "Once Every 4 Weeks"
1010
  msgstr "مرة كل 4 أسابيع"
1011
 
1012
+ #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
1013
  msgid "Statistics"
1014
  msgstr "الاحصائيات"
1015
 
1081
  msgid "Items"
1082
  msgstr "البنود"
1083
 
1084
+ #: widget.php:254 wp-statistics.php:561
1085
  msgid "Yesterday visit"
1086
  msgstr "زيارات الأمس"
1087
 
1109
  msgid "WP Statistics has been removed, please disable and delete it."
1110
  msgstr "تمت إزالة احصائيات ووردبريس، يرجى التعطيل والحذف."
1111
 
1112
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1113
  #. Plugin Name of the plugin/theme
1114
  #: wp-statistics.php:37
1115
  msgid "WP Statistics"
1116
  msgstr "احصائيات ووردبريس"
1117
 
1118
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1119
  #. Description of the plugin/theme
1120
  #: wp-statistics.php:38
1121
  msgid "Complete statistics for your WordPress site."
1145
  msgid "Setting page > GeoIP"
1146
  msgstr "صفحة الإعدادات > GeoIP"
1147
 
1148
+ #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
1149
  msgid "Settings"
1150
  msgstr "الإعدادات"
1151
 
1152
+ #: wp-statistics.php:265
1153
  msgid "Click here to visit the plugin on WordPress.org"
1154
  msgstr "انقر هنا لزيارة صفحة الإضافة على WordPress.org"
1155
 
1156
+ #: wp-statistics.php:265
1157
  msgid "Visit WordPress.org page"
1158
  msgstr "زيارة صفحة WordPress.org"
1159
 
1160
+ #: wp-statistics.php:268
1161
  msgid "Click here to rate and review this plugin on WordPress.org"
1162
  msgstr "أنقر هنا لمراجهة وتقييم الإضافة على WordPress.org"
1163
 
1164
+ #: wp-statistics.php:268
1165
  msgid "Rate this plugin"
1166
  msgstr "ضع تقييمك لهذه الاضافة"
1167
 
1168
+ #: wp-statistics.php:312
1169
  msgid "WP Statistics - Hits"
1170
  msgstr "احصائيات ووردبريس - الزيارات"
1171
 
1172
+ #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
1173
  msgid "Overview"
1174
  msgstr "نظرة عامة"
1175
 
1176
+ #: wp-statistics.php:354 wp-statistics.php:430
1177
  msgid "Online"
1178
  msgstr "المتواجدون"
1179
 
1180
+ #: wp-statistics.php:356 wp-statistics.php:432
1181
  msgid "Referrers"
1182
  msgstr "الدعوات"
1183
 
1184
+ #: shortcode.php:135 wp-statistics.php:357 wp-statistics.php:433
1185
  msgid "Searches"
1186
  msgstr "عمليات البحث"
1187
 
1188
+ #: wp-statistics.php:358 wp-statistics.php:434
1189
  msgid "Search Words"
1190
  msgstr "كلمات البحث"
1191
 
1192
+ #: wp-statistics.php:359 wp-statistics.php:435
1193
  msgid "Top Visitors Today"
1194
  msgstr "أعلى زوار اليوم"
1195
 
1196
+ #: wp-statistics.php:364 wp-statistics.php:437
1197
  msgid "Optimization"
1198
  msgstr "التحسين"
1199
 
1200
+ #: wp-statistics.php:370 wp-statistics.php:401
1201
  msgid "Manual"
1202
  msgstr "الدليل"
1203
 
1204
+ #: wp-statistics.php:416
1205
  msgid "Site"
1206
  msgstr "موقع"
1207
 
1208
+ #: wp-statistics.php:417
1209
  msgid "Options"
1210
  msgstr "خيارات"
1211
 
1212
+ #: wp-statistics.php:543
1213
  msgid "Today visitor"
1214
  msgstr "زوار اليوم"
1215
 
1216
+ #: wp-statistics.php:549
1217
  msgid "Today visit"
1218
  msgstr "زيارات اليوم"
1219
 
1220
+ #: wp-statistics.php:555
1221
  msgid "Yesterday visitor"
1222
  msgstr "زيارات الأمس"
1223
 
1224
+ #: wp-statistics.php:567
1225
  msgid "View Stats"
1226
  msgstr "عرض الإحصائيات"
1227
 
1228
+ #: wp-statistics.php:591
1229
  msgid "Download ODF file"
1230
  msgstr "تحميل ملف ODF"
1231
 
1232
+ #: wp-statistics.php:592
1233
  msgid "Download HTML file"
1234
  msgstr "تحميل ملف HTML"
1235
 
1236
+ #: wp-statistics.php:596
1237
  msgid "Manual file not found."
1238
  msgstr "لم يتم العثور على ملف الدليل."
1239
 
1240
+ #: wp-statistics.php:663 wp-statistics.php:770 wp-statistics.php:804
1241
  msgid "You do not have sufficient permissions to access this page."
1242
  msgstr "ليس لديك الصلاحيات الكافية لدخول هذه الصفحة."
1243
 
1245
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
1246
  msgstr "جداول البرنامج المساعد لا وجود لها في قاعدة البيانات! يرجى إعادة تشغيل %s التثبيت الروتيني %s."
1247
 
1248
+ #: wp-statistics.php:241
1249
  msgid "WP Statistics %s installed on"
1250
  msgstr "احصائيات ووردبريس %s مثبتة على"
1251
 
1293
  msgid "Browscap.ini update on"
1294
  msgstr "تحديث Browscap.ini على"
1295
 
1296
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1297
  #. Plugin URI of the plugin/theme
1298
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1299
  #. Author URI of the plugin/theme
1300
  msgid "http://wp-statistics.com/"
1301
  msgstr "http://wp-statistics.com/"
1422
  msgstr "انقر للتبديل"
1423
 
1424
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1425
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
1426
+ #: wp-statistics.php:426
1427
  msgid "Browsers"
1428
  msgstr "المتصفحات"
1429
 
1452
  msgid "Exclusions Statistics"
1453
  msgstr "استثناءات الاحصائيات"
1454
 
1455
+ #: includes/functions/functions.php:931
1456
  msgid "10 Days"
1457
  msgstr "10 أيام"
1458
 
1459
+ #: includes/functions/functions.php:931
1460
  msgid "20 Days"
1461
  msgstr "20 يوم"
1462
 
1463
+ #: includes/functions/functions.php:931
1464
  msgid "30 Days"
1465
  msgstr "30 يو م"
1466
 
1467
+ #: includes/functions/functions.php:931
1468
  msgid "2 Months"
1469
  msgstr "شهرين"
1470
 
1471
+ #: includes/functions/functions.php:931
1472
  msgid "3 Months"
1473
  msgstr "3 أشهر"
1474
 
1475
+ #: includes/functions/functions.php:931
1476
  msgid "6 Months"
1477
  msgstr "6 أشهر"
1478
 
1479
+ #: includes/functions/functions.php:931
1480
  msgid "9 Months"
1481
  msgstr "9 أشهر"
1482
 
1483
+ #: includes/functions/functions.php:931
1484
  msgid "1 Year"
1485
  msgstr "سنة"
1486
 
1529
  msgid "Latest Search Word Statistics"
1530
  msgstr "أحصائيات أحدث كلمات البحث"
1531
 
1532
+ #: includes/log/last-search.php:110 includes/log/last-visitor.php:101
1533
  #: includes/log/online.php:50 includes/log/widgets/google.map.php:84
1534
  #: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
1535
+ #: includes/log/widgets/words.php:46
1536
  msgid "#hash#"
1537
  msgstr "#hash#"
1538
 
1539
+ #: includes/log/last-search.php:115 includes/log/last-visitor.php:106
1540
  #: includes/log/online.php:55 includes/log/top-referring.php:71
1541
+ #: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
1542
  #: includes/settings/tabs/wps-overview-display.php:33
1543
  #: includes/settings/tabs/wps-overview-display.php:113
1544
  msgid "Map"
1545
  msgstr "خريطة"
1546
 
1547
+ #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1548
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1549
  #: includes/log/top-referring.php:125
1550
  msgid "Page"
1551
  msgstr "صفحة"
1552
 
1553
+ #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1554
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1555
  #: includes/log/top-referring.php:125
1556
  msgid "From"
1739
  msgstr "التوقيت: %s"
1740
 
1741
  #: includes/log/widgets/top.visitors.php:31
1742
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
1743
+ #: wp-statistics.php:353 wp-statistics.php:429
1744
  msgid "Hits"
1745
  msgstr "نقرات"
1746
 
1782
  msgid "No platform data found to remove!"
1783
  msgstr "لا توجد بيانات منصة لإزالتها!"
1784
 
1785
+ #: includes/functions/functions.php:1019
1786
  msgid "%s table data deleted successfully."
1787
  msgstr "%s تم حذف بيانات الجدول بنجاح."
1788
 
1789
+ #: includes/functions/functions.php:1023
1790
  msgid "Error, %s not emptied!"
1791
  msgstr "خطأ, %s لم يتم التفريغ!"
1792
 
1812
 
1813
  #: includes/optimization/tabs/wps-optimization-database.php:25
1814
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1815
+ #: wp-statistics.php:351 wp-statistics.php:427
1816
  msgid "Countries"
1817
  msgstr "الدول"
1818
 
1828
  msgstr "المنصب القديم لإضافة احصائيات ووردبريس تسمح للإدخالات المتكررة في جداول الزوار في بعض الحالات. بتثبيت أحدث منتج يجب تواجد الفهرس في الجداول. لإنشاء فهرس لمنتج قديم يجب أن يتم حذف الإدخالات المكررة أولاً. أنقر على \"تحديث الآن\" وسيقوم تلقائيا بفحص جدول الزوار وحذف كافة الإدخالات المكررة وإضافة الفهرس."
1829
 
1830
  #: includes/optimization/tabs/wps-optimization-database.php:41
1831
+ #: includes/optimization/tabs/wps-optimization-database.php:102
1832
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1833
  msgstr "هذه العملية يمكن أن تستغرق وقتا طويلا على تثبيت مع العديد من الصفوف في جدول الزوار."
1834
 
1838
 
1839
  #: includes/optimization/tabs/wps-optimization-database.php:47
1840
  #: includes/optimization/tabs/wps-optimization-database.php:77
1841
+ #: includes/optimization/tabs/wps-optimization-database.php:108
1842
  msgid "Congratulations, your installation is already up to date, nothing to do."
1843
  msgstr "تهانينا، التثبيت موجود بالفعل حتى الآن، لا شيء للقيام به."
1844
 
1845
  #: includes/optimization/tabs/wps-optimization-export.php:8
1846
+ #: includes/optimization/wps-optimization.php:212
1847
  msgid "Export"
1848
  msgstr "تصدير"
1849
 
1896
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1897
  #: includes/settings/tabs/wps-general.php:138
1898
  #: includes/settings/tabs/wps-general.php:143 shortcode.php:133
1899
+ #: wp-statistics.php:360 wp-statistics.php:436
1900
  msgid "Visitors"
1901
  msgstr "الزوار"
1902
 
2211
  msgid "Install routine complete."
2212
  msgstr "التثبيت الكامل الروتيني."
2213
 
2214
+ #: includes/optimization/wps-optimization.php:211
2215
  msgid "Resources/Information"
2216
  msgstr "الموارد/معلومات"
2217
 
2218
+ #: includes/optimization/wps-optimization.php:213
2219
  msgid "Purging"
2220
  msgstr "تطهير"
2221
 
2222
+ #: includes/optimization/wps-optimization.php:214
2223
  msgid "Database"
2224
  msgstr "قاعدة البيانات"
2225
 
2226
+ #: includes/optimization/wps-optimization.php:215
2227
  msgid "Updates"
2228
  msgstr "تحديثات"
2229
 
2230
+ #: includes/optimization/wps-optimization.php:216
2231
  msgid "Historical"
2232
  msgstr "التاريخي"
2233
 
2377
  msgstr "هذا هو وعاء العسل لاحصائيات ووردبريس المستخدم, لا تحذف"
2378
 
2379
  #: includes/settings/tabs/wps-access-level.php:23
2380
+ #: includes/settings/wps-settings.php:103
2381
  msgid "Access Levels"
2382
  msgstr "مستويات الوصول"
2383
 
2410
  msgstr "إذا كنت في حاجة الى حل أكثر قوة لتفويض الوصول التي قد ترغب في النظر في %s الدليل المساعد لووردبريس."
2411
 
2412
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2413
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:352
2414
+ #: wp-statistics.php:428
2415
  msgid "Exclusions"
2416
  msgstr "الاستثناءات"
2417
 
2582
  msgid "Exclude the RSS feeds for registering as a hit."
2583
  msgstr "استبعاد آر إس إس لتسجيل كما ضرب."
2584
 
2585
+ #: includes/settings/tabs/wps-externals.php:162
2586
  msgid "browscap settings"
2587
  msgstr "إعدادات browscap"
2588
 
2589
+ #: includes/settings/tabs/wps-externals.php:167
2590
  msgid "browscap usage"
2591
  msgstr "استخدام browscap"
2592
 
2593
+ #: includes/settings/tabs/wps-externals.php:52
2594
+ #: includes/settings/tabs/wps-externals.php:76
2595
+ #: includes/settings/tabs/wps-externals.php:109
2596
+ #: includes/settings/tabs/wps-externals.php:172
2597
+ #: includes/settings/tabs/wps-externals.php:196
2598
+ #: includes/settings/tabs/wps-externals.php:235
2599
+ #: includes/settings/tabs/wps-externals.php:259
2600
  #: includes/settings/tabs/wps-general.php:76
2601
  #: includes/settings/tabs/wps-general.php:92
2602
  #: includes/settings/tabs/wps-general.php:116
2612
  #: includes/settings/tabs/wps-general.php:286
2613
  #: includes/settings/tabs/wps-general.php:325
2614
  #: includes/settings/tabs/wps-general.php:341
 
 
 
2615
  #: includes/settings/tabs/wps-maintenance.php:40
2616
  #: includes/settings/tabs/wps-maintenance.php:64
2617
  #: includes/settings/tabs/wps-notifications.php:69
2626
  msgid "Active"
2627
  msgstr "تفعيل"
2628
 
2629
+ #: includes/settings/tabs/wps-externals.php:173
2630
  msgid "The browscap database will be downloaded and used to detect robots."
2631
  msgstr "سيتم تحميل قاعدة البيانات browscap وتستخدم للكشف عن الروبوتات."
2632
 
2633
+ #: includes/settings/tabs/wps-externals.php:179
2634
  msgid "Update browscap Info"
2635
  msgstr "تحديث معلومات browscap"
2636
 
2637
+ #: includes/settings/tabs/wps-externals.php:184
2638
  msgid "Download browscap Database"
2639
  msgstr "تحميل قاعدة بيانات browscap"
2640
 
2641
+ #: includes/settings/tabs/wps-externals.php:65
2642
+ #: includes/settings/tabs/wps-externals.php:185
2643
+ #: includes/settings/tabs/wps-externals.php:248
2644
  msgid "Save changes on this page to download the update."
2645
  msgstr "حفظ التغييرات على هذه الصفحة لتحميل التحديث."
2646
 
2647
+ #: includes/settings/tabs/wps-externals.php:191
2648
  msgid "Schedule weekly update of browscap DB"
2649
  msgstr "جدولة التحديث الأسبوعي لـ browscap DB"
2650
 
2651
+ #: includes/settings/tabs/wps-externals.php:79
2652
+ #: includes/settings/tabs/wps-externals.php:199
2653
+ #: includes/settings/tabs/wps-externals.php:262
2654
  msgid "Next update will be"
2655
  msgstr "التحديث القادم سيكون في"
2656
 
2657
+ #: includes/settings/tabs/wps-externals.php:214
2658
  msgid "Download of the browscap database will be scheduled for once a week."
2659
  msgstr "سيتم تحديد موعد تحميل قاعدة بيانات browscap لمرة واحدة في الأسبوع."
2660
 
languages/wp_statistics-bg_BG.mo CHANGED
Binary file
languages/wp_statistics-bg_BG.po CHANGED
@@ -10,6 +10,70 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  #: includes/settings/tabs/wps-exclusions.php:148
14
  msgid "Treat corrupt browser info as a bot"
15
  msgstr ""
@@ -158,7 +222,7 @@ msgstr ""
158
  msgid "Have you thought about donating to WP Statistics?"
159
  msgstr ""
160
 
161
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:362
162
  msgid "Donate"
163
  msgstr ""
164
 
@@ -194,11 +258,11 @@ msgstr ""
194
  msgid "Time Frame"
195
  msgstr ""
196
 
197
- #: includes/functions/functions.php:929
198
  msgid "to"
199
  msgstr ""
200
 
201
- #: includes/functions/functions.php:929 includes/log/top-visitors.php:29
202
  msgid "Go"
203
  msgstr ""
204
 
@@ -242,11 +306,11 @@ msgstr ""
242
  msgid "Filtered by"
243
  msgstr ""
244
 
245
- #: includes/functions/functions.php:922 includes/functions/functions.php:925
246
  msgid "Range"
247
  msgstr ""
248
 
249
- #: includes/functions/functions.php:929 includes/log/top-visitors.php:29
250
  msgid "MM/DD/YYYY"
251
  msgstr "MM/DD/YYYY"
252
 
@@ -290,27 +354,27 @@ msgstr ""
290
  msgid "Last 7 Days (Week)"
291
  msgstr ""
292
 
293
- #: includes/functions/functions.php:403
294
  msgid "Yahoo!"
295
  msgstr ""
296
 
297
- #: includes/functions/functions.php:404
298
  msgid "Yandex"
299
  msgstr ""
300
 
301
- #: includes/functions/functions.php:400
302
  msgid "clearch.org"
303
  msgstr ""
304
 
305
- #: includes/functions/functions.php:401
306
  msgid "DuckDuckGo"
307
  msgstr ""
308
 
309
- #: includes/functions/functions.php:399
310
  msgid "Bing"
311
  msgstr ""
312
 
313
- #: includes/functions/functions.php:398
314
  msgid "Baidu"
315
  msgstr ""
316
 
@@ -413,8 +477,8 @@ msgid "For each visit to account for several hits. Currently %s."
413
  msgstr "За всяко посещение на сметка за няколко хитове. В момента %s."
414
 
415
  #: includes/settings/tabs/wps-general.php:177
416
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:351
417
- #: wp-statistics.php:427
418
  msgid "Pages"
419
  msgstr "Страници"
420
 
@@ -498,75 +562,75 @@ msgstr "Включва общи суми"
498
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
499
  msgstr "Добавяне на обща линия за диаграми с множество стойности, като търсене двигател референции"
500
 
501
- #: includes/settings/tabs/wps-geoip.php:27
502
  msgid "GeoIP settings"
503
  msgstr "GeoIP настройки"
504
 
505
- #: includes/settings/tabs/wps-geoip.php:32
506
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
507
  msgstr "IP местоположение услуги, предоставяни от GeoLite2 данни, създадени от MaxMind, достъпни от %s."
508
 
509
- #: includes/settings/tabs/wps-geoip.php:42
510
  msgid "GeoIP collection"
511
  msgstr "GeoIP колекция"
512
 
513
- #: includes/settings/tabs/wps-geoip.php:48
514
  msgid "For get more information and location (country) from visitor, enable this feature."
515
  msgstr "За да получите повече информация и местоположението (страната) от посетител, активирате тази функция."
516
 
517
- #: includes/settings/tabs/wps-geoip.php:54
518
  msgid "Update GeoIP Info"
519
  msgstr "GeoIP информация актуализация"
520
 
521
- #: includes/settings/tabs/wps-geoip.php:59
522
  msgid "Download GeoIP Database"
523
  msgstr "Изтегли GeoIP база данни"
524
 
525
- #: includes/settings/tabs/wps-geoip.php:66
526
  msgid "Schedule monthly update of GeoIP DB"
527
  msgstr "Месечна актуализация график на GeoIP DB"
528
 
529
- #: includes/settings/tabs/wps-geoip.php:92
530
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
531
  msgstr "Изтегляне на GeoIP базата данни ще бъде насрочено за 2 дни след първия вторник на месеца."
532
 
533
- #: includes/settings/tabs/wps-geoip.php:93
534
  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)."
535
  msgstr "Тази опция ще изтеглите базата данни ако местните големина е по-малко от 1k, (което обикновено означава пън, която идва с приставката е все още на място)."
536
 
537
- #: includes/settings/tabs/wps-geoip.php:99
538
  msgid "Populate missing GeoIP after update of GeoIP DB"
539
  msgstr "Попълни липсващите GeoIP след актуализация на GeoIP DB"
540
 
541
- #: includes/settings/tabs/wps-geoip.php:105
542
  msgid "Update any missing GeoIP data after downloading a new database."
543
  msgstr "Липсващи GeoIP данни се актуализира след свалянето на нова база данни."
544
 
545
- #: includes/settings/tabs/wps-geoip.php:111
546
  msgid "Country code for private IP addresses"
547
  msgstr ""
548
 
549
- #: includes/settings/tabs/wps-geoip.php:116
550
  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."
551
  msgstr ""
552
 
553
- #: includes/settings/tabs/wps-geoip.php:127
554
  msgid "GeoIP collection is disabled due to the following reasons:"
555
  msgstr "GeoIP колекция е забранена поради следните причини:"
556
 
557
- #: includes/settings/tabs/wps-geoip.php:130
558
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
559
  msgstr "GeoIP колекция изисква PHP %s или по-горе, в момента е забранен поради инсталирани PHP версия са "
560
 
561
- #: includes/settings/tabs/wps-geoip.php:135
562
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
563
  msgstr "GeoIP колекция изисква разширение на PHP къдря и тя не е заредена на вашата версия на PHP!"
564
 
565
- #: includes/settings/tabs/wps-geoip.php:141
566
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
567
  msgstr "GeoIP колекция изисква ПР.н.е математика PHP продължаване и то не е заредена на вашата версия на PHP!"
568
 
569
- #: includes/settings/tabs/wps-geoip.php:147
570
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
571
  msgstr "Безопасен режим PHP открити! GeoIP колекция не се поддържа на PHP защитен режим!"
572
 
@@ -626,7 +690,6 @@ msgstr ""
626
 
627
  #: includes/log/exclusions.php:24
628
  #: includes/settings/tabs/wps-notifications.php:76
629
- #: includes/settings/wps-settings.php:111
630
  msgid "GeoIP"
631
  msgstr "GeoIP"
632
 
@@ -651,7 +714,7 @@ msgid "Send a report whenever the plugin is upgraded."
651
  msgstr ""
652
 
653
  #: includes/settings/tabs/wps-notifications.php:111
654
- #: includes/settings/tabs/wps-notifications.php:116 schedule.php:199
655
  msgid "Statistical reporting"
656
  msgstr "Статистическата отчетност"
657
 
@@ -700,7 +763,7 @@ msgid "Any shortcode supported by your installation of WordPress, include all sh
700
  msgstr ""
701
 
702
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
703
- #: widget.php:245 wp-statistics.php:532
704
  msgid "User Online"
705
  msgstr "Онлайн потребители"
706
 
@@ -743,7 +806,7 @@ msgid "Summary Statistics"
743
  msgstr "Обобщена статистика"
744
 
745
  #: includes/settings/tabs/wps-overview-display.php:28
746
- #: includes/settings/wps-settings.php:115
747
  msgid "About"
748
  msgstr "За"
749
 
@@ -793,7 +856,7 @@ msgstr ""
793
  msgid "Map type"
794
  msgstr "Тип карта"
795
 
796
- #: includes/functions/functions.php:402
797
  #: includes/settings/tabs/wps-overview-display.php:128
798
  msgid "Google"
799
  msgstr "Google"
@@ -903,35 +966,30 @@ msgstr ""
903
  msgid "Remove data and settings, this action cannot be undone."
904
  msgstr ""
905
 
906
- #: includes/settings/wps-settings.php:106
907
  msgid "General"
908
  msgstr "Общи"
909
 
910
- #: includes/settings/wps-settings.php:107
911
  msgid "Notifications"
912
  msgstr ""
913
 
914
- #: includes/settings/wps-settings.php:108
915
  msgid "Dashboard/Overview"
916
  msgstr ""
917
 
918
- #: includes/settings/wps-settings.php:112
919
- msgid "browscap"
920
- msgstr "browscap"
921
-
922
- #: includes/settings/wps-settings.php:113
923
  msgid "Maintenance"
924
  msgstr "Поддръжка"
925
 
926
- #: includes/settings/wps-settings.php:114
927
  msgid "Removal"
928
  msgstr ""
929
 
930
  #: includes/settings/tabs/wps-access-level.php:85
931
- #: includes/settings/tabs/wps-browscap.php:81
932
  #: includes/settings/tabs/wps-exclusions.php:234
 
933
  #: includes/settings/tabs/wps-general.php:349
934
- #: includes/settings/tabs/wps-geoip.php:158
935
  #: includes/settings/tabs/wps-maintenance.php:84
936
  #: includes/settings/tabs/wps-notifications.php:201
937
  #: includes/settings/tabs/wps-overview-display.php:388
@@ -951,7 +1009,7 @@ msgstr "Веднъж на всеки 2 седмици"
951
  msgid "Once Every 4 Weeks"
952
  msgstr "Веднъж на всеки 4 седмици"
953
 
954
- #: widget.php:14 wp-statistics.php:342 wp-statistics.php:380
955
  msgid "Statistics"
956
  msgstr "Статистики"
957
 
@@ -1023,7 +1081,7 @@ msgstr "Име"
1023
  msgid "Items"
1024
  msgstr "Броя"
1025
 
1026
- #: widget.php:254 wp-statistics.php:557
1027
  msgid "Yesterday visit"
1028
  msgstr "Вчерашни посещения"
1029
 
@@ -1051,13 +1109,13 @@ msgstr ""
1051
  msgid "WP Statistics has been removed, please disable and delete it."
1052
  msgstr ""
1053
 
1054
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1055
  #. Plugin Name of the plugin/theme
1056
  #: wp-statistics.php:37
1057
  msgid "WP Statistics"
1058
  msgstr "WP Statistics"
1059
 
1060
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1061
  #. Description of the plugin/theme
1062
  #: wp-statistics.php:38
1063
  msgid "Complete statistics for your WordPress site."
@@ -1087,99 +1145,99 @@ msgstr "GeoIP колекция не е активен, моля отидете
1087
  msgid "Setting page > GeoIP"
1088
  msgstr "Определянето страница > GeoIP"
1089
 
1090
- #: wp-statistics.php:249 wp-statistics.php:361 wp-statistics.php:434
1091
  msgid "Settings"
1092
  msgstr "Настройки"
1093
 
1094
- #: wp-statistics.php:261
1095
  msgid "Click here to visit the plugin on WordPress.org"
1096
  msgstr "Щракнете тук, за да посетите плъгин от WordPress.org"
1097
 
1098
- #: wp-statistics.php:261
1099
  msgid "Visit WordPress.org page"
1100
  msgstr "Посетете страницата на WordPress.org"
1101
 
1102
- #: wp-statistics.php:264
1103
  msgid "Click here to rate and review this plugin on WordPress.org"
1104
  msgstr "Щракнете тук, за да оцените и да преразгледа този плъгин от WordPress.org"
1105
 
1106
- #: wp-statistics.php:264
1107
  msgid "Rate this plugin"
1108
  msgstr "Оцени този плъгин"
1109
 
1110
- #: wp-statistics.php:308
1111
  msgid "WP Statistics - Hits"
1112
  msgstr "WP-статистика - хитове"
1113
 
1114
- #: wp-statistics.php:345 wp-statistics.php:383 wp-statistics.php:421
1115
  msgid "Overview"
1116
  msgstr "Общ преглед"
1117
 
1118
- #: wp-statistics.php:350 wp-statistics.php:426
1119
  msgid "Online"
1120
  msgstr ""
1121
 
1122
- #: wp-statistics.php:352 wp-statistics.php:428
1123
  msgid "Referrers"
1124
  msgstr ""
1125
 
1126
- #: shortcode.php:135 wp-statistics.php:353 wp-statistics.php:429
1127
  msgid "Searches"
1128
  msgstr "Търсения"
1129
 
1130
- #: wp-statistics.php:354 wp-statistics.php:430
1131
  msgid "Search Words"
1132
  msgstr "Думи за търсене"
1133
 
1134
- #: wp-statistics.php:355 wp-statistics.php:431
1135
  msgid "Top Visitors Today"
1136
  msgstr ""
1137
 
1138
- #: wp-statistics.php:360 wp-statistics.php:433
1139
  msgid "Optimization"
1140
  msgstr "Оптимизация"
1141
 
1142
- #: wp-statistics.php:366 wp-statistics.php:397
1143
  msgid "Manual"
1144
  msgstr "Ръководство"
1145
 
1146
- #: wp-statistics.php:412
1147
  msgid "Site"
1148
  msgstr ""
1149
 
1150
- #: wp-statistics.php:413
1151
  msgid "Options"
1152
  msgstr ""
1153
 
1154
- #: wp-statistics.php:539
1155
  msgid "Today visitor"
1156
  msgstr "Днес посетителите"
1157
 
1158
- #: wp-statistics.php:545
1159
  msgid "Today visit"
1160
  msgstr "Днес, посетете"
1161
 
1162
- #: wp-statistics.php:551
1163
  msgid "Yesterday visitor"
1164
  msgstr "Вчера посетител"
1165
 
1166
- #: wp-statistics.php:563
1167
  msgid "View Stats"
1168
  msgstr "Преглед на статистиките"
1169
 
1170
- #: wp-statistics.php:587
1171
  msgid "Download ODF file"
1172
  msgstr "Изтегляне на ODF файл"
1173
 
1174
- #: wp-statistics.php:588
1175
  msgid "Download HTML file"
1176
  msgstr "Изтегли HTML файл"
1177
 
1178
- #: wp-statistics.php:592
1179
  msgid "Manual file not found."
1180
  msgstr "Ръчно файлът не е намерен."
1181
 
1182
- #: wp-statistics.php:659 wp-statistics.php:770 wp-statistics.php:804
1183
  msgid "You do not have sufficient permissions to access this page."
1184
  msgstr "Нямате права за тази страница"
1185
 
@@ -1187,7 +1245,7 @@ msgstr "Нямате права за тази страница"
1187
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
1188
  msgstr ""
1189
 
1190
- #: wp-statistics.php:237
1191
  msgid "WP Statistics %s installed on"
1192
  msgstr ""
1193
 
@@ -1235,9 +1293,9 @@ msgstr "browscap вече в текущата версия!"
1235
  msgid "Browscap.ini update on"
1236
  msgstr ""
1237
 
1238
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1239
  #. Plugin URI of the plugin/theme
1240
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1241
  #. Author URI of the plugin/theme
1242
  msgid "http://wp-statistics.com/"
1243
  msgstr "http://WP-Statistics.com/"
@@ -1364,8 +1422,8 @@ msgid "Click to toggle"
1364
  msgstr "Щракнете за превключване"
1365
 
1366
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1367
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:346
1368
- #: wp-statistics.php:422
1369
  msgid "Browsers"
1370
  msgstr "Браузъри"
1371
 
@@ -1394,35 +1452,35 @@ msgstr "Внимание: Изключване не са в момента за
1394
  msgid "Exclusions Statistics"
1395
  msgstr "Изключения статистика"
1396
 
1397
- #: includes/functions/functions.php:879
1398
  msgid "10 Days"
1399
  msgstr "10 дни"
1400
 
1401
- #: includes/functions/functions.php:879
1402
  msgid "20 Days"
1403
  msgstr "20 дни"
1404
 
1405
- #: includes/functions/functions.php:879
1406
  msgid "30 Days"
1407
  msgstr "30 дни"
1408
 
1409
- #: includes/functions/functions.php:879
1410
  msgid "2 Months"
1411
  msgstr "2 месеца"
1412
 
1413
- #: includes/functions/functions.php:879
1414
  msgid "3 Months"
1415
  msgstr "3 месеца"
1416
 
1417
- #: includes/functions/functions.php:879
1418
  msgid "6 Months"
1419
  msgstr "6 месеца"
1420
 
1421
- #: includes/functions/functions.php:879
1422
  msgid "9 Months"
1423
  msgstr "9 месеца"
1424
 
1425
- #: includes/functions/functions.php:879
1426
  msgid "1 Year"
1427
  msgstr "1 година"
1428
 
@@ -1471,28 +1529,28 @@ msgstr "Посетител"
1471
  msgid "Latest Search Word Statistics"
1472
  msgstr "Последни Търсене дума статистика"
1473
 
1474
- #: includes/log/last-search.php:100 includes/log/last-visitor.php:101
1475
  #: includes/log/online.php:50 includes/log/widgets/google.map.php:84
1476
  #: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
1477
- #: includes/log/widgets/words.php:36
1478
  msgid "#hash#"
1479
  msgstr "#hash #"
1480
 
1481
- #: includes/log/last-search.php:105 includes/log/last-visitor.php:106
1482
  #: includes/log/online.php:55 includes/log/top-referring.php:71
1483
- #: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:43
1484
  #: includes/settings/tabs/wps-overview-display.php:33
1485
  #: includes/settings/tabs/wps-overview-display.php:113
1486
  msgid "Map"
1487
  msgstr "Карта"
1488
 
1489
- #: includes/log/last-search.php:142 includes/log/last-visitor.php:139
1490
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1491
  #: includes/log/top-referring.php:125
1492
  msgid "Page"
1493
  msgstr "Страница"
1494
 
1495
- #: includes/log/last-search.php:142 includes/log/last-visitor.php:139
1496
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1497
  #: includes/log/top-referring.php:125
1498
  msgid "From"
@@ -1681,8 +1739,8 @@ msgid "Time: %s"
1681
  msgstr "Време: %s"
1682
 
1683
  #: includes/log/widgets/top.visitors.php:31
1684
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:273
1685
- #: wp-statistics.php:349 wp-statistics.php:425
1686
  msgid "Hits"
1687
  msgstr "Посещения"
1688
 
@@ -1724,11 +1782,11 @@ msgstr "%s платформа данни изтрито успешно."
1724
  msgid "No platform data found to remove!"
1725
  msgstr ""
1726
 
1727
- #: includes/functions/functions.php:967
1728
  msgid "%s table data deleted successfully."
1729
  msgstr "%s таблични данни изтрито успешно."
1730
 
1731
- #: includes/functions/functions.php:971
1732
  msgid "Error, %s not emptied!"
1733
  msgstr "Грешка, %s не се изпразва!"
1734
 
@@ -1754,7 +1812,7 @@ msgstr "Индекс на база данни"
1754
 
1755
  #: includes/optimization/tabs/wps-optimization-database.php:25
1756
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1757
- #: wp-statistics.php:347 wp-statistics.php:423
1758
  msgid "Countries"
1759
  msgstr "Страни"
1760
 
@@ -1770,6 +1828,7 @@ msgid "Older installs of WP Statistics allow for duplicate entries in the visito
1770
  msgstr "По-старите инсталации на WP Statistics позволяват дублиране на записи в таблицата на посетителите в ъгъла случай. По-новите инсталира защита срещу това с уникален индекс на масата. За да създадете индекса на на по-старите инсталира дублираните записи трябва да бъдат изтрити първи. Щракнете върху \"Update Now\" ще сканира таблицата vistitors, изтриване на дублиращи се записи и да добавите към индекса."
1771
 
1772
  #: includes/optimization/tabs/wps-optimization-database.php:41
 
1773
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1774
  msgstr "Тази операция може да отнеме много време на настанявам с много редове в таблицата на посетителите."
1775
 
@@ -1779,11 +1838,12 @@ msgstr "По-старите инсталации на WP Statistics позвол
1779
 
1780
  #: includes/optimization/tabs/wps-optimization-database.php:47
1781
  #: includes/optimization/tabs/wps-optimization-database.php:77
 
1782
  msgid "Congratulations, your installation is already up to date, nothing to do."
1783
  msgstr "Поздравления вашата инсталация е вече до дата, нищо общо."
1784
 
1785
  #: includes/optimization/tabs/wps-optimization-export.php:8
1786
- #: includes/optimization/wps-optimization.php:183
1787
  msgid "Export"
1788
  msgstr "Износ"
1789
 
@@ -1836,7 +1896,7 @@ msgstr ""
1836
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1837
  #: includes/settings/tabs/wps-general.php:138
1838
  #: includes/settings/tabs/wps-general.php:143 shortcode.php:133
1839
- #: wp-statistics.php:356 wp-statistics.php:432
1840
  msgid "Visitors"
1841
  msgstr "Посетители"
1842
 
@@ -2151,23 +2211,23 @@ msgstr "IP адреси се заменят с хеш стойности."
2151
  msgid "Install routine complete."
2152
  msgstr "Инсталиране на ежедневието пълна."
2153
 
2154
- #: includes/optimization/wps-optimization.php:182
2155
  msgid "Resources/Information"
2156
  msgstr "Ресурси/информация"
2157
 
2158
- #: includes/optimization/wps-optimization.php:184
2159
  msgid "Purging"
2160
  msgstr "Прочистване"
2161
 
2162
- #: includes/optimization/wps-optimization.php:185
2163
  msgid "Database"
2164
  msgstr "База данни"
2165
 
2166
- #: includes/optimization/wps-optimization.php:186
2167
  msgid "Updates"
2168
  msgstr "Актуализации"
2169
 
2170
- #: includes/optimization/wps-optimization.php:187
2171
  msgid "Historical"
2172
  msgstr ""
2173
 
@@ -2317,7 +2377,7 @@ msgid "This is the honey pot for WP Statistics to use, do not delete."
2317
  msgstr ""
2318
 
2319
  #: includes/settings/tabs/wps-access-level.php:23
2320
- #: includes/settings/wps-settings.php:109
2321
  msgid "Access Levels"
2322
  msgstr "Нива на достъп"
2323
 
@@ -2350,8 +2410,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2350
  msgstr "Ако имате нужда от по-силен решение за делегиране на достъп, може да искате да погледнете %s в WordPress плъгин директорията."
2351
 
2352
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2353
- #: includes/settings/wps-settings.php:110 wp-statistics.php:348
2354
- #: wp-statistics.php:424
2355
  msgid "Exclusions"
2356
  msgstr "Изключения"
2357
 
@@ -2522,16 +2582,21 @@ msgstr ""
2522
  msgid "Exclude the RSS feeds for registering as a hit."
2523
  msgstr ""
2524
 
2525
- #: includes/settings/tabs/wps-browscap.php:22
2526
  msgid "browscap settings"
2527
  msgstr "browscap настройки"
2528
 
2529
- #: includes/settings/tabs/wps-browscap.php:27
2530
  msgid "browscap usage"
2531
  msgstr "използване на browscap"
2532
 
2533
- #: includes/settings/tabs/wps-browscap.php:32
2534
- #: includes/settings/tabs/wps-browscap.php:56
 
 
 
 
 
2535
  #: includes/settings/tabs/wps-general.php:76
2536
  #: includes/settings/tabs/wps-general.php:92
2537
  #: includes/settings/tabs/wps-general.php:116
@@ -2547,9 +2612,6 @@ msgstr "използване на browscap"
2547
  #: includes/settings/tabs/wps-general.php:286
2548
  #: includes/settings/tabs/wps-general.php:325
2549
  #: includes/settings/tabs/wps-general.php:341
2550
- #: includes/settings/tabs/wps-geoip.php:47
2551
- #: includes/settings/tabs/wps-geoip.php:71
2552
- #: includes/settings/tabs/wps-geoip.php:104
2553
  #: includes/settings/tabs/wps-maintenance.php:40
2554
  #: includes/settings/tabs/wps-maintenance.php:64
2555
  #: includes/settings/tabs/wps-notifications.php:69
@@ -2564,33 +2626,35 @@ msgstr "използване на browscap"
2564
  msgid "Active"
2565
  msgstr "Активен"
2566
 
2567
- #: includes/settings/tabs/wps-browscap.php:33
2568
  msgid "The browscap database will be downloaded and used to detect robots."
2569
  msgstr "Базата данни на browscap ще бъдат изтеглени и използвани за откриване на роботи."
2570
 
2571
- #: includes/settings/tabs/wps-browscap.php:39
2572
  msgid "Update browscap Info"
2573
  msgstr "Актуализиране на browscap информация"
2574
 
2575
- #: includes/settings/tabs/wps-browscap.php:44
2576
  msgid "Download browscap Database"
2577
  msgstr "Изтегли browscap база данни"
2578
 
2579
- #: includes/settings/tabs/wps-browscap.php:45
2580
- #: includes/settings/tabs/wps-geoip.php:60
 
2581
  msgid "Save changes on this page to download the update."
2582
  msgstr "Запишете промените на тази страница, за да изтеглите актуализацията."
2583
 
2584
- #: includes/settings/tabs/wps-browscap.php:51
2585
  msgid "Schedule weekly update of browscap DB"
2586
  msgstr "Планиране на седмична актуализация на browscap DB"
2587
 
2588
- #: includes/settings/tabs/wps-browscap.php:59
2589
- #: includes/settings/tabs/wps-geoip.php:74
 
2590
  msgid "Next update will be"
2591
  msgstr "Следващата актуализация ще бъде"
2592
 
2593
- #: includes/settings/tabs/wps-browscap.php:74
2594
  msgid "Download of the browscap database will be scheduled for once a week."
2595
  msgstr "Изтегляне на базата данни на browscap ще бъде насрочено за един път седмично."
2596
 
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: includes/optimization/wps-optimization.php:173
14
+ msgid "Search table conversion complete, %d rows added."
15
+ msgstr ""
16
+
17
+ #: includes/optimization/tabs/wps-optimization-database.php:107
18
+ msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion."
19
+ msgstr ""
20
+
21
+ #: includes/optimization/tabs/wps-optimization-database.php:86
22
+ msgid "Search Table"
23
+ msgstr ""
24
+
25
+ #: includes/optimization/tabs/wps-optimization-database.php:91
26
+ msgid "Convert"
27
+ msgstr ""
28
+
29
+ #: includes/optimization/tabs/wps-optimization-database.php:100
30
+ msgid "Convert Now!"
31
+ msgstr ""
32
+
33
+ #: includes/optimization/tabs/wps-optimization-database.php:101
34
+ msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion, however the old data must first be converted to the new format before it can be used."
35
+ msgstr ""
36
+
37
+ #: includes/log/exclusions.php:24
38
+ msgid "Referrer Spam"
39
+ msgstr ""
40
+
41
+ #: includes/settings/tabs/wps-externals.php:277
42
+ msgid "Download of the Piwik Referrer Spam Blacklist database will be scheduled for once a week."
43
+ msgstr ""
44
+
45
+ #: includes/settings/wps-settings.php:105
46
+ msgid "Externals"
47
+ msgstr ""
48
+
49
+ #: includes/settings/tabs/wps-externals.php:219
50
+ msgid "Piwik Referrer Spam Blacklist settings"
51
+ msgstr ""
52
+
53
+ #: includes/settings/tabs/wps-externals.php:254
54
+ msgid "Schedule weekly update of Piwik Referrer Spam Blacklist DB"
55
+ msgstr ""
56
+
57
+ #: includes/settings/tabs/wps-externals.php:247
58
+ msgid "Download Piwik Referrer Spam Blacklist Database"
59
+ msgstr ""
60
+
61
+ #: includes/settings/tabs/wps-externals.php:242
62
+ msgid "Update Piwik Referrer Spam Blacklist Info"
63
+ msgstr ""
64
+
65
+ #: includes/settings/tabs/wps-externals.php:236
66
+ msgid "The Piwik Referrer Spam Blacklist database will be downloaded and used to detect referrer spam."
67
+ msgstr ""
68
+
69
+ #: includes/settings/tabs/wps-externals.php:224
70
+ msgid "Referrer spam blacklist is provided by Piwik, available from %s."
71
+ msgstr ""
72
+
73
+ #: includes/settings/tabs/wps-externals.php:230
74
+ msgid "Piwik Referrer Spam Blacklist usage"
75
+ msgstr ""
76
+
77
  #: includes/settings/tabs/wps-exclusions.php:148
78
  msgid "Treat corrupt browser info as a bot"
79
  msgstr ""
222
  msgid "Have you thought about donating to WP Statistics?"
223
  msgstr ""
224
 
225
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
226
  msgid "Donate"
227
  msgstr ""
228
 
258
  msgid "Time Frame"
259
  msgstr ""
260
 
261
+ #: includes/functions/functions.php:981
262
  msgid "to"
263
  msgstr ""
264
 
265
+ #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
266
  msgid "Go"
267
  msgstr ""
268
 
306
  msgid "Filtered by"
307
  msgstr ""
308
 
309
+ #: includes/functions/functions.php:974 includes/functions/functions.php:977
310
  msgid "Range"
311
  msgstr ""
312
 
313
+ #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
314
  msgid "MM/DD/YYYY"
315
  msgstr "MM/DD/YYYY"
316
 
354
  msgid "Last 7 Days (Week)"
355
  msgstr ""
356
 
357
+ #: includes/functions/functions.php:405
358
  msgid "Yahoo!"
359
  msgstr ""
360
 
361
+ #: includes/functions/functions.php:406
362
  msgid "Yandex"
363
  msgstr ""
364
 
365
+ #: includes/functions/functions.php:402
366
  msgid "clearch.org"
367
  msgstr ""
368
 
369
+ #: includes/functions/functions.php:403
370
  msgid "DuckDuckGo"
371
  msgstr ""
372
 
373
+ #: includes/functions/functions.php:401
374
  msgid "Bing"
375
  msgstr ""
376
 
377
+ #: includes/functions/functions.php:400
378
  msgid "Baidu"
379
  msgstr ""
380
 
477
  msgstr "За всяко посещение на сметка за няколко хитове. В момента %s."
478
 
479
  #: includes/settings/tabs/wps-general.php:177
480
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
481
+ #: wp-statistics.php:431
482
  msgid "Pages"
483
  msgstr "Страници"
484
 
562
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
563
  msgstr "Добавяне на обща линия за диаграми с множество стойности, като търсене двигател референции"
564
 
565
+ #: includes/settings/tabs/wps-externals.php:32
566
  msgid "GeoIP settings"
567
  msgstr "GeoIP настройки"
568
 
569
+ #: includes/settings/tabs/wps-externals.php:37
570
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
571
  msgstr "IP местоположение услуги, предоставяни от GeoLite2 данни, създадени от MaxMind, достъпни от %s."
572
 
573
+ #: includes/settings/tabs/wps-externals.php:47
574
  msgid "GeoIP collection"
575
  msgstr "GeoIP колекция"
576
 
577
+ #: includes/settings/tabs/wps-externals.php:53
578
  msgid "For get more information and location (country) from visitor, enable this feature."
579
  msgstr "За да получите повече информация и местоположението (страната) от посетител, активирате тази функция."
580
 
581
+ #: includes/settings/tabs/wps-externals.php:59
582
  msgid "Update GeoIP Info"
583
  msgstr "GeoIP информация актуализация"
584
 
585
+ #: includes/settings/tabs/wps-externals.php:64
586
  msgid "Download GeoIP Database"
587
  msgstr "Изтегли GeoIP база данни"
588
 
589
+ #: includes/settings/tabs/wps-externals.php:71
590
  msgid "Schedule monthly update of GeoIP DB"
591
  msgstr "Месечна актуализация график на GeoIP DB"
592
 
593
+ #: includes/settings/tabs/wps-externals.php:97
594
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
595
  msgstr "Изтегляне на GeoIP базата данни ще бъде насрочено за 2 дни след първия вторник на месеца."
596
 
597
+ #: includes/settings/tabs/wps-externals.php:98
598
  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)."
599
  msgstr "Тази опция ще изтеглите базата данни ако местните големина е по-малко от 1k, (което обикновено означава пън, която идва с приставката е все още на място)."
600
 
601
+ #: includes/settings/tabs/wps-externals.php:104
602
  msgid "Populate missing GeoIP after update of GeoIP DB"
603
  msgstr "Попълни липсващите GeoIP след актуализация на GeoIP DB"
604
 
605
+ #: includes/settings/tabs/wps-externals.php:110
606
  msgid "Update any missing GeoIP data after downloading a new database."
607
  msgstr "Липсващи GeoIP данни се актуализира след свалянето на нова база данни."
608
 
609
+ #: includes/settings/tabs/wps-externals.php:116
610
  msgid "Country code for private IP addresses"
611
  msgstr ""
612
 
613
+ #: includes/settings/tabs/wps-externals.php:121
614
  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."
615
  msgstr ""
616
 
617
+ #: includes/settings/tabs/wps-externals.php:132
618
  msgid "GeoIP collection is disabled due to the following reasons:"
619
  msgstr "GeoIP колекция е забранена поради следните причини:"
620
 
621
+ #: includes/settings/tabs/wps-externals.php:135
622
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
623
  msgstr "GeoIP колекция изисква PHP %s или по-горе, в момента е забранен поради инсталирани PHP версия са "
624
 
625
+ #: includes/settings/tabs/wps-externals.php:140
626
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
627
  msgstr "GeoIP колекция изисква разширение на PHP къдря и тя не е заредена на вашата версия на PHP!"
628
 
629
+ #: includes/settings/tabs/wps-externals.php:146
630
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
631
  msgstr "GeoIP колекция изисква ПР.н.е математика PHP продължаване и то не е заредена на вашата версия на PHP!"
632
 
633
+ #: includes/settings/tabs/wps-externals.php:152
634
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
635
  msgstr "Безопасен режим PHP открити! GeoIP колекция не се поддържа на PHP защитен режим!"
636
 
690
 
691
  #: includes/log/exclusions.php:24
692
  #: includes/settings/tabs/wps-notifications.php:76
 
693
  msgid "GeoIP"
694
  msgstr "GeoIP"
695
 
714
  msgstr ""
715
 
716
  #: includes/settings/tabs/wps-notifications.php:111
717
+ #: includes/settings/tabs/wps-notifications.php:116 schedule.php:221
718
  msgid "Statistical reporting"
719
  msgstr "Статистическата отчетност"
720
 
763
  msgstr ""
764
 
765
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
766
+ #: widget.php:245 wp-statistics.php:536
767
  msgid "User Online"
768
  msgstr "Онлайн потребители"
769
 
806
  msgstr "Обобщена статистика"
807
 
808
  #: includes/settings/tabs/wps-overview-display.php:28
809
+ #: includes/settings/wps-settings.php:108
810
  msgid "About"
811
  msgstr "За"
812
 
856
  msgid "Map type"
857
  msgstr "Тип карта"
858
 
859
+ #: includes/functions/functions.php:404
860
  #: includes/settings/tabs/wps-overview-display.php:128
861
  msgid "Google"
862
  msgstr "Google"
966
  msgid "Remove data and settings, this action cannot be undone."
967
  msgstr ""
968
 
969
+ #: includes/settings/wps-settings.php:100
970
  msgid "General"
971
  msgstr "Общи"
972
 
973
+ #: includes/settings/wps-settings.php:101
974
  msgid "Notifications"
975
  msgstr ""
976
 
977
+ #: includes/settings/wps-settings.php:102
978
  msgid "Dashboard/Overview"
979
  msgstr ""
980
 
981
+ #: includes/settings/wps-settings.php:106
 
 
 
 
982
  msgid "Maintenance"
983
  msgstr "Поддръжка"
984
 
985
+ #: includes/settings/wps-settings.php:107
986
  msgid "Removal"
987
  msgstr ""
988
 
989
  #: includes/settings/tabs/wps-access-level.php:85
 
990
  #: includes/settings/tabs/wps-exclusions.php:234
991
+ #: includes/settings/tabs/wps-externals.php:284
992
  #: includes/settings/tabs/wps-general.php:349
 
993
  #: includes/settings/tabs/wps-maintenance.php:84
994
  #: includes/settings/tabs/wps-notifications.php:201
995
  #: includes/settings/tabs/wps-overview-display.php:388
1009
  msgid "Once Every 4 Weeks"
1010
  msgstr "Веднъж на всеки 4 седмици"
1011
 
1012
+ #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
1013
  msgid "Statistics"
1014
  msgstr "Статистики"
1015
 
1081
  msgid "Items"
1082
  msgstr "Броя"
1083
 
1084
+ #: widget.php:254 wp-statistics.php:561
1085
  msgid "Yesterday visit"
1086
  msgstr "Вчерашни посещения"
1087
 
1109
  msgid "WP Statistics has been removed, please disable and delete it."
1110
  msgstr ""
1111
 
1112
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1113
  #. Plugin Name of the plugin/theme
1114
  #: wp-statistics.php:37
1115
  msgid "WP Statistics"
1116
  msgstr "WP Statistics"
1117
 
1118
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1119
  #. Description of the plugin/theme
1120
  #: wp-statistics.php:38
1121
  msgid "Complete statistics for your WordPress site."
1145
  msgid "Setting page > GeoIP"
1146
  msgstr "Определянето страница > GeoIP"
1147
 
1148
+ #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
1149
  msgid "Settings"
1150
  msgstr "Настройки"
1151
 
1152
+ #: wp-statistics.php:265
1153
  msgid "Click here to visit the plugin on WordPress.org"
1154
  msgstr "Щракнете тук, за да посетите плъгин от WordPress.org"
1155
 
1156
+ #: wp-statistics.php:265
1157
  msgid "Visit WordPress.org page"
1158
  msgstr "Посетете страницата на WordPress.org"
1159
 
1160
+ #: wp-statistics.php:268
1161
  msgid "Click here to rate and review this plugin on WordPress.org"
1162
  msgstr "Щракнете тук, за да оцените и да преразгледа този плъгин от WordPress.org"
1163
 
1164
+ #: wp-statistics.php:268
1165
  msgid "Rate this plugin"
1166
  msgstr "Оцени този плъгин"
1167
 
1168
+ #: wp-statistics.php:312
1169
  msgid "WP Statistics - Hits"
1170
  msgstr "WP-статистика - хитове"
1171
 
1172
+ #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
1173
  msgid "Overview"
1174
  msgstr "Общ преглед"
1175
 
1176
+ #: wp-statistics.php:354 wp-statistics.php:430
1177
  msgid "Online"
1178
  msgstr ""
1179
 
1180
+ #: wp-statistics.php:356 wp-statistics.php:432
1181
  msgid "Referrers"
1182
  msgstr ""
1183
 
1184
+ #: shortcode.php:135 wp-statistics.php:357 wp-statistics.php:433
1185
  msgid "Searches"
1186
  msgstr "Търсения"
1187
 
1188
+ #: wp-statistics.php:358 wp-statistics.php:434
1189
  msgid "Search Words"
1190
  msgstr "Думи за търсене"
1191
 
1192
+ #: wp-statistics.php:359 wp-statistics.php:435
1193
  msgid "Top Visitors Today"
1194
  msgstr ""
1195
 
1196
+ #: wp-statistics.php:364 wp-statistics.php:437
1197
  msgid "Optimization"
1198
  msgstr "Оптимизация"
1199
 
1200
+ #: wp-statistics.php:370 wp-statistics.php:401
1201
  msgid "Manual"
1202
  msgstr "Ръководство"
1203
 
1204
+ #: wp-statistics.php:416
1205
  msgid "Site"
1206
  msgstr ""
1207
 
1208
+ #: wp-statistics.php:417
1209
  msgid "Options"
1210
  msgstr ""
1211
 
1212
+ #: wp-statistics.php:543
1213
  msgid "Today visitor"
1214
  msgstr "Днес посетителите"
1215
 
1216
+ #: wp-statistics.php:549
1217
  msgid "Today visit"
1218
  msgstr "Днес, посетете"
1219
 
1220
+ #: wp-statistics.php:555
1221
  msgid "Yesterday visitor"
1222
  msgstr "Вчера посетител"
1223
 
1224
+ #: wp-statistics.php:567
1225
  msgid "View Stats"
1226
  msgstr "Преглед на статистиките"
1227
 
1228
+ #: wp-statistics.php:591
1229
  msgid "Download ODF file"
1230
  msgstr "Изтегляне на ODF файл"
1231
 
1232
+ #: wp-statistics.php:592
1233
  msgid "Download HTML file"
1234
  msgstr "Изтегли HTML файл"
1235
 
1236
+ #: wp-statistics.php:596
1237
  msgid "Manual file not found."
1238
  msgstr "Ръчно файлът не е намерен."
1239
 
1240
+ #: wp-statistics.php:663 wp-statistics.php:770 wp-statistics.php:804
1241
  msgid "You do not have sufficient permissions to access this page."
1242
  msgstr "Нямате права за тази страница"
1243
 
1245
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
1246
  msgstr ""
1247
 
1248
+ #: wp-statistics.php:241
1249
  msgid "WP Statistics %s installed on"
1250
  msgstr ""
1251
 
1293
  msgid "Browscap.ini update on"
1294
  msgstr ""
1295
 
1296
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1297
  #. Plugin URI of the plugin/theme
1298
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1299
  #. Author URI of the plugin/theme
1300
  msgid "http://wp-statistics.com/"
1301
  msgstr "http://WP-Statistics.com/"
1422
  msgstr "Щракнете за превключване"
1423
 
1424
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1425
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
1426
+ #: wp-statistics.php:426
1427
  msgid "Browsers"
1428
  msgstr "Браузъри"
1429
 
1452
  msgid "Exclusions Statistics"
1453
  msgstr "Изключения статистика"
1454
 
1455
+ #: includes/functions/functions.php:931
1456
  msgid "10 Days"
1457
  msgstr "10 дни"
1458
 
1459
+ #: includes/functions/functions.php:931
1460
  msgid "20 Days"
1461
  msgstr "20 дни"
1462
 
1463
+ #: includes/functions/functions.php:931
1464
  msgid "30 Days"
1465
  msgstr "30 дни"
1466
 
1467
+ #: includes/functions/functions.php:931
1468
  msgid "2 Months"
1469
  msgstr "2 месеца"
1470
 
1471
+ #: includes/functions/functions.php:931
1472
  msgid "3 Months"
1473
  msgstr "3 месеца"
1474
 
1475
+ #: includes/functions/functions.php:931
1476
  msgid "6 Months"
1477
  msgstr "6 месеца"
1478
 
1479
+ #: includes/functions/functions.php:931
1480
  msgid "9 Months"
1481
  msgstr "9 месеца"
1482
 
1483
+ #: includes/functions/functions.php:931
1484
  msgid "1 Year"
1485
  msgstr "1 година"
1486
 
1529
  msgid "Latest Search Word Statistics"
1530
  msgstr "Последни Търсене дума статистика"
1531
 
1532
+ #: includes/log/last-search.php:110 includes/log/last-visitor.php:101
1533
  #: includes/log/online.php:50 includes/log/widgets/google.map.php:84
1534
  #: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
1535
+ #: includes/log/widgets/words.php:46
1536
  msgid "#hash#"
1537
  msgstr "#hash #"
1538
 
1539
+ #: includes/log/last-search.php:115 includes/log/last-visitor.php:106
1540
  #: includes/log/online.php:55 includes/log/top-referring.php:71
1541
+ #: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
1542
  #: includes/settings/tabs/wps-overview-display.php:33
1543
  #: includes/settings/tabs/wps-overview-display.php:113
1544
  msgid "Map"
1545
  msgstr "Карта"
1546
 
1547
+ #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1548
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1549
  #: includes/log/top-referring.php:125
1550
  msgid "Page"
1551
  msgstr "Страница"
1552
 
1553
+ #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1554
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1555
  #: includes/log/top-referring.php:125
1556
  msgid "From"
1739
  msgstr "Време: %s"
1740
 
1741
  #: includes/log/widgets/top.visitors.php:31
1742
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
1743
+ #: wp-statistics.php:353 wp-statistics.php:429
1744
  msgid "Hits"
1745
  msgstr "Посещения"
1746
 
1782
  msgid "No platform data found to remove!"
1783
  msgstr ""
1784
 
1785
+ #: includes/functions/functions.php:1019
1786
  msgid "%s table data deleted successfully."
1787
  msgstr "%s таблични данни изтрито успешно."
1788
 
1789
+ #: includes/functions/functions.php:1023
1790
  msgid "Error, %s not emptied!"
1791
  msgstr "Грешка, %s не се изпразва!"
1792
 
1812
 
1813
  #: includes/optimization/tabs/wps-optimization-database.php:25
1814
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1815
+ #: wp-statistics.php:351 wp-statistics.php:427
1816
  msgid "Countries"
1817
  msgstr "Страни"
1818
 
1828
  msgstr "По-старите инсталации на WP Statistics позволяват дублиране на записи в таблицата на посетителите в ъгъла случай. По-новите инсталира защита срещу това с уникален индекс на масата. За да създадете индекса на на по-старите инсталира дублираните записи трябва да бъдат изтрити първи. Щракнете върху \"Update Now\" ще сканира таблицата vistitors, изтриване на дублиращи се записи и да добавите към индекса."
1829
 
1830
  #: includes/optimization/tabs/wps-optimization-database.php:41
1831
+ #: includes/optimization/tabs/wps-optimization-database.php:102
1832
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1833
  msgstr "Тази операция може да отнеме много време на настанявам с много редове в таблицата на посетителите."
1834
 
1838
 
1839
  #: includes/optimization/tabs/wps-optimization-database.php:47
1840
  #: includes/optimization/tabs/wps-optimization-database.php:77
1841
+ #: includes/optimization/tabs/wps-optimization-database.php:108
1842
  msgid "Congratulations, your installation is already up to date, nothing to do."
1843
  msgstr "Поздравления вашата инсталация е вече до дата, нищо общо."
1844
 
1845
  #: includes/optimization/tabs/wps-optimization-export.php:8
1846
+ #: includes/optimization/wps-optimization.php:212
1847
  msgid "Export"
1848
  msgstr "Износ"
1849
 
1896
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1897
  #: includes/settings/tabs/wps-general.php:138
1898
  #: includes/settings/tabs/wps-general.php:143 shortcode.php:133
1899
+ #: wp-statistics.php:360 wp-statistics.php:436
1900
  msgid "Visitors"
1901
  msgstr "Посетители"
1902
 
2211
  msgid "Install routine complete."
2212
  msgstr "Инсталиране на ежедневието пълна."
2213
 
2214
+ #: includes/optimization/wps-optimization.php:211
2215
  msgid "Resources/Information"
2216
  msgstr "Ресурси/информация"
2217
 
2218
+ #: includes/optimization/wps-optimization.php:213
2219
  msgid "Purging"
2220
  msgstr "Прочистване"
2221
 
2222
+ #: includes/optimization/wps-optimization.php:214
2223
  msgid "Database"
2224
  msgstr "База данни"
2225
 
2226
+ #: includes/optimization/wps-optimization.php:215
2227
  msgid "Updates"
2228
  msgstr "Актуализации"
2229
 
2230
+ #: includes/optimization/wps-optimization.php:216
2231
  msgid "Historical"
2232
  msgstr ""
2233
 
2377
  msgstr ""
2378
 
2379
  #: includes/settings/tabs/wps-access-level.php:23
2380
+ #: includes/settings/wps-settings.php:103
2381
  msgid "Access Levels"
2382
  msgstr "Нива на достъп"
2383
 
2410
  msgstr "Ако имате нужда от по-силен решение за делегиране на достъп, може да искате да погледнете %s в WordPress плъгин директорията."
2411
 
2412
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2413
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:352
2414
+ #: wp-statistics.php:428
2415
  msgid "Exclusions"
2416
  msgstr "Изключения"
2417
 
2582
  msgid "Exclude the RSS feeds for registering as a hit."
2583
  msgstr ""
2584
 
2585
+ #: includes/settings/tabs/wps-externals.php:162
2586
  msgid "browscap settings"
2587
  msgstr "browscap настройки"
2588
 
2589
+ #: includes/settings/tabs/wps-externals.php:167
2590
  msgid "browscap usage"
2591
  msgstr "използване на browscap"
2592
 
2593
+ #: includes/settings/tabs/wps-externals.php:52
2594
+ #: includes/settings/tabs/wps-externals.php:76
2595
+ #: includes/settings/tabs/wps-externals.php:109
2596
+ #: includes/settings/tabs/wps-externals.php:172
2597
+ #: includes/settings/tabs/wps-externals.php:196
2598
+ #: includes/settings/tabs/wps-externals.php:235
2599
+ #: includes/settings/tabs/wps-externals.php:259
2600
  #: includes/settings/tabs/wps-general.php:76
2601
  #: includes/settings/tabs/wps-general.php:92
2602
  #: includes/settings/tabs/wps-general.php:116
2612
  #: includes/settings/tabs/wps-general.php:286
2613
  #: includes/settings/tabs/wps-general.php:325
2614
  #: includes/settings/tabs/wps-general.php:341
 
 
 
2615
  #: includes/settings/tabs/wps-maintenance.php:40
2616
  #: includes/settings/tabs/wps-maintenance.php:64
2617
  #: includes/settings/tabs/wps-notifications.php:69
2626
  msgid "Active"
2627
  msgstr "Активен"
2628
 
2629
+ #: includes/settings/tabs/wps-externals.php:173
2630
  msgid "The browscap database will be downloaded and used to detect robots."
2631
  msgstr "Базата данни на browscap ще бъдат изтеглени и използвани за откриване на роботи."
2632
 
2633
+ #: includes/settings/tabs/wps-externals.php:179
2634
  msgid "Update browscap Info"
2635
  msgstr "Актуализиране на browscap информация"
2636
 
2637
+ #: includes/settings/tabs/wps-externals.php:184
2638
  msgid "Download browscap Database"
2639
  msgstr "Изтегли browscap база данни"
2640
 
2641
+ #: includes/settings/tabs/wps-externals.php:65
2642
+ #: includes/settings/tabs/wps-externals.php:185
2643
+ #: includes/settings/tabs/wps-externals.php:248
2644
  msgid "Save changes on this page to download the update."
2645
  msgstr "Запишете промените на тази страница, за да изтеглите актуализацията."
2646
 
2647
+ #: includes/settings/tabs/wps-externals.php:191
2648
  msgid "Schedule weekly update of browscap DB"
2649
  msgstr "Планиране на седмична актуализация на browscap DB"
2650
 
2651
+ #: includes/settings/tabs/wps-externals.php:79
2652
+ #: includes/settings/tabs/wps-externals.php:199
2653
+ #: includes/settings/tabs/wps-externals.php:262
2654
  msgid "Next update will be"
2655
  msgstr "Следващата актуализация ще бъде"
2656
 
2657
+ #: includes/settings/tabs/wps-externals.php:214
2658
  msgid "Download of the browscap database will be scheduled for once a week."
2659
  msgstr "Изтегляне на базата данни на browscap ще бъде насрочено за един път седмично."
2660
 
languages/wp_statistics-bn_BD.po CHANGED
@@ -10,6 +10,70 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  #: includes/settings/tabs/wps-exclusions.php:148
14
  msgid "Treat corrupt browser info as a bot"
15
  msgstr ""
@@ -158,7 +222,7 @@ msgstr ""
158
  msgid "Have you thought about donating to WP Statistics?"
159
  msgstr ""
160
 
161
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:362
162
  msgid "Donate"
163
  msgstr ""
164
 
@@ -194,11 +258,11 @@ msgstr ""
194
  msgid "Time Frame"
195
  msgstr ""
196
 
197
- #: includes/functions/functions.php:929
198
  msgid "to"
199
  msgstr ""
200
 
201
- #: includes/functions/functions.php:929 includes/log/top-visitors.php:29
202
  msgid "Go"
203
  msgstr ""
204
 
@@ -242,11 +306,11 @@ msgstr ""
242
  msgid "Filtered by"
243
  msgstr ""
244
 
245
- #: includes/functions/functions.php:922 includes/functions/functions.php:925
246
  msgid "Range"
247
  msgstr ""
248
 
249
- #: includes/functions/functions.php:929 includes/log/top-visitors.php:29
250
  msgid "MM/DD/YYYY"
251
  msgstr "MM/DD/YYYY"
252
 
@@ -290,27 +354,27 @@ msgstr ""
290
  msgid "Last 7 Days (Week)"
291
  msgstr ""
292
 
293
- #: includes/functions/functions.php:403
294
  msgid "Yahoo!"
295
  msgstr ""
296
 
297
- #: includes/functions/functions.php:404
298
  msgid "Yandex"
299
  msgstr ""
300
 
301
- #: includes/functions/functions.php:400
302
  msgid "clearch.org"
303
  msgstr ""
304
 
305
- #: includes/functions/functions.php:401
306
  msgid "DuckDuckGo"
307
  msgstr ""
308
 
309
- #: includes/functions/functions.php:399
310
  msgid "Bing"
311
  msgstr ""
312
 
313
- #: includes/functions/functions.php:398
314
  msgid "Baidu"
315
  msgstr ""
316
 
@@ -413,8 +477,8 @@ msgid "For each visit to account for several hits. Currently %s."
413
  msgstr ""
414
 
415
  #: includes/settings/tabs/wps-general.php:177
416
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:351
417
- #: wp-statistics.php:427
418
  msgid "Pages"
419
  msgstr ""
420
 
@@ -498,75 +562,75 @@ msgstr ""
498
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
499
  msgstr ""
500
 
501
- #: includes/settings/tabs/wps-geoip.php:27
502
  msgid "GeoIP settings"
503
  msgstr ""
504
 
505
- #: includes/settings/tabs/wps-geoip.php:32
506
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
507
  msgstr ""
508
 
509
- #: includes/settings/tabs/wps-geoip.php:42
510
  msgid "GeoIP collection"
511
  msgstr ""
512
 
513
- #: includes/settings/tabs/wps-geoip.php:48
514
  msgid "For get more information and location (country) from visitor, enable this feature."
515
  msgstr ""
516
 
517
- #: includes/settings/tabs/wps-geoip.php:54
518
  msgid "Update GeoIP Info"
519
  msgstr ""
520
 
521
- #: includes/settings/tabs/wps-geoip.php:59
522
  msgid "Download GeoIP Database"
523
  msgstr ""
524
 
525
- #: includes/settings/tabs/wps-geoip.php:66
526
  msgid "Schedule monthly update of GeoIP DB"
527
  msgstr ""
528
 
529
- #: includes/settings/tabs/wps-geoip.php:92
530
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
531
  msgstr ""
532
 
533
- #: includes/settings/tabs/wps-geoip.php:93
534
  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)."
535
  msgstr ""
536
 
537
- #: includes/settings/tabs/wps-geoip.php:99
538
  msgid "Populate missing GeoIP after update of GeoIP DB"
539
  msgstr ""
540
 
541
- #: includes/settings/tabs/wps-geoip.php:105
542
  msgid "Update any missing GeoIP data after downloading a new database."
543
  msgstr ""
544
 
545
- #: includes/settings/tabs/wps-geoip.php:111
546
  msgid "Country code for private IP addresses"
547
  msgstr ""
548
 
549
- #: includes/settings/tabs/wps-geoip.php:116
550
  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."
551
  msgstr ""
552
 
553
- #: includes/settings/tabs/wps-geoip.php:127
554
  msgid "GeoIP collection is disabled due to the following reasons:"
555
  msgstr ""
556
 
557
- #: includes/settings/tabs/wps-geoip.php:130
558
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
559
  msgstr ""
560
 
561
- #: includes/settings/tabs/wps-geoip.php:135
562
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
563
  msgstr ""
564
 
565
- #: includes/settings/tabs/wps-geoip.php:141
566
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
567
  msgstr ""
568
 
569
- #: includes/settings/tabs/wps-geoip.php:147
570
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
571
  msgstr ""
572
 
@@ -626,7 +690,6 @@ msgstr ""
626
 
627
  #: includes/log/exclusions.php:24
628
  #: includes/settings/tabs/wps-notifications.php:76
629
- #: includes/settings/wps-settings.php:111
630
  msgid "GeoIP"
631
  msgstr ""
632
 
@@ -651,7 +714,7 @@ msgid "Send a report whenever the plugin is upgraded."
651
  msgstr ""
652
 
653
  #: includes/settings/tabs/wps-notifications.php:111
654
- #: includes/settings/tabs/wps-notifications.php:116 schedule.php:199
655
  msgid "Statistical reporting"
656
  msgstr ""
657
 
@@ -700,7 +763,7 @@ msgid "Any shortcode supported by your installation of WordPress, include all sh
700
  msgstr ""
701
 
702
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
703
- #: widget.php:245 wp-statistics.php:532
704
  msgid "User Online"
705
  msgstr "এখন দেখছে"
706
 
@@ -743,7 +806,7 @@ msgid "Summary Statistics"
743
  msgstr ""
744
 
745
  #: includes/settings/tabs/wps-overview-display.php:28
746
- #: includes/settings/wps-settings.php:115
747
  msgid "About"
748
  msgstr ""
749
 
@@ -793,7 +856,7 @@ msgstr ""
793
  msgid "Map type"
794
  msgstr ""
795
 
796
- #: includes/functions/functions.php:402
797
  #: includes/settings/tabs/wps-overview-display.php:128
798
  msgid "Google"
799
  msgstr "গুগল"
@@ -903,35 +966,30 @@ msgstr ""
903
  msgid "Remove data and settings, this action cannot be undone."
904
  msgstr ""
905
 
906
- #: includes/settings/wps-settings.php:106
907
  msgid "General"
908
  msgstr ""
909
 
910
- #: includes/settings/wps-settings.php:107
911
  msgid "Notifications"
912
  msgstr ""
913
 
914
- #: includes/settings/wps-settings.php:108
915
  msgid "Dashboard/Overview"
916
  msgstr ""
917
 
918
- #: includes/settings/wps-settings.php:112
919
- msgid "browscap"
920
- msgstr ""
921
-
922
- #: includes/settings/wps-settings.php:113
923
  msgid "Maintenance"
924
  msgstr ""
925
 
926
- #: includes/settings/wps-settings.php:114
927
  msgid "Removal"
928
  msgstr ""
929
 
930
  #: includes/settings/tabs/wps-access-level.php:85
931
- #: includes/settings/tabs/wps-browscap.php:81
932
  #: includes/settings/tabs/wps-exclusions.php:234
 
933
  #: includes/settings/tabs/wps-general.php:349
934
- #: includes/settings/tabs/wps-geoip.php:158
935
  #: includes/settings/tabs/wps-maintenance.php:84
936
  #: includes/settings/tabs/wps-notifications.php:201
937
  #: includes/settings/tabs/wps-overview-display.php:388
@@ -951,7 +1009,7 @@ msgstr ""
951
  msgid "Once Every 4 Weeks"
952
  msgstr ""
953
 
954
- #: widget.php:14 wp-statistics.php:342 wp-statistics.php:380
955
  msgid "Statistics"
956
  msgstr "পরিসংখ্যান"
957
 
@@ -1023,7 +1081,7 @@ msgstr "নাম"
1023
  msgid "Items"
1024
  msgstr "আইটেম"
1025
 
1026
- #: widget.php:254 wp-statistics.php:557
1027
  msgid "Yesterday visit"
1028
  msgstr "গতকাল দেখেছে"
1029
 
@@ -1051,13 +1109,13 @@ msgstr ""
1051
  msgid "WP Statistics has been removed, please disable and delete it."
1052
  msgstr ""
1053
 
1054
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1055
  #. Plugin Name of the plugin/theme
1056
  #: wp-statistics.php:37
1057
  msgid "WP Statistics"
1058
  msgstr ""
1059
 
1060
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1061
  #. Description of the plugin/theme
1062
  #: wp-statistics.php:38
1063
  msgid "Complete statistics for your WordPress site."
@@ -1087,99 +1145,99 @@ msgstr ""
1087
  msgid "Setting page > GeoIP"
1088
  msgstr ""
1089
 
1090
- #: wp-statistics.php:249 wp-statistics.php:361 wp-statistics.php:434
1091
  msgid "Settings"
1092
  msgstr "সেটিসং"
1093
 
1094
- #: wp-statistics.php:261
1095
  msgid "Click here to visit the plugin on WordPress.org"
1096
  msgstr ""
1097
 
1098
- #: wp-statistics.php:261
1099
  msgid "Visit WordPress.org page"
1100
  msgstr ""
1101
 
1102
- #: wp-statistics.php:264
1103
  msgid "Click here to rate and review this plugin on WordPress.org"
1104
  msgstr ""
1105
 
1106
- #: wp-statistics.php:264
1107
  msgid "Rate this plugin"
1108
  msgstr ""
1109
 
1110
- #: wp-statistics.php:308
1111
  msgid "WP Statistics - Hits"
1112
  msgstr ""
1113
 
1114
- #: wp-statistics.php:345 wp-statistics.php:383 wp-statistics.php:421
1115
  msgid "Overview"
1116
  msgstr ""
1117
 
1118
- #: wp-statistics.php:350 wp-statistics.php:426
1119
  msgid "Online"
1120
  msgstr ""
1121
 
1122
- #: wp-statistics.php:352 wp-statistics.php:428
1123
  msgid "Referrers"
1124
  msgstr ""
1125
 
1126
- #: shortcode.php:135 wp-statistics.php:353 wp-statistics.php:429
1127
  msgid "Searches"
1128
  msgstr ""
1129
 
1130
- #: wp-statistics.php:354 wp-statistics.php:430
1131
  msgid "Search Words"
1132
  msgstr ""
1133
 
1134
- #: wp-statistics.php:355 wp-statistics.php:431
1135
  msgid "Top Visitors Today"
1136
  msgstr ""
1137
 
1138
- #: wp-statistics.php:360 wp-statistics.php:433
1139
  msgid "Optimization"
1140
  msgstr ""
1141
 
1142
- #: wp-statistics.php:366 wp-statistics.php:397
1143
  msgid "Manual"
1144
  msgstr ""
1145
 
1146
- #: wp-statistics.php:412
1147
  msgid "Site"
1148
  msgstr ""
1149
 
1150
- #: wp-statistics.php:413
1151
  msgid "Options"
1152
  msgstr ""
1153
 
1154
- #: wp-statistics.php:539
1155
  msgid "Today visitor"
1156
  msgstr ""
1157
 
1158
- #: wp-statistics.php:545
1159
  msgid "Today visit"
1160
  msgstr ""
1161
 
1162
- #: wp-statistics.php:551
1163
  msgid "Yesterday visitor"
1164
  msgstr ""
1165
 
1166
- #: wp-statistics.php:563
1167
  msgid "View Stats"
1168
  msgstr ""
1169
 
1170
- #: wp-statistics.php:587
1171
  msgid "Download ODF file"
1172
  msgstr ""
1173
 
1174
- #: wp-statistics.php:588
1175
  msgid "Download HTML file"
1176
  msgstr ""
1177
 
1178
- #: wp-statistics.php:592
1179
  msgid "Manual file not found."
1180
  msgstr ""
1181
 
1182
- #: wp-statistics.php:659 wp-statistics.php:770 wp-statistics.php:804
1183
  msgid "You do not have sufficient permissions to access this page."
1184
  msgstr "আপনার এই পেজ দেখার মত পর্যাপ্ত অনুমতি নেই।"
1185
 
@@ -1187,7 +1245,7 @@ msgstr "আপনার এই পেজ দেখার মত পর্যা
1187
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
1188
  msgstr ""
1189
 
1190
- #: wp-statistics.php:237
1191
  msgid "WP Statistics %s installed on"
1192
  msgstr ""
1193
 
@@ -1235,9 +1293,9 @@ msgstr ""
1235
  msgid "Browscap.ini update on"
1236
  msgstr ""
1237
 
1238
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1239
  #. Plugin URI of the plugin/theme
1240
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1241
  #. Author URI of the plugin/theme
1242
  msgid "http://wp-statistics.com/"
1243
  msgstr ""
@@ -1364,8 +1422,8 @@ msgid "Click to toggle"
1364
  msgstr ""
1365
 
1366
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1367
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:346
1368
- #: wp-statistics.php:422
1369
  msgid "Browsers"
1370
  msgstr ""
1371
 
@@ -1394,35 +1452,35 @@ msgstr ""
1394
  msgid "Exclusions Statistics"
1395
  msgstr ""
1396
 
1397
- #: includes/functions/functions.php:879
1398
  msgid "10 Days"
1399
  msgstr ""
1400
 
1401
- #: includes/functions/functions.php:879
1402
  msgid "20 Days"
1403
  msgstr ""
1404
 
1405
- #: includes/functions/functions.php:879
1406
  msgid "30 Days"
1407
  msgstr ""
1408
 
1409
- #: includes/functions/functions.php:879
1410
  msgid "2 Months"
1411
  msgstr ""
1412
 
1413
- #: includes/functions/functions.php:879
1414
  msgid "3 Months"
1415
  msgstr ""
1416
 
1417
- #: includes/functions/functions.php:879
1418
  msgid "6 Months"
1419
  msgstr ""
1420
 
1421
- #: includes/functions/functions.php:879
1422
  msgid "9 Months"
1423
  msgstr ""
1424
 
1425
- #: includes/functions/functions.php:879
1426
  msgid "1 Year"
1427
  msgstr ""
1428
 
@@ -1471,28 +1529,28 @@ msgstr ""
1471
  msgid "Latest Search Word Statistics"
1472
  msgstr ""
1473
 
1474
- #: includes/log/last-search.php:100 includes/log/last-visitor.php:101
1475
  #: includes/log/online.php:50 includes/log/widgets/google.map.php:84
1476
  #: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
1477
- #: includes/log/widgets/words.php:36
1478
  msgid "#hash#"
1479
  msgstr ""
1480
 
1481
- #: includes/log/last-search.php:105 includes/log/last-visitor.php:106
1482
  #: includes/log/online.php:55 includes/log/top-referring.php:71
1483
- #: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:43
1484
  #: includes/settings/tabs/wps-overview-display.php:33
1485
  #: includes/settings/tabs/wps-overview-display.php:113
1486
  msgid "Map"
1487
  msgstr ""
1488
 
1489
- #: includes/log/last-search.php:142 includes/log/last-visitor.php:139
1490
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1491
  #: includes/log/top-referring.php:125
1492
  msgid "Page"
1493
  msgstr ""
1494
 
1495
- #: includes/log/last-search.php:142 includes/log/last-visitor.php:139
1496
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1497
  #: includes/log/top-referring.php:125
1498
  msgid "From"
@@ -1681,8 +1739,8 @@ msgid "Time: %s"
1681
  msgstr ""
1682
 
1683
  #: includes/log/widgets/top.visitors.php:31
1684
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:273
1685
- #: wp-statistics.php:349 wp-statistics.php:425
1686
  msgid "Hits"
1687
  msgstr ""
1688
 
@@ -1724,11 +1782,11 @@ msgstr ""
1724
  msgid "No platform data found to remove!"
1725
  msgstr ""
1726
 
1727
- #: includes/functions/functions.php:967
1728
  msgid "%s table data deleted successfully."
1729
  msgstr ""
1730
 
1731
- #: includes/functions/functions.php:971
1732
  msgid "Error, %s not emptied!"
1733
  msgstr ""
1734
 
@@ -1754,7 +1812,7 @@ msgstr ""
1754
 
1755
  #: includes/optimization/tabs/wps-optimization-database.php:25
1756
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1757
- #: wp-statistics.php:347 wp-statistics.php:423
1758
  msgid "Countries"
1759
  msgstr ""
1760
 
@@ -1770,6 +1828,7 @@ msgid "Older installs of WP Statistics allow for duplicate entries in the visito
1770
  msgstr ""
1771
 
1772
  #: includes/optimization/tabs/wps-optimization-database.php:41
 
1773
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1774
  msgstr ""
1775
 
@@ -1779,11 +1838,12 @@ msgstr ""
1779
 
1780
  #: includes/optimization/tabs/wps-optimization-database.php:47
1781
  #: includes/optimization/tabs/wps-optimization-database.php:77
 
1782
  msgid "Congratulations, your installation is already up to date, nothing to do."
1783
  msgstr ""
1784
 
1785
  #: includes/optimization/tabs/wps-optimization-export.php:8
1786
- #: includes/optimization/wps-optimization.php:183
1787
  msgid "Export"
1788
  msgstr ""
1789
 
@@ -1836,7 +1896,7 @@ msgstr ""
1836
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1837
  #: includes/settings/tabs/wps-general.php:138
1838
  #: includes/settings/tabs/wps-general.php:143 shortcode.php:133
1839
- #: wp-statistics.php:356 wp-statistics.php:432
1840
  msgid "Visitors"
1841
  msgstr ""
1842
 
@@ -2151,23 +2211,23 @@ msgstr ""
2151
  msgid "Install routine complete."
2152
  msgstr ""
2153
 
2154
- #: includes/optimization/wps-optimization.php:182
2155
  msgid "Resources/Information"
2156
  msgstr ""
2157
 
2158
- #: includes/optimization/wps-optimization.php:184
2159
  msgid "Purging"
2160
  msgstr ""
2161
 
2162
- #: includes/optimization/wps-optimization.php:185
2163
  msgid "Database"
2164
  msgstr ""
2165
 
2166
- #: includes/optimization/wps-optimization.php:186
2167
  msgid "Updates"
2168
  msgstr ""
2169
 
2170
- #: includes/optimization/wps-optimization.php:187
2171
  msgid "Historical"
2172
  msgstr ""
2173
 
@@ -2317,7 +2377,7 @@ msgid "This is the honey pot for WP Statistics to use, do not delete."
2317
  msgstr ""
2318
 
2319
  #: includes/settings/tabs/wps-access-level.php:23
2320
- #: includes/settings/wps-settings.php:109
2321
  msgid "Access Levels"
2322
  msgstr ""
2323
 
@@ -2350,8 +2410,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2350
  msgstr ""
2351
 
2352
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2353
- #: includes/settings/wps-settings.php:110 wp-statistics.php:348
2354
- #: wp-statistics.php:424
2355
  msgid "Exclusions"
2356
  msgstr ""
2357
 
@@ -2522,16 +2582,21 @@ msgstr ""
2522
  msgid "Exclude the RSS feeds for registering as a hit."
2523
  msgstr ""
2524
 
2525
- #: includes/settings/tabs/wps-browscap.php:22
2526
  msgid "browscap settings"
2527
  msgstr ""
2528
 
2529
- #: includes/settings/tabs/wps-browscap.php:27
2530
  msgid "browscap usage"
2531
  msgstr ""
2532
 
2533
- #: includes/settings/tabs/wps-browscap.php:32
2534
- #: includes/settings/tabs/wps-browscap.php:56
 
 
 
 
 
2535
  #: includes/settings/tabs/wps-general.php:76
2536
  #: includes/settings/tabs/wps-general.php:92
2537
  #: includes/settings/tabs/wps-general.php:116
@@ -2547,9 +2612,6 @@ msgstr ""
2547
  #: includes/settings/tabs/wps-general.php:286
2548
  #: includes/settings/tabs/wps-general.php:325
2549
  #: includes/settings/tabs/wps-general.php:341
2550
- #: includes/settings/tabs/wps-geoip.php:47
2551
- #: includes/settings/tabs/wps-geoip.php:71
2552
- #: includes/settings/tabs/wps-geoip.php:104
2553
  #: includes/settings/tabs/wps-maintenance.php:40
2554
  #: includes/settings/tabs/wps-maintenance.php:64
2555
  #: includes/settings/tabs/wps-notifications.php:69
@@ -2564,33 +2626,35 @@ msgstr ""
2564
  msgid "Active"
2565
  msgstr ""
2566
 
2567
- #: includes/settings/tabs/wps-browscap.php:33
2568
  msgid "The browscap database will be downloaded and used to detect robots."
2569
  msgstr ""
2570
 
2571
- #: includes/settings/tabs/wps-browscap.php:39
2572
  msgid "Update browscap Info"
2573
  msgstr ""
2574
 
2575
- #: includes/settings/tabs/wps-browscap.php:44
2576
  msgid "Download browscap Database"
2577
  msgstr ""
2578
 
2579
- #: includes/settings/tabs/wps-browscap.php:45
2580
- #: includes/settings/tabs/wps-geoip.php:60
 
2581
  msgid "Save changes on this page to download the update."
2582
  msgstr ""
2583
 
2584
- #: includes/settings/tabs/wps-browscap.php:51
2585
  msgid "Schedule weekly update of browscap DB"
2586
  msgstr ""
2587
 
2588
- #: includes/settings/tabs/wps-browscap.php:59
2589
- #: includes/settings/tabs/wps-geoip.php:74
 
2590
  msgid "Next update will be"
2591
  msgstr ""
2592
 
2593
- #: includes/settings/tabs/wps-browscap.php:74
2594
  msgid "Download of the browscap database will be scheduled for once a week."
2595
  msgstr ""
2596
 
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: includes/optimization/wps-optimization.php:173
14
+ msgid "Search table conversion complete, %d rows added."
15
+ msgstr ""
16
+
17
+ #: includes/optimization/tabs/wps-optimization-database.php:107
18
+ msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion."
19
+ msgstr ""
20
+
21
+ #: includes/optimization/tabs/wps-optimization-database.php:86
22
+ msgid "Search Table"
23
+ msgstr ""
24
+
25
+ #: includes/optimization/tabs/wps-optimization-database.php:91
26
+ msgid "Convert"
27
+ msgstr ""
28
+
29
+ #: includes/optimization/tabs/wps-optimization-database.php:100
30
+ msgid "Convert Now!"
31
+ msgstr ""
32
+
33
+ #: includes/optimization/tabs/wps-optimization-database.php:101
34
+ msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion, however the old data must first be converted to the new format before it can be used."
35
+ msgstr ""
36
+
37
+ #: includes/log/exclusions.php:24
38
+ msgid "Referrer Spam"
39
+ msgstr ""
40
+
41
+ #: includes/settings/tabs/wps-externals.php:277
42
+ msgid "Download of the Piwik Referrer Spam Blacklist database will be scheduled for once a week."
43
+ msgstr ""
44
+
45
+ #: includes/settings/wps-settings.php:105
46
+ msgid "Externals"
47
+ msgstr ""
48
+
49
+ #: includes/settings/tabs/wps-externals.php:219
50
+ msgid "Piwik Referrer Spam Blacklist settings"
51
+ msgstr ""
52
+
53
+ #: includes/settings/tabs/wps-externals.php:254
54
+ msgid "Schedule weekly update of Piwik Referrer Spam Blacklist DB"
55
+ msgstr ""
56
+
57
+ #: includes/settings/tabs/wps-externals.php:247
58
+ msgid "Download Piwik Referrer Spam Blacklist Database"
59
+ msgstr ""
60
+
61
+ #: includes/settings/tabs/wps-externals.php:242
62
+ msgid "Update Piwik Referrer Spam Blacklist Info"
63
+ msgstr ""
64
+
65
+ #: includes/settings/tabs/wps-externals.php:236
66
+ msgid "The Piwik Referrer Spam Blacklist database will be downloaded and used to detect referrer spam."
67
+ msgstr ""
68
+
69
+ #: includes/settings/tabs/wps-externals.php:224
70
+ msgid "Referrer spam blacklist is provided by Piwik, available from %s."
71
+ msgstr ""
72
+
73
+ #: includes/settings/tabs/wps-externals.php:230
74
+ msgid "Piwik Referrer Spam Blacklist usage"
75
+ msgstr ""
76
+
77
  #: includes/settings/tabs/wps-exclusions.php:148
78
  msgid "Treat corrupt browser info as a bot"
79
  msgstr ""
222
  msgid "Have you thought about donating to WP Statistics?"
223
  msgstr ""
224
 
225
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
226
  msgid "Donate"
227
  msgstr ""
228
 
258
  msgid "Time Frame"
259
  msgstr ""
260
 
261
+ #: includes/functions/functions.php:981
262
  msgid "to"
263
  msgstr ""
264
 
265
+ #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
266
  msgid "Go"
267
  msgstr ""
268
 
306
  msgid "Filtered by"
307
  msgstr ""
308
 
309
+ #: includes/functions/functions.php:974 includes/functions/functions.php:977
310
  msgid "Range"
311
  msgstr ""
312
 
313
+ #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
314
  msgid "MM/DD/YYYY"
315
  msgstr "MM/DD/YYYY"
316
 
354
  msgid "Last 7 Days (Week)"
355
  msgstr ""
356
 
357
+ #: includes/functions/functions.php:405
358
  msgid "Yahoo!"
359
  msgstr ""
360
 
361
+ #: includes/functions/functions.php:406
362
  msgid "Yandex"
363
  msgstr ""
364
 
365
+ #: includes/functions/functions.php:402
366
  msgid "clearch.org"
367
  msgstr ""
368
 
369
+ #: includes/functions/functions.php:403
370
  msgid "DuckDuckGo"
371
  msgstr ""
372
 
373
+ #: includes/functions/functions.php:401
374
  msgid "Bing"
375
  msgstr ""
376
 
377
+ #: includes/functions/functions.php:400
378
  msgid "Baidu"
379
  msgstr ""
380
 
477
  msgstr ""
478
 
479
  #: includes/settings/tabs/wps-general.php:177
480
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
481
+ #: wp-statistics.php:431
482
  msgid "Pages"
483
  msgstr ""
484
 
562
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
563
  msgstr ""
564
 
565
+ #: includes/settings/tabs/wps-externals.php:32
566
  msgid "GeoIP settings"
567
  msgstr ""
568
 
569
+ #: includes/settings/tabs/wps-externals.php:37
570
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
571
  msgstr ""
572
 
573
+ #: includes/settings/tabs/wps-externals.php:47
574
  msgid "GeoIP collection"
575
  msgstr ""
576
 
577
+ #: includes/settings/tabs/wps-externals.php:53
578
  msgid "For get more information and location (country) from visitor, enable this feature."
579
  msgstr ""
580
 
581
+ #: includes/settings/tabs/wps-externals.php:59
582
  msgid "Update GeoIP Info"
583
  msgstr ""
584
 
585
+ #: includes/settings/tabs/wps-externals.php:64
586
  msgid "Download GeoIP Database"
587
  msgstr ""
588
 
589
+ #: includes/settings/tabs/wps-externals.php:71
590
  msgid "Schedule monthly update of GeoIP DB"
591
  msgstr ""
592
 
593
+ #: includes/settings/tabs/wps-externals.php:97
594
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
595
  msgstr ""
596
 
597
+ #: includes/settings/tabs/wps-externals.php:98
598
  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)."
599
  msgstr ""
600
 
601
+ #: includes/settings/tabs/wps-externals.php:104
602
  msgid "Populate missing GeoIP after update of GeoIP DB"
603
  msgstr ""
604
 
605
+ #: includes/settings/tabs/wps-externals.php:110
606
  msgid "Update any missing GeoIP data after downloading a new database."
607
  msgstr ""
608
 
609
+ #: includes/settings/tabs/wps-externals.php:116
610
  msgid "Country code for private IP addresses"
611
  msgstr ""
612
 
613
+ #: includes/settings/tabs/wps-externals.php:121
614
  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."
615
  msgstr ""
616
 
617
+ #: includes/settings/tabs/wps-externals.php:132
618
  msgid "GeoIP collection is disabled due to the following reasons:"
619
  msgstr ""
620
 
621
+ #: includes/settings/tabs/wps-externals.php:135
622
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
623
  msgstr ""
624
 
625
+ #: includes/settings/tabs/wps-externals.php:140
626
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
627
  msgstr ""
628
 
629
+ #: includes/settings/tabs/wps-externals.php:146
630
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
631
  msgstr ""
632
 
633
+ #: includes/settings/tabs/wps-externals.php:152
634
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
635
  msgstr ""
636
 
690
 
691
  #: includes/log/exclusions.php:24
692
  #: includes/settings/tabs/wps-notifications.php:76
 
693
  msgid "GeoIP"
694
  msgstr ""
695
 
714
  msgstr ""
715
 
716
  #: includes/settings/tabs/wps-notifications.php:111
717
+ #: includes/settings/tabs/wps-notifications.php:116 schedule.php:221
718
  msgid "Statistical reporting"
719
  msgstr ""
720
 
763
  msgstr ""
764
 
765
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
766
+ #: widget.php:245 wp-statistics.php:536
767
  msgid "User Online"
768
  msgstr "এখন দেখছে"
769
 
806
  msgstr ""
807
 
808
  #: includes/settings/tabs/wps-overview-display.php:28
809
+ #: includes/settings/wps-settings.php:108
810
  msgid "About"
811
  msgstr ""
812
 
856
  msgid "Map type"
857
  msgstr ""
858
 
859
+ #: includes/functions/functions.php:404
860
  #: includes/settings/tabs/wps-overview-display.php:128
861
  msgid "Google"
862
  msgstr "গুগল"
966
  msgid "Remove data and settings, this action cannot be undone."
967
  msgstr ""
968
 
969
+ #: includes/settings/wps-settings.php:100
970
  msgid "General"
971
  msgstr ""
972
 
973
+ #: includes/settings/wps-settings.php:101
974
  msgid "Notifications"
975
  msgstr ""
976
 
977
+ #: includes/settings/wps-settings.php:102
978
  msgid "Dashboard/Overview"
979
  msgstr ""
980
 
981
+ #: includes/settings/wps-settings.php:106
 
 
 
 
982
  msgid "Maintenance"
983
  msgstr ""
984
 
985
+ #: includes/settings/wps-settings.php:107
986
  msgid "Removal"
987
  msgstr ""
988
 
989
  #: includes/settings/tabs/wps-access-level.php:85
 
990
  #: includes/settings/tabs/wps-exclusions.php:234
991
+ #: includes/settings/tabs/wps-externals.php:284
992
  #: includes/settings/tabs/wps-general.php:349
 
993
  #: includes/settings/tabs/wps-maintenance.php:84
994
  #: includes/settings/tabs/wps-notifications.php:201
995
  #: includes/settings/tabs/wps-overview-display.php:388
1009
  msgid "Once Every 4 Weeks"
1010
  msgstr ""
1011
 
1012
+ #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
1013
  msgid "Statistics"
1014
  msgstr "পরিসংখ্যান"
1015
 
1081
  msgid "Items"
1082
  msgstr "আইটেম"
1083
 
1084
+ #: widget.php:254 wp-statistics.php:561
1085
  msgid "Yesterday visit"
1086
  msgstr "গতকাল দেখেছে"
1087
 
1109
  msgid "WP Statistics has been removed, please disable and delete it."
1110
  msgstr ""
1111
 
1112
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1113
  #. Plugin Name of the plugin/theme
1114
  #: wp-statistics.php:37
1115
  msgid "WP Statistics"
1116
  msgstr ""
1117
 
1118
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1119
  #. Description of the plugin/theme
1120
  #: wp-statistics.php:38
1121
  msgid "Complete statistics for your WordPress site."
1145
  msgid "Setting page > GeoIP"
1146
  msgstr ""
1147
 
1148
+ #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
1149
  msgid "Settings"
1150
  msgstr "সেটিসং"
1151
 
1152
+ #: wp-statistics.php:265
1153
  msgid "Click here to visit the plugin on WordPress.org"
1154
  msgstr ""
1155
 
1156
+ #: wp-statistics.php:265
1157
  msgid "Visit WordPress.org page"
1158
  msgstr ""
1159
 
1160
+ #: wp-statistics.php:268
1161
  msgid "Click here to rate and review this plugin on WordPress.org"
1162
  msgstr ""
1163
 
1164
+ #: wp-statistics.php:268
1165
  msgid "Rate this plugin"
1166
  msgstr ""
1167
 
1168
+ #: wp-statistics.php:312
1169
  msgid "WP Statistics - Hits"
1170
  msgstr ""
1171
 
1172
+ #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
1173
  msgid "Overview"
1174
  msgstr ""
1175
 
1176
+ #: wp-statistics.php:354 wp-statistics.php:430
1177
  msgid "Online"
1178
  msgstr ""
1179
 
1180
+ #: wp-statistics.php:356 wp-statistics.php:432
1181
  msgid "Referrers"
1182
  msgstr ""
1183
 
1184
+ #: shortcode.php:135 wp-statistics.php:357 wp-statistics.php:433
1185
  msgid "Searches"
1186
  msgstr ""
1187
 
1188
+ #: wp-statistics.php:358 wp-statistics.php:434
1189
  msgid "Search Words"
1190
  msgstr ""
1191
 
1192
+ #: wp-statistics.php:359 wp-statistics.php:435
1193
  msgid "Top Visitors Today"
1194
  msgstr ""
1195
 
1196
+ #: wp-statistics.php:364 wp-statistics.php:437
1197
  msgid "Optimization"
1198
  msgstr ""
1199
 
1200
+ #: wp-statistics.php:370 wp-statistics.php:401
1201
  msgid "Manual"
1202
  msgstr ""
1203
 
1204
+ #: wp-statistics.php:416
1205
  msgid "Site"
1206
  msgstr ""
1207
 
1208
+ #: wp-statistics.php:417
1209
  msgid "Options"
1210
  msgstr ""
1211
 
1212
+ #: wp-statistics.php:543
1213
  msgid "Today visitor"
1214
  msgstr ""
1215
 
1216
+ #: wp-statistics.php:549
1217
  msgid "Today visit"
1218
  msgstr ""
1219
 
1220
+ #: wp-statistics.php:555
1221
  msgid "Yesterday visitor"
1222
  msgstr ""
1223
 
1224
+ #: wp-statistics.php:567
1225
  msgid "View Stats"
1226
  msgstr ""
1227
 
1228
+ #: wp-statistics.php:591
1229
  msgid "Download ODF file"
1230
  msgstr ""
1231
 
1232
+ #: wp-statistics.php:592
1233
  msgid "Download HTML file"
1234
  msgstr ""
1235
 
1236
+ #: wp-statistics.php:596
1237
  msgid "Manual file not found."
1238
  msgstr ""
1239
 
1240
+ #: wp-statistics.php:663 wp-statistics.php:770 wp-statistics.php:804
1241
  msgid "You do not have sufficient permissions to access this page."
1242
  msgstr "আপনার এই পেজ দেখার মত পর্যাপ্ত অনুমতি নেই।"
1243
 
1245
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
1246
  msgstr ""
1247
 
1248
+ #: wp-statistics.php:241
1249
  msgid "WP Statistics %s installed on"
1250
  msgstr ""
1251
 
1293
  msgid "Browscap.ini update on"
1294
  msgstr ""
1295
 
1296
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1297
  #. Plugin URI of the plugin/theme
1298
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1299
  #. Author URI of the plugin/theme
1300
  msgid "http://wp-statistics.com/"
1301
  msgstr ""
1422
  msgstr ""
1423
 
1424
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1425
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
1426
+ #: wp-statistics.php:426
1427
  msgid "Browsers"
1428
  msgstr ""
1429
 
1452
  msgid "Exclusions Statistics"
1453
  msgstr ""
1454
 
1455
+ #: includes/functions/functions.php:931
1456
  msgid "10 Days"
1457
  msgstr ""
1458
 
1459
+ #: includes/functions/functions.php:931
1460
  msgid "20 Days"
1461
  msgstr ""
1462
 
1463
+ #: includes/functions/functions.php:931
1464
  msgid "30 Days"
1465
  msgstr ""
1466
 
1467
+ #: includes/functions/functions.php:931
1468
  msgid "2 Months"
1469
  msgstr ""
1470
 
1471
+ #: includes/functions/functions.php:931
1472
  msgid "3 Months"
1473
  msgstr ""
1474
 
1475
+ #: includes/functions/functions.php:931
1476
  msgid "6 Months"
1477
  msgstr ""
1478
 
1479
+ #: includes/functions/functions.php:931
1480
  msgid "9 Months"
1481
  msgstr ""
1482
 
1483
+ #: includes/functions/functions.php:931
1484
  msgid "1 Year"
1485
  msgstr ""
1486
 
1529
  msgid "Latest Search Word Statistics"
1530
  msgstr ""
1531
 
1532
+ #: includes/log/last-search.php:110 includes/log/last-visitor.php:101
1533
  #: includes/log/online.php:50 includes/log/widgets/google.map.php:84
1534
  #: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
1535
+ #: includes/log/widgets/words.php:46
1536
  msgid "#hash#"
1537
  msgstr ""
1538
 
1539
+ #: includes/log/last-search.php:115 includes/log/last-visitor.php:106
1540
  #: includes/log/online.php:55 includes/log/top-referring.php:71
1541
+ #: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
1542
  #: includes/settings/tabs/wps-overview-display.php:33
1543
  #: includes/settings/tabs/wps-overview-display.php:113
1544
  msgid "Map"
1545
  msgstr ""
1546
 
1547
+ #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1548
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1549
  #: includes/log/top-referring.php:125
1550
  msgid "Page"
1551
  msgstr ""
1552
 
1553
+ #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1554
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1555
  #: includes/log/top-referring.php:125
1556
  msgid "From"
1739
  msgstr ""
1740
 
1741
  #: includes/log/widgets/top.visitors.php:31
1742
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
1743
+ #: wp-statistics.php:353 wp-statistics.php:429
1744
  msgid "Hits"
1745
  msgstr ""
1746
 
1782
  msgid "No platform data found to remove!"
1783
  msgstr ""
1784
 
1785
+ #: includes/functions/functions.php:1019
1786
  msgid "%s table data deleted successfully."
1787
  msgstr ""
1788
 
1789
+ #: includes/functions/functions.php:1023
1790
  msgid "Error, %s not emptied!"
1791
  msgstr ""
1792
 
1812
 
1813
  #: includes/optimization/tabs/wps-optimization-database.php:25
1814
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1815
+ #: wp-statistics.php:351 wp-statistics.php:427
1816
  msgid "Countries"
1817
  msgstr ""
1818
 
1828
  msgstr ""
1829
 
1830
  #: includes/optimization/tabs/wps-optimization-database.php:41
1831
+ #: includes/optimization/tabs/wps-optimization-database.php:102
1832
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1833
  msgstr ""
1834
 
1838
 
1839
  #: includes/optimization/tabs/wps-optimization-database.php:47
1840
  #: includes/optimization/tabs/wps-optimization-database.php:77
1841
+ #: includes/optimization/tabs/wps-optimization-database.php:108
1842
  msgid "Congratulations, your installation is already up to date, nothing to do."
1843
  msgstr ""
1844
 
1845
  #: includes/optimization/tabs/wps-optimization-export.php:8
1846
+ #: includes/optimization/wps-optimization.php:212
1847
  msgid "Export"
1848
  msgstr ""
1849
 
1896
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1897
  #: includes/settings/tabs/wps-general.php:138
1898
  #: includes/settings/tabs/wps-general.php:143 shortcode.php:133
1899
+ #: wp-statistics.php:360 wp-statistics.php:436
1900
  msgid "Visitors"
1901
  msgstr ""
1902
 
2211
  msgid "Install routine complete."
2212
  msgstr ""
2213
 
2214
+ #: includes/optimization/wps-optimization.php:211
2215
  msgid "Resources/Information"
2216
  msgstr ""
2217
 
2218
+ #: includes/optimization/wps-optimization.php:213
2219
  msgid "Purging"
2220
  msgstr ""
2221
 
2222
+ #: includes/optimization/wps-optimization.php:214
2223
  msgid "Database"
2224
  msgstr ""
2225
 
2226
+ #: includes/optimization/wps-optimization.php:215
2227
  msgid "Updates"
2228
  msgstr ""
2229
 
2230
+ #: includes/optimization/wps-optimization.php:216
2231
  msgid "Historical"
2232
  msgstr ""
2233
 
2377
  msgstr ""
2378
 
2379
  #: includes/settings/tabs/wps-access-level.php:23
2380
+ #: includes/settings/wps-settings.php:103
2381
  msgid "Access Levels"
2382
  msgstr ""
2383
 
2410
  msgstr ""
2411
 
2412
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2413
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:352
2414
+ #: wp-statistics.php:428
2415
  msgid "Exclusions"
2416
  msgstr ""
2417
 
2582
  msgid "Exclude the RSS feeds for registering as a hit."
2583
  msgstr ""
2584
 
2585
+ #: includes/settings/tabs/wps-externals.php:162
2586
  msgid "browscap settings"
2587
  msgstr ""
2588
 
2589
+ #: includes/settings/tabs/wps-externals.php:167
2590
  msgid "browscap usage"
2591
  msgstr ""
2592
 
2593
+ #: includes/settings/tabs/wps-externals.php:52
2594
+ #: includes/settings/tabs/wps-externals.php:76
2595
+ #: includes/settings/tabs/wps-externals.php:109
2596
+ #: includes/settings/tabs/wps-externals.php:172
2597
+ #: includes/settings/tabs/wps-externals.php:196
2598
+ #: includes/settings/tabs/wps-externals.php:235
2599
+ #: includes/settings/tabs/wps-externals.php:259
2600
  #: includes/settings/tabs/wps-general.php:76
2601
  #: includes/settings/tabs/wps-general.php:92
2602
  #: includes/settings/tabs/wps-general.php:116
2612
  #: includes/settings/tabs/wps-general.php:286
2613
  #: includes/settings/tabs/wps-general.php:325
2614
  #: includes/settings/tabs/wps-general.php:341
 
 
 
2615
  #: includes/settings/tabs/wps-maintenance.php:40
2616
  #: includes/settings/tabs/wps-maintenance.php:64
2617
  #: includes/settings/tabs/wps-notifications.php:69
2626
  msgid "Active"
2627
  msgstr ""
2628
 
2629
+ #: includes/settings/tabs/wps-externals.php:173
2630
  msgid "The browscap database will be downloaded and used to detect robots."
2631
  msgstr ""
2632
 
2633
+ #: includes/settings/tabs/wps-externals.php:179
2634
  msgid "Update browscap Info"
2635
  msgstr ""
2636
 
2637
+ #: includes/settings/tabs/wps-externals.php:184
2638
  msgid "Download browscap Database"
2639
  msgstr ""
2640
 
2641
+ #: includes/settings/tabs/wps-externals.php:65
2642
+ #: includes/settings/tabs/wps-externals.php:185
2643
+ #: includes/settings/tabs/wps-externals.php:248
2644
  msgid "Save changes on this page to download the update."
2645
  msgstr ""
2646
 
2647
+ #: includes/settings/tabs/wps-externals.php:191
2648
  msgid "Schedule weekly update of browscap DB"
2649
  msgstr ""
2650
 
2651
+ #: includes/settings/tabs/wps-externals.php:79
2652
+ #: includes/settings/tabs/wps-externals.php:199
2653
+ #: includes/settings/tabs/wps-externals.php:262
2654
  msgid "Next update will be"
2655
  msgstr ""
2656
 
2657
+ #: includes/settings/tabs/wps-externals.php:214
2658
  msgid "Download of the browscap database will be scheduled for once a week."
2659
  msgstr ""
2660
 
languages/wp_statistics-ckb.mo CHANGED
Binary file
languages/wp_statistics-ckb.po CHANGED
@@ -10,6 +10,70 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  #: includes/settings/tabs/wps-exclusions.php:148
14
  msgid "Treat corrupt browser info as a bot"
15
  msgstr ""
@@ -158,7 +222,7 @@ msgstr ""
158
  msgid "Have you thought about donating to WP Statistics?"
159
  msgstr ""
160
 
161
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:362
162
  msgid "Donate"
163
  msgstr ""
164
 
@@ -194,11 +258,11 @@ msgstr ""
194
  msgid "Time Frame"
195
  msgstr ""
196
 
197
- #: includes/functions/functions.php:929
198
  msgid "to"
199
  msgstr ""
200
 
201
- #: includes/functions/functions.php:929 includes/log/top-visitors.php:29
202
  msgid "Go"
203
  msgstr ""
204
 
@@ -242,11 +306,11 @@ msgstr ""
242
  msgid "Filtered by"
243
  msgstr ""
244
 
245
- #: includes/functions/functions.php:922 includes/functions/functions.php:925
246
  msgid "Range"
247
  msgstr ""
248
 
249
- #: includes/functions/functions.php:929 includes/log/top-visitors.php:29
250
  msgid "MM/DD/YYYY"
251
  msgstr "MM/DD/YYYY"
252
 
@@ -290,27 +354,27 @@ msgstr "٣٠ ڕۆژ ڕابردوو (مانگ)"
290
  msgid "Last 7 Days (Week)"
291
  msgstr "٧ ڕۆژی ڕابردوو(هەفتە)"
292
 
293
- #: includes/functions/functions.php:403
294
  msgid "Yahoo!"
295
  msgstr "یاهو"
296
 
297
- #: includes/functions/functions.php:404
298
  msgid "Yandex"
299
  msgstr "یاندیکس"
300
 
301
- #: includes/functions/functions.php:400
302
  msgid "clearch.org"
303
  msgstr "clearch.org"
304
 
305
- #: includes/functions/functions.php:401
306
  msgid "DuckDuckGo"
307
  msgstr "دەک دەک گۆو"
308
 
309
- #: includes/functions/functions.php:399
310
  msgid "Bing"
311
  msgstr "بینگ"
312
 
313
- #: includes/functions/functions.php:398
314
  msgid "Baidu"
315
  msgstr "بەیدوو"
316
 
@@ -413,8 +477,8 @@ msgid "For each visit to account for several hits. Currently %s."
413
  msgstr "بۆ هەر سەردانێک بۆ هەژمارکردنی ژمارەیەک هەڵدانەوە. لە ئێستادا %s."
414
 
415
  #: includes/settings/tabs/wps-general.php:177
416
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:351
417
- #: wp-statistics.php:427
418
  msgid "Pages"
419
  msgstr "پەڕەكان"
420
 
@@ -498,75 +562,75 @@ msgstr "کۆی گشتی"
498
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
499
  msgstr "زیادکردنی کۆی گشتی بە هێڵکاری ئاماری تێپەڕبوونلە مەکینەکانی گەڕان"
500
 
501
- #: includes/settings/tabs/wps-geoip.php:27
502
  msgid "GeoIP settings"
503
  msgstr "ڕێکخستنه‌کانیGeoIP"
504
 
505
- #: includes/settings/tabs/wps-geoip.php:32
506
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
507
  msgstr "خزمەتگوزاری نیشاندانی شوێن IPلەگەڵ GeoLite2 دابینکراوە و لەلایانMaxMind درووستکراوە و لە %s توانایی دەستپێگەیشتنی بۆ هەیە."
508
 
509
- #: includes/settings/tabs/wps-geoip.php:42
510
  msgid "GeoIP collection"
511
  msgstr "کۆی GeoIP"
512
 
513
- #: includes/settings/tabs/wps-geoip.php:48
514
  msgid "For get more information and location (country) from visitor, enable this feature."
515
  msgstr "بۆ وەرگرتنی زانیاری زۆرتر و شوێنی(وەڵاتی) میوان.ئەم جێگا چالاک بکە."
516
 
517
- #: includes/settings/tabs/wps-geoip.php:54
518
  msgid "Update GeoIP Info"
519
  msgstr "بەڕۆژ بونی زانیاریەکان GeoIP"
520
 
521
- #: includes/settings/tabs/wps-geoip.php:59
522
  msgid "Download GeoIP Database"
523
  msgstr "داگرتنی بنکەداراوەی GeoIP"
524
 
525
- #: includes/settings/tabs/wps-geoip.php:66
526
  msgid "Schedule monthly update of GeoIP DB"
527
  msgstr "برنامە دانان بۆ بەڕۆژ کردنی مانگانەی بنکەدراوەی GeoIP"
528
 
529
- #: includes/settings/tabs/wps-geoip.php:92
530
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
531
  msgstr "وەرگرتنی بنکەدراوەی GeoIP لە دوو ڕۆژ پاش یەکەمین سێ شەممەی هەر مانگ."
532
 
533
- #: includes/settings/tabs/wps-geoip.php:93
534
  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)."
535
  msgstr "ئەم هەڵبژاردە تەنانەت زانیاریەکانی کەمتر لە ١ کیلۆبایتیش دادگرێت(کە بەمانای زانیارییەکانی هاورێی زیادکراوەیە)."
536
 
537
- #: includes/settings/tabs/wps-geoip.php:99
538
  msgid "Populate missing GeoIP after update of GeoIP DB"
539
  msgstr "خەڵکی لەدەست چوو GeoIP پاش لە بەڕۆژ کردنی بنکەی دراوە GeoIP"
540
 
541
- #: includes/settings/tabs/wps-geoip.php:105
542
  msgid "Update any missing GeoIP data after downloading a new database."
543
  msgstr "بەڕۆژ کردنی هەر داتاییک لەدەست چوو GeoIP پاش لە داگرتنی بنکە دراوەی نوێ"
544
 
545
- #: includes/settings/tabs/wps-geoip.php:111
546
  msgid "Country code for private IP addresses"
547
  msgstr "کۆدی وەڵآت بۆ نیشانەکانی IP تایبەت"
548
 
549
- #: includes/settings/tabs/wps-geoip.php:116
550
  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."
551
  msgstr "ستانداردی دوو کۆدی نێودەوڵەتی نامە (بۆ وێنە. ئەمریکا= وەڵآتی ئەمریکا، CA = کەنەدا، و هتد) بۆ تایبەت (یوانایی دەتپێگەیشتنی نییە) ناونیشانیIP (بۆ وێنە. 10.0.0.1، 192.158.1.1، 127.0.0.1،و هتد). بەکارهێنان لە &quot;000&quot; (سێ سفر) به استفاده از &quot;نەناسراو&quot; بە عینوانی کۆدی وەڵات."
552
 
553
- #: includes/settings/tabs/wps-geoip.php:127
554
  msgid "GeoIP collection is disabled due to the following reasons:"
555
  msgstr "کۆی GeoIP بەهۆکاری خوارەوە ناچالاک بووە"
556
 
557
- #: includes/settings/tabs/wps-geoip.php:130
558
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
559
  msgstr "کۆی GeoIP به PHP وەشانی%s یان سەرترەوە پێویستی هەیە، لە ئێستا بە هۆی کەم بوونی وەشانی PHPئێوە ناچالاکە."
560
 
561
- #: includes/settings/tabs/wps-geoip.php:135
562
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
563
  msgstr "کۆی GeoIPپێویستی بە پێوەکراوەی BC Math لەPHP هەیە وە ناتوانێت لە وەشانی ئێوە PHPدابین بکرێت!"
564
 
565
- #: includes/settings/tabs/wps-geoip.php:141
566
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
567
  msgstr "کۆی GeoIPپێویستی بە پێوەکراوەی BC Math لەPHP هەیە وە ناتوانێت لە وەشانی ئێوە PHPدابین بکرێت!"
568
 
569
- #: includes/settings/tabs/wps-geoip.php:147
570
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
571
  msgstr "شێوازی پاراستنی PHP نەدۆزراوە! کۆیGeoIP لەلایەن شیوازی پاراستنی PHP پاڵپشتی نابێت!"
572
 
@@ -626,7 +690,6 @@ msgstr "ناردنی گوزارش کاتێک browscap.ini بەڕۆژ دەبێت"
626
 
627
  #: includes/log/exclusions.php:24
628
  #: includes/settings/tabs/wps-notifications.php:76
629
- #: includes/settings/wps-settings.php:111
630
  msgid "GeoIP"
631
  msgstr "GeoIP"
632
 
@@ -651,7 +714,7 @@ msgid "Send a report whenever the plugin is upgraded."
651
  msgstr "سڕینەوە"
652
 
653
  #: includes/settings/tabs/wps-notifications.php:111
654
- #: includes/settings/tabs/wps-notifications.php:116 schedule.php:199
655
  msgid "Statistical reporting"
656
  msgstr "گوزارشی ئاماری"
657
 
@@ -700,7 +763,7 @@ msgid "Any shortcode supported by your installation of WordPress, include all sh
700
  msgstr "هەر کورتە کۆدێک لە لایەن وۆردپرێسی ئێوە پاڵپشتی دەبێت. کورتەکۆدەکان لە زیادکراوەی ئامار(لیستی کۆدەکان لە رینمایی بەکارهینەردا هەیە) لە جەستە پشتیبانی دەکرێت. بۆ وێنە :"
701
 
702
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
703
- #: widget.php:245 wp-statistics.php:532
704
  msgid "User Online"
705
  msgstr "بەکارهینەری سەرهێڵ"
706
 
@@ -743,7 +806,7 @@ msgid "Summary Statistics"
743
  msgstr "کورتە ئامار"
744
 
745
  #: includes/settings/tabs/wps-overview-display.php:28
746
- #: includes/settings/wps-settings.php:115
747
  msgid "About"
748
  msgstr "دەربارە"
749
 
@@ -793,7 +856,7 @@ msgstr "ناچالاککردنی ئامرازی(ویدجێت) سەردانی پ
793
  msgid "Map type"
794
  msgstr "جۆری نەخشە"
795
 
796
- #: includes/functions/functions.php:402
797
  #: includes/settings/tabs/wps-overview-display.php:128
798
  msgid "Google"
799
  msgstr "گووگڵ"
@@ -903,35 +966,30 @@ msgstr "سڕینەوە"
903
  msgid "Remove data and settings, this action cannot be undone."
904
  msgstr "سڕینەوە داتاو ڕێکخستنەکان .ئەم کردارە ناگەرێتەوە."
905
 
906
- #: includes/settings/wps-settings.php:106
907
  msgid "General"
908
  msgstr "گشتی"
909
 
910
- #: includes/settings/wps-settings.php:107
911
  msgid "Notifications"
912
  msgstr "ئاگادارییەکان"
913
 
914
- #: includes/settings/wps-settings.php:108
915
  msgid "Dashboard/Overview"
916
  msgstr "داشبۆرد/لەچاوپێکەوتنێک"
917
 
918
- #: includes/settings/wps-settings.php:112
919
- msgid "browscap"
920
- msgstr "browscap"
921
-
922
- #: includes/settings/wps-settings.php:113
923
  msgid "Maintenance"
924
  msgstr "پاراستن/چاککردن"
925
 
926
- #: includes/settings/wps-settings.php:114
927
  msgid "Removal"
928
  msgstr "سڕینەوە"
929
 
930
  #: includes/settings/tabs/wps-access-level.php:85
931
- #: includes/settings/tabs/wps-browscap.php:81
932
  #: includes/settings/tabs/wps-exclusions.php:234
 
933
  #: includes/settings/tabs/wps-general.php:349
934
- #: includes/settings/tabs/wps-geoip.php:158
935
  #: includes/settings/tabs/wps-maintenance.php:84
936
  #: includes/settings/tabs/wps-notifications.php:201
937
  #: includes/settings/tabs/wps-overview-display.php:388
@@ -951,7 +1009,7 @@ msgstr "هەر ٢ هەفتە"
951
  msgid "Once Every 4 Weeks"
952
  msgstr "هەر ٤ هەفتە"
953
 
954
- #: widget.php:14 wp-statistics.php:342 wp-statistics.php:380
955
  msgid "Statistics"
956
  msgstr "ئامار"
957
 
@@ -1023,7 +1081,7 @@ msgstr "ناو"
1023
  msgid "Items"
1024
  msgstr "بڕگە"
1025
 
1026
- #: widget.php:254 wp-statistics.php:557
1027
  msgid "Yesterday visit"
1028
  msgstr "سەردانی دوێنێ"
1029
 
@@ -1051,13 +1109,13 @@ msgstr "وەشانی ئێستای PHP ئێوە"
1051
  msgid "WP Statistics has been removed, please disable and delete it."
1052
  msgstr "زیادکراوە ئاماری وۆردپرێس سڕاوەتەوە .تکایە ناچالاک یان بیشرەوە."
1053
 
1054
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1055
  #. Plugin Name of the plugin/theme
1056
  #: wp-statistics.php:37
1057
  msgid "WP Statistics"
1058
  msgstr "ئاماری وۆردپرێس"
1059
 
1060
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1061
  #. Description of the plugin/theme
1062
  #: wp-statistics.php:38
1063
  msgid "Complete statistics for your WordPress site."
@@ -1087,99 +1145,99 @@ msgstr "کۆی GeoIPچالاک نییە تکایە بڕۆن بۆ %s ئەم تا
1087
  msgid "Setting page > GeoIP"
1088
  msgstr "پەرەی ڕیکخستنەکان > GeoIP"
1089
 
1090
- #: wp-statistics.php:249 wp-statistics.php:361 wp-statistics.php:434
1091
  msgid "Settings"
1092
  msgstr "ڕیکخستن"
1093
 
1094
- #: wp-statistics.php:261
1095
  msgid "Click here to visit the plugin on WordPress.org"
1096
  msgstr "بۆ دیتنی زیادکراوەی لە WordPress.org کرتەیێک بکە"
1097
 
1098
- #: wp-statistics.php:261
1099
  msgid "Visit WordPress.org page"
1100
  msgstr "دیتنی پەرەی WordPress.org"
1101
 
1102
- #: wp-statistics.php:264
1103
  msgid "Click here to rate and review this plugin on WordPress.org"
1104
  msgstr "بۆ ]لەدانان بە ئەم زیادکراوە لە سەر ماڵپەڕی Wordpress.org کرتە بکە "
1105
 
1106
- #: wp-statistics.php:264
1107
  msgid "Rate this plugin"
1108
  msgstr "پلەدانان بۆ ئەم زیادکراوە"
1109
 
1110
- #: wp-statistics.php:308
1111
  msgid "WP Statistics - Hits"
1112
  msgstr "ئاماری وۆردپرێس-سەردان"
1113
 
1114
- #: wp-statistics.php:345 wp-statistics.php:383 wp-statistics.php:421
1115
  msgid "Overview"
1116
  msgstr "پیشاندانی گشتی"
1117
 
1118
- #: wp-statistics.php:350 wp-statistics.php:426
1119
  msgid "Online"
1120
  msgstr "سەرهێڵ"
1121
 
1122
- #: wp-statistics.php:352 wp-statistics.php:428
1123
  msgid "Referrers"
1124
  msgstr "هاتنەژوورەوەکان"
1125
 
1126
- #: shortcode.php:135 wp-statistics.php:353 wp-statistics.php:429
1127
  msgid "Searches"
1128
  msgstr "گەرانەکان"
1129
 
1130
- #: wp-statistics.php:354 wp-statistics.php:430
1131
  msgid "Search Words"
1132
  msgstr "گەرانی وەشەکان"
1133
 
1134
- #: wp-statistics.php:355 wp-statistics.php:431
1135
  msgid "Top Visitors Today"
1136
  msgstr "بەرزترین میوانەکانی ئەمڕۆ"
1137
 
1138
- #: wp-statistics.php:360 wp-statistics.php:433
1139
  msgid "Optimization"
1140
  msgstr "باشینەسازی)هەژیکردن)"
1141
 
1142
- #: wp-statistics.php:366 wp-statistics.php:397
1143
  msgid "Manual"
1144
  msgstr "ڕێنمایی"
1145
 
1146
- #: wp-statistics.php:412
1147
  msgid "Site"
1148
  msgstr "مالپەڕ"
1149
 
1150
- #: wp-statistics.php:413
1151
  msgid "Options"
1152
  msgstr "ڕێکخستنه‌کان "
1153
 
1154
- #: wp-statistics.php:539
1155
  msgid "Today visitor"
1156
  msgstr "کۆی میوان"
1157
 
1158
- #: wp-statistics.php:545
1159
  msgid "Today visit"
1160
  msgstr "میوانی ئەمڕؤ"
1161
 
1162
- #: wp-statistics.php:551
1163
  msgid "Yesterday visitor"
1164
  msgstr "میوانی دوێنێ"
1165
 
1166
- #: wp-statistics.php:563
1167
  msgid "View Stats"
1168
  msgstr "نیشاندانی ئامار"
1169
 
1170
- #: wp-statistics.php:587
1171
  msgid "Download ODF file"
1172
  msgstr "داگرتنی پەڕگەی ODF"
1173
 
1174
- #: wp-statistics.php:588
1175
  msgid "Download HTML file"
1176
  msgstr "داگرتنی پەڕگەی HTML"
1177
 
1178
- #: wp-statistics.php:592
1179
  msgid "Manual file not found."
1180
  msgstr "ڕێنمایی پەیدا نەبوو"
1181
 
1182
- #: wp-statistics.php:659 wp-statistics.php:770 wp-statistics.php:804
1183
  msgid "You do not have sufficient permissions to access this page."
1184
  msgstr "تۆ مۆڵەتت بۆ دەستپێگەیشتنی ئەم پەڕەیە نییە."
1185
 
@@ -1187,7 +1245,7 @@ msgstr "تۆ مۆڵەتت بۆ دەستپێگەیشتنی ئەم پەڕەیە ن
1187
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
1188
  msgstr "خشتی زیادکراوە لە بنکەدراوە نییە! تکایە%s بۆدامەزراندن ئەنجام بدە %s."
1189
 
1190
- #: wp-statistics.php:237
1191
  msgid "WP Statistics %s installed on"
1192
  msgstr "زیادکراوەی ئاماری وۆردپرێس %s دامەزراوە"
1193
 
@@ -1235,9 +1293,9 @@ msgstr "browscap لە ئێستا ئامادەیە بۆ ئەم وەشانە!"
1235
  msgid "Browscap.ini update on"
1236
  msgstr "Browscap.ini بەڕۆژکرا"
1237
 
1238
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1239
  #. Plugin URI of the plugin/theme
1240
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1241
  #. Author URI of the plugin/theme
1242
  msgid "http://wp-statistics.com/"
1243
  msgstr "http://wp-statistics.com/"
@@ -1364,8 +1422,8 @@ msgid "Click to toggle"
1364
  msgstr "بۆ بەستن و داخستن کرتە بکە"
1365
 
1366
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1367
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:346
1368
- #: wp-statistics.php:422
1369
  msgid "Browsers"
1370
  msgstr "وێبگەڕەکان"
1371
 
@@ -1394,35 +1452,35 @@ msgstr "خاڵ: تائێستا جیاکاری بۆ ریکۆردەکان جیاک
1394
  msgid "Exclusions Statistics"
1395
  msgstr "ئاماری جیاکاریەکان"
1396
 
1397
- #: includes/functions/functions.php:879
1398
  msgid "10 Days"
1399
  msgstr "١٠ ڕۆژی ڕابردوو"
1400
 
1401
- #: includes/functions/functions.php:879
1402
  msgid "20 Days"
1403
  msgstr "٢٠ ڕۆژی ڕابردوو"
1404
 
1405
- #: includes/functions/functions.php:879
1406
  msgid "30 Days"
1407
  msgstr "٣٠ ڕۆژی ڕابردوو"
1408
 
1409
- #: includes/functions/functions.php:879
1410
  msgid "2 Months"
1411
  msgstr "٢ مانگی ڕابردوو"
1412
 
1413
- #: includes/functions/functions.php:879
1414
  msgid "3 Months"
1415
  msgstr "٣ مانگی ڕابردوو"
1416
 
1417
- #: includes/functions/functions.php:879
1418
  msgid "6 Months"
1419
  msgstr "٦مانگی ڕابردوو"
1420
 
1421
- #: includes/functions/functions.php:879
1422
  msgid "9 Months"
1423
  msgstr "٩ مانگی ڕابردوو"
1424
 
1425
- #: includes/functions/functions.php:879
1426
  msgid "1 Year"
1427
  msgstr "١ ساڵی ڕابردوو"
1428
 
@@ -1471,28 +1529,28 @@ msgstr "میوان"
1471
  msgid "Latest Search Word Statistics"
1472
  msgstr "دوایین ئاماری گەڕانی وشە"
1473
 
1474
- #: includes/log/last-search.php:100 includes/log/last-visitor.php:101
1475
  #: includes/log/online.php:50 includes/log/widgets/google.map.php:84
1476
  #: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
1477
- #: includes/log/widgets/words.php:36
1478
  msgid "#hash#"
1479
  msgstr "#hash#"
1480
 
1481
- #: includes/log/last-search.php:105 includes/log/last-visitor.php:106
1482
  #: includes/log/online.php:55 includes/log/top-referring.php:71
1483
- #: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:43
1484
  #: includes/settings/tabs/wps-overview-display.php:33
1485
  #: includes/settings/tabs/wps-overview-display.php:113
1486
  msgid "Map"
1487
  msgstr "نەخشە"
1488
 
1489
- #: includes/log/last-search.php:142 includes/log/last-visitor.php:139
1490
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1491
  #: includes/log/top-referring.php:125
1492
  msgid "Page"
1493
  msgstr "پەڕە"
1494
 
1495
- #: includes/log/last-search.php:142 includes/log/last-visitor.php:139
1496
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1497
  #: includes/log/top-referring.php:125
1498
  msgid "From"
@@ -1681,8 +1739,8 @@ msgid "Time: %s"
1681
  msgstr "کات: %s"
1682
 
1683
  #: includes/log/widgets/top.visitors.php:31
1684
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:273
1685
- #: wp-statistics.php:349 wp-statistics.php:425
1686
  msgid "Hits"
1687
  msgstr "سەردانەکان"
1688
 
@@ -1724,11 +1782,11 @@ msgstr "ازانیارەکانی سەکۆ %s بە سەرکەوتوویی سڕا
1724
  msgid "No platform data found to remove!"
1725
  msgstr "سەکۆی وێبگەڕ بۆ سڕینەوە پەیدا نەبوو."
1726
 
1727
- #: includes/functions/functions.php:967
1728
  msgid "%s table data deleted successfully."
1729
  msgstr "داتای خەشتی %s بە سەرکەوتوویی سڕایەوە"
1730
 
1731
- #: includes/functions/functions.php:971
1732
  msgid "Error, %s not emptied!"
1733
  msgstr "هەڵە! %s بەتاڵ نییە!"
1734
 
@@ -1754,7 +1812,7 @@ msgstr "پێنوێنی بنکەدراوە"
1754
 
1755
  #: includes/optimization/tabs/wps-optimization-database.php:25
1756
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1757
- #: wp-statistics.php:347 wp-statistics.php:423
1758
  msgid "Countries"
1759
  msgstr "وەڵآتەکان"
1760
 
@@ -1770,6 +1828,7 @@ msgid "Older installs of WP Statistics allow for duplicate entries in the visito
1770
  msgstr "لە وەشانی کۆنەی زیادکراوەئامار داتای دووبارە لە سوچێکی خشتی میوان دووپات دەکرایەوە.وەشانی نوێ لەم بارەیە لە پێرستێک چاکسازیان بۆ بووە.بۆ درووستکردنی پێرست لە وەشانی کۆنە سەرەتا دەبێت دتاکنا بسڕنەوە.بە کرتە لەسەر بەڕۆژ بوون سەرەتا خشتی میوانان چاودێری ئینجا داتای دووبارودووپات دەسڕنەوەو پێرست زیاد دەکەن."
1771
 
1772
  #: includes/optimization/tabs/wps-optimization-database.php:41
 
1773
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1774
  msgstr "ئەم هەڵبژاردە کاتیکی زۆر بۆ بۆ دامەزراندنی ژمارەی رێزەکان لەخشتی میوانەکان بەخۆیەوە ترخان دەکات."
1775
 
@@ -1779,11 +1838,12 @@ msgstr "لە وەشانی کۆنەی زیادکراوەئامار داتای د
1779
 
1780
  #: includes/optimization/tabs/wps-optimization-database.php:47
1781
  #: includes/optimization/tabs/wps-optimization-database.php:77
 
1782
  msgid "Congratulations, your installation is already up to date, nothing to do."
1783
  msgstr "پیرۆز بێت.تائێستا دامەزراوەی ئێوە بەڕۆژە و کێشەی نییە."
1784
 
1785
  #: includes/optimization/tabs/wps-optimization-export.php:8
1786
- #: includes/optimization/wps-optimization.php:183
1787
  msgid "Export"
1788
  msgstr "هەناردەکردن"
1789
 
@@ -1836,7 +1896,7 @@ msgstr "خاڵ:هەر وا کە بنکەی دراوەتان پاکسازی کر
1836
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1837
  #: includes/settings/tabs/wps-general.php:138
1838
  #: includes/settings/tabs/wps-general.php:143 shortcode.php:133
1839
- #: wp-statistics.php:356 wp-statistics.php:432
1840
  msgid "Visitors"
1841
  msgstr "میوانەکان"
1842
 
@@ -2151,23 +2211,23 @@ msgstr "ناونیشانەکانی IP لەگەڵ بەهای هەش دەگۆڕد
2151
  msgid "Install routine complete."
2152
  msgstr "دامەزراندن تەواوبوو"
2153
 
2154
- #: includes/optimization/wps-optimization.php:182
2155
  msgid "Resources/Information"
2156
  msgstr "سەرچاوەکان/زانیاری"
2157
 
2158
- #: includes/optimization/wps-optimization.php:184
2159
  msgid "Purging"
2160
  msgstr "پاکسازی"
2161
 
2162
- #: includes/optimization/wps-optimization.php:185
2163
  msgid "Database"
2164
  msgstr "بنکەدراوە"
2165
 
2166
- #: includes/optimization/wps-optimization.php:186
2167
  msgid "Updates"
2168
  msgstr "بەڕۆژبونەکان"
2169
 
2170
- #: includes/optimization/wps-optimization.php:187
2171
  msgid "Historical"
2172
  msgstr "مێژوویی"
2173
 
@@ -2317,7 +2377,7 @@ msgid "This is the honey pot for WP Statistics to use, do not delete."
2317
  msgstr "ئەم مەنجەڵە هەنگوێنە بۆ بەکارهێنانی ئاماری WPیە،نەبۆ سڕینەوە"
2318
 
2319
  #: includes/settings/tabs/wps-access-level.php:23
2320
- #: includes/settings/wps-settings.php:109
2321
  msgid "Access Levels"
2322
  msgstr "ئاستی دەستپێگەیشتن"
2323
 
@@ -2350,8 +2410,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2350
  msgstr "گەر پێویستت بە ڕێگاییک دیکە بۆ پەیوەندی لەگەڵ ڕۆڵی بەکارهینەرانی وۆردپرێس هەیە، نچاو لەم زیادکراوە %s بکەن"
2351
 
2352
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2353
- #: includes/settings/wps-settings.php:110 wp-statistics.php:348
2354
- #: wp-statistics.php:424
2355
  msgid "Exclusions"
2356
  msgstr "جیاکاریەکان"
2357
 
@@ -2522,16 +2582,21 @@ msgstr "جیاکاری فیدی RSS "
2522
  msgid "Exclude the RSS feeds for registering as a hit."
2523
  msgstr "جیاکاری پەڕەی فیدیRSS بۆ ناونووسی لە ژماردنی ئامار"
2524
 
2525
- #: includes/settings/tabs/wps-browscap.php:22
2526
  msgid "browscap settings"
2527
  msgstr "ڕێکخستنەکانی browscap "
2528
 
2529
- #: includes/settings/tabs/wps-browscap.php:27
2530
  msgid "browscap usage"
2531
  msgstr "سودوەرگرتن لە browscap"
2532
 
2533
- #: includes/settings/tabs/wps-browscap.php:32
2534
- #: includes/settings/tabs/wps-browscap.php:56
 
 
 
 
 
2535
  #: includes/settings/tabs/wps-general.php:76
2536
  #: includes/settings/tabs/wps-general.php:92
2537
  #: includes/settings/tabs/wps-general.php:116
@@ -2547,9 +2612,6 @@ msgstr "سودوەرگرتن لە browscap"
2547
  #: includes/settings/tabs/wps-general.php:286
2548
  #: includes/settings/tabs/wps-general.php:325
2549
  #: includes/settings/tabs/wps-general.php:341
2550
- #: includes/settings/tabs/wps-geoip.php:47
2551
- #: includes/settings/tabs/wps-geoip.php:71
2552
- #: includes/settings/tabs/wps-geoip.php:104
2553
  #: includes/settings/tabs/wps-maintenance.php:40
2554
  #: includes/settings/tabs/wps-maintenance.php:64
2555
  #: includes/settings/tabs/wps-notifications.php:69
@@ -2564,33 +2626,35 @@ msgstr "سودوەرگرتن لە browscap"
2564
  msgid "Active"
2565
  msgstr "چالاک"
2566
 
2567
- #: includes/settings/tabs/wps-browscap.php:33
2568
  msgid "The browscap database will be downloaded and used to detect robots."
2569
  msgstr "بنکەی دراوە browscap داگرە بۆ بهەرە وەرگرتن لە رۆبۆت."
2570
 
2571
- #: includes/settings/tabs/wps-browscap.php:39
2572
  msgid "Update browscap Info"
2573
  msgstr "Browscap بەڕۆژکردنی زانیاریەکانی"
2574
 
2575
- #: includes/settings/tabs/wps-browscap.php:44
2576
  msgid "Download browscap Database"
2577
  msgstr "داگرتنی browscapبنکەدراوە"
2578
 
2579
- #: includes/settings/tabs/wps-browscap.php:45
2580
- #: includes/settings/tabs/wps-geoip.php:60
 
2581
  msgid "Save changes on this page to download the update."
2582
  msgstr "پاشکەوتی گۆڕانکاری لەم پەرگە و داگرتنی بەڕۆژکراوەکان"
2583
 
2584
- #: includes/settings/tabs/wps-browscap.php:51
2585
  msgid "Schedule weekly update of browscap DB"
2586
  msgstr "ببەرنامەی بەڕۆژ کردنی هەفتانە browscap دسی بی"
2587
 
2588
- #: includes/settings/tabs/wps-browscap.php:59
2589
- #: includes/settings/tabs/wps-geoip.php:74
 
2590
  msgid "Next update will be"
2591
  msgstr "بەڕۆژ بوونی داهاتوو هەیە."
2592
 
2593
- #: includes/settings/tabs/wps-browscap.php:74
2594
  msgid "Download of the browscap database will be scheduled for once a week."
2595
  msgstr "داگرتنی بنکەدراوەی browscap بۆبارێک لە حەفتە"
2596
 
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: includes/optimization/wps-optimization.php:173
14
+ msgid "Search table conversion complete, %d rows added."
15
+ msgstr ""
16
+
17
+ #: includes/optimization/tabs/wps-optimization-database.php:107
18
+ msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion."
19
+ msgstr ""
20
+
21
+ #: includes/optimization/tabs/wps-optimization-database.php:86
22
+ msgid "Search Table"
23
+ msgstr ""
24
+
25
+ #: includes/optimization/tabs/wps-optimization-database.php:91
26
+ msgid "Convert"
27
+ msgstr ""
28
+
29
+ #: includes/optimization/tabs/wps-optimization-database.php:100
30
+ msgid "Convert Now!"
31
+ msgstr ""
32
+
33
+ #: includes/optimization/tabs/wps-optimization-database.php:101
34
+ msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion, however the old data must first be converted to the new format before it can be used."
35
+ msgstr ""
36
+
37
+ #: includes/log/exclusions.php:24
38
+ msgid "Referrer Spam"
39
+ msgstr ""
40
+
41
+ #: includes/settings/tabs/wps-externals.php:277
42
+ msgid "Download of the Piwik Referrer Spam Blacklist database will be scheduled for once a week."
43
+ msgstr ""
44
+
45
+ #: includes/settings/wps-settings.php:105
46
+ msgid "Externals"
47
+ msgstr ""
48
+
49
+ #: includes/settings/tabs/wps-externals.php:219
50
+ msgid "Piwik Referrer Spam Blacklist settings"
51
+ msgstr ""
52
+
53
+ #: includes/settings/tabs/wps-externals.php:254
54
+ msgid "Schedule weekly update of Piwik Referrer Spam Blacklist DB"
55
+ msgstr ""
56
+
57
+ #: includes/settings/tabs/wps-externals.php:247
58
+ msgid "Download Piwik Referrer Spam Blacklist Database"
59
+ msgstr ""
60
+
61
+ #: includes/settings/tabs/wps-externals.php:242
62
+ msgid "Update Piwik Referrer Spam Blacklist Info"
63
+ msgstr ""
64
+
65
+ #: includes/settings/tabs/wps-externals.php:236
66
+ msgid "The Piwik Referrer Spam Blacklist database will be downloaded and used to detect referrer spam."
67
+ msgstr ""
68
+
69
+ #: includes/settings/tabs/wps-externals.php:224
70
+ msgid "Referrer spam blacklist is provided by Piwik, available from %s."
71
+ msgstr ""
72
+
73
+ #: includes/settings/tabs/wps-externals.php:230
74
+ msgid "Piwik Referrer Spam Blacklist usage"
75
+ msgstr ""
76
+
77
  #: includes/settings/tabs/wps-exclusions.php:148
78
  msgid "Treat corrupt browser info as a bot"
79
  msgstr ""
222
  msgid "Have you thought about donating to WP Statistics?"
223
  msgstr ""
224
 
225
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
226
  msgid "Donate"
227
  msgstr ""
228
 
258
  msgid "Time Frame"
259
  msgstr ""
260
 
261
+ #: includes/functions/functions.php:981
262
  msgid "to"
263
  msgstr ""
264
 
265
+ #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
266
  msgid "Go"
267
  msgstr ""
268
 
306
  msgid "Filtered by"
307
  msgstr ""
308
 
309
+ #: includes/functions/functions.php:974 includes/functions/functions.php:977
310
  msgid "Range"
311
  msgstr ""
312
 
313
+ #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
314
  msgid "MM/DD/YYYY"
315
  msgstr "MM/DD/YYYY"
316
 
354
  msgid "Last 7 Days (Week)"
355
  msgstr "٧ ڕۆژی ڕابردوو(هەفتە)"
356
 
357
+ #: includes/functions/functions.php:405
358
  msgid "Yahoo!"
359
  msgstr "یاهو"
360
 
361
+ #: includes/functions/functions.php:406
362
  msgid "Yandex"
363
  msgstr "یاندیکس"
364
 
365
+ #: includes/functions/functions.php:402
366
  msgid "clearch.org"
367
  msgstr "clearch.org"
368
 
369
+ #: includes/functions/functions.php:403
370
  msgid "DuckDuckGo"
371
  msgstr "دەک دەک گۆو"
372
 
373
+ #: includes/functions/functions.php:401
374
  msgid "Bing"
375
  msgstr "بینگ"
376
 
377
+ #: includes/functions/functions.php:400
378
  msgid "Baidu"
379
  msgstr "بەیدوو"
380
 
477
  msgstr "بۆ هەر سەردانێک بۆ هەژمارکردنی ژمارەیەک هەڵدانەوە. لە ئێستادا %s."
478
 
479
  #: includes/settings/tabs/wps-general.php:177
480
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
481
+ #: wp-statistics.php:431
482
  msgid "Pages"
483
  msgstr "پەڕەكان"
484
 
562
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
563
  msgstr "زیادکردنی کۆی گشتی بە هێڵکاری ئاماری تێپەڕبوونلە مەکینەکانی گەڕان"
564
 
565
+ #: includes/settings/tabs/wps-externals.php:32
566
  msgid "GeoIP settings"
567
  msgstr "ڕێکخستنه‌کانیGeoIP"
568
 
569
+ #: includes/settings/tabs/wps-externals.php:37
570
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
571
  msgstr "خزمەتگوزاری نیشاندانی شوێن IPلەگەڵ GeoLite2 دابینکراوە و لەلایانMaxMind درووستکراوە و لە %s توانایی دەستپێگەیشتنی بۆ هەیە."
572
 
573
+ #: includes/settings/tabs/wps-externals.php:47
574
  msgid "GeoIP collection"
575
  msgstr "کۆی GeoIP"
576
 
577
+ #: includes/settings/tabs/wps-externals.php:53
578
  msgid "For get more information and location (country) from visitor, enable this feature."
579
  msgstr "بۆ وەرگرتنی زانیاری زۆرتر و شوێنی(وەڵاتی) میوان.ئەم جێگا چالاک بکە."
580
 
581
+ #: includes/settings/tabs/wps-externals.php:59
582
  msgid "Update GeoIP Info"
583
  msgstr "بەڕۆژ بونی زانیاریەکان GeoIP"
584
 
585
+ #: includes/settings/tabs/wps-externals.php:64
586
  msgid "Download GeoIP Database"
587
  msgstr "داگرتنی بنکەداراوەی GeoIP"
588
 
589
+ #: includes/settings/tabs/wps-externals.php:71
590
  msgid "Schedule monthly update of GeoIP DB"
591
  msgstr "برنامە دانان بۆ بەڕۆژ کردنی مانگانەی بنکەدراوەی GeoIP"
592
 
593
+ #: includes/settings/tabs/wps-externals.php:97
594
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
595
  msgstr "وەرگرتنی بنکەدراوەی GeoIP لە دوو ڕۆژ پاش یەکەمین سێ شەممەی هەر مانگ."
596
 
597
+ #: includes/settings/tabs/wps-externals.php:98
598
  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)."
599
  msgstr "ئەم هەڵبژاردە تەنانەت زانیاریەکانی کەمتر لە ١ کیلۆبایتیش دادگرێت(کە بەمانای زانیارییەکانی هاورێی زیادکراوەیە)."
600
 
601
+ #: includes/settings/tabs/wps-externals.php:104
602
  msgid "Populate missing GeoIP after update of GeoIP DB"
603
  msgstr "خەڵکی لەدەست چوو GeoIP پاش لە بەڕۆژ کردنی بنکەی دراوە GeoIP"
604
 
605
+ #: includes/settings/tabs/wps-externals.php:110
606
  msgid "Update any missing GeoIP data after downloading a new database."
607
  msgstr "بەڕۆژ کردنی هەر داتاییک لەدەست چوو GeoIP پاش لە داگرتنی بنکە دراوەی نوێ"
608
 
609
+ #: includes/settings/tabs/wps-externals.php:116
610
  msgid "Country code for private IP addresses"
611
  msgstr "کۆدی وەڵآت بۆ نیشانەکانی IP تایبەت"
612
 
613
+ #: includes/settings/tabs/wps-externals.php:121
614
  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."
615
  msgstr "ستانداردی دوو کۆدی نێودەوڵەتی نامە (بۆ وێنە. ئەمریکا= وەڵآتی ئەمریکا، CA = کەنەدا، و هتد) بۆ تایبەت (یوانایی دەتپێگەیشتنی نییە) ناونیشانیIP (بۆ وێنە. 10.0.0.1، 192.158.1.1، 127.0.0.1،و هتد). بەکارهێنان لە &quot;000&quot; (سێ سفر) به استفاده از &quot;نەناسراو&quot; بە عینوانی کۆدی وەڵات."
616
 
617
+ #: includes/settings/tabs/wps-externals.php:132
618
  msgid "GeoIP collection is disabled due to the following reasons:"
619
  msgstr "کۆی GeoIP بەهۆکاری خوارەوە ناچالاک بووە"
620
 
621
+ #: includes/settings/tabs/wps-externals.php:135
622
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
623
  msgstr "کۆی GeoIP به PHP وەشانی%s یان سەرترەوە پێویستی هەیە، لە ئێستا بە هۆی کەم بوونی وەشانی PHPئێوە ناچالاکە."
624
 
625
+ #: includes/settings/tabs/wps-externals.php:140
626
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
627
  msgstr "کۆی GeoIPپێویستی بە پێوەکراوەی BC Math لەPHP هەیە وە ناتوانێت لە وەشانی ئێوە PHPدابین بکرێت!"
628
 
629
+ #: includes/settings/tabs/wps-externals.php:146
630
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
631
  msgstr "کۆی GeoIPپێویستی بە پێوەکراوەی BC Math لەPHP هەیە وە ناتوانێت لە وەشانی ئێوە PHPدابین بکرێت!"
632
 
633
+ #: includes/settings/tabs/wps-externals.php:152
634
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
635
  msgstr "شێوازی پاراستنی PHP نەدۆزراوە! کۆیGeoIP لەلایەن شیوازی پاراستنی PHP پاڵپشتی نابێت!"
636
 
690
 
691
  #: includes/log/exclusions.php:24
692
  #: includes/settings/tabs/wps-notifications.php:76
 
693
  msgid "GeoIP"
694
  msgstr "GeoIP"
695
 
714
  msgstr "سڕینەوە"
715
 
716
  #: includes/settings/tabs/wps-notifications.php:111
717
+ #: includes/settings/tabs/wps-notifications.php:116 schedule.php:221
718
  msgid "Statistical reporting"
719
  msgstr "گوزارشی ئاماری"
720
 
763
  msgstr "هەر کورتە کۆدێک لە لایەن وۆردپرێسی ئێوە پاڵپشتی دەبێت. کورتەکۆدەکان لە زیادکراوەی ئامار(لیستی کۆدەکان لە رینمایی بەکارهینەردا هەیە) لە جەستە پشتیبانی دەکرێت. بۆ وێنە :"
764
 
765
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
766
+ #: widget.php:245 wp-statistics.php:536
767
  msgid "User Online"
768
  msgstr "بەکارهینەری سەرهێڵ"
769
 
806
  msgstr "کورتە ئامار"
807
 
808
  #: includes/settings/tabs/wps-overview-display.php:28
809
+ #: includes/settings/wps-settings.php:108
810
  msgid "About"
811
  msgstr "دەربارە"
812
 
856
  msgid "Map type"
857
  msgstr "جۆری نەخشە"
858
 
859
+ #: includes/functions/functions.php:404
860
  #: includes/settings/tabs/wps-overview-display.php:128
861
  msgid "Google"
862
  msgstr "گووگڵ"
966
  msgid "Remove data and settings, this action cannot be undone."
967
  msgstr "سڕینەوە داتاو ڕێکخستنەکان .ئەم کردارە ناگەرێتەوە."
968
 
969
+ #: includes/settings/wps-settings.php:100
970
  msgid "General"
971
  msgstr "گشتی"
972
 
973
+ #: includes/settings/wps-settings.php:101
974
  msgid "Notifications"
975
  msgstr "ئاگادارییەکان"
976
 
977
+ #: includes/settings/wps-settings.php:102
978
  msgid "Dashboard/Overview"
979
  msgstr "داشبۆرد/لەچاوپێکەوتنێک"
980
 
981
+ #: includes/settings/wps-settings.php:106
 
 
 
 
982
  msgid "Maintenance"
983
  msgstr "پاراستن/چاککردن"
984
 
985
+ #: includes/settings/wps-settings.php:107
986
  msgid "Removal"
987
  msgstr "سڕینەوە"
988
 
989
  #: includes/settings/tabs/wps-access-level.php:85
 
990
  #: includes/settings/tabs/wps-exclusions.php:234
991
+ #: includes/settings/tabs/wps-externals.php:284
992
  #: includes/settings/tabs/wps-general.php:349
 
993
  #: includes/settings/tabs/wps-maintenance.php:84
994
  #: includes/settings/tabs/wps-notifications.php:201
995
  #: includes/settings/tabs/wps-overview-display.php:388
1009
  msgid "Once Every 4 Weeks"
1010
  msgstr "هەر ٤ هەفتە"
1011
 
1012
+ #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
1013
  msgid "Statistics"
1014
  msgstr "ئامار"
1015
 
1081
  msgid "Items"
1082
  msgstr "بڕگە"
1083
 
1084
+ #: widget.php:254 wp-statistics.php:561
1085
  msgid "Yesterday visit"
1086
  msgstr "سەردانی دوێنێ"
1087
 
1109
  msgid "WP Statistics has been removed, please disable and delete it."
1110
  msgstr "زیادکراوە ئاماری وۆردپرێس سڕاوەتەوە .تکایە ناچالاک یان بیشرەوە."
1111
 
1112
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1113
  #. Plugin Name of the plugin/theme
1114
  #: wp-statistics.php:37
1115
  msgid "WP Statistics"
1116
  msgstr "ئاماری وۆردپرێس"
1117
 
1118
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1119
  #. Description of the plugin/theme
1120
  #: wp-statistics.php:38
1121
  msgid "Complete statistics for your WordPress site."
1145
  msgid "Setting page > GeoIP"
1146
  msgstr "پەرەی ڕیکخستنەکان > GeoIP"
1147
 
1148
+ #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
1149
  msgid "Settings"
1150
  msgstr "ڕیکخستن"
1151
 
1152
+ #: wp-statistics.php:265
1153
  msgid "Click here to visit the plugin on WordPress.org"
1154
  msgstr "بۆ دیتنی زیادکراوەی لە WordPress.org کرتەیێک بکە"
1155
 
1156
+ #: wp-statistics.php:265
1157
  msgid "Visit WordPress.org page"
1158
  msgstr "دیتنی پەرەی WordPress.org"
1159
 
1160
+ #: wp-statistics.php:268
1161
  msgid "Click here to rate and review this plugin on WordPress.org"
1162
  msgstr "بۆ ]لەدانان بە ئەم زیادکراوە لە سەر ماڵپەڕی Wordpress.org کرتە بکە "
1163
 
1164
+ #: wp-statistics.php:268
1165
  msgid "Rate this plugin"
1166
  msgstr "پلەدانان بۆ ئەم زیادکراوە"
1167
 
1168
+ #: wp-statistics.php:312
1169
  msgid "WP Statistics - Hits"
1170
  msgstr "ئاماری وۆردپرێس-سەردان"
1171
 
1172
+ #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
1173
  msgid "Overview"
1174
  msgstr "پیشاندانی گشتی"
1175
 
1176
+ #: wp-statistics.php:354 wp-statistics.php:430
1177
  msgid "Online"
1178
  msgstr "سەرهێڵ"
1179
 
1180
+ #: wp-statistics.php:356 wp-statistics.php:432
1181
  msgid "Referrers"
1182
  msgstr "هاتنەژوورەوەکان"
1183
 
1184
+ #: shortcode.php:135 wp-statistics.php:357 wp-statistics.php:433
1185
  msgid "Searches"
1186
  msgstr "گەرانەکان"
1187
 
1188
+ #: wp-statistics.php:358 wp-statistics.php:434
1189
  msgid "Search Words"
1190
  msgstr "گەرانی وەشەکان"
1191
 
1192
+ #: wp-statistics.php:359 wp-statistics.php:435
1193
  msgid "Top Visitors Today"
1194
  msgstr "بەرزترین میوانەکانی ئەمڕۆ"
1195
 
1196
+ #: wp-statistics.php:364 wp-statistics.php:437
1197
  msgid "Optimization"
1198
  msgstr "باشینەسازی)هەژیکردن)"
1199
 
1200
+ #: wp-statistics.php:370 wp-statistics.php:401
1201
  msgid "Manual"
1202
  msgstr "ڕێنمایی"
1203
 
1204
+ #: wp-statistics.php:416
1205
  msgid "Site"
1206
  msgstr "مالپەڕ"
1207
 
1208
+ #: wp-statistics.php:417
1209
  msgid "Options"
1210
  msgstr "ڕێکخستنه‌کان "
1211
 
1212
+ #: wp-statistics.php:543
1213
  msgid "Today visitor"
1214
  msgstr "کۆی میوان"
1215
 
1216
+ #: wp-statistics.php:549
1217
  msgid "Today visit"
1218
  msgstr "میوانی ئەمڕؤ"
1219
 
1220
+ #: wp-statistics.php:555
1221
  msgid "Yesterday visitor"
1222
  msgstr "میوانی دوێنێ"
1223
 
1224
+ #: wp-statistics.php:567
1225
  msgid "View Stats"
1226
  msgstr "نیشاندانی ئامار"
1227
 
1228
+ #: wp-statistics.php:591
1229
  msgid "Download ODF file"
1230
  msgstr "داگرتنی پەڕگەی ODF"
1231
 
1232
+ #: wp-statistics.php:592
1233
  msgid "Download HTML file"
1234
  msgstr "داگرتنی پەڕگەی HTML"
1235
 
1236
+ #: wp-statistics.php:596
1237
  msgid "Manual file not found."
1238
  msgstr "ڕێنمایی پەیدا نەبوو"
1239
 
1240
+ #: wp-statistics.php:663 wp-statistics.php:770 wp-statistics.php:804
1241
  msgid "You do not have sufficient permissions to access this page."
1242
  msgstr "تۆ مۆڵەتت بۆ دەستپێگەیشتنی ئەم پەڕەیە نییە."
1243
 
1245
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
1246
  msgstr "خشتی زیادکراوە لە بنکەدراوە نییە! تکایە%s بۆدامەزراندن ئەنجام بدە %s."
1247
 
1248
+ #: wp-statistics.php:241
1249
  msgid "WP Statistics %s installed on"
1250
  msgstr "زیادکراوەی ئاماری وۆردپرێس %s دامەزراوە"
1251
 
1293
  msgid "Browscap.ini update on"
1294
  msgstr "Browscap.ini بەڕۆژکرا"
1295
 
1296
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1297
  #. Plugin URI of the plugin/theme
1298
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1299
  #. Author URI of the plugin/theme
1300
  msgid "http://wp-statistics.com/"
1301
  msgstr "http://wp-statistics.com/"
1422
  msgstr "بۆ بەستن و داخستن کرتە بکە"
1423
 
1424
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1425
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
1426
+ #: wp-statistics.php:426
1427
  msgid "Browsers"
1428
  msgstr "وێبگەڕەکان"
1429
 
1452
  msgid "Exclusions Statistics"
1453
  msgstr "ئاماری جیاکاریەکان"
1454
 
1455
+ #: includes/functions/functions.php:931
1456
  msgid "10 Days"
1457
  msgstr "١٠ ڕۆژی ڕابردوو"
1458
 
1459
+ #: includes/functions/functions.php:931
1460
  msgid "20 Days"
1461
  msgstr "٢٠ ڕۆژی ڕابردوو"
1462
 
1463
+ #: includes/functions/functions.php:931
1464
  msgid "30 Days"
1465
  msgstr "٣٠ ڕۆژی ڕابردوو"
1466
 
1467
+ #: includes/functions/functions.php:931
1468
  msgid "2 Months"
1469
  msgstr "٢ مانگی ڕابردوو"
1470
 
1471
+ #: includes/functions/functions.php:931
1472
  msgid "3 Months"
1473
  msgstr "٣ مانگی ڕابردوو"
1474
 
1475
+ #: includes/functions/functions.php:931
1476
  msgid "6 Months"
1477
  msgstr "٦مانگی ڕابردوو"
1478
 
1479
+ #: includes/functions/functions.php:931
1480
  msgid "9 Months"
1481
  msgstr "٩ مانگی ڕابردوو"
1482
 
1483
+ #: includes/functions/functions.php:931
1484
  msgid "1 Year"
1485
  msgstr "١ ساڵی ڕابردوو"
1486
 
1529
  msgid "Latest Search Word Statistics"
1530
  msgstr "دوایین ئاماری گەڕانی وشە"
1531
 
1532
+ #: includes/log/last-search.php:110 includes/log/last-visitor.php:101
1533
  #: includes/log/online.php:50 includes/log/widgets/google.map.php:84
1534
  #: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
1535
+ #: includes/log/widgets/words.php:46
1536
  msgid "#hash#"
1537
  msgstr "#hash#"
1538
 
1539
+ #: includes/log/last-search.php:115 includes/log/last-visitor.php:106
1540
  #: includes/log/online.php:55 includes/log/top-referring.php:71
1541
+ #: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
1542
  #: includes/settings/tabs/wps-overview-display.php:33
1543
  #: includes/settings/tabs/wps-overview-display.php:113
1544
  msgid "Map"
1545
  msgstr "نەخشە"
1546
 
1547
+ #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1548
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1549
  #: includes/log/top-referring.php:125
1550
  msgid "Page"
1551
  msgstr "پەڕە"
1552
 
1553
+ #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1554
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1555
  #: includes/log/top-referring.php:125
1556
  msgid "From"
1739
  msgstr "کات: %s"
1740
 
1741
  #: includes/log/widgets/top.visitors.php:31
1742
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
1743
+ #: wp-statistics.php:353 wp-statistics.php:429
1744
  msgid "Hits"
1745
  msgstr "سەردانەکان"
1746
 
1782
  msgid "No platform data found to remove!"
1783
  msgstr "سەکۆی وێبگەڕ بۆ سڕینەوە پەیدا نەبوو."
1784
 
1785
+ #: includes/functions/functions.php:1019
1786
  msgid "%s table data deleted successfully."
1787
  msgstr "داتای خەشتی %s بە سەرکەوتوویی سڕایەوە"
1788
 
1789
+ #: includes/functions/functions.php:1023
1790
  msgid "Error, %s not emptied!"
1791
  msgstr "هەڵە! %s بەتاڵ نییە!"
1792
 
1812
 
1813
  #: includes/optimization/tabs/wps-optimization-database.php:25
1814
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1815
+ #: wp-statistics.php:351 wp-statistics.php:427
1816
  msgid "Countries"
1817
  msgstr "وەڵآتەکان"
1818
 
1828
  msgstr "لە وەشانی کۆنەی زیادکراوەئامار داتای دووبارە لە سوچێکی خشتی میوان دووپات دەکرایەوە.وەشانی نوێ لەم بارەیە لە پێرستێک چاکسازیان بۆ بووە.بۆ درووستکردنی پێرست لە وەشانی کۆنە سەرەتا دەبێت دتاکنا بسڕنەوە.بە کرتە لەسەر بەڕۆژ بوون سەرەتا خشتی میوانان چاودێری ئینجا داتای دووبارودووپات دەسڕنەوەو پێرست زیاد دەکەن."
1829
 
1830
  #: includes/optimization/tabs/wps-optimization-database.php:41
1831
+ #: includes/optimization/tabs/wps-optimization-database.php:102
1832
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1833
  msgstr "ئەم هەڵبژاردە کاتیکی زۆر بۆ بۆ دامەزراندنی ژمارەی رێزەکان لەخشتی میوانەکان بەخۆیەوە ترخان دەکات."
1834
 
1838
 
1839
  #: includes/optimization/tabs/wps-optimization-database.php:47
1840
  #: includes/optimization/tabs/wps-optimization-database.php:77
1841
+ #: includes/optimization/tabs/wps-optimization-database.php:108
1842
  msgid "Congratulations, your installation is already up to date, nothing to do."
1843
  msgstr "پیرۆز بێت.تائێستا دامەزراوەی ئێوە بەڕۆژە و کێشەی نییە."
1844
 
1845
  #: includes/optimization/tabs/wps-optimization-export.php:8
1846
+ #: includes/optimization/wps-optimization.php:212
1847
  msgid "Export"
1848
  msgstr "هەناردەکردن"
1849
 
1896
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1897
  #: includes/settings/tabs/wps-general.php:138
1898
  #: includes/settings/tabs/wps-general.php:143 shortcode.php:133
1899
+ #: wp-statistics.php:360 wp-statistics.php:436
1900
  msgid "Visitors"
1901
  msgstr "میوانەکان"
1902
 
2211
  msgid "Install routine complete."
2212
  msgstr "دامەزراندن تەواوبوو"
2213
 
2214
+ #: includes/optimization/wps-optimization.php:211
2215
  msgid "Resources/Information"
2216
  msgstr "سەرچاوەکان/زانیاری"
2217
 
2218
+ #: includes/optimization/wps-optimization.php:213
2219
  msgid "Purging"
2220
  msgstr "پاکسازی"
2221
 
2222
+ #: includes/optimization/wps-optimization.php:214
2223
  msgid "Database"
2224
  msgstr "بنکەدراوە"
2225
 
2226
+ #: includes/optimization/wps-optimization.php:215
2227
  msgid "Updates"
2228
  msgstr "بەڕۆژبونەکان"
2229
 
2230
+ #: includes/optimization/wps-optimization.php:216
2231
  msgid "Historical"
2232
  msgstr "مێژوویی"
2233
 
2377
  msgstr "ئەم مەنجەڵە هەنگوێنە بۆ بەکارهێنانی ئاماری WPیە،نەبۆ سڕینەوە"
2378
 
2379
  #: includes/settings/tabs/wps-access-level.php:23
2380
+ #: includes/settings/wps-settings.php:103
2381
  msgid "Access Levels"
2382
  msgstr "ئاستی دەستپێگەیشتن"
2383
 
2410
  msgstr "گەر پێویستت بە ڕێگاییک دیکە بۆ پەیوەندی لەگەڵ ڕۆڵی بەکارهینەرانی وۆردپرێس هەیە، نچاو لەم زیادکراوە %s بکەن"
2411
 
2412
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2413
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:352
2414
+ #: wp-statistics.php:428
2415
  msgid "Exclusions"
2416
  msgstr "جیاکاریەکان"
2417
 
2582
  msgid "Exclude the RSS feeds for registering as a hit."
2583
  msgstr "جیاکاری پەڕەی فیدیRSS بۆ ناونووسی لە ژماردنی ئامار"
2584
 
2585
+ #: includes/settings/tabs/wps-externals.php:162
2586
  msgid "browscap settings"
2587
  msgstr "ڕێکخستنەکانی browscap "
2588
 
2589
+ #: includes/settings/tabs/wps-externals.php:167
2590
  msgid "browscap usage"
2591
  msgstr "سودوەرگرتن لە browscap"
2592
 
2593
+ #: includes/settings/tabs/wps-externals.php:52
2594
+ #: includes/settings/tabs/wps-externals.php:76
2595
+ #: includes/settings/tabs/wps-externals.php:109
2596
+ #: includes/settings/tabs/wps-externals.php:172
2597
+ #: includes/settings/tabs/wps-externals.php:196
2598
+ #: includes/settings/tabs/wps-externals.php:235
2599
+ #: includes/settings/tabs/wps-externals.php:259
2600
  #: includes/settings/tabs/wps-general.php:76
2601
  #: includes/settings/tabs/wps-general.php:92
2602
  #: includes/settings/tabs/wps-general.php:116
2612
  #: includes/settings/tabs/wps-general.php:286
2613
  #: includes/settings/tabs/wps-general.php:325
2614
  #: includes/settings/tabs/wps-general.php:341
 
 
 
2615
  #: includes/settings/tabs/wps-maintenance.php:40
2616
  #: includes/settings/tabs/wps-maintenance.php:64
2617
  #: includes/settings/tabs/wps-notifications.php:69
2626
  msgid "Active"
2627
  msgstr "چالاک"
2628
 
2629
+ #: includes/settings/tabs/wps-externals.php:173
2630
  msgid "The browscap database will be downloaded and used to detect robots."
2631
  msgstr "بنکەی دراوە browscap داگرە بۆ بهەرە وەرگرتن لە رۆبۆت."
2632
 
2633
+ #: includes/settings/tabs/wps-externals.php:179
2634
  msgid "Update browscap Info"
2635
  msgstr "Browscap بەڕۆژکردنی زانیاریەکانی"
2636
 
2637
+ #: includes/settings/tabs/wps-externals.php:184
2638
  msgid "Download browscap Database"
2639
  msgstr "داگرتنی browscapبنکەدراوە"
2640
 
2641
+ #: includes/settings/tabs/wps-externals.php:65
2642
+ #: includes/settings/tabs/wps-externals.php:185
2643
+ #: includes/settings/tabs/wps-externals.php:248
2644
  msgid "Save changes on this page to download the update."
2645
  msgstr "پاشکەوتی گۆڕانکاری لەم پەرگە و داگرتنی بەڕۆژکراوەکان"
2646
 
2647
+ #: includes/settings/tabs/wps-externals.php:191
2648
  msgid "Schedule weekly update of browscap DB"
2649
  msgstr "ببەرنامەی بەڕۆژ کردنی هەفتانە browscap دسی بی"
2650
 
2651
+ #: includes/settings/tabs/wps-externals.php:79
2652
+ #: includes/settings/tabs/wps-externals.php:199
2653
+ #: includes/settings/tabs/wps-externals.php:262
2654
  msgid "Next update will be"
2655
  msgstr "بەڕۆژ بوونی داهاتوو هەیە."
2656
 
2657
+ #: includes/settings/tabs/wps-externals.php:214
2658
  msgid "Download of the browscap database will be scheduled for once a week."
2659
  msgstr "داگرتنی بنکەدراوەی browscap بۆبارێک لە حەفتە"
2660
 
languages/wp_statistics-cs.mo CHANGED
Binary file
languages/wp_statistics-cs.po CHANGED
@@ -10,6 +10,70 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  #: includes/settings/tabs/wps-exclusions.php:148
14
  msgid "Treat corrupt browser info as a bot"
15
  msgstr ""
@@ -158,7 +222,7 @@ msgstr ""
158
  msgid "Have you thought about donating to WP Statistics?"
159
  msgstr ""
160
 
161
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:362
162
  msgid "Donate"
163
  msgstr ""
164
 
@@ -194,11 +258,11 @@ msgstr ""
194
  msgid "Time Frame"
195
  msgstr ""
196
 
197
- #: includes/functions/functions.php:929
198
  msgid "to"
199
  msgstr ""
200
 
201
- #: includes/functions/functions.php:929 includes/log/top-visitors.php:29
202
  msgid "Go"
203
  msgstr ""
204
 
@@ -242,11 +306,11 @@ msgstr ""
242
  msgid "Filtered by"
243
  msgstr ""
244
 
245
- #: includes/functions/functions.php:922 includes/functions/functions.php:925
246
  msgid "Range"
247
  msgstr ""
248
 
249
- #: includes/functions/functions.php:929 includes/log/top-visitors.php:29
250
  msgid "MM/DD/YYYY"
251
  msgstr "MM/DD/YYYY"
252
 
@@ -290,27 +354,27 @@ msgstr ""
290
  msgid "Last 7 Days (Week)"
291
  msgstr ""
292
 
293
- #: includes/functions/functions.php:403
294
  msgid "Yahoo!"
295
  msgstr ""
296
 
297
- #: includes/functions/functions.php:404
298
  msgid "Yandex"
299
  msgstr ""
300
 
301
- #: includes/functions/functions.php:400
302
  msgid "clearch.org"
303
  msgstr ""
304
 
305
- #: includes/functions/functions.php:401
306
  msgid "DuckDuckGo"
307
  msgstr ""
308
 
309
- #: includes/functions/functions.php:399
310
  msgid "Bing"
311
  msgstr ""
312
 
313
- #: includes/functions/functions.php:398
314
  msgid "Baidu"
315
  msgstr ""
316
 
@@ -413,8 +477,8 @@ msgid "For each visit to account for several hits. Currently %s."
413
  msgstr "Pro každou návštěvu k účtu pro několik hitů. V současné době %s."
414
 
415
  #: includes/settings/tabs/wps-general.php:177
416
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:351
417
- #: wp-statistics.php:427
418
  msgid "Pages"
419
  msgstr "Stránky"
420
 
@@ -498,75 +562,75 @@ msgstr "Zahrnout součty"
498
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
499
  msgstr "Přidání řádku Celkem se grafy s více hodnotami, jako je hledání vyhledávač doporučováním"
500
 
501
- #: includes/settings/tabs/wps-geoip.php:27
502
  msgid "GeoIP settings"
503
  msgstr "GeoIP nastavení"
504
 
505
- #: includes/settings/tabs/wps-geoip.php:32
506
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
507
  msgstr "IP umístění služby poskytované GeoLite2 data vytvořená MaxMind, k dispozici od %s."
508
 
509
- #: includes/settings/tabs/wps-geoip.php:42
510
  msgid "GeoIP collection"
511
  msgstr "GeoIP kolekce"
512
 
513
- #: includes/settings/tabs/wps-geoip.php:48
514
  msgid "For get more information and location (country) from visitor, enable this feature."
515
  msgstr "Zapněte tuto vlastnost pro získání více informací a lokace (země) návštěvníka."
516
 
517
- #: includes/settings/tabs/wps-geoip.php:54
518
  msgid "Update GeoIP Info"
519
  msgstr "Aktualizovat GeoIP Info"
520
 
521
- #: includes/settings/tabs/wps-geoip.php:59
522
  msgid "Download GeoIP Database"
523
  msgstr "Stáhnout GeoIP Databázi"
524
 
525
- #: includes/settings/tabs/wps-geoip.php:66
526
  msgid "Schedule monthly update of GeoIP DB"
527
  msgstr "Naplánovat měsíční aktualizaci GeoIP DB"
528
 
529
- #: includes/settings/tabs/wps-geoip.php:92
530
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
531
  msgstr "Stažení databáze GeoIP bude naplánováno na 2 dny po první úterý v měsíci."
532
 
533
- #: includes/settings/tabs/wps-geoip.php:93
534
  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)."
535
  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ě)."
536
 
537
- #: includes/settings/tabs/wps-geoip.php:99
538
  msgid "Populate missing GeoIP after update of GeoIP DB"
539
  msgstr "Vyplnit chybějící GeoIP po aktualizaci GeoIP DB"
540
 
541
- #: includes/settings/tabs/wps-geoip.php:105
542
  msgid "Update any missing GeoIP data after downloading a new database."
543
  msgstr "Aktualizovat chybějící GeoIP data po stažení nové databáze."
544
 
545
- #: includes/settings/tabs/wps-geoip.php:111
546
  msgid "Country code for private IP addresses"
547
  msgstr ""
548
 
549
- #: includes/settings/tabs/wps-geoip.php:116
550
  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."
551
  msgstr ""
552
 
553
- #: includes/settings/tabs/wps-geoip.php:127
554
  msgid "GeoIP collection is disabled due to the following reasons:"
555
  msgstr "Kolekce GeoIP je zakázáno z následujících důvodů:"
556
 
557
- #: includes/settings/tabs/wps-geoip.php:130
558
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
559
  msgstr "GeoIP kolekce vyžaduje PHP %s nebo vyšš, z důvodu instalované verze PHP je vlastnost vypnuta"
560
 
561
- #: includes/settings/tabs/wps-geoip.php:135
562
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
563
  msgstr "GeoIP kolekce vyžaduje cURL PHP rozšíření a to není nahrané ve Vaší verzi PHP!"
564
 
565
- #: includes/settings/tabs/wps-geoip.php:141
566
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
567
  msgstr "GeoIP kolekce vyžaduje BC Math PHP rozšíření a to není nahrané ve Vaší verzi PHP!"
568
 
569
- #: includes/settings/tabs/wps-geoip.php:147
570
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
571
  msgstr "PHP nouzový režim zjištěn! GeoIP kolekce není podporován s PHP je nouzový režim povolen!"
572
 
@@ -626,7 +690,6 @@ msgstr ""
626
 
627
  #: includes/log/exclusions.php:24
628
  #: includes/settings/tabs/wps-notifications.php:76
629
- #: includes/settings/wps-settings.php:111
630
  msgid "GeoIP"
631
  msgstr "GeoIP"
632
 
@@ -651,7 +714,7 @@ msgid "Send a report whenever the plugin is upgraded."
651
  msgstr ""
652
 
653
  #: includes/settings/tabs/wps-notifications.php:111
654
- #: includes/settings/tabs/wps-notifications.php:116 schedule.php:199
655
  msgid "Statistical reporting"
656
  msgstr "Statistický reporting"
657
 
@@ -700,7 +763,7 @@ msgid "Any shortcode supported by your installation of WordPress, include all sh
700
  msgstr ""
701
 
702
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
703
- #: widget.php:245 wp-statistics.php:532
704
  msgid "User Online"
705
  msgstr "Online uživatelé"
706
 
@@ -743,7 +806,7 @@ msgid "Summary Statistics"
743
  msgstr "Souhrné statistiky"
744
 
745
  #: includes/settings/tabs/wps-overview-display.php:28
746
- #: includes/settings/wps-settings.php:115
747
  msgid "About"
748
  msgstr "O"
749
 
@@ -793,7 +856,7 @@ msgstr ""
793
  msgid "Map type"
794
  msgstr "Typ mapy"
795
 
796
- #: includes/functions/functions.php:402
797
  #: includes/settings/tabs/wps-overview-display.php:128
798
  msgid "Google"
799
  msgstr "Google"
@@ -903,35 +966,30 @@ msgstr ""
903
  msgid "Remove data and settings, this action cannot be undone."
904
  msgstr ""
905
 
906
- #: includes/settings/wps-settings.php:106
907
  msgid "General"
908
  msgstr "Obecné"
909
 
910
- #: includes/settings/wps-settings.php:107
911
  msgid "Notifications"
912
  msgstr ""
913
 
914
- #: includes/settings/wps-settings.php:108
915
  msgid "Dashboard/Overview"
916
  msgstr ""
917
 
918
- #: includes/settings/wps-settings.php:112
919
- msgid "browscap"
920
- msgstr "Browscap"
921
-
922
- #: includes/settings/wps-settings.php:113
923
  msgid "Maintenance"
924
  msgstr "Údržba"
925
 
926
- #: includes/settings/wps-settings.php:114
927
  msgid "Removal"
928
  msgstr ""
929
 
930
  #: includes/settings/tabs/wps-access-level.php:85
931
- #: includes/settings/tabs/wps-browscap.php:81
932
  #: includes/settings/tabs/wps-exclusions.php:234
 
933
  #: includes/settings/tabs/wps-general.php:349
934
- #: includes/settings/tabs/wps-geoip.php:158
935
  #: includes/settings/tabs/wps-maintenance.php:84
936
  #: includes/settings/tabs/wps-notifications.php:201
937
  #: includes/settings/tabs/wps-overview-display.php:388
@@ -951,7 +1009,7 @@ msgstr "Jednou za 2 týdny"
951
  msgid "Once Every 4 Weeks"
952
  msgstr "Jednou za 4 týdny"
953
 
954
- #: widget.php:14 wp-statistics.php:342 wp-statistics.php:380
955
  msgid "Statistics"
956
  msgstr "Statistiky"
957
 
@@ -1023,7 +1081,7 @@ msgstr "Jméno"
1023
  msgid "Items"
1024
  msgstr "Položky"
1025
 
1026
- #: widget.php:254 wp-statistics.php:557
1027
  msgid "Yesterday visit"
1028
  msgstr "Včera návštěv"
1029
 
@@ -1051,13 +1109,13 @@ msgstr ""
1051
  msgid "WP Statistics has been removed, please disable and delete it."
1052
  msgstr ""
1053
 
1054
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1055
  #. Plugin Name of the plugin/theme
1056
  #: wp-statistics.php:37
1057
  msgid "WP Statistics"
1058
  msgstr "WP Statistiky"
1059
 
1060
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1061
  #. Description of the plugin/theme
1062
  #: wp-statistics.php:38
1063
  msgid "Complete statistics for your WordPress site."
@@ -1087,99 +1145,99 @@ msgstr "GeoIP kolekce není aktivní, přejděte na %s a tuto funkci povolit."
1087
  msgid "Setting page > GeoIP"
1088
  msgstr "Nastavení stránky > GeoIP"
1089
 
1090
- #: wp-statistics.php:249 wp-statistics.php:361 wp-statistics.php:434
1091
  msgid "Settings"
1092
  msgstr "Nastavení"
1093
 
1094
- #: wp-statistics.php:261
1095
  msgid "Click here to visit the plugin on WordPress.org"
1096
  msgstr "Chcete-li navštívit plugin WordPress.org"
1097
 
1098
- #: wp-statistics.php:261
1099
  msgid "Visit WordPress.org page"
1100
  msgstr "Navštivte stránku WordPress.org"
1101
 
1102
- #: wp-statistics.php:264
1103
  msgid "Click here to rate and review this plugin on WordPress.org"
1104
  msgstr "Klikněte zde pro hodnocení a recenzování tento plugin na WordPress.org"
1105
 
1106
- #: wp-statistics.php:264
1107
  msgid "Rate this plugin"
1108
  msgstr "Ohodnoť tento plugin"
1109
 
1110
- #: wp-statistics.php:308
1111
  msgid "WP Statistics - Hits"
1112
  msgstr "WP Statistics - Hits"
1113
 
1114
- #: wp-statistics.php:345 wp-statistics.php:383 wp-statistics.php:421
1115
  msgid "Overview"
1116
  msgstr "Přehled"
1117
 
1118
- #: wp-statistics.php:350 wp-statistics.php:426
1119
  msgid "Online"
1120
  msgstr ""
1121
 
1122
- #: wp-statistics.php:352 wp-statistics.php:428
1123
  msgid "Referrers"
1124
  msgstr ""
1125
 
1126
- #: shortcode.php:135 wp-statistics.php:353 wp-statistics.php:429
1127
  msgid "Searches"
1128
  msgstr "Vyhledávání"
1129
 
1130
- #: wp-statistics.php:354 wp-statistics.php:430
1131
  msgid "Search Words"
1132
  msgstr "Hledaná slova"
1133
 
1134
- #: wp-statistics.php:355 wp-statistics.php:431
1135
  msgid "Top Visitors Today"
1136
  msgstr ""
1137
 
1138
- #: wp-statistics.php:360 wp-statistics.php:433
1139
  msgid "Optimization"
1140
  msgstr "Optimalizace"
1141
 
1142
- #: wp-statistics.php:366 wp-statistics.php:397
1143
  msgid "Manual"
1144
  msgstr "Manuál"
1145
 
1146
- #: wp-statistics.php:412
1147
  msgid "Site"
1148
  msgstr ""
1149
 
1150
- #: wp-statistics.php:413
1151
  msgid "Options"
1152
  msgstr ""
1153
 
1154
- #: wp-statistics.php:539
1155
  msgid "Today visitor"
1156
  msgstr "Dnešní návštěvník"
1157
 
1158
- #: wp-statistics.php:545
1159
  msgid "Today visit"
1160
  msgstr "Dnešní návštěva"
1161
 
1162
- #: wp-statistics.php:551
1163
  msgid "Yesterday visitor"
1164
  msgstr "Včera návštěvníků"
1165
 
1166
- #: wp-statistics.php:563
1167
  msgid "View Stats"
1168
  msgstr "Zobrazit statistiky"
1169
 
1170
- #: wp-statistics.php:587
1171
  msgid "Download ODF file"
1172
  msgstr "Stáhnout soubor ODF"
1173
 
1174
- #: wp-statistics.php:588
1175
  msgid "Download HTML file"
1176
  msgstr "Stáhnout HTML soubor"
1177
 
1178
- #: wp-statistics.php:592
1179
  msgid "Manual file not found."
1180
  msgstr "Ruční soubor nebyl nalezen."
1181
 
1182
- #: wp-statistics.php:659 wp-statistics.php:770 wp-statistics.php:804
1183
  msgid "You do not have sufficient permissions to access this page."
1184
  msgstr "Nemáte dostatečná práva pro přístup na tuto stránku."
1185
 
@@ -1187,7 +1245,7 @@ msgstr "Nemáte dostatečná práva pro přístup na tuto stránku."
1187
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
1188
  msgstr ""
1189
 
1190
- #: wp-statistics.php:237
1191
  msgid "WP Statistics %s installed on"
1192
  msgstr ""
1193
 
@@ -1235,9 +1293,9 @@ msgstr "Browscap již v aktuální verzi!"
1235
  msgid "Browscap.ini update on"
1236
  msgstr ""
1237
 
1238
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1239
  #. Plugin URI of the plugin/theme
1240
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1241
  #. Author URI of the plugin/theme
1242
  msgid "http://wp-statistics.com/"
1243
  msgstr "http://WP-STATISTICS.com/"
@@ -1364,8 +1422,8 @@ msgid "Click to toggle"
1364
  msgstr "Klik na vypínač"
1365
 
1366
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1367
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:346
1368
- #: wp-statistics.php:422
1369
  msgid "Browsers"
1370
  msgstr "Prohlížeče"
1371
 
@@ -1394,35 +1452,35 @@ msgstr "Pozor: Vyloučení nejsou nastaveny v současnosti zaznamenávají, výs
1394
  msgid "Exclusions Statistics"
1395
  msgstr "Vyloučení statistiky"
1396
 
1397
- #: includes/functions/functions.php:879
1398
  msgid "10 Days"
1399
  msgstr "10 Dnů"
1400
 
1401
- #: includes/functions/functions.php:879
1402
  msgid "20 Days"
1403
  msgstr "20 Dnů"
1404
 
1405
- #: includes/functions/functions.php:879
1406
  msgid "30 Days"
1407
  msgstr "30 Dnů"
1408
 
1409
- #: includes/functions/functions.php:879
1410
  msgid "2 Months"
1411
  msgstr "2 Měsíce"
1412
 
1413
- #: includes/functions/functions.php:879
1414
  msgid "3 Months"
1415
  msgstr "3 Měsíce"
1416
 
1417
- #: includes/functions/functions.php:879
1418
  msgid "6 Months"
1419
  msgstr "6 Měsíců"
1420
 
1421
- #: includes/functions/functions.php:879
1422
  msgid "9 Months"
1423
  msgstr "9 Měsíců"
1424
 
1425
- #: includes/functions/functions.php:879
1426
  msgid "1 Year"
1427
  msgstr "1 Rok"
1428
 
@@ -1471,28 +1529,28 @@ msgstr "Návštěvník"
1471
  msgid "Latest Search Word Statistics"
1472
  msgstr "Stastiky posledně vyhledávaných slov"
1473
 
1474
- #: includes/log/last-search.php:100 includes/log/last-visitor.php:101
1475
  #: includes/log/online.php:50 includes/log/widgets/google.map.php:84
1476
  #: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
1477
- #: includes/log/widgets/words.php:36
1478
  msgid "#hash#"
1479
  msgstr "#hash #"
1480
 
1481
- #: includes/log/last-search.php:105 includes/log/last-visitor.php:106
1482
  #: includes/log/online.php:55 includes/log/top-referring.php:71
1483
- #: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:43
1484
  #: includes/settings/tabs/wps-overview-display.php:33
1485
  #: includes/settings/tabs/wps-overview-display.php:113
1486
  msgid "Map"
1487
  msgstr "Mapa"
1488
 
1489
- #: includes/log/last-search.php:142 includes/log/last-visitor.php:139
1490
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1491
  #: includes/log/top-referring.php:125
1492
  msgid "Page"
1493
  msgstr "Stránka"
1494
 
1495
- #: includes/log/last-search.php:142 includes/log/last-visitor.php:139
1496
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1497
  #: includes/log/top-referring.php:125
1498
  msgid "From"
@@ -1681,8 +1739,8 @@ msgid "Time: %s"
1681
  msgstr "Čas: %s"
1682
 
1683
  #: includes/log/widgets/top.visitors.php:31
1684
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:273
1685
- #: wp-statistics.php:349 wp-statistics.php:425
1686
  msgid "Hits"
1687
  msgstr "Hity"
1688
 
@@ -1724,11 +1782,11 @@ msgstr "údaje platforma %s úspěšně smazána."
1724
  msgid "No platform data found to remove!"
1725
  msgstr ""
1726
 
1727
- #: includes/functions/functions.php:967
1728
  msgid "%s table data deleted successfully."
1729
  msgstr "data tabulky %s úspěšně smazána."
1730
 
1731
- #: includes/functions/functions.php:971
1732
  msgid "Error, %s not emptied!"
1733
  msgstr "Chyba, %s není vyprázdněno!"
1734
 
@@ -1754,7 +1812,7 @@ msgstr "Databáze Index"
1754
 
1755
  #: includes/optimization/tabs/wps-optimization-database.php:25
1756
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1757
- #: wp-statistics.php:347 wp-statistics.php:423
1758
  msgid "Countries"
1759
  msgstr "Země"
1760
 
@@ -1770,6 +1828,7 @@ msgid "Older installs of WP Statistics allow for duplicate entries in the visito
1770
  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."
1771
 
1772
  #: includes/optimization/tabs/wps-optimization-database.php:41
 
1773
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1774
  msgstr "Tato operace může trvat dlouhou dobu na nainstaluje s mnoha řádků v tabulce návštěvníků."
1775
 
@@ -1779,11 +1838,12 @@ msgstr "Starší instalace WP Statistics umožňují Duplicitní položky v tabu
1779
 
1780
  #: includes/optimization/tabs/wps-optimization-database.php:47
1781
  #: includes/optimization/tabs/wps-optimization-database.php:77
 
1782
  msgid "Congratulations, your installation is already up to date, nothing to do."
1783
  msgstr "Gratulujeme vaše instalace je již datum, nic společného."
1784
 
1785
  #: includes/optimization/tabs/wps-optimization-export.php:8
1786
- #: includes/optimization/wps-optimization.php:183
1787
  msgid "Export"
1788
  msgstr "Export"
1789
 
@@ -1836,7 +1896,7 @@ msgstr ""
1836
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1837
  #: includes/settings/tabs/wps-general.php:138
1838
  #: includes/settings/tabs/wps-general.php:143 shortcode.php:133
1839
- #: wp-statistics.php:356 wp-statistics.php:432
1840
  msgid "Visitors"
1841
  msgstr "Návštěvníci"
1842
 
@@ -2151,23 +2211,23 @@ msgstr "IP adresy nahrazeny hodnoty hash."
2151
  msgid "Install routine complete."
2152
  msgstr "Instalujte kompletní rutina."
2153
 
2154
- #: includes/optimization/wps-optimization.php:182
2155
  msgid "Resources/Information"
2156
  msgstr "Zdroje/Informace"
2157
 
2158
- #: includes/optimization/wps-optimization.php:184
2159
  msgid "Purging"
2160
  msgstr "Pročištění"
2161
 
2162
- #: includes/optimization/wps-optimization.php:185
2163
  msgid "Database"
2164
  msgstr "Databáze"
2165
 
2166
- #: includes/optimization/wps-optimization.php:186
2167
  msgid "Updates"
2168
  msgstr "Aktualizace"
2169
 
2170
- #: includes/optimization/wps-optimization.php:187
2171
  msgid "Historical"
2172
  msgstr ""
2173
 
@@ -2317,7 +2377,7 @@ msgid "This is the honey pot for WP Statistics to use, do not delete."
2317
  msgstr ""
2318
 
2319
  #: includes/settings/tabs/wps-access-level.php:23
2320
- #: includes/settings/wps-settings.php:109
2321
  msgid "Access Levels"
2322
  msgstr "Úrovně přístupů"
2323
 
@@ -2350,8 +2410,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2350
  msgstr "Pokud budete potřebovat robustnější řešení pro přístup delegáta budete chtít podívat na %s do WordPress plugin adresáři."
2351
 
2352
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2353
- #: includes/settings/wps-settings.php:110 wp-statistics.php:348
2354
- #: wp-statistics.php:424
2355
  msgid "Exclusions"
2356
  msgstr "Vyjímky"
2357
 
@@ -2522,16 +2582,21 @@ msgstr ""
2522
  msgid "Exclude the RSS feeds for registering as a hit."
2523
  msgstr ""
2524
 
2525
- #: includes/settings/tabs/wps-browscap.php:22
2526
  msgid "browscap settings"
2527
  msgstr "Browscap nastavení"
2528
 
2529
- #: includes/settings/tabs/wps-browscap.php:27
2530
  msgid "browscap usage"
2531
  msgstr "Browscap využití"
2532
 
2533
- #: includes/settings/tabs/wps-browscap.php:32
2534
- #: includes/settings/tabs/wps-browscap.php:56
 
 
 
 
 
2535
  #: includes/settings/tabs/wps-general.php:76
2536
  #: includes/settings/tabs/wps-general.php:92
2537
  #: includes/settings/tabs/wps-general.php:116
@@ -2547,9 +2612,6 @@ msgstr "Browscap využití"
2547
  #: includes/settings/tabs/wps-general.php:286
2548
  #: includes/settings/tabs/wps-general.php:325
2549
  #: includes/settings/tabs/wps-general.php:341
2550
- #: includes/settings/tabs/wps-geoip.php:47
2551
- #: includes/settings/tabs/wps-geoip.php:71
2552
- #: includes/settings/tabs/wps-geoip.php:104
2553
  #: includes/settings/tabs/wps-maintenance.php:40
2554
  #: includes/settings/tabs/wps-maintenance.php:64
2555
  #: includes/settings/tabs/wps-notifications.php:69
@@ -2564,33 +2626,35 @@ msgstr "Browscap využití"
2564
  msgid "Active"
2565
  msgstr "Aktivní"
2566
 
2567
- #: includes/settings/tabs/wps-browscap.php:33
2568
  msgid "The browscap database will be downloaded and used to detect robots."
2569
  msgstr "Browscap databáze bude stáhnout a slouží k detekci roboty."
2570
 
2571
- #: includes/settings/tabs/wps-browscap.php:39
2572
  msgid "Update browscap Info"
2573
  msgstr "Aktualizovat browscap Info"
2574
 
2575
- #: includes/settings/tabs/wps-browscap.php:44
2576
  msgid "Download browscap Database"
2577
  msgstr "Stáhnout browscap databáze"
2578
 
2579
- #: includes/settings/tabs/wps-browscap.php:45
2580
- #: includes/settings/tabs/wps-geoip.php:60
 
2581
  msgid "Save changes on this page to download the update."
2582
  msgstr "Uložte změny na této stránce můžete stáhnout aktualizaci."
2583
 
2584
- #: includes/settings/tabs/wps-browscap.php:51
2585
  msgid "Schedule weekly update of browscap DB"
2586
  msgstr "Rozvrh týdenní aktualizace browscap DB"
2587
 
2588
- #: includes/settings/tabs/wps-browscap.php:59
2589
- #: includes/settings/tabs/wps-geoip.php:74
 
2590
  msgid "Next update will be"
2591
  msgstr "Další update bude"
2592
 
2593
- #: includes/settings/tabs/wps-browscap.php:74
2594
  msgid "Download of the browscap database will be scheduled for once a week."
2595
  msgstr "Ke stažení browscap databáze bude naplánován pro jednou za týden."
2596
 
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: includes/optimization/wps-optimization.php:173
14
+ msgid "Search table conversion complete, %d rows added."
15
+ msgstr ""
16
+
17
+ #: includes/optimization/tabs/wps-optimization-database.php:107
18
+ msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion."
19
+ msgstr ""
20
+
21
+ #: includes/optimization/tabs/wps-optimization-database.php:86
22
+ msgid "Search Table"
23
+ msgstr ""
24
+
25
+ #: includes/optimization/tabs/wps-optimization-database.php:91
26
+ msgid "Convert"
27
+ msgstr ""
28
+
29
+ #: includes/optimization/tabs/wps-optimization-database.php:100
30
+ msgid "Convert Now!"
31
+ msgstr ""
32
+
33
+ #: includes/optimization/tabs/wps-optimization-database.php:101
34
+ msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion, however the old data must first be converted to the new format before it can be used."
35
+ msgstr ""
36
+
37
+ #: includes/log/exclusions.php:24
38
+ msgid "Referrer Spam"
39
+ msgstr ""
40
+
41
+ #: includes/settings/tabs/wps-externals.php:277
42
+ msgid "Download of the Piwik Referrer Spam Blacklist database will be scheduled for once a week."
43
+ msgstr ""
44
+
45
+ #: includes/settings/wps-settings.php:105
46
+ msgid "Externals"
47
+ msgstr ""
48
+
49
+ #: includes/settings/tabs/wps-externals.php:219
50
+ msgid "Piwik Referrer Spam Blacklist settings"
51
+ msgstr ""
52
+
53
+ #: includes/settings/tabs/wps-externals.php:254
54
+ msgid "Schedule weekly update of Piwik Referrer Spam Blacklist DB"
55
+ msgstr ""
56
+
57
+ #: includes/settings/tabs/wps-externals.php:247
58
+ msgid "Download Piwik Referrer Spam Blacklist Database"
59
+ msgstr ""
60
+
61
+ #: includes/settings/tabs/wps-externals.php:242
62
+ msgid "Update Piwik Referrer Spam Blacklist Info"
63
+ msgstr ""
64
+
65
+ #: includes/settings/tabs/wps-externals.php:236
66
+ msgid "The Piwik Referrer Spam Blacklist database will be downloaded and used to detect referrer spam."
67
+ msgstr ""
68
+
69
+ #: includes/settings/tabs/wps-externals.php:224
70
+ msgid "Referrer spam blacklist is provided by Piwik, available from %s."
71
+ msgstr ""
72
+
73
+ #: includes/settings/tabs/wps-externals.php:230
74
+ msgid "Piwik Referrer Spam Blacklist usage"
75
+ msgstr ""
76
+
77
  #: includes/settings/tabs/wps-exclusions.php:148
78
  msgid "Treat corrupt browser info as a bot"
79
  msgstr ""
222
  msgid "Have you thought about donating to WP Statistics?"
223
  msgstr ""
224
 
225
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
226
  msgid "Donate"
227
  msgstr ""
228
 
258
  msgid "Time Frame"
259
  msgstr ""
260
 
261
+ #: includes/functions/functions.php:981
262
  msgid "to"
263
  msgstr ""
264
 
265
+ #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
266
  msgid "Go"
267
  msgstr ""
268
 
306
  msgid "Filtered by"
307
  msgstr ""
308
 
309
+ #: includes/functions/functions.php:974 includes/functions/functions.php:977
310
  msgid "Range"
311
  msgstr ""
312
 
313
+ #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
314
  msgid "MM/DD/YYYY"
315
  msgstr "MM/DD/YYYY"
316
 
354
  msgid "Last 7 Days (Week)"
355
  msgstr ""
356
 
357
+ #: includes/functions/functions.php:405
358
  msgid "Yahoo!"
359
  msgstr ""
360
 
361
+ #: includes/functions/functions.php:406
362
  msgid "Yandex"
363
  msgstr ""
364
 
365
+ #: includes/functions/functions.php:402
366
  msgid "clearch.org"
367
  msgstr ""
368
 
369
+ #: includes/functions/functions.php:403
370
  msgid "DuckDuckGo"
371
  msgstr ""
372
 
373
+ #: includes/functions/functions.php:401
374
  msgid "Bing"
375
  msgstr ""
376
 
377
+ #: includes/functions/functions.php:400
378
  msgid "Baidu"
379
  msgstr ""
380
 
477
  msgstr "Pro každou návštěvu k účtu pro několik hitů. V současné době %s."
478
 
479
  #: includes/settings/tabs/wps-general.php:177
480
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
481
+ #: wp-statistics.php:431
482
  msgid "Pages"
483
  msgstr "Stránky"
484
 
562
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
563
  msgstr "Přidání řádku Celkem se grafy s více hodnotami, jako je hledání vyhledávač doporučováním"
564
 
565
+ #: includes/settings/tabs/wps-externals.php:32
566
  msgid "GeoIP settings"
567
  msgstr "GeoIP nastavení"
568
 
569
+ #: includes/settings/tabs/wps-externals.php:37
570
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
571
  msgstr "IP umístění služby poskytované GeoLite2 data vytvořená MaxMind, k dispozici od %s."
572
 
573
+ #: includes/settings/tabs/wps-externals.php:47
574
  msgid "GeoIP collection"
575
  msgstr "GeoIP kolekce"
576
 
577
+ #: includes/settings/tabs/wps-externals.php:53
578
  msgid "For get more information and location (country) from visitor, enable this feature."
579
  msgstr "Zapněte tuto vlastnost pro získání více informací a lokace (země) návštěvníka."
580
 
581
+ #: includes/settings/tabs/wps-externals.php:59
582
  msgid "Update GeoIP Info"
583
  msgstr "Aktualizovat GeoIP Info"
584
 
585
+ #: includes/settings/tabs/wps-externals.php:64
586
  msgid "Download GeoIP Database"
587
  msgstr "Stáhnout GeoIP Databázi"
588
 
589
+ #: includes/settings/tabs/wps-externals.php:71
590
  msgid "Schedule monthly update of GeoIP DB"
591
  msgstr "Naplánovat měsíční aktualizaci GeoIP DB"
592
 
593
+ #: includes/settings/tabs/wps-externals.php:97
594
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
595
  msgstr "Stažení databáze GeoIP bude naplánováno na 2 dny po první úterý v měsíci."
596
 
597
+ #: includes/settings/tabs/wps-externals.php:98
598
  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)."
599
  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ě)."
600
 
601
+ #: includes/settings/tabs/wps-externals.php:104
602
  msgid "Populate missing GeoIP after update of GeoIP DB"
603
  msgstr "Vyplnit chybějící GeoIP po aktualizaci GeoIP DB"
604
 
605
+ #: includes/settings/tabs/wps-externals.php:110
606
  msgid "Update any missing GeoIP data after downloading a new database."
607
  msgstr "Aktualizovat chybějící GeoIP data po stažení nové databáze."
608
 
609
+ #: includes/settings/tabs/wps-externals.php:116
610
  msgid "Country code for private IP addresses"
611
  msgstr ""
612
 
613
+ #: includes/settings/tabs/wps-externals.php:121
614
  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."
615
  msgstr ""
616
 
617
+ #: includes/settings/tabs/wps-externals.php:132
618
  msgid "GeoIP collection is disabled due to the following reasons:"
619
  msgstr "Kolekce GeoIP je zakázáno z následujících důvodů:"
620
 
621
+ #: includes/settings/tabs/wps-externals.php:135
622
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
623
  msgstr "GeoIP kolekce vyžaduje PHP %s nebo vyšš, z důvodu instalované verze PHP je vlastnost vypnuta"
624
 
625
+ #: includes/settings/tabs/wps-externals.php:140
626
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
627
  msgstr "GeoIP kolekce vyžaduje cURL PHP rozšíření a to není nahrané ve Vaší verzi PHP!"
628
 
629
+ #: includes/settings/tabs/wps-externals.php:146
630
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
631
  msgstr "GeoIP kolekce vyžaduje BC Math PHP rozšíření a to není nahrané ve Vaší verzi PHP!"
632
 
633
+ #: includes/settings/tabs/wps-externals.php:152
634
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
635
  msgstr "PHP nouzový režim zjištěn! GeoIP kolekce není podporován s PHP je nouzový režim povolen!"
636
 
690
 
691
  #: includes/log/exclusions.php:24
692
  #: includes/settings/tabs/wps-notifications.php:76
 
693
  msgid "GeoIP"
694
  msgstr "GeoIP"
695
 
714
  msgstr ""
715
 
716
  #: includes/settings/tabs/wps-notifications.php:111
717
+ #: includes/settings/tabs/wps-notifications.php:116 schedule.php:221
718
  msgid "Statistical reporting"
719
  msgstr "Statistický reporting"
720
 
763
  msgstr ""
764
 
765
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
766
+ #: widget.php:245 wp-statistics.php:536
767
  msgid "User Online"
768
  msgstr "Online uživatelé"
769
 
806
  msgstr "Souhrné statistiky"
807
 
808
  #: includes/settings/tabs/wps-overview-display.php:28
809
+ #: includes/settings/wps-settings.php:108
810
  msgid "About"
811
  msgstr "O"
812
 
856
  msgid "Map type"
857
  msgstr "Typ mapy"
858
 
859
+ #: includes/functions/functions.php:404
860
  #: includes/settings/tabs/wps-overview-display.php:128
861
  msgid "Google"
862
  msgstr "Google"
966
  msgid "Remove data and settings, this action cannot be undone."
967
  msgstr ""
968
 
969
+ #: includes/settings/wps-settings.php:100
970
  msgid "General"
971
  msgstr "Obecné"
972
 
973
+ #: includes/settings/wps-settings.php:101
974
  msgid "Notifications"
975
  msgstr ""
976
 
977
+ #: includes/settings/wps-settings.php:102
978
  msgid "Dashboard/Overview"
979
  msgstr ""
980
 
981
+ #: includes/settings/wps-settings.php:106
 
 
 
 
982
  msgid "Maintenance"
983
  msgstr "Údržba"
984
 
985
+ #: includes/settings/wps-settings.php:107
986
  msgid "Removal"
987
  msgstr ""
988
 
989
  #: includes/settings/tabs/wps-access-level.php:85
 
990
  #: includes/settings/tabs/wps-exclusions.php:234
991
+ #: includes/settings/tabs/wps-externals.php:284
992
  #: includes/settings/tabs/wps-general.php:349
 
993
  #: includes/settings/tabs/wps-maintenance.php:84
994
  #: includes/settings/tabs/wps-notifications.php:201
995
  #: includes/settings/tabs/wps-overview-display.php:388
1009
  msgid "Once Every 4 Weeks"
1010
  msgstr "Jednou za 4 týdny"
1011
 
1012
+ #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
1013
  msgid "Statistics"
1014
  msgstr "Statistiky"
1015
 
1081
  msgid "Items"
1082
  msgstr "Položky"
1083
 
1084
+ #: widget.php:254 wp-statistics.php:561
1085
  msgid "Yesterday visit"
1086
  msgstr "Včera návštěv"
1087
 
1109
  msgid "WP Statistics has been removed, please disable and delete it."
1110
  msgstr ""
1111
 
1112
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1113
  #. Plugin Name of the plugin/theme
1114
  #: wp-statistics.php:37
1115
  msgid "WP Statistics"
1116
  msgstr "WP Statistiky"
1117
 
1118
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1119
  #. Description of the plugin/theme
1120
  #: wp-statistics.php:38
1121
  msgid "Complete statistics for your WordPress site."
1145
  msgid "Setting page > GeoIP"
1146
  msgstr "Nastavení stránky > GeoIP"
1147
 
1148
+ #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
1149
  msgid "Settings"
1150
  msgstr "Nastavení"
1151
 
1152
+ #: wp-statistics.php:265
1153
  msgid "Click here to visit the plugin on WordPress.org"
1154
  msgstr "Chcete-li navštívit plugin WordPress.org"
1155
 
1156
+ #: wp-statistics.php:265
1157
  msgid "Visit WordPress.org page"
1158
  msgstr "Navštivte stránku WordPress.org"
1159
 
1160
+ #: wp-statistics.php:268
1161
  msgid "Click here to rate and review this plugin on WordPress.org"
1162
  msgstr "Klikněte zde pro hodnocení a recenzování tento plugin na WordPress.org"
1163
 
1164
+ #: wp-statistics.php:268
1165
  msgid "Rate this plugin"
1166
  msgstr "Ohodnoť tento plugin"
1167
 
1168
+ #: wp-statistics.php:312
1169
  msgid "WP Statistics - Hits"
1170
  msgstr "WP Statistics - Hits"
1171
 
1172
+ #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
1173
  msgid "Overview"
1174
  msgstr "Přehled"
1175
 
1176
+ #: wp-statistics.php:354 wp-statistics.php:430
1177
  msgid "Online"
1178
  msgstr ""
1179
 
1180
+ #: wp-statistics.php:356 wp-statistics.php:432
1181
  msgid "Referrers"
1182
  msgstr ""
1183
 
1184
+ #: shortcode.php:135 wp-statistics.php:357 wp-statistics.php:433
1185
  msgid "Searches"
1186
  msgstr "Vyhledávání"
1187
 
1188
+ #: wp-statistics.php:358 wp-statistics.php:434
1189
  msgid "Search Words"
1190
  msgstr "Hledaná slova"
1191
 
1192
+ #: wp-statistics.php:359 wp-statistics.php:435
1193
  msgid "Top Visitors Today"
1194
  msgstr ""
1195
 
1196
+ #: wp-statistics.php:364 wp-statistics.php:437
1197
  msgid "Optimization"
1198
  msgstr "Optimalizace"
1199
 
1200
+ #: wp-statistics.php:370 wp-statistics.php:401
1201
  msgid "Manual"
1202
  msgstr "Manuál"
1203
 
1204
+ #: wp-statistics.php:416
1205
  msgid "Site"
1206
  msgstr ""
1207
 
1208
+ #: wp-statistics.php:417
1209
  msgid "Options"
1210
  msgstr ""
1211
 
1212
+ #: wp-statistics.php:543
1213
  msgid "Today visitor"
1214
  msgstr "Dnešní návštěvník"
1215
 
1216
+ #: wp-statistics.php:549
1217
  msgid "Today visit"
1218
  msgstr "Dnešní návštěva"
1219
 
1220
+ #: wp-statistics.php:555
1221
  msgid "Yesterday visitor"
1222
  msgstr "Včera návštěvníků"
1223
 
1224
+ #: wp-statistics.php:567
1225
  msgid "View Stats"
1226
  msgstr "Zobrazit statistiky"
1227
 
1228
+ #: wp-statistics.php:591
1229
  msgid "Download ODF file"
1230
  msgstr "Stáhnout soubor ODF"
1231
 
1232
+ #: wp-statistics.php:592
1233
  msgid "Download HTML file"
1234
  msgstr "Stáhnout HTML soubor"
1235
 
1236
+ #: wp-statistics.php:596
1237
  msgid "Manual file not found."
1238
  msgstr "Ruční soubor nebyl nalezen."
1239
 
1240
+ #: wp-statistics.php:663 wp-statistics.php:770 wp-statistics.php:804
1241
  msgid "You do not have sufficient permissions to access this page."
1242
  msgstr "Nemáte dostatečná práva pro přístup na tuto stránku."
1243
 
1245
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
1246
  msgstr ""
1247
 
1248
+ #: wp-statistics.php:241
1249
  msgid "WP Statistics %s installed on"
1250
  msgstr ""
1251
 
1293
  msgid "Browscap.ini update on"
1294
  msgstr ""
1295
 
1296
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1297
  #. Plugin URI of the plugin/theme
1298
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1299
  #. Author URI of the plugin/theme
1300
  msgid "http://wp-statistics.com/"
1301
  msgstr "http://WP-STATISTICS.com/"
1422
  msgstr "Klik na vypínač"
1423
 
1424
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1425
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
1426
+ #: wp-statistics.php:426
1427
  msgid "Browsers"
1428
  msgstr "Prohlížeče"
1429
 
1452
  msgid "Exclusions Statistics"
1453
  msgstr "Vyloučení statistiky"
1454
 
1455
+ #: includes/functions/functions.php:931
1456
  msgid "10 Days"
1457
  msgstr "10 Dnů"
1458
 
1459
+ #: includes/functions/functions.php:931
1460
  msgid "20 Days"
1461
  msgstr "20 Dnů"
1462
 
1463
+ #: includes/functions/functions.php:931
1464
  msgid "30 Days"
1465
  msgstr "30 Dnů"
1466
 
1467
+ #: includes/functions/functions.php:931
1468
  msgid "2 Months"
1469
  msgstr "2 Měsíce"
1470
 
1471
+ #: includes/functions/functions.php:931
1472
  msgid "3 Months"
1473
  msgstr "3 Měsíce"
1474
 
1475
+ #: includes/functions/functions.php:931
1476
  msgid "6 Months"
1477
  msgstr "6 Měsíců"
1478
 
1479
+ #: includes/functions/functions.php:931
1480
  msgid "9 Months"
1481
  msgstr "9 Měsíců"
1482
 
1483
+ #: includes/functions/functions.php:931
1484
  msgid "1 Year"
1485
  msgstr "1 Rok"
1486
 
1529
  msgid "Latest Search Word Statistics"
1530
  msgstr "Stastiky posledně vyhledávaných slov"
1531
 
1532
+ #: includes/log/last-search.php:110 includes/log/last-visitor.php:101
1533
  #: includes/log/online.php:50 includes/log/widgets/google.map.php:84
1534
  #: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
1535
+ #: includes/log/widgets/words.php:46
1536
  msgid "#hash#"
1537
  msgstr "#hash #"
1538
 
1539
+ #: includes/log/last-search.php:115 includes/log/last-visitor.php:106
1540
  #: includes/log/online.php:55 includes/log/top-referring.php:71
1541
+ #: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
1542
  #: includes/settings/tabs/wps-overview-display.php:33
1543
  #: includes/settings/tabs/wps-overview-display.php:113
1544
  msgid "Map"
1545
  msgstr "Mapa"
1546
 
1547
+ #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1548
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1549
  #: includes/log/top-referring.php:125
1550
  msgid "Page"
1551
  msgstr "Stránka"
1552
 
1553
+ #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1554
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1555
  #: includes/log/top-referring.php:125
1556
  msgid "From"
1739
  msgstr "Čas: %s"
1740
 
1741
  #: includes/log/widgets/top.visitors.php:31
1742
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
1743
+ #: wp-statistics.php:353 wp-statistics.php:429
1744
  msgid "Hits"
1745
  msgstr "Hity"
1746
 
1782
  msgid "No platform data found to remove!"
1783
  msgstr ""
1784
 
1785
+ #: includes/functions/functions.php:1019
1786
  msgid "%s table data deleted successfully."
1787
  msgstr "data tabulky %s úspěšně smazána."
1788
 
1789
+ #: includes/functions/functions.php:1023
1790
  msgid "Error, %s not emptied!"
1791
  msgstr "Chyba, %s není vyprázdněno!"
1792
 
1812
 
1813
  #: includes/optimization/tabs/wps-optimization-database.php:25
1814
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1815
+ #: wp-statistics.php:351 wp-statistics.php:427
1816
  msgid "Countries"
1817
  msgstr "Země"
1818
 
1828
  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."
1829
 
1830
  #: includes/optimization/tabs/wps-optimization-database.php:41
1831
+ #: includes/optimization/tabs/wps-optimization-database.php:102
1832
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1833
  msgstr "Tato operace může trvat dlouhou dobu na nainstaluje s mnoha řádků v tabulce návštěvníků."
1834
 
1838
 
1839
  #: includes/optimization/tabs/wps-optimization-database.php:47
1840
  #: includes/optimization/tabs/wps-optimization-database.php:77
1841
+ #: includes/optimization/tabs/wps-optimization-database.php:108
1842
  msgid "Congratulations, your installation is already up to date, nothing to do."
1843
  msgstr "Gratulujeme vaše instalace je již datum, nic společného."
1844
 
1845
  #: includes/optimization/tabs/wps-optimization-export.php:8
1846
+ #: includes/optimization/wps-optimization.php:212
1847
  msgid "Export"
1848
  msgstr "Export"
1849
 
1896
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1897
  #: includes/settings/tabs/wps-general.php:138
1898
  #: includes/settings/tabs/wps-general.php:143 shortcode.php:133
1899
+ #: wp-statistics.php:360 wp-statistics.php:436
1900
  msgid "Visitors"
1901
  msgstr "Návštěvníci"
1902
 
2211
  msgid "Install routine complete."
2212
  msgstr "Instalujte kompletní rutina."
2213
 
2214
+ #: includes/optimization/wps-optimization.php:211
2215
  msgid "Resources/Information"
2216
  msgstr "Zdroje/Informace"
2217
 
2218
+ #: includes/optimization/wps-optimization.php:213
2219
  msgid "Purging"
2220
  msgstr "Pročištění"
2221
 
2222
+ #: includes/optimization/wps-optimization.php:214
2223
  msgid "Database"
2224
  msgstr "Databáze"
2225
 
2226
+ #: includes/optimization/wps-optimization.php:215
2227
  msgid "Updates"
2228
  msgstr "Aktualizace"
2229
 
2230
+ #: includes/optimization/wps-optimization.php:216
2231
  msgid "Historical"
2232
  msgstr ""
2233
 
2377
  msgstr ""
2378
 
2379
  #: includes/settings/tabs/wps-access-level.php:23
2380
+ #: includes/settings/wps-settings.php:103
2381
  msgid "Access Levels"
2382
  msgstr "Úrovně přístupů"
2383
 
2410
  msgstr "Pokud budete potřebovat robustnější řešení pro přístup delegáta budete chtít podívat na %s do WordPress plugin adresáři."
2411
 
2412
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2413
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:352
2414
+ #: wp-statistics.php:428
2415
  msgid "Exclusions"
2416
  msgstr "Vyjímky"
2417
 
2582
  msgid "Exclude the RSS feeds for registering as a hit."
2583
  msgstr ""
2584
 
2585
+ #: includes/settings/tabs/wps-externals.php:162
2586
  msgid "browscap settings"
2587
  msgstr "Browscap nastavení"
2588
 
2589
+ #: includes/settings/tabs/wps-externals.php:167
2590
  msgid "browscap usage"
2591
  msgstr "Browscap využití"
2592
 
2593
+ #: includes/settings/tabs/wps-externals.php:52
2594
+ #: includes/settings/tabs/wps-externals.php:76
2595
+ #: includes/settings/tabs/wps-externals.php:109
2596
+ #: includes/settings/tabs/wps-externals.php:172
2597
+ #: includes/settings/tabs/wps-externals.php:196
2598
+ #: includes/settings/tabs/wps-externals.php:235
2599
+ #: includes/settings/tabs/wps-externals.php:259
2600
  #: includes/settings/tabs/wps-general.php:76
2601
  #: includes/settings/tabs/wps-general.php:92
2602
  #: includes/settings/tabs/wps-general.php:116
2612
  #: includes/settings/tabs/wps-general.php:286
2613
  #: includes/settings/tabs/wps-general.php:325
2614
  #: includes/settings/tabs/wps-general.php:341
 
 
 
2615
  #: includes/settings/tabs/wps-maintenance.php:40
2616
  #: includes/settings/tabs/wps-maintenance.php:64
2617
  #: includes/settings/tabs/wps-notifications.php:69
2626
  msgid "Active"
2627
  msgstr "Aktivní"
2628
 
2629
+ #: includes/settings/tabs/wps-externals.php:173
2630
  msgid "The browscap database will be downloaded and used to detect robots."
2631
  msgstr "Browscap databáze bude stáhnout a slouží k detekci roboty."
2632
 
2633
+ #: includes/settings/tabs/wps-externals.php:179
2634
  msgid "Update browscap Info"
2635
  msgstr "Aktualizovat browscap Info"
2636
 
2637
+ #: includes/settings/tabs/wps-externals.php:184
2638
  msgid "Download browscap Database"
2639
  msgstr "Stáhnout browscap databáze"
2640
 
2641
+ #: includes/settings/tabs/wps-externals.php:65
2642
+ #: includes/settings/tabs/wps-externals.php:185
2643
+ #: includes/settings/tabs/wps-externals.php:248
2644
  msgid "Save changes on this page to download the update."
2645
  msgstr "Uložte změny na této stránce můžete stáhnout aktualizaci."
2646
 
2647
+ #: includes/settings/tabs/wps-externals.php:191
2648
  msgid "Schedule weekly update of browscap DB"
2649
  msgstr "Rozvrh týdenní aktualizace browscap DB"
2650
 
2651
+ #: includes/settings/tabs/wps-externals.php:79
2652
+ #: includes/settings/tabs/wps-externals.php:199
2653
+ #: includes/settings/tabs/wps-externals.php:262
2654
  msgid "Next update will be"
2655
  msgstr "Další update bude"
2656
 
2657
+ #: includes/settings/tabs/wps-externals.php:214
2658
  msgid "Download of the browscap database will be scheduled for once a week."
2659
  msgstr "Ke stažení browscap databáze bude naplánován pro jednou za týden."
2660
 
languages/wp_statistics-de_DE.mo CHANGED
Binary file
languages/wp_statistics-de_DE.po CHANGED
@@ -10,6 +10,70 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  #: includes/settings/tabs/wps-exclusions.php:148
14
  msgid "Treat corrupt browser info as a bot"
15
  msgstr ""
@@ -158,7 +222,7 @@ msgstr ""
158
  msgid "Have you thought about donating to WP Statistics?"
159
  msgstr ""
160
 
161
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:362
162
  msgid "Donate"
163
  msgstr ""
164
 
@@ -194,11 +258,11 @@ msgstr ""
194
  msgid "Time Frame"
195
  msgstr ""
196
 
197
- #: includes/functions/functions.php:929
198
  msgid "to"
199
  msgstr ""
200
 
201
- #: includes/functions/functions.php:929 includes/log/top-visitors.php:29
202
  msgid "Go"
203
  msgstr ""
204
 
@@ -242,11 +306,11 @@ msgstr ""
242
  msgid "Filtered by"
243
  msgstr ""
244
 
245
- #: includes/functions/functions.php:922 includes/functions/functions.php:925
246
  msgid "Range"
247
  msgstr ""
248
 
249
- #: includes/functions/functions.php:929 includes/log/top-visitors.php:29
250
  msgid "MM/DD/YYYY"
251
  msgstr "MM/DD/YYYY"
252
 
@@ -290,27 +354,27 @@ msgstr ""
290
  msgid "Last 7 Days (Week)"
291
  msgstr ""
292
 
293
- #: includes/functions/functions.php:403
294
  msgid "Yahoo!"
295
  msgstr "Yahoo!"
296
 
297
- #: includes/functions/functions.php:404
298
  msgid "Yandex"
299
  msgstr "Yandex"
300
 
301
- #: includes/functions/functions.php:400
302
  msgid "clearch.org"
303
  msgstr "clearch.org"
304
 
305
- #: includes/functions/functions.php:401
306
  msgid "DuckDuckGo"
307
  msgstr "DuckDuckGo"
308
 
309
- #: includes/functions/functions.php:399
310
  msgid "Bing"
311
  msgstr "Bing"
312
 
313
- #: includes/functions/functions.php:398
314
  msgid "Baidu"
315
  msgstr "Baidu"
316
 
@@ -413,8 +477,8 @@ msgid "For each visit to account for several hits. Currently %s."
413
  msgstr "Koeffizient - ein Besucher z&auml;hlt \"X\" Aufrufe. Aktuell: %s."
414
 
415
  #: includes/settings/tabs/wps-general.php:177
416
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:351
417
- #: wp-statistics.php:427
418
  msgid "Pages"
419
  msgstr "Seitenaufrufe"
420
 
@@ -498,75 +562,75 @@ msgstr "Gesamt-Z&auml;hler zeigen"
498
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
499
  msgstr "Zeige eine Linie mit dem Gesamt-Z&auml;hler in Diagrammen mit mehreren Verl&auml;ufen."
500
 
501
- #: includes/settings/tabs/wps-geoip.php:27
502
  msgid "GeoIP settings"
503
  msgstr "GeoIP-Einstellungen"
504
 
505
- #: includes/settings/tabs/wps-geoip.php:32
506
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
507
  msgstr "IP-Standorbestimmung mittels GeoLite2, zur Verf&uuml;gung gestellt von MaxMind - %s."
508
 
509
- #: includes/settings/tabs/wps-geoip.php:42
510
  msgid "GeoIP collection"
511
  msgstr "GeoIP verwenden"
512
 
513
- #: includes/settings/tabs/wps-geoip.php:48
514
  msgid "For get more information and location (country) from visitor, enable this feature."
515
  msgstr "Wenn aktiviert, ermittelt WP Statistics Standort-Informationen (zumindest das Land) aus der IP-Adresse der Besucher."
516
 
517
- #: includes/settings/tabs/wps-geoip.php:54
518
  msgid "Update GeoIP Info"
519
  msgstr "GeoIP aktualisieren"
520
 
521
- #: includes/settings/tabs/wps-geoip.php:59
522
  msgid "Download GeoIP Database"
523
  msgstr "GeoIP-Datenbank herunterladen"
524
 
525
- #: includes/settings/tabs/wps-geoip.php:66
526
  msgid "Schedule monthly update of GeoIP DB"
527
  msgstr "Automat. Aktualisierung von GeoIP"
528
 
529
- #: includes/settings/tabs/wps-geoip.php:92
530
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
531
  msgstr "Die Aktualisierung der GeoIP-Datenbank wird monatlich zwei Tage nach dem ersten Dienstag durchgef&uuml;hrt."
532
 
533
- #: includes/settings/tabs/wps-geoip.php:93
534
  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)."
535
  msgstr "Diese Option l&auml;dt die GeoIP-Datenbank auch dann herunter, wenn die Dateigr&ouml;&szlig;e der lokalen Datenbank kleiner als 1 kB ist (was in den meisten F&auml;llen bedeutet, dass die Datei bisher noch nicht heruntergeladen wurde)."
536
 
537
- #: includes/settings/tabs/wps-geoip.php:99
538
  msgid "Populate missing GeoIP after update of GeoIP DB"
539
  msgstr "Fehlende GeoIP-Daten nach Aktualisierung einpflegen"
540
 
541
- #: includes/settings/tabs/wps-geoip.php:105
542
  msgid "Update any missing GeoIP data after downloading a new database."
543
  msgstr "Aktualisiert alle fehlenden GeoIP-Daten nachdem eine neue GeoIP-Datenbank herunter geladen wurde."
544
 
545
- #: includes/settings/tabs/wps-geoip.php:111
546
  msgid "Country code for private IP addresses"
547
  msgstr ""
548
 
549
- #: includes/settings/tabs/wps-geoip.php:116
550
  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."
551
  msgstr ""
552
 
553
- #: includes/settings/tabs/wps-geoip.php:127
554
  msgid "GeoIP collection is disabled due to the following reasons:"
555
  msgstr "Die GeoIP-Funktion ist aus den folgenden Gr&uuml;nden deaktiviert:"
556
 
557
- #: includes/settings/tabs/wps-geoip.php:130
558
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
559
  msgstr "GeoIP ben&ouml;tigt die PHP-Version %s oder h&ouml;her, die installierte PHP-Version ist "
560
 
561
- #: includes/settings/tabs/wps-geoip.php:135
562
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
563
  msgstr ""
564
 
565
- #: includes/settings/tabs/wps-geoip.php:141
566
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
567
  msgstr ""
568
 
569
- #: includes/settings/tabs/wps-geoip.php:147
570
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
571
  msgstr ""
572
 
@@ -626,7 +690,6 @@ msgstr "Bei Update der \"browscap.ini\"-Datei benachrichtigen"
626
 
627
  #: includes/log/exclusions.php:24
628
  #: includes/settings/tabs/wps-notifications.php:76
629
- #: includes/settings/wps-settings.php:111
630
  msgid "GeoIP"
631
  msgstr "GeoIP"
632
 
@@ -651,7 +714,7 @@ msgid "Send a report whenever the plugin is upgraded."
651
  msgstr "Bei Update des Plugins benachrichtigen"
652
 
653
  #: includes/settings/tabs/wps-notifications.php:111
654
- #: includes/settings/tabs/wps-notifications.php:116 schedule.php:199
655
  msgid "Statistical reporting"
656
  msgstr "Statistik-Reports"
657
 
@@ -700,7 +763,7 @@ msgid "Any shortcode supported by your installation of WordPress, include all sh
700
  msgstr "Alle Shortcodes deiner WordPress-Installation und die eigenen Shortcodes von WP Statistics (siehe Benutzerdokumentation) k&ouml;nnen im Nachrichtentext verwendet werden. Hier sind ein paar Beispiele:"
701
 
702
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
703
- #: widget.php:245 wp-statistics.php:532
704
  msgid "User Online"
705
  msgstr "Besucher aktuell"
706
 
@@ -743,7 +806,7 @@ msgid "Summary Statistics"
743
  msgstr "Zusammenfassung"
744
 
745
  #: includes/settings/tabs/wps-overview-display.php:28
746
- #: includes/settings/wps-settings.php:115
747
  msgid "About"
748
  msgstr "&Uuml;ber das Plugin"
749
 
@@ -793,7 +856,7 @@ msgstr ""
793
  msgid "Map type"
794
  msgstr "Karten-Typ"
795
 
796
- #: includes/functions/functions.php:402
797
  #: includes/settings/tabs/wps-overview-display.php:128
798
  msgid "Google"
799
  msgstr "Google"
@@ -903,35 +966,30 @@ msgstr "Entfernen"
903
  msgid "Remove data and settings, this action cannot be undone."
904
  msgstr "Alle Daten und Plugin-Einstellungen werden aus der Datenbank gel&ouml;scht. ACHTUNG: diese Aktion kann nicht r&uuml;ckg&auml;ngig gemacht werden!"
905
 
906
- #: includes/settings/wps-settings.php:106
907
  msgid "General"
908
  msgstr "Allgemeines"
909
 
910
- #: includes/settings/wps-settings.php:107
911
  msgid "Notifications"
912
  msgstr "Benachrichtigungen"
913
 
914
- #: includes/settings/wps-settings.php:108
915
  msgid "Dashboard/Overview"
916
  msgstr "Admin- & Statistik-&Uuml;bersicht"
917
 
918
- #: includes/settings/wps-settings.php:112
919
- msgid "browscap"
920
- msgstr "Browscap"
921
-
922
- #: includes/settings/wps-settings.php:113
923
  msgid "Maintenance"
924
  msgstr "Datenbank-Wartung"
925
 
926
- #: includes/settings/wps-settings.php:114
927
  msgid "Removal"
928
  msgstr "Deinstallation"
929
 
930
  #: includes/settings/tabs/wps-access-level.php:85
931
- #: includes/settings/tabs/wps-browscap.php:81
932
  #: includes/settings/tabs/wps-exclusions.php:234
 
933
  #: includes/settings/tabs/wps-general.php:349
934
- #: includes/settings/tabs/wps-geoip.php:158
935
  #: includes/settings/tabs/wps-maintenance.php:84
936
  #: includes/settings/tabs/wps-notifications.php:201
937
  #: includes/settings/tabs/wps-overview-display.php:388
@@ -951,7 +1009,7 @@ msgstr "Alle zwei Wochen"
951
  msgid "Once Every 4 Weeks"
952
  msgstr "Alle vier Wochen"
953
 
954
- #: widget.php:14 wp-statistics.php:342 wp-statistics.php:380
955
  msgid "Statistics"
956
  msgstr "Statistik"
957
 
@@ -1023,7 +1081,7 @@ msgstr "Name"
1023
  msgid "Items"
1024
  msgstr "Elemente"
1025
 
1026
- #: widget.php:254 wp-statistics.php:557
1027
  msgid "Yesterday visit"
1028
  msgstr "Aufrufe gestern"
1029
 
@@ -1051,13 +1109,13 @@ msgstr ""
1051
  msgid "WP Statistics has been removed, please disable and delete it."
1052
  msgstr ""
1053
 
1054
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1055
  #. Plugin Name of the plugin/theme
1056
  #: wp-statistics.php:37
1057
  msgid "WP Statistics"
1058
  msgstr ""
1059
 
1060
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1061
  #. Description of the plugin/theme
1062
  #: wp-statistics.php:38
1063
  msgid "Complete statistics for your WordPress site."
@@ -1087,99 +1145,99 @@ msgstr ""
1087
  msgid "Setting page > GeoIP"
1088
  msgstr ""
1089
 
1090
- #: wp-statistics.php:249 wp-statistics.php:361 wp-statistics.php:434
1091
  msgid "Settings"
1092
  msgstr "Einstellungen"
1093
 
1094
- #: wp-statistics.php:261
1095
  msgid "Click here to visit the plugin on WordPress.org"
1096
  msgstr ""
1097
 
1098
- #: wp-statistics.php:261
1099
  msgid "Visit WordPress.org page"
1100
  msgstr "Besuch die Plugin-Seite auf WordPress.org"
1101
 
1102
- #: wp-statistics.php:264
1103
  msgid "Click here to rate and review this plugin on WordPress.org"
1104
  msgstr ""
1105
 
1106
- #: wp-statistics.php:264
1107
  msgid "Rate this plugin"
1108
  msgstr "Bewerte das Plugin"
1109
 
1110
- #: wp-statistics.php:308
1111
  msgid "WP Statistics - Hits"
1112
  msgstr ""
1113
 
1114
- #: wp-statistics.php:345 wp-statistics.php:383 wp-statistics.php:421
1115
  msgid "Overview"
1116
  msgstr "&Uuml;bersicht"
1117
 
1118
- #: wp-statistics.php:350 wp-statistics.php:426
1119
  msgid "Online"
1120
  msgstr "Zurzeit online"
1121
 
1122
- #: wp-statistics.php:352 wp-statistics.php:428
1123
  msgid "Referrers"
1124
  msgstr ""
1125
 
1126
- #: shortcode.php:135 wp-statistics.php:353 wp-statistics.php:429
1127
  msgid "Searches"
1128
  msgstr "Suchmaschinen"
1129
 
1130
- #: wp-statistics.php:354 wp-statistics.php:430
1131
  msgid "Search Words"
1132
  msgstr "Suchbegriffe"
1133
 
1134
- #: wp-statistics.php:355 wp-statistics.php:431
1135
  msgid "Top Visitors Today"
1136
  msgstr ""
1137
 
1138
- #: wp-statistics.php:360 wp-statistics.php:433
1139
  msgid "Optimization"
1140
  msgstr "Optimierung"
1141
 
1142
- #: wp-statistics.php:366 wp-statistics.php:397
1143
  msgid "Manual"
1144
  msgstr ""
1145
 
1146
- #: wp-statistics.php:412
1147
  msgid "Site"
1148
  msgstr ""
1149
 
1150
- #: wp-statistics.php:413
1151
  msgid "Options"
1152
  msgstr ""
1153
 
1154
- #: wp-statistics.php:539
1155
  msgid "Today visitor"
1156
  msgstr "Besucher heute"
1157
 
1158
- #: wp-statistics.php:545
1159
  msgid "Today visit"
1160
  msgstr "Aufrufe heute"
1161
 
1162
- #: wp-statistics.php:551
1163
  msgid "Yesterday visitor"
1164
  msgstr "Besucher gestern"
1165
 
1166
- #: wp-statistics.php:563
1167
  msgid "View Stats"
1168
  msgstr "Statistiken"
1169
 
1170
- #: wp-statistics.php:587
1171
  msgid "Download ODF file"
1172
  msgstr ""
1173
 
1174
- #: wp-statistics.php:588
1175
  msgid "Download HTML file"
1176
  msgstr ""
1177
 
1178
- #: wp-statistics.php:592
1179
  msgid "Manual file not found."
1180
  msgstr "Benutzerdokumentation nicht gefunden."
1181
 
1182
- #: wp-statistics.php:659 wp-statistics.php:770 wp-statistics.php:804
1183
  msgid "You do not have sufficient permissions to access this page."
1184
  msgstr "Du hast keine Zugriffsrechte, um diese Seite zu sehen."
1185
 
@@ -1187,7 +1245,7 @@ msgstr "Du hast keine Zugriffsrechte, um diese Seite zu sehen."
1187
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
1188
  msgstr "Die Plugin-Tabellen existieren nicht in deiner Datenbank! Bitte f&uuml;hre die %s Plugin-Installationsroutine %s noch einmal aus."
1189
 
1190
- #: wp-statistics.php:237
1191
  msgid "WP Statistics %s installed on"
1192
  msgstr ""
1193
 
@@ -1235,9 +1293,9 @@ msgstr ""
1235
  msgid "Browscap.ini update on"
1236
  msgstr ""
1237
 
1238
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1239
  #. Plugin URI of the plugin/theme
1240
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1241
  #. Author URI of the plugin/theme
1242
  msgid "http://wp-statistics.com/"
1243
  msgstr ""
@@ -1364,8 +1422,8 @@ msgid "Click to toggle"
1364
  msgstr "Klicken, um umzuschalten"
1365
 
1366
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1367
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:346
1368
- #: wp-statistics.php:422
1369
  msgid "Browsers"
1370
  msgstr "Browser"
1371
 
@@ -1394,35 +1452,35 @@ msgstr "ACHTUNG: die Aufzeichnung von Ausnahmen ist aktuell deaktiviert. Die nac
1394
  msgid "Exclusions Statistics"
1395
  msgstr "Ausnahmenstatistik"
1396
 
1397
- #: includes/functions/functions.php:879
1398
  msgid "10 Days"
1399
  msgstr "10 Tage"
1400
 
1401
- #: includes/functions/functions.php:879
1402
  msgid "20 Days"
1403
  msgstr "20 Tage"
1404
 
1405
- #: includes/functions/functions.php:879
1406
  msgid "30 Days"
1407
  msgstr "30 Tage"
1408
 
1409
- #: includes/functions/functions.php:879
1410
  msgid "2 Months"
1411
  msgstr "2 Monate"
1412
 
1413
- #: includes/functions/functions.php:879
1414
  msgid "3 Months"
1415
  msgstr "3 Monate"
1416
 
1417
- #: includes/functions/functions.php:879
1418
  msgid "6 Months"
1419
  msgstr "6 Monate"
1420
 
1421
- #: includes/functions/functions.php:879
1422
  msgid "9 Months"
1423
  msgstr "9 Monate"
1424
 
1425
- #: includes/functions/functions.php:879
1426
  msgid "1 Year"
1427
  msgstr "1 Jahr"
1428
 
@@ -1471,28 +1529,28 @@ msgstr "Besucher"
1471
  msgid "Latest Search Word Statistics"
1472
  msgstr "Verwendete Suchbegriffe"
1473
 
1474
- #: includes/log/last-search.php:100 includes/log/last-visitor.php:101
1475
  #: includes/log/online.php:50 includes/log/widgets/google.map.php:84
1476
  #: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
1477
- #: includes/log/widgets/words.php:36
1478
  msgid "#hash#"
1479
  msgstr "#anonymisiert#"
1480
 
1481
- #: includes/log/last-search.php:105 includes/log/last-visitor.php:106
1482
  #: includes/log/online.php:55 includes/log/top-referring.php:71
1483
- #: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:43
1484
  #: includes/settings/tabs/wps-overview-display.php:33
1485
  #: includes/settings/tabs/wps-overview-display.php:113
1486
  msgid "Map"
1487
  msgstr "Weltkarte"
1488
 
1489
- #: includes/log/last-search.php:142 includes/log/last-visitor.php:139
1490
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1491
  #: includes/log/top-referring.php:125
1492
  msgid "Page"
1493
  msgstr "Seite"
1494
 
1495
- #: includes/log/last-search.php:142 includes/log/last-visitor.php:139
1496
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1497
  #: includes/log/top-referring.php:125
1498
  msgid "From"
@@ -1681,8 +1739,8 @@ msgid "Time: %s"
1681
  msgstr ""
1682
 
1683
  #: includes/log/widgets/top.visitors.php:31
1684
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:273
1685
- #: wp-statistics.php:349 wp-statistics.php:425
1686
  msgid "Hits"
1687
  msgstr "Website-Aufrufe"
1688
 
@@ -1724,11 +1782,11 @@ msgstr ""
1724
  msgid "No platform data found to remove!"
1725
  msgstr ""
1726
 
1727
- #: includes/functions/functions.php:967
1728
  msgid "%s table data deleted successfully."
1729
  msgstr ""
1730
 
1731
- #: includes/functions/functions.php:971
1732
  msgid "Error, %s not emptied!"
1733
  msgstr ""
1734
 
@@ -1754,7 +1812,7 @@ msgstr "Datenbank-Index"
1754
 
1755
  #: includes/optimization/tabs/wps-optimization-database.php:25
1756
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1757
- #: wp-statistics.php:347 wp-statistics.php:423
1758
  msgid "Countries"
1759
  msgstr "L&auml;nder"
1760
 
@@ -1770,6 +1828,7 @@ msgid "Older installs of WP Statistics allow for duplicate entries in the visito
1770
  msgstr ""
1771
 
1772
  #: includes/optimization/tabs/wps-optimization-database.php:41
 
1773
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1774
  msgstr ""
1775
 
@@ -1779,11 +1838,12 @@ msgstr "Bei &auml;lteren Versionen von WP Statistics k&ouml;nnen in seltenen F&a
1779
 
1780
  #: includes/optimization/tabs/wps-optimization-database.php:47
1781
  #: includes/optimization/tabs/wps-optimization-database.php:77
 
1782
  msgid "Congratulations, your installation is already up to date, nothing to do."
1783
  msgstr "Gl&uuml;ckwunsch! Deine Installation ist aktuell, es gibt hier nichts zu tun..."
1784
 
1785
  #: includes/optimization/tabs/wps-optimization-export.php:8
1786
- #: includes/optimization/wps-optimization.php:183
1787
  msgid "Export"
1788
  msgstr "Export"
1789
 
@@ -1836,7 +1896,7 @@ msgstr ""
1836
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1837
  #: includes/settings/tabs/wps-general.php:138
1838
  #: includes/settings/tabs/wps-general.php:143 shortcode.php:133
1839
- #: wp-statistics.php:356 wp-statistics.php:432
1840
  msgid "Visitors"
1841
  msgstr "Besucher"
1842
 
@@ -2151,23 +2211,23 @@ msgstr "IP-Adressen erfolgreich anonymisiert."
2151
  msgid "Install routine complete."
2152
  msgstr ""
2153
 
2154
- #: includes/optimization/wps-optimization.php:182
2155
  msgid "Resources/Information"
2156
  msgstr "Ressourcen/Information"
2157
 
2158
- #: includes/optimization/wps-optimization.php:184
2159
  msgid "Purging"
2160
  msgstr "Daten l&ouml;schen"
2161
 
2162
- #: includes/optimization/wps-optimization.php:185
2163
  msgid "Database"
2164
  msgstr "Datenbank"
2165
 
2166
- #: includes/optimization/wps-optimization.php:186
2167
  msgid "Updates"
2168
  msgstr ""
2169
 
2170
- #: includes/optimization/wps-optimization.php:187
2171
  msgid "Historical"
2172
  msgstr "Historie"
2173
 
@@ -2317,7 +2377,7 @@ msgid "This is the honey pot for WP Statistics to use, do not delete."
2317
  msgstr ""
2318
 
2319
  #: includes/settings/tabs/wps-access-level.php:23
2320
- #: includes/settings/wps-settings.php:109
2321
  msgid "Access Levels"
2322
  msgstr "Zugriffsrechte"
2323
 
@@ -2350,8 +2410,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2350
  msgstr "Um mehr Freiheiten beim Verwalten von Rollen und Berechtigungen zu haben, empfiehlt sich die Verwendung entspr. Plugins - z.B. %s im WordPress Plugin-Verzeichnis."
2351
 
2352
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2353
- #: includes/settings/wps-settings.php:110 wp-statistics.php:348
2354
- #: wp-statistics.php:424
2355
  msgid "Exclusions"
2356
  msgstr "Ausnahmen"
2357
 
@@ -2522,16 +2582,21 @@ msgstr ""
2522
  msgid "Exclude the RSS feeds for registering as a hit."
2523
  msgstr ""
2524
 
2525
- #: includes/settings/tabs/wps-browscap.php:22
2526
  msgid "browscap settings"
2527
  msgstr "Browscap-Einstellungen"
2528
 
2529
- #: includes/settings/tabs/wps-browscap.php:27
2530
  msgid "browscap usage"
2531
  msgstr "Browscap verwenden"
2532
 
2533
- #: includes/settings/tabs/wps-browscap.php:32
2534
- #: includes/settings/tabs/wps-browscap.php:56
 
 
 
 
 
2535
  #: includes/settings/tabs/wps-general.php:76
2536
  #: includes/settings/tabs/wps-general.php:92
2537
  #: includes/settings/tabs/wps-general.php:116
@@ -2547,9 +2612,6 @@ msgstr "Browscap verwenden"
2547
  #: includes/settings/tabs/wps-general.php:286
2548
  #: includes/settings/tabs/wps-general.php:325
2549
  #: includes/settings/tabs/wps-general.php:341
2550
- #: includes/settings/tabs/wps-geoip.php:47
2551
- #: includes/settings/tabs/wps-geoip.php:71
2552
- #: includes/settings/tabs/wps-geoip.php:104
2553
  #: includes/settings/tabs/wps-maintenance.php:40
2554
  #: includes/settings/tabs/wps-maintenance.php:64
2555
  #: includes/settings/tabs/wps-notifications.php:69
@@ -2564,33 +2626,35 @@ msgstr "Browscap verwenden"
2564
  msgid "Active"
2565
  msgstr "Aktiv"
2566
 
2567
- #: includes/settings/tabs/wps-browscap.php:33
2568
  msgid "The browscap database will be downloaded and used to detect robots."
2569
  msgstr "Wenn aktiviert, verwendet WP Statistics die \"browsap.ini\" zum Erkennen von Robots."
2570
 
2571
- #: includes/settings/tabs/wps-browscap.php:39
2572
  msgid "Update browscap Info"
2573
  msgstr "Browscap aktualisieren"
2574
 
2575
- #: includes/settings/tabs/wps-browscap.php:44
2576
  msgid "Download browscap Database"
2577
  msgstr "Browscap-Datei herunterladen"
2578
 
2579
- #: includes/settings/tabs/wps-browscap.php:45
2580
- #: includes/settings/tabs/wps-geoip.php:60
 
2581
  msgid "Save changes on this page to download the update."
2582
  msgstr "Speichere die &Auml;nderungen auf dieser Seite, um eine Aktualisierung herunterzuladen."
2583
 
2584
- #: includes/settings/tabs/wps-browscap.php:51
2585
  msgid "Schedule weekly update of browscap DB"
2586
  msgstr "Automat. Aktualisierung von Browscap"
2587
 
2588
- #: includes/settings/tabs/wps-browscap.php:59
2589
- #: includes/settings/tabs/wps-geoip.php:74
 
2590
  msgid "Next update will be"
2591
  msgstr ""
2592
 
2593
- #: includes/settings/tabs/wps-browscap.php:74
2594
  msgid "Download of the browscap database will be scheduled for once a week."
2595
  msgstr "Die Aktualisierung der \"browscap.ini\"-Datei wird w&ouml;chentlich durchgef&uuml;hrt."
2596
 
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: includes/optimization/wps-optimization.php:173
14
+ msgid "Search table conversion complete, %d rows added."
15
+ msgstr ""
16
+
17
+ #: includes/optimization/tabs/wps-optimization-database.php:107
18
+ msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion."
19
+ msgstr ""
20
+
21
+ #: includes/optimization/tabs/wps-optimization-database.php:86
22
+ msgid "Search Table"
23
+ msgstr ""
24
+
25
+ #: includes/optimization/tabs/wps-optimization-database.php:91
26
+ msgid "Convert"
27
+ msgstr ""
28
+
29
+ #: includes/optimization/tabs/wps-optimization-database.php:100
30
+ msgid "Convert Now!"
31
+ msgstr ""
32
+
33
+ #: includes/optimization/tabs/wps-optimization-database.php:101
34
+ msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion, however the old data must first be converted to the new format before it can be used."
35
+ msgstr ""
36
+
37
+ #: includes/log/exclusions.php:24
38
+ msgid "Referrer Spam"
39
+ msgstr ""
40
+
41
+ #: includes/settings/tabs/wps-externals.php:277
42
+ msgid "Download of the Piwik Referrer Spam Blacklist database will be scheduled for once a week."
43
+ msgstr ""
44
+
45
+ #: includes/settings/wps-settings.php:105
46
+ msgid "Externals"
47
+ msgstr ""
48
+
49
+ #: includes/settings/tabs/wps-externals.php:219
50
+ msgid "Piwik Referrer Spam Blacklist settings"
51
+ msgstr ""
52
+
53
+ #: includes/settings/tabs/wps-externals.php:254
54
+ msgid "Schedule weekly update of Piwik Referrer Spam Blacklist DB"
55
+ msgstr ""
56
+
57
+ #: includes/settings/tabs/wps-externals.php:247
58
+ msgid "Download Piwik Referrer Spam Blacklist Database"
59
+ msgstr ""
60
+
61
+ #: includes/settings/tabs/wps-externals.php:242
62
+ msgid "Update Piwik Referrer Spam Blacklist Info"
63
+ msgstr ""
64
+
65
+ #: includes/settings/tabs/wps-externals.php:236
66
+ msgid "The Piwik Referrer Spam Blacklist database will be downloaded and used to detect referrer spam."
67
+ msgstr ""
68
+
69
+ #: includes/settings/tabs/wps-externals.php:224
70
+ msgid "Referrer spam blacklist is provided by Piwik, available from %s."
71
+ msgstr ""
72
+
73
+ #: includes/settings/tabs/wps-externals.php:230
74
+ msgid "Piwik Referrer Spam Blacklist usage"
75
+ msgstr ""
76
+
77
  #: includes/settings/tabs/wps-exclusions.php:148
78
  msgid "Treat corrupt browser info as a bot"
79
  msgstr ""
222
  msgid "Have you thought about donating to WP Statistics?"
223
  msgstr ""
224
 
225
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
226
  msgid "Donate"
227
  msgstr ""
228
 
258
  msgid "Time Frame"
259
  msgstr ""
260
 
261
+ #: includes/functions/functions.php:981
262
  msgid "to"
263
  msgstr ""
264
 
265
+ #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
266
  msgid "Go"
267
  msgstr ""
268
 
306
  msgid "Filtered by"
307
  msgstr ""
308
 
309
+ #: includes/functions/functions.php:974 includes/functions/functions.php:977
310
  msgid "Range"
311
  msgstr ""
312
 
313
+ #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
314
  msgid "MM/DD/YYYY"
315
  msgstr "MM/DD/YYYY"
316
 
354
  msgid "Last 7 Days (Week)"
355
  msgstr ""
356
 
357
+ #: includes/functions/functions.php:405
358
  msgid "Yahoo!"
359
  msgstr "Yahoo!"
360
 
361
+ #: includes/functions/functions.php:406
362
  msgid "Yandex"
363
  msgstr "Yandex"
364
 
365
+ #: includes/functions/functions.php:402
366
  msgid "clearch.org"
367
  msgstr "clearch.org"
368
 
369
+ #: includes/functions/functions.php:403
370
  msgid "DuckDuckGo"
371
  msgstr "DuckDuckGo"
372
 
373
+ #: includes/functions/functions.php:401
374
  msgid "Bing"
375
  msgstr "Bing"
376
 
377
+ #: includes/functions/functions.php:400
378
  msgid "Baidu"
379
  msgstr "Baidu"
380
 
477
  msgstr "Koeffizient - ein Besucher z&auml;hlt \"X\" Aufrufe. Aktuell: %s."
478
 
479
  #: includes/settings/tabs/wps-general.php:177
480
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
481
+ #: wp-statistics.php:431
482
  msgid "Pages"
483
  msgstr "Seitenaufrufe"
484
 
562
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
563
  msgstr "Zeige eine Linie mit dem Gesamt-Z&auml;hler in Diagrammen mit mehreren Verl&auml;ufen."
564
 
565
+ #: includes/settings/tabs/wps-externals.php:32
566
  msgid "GeoIP settings"
567
  msgstr "GeoIP-Einstellungen"
568
 
569
+ #: includes/settings/tabs/wps-externals.php:37
570
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
571
  msgstr "IP-Standorbestimmung mittels GeoLite2, zur Verf&uuml;gung gestellt von MaxMind - %s."
572
 
573
+ #: includes/settings/tabs/wps-externals.php:47
574
  msgid "GeoIP collection"
575
  msgstr "GeoIP verwenden"
576
 
577
+ #: includes/settings/tabs/wps-externals.php:53
578
  msgid "For get more information and location (country) from visitor, enable this feature."
579
  msgstr "Wenn aktiviert, ermittelt WP Statistics Standort-Informationen (zumindest das Land) aus der IP-Adresse der Besucher."
580
 
581
+ #: includes/settings/tabs/wps-externals.php:59
582
  msgid "Update GeoIP Info"
583
  msgstr "GeoIP aktualisieren"
584
 
585
+ #: includes/settings/tabs/wps-externals.php:64
586
  msgid "Download GeoIP Database"
587
  msgstr "GeoIP-Datenbank herunterladen"
588
 
589
+ #: includes/settings/tabs/wps-externals.php:71
590
  msgid "Schedule monthly update of GeoIP DB"
591
  msgstr "Automat. Aktualisierung von GeoIP"
592
 
593
+ #: includes/settings/tabs/wps-externals.php:97
594
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
595
  msgstr "Die Aktualisierung der GeoIP-Datenbank wird monatlich zwei Tage nach dem ersten Dienstag durchgef&uuml;hrt."
596
 
597
+ #: includes/settings/tabs/wps-externals.php:98
598
  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)."
599
  msgstr "Diese Option l&auml;dt die GeoIP-Datenbank auch dann herunter, wenn die Dateigr&ouml;&szlig;e der lokalen Datenbank kleiner als 1 kB ist (was in den meisten F&auml;llen bedeutet, dass die Datei bisher noch nicht heruntergeladen wurde)."
600
 
601
+ #: includes/settings/tabs/wps-externals.php:104
602
  msgid "Populate missing GeoIP after update of GeoIP DB"
603
  msgstr "Fehlende GeoIP-Daten nach Aktualisierung einpflegen"
604
 
605
+ #: includes/settings/tabs/wps-externals.php:110
606
  msgid "Update any missing GeoIP data after downloading a new database."
607
  msgstr "Aktualisiert alle fehlenden GeoIP-Daten nachdem eine neue GeoIP-Datenbank herunter geladen wurde."
608
 
609
+ #: includes/settings/tabs/wps-externals.php:116
610
  msgid "Country code for private IP addresses"
611
  msgstr ""
612
 
613
+ #: includes/settings/tabs/wps-externals.php:121
614
  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."
615
  msgstr ""
616
 
617
+ #: includes/settings/tabs/wps-externals.php:132
618
  msgid "GeoIP collection is disabled due to the following reasons:"
619
  msgstr "Die GeoIP-Funktion ist aus den folgenden Gr&uuml;nden deaktiviert:"
620
 
621
+ #: includes/settings/tabs/wps-externals.php:135
622
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
623
  msgstr "GeoIP ben&ouml;tigt die PHP-Version %s oder h&ouml;her, die installierte PHP-Version ist "
624
 
625
+ #: includes/settings/tabs/wps-externals.php:140
626
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
627
  msgstr ""
628
 
629
+ #: includes/settings/tabs/wps-externals.php:146
630
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
631
  msgstr ""
632
 
633
+ #: includes/settings/tabs/wps-externals.php:152
634
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
635
  msgstr ""
636
 
690
 
691
  #: includes/log/exclusions.php:24
692
  #: includes/settings/tabs/wps-notifications.php:76
 
693
  msgid "GeoIP"
694
  msgstr "GeoIP"
695
 
714
  msgstr "Bei Update des Plugins benachrichtigen"
715
 
716
  #: includes/settings/tabs/wps-notifications.php:111
717
+ #: includes/settings/tabs/wps-notifications.php:116 schedule.php:221
718
  msgid "Statistical reporting"
719
  msgstr "Statistik-Reports"
720
 
763
  msgstr "Alle Shortcodes deiner WordPress-Installation und die eigenen Shortcodes von WP Statistics (siehe Benutzerdokumentation) k&ouml;nnen im Nachrichtentext verwendet werden. Hier sind ein paar Beispiele:"
764
 
765
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
766
+ #: widget.php:245 wp-statistics.php:536
767
  msgid "User Online"
768
  msgstr "Besucher aktuell"
769
 
806
  msgstr "Zusammenfassung"
807
 
808
  #: includes/settings/tabs/wps-overview-display.php:28
809
+ #: includes/settings/wps-settings.php:108
810
  msgid "About"
811
  msgstr "&Uuml;ber das Plugin"
812
 
856
  msgid "Map type"
857
  msgstr "Karten-Typ"
858
 
859
+ #: includes/functions/functions.php:404
860
  #: includes/settings/tabs/wps-overview-display.php:128
861
  msgid "Google"
862
  msgstr "Google"
966
  msgid "Remove data and settings, this action cannot be undone."
967
  msgstr "Alle Daten und Plugin-Einstellungen werden aus der Datenbank gel&ouml;scht. ACHTUNG: diese Aktion kann nicht r&uuml;ckg&auml;ngig gemacht werden!"
968
 
969
+ #: includes/settings/wps-settings.php:100
970
  msgid "General"
971
  msgstr "Allgemeines"
972
 
973
+ #: includes/settings/wps-settings.php:101
974
  msgid "Notifications"
975
  msgstr "Benachrichtigungen"
976
 
977
+ #: includes/settings/wps-settings.php:102
978
  msgid "Dashboard/Overview"
979
  msgstr "Admin- & Statistik-&Uuml;bersicht"
980
 
981
+ #: includes/settings/wps-settings.php:106
 
 
 
 
982
  msgid "Maintenance"
983
  msgstr "Datenbank-Wartung"
984
 
985
+ #: includes/settings/wps-settings.php:107
986
  msgid "Removal"
987
  msgstr "Deinstallation"
988
 
989
  #: includes/settings/tabs/wps-access-level.php:85
 
990
  #: includes/settings/tabs/wps-exclusions.php:234
991
+ #: includes/settings/tabs/wps-externals.php:284
992
  #: includes/settings/tabs/wps-general.php:349
 
993
  #: includes/settings/tabs/wps-maintenance.php:84
994
  #: includes/settings/tabs/wps-notifications.php:201
995
  #: includes/settings/tabs/wps-overview-display.php:388
1009
  msgid "Once Every 4 Weeks"
1010
  msgstr "Alle vier Wochen"
1011
 
1012
+ #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
1013
  msgid "Statistics"
1014
  msgstr "Statistik"
1015
 
1081
  msgid "Items"
1082
  msgstr "Elemente"
1083
 
1084
+ #: widget.php:254 wp-statistics.php:561
1085
  msgid "Yesterday visit"
1086
  msgstr "Aufrufe gestern"
1087
 
1109
  msgid "WP Statistics has been removed, please disable and delete it."
1110
  msgstr ""
1111
 
1112
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1113
  #. Plugin Name of the plugin/theme
1114
  #: wp-statistics.php:37
1115
  msgid "WP Statistics"
1116
  msgstr ""
1117
 
1118
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1119
  #. Description of the plugin/theme
1120
  #: wp-statistics.php:38
1121
  msgid "Complete statistics for your WordPress site."
1145
  msgid "Setting page > GeoIP"
1146
  msgstr ""
1147
 
1148
+ #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
1149
  msgid "Settings"
1150
  msgstr "Einstellungen"
1151
 
1152
+ #: wp-statistics.php:265
1153
  msgid "Click here to visit the plugin on WordPress.org"
1154
  msgstr ""
1155
 
1156
+ #: wp-statistics.php:265
1157
  msgid "Visit WordPress.org page"
1158
  msgstr "Besuch die Plugin-Seite auf WordPress.org"
1159
 
1160
+ #: wp-statistics.php:268
1161
  msgid "Click here to rate and review this plugin on WordPress.org"
1162
  msgstr ""
1163
 
1164
+ #: wp-statistics.php:268
1165
  msgid "Rate this plugin"
1166
  msgstr "Bewerte das Plugin"
1167
 
1168
+ #: wp-statistics.php:312
1169
  msgid "WP Statistics - Hits"
1170
  msgstr ""
1171
 
1172
+ #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
1173
  msgid "Overview"
1174
  msgstr "&Uuml;bersicht"
1175
 
1176
+ #: wp-statistics.php:354 wp-statistics.php:430
1177
  msgid "Online"
1178
  msgstr "Zurzeit online"
1179
 
1180
+ #: wp-statistics.php:356 wp-statistics.php:432
1181
  msgid "Referrers"
1182
  msgstr ""
1183
 
1184
+ #: shortcode.php:135 wp-statistics.php:357 wp-statistics.php:433
1185
  msgid "Searches"
1186
  msgstr "Suchmaschinen"
1187
 
1188
+ #: wp-statistics.php:358 wp-statistics.php:434
1189
  msgid "Search Words"
1190
  msgstr "Suchbegriffe"
1191
 
1192
+ #: wp-statistics.php:359 wp-statistics.php:435
1193
  msgid "Top Visitors Today"
1194
  msgstr ""
1195
 
1196
+ #: wp-statistics.php:364 wp-statistics.php:437
1197
  msgid "Optimization"
1198
  msgstr "Optimierung"
1199
 
1200
+ #: wp-statistics.php:370 wp-statistics.php:401
1201
  msgid "Manual"
1202
  msgstr ""
1203
 
1204
+ #: wp-statistics.php:416
1205
  msgid "Site"
1206
  msgstr ""
1207
 
1208
+ #: wp-statistics.php:417
1209
  msgid "Options"
1210
  msgstr ""
1211
 
1212
+ #: wp-statistics.php:543
1213
  msgid "Today visitor"
1214
  msgstr "Besucher heute"
1215
 
1216
+ #: wp-statistics.php:549
1217
  msgid "Today visit"
1218
  msgstr "Aufrufe heute"
1219
 
1220
+ #: wp-statistics.php:555
1221
  msgid "Yesterday visitor"
1222
  msgstr "Besucher gestern"
1223
 
1224
+ #: wp-statistics.php:567
1225
  msgid "View Stats"
1226
  msgstr "Statistiken"
1227
 
1228
+ #: wp-statistics.php:591
1229
  msgid "Download ODF file"
1230
  msgstr ""
1231
 
1232
+ #: wp-statistics.php:592
1233
  msgid "Download HTML file"
1234
  msgstr ""
1235
 
1236
+ #: wp-statistics.php:596
1237
  msgid "Manual file not found."
1238
  msgstr "Benutzerdokumentation nicht gefunden."
1239
 
1240
+ #: wp-statistics.php:663 wp-statistics.php:770 wp-statistics.php:804
1241
  msgid "You do not have sufficient permissions to access this page."
1242
  msgstr "Du hast keine Zugriffsrechte, um diese Seite zu sehen."
1243
 
1245
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
1246
  msgstr "Die Plugin-Tabellen existieren nicht in deiner Datenbank! Bitte f&uuml;hre die %s Plugin-Installationsroutine %s noch einmal aus."
1247
 
1248
+ #: wp-statistics.php:241
1249
  msgid "WP Statistics %s installed on"
1250
  msgstr ""
1251
 
1293
  msgid "Browscap.ini update on"
1294
  msgstr ""
1295
 
1296
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1297
  #. Plugin URI of the plugin/theme
1298
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1299
  #. Author URI of the plugin/theme
1300
  msgid "http://wp-statistics.com/"
1301
  msgstr ""
1422
  msgstr "Klicken, um umzuschalten"
1423
 
1424
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1425
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
1426
+ #: wp-statistics.php:426
1427
  msgid "Browsers"
1428
  msgstr "Browser"
1429
 
1452
  msgid "Exclusions Statistics"
1453
  msgstr "Ausnahmenstatistik"
1454
 
1455
+ #: includes/functions/functions.php:931
1456
  msgid "10 Days"
1457
  msgstr "10 Tage"
1458
 
1459
+ #: includes/functions/functions.php:931
1460
  msgid "20 Days"
1461
  msgstr "20 Tage"
1462
 
1463
+ #: includes/functions/functions.php:931
1464
  msgid "30 Days"
1465
  msgstr "30 Tage"
1466
 
1467
+ #: includes/functions/functions.php:931
1468
  msgid "2 Months"
1469
  msgstr "2 Monate"
1470
 
1471
+ #: includes/functions/functions.php:931
1472
  msgid "3 Months"
1473
  msgstr "3 Monate"
1474
 
1475
+ #: includes/functions/functions.php:931
1476
  msgid "6 Months"
1477
  msgstr "6 Monate"
1478
 
1479
+ #: includes/functions/functions.php:931
1480
  msgid "9 Months"
1481
  msgstr "9 Monate"
1482
 
1483
+ #: includes/functions/functions.php:931
1484
  msgid "1 Year"
1485
  msgstr "1 Jahr"
1486
 
1529
  msgid "Latest Search Word Statistics"
1530
  msgstr "Verwendete Suchbegriffe"
1531
 
1532
+ #: includes/log/last-search.php:110 includes/log/last-visitor.php:101
1533
  #: includes/log/online.php:50 includes/log/widgets/google.map.php:84
1534
  #: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
1535
+ #: includes/log/widgets/words.php:46
1536
  msgid "#hash#"
1537
  msgstr "#anonymisiert#"
1538
 
1539
+ #: includes/log/last-search.php:115 includes/log/last-visitor.php:106
1540
  #: includes/log/online.php:55 includes/log/top-referring.php:71
1541
+ #: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
1542
  #: includes/settings/tabs/wps-overview-display.php:33
1543
  #: includes/settings/tabs/wps-overview-display.php:113
1544
  msgid "Map"
1545
  msgstr "Weltkarte"
1546
 
1547
+ #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1548
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1549
  #: includes/log/top-referring.php:125
1550
  msgid "Page"
1551
  msgstr "Seite"
1552
 
1553
+ #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1554
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1555
  #: includes/log/top-referring.php:125
1556
  msgid "From"
1739
  msgstr ""
1740
 
1741
  #: includes/log/widgets/top.visitors.php:31
1742
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
1743
+ #: wp-statistics.php:353 wp-statistics.php:429
1744
  msgid "Hits"
1745
  msgstr "Website-Aufrufe"
1746
 
1782
  msgid "No platform data found to remove!"
1783
  msgstr ""
1784
 
1785
+ #: includes/functions/functions.php:1019
1786
  msgid "%s table data deleted successfully."
1787
  msgstr ""
1788
 
1789
+ #: includes/functions/functions.php:1023
1790
  msgid "Error, %s not emptied!"
1791
  msgstr ""
1792
 
1812
 
1813
  #: includes/optimization/tabs/wps-optimization-database.php:25
1814
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1815
+ #: wp-statistics.php:351 wp-statistics.php:427
1816
  msgid "Countries"
1817
  msgstr "L&auml;nder"
1818
 
1828
  msgstr ""
1829
 
1830
  #: includes/optimization/tabs/wps-optimization-database.php:41
1831
+ #: includes/optimization/tabs/wps-optimization-database.php:102
1832
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1833
  msgstr ""
1834
 
1838
 
1839
  #: includes/optimization/tabs/wps-optimization-database.php:47
1840
  #: includes/optimization/tabs/wps-optimization-database.php:77
1841
+ #: includes/optimization/tabs/wps-optimization-database.php:108
1842
  msgid "Congratulations, your installation is already up to date, nothing to do."
1843
  msgstr "Gl&uuml;ckwunsch! Deine Installation ist aktuell, es gibt hier nichts zu tun..."
1844
 
1845
  #: includes/optimization/tabs/wps-optimization-export.php:8
1846
+ #: includes/optimization/wps-optimization.php:212
1847
  msgid "Export"
1848
  msgstr "Export"
1849
 
1896
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1897
  #: includes/settings/tabs/wps-general.php:138
1898
  #: includes/settings/tabs/wps-general.php:143 shortcode.php:133
1899
+ #: wp-statistics.php:360 wp-statistics.php:436
1900
  msgid "Visitors"
1901
  msgstr "Besucher"
1902
 
2211
  msgid "Install routine complete."
2212
  msgstr ""
2213
 
2214
+ #: includes/optimization/wps-optimization.php:211
2215
  msgid "Resources/Information"
2216
  msgstr "Ressourcen/Information"
2217
 
2218
+ #: includes/optimization/wps-optimization.php:213
2219
  msgid "Purging"
2220
  msgstr "Daten l&ouml;schen"
2221
 
2222
+ #: includes/optimization/wps-optimization.php:214
2223
  msgid "Database"
2224
  msgstr "Datenbank"
2225
 
2226
+ #: includes/optimization/wps-optimization.php:215
2227
  msgid "Updates"
2228
  msgstr ""
2229
 
2230
+ #: includes/optimization/wps-optimization.php:216
2231
  msgid "Historical"
2232
  msgstr "Historie"
2233
 
2377
  msgstr ""
2378
 
2379
  #: includes/settings/tabs/wps-access-level.php:23
2380
+ #: includes/settings/wps-settings.php:103
2381
  msgid "Access Levels"
2382
  msgstr "Zugriffsrechte"
2383
 
2410
  msgstr "Um mehr Freiheiten beim Verwalten von Rollen und Berechtigungen zu haben, empfiehlt sich die Verwendung entspr. Plugins - z.B. %s im WordPress Plugin-Verzeichnis."
2411
 
2412
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2413
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:352
2414
+ #: wp-statistics.php:428
2415
  msgid "Exclusions"
2416
  msgstr "Ausnahmen"
2417
 
2582
  msgid "Exclude the RSS feeds for registering as a hit."
2583
  msgstr ""
2584
 
2585
+ #: includes/settings/tabs/wps-externals.php:162
2586
  msgid "browscap settings"
2587
  msgstr "Browscap-Einstellungen"
2588
 
2589
+ #: includes/settings/tabs/wps-externals.php:167
2590
  msgid "browscap usage"
2591
  msgstr "Browscap verwenden"
2592
 
2593
+ #: includes/settings/tabs/wps-externals.php:52
2594
+ #: includes/settings/tabs/wps-externals.php:76
2595
+ #: includes/settings/tabs/wps-externals.php:109
2596
+ #: includes/settings/tabs/wps-externals.php:172
2597
+ #: includes/settings/tabs/wps-externals.php:196
2598
+ #: includes/settings/tabs/wps-externals.php:235
2599
+ #: includes/settings/tabs/wps-externals.php:259
2600
  #: includes/settings/tabs/wps-general.php:76
2601
  #: includes/settings/tabs/wps-general.php:92
2602
  #: includes/settings/tabs/wps-general.php:116
2612
  #: includes/settings/tabs/wps-general.php:286
2613
  #: includes/settings/tabs/wps-general.php:325
2614
  #: includes/settings/tabs/wps-general.php:341
 
 
 
2615
  #: includes/settings/tabs/wps-maintenance.php:40
2616
  #: includes/settings/tabs/wps-maintenance.php:64
2617
  #: includes/settings/tabs/wps-notifications.php:69
2626
  msgid "Active"
2627
  msgstr "Aktiv"
2628
 
2629
+ #: includes/settings/tabs/wps-externals.php:173
2630
  msgid "The browscap database will be downloaded and used to detect robots."
2631
  msgstr "Wenn aktiviert, verwendet WP Statistics die \"browsap.ini\" zum Erkennen von Robots."
2632
 
2633
+ #: includes/settings/tabs/wps-externals.php:179
2634
  msgid "Update browscap Info"
2635
  msgstr "Browscap aktualisieren"
2636
 
2637
+ #: includes/settings/tabs/wps-externals.php:184
2638
  msgid "Download browscap Database"
2639
  msgstr "Browscap-Datei herunterladen"
2640
 
2641
+ #: includes/settings/tabs/wps-externals.php:65
2642
+ #: includes/settings/tabs/wps-externals.php:185
2643
+ #: includes/settings/tabs/wps-externals.php:248
2644
  msgid "Save changes on this page to download the update."
2645
  msgstr "Speichere die &Auml;nderungen auf dieser Seite, um eine Aktualisierung herunterzuladen."
2646
 
2647
+ #: includes/settings/tabs/wps-externals.php:191
2648
  msgid "Schedule weekly update of browscap DB"
2649
  msgstr "Automat. Aktualisierung von Browscap"
2650
 
2651
+ #: includes/settings/tabs/wps-externals.php:79
2652
+ #: includes/settings/tabs/wps-externals.php:199
2653
+ #: includes/settings/tabs/wps-externals.php:262
2654
  msgid "Next update will be"
2655
  msgstr ""
2656
 
2657
+ #: includes/settings/tabs/wps-externals.php:214
2658
  msgid "Download of the browscap database will be scheduled for once a week."
2659
  msgstr "Die Aktualisierung der \"browscap.ini\"-Datei wird w&ouml;chentlich durchgef&uuml;hrt."
2660
 
languages/wp_statistics-eo.mo ADDED
Binary file
languages/wp_statistics-eo.po ADDED
@@ -0,0 +1,2675 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of WP Statistics in Esperanto
2
+ # This file is distributed under the same license as the WP Statistics package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: +0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/1.0-alpha-1000\n"
11
+ "Project-Id-Version: WP Statistics\n"
12
+
13
+ #: includes/optimization/wps-optimization.php:173
14
+ msgid "Search table conversion complete, %d rows added."
15
+ msgstr ""
16
+
17
+ #: includes/optimization/tabs/wps-optimization-database.php:107
18
+ msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion."
19
+ msgstr ""
20
+
21
+ #: includes/optimization/tabs/wps-optimization-database.php:86
22
+ msgid "Search Table"
23
+ msgstr ""
24
+
25
+ #: includes/optimization/tabs/wps-optimization-database.php:91
26
+ msgid "Convert"
27
+ msgstr ""
28
+
29
+ #: includes/optimization/tabs/wps-optimization-database.php:100
30
+ msgid "Convert Now!"
31
+ msgstr ""
32
+
33
+ #: includes/optimization/tabs/wps-optimization-database.php:101
34
+ msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion, however the old data must first be converted to the new format before it can be used."
35
+ msgstr ""
36
+
37
+ #: includes/log/exclusions.php:24
38
+ msgid "Referrer Spam"
39
+ msgstr ""
40
+
41
+ #: includes/settings/tabs/wps-externals.php:277
42
+ msgid "Download of the Piwik Referrer Spam Blacklist database will be scheduled for once a week."
43
+ msgstr ""
44
+
45
+ #: includes/settings/wps-settings.php:105
46
+ msgid "Externals"
47
+ msgstr ""
48
+
49
+ #: includes/settings/tabs/wps-externals.php:219
50
+ msgid "Piwik Referrer Spam Blacklist settings"
51
+ msgstr ""
52
+
53
+ #: includes/settings/tabs/wps-externals.php:254
54
+ msgid "Schedule weekly update of Piwik Referrer Spam Blacklist DB"
55
+ msgstr ""
56
+
57
+ #: includes/settings/tabs/wps-externals.php:247
58
+ msgid "Download Piwik Referrer Spam Blacklist Database"
59
+ msgstr ""
60
+
61
+ #: includes/settings/tabs/wps-externals.php:242
62
+ msgid "Update Piwik Referrer Spam Blacklist Info"
63
+ msgstr ""
64
+
65
+ #: includes/settings/tabs/wps-externals.php:236
66
+ msgid "The Piwik Referrer Spam Blacklist database will be downloaded and used to detect referrer spam."
67
+ msgstr ""
68
+
69
+ #: includes/settings/tabs/wps-externals.php:224
70
+ msgid "Referrer spam blacklist is provided by Piwik, available from %s."
71
+ msgstr ""
72
+
73
+ #: includes/settings/tabs/wps-externals.php:230
74
+ msgid "Piwik Referrer Spam Blacklist usage"
75
+ msgstr ""
76
+
77
+ #: includes/settings/tabs/wps-exclusions.php:148
78
+ msgid "Treat corrupt browser info as a bot"
79
+ msgstr ""
80
+
81
+ #: includes/log/exclusions.php:24
82
+ msgid "404 Pages"
83
+ msgstr ""
84
+
85
+ #: includes/log/top-visitors.php:26
86
+ msgid "Date"
87
+ msgstr ""
88
+
89
+ #: includes/settings/tabs/wps-exclusions.php:151
90
+ msgid "Treat any visitor with corrupt browser info (missing IP address or empty user agent string) as a robot."
91
+ msgstr ""
92
+
93
+ #: includes/settings/tabs/wps-exclusions.php:215
94
+ msgid "Excluded 404 pages"
95
+ msgstr ""
96
+
97
+ #: includes/settings/tabs/wps-exclusions.php:218
98
+ msgid "Exclude any URL that returns a \"404 - Not Found\" message."
99
+ msgstr ""
100
+
101
+ #: wps-updates.php:29
102
+ msgid "Error creating GeoIP database directory, make sure your web server has permissions to create directories in : %s"
103
+ msgstr ""
104
+
105
+ #: includes/settings/tabs/wps-general.php:281
106
+ msgid "Add page title to empty search words"
107
+ msgstr ""
108
+
109
+ #: includes/settings/tabs/wps-general.php:287
110
+ msgid "If a search engine is identified as the referrer but it does not include the search query this option will substitute the page title in quotes preceded by \"~:\" as the search query to help identify what the user may have been searching for."
111
+ msgstr ""
112
+
113
+ #: includes/settings/tabs/wps-maintenance.php:77
114
+ msgid "The number of hits required to delete the visitor. Invalid values will disable the daily maintenance (must be 10 or greater)."
115
+ msgstr ""
116
+
117
+ #: includes/settings/tabs/wps-maintenance.php:71
118
+ msgid "Prune visitors with more than"
119
+ msgstr ""
120
+
121
+ #: includes/settings/tabs/wps-maintenance.php:65
122
+ msgid "A WP Cron job will be run daily to prune any users statistics data where the user has more than the defined number of hits in a day (aka they are probably a bot)."
123
+ msgstr ""
124
+
125
+ #: includes/optimization/tabs/wps-optimization-purging.php:217
126
+ msgid "Purge visitors with more than"
127
+ msgstr ""
128
+
129
+ #: includes/optimization/tabs/wps-optimization-purging.php:222
130
+ msgid "hits"
131
+ msgstr ""
132
+
133
+ #: includes/optimization/tabs/wps-optimization-purging.php:223
134
+ msgid "Deleted user statistics data where the user has more than the defined number of hits in a day. This can be useful to clear up old data when your site has been hit by a bot. This will remove the visitor and their hits to the site, however it will not remove individual page hits as that data is not recorded on a per use basis. Minimum value is 10 hits."
135
+ msgstr ""
136
+
137
+ #: includes/functions/purge-hits.php:28
138
+ msgid "No visitors found to purge."
139
+ msgstr ""
140
+
141
+ #: includes/functions/purge-hits.php:25
142
+ msgid "%s records purged successfully."
143
+ msgstr ""
144
+
145
+ #: ajax.php:174 includes/functions/purge-hits.php:32
146
+ msgid "Number of hits must be greater than or equal to 10!"
147
+ msgstr ""
148
+
149
+ #: shortcode.php:134
150
+ msgid "Page Visits"
151
+ msgstr ""
152
+
153
+ #: shortcode.php:137
154
+ msgid "Page Count"
155
+ msgstr ""
156
+
157
+ #: shortcode.php:138
158
+ msgid "Comment Count"
159
+ msgstr ""
160
+
161
+ #: shortcode.php:139
162
+ msgid "Spam Count"
163
+ msgstr ""
164
+
165
+ #: shortcode.php:140
166
+ msgid "User Count"
167
+ msgstr ""
168
+
169
+ #: shortcode.php:141
170
+ msgid "Post Average"
171
+ msgstr ""
172
+
173
+ #: shortcode.php:142
174
+ msgid "Comment Average"
175
+ msgstr ""
176
+
177
+ #: shortcode.php:143
178
+ msgid "User Average"
179
+ msgstr ""
180
+
181
+ #: shortcode.php:151
182
+ msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
183
+ msgstr ""
184
+
185
+ #: shortcode.php:155
186
+ msgid "Search Provider"
187
+ msgstr ""
188
+
189
+ #: shortcode.php:158
190
+ msgid "The search provider to get statistics on."
191
+ msgstr ""
192
+
193
+ #: shortcode.php:162
194
+ msgid "Number Format"
195
+ msgstr ""
196
+
197
+ #: shortcode.php:165
198
+ msgid "The format to display numbers in: i18n, english, none."
199
+ msgstr ""
200
+
201
+ #: shortcode.php:169
202
+ msgid "English"
203
+ msgstr ""
204
+
205
+ #: shortcode.php:170
206
+ msgid "International"
207
+ msgstr ""
208
+
209
+ #: includes/log/exclusions.php:191 includes/log/hit-statistics.php:163
210
+ msgid "Hits Statistics Summary"
211
+ msgstr ""
212
+
213
+ #: includes/log/exclusions.php:201 includes/log/hit-statistics.php:174
214
+ msgid "Chart Total"
215
+ msgstr ""
216
+
217
+ #: includes/log/exclusions.php:206 includes/log/hit-statistics.php:180
218
+ msgid "All Time Total"
219
+ msgstr ""
220
+
221
+ #: includes/log/log.php:57
222
+ msgid "Have you thought about donating to WP Statistics?"
223
+ msgstr ""
224
+
225
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
226
+ msgid "Donate"
227
+ msgstr ""
228
+
229
+ #: includes/settings/tabs/wps-about.php:24
230
+ msgid "Fell like showing us how much you enjoy WP Statistics? Drop by our %s page and show us some love!"
231
+ msgstr ""
232
+
233
+ #: includes/settings/tabs/wps-about.php:24
234
+ msgid "donation"
235
+ msgstr ""
236
+
237
+ #: includes/log/log.php:57
238
+ msgid "Donate Now!"
239
+ msgstr ""
240
+
241
+ #: includes/log/log.php:57
242
+ msgid "Close"
243
+ msgstr ""
244
+
245
+ #: shortcode.php:128
246
+ msgid "Select the statistic you wish to display."
247
+ msgstr ""
248
+
249
+ #: shortcode.php:125
250
+ msgid "Statistic"
251
+ msgstr ""
252
+
253
+ #: shortcode.php:136
254
+ msgid "Post Count"
255
+ msgstr ""
256
+
257
+ #: shortcode.php:148
258
+ msgid "Time Frame"
259
+ msgstr ""
260
+
261
+ #: includes/functions/functions.php:981
262
+ msgid "to"
263
+ msgstr ""
264
+
265
+ #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
266
+ msgid "Go"
267
+ msgstr ""
268
+
269
+ #: includes/log/top-pages.php:95
270
+ msgid "Rank #5"
271
+ msgstr ""
272
+
273
+ #: includes/log/top-pages.php:95
274
+ msgid "Rank #4"
275
+ msgstr ""
276
+
277
+ #: includes/log/top-pages.php:95
278
+ msgid "Rank #3"
279
+ msgstr ""
280
+
281
+ #: includes/log/top-pages.php:95
282
+ msgid "Rank #1"
283
+ msgstr ""
284
+
285
+ #: includes/log/top-pages.php:95
286
+ msgid "Rank #2"
287
+ msgstr ""
288
+
289
+ #: includes/optimization/tabs/wps-optimization-database.php:56
290
+ msgid "Visits Table"
291
+ msgstr ""
292
+
293
+ #: includes/optimization/tabs/wps-optimization-database.php:70
294
+ msgid "Older installs of WP Statistics allow for duplicate entries in the visits table in a corner case. Newer installs protect against this with a unique index on the table. To create the index on the older installs duplicate entries must be deleted first. Clicking \"Update Now\" will scan the vistits table, delete duplicate entries and add the index."
295
+ msgstr ""
296
+
297
+ #: includes/optimization/tabs/wps-optimization-database.php:71
298
+ msgid "This operation could take a long time on installs with many rows in the visits table."
299
+ msgstr ""
300
+
301
+ #: includes/optimization/tabs/wps-optimization-database.php:76
302
+ msgid "Older installs of WP Statistics allow for duplicate entries in the visits table in a corner case. Newer installs protect against this with a unique index on the table."
303
+ msgstr ""
304
+
305
+ #: includes/log/last-visitor.php:68
306
+ msgid "Filtered by"
307
+ msgstr ""
308
+
309
+ #: includes/functions/functions.php:974 includes/functions/functions.php:977
310
+ msgid "Range"
311
+ msgstr ""
312
+
313
+ #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
314
+ msgid "MM/DD/YYYY"
315
+ msgstr ""
316
+
317
+ #: includes/settings/tabs/wps-general.php:342
318
+ msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
319
+ msgstr ""
320
+
321
+ #: includes/settings/tabs/wps-general.php:336
322
+ msgid "Force English"
323
+ msgstr ""
324
+
325
+ #: includes/settings/tabs/wps-general.php:331
326
+ msgid "Languages"
327
+ msgstr ""
328
+
329
+ #: includes/settings/tabs/wps-exclusions.php:227
330
+ msgid "Note: this option will NOT handle url parameters (anything after the ?), only to the script name. Entries less than two characters will be ignored."
331
+ msgstr ""
332
+
333
+ #: includes/settings/tabs/wps-exclusions.php:225
334
+ msgid "A list of local urls (ie. /wordpress/about, one per line) to exclude from statistics collection."
335
+ msgstr ""
336
+
337
+ #: includes/settings/tabs/wps-exclusions.php:222
338
+ msgid "Excluded URLs list"
339
+ msgstr ""
340
+
341
+ #: includes/log/exclusions.php:24
342
+ msgid "Excluded URL"
343
+ msgstr ""
344
+
345
+ #: includes/log/widgets/summary.php:66
346
+ msgid "Last 365 Days (Year)"
347
+ msgstr ""
348
+
349
+ #: includes/log/widgets/summary.php:60
350
+ msgid "Last 30 Days (Month)"
351
+ msgstr ""
352
+
353
+ #: includes/log/widgets/summary.php:54
354
+ msgid "Last 7 Days (Week)"
355
+ msgstr ""
356
+
357
+ #: includes/functions/functions.php:405
358
+ msgid "Yahoo!"
359
+ msgstr ""
360
+
361
+ #: includes/functions/functions.php:406
362
+ msgid "Yandex"
363
+ msgstr ""
364
+
365
+ #: includes/functions/functions.php:402
366
+ msgid "clearch.org"
367
+ msgstr ""
368
+
369
+ #: includes/functions/functions.php:403
370
+ msgid "DuckDuckGo"
371
+ msgstr ""
372
+
373
+ #: includes/functions/functions.php:401
374
+ msgid "Bing"
375
+ msgstr ""
376
+
377
+ #: includes/functions/functions.php:400
378
+ msgid "Baidu"
379
+ msgstr ""
380
+
381
+ #: editor.php:69
382
+ msgid "Hits in the last 20 days"
383
+ msgstr ""
384
+
385
+ #: includes/log/exclusions.php:24
386
+ msgid "Feeds"
387
+ msgstr ""
388
+
389
+ #: includes/log/exclusions.php:24
390
+ msgid "User Role"
391
+ msgstr ""
392
+
393
+ #: includes/log/exclusions.php:24
394
+ msgid "Login Page"
395
+ msgstr ""
396
+
397
+ #: includes/log/exclusions.php:24
398
+ msgid "Admin Page"
399
+ msgstr ""
400
+
401
+ #: includes/log/exclusions.php:24
402
+ msgid "Self Referral"
403
+ msgstr ""
404
+
405
+ #: includes/log/exclusions.php:24
406
+ msgid "IP Match"
407
+ msgstr ""
408
+
409
+ #: includes/log/exclusions.php:24
410
+ msgid "Robot"
411
+ msgstr ""
412
+
413
+ #: includes/log/online.php:100
414
+ msgid "Currently there are no users online in the site."
415
+ msgstr ""
416
+
417
+ #: includes/log/exclusions.php:24
418
+ msgid "Robot Threshold"
419
+ msgstr ""
420
+
421
+ #: includes/log/exclusions.php:24
422
+ msgid "Honey Pot"
423
+ msgstr ""
424
+
425
+ #: includes/log/widgets/page.php:8
426
+ msgid "Page Trending Stats"
427
+ msgstr ""
428
+
429
+ #: includes/log/exclusions.php:24
430
+ msgid "Hostname"
431
+ msgstr ""
432
+
433
+ #: includes/settings/tabs/wps-general.php:93
434
+ #: includes/settings/tabs/wps-general.php:133
435
+ #: includes/settings/tabs/wps-general.php:149
436
+ #: includes/settings/tabs/wps-general.php:188
437
+ #: includes/settings/tabs/wps-general.php:200
438
+ #: includes/settings/tabs/wps-general.php:229
439
+ #: includes/settings/tabs/wps-notifications.php:122
440
+ msgid "Enable or disable this feature"
441
+ msgstr ""
442
+
443
+ #: includes/settings/tabs/wps-general.php:99
444
+ msgid "Check for online users every"
445
+ msgstr ""
446
+
447
+ #: includes/settings/tabs/wps-general.php:104
448
+ msgid "Second"
449
+ msgstr ""
450
+
451
+ #: includes/settings/tabs/wps-general.php:105
452
+ msgid "Time for the check accurate online user in the site. Now: %s Second"
453
+ msgstr ""
454
+
455
+ #: includes/settings/tabs/wps-general.php:111
456
+ msgid "Record all user"
457
+ msgstr ""
458
+
459
+ #: includes/settings/tabs/wps-general.php:117
460
+ msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
461
+ msgstr ""
462
+
463
+ #: includes/settings/tabs/wps-general.php:155
464
+ msgid "Store entire user agent string"
465
+ msgstr ""
466
+
467
+ #: includes/settings/tabs/wps-general.php:161
468
+ msgid "Only enabled for debugging"
469
+ msgstr ""
470
+
471
+ #: includes/settings/tabs/wps-general.php:167
472
+ msgid "Coefficient per visitor"
473
+ msgstr ""
474
+
475
+ #: includes/settings/tabs/wps-general.php:172
476
+ msgid "For each visit to account for several hits. Currently %s."
477
+ msgstr ""
478
+
479
+ #: includes/settings/tabs/wps-general.php:177
480
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
481
+ #: wp-statistics.php:431
482
+ msgid "Pages"
483
+ msgstr ""
484
+
485
+ #: includes/settings/tabs/wps-general.php:194
486
+ msgid "Track all pages"
487
+ msgstr ""
488
+
489
+ #: includes/settings/tabs/wps-general.php:209
490
+ msgid "Strip parameters from URI"
491
+ msgstr ""
492
+
493
+ #: includes/settings/tabs/wps-general.php:215
494
+ msgid "This will remove anything after the ? in a URL."
495
+ msgstr ""
496
+
497
+ #: includes/settings/tabs/wps-general.php:223
498
+ msgid "Disable hits column in post/pages list"
499
+ msgstr ""
500
+
501
+ #: includes/settings/tabs/wps-general.php:234
502
+ msgid "Miscellaneous"
503
+ msgstr ""
504
+
505
+ #: includes/settings/tabs/wps-general.php:239
506
+ msgid "Show stats in menu bar"
507
+ msgstr ""
508
+
509
+ #: includes/settings/tabs/wps-general.php:244
510
+ msgid "No"
511
+ msgstr ""
512
+
513
+ #: includes/settings/tabs/wps-general.php:245
514
+ msgid "Yes"
515
+ msgstr ""
516
+
517
+ #: includes/settings/tabs/wps-general.php:247
518
+ msgid "Show stats in admin menu bar"
519
+ msgstr ""
520
+
521
+ #: includes/settings/tabs/wps-general.php:253
522
+ msgid "Hide admin notices about non active features"
523
+ msgstr ""
524
+
525
+ #: includes/settings/tabs/wps-general.php:259
526
+ 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."
527
+ msgstr ""
528
+
529
+ #: includes/settings/tabs/wps-general.php:265
530
+ msgid "Delete the manual"
531
+ msgstr ""
532
+
533
+ #: includes/settings/tabs/wps-general.php:271
534
+ 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."
535
+ msgstr ""
536
+
537
+ #: includes/settings/tabs/wps-general.php:276
538
+ msgid "Search Engines"
539
+ msgstr ""
540
+
541
+ #: includes/settings/tabs/wps-general.php:293
542
+ msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
543
+ msgstr ""
544
+
545
+ #: includes/settings/tabs/wps-general.php:308
546
+ msgid "disable"
547
+ msgstr ""
548
+
549
+ #: includes/settings/tabs/wps-general.php:309
550
+ msgid "Disable %s from data collection and reporting."
551
+ msgstr ""
552
+
553
+ #: includes/settings/tabs/wps-general.php:315
554
+ msgid "Charts"
555
+ msgstr ""
556
+
557
+ #: includes/settings/tabs/wps-general.php:320
558
+ msgid "Include totals"
559
+ msgstr ""
560
+
561
+ #: includes/settings/tabs/wps-general.php:326
562
+ msgid "Add a total line to charts with multiple values, like the search engine referrals"
563
+ msgstr ""
564
+
565
+ #: includes/settings/tabs/wps-externals.php:32
566
+ msgid "GeoIP settings"
567
+ msgstr ""
568
+
569
+ #: includes/settings/tabs/wps-externals.php:37
570
+ msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
571
+ msgstr ""
572
+
573
+ #: includes/settings/tabs/wps-externals.php:47
574
+ msgid "GeoIP collection"
575
+ msgstr ""
576
+
577
+ #: includes/settings/tabs/wps-externals.php:53
578
+ msgid "For get more information and location (country) from visitor, enable this feature."
579
+ msgstr ""
580
+
581
+ #: includes/settings/tabs/wps-externals.php:59
582
+ msgid "Update GeoIP Info"
583
+ msgstr ""
584
+
585
+ #: includes/settings/tabs/wps-externals.php:64
586
+ msgid "Download GeoIP Database"
587
+ msgstr ""
588
+
589
+ #: includes/settings/tabs/wps-externals.php:71
590
+ msgid "Schedule monthly update of GeoIP DB"
591
+ msgstr ""
592
+
593
+ #: includes/settings/tabs/wps-externals.php:97
594
+ msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
595
+ msgstr ""
596
+
597
+ #: includes/settings/tabs/wps-externals.php:98
598
+ 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)."
599
+ msgstr ""
600
+
601
+ #: includes/settings/tabs/wps-externals.php:104
602
+ msgid "Populate missing GeoIP after update of GeoIP DB"
603
+ msgstr ""
604
+
605
+ #: includes/settings/tabs/wps-externals.php:110
606
+ msgid "Update any missing GeoIP data after downloading a new database."
607
+ msgstr ""
608
+
609
+ #: includes/settings/tabs/wps-externals.php:116
610
+ msgid "Country code for private IP addresses"
611
+ msgstr ""
612
+
613
+ #: includes/settings/tabs/wps-externals.php:121
614
+ 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."
615
+ msgstr ""
616
+
617
+ #: includes/settings/tabs/wps-externals.php:132
618
+ msgid "GeoIP collection is disabled due to the following reasons:"
619
+ msgstr ""
620
+
621
+ #: includes/settings/tabs/wps-externals.php:135
622
+ msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
623
+ msgstr ""
624
+
625
+ #: includes/settings/tabs/wps-externals.php:140
626
+ msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
627
+ msgstr ""
628
+
629
+ #: includes/settings/tabs/wps-externals.php:146
630
+ msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
631
+ msgstr ""
632
+
633
+ #: includes/settings/tabs/wps-externals.php:152
634
+ msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
635
+ msgstr ""
636
+
637
+ #: includes/settings/tabs/wps-maintenance.php:20
638
+ msgid "This will permanently delete data from the database each day, are you sure you want to enable this option?"
639
+ msgstr ""
640
+
641
+ #: includes/settings/tabs/wps-maintenance.php:30
642
+ msgid "Database Maintenance"
643
+ msgstr ""
644
+
645
+ #: includes/settings/tabs/wps-maintenance.php:35
646
+ #: includes/settings/tabs/wps-maintenance.php:59
647
+ msgid "Run a daily WP Cron job to prune the databases"
648
+ msgstr ""
649
+
650
+ #: includes/settings/tabs/wps-maintenance.php:41
651
+ msgid "A WP Cron job will be run daily to prune any data older than a set number of days."
652
+ msgstr ""
653
+
654
+ #: includes/settings/tabs/wps-maintenance.php:47
655
+ msgid "Prune data older than"
656
+ msgstr ""
657
+
658
+ #: includes/settings/tabs/wps-maintenance.php:52
659
+ msgid "Days"
660
+ msgstr ""
661
+
662
+ #: includes/settings/tabs/wps-maintenance.php:53
663
+ msgid "The number of days to keep statistics for. Minimum value is 30 days. Invalid values will disable the daily maintenance."
664
+ msgstr ""
665
+
666
+ #: includes/settings/tabs/wps-notifications.php:44
667
+ msgid "Common Report Options"
668
+ msgstr ""
669
+
670
+ #: includes/settings/tabs/wps-notifications.php:49
671
+ msgid "E-mail addresses"
672
+ msgstr ""
673
+
674
+ #: includes/settings/tabs/wps-notifications.php:54
675
+ msgid "A comma separated list of e-mail addresses to send reports to."
676
+ msgstr ""
677
+
678
+ #: includes/settings/tabs/wps-notifications.php:59
679
+ msgid "Update Reports"
680
+ msgstr ""
681
+
682
+ #: includes/log/exclusions.php:24
683
+ #: includes/settings/tabs/wps-notifications.php:64
684
+ msgid "Browscap"
685
+ msgstr ""
686
+
687
+ #: includes/settings/tabs/wps-notifications.php:70
688
+ msgid "Send a report whenever the browscap.ini is updated."
689
+ msgstr ""
690
+
691
+ #: includes/log/exclusions.php:24
692
+ #: includes/settings/tabs/wps-notifications.php:76
693
+ msgid "GeoIP"
694
+ msgstr ""
695
+
696
+ #: includes/settings/tabs/wps-notifications.php:82
697
+ msgid "Send a report whenever the GeoIP database is updated."
698
+ msgstr ""
699
+
700
+ #: includes/settings/tabs/wps-notifications.php:88
701
+ msgid "Pruning"
702
+ msgstr ""
703
+
704
+ #: includes/settings/tabs/wps-notifications.php:94
705
+ msgid "Send a report whenever the pruning of database is run."
706
+ msgstr ""
707
+
708
+ #: includes/settings/tabs/wps-notifications.php:100
709
+ msgid "Upgrade"
710
+ msgstr ""
711
+
712
+ #: includes/settings/tabs/wps-notifications.php:106
713
+ msgid "Send a report whenever the plugin is upgraded."
714
+ msgstr ""
715
+
716
+ #: includes/settings/tabs/wps-notifications.php:111
717
+ #: includes/settings/tabs/wps-notifications.php:116 schedule.php:221
718
+ msgid "Statistical reporting"
719
+ msgstr ""
720
+
721
+ #: includes/settings/tabs/wps-notifications.php:129
722
+ msgid "Schedule"
723
+ msgstr ""
724
+
725
+ #: includes/settings/tabs/wps-notifications.php:153
726
+ msgid "Select how often to receive statistical report."
727
+ msgstr ""
728
+
729
+ #: includes/settings/tabs/wps-notifications.php:159
730
+ msgid "Send reports via"
731
+ msgstr ""
732
+
733
+ #: includes/settings/tabs/wps-notifications.php:165
734
+ msgid "Email"
735
+ msgstr ""
736
+
737
+ #: includes/settings/tabs/wps-notifications.php:167
738
+ msgid "SMS"
739
+ msgstr ""
740
+
741
+ #: includes/settings/tabs/wps-notifications.php:170
742
+ msgid "Select delivery method for statistical report."
743
+ msgstr ""
744
+
745
+ #: includes/settings/tabs/wps-notifications.php:173
746
+ msgid "Note: To send SMS text messages please install the %s plugin."
747
+ msgstr ""
748
+
749
+ #: includes/settings/tabs/wps-notifications.php:173
750
+ msgid "WordPress SMS"
751
+ msgstr ""
752
+
753
+ #: includes/settings/tabs/wps-notifications.php:180
754
+ msgid "Report body"
755
+ msgstr ""
756
+
757
+ #: includes/settings/tabs/wps-notifications.php:185
758
+ msgid "Enter the contents of the report."
759
+ msgstr ""
760
+
761
+ #: includes/settings/tabs/wps-notifications.php:187
762
+ 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:"
763
+ msgstr ""
764
+
765
+ #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
766
+ #: widget.php:245 wp-statistics.php:536
767
+ msgid "User Online"
768
+ msgstr ""
769
+
770
+ #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
771
+ #: widget.php:251
772
+ msgid "Today Visitor"
773
+ msgstr ""
774
+
775
+ #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
776
+ #: widget.php:248
777
+ msgid "Today Visit"
778
+ msgstr ""
779
+
780
+ #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
781
+ #: widget.php:257
782
+ msgid "Yesterday Visitor"
783
+ msgstr ""
784
+
785
+ #: includes/settings/tabs/wps-notifications.php:192 widget.php:59
786
+ msgid "Yesterday Visit"
787
+ msgstr ""
788
+
789
+ #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
790
+ #: widget.php:272
791
+ msgid "Total Visitor"
792
+ msgstr ""
793
+
794
+ #: includes/settings/tabs/wps-notifications.php:194 widget.php:94
795
+ #: widget.php:269
796
+ msgid "Total Visit"
797
+ msgstr ""
798
+
799
+ #: includes/settings/tabs/wps-overview-display.php:23
800
+ #: includes/settings/tabs/wps-overview-display.php:32 shortcode.php:168
801
+ msgid "None"
802
+ msgstr ""
803
+
804
+ #: includes/settings/tabs/wps-overview-display.php:24
805
+ msgid "Summary Statistics"
806
+ msgstr ""
807
+
808
+ #: includes/settings/tabs/wps-overview-display.php:28
809
+ #: includes/settings/wps-settings.php:108
810
+ msgid "About"
811
+ msgstr ""
812
+
813
+ #: includes/settings/tabs/wps-overview-display.php:34
814
+ msgid "Hits Statistical Chart"
815
+ msgstr ""
816
+
817
+ #: includes/settings/tabs/wps-overview-display.php:36
818
+ msgid "Search Engine Referrers Statistical Chart"
819
+ msgstr ""
820
+
821
+ #: includes/settings/tabs/wps-overview-display.php:38
822
+ msgid "Top Pages Visited"
823
+ msgstr ""
824
+
825
+ #: includes/settings/tabs/wps-overview-display.php:73
826
+ msgid "Dashboard"
827
+ msgstr ""
828
+
829
+ #: includes/settings/tabs/wps-overview-display.php:77
830
+ #: includes/settings/tabs/wps-overview-display.php:97
831
+ #: includes/settings/tabs/wps-overview-display.php:117
832
+ msgid "The following items are global to all users."
833
+ msgstr ""
834
+
835
+ #: includes/settings/tabs/wps-overview-display.php:82
836
+ msgid "Disable dashboard widgets"
837
+ msgstr ""
838
+
839
+ #: includes/settings/tabs/wps-overview-display.php:88
840
+ msgid "Disable the dashboard widgets."
841
+ msgstr ""
842
+
843
+ #: includes/settings/tabs/wps-overview-display.php:93
844
+ msgid "Page/Post Editor"
845
+ msgstr ""
846
+
847
+ #: includes/settings/tabs/wps-overview-display.php:102
848
+ msgid "Disable post/page editor widget"
849
+ msgstr ""
850
+
851
+ #: includes/settings/tabs/wps-overview-display.php:108
852
+ msgid "Disable the page/post editor widget."
853
+ msgstr ""
854
+
855
+ #: includes/settings/tabs/wps-overview-display.php:122
856
+ msgid "Map type"
857
+ msgstr ""
858
+
859
+ #: includes/functions/functions.php:404
860
+ #: includes/settings/tabs/wps-overview-display.php:128
861
+ msgid "Google"
862
+ msgstr ""
863
+
864
+ #: includes/settings/tabs/wps-overview-display.php:128
865
+ msgid "JQVMap"
866
+ msgstr ""
867
+
868
+ #: includes/settings/tabs/wps-overview-display.php:135
869
+ msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
870
+ msgstr ""
871
+
872
+ #: includes/settings/tabs/wps-overview-display.php:136
873
+ msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
874
+ msgstr ""
875
+
876
+ #: includes/settings/tabs/wps-overview-display.php:142
877
+ msgid "Disable map"
878
+ msgstr ""
879
+
880
+ #: includes/settings/tabs/wps-overview-display.php:148
881
+ msgid "Disable the map display"
882
+ msgstr ""
883
+
884
+ #: includes/settings/tabs/wps-overview-display.php:154
885
+ msgid "Get country location from Google"
886
+ msgstr ""
887
+
888
+ #: includes/settings/tabs/wps-overview-display.php:160
889
+ msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
890
+ msgstr ""
891
+
892
+ #: includes/settings/tabs/wps-overview-display.php:171
893
+ msgid "Overview Widgets to Display"
894
+ msgstr ""
895
+
896
+ #: includes/settings/tabs/wps-overview-display.php:175
897
+ 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."
898
+ msgstr ""
899
+
900
+ #: includes/settings/tabs/wps-overview-display.php:180
901
+ msgid "Slot"
902
+ msgstr ""
903
+
904
+ #: includes/settings/tabs/wps-overview-display.php:184
905
+ msgid "Column A"
906
+ msgstr ""
907
+
908
+ #: includes/settings/tabs/wps-overview-display.php:188
909
+ msgid "Column B"
910
+ msgstr ""
911
+
912
+ #: includes/settings/tabs/wps-overview-display.php:194
913
+ msgid "Slot 1"
914
+ msgstr ""
915
+
916
+ #: includes/settings/tabs/wps-overview-display.php:224
917
+ msgid "Slot 2"
918
+ msgstr ""
919
+
920
+ #: includes/settings/tabs/wps-overview-display.php:254
921
+ msgid "Slot 3"
922
+ msgstr ""
923
+
924
+ #: includes/settings/tabs/wps-overview-display.php:284
925
+ msgid "Slot 4"
926
+ msgstr ""
927
+
928
+ #: includes/settings/tabs/wps-overview-display.php:314
929
+ msgid "Slot 5"
930
+ msgstr ""
931
+
932
+ #: includes/settings/tabs/wps-overview-display.php:344
933
+ msgid "Slot 6"
934
+ msgstr ""
935
+
936
+ #: includes/settings/tabs/wps-overview-display.php:348
937
+ #: includes/settings/tabs/wps-overview-display.php:370
938
+ msgid "N/A"
939
+ msgstr ""
940
+
941
+ #: includes/settings/tabs/wps-overview-display.php:366
942
+ msgid "Slot 7"
943
+ msgstr ""
944
+
945
+ #: includes/settings/tabs/wps-removal.php:15
946
+ msgid "WP Statisitcs Removal"
947
+ msgstr ""
948
+
949
+ #: includes/settings/tabs/wps-removal.php:20
950
+ 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."
951
+ msgstr ""
952
+
953
+ #: includes/settings/tabs/wps-removal.php:23
954
+ 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."
955
+ msgstr ""
956
+
957
+ #: includes/settings/tabs/wps-removal.php:29
958
+ msgid "Remove data and settings"
959
+ msgstr ""
960
+
961
+ #: includes/settings/tabs/wps-removal.php:34
962
+ msgid "Remove"
963
+ msgstr ""
964
+
965
+ #: includes/settings/tabs/wps-removal.php:35
966
+ msgid "Remove data and settings, this action cannot be undone."
967
+ msgstr ""
968
+
969
+ #: includes/settings/wps-settings.php:100
970
+ msgid "General"
971
+ msgstr ""
972
+
973
+ #: includes/settings/wps-settings.php:101
974
+ msgid "Notifications"
975
+ msgstr ""
976
+
977
+ #: includes/settings/wps-settings.php:102
978
+ msgid "Dashboard/Overview"
979
+ msgstr ""
980
+
981
+ #: includes/settings/wps-settings.php:106
982
+ msgid "Maintenance"
983
+ msgstr ""
984
+
985
+ #: includes/settings/wps-settings.php:107
986
+ msgid "Removal"
987
+ msgstr ""
988
+
989
+ #: includes/settings/tabs/wps-access-level.php:85
990
+ #: includes/settings/tabs/wps-exclusions.php:234
991
+ #: includes/settings/tabs/wps-externals.php:284
992
+ #: includes/settings/tabs/wps-general.php:349
993
+ #: includes/settings/tabs/wps-maintenance.php:84
994
+ #: includes/settings/tabs/wps-notifications.php:201
995
+ #: includes/settings/tabs/wps-overview-display.php:388
996
+ #: includes/settings/tabs/wps-removal.php:42
997
+ msgid "Update"
998
+ msgstr ""
999
+
1000
+ #: schedule.php:10
1001
+ msgid "Once Weekly"
1002
+ msgstr ""
1003
+
1004
+ #: schedule.php:17
1005
+ msgid "Once Every 2 Weeks"
1006
+ msgstr ""
1007
+
1008
+ #: schedule.php:24
1009
+ msgid "Once Every 4 Weeks"
1010
+ msgstr ""
1011
+
1012
+ #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
1013
+ msgid "Statistics"
1014
+ msgstr ""
1015
+
1016
+ #: widget.php:15
1017
+ msgid "Show site stats in sidebar."
1018
+ msgstr ""
1019
+
1020
+ #: widget.php:73 widget.php:260
1021
+ msgid "Week Visit"
1022
+ msgstr ""
1023
+
1024
+ #: widget.php:80 widget.php:263
1025
+ msgid "Month Visit"
1026
+ msgstr ""
1027
+
1028
+ #: widget.php:87 widget.php:266
1029
+ msgid "Years Visit"
1030
+ msgstr ""
1031
+
1032
+ #: widget.php:108 widget.php:275
1033
+ msgid "Total Page Views"
1034
+ msgstr ""
1035
+
1036
+ #: widget.php:116
1037
+ msgid "Search Engine referred"
1038
+ msgstr ""
1039
+
1040
+ #: widget.php:123 widget.php:298
1041
+ msgid "Total Posts"
1042
+ msgstr ""
1043
+
1044
+ #: widget.php:130 widget.php:301
1045
+ msgid "Total Pages"
1046
+ msgstr ""
1047
+
1048
+ #: widget.php:137 widget.php:304
1049
+ msgid "Total Comments"
1050
+ msgstr ""
1051
+
1052
+ #: widget.php:144 widget.php:307
1053
+ msgid "Total Spams"
1054
+ msgstr ""
1055
+
1056
+ #: widget.php:151 widget.php:310
1057
+ msgid "Total Users"
1058
+ msgstr ""
1059
+
1060
+ #: widget.php:158 widget.php:313
1061
+ msgid "Average Posts"
1062
+ msgstr ""
1063
+
1064
+ #: widget.php:165 widget.php:316
1065
+ msgid "Average Comments"
1066
+ msgstr ""
1067
+
1068
+ #: widget.php:172 widget.php:319
1069
+ msgid "Average Users"
1070
+ msgstr ""
1071
+
1072
+ #: shortcode.php:144 widget.php:179 widget.php:322
1073
+ msgid "Last Post Date"
1074
+ msgstr ""
1075
+
1076
+ #: widget.php:238
1077
+ msgid "Name"
1078
+ msgstr ""
1079
+
1080
+ #: widget.php:242
1081
+ msgid "Items"
1082
+ msgstr ""
1083
+
1084
+ #: widget.php:254 wp-statistics.php:561
1085
+ msgid "Yesterday visit"
1086
+ msgstr ""
1087
+
1088
+ #: widget.php:278
1089
+ msgid "Search Engine Referred"
1090
+ msgstr ""
1091
+
1092
+ #: widget.php:281
1093
+ msgid "Select type of search engine"
1094
+ msgstr ""
1095
+
1096
+ #: wp-statistics.php:70
1097
+ msgid "ERROR: WP Statistics has detected an unsupported version of PHP, WP Statistics will not function without PHP Version "
1098
+ msgstr ""
1099
+
1100
+ #: wp-statistics.php:70
1101
+ msgid " or higher!"
1102
+ msgstr ""
1103
+
1104
+ #: wp-statistics.php:70
1105
+ msgid "Your current PHP version is"
1106
+ msgstr ""
1107
+
1108
+ #: wp-statistics.php:86
1109
+ msgid "WP Statistics has been removed, please disable and delete it."
1110
+ msgstr ""
1111
+
1112
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1113
+ #. Plugin Name of the plugin/theme
1114
+ #: wp-statistics.php:37
1115
+ msgid "WP Statistics"
1116
+ msgstr ""
1117
+
1118
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1119
+ #. Description of the plugin/theme
1120
+ #: wp-statistics.php:38
1121
+ msgid "Complete statistics for your WordPress site."
1122
+ msgstr ""
1123
+
1124
+ #: wp-statistics.php:137
1125
+ msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
1126
+ msgstr ""
1127
+
1128
+ #: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
1129
+ msgid "setting page"
1130
+ msgstr ""
1131
+
1132
+ #: wp-statistics.php:140
1133
+ msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
1134
+ msgstr ""
1135
+
1136
+ #: wp-statistics.php:143
1137
+ msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
1138
+ msgstr ""
1139
+
1140
+ #: wp-statistics.php:146
1141
+ msgid "GeoIP collection is not active, please go to %s and enable this feature."
1142
+ msgstr ""
1143
+
1144
+ #: wp-statistics.php:146
1145
+ msgid "Setting page > GeoIP"
1146
+ msgstr ""
1147
+
1148
+ #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
1149
+ msgid "Settings"
1150
+ msgstr ""
1151
+
1152
+ #: wp-statistics.php:265
1153
+ msgid "Click here to visit the plugin on WordPress.org"
1154
+ msgstr ""
1155
+
1156
+ #: wp-statistics.php:265
1157
+ msgid "Visit WordPress.org page"
1158
+ msgstr ""
1159
+
1160
+ #: wp-statistics.php:268
1161
+ msgid "Click here to rate and review this plugin on WordPress.org"
1162
+ msgstr ""
1163
+
1164
+ #: wp-statistics.php:268
1165
+ msgid "Rate this plugin"
1166
+ msgstr ""
1167
+
1168
+ #: wp-statistics.php:312
1169
+ msgid "WP Statistics - Hits"
1170
+ msgstr ""
1171
+
1172
+ #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
1173
+ msgid "Overview"
1174
+ msgstr ""
1175
+
1176
+ #: wp-statistics.php:354 wp-statistics.php:430
1177
+ msgid "Online"
1178
+ msgstr ""
1179
+
1180
+ #: wp-statistics.php:356 wp-statistics.php:432
1181
+ msgid "Referrers"
1182
+ msgstr ""
1183
+
1184
+ #: shortcode.php:135 wp-statistics.php:357 wp-statistics.php:433
1185
+ msgid "Searches"
1186
+ msgstr ""
1187
+
1188
+ #: wp-statistics.php:358 wp-statistics.php:434
1189
+ msgid "Search Words"
1190
+ msgstr ""
1191
+
1192
+ #: wp-statistics.php:359 wp-statistics.php:435
1193
+ msgid "Top Visitors Today"
1194
+ msgstr ""
1195
+
1196
+ #: wp-statistics.php:364 wp-statistics.php:437
1197
+ msgid "Optimization"
1198
+ msgstr ""
1199
+
1200
+ #: wp-statistics.php:370 wp-statistics.php:401
1201
+ msgid "Manual"
1202
+ msgstr ""
1203
+
1204
+ #: wp-statistics.php:416
1205
+ msgid "Site"
1206
+ msgstr ""
1207
+
1208
+ #: wp-statistics.php:417
1209
+ msgid "Options"
1210
+ msgstr ""
1211
+
1212
+ #: wp-statistics.php:543
1213
+ msgid "Today visitor"
1214
+ msgstr ""
1215
+
1216
+ #: wp-statistics.php:549
1217
+ msgid "Today visit"
1218
+ msgstr ""
1219
+
1220
+ #: wp-statistics.php:555
1221
+ msgid "Yesterday visitor"
1222
+ msgstr ""
1223
+
1224
+ #: wp-statistics.php:567
1225
+ msgid "View Stats"
1226
+ msgstr ""
1227
+
1228
+ #: wp-statistics.php:591
1229
+ msgid "Download ODF file"
1230
+ msgstr ""
1231
+
1232
+ #: wp-statistics.php:592
1233
+ msgid "Download HTML file"
1234
+ msgstr ""
1235
+
1236
+ #: wp-statistics.php:596
1237
+ msgid "Manual file not found."
1238
+ msgstr ""
1239
+
1240
+ #: wp-statistics.php:663 wp-statistics.php:770 wp-statistics.php:804
1241
+ msgid "You do not have sufficient permissions to access this page."
1242
+ msgstr ""
1243
+
1244
+ #: wp-statistics.php:672
1245
+ msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
1246
+ msgstr ""
1247
+
1248
+ #: wp-statistics.php:241
1249
+ msgid "WP Statistics %s installed on"
1250
+ msgstr ""
1251
+
1252
+ #: wps-updates.php:39
1253
+ msgid "Error downloading GeoIP database from: %s - %s"
1254
+ msgstr ""
1255
+
1256
+ #: wps-updates.php:50
1257
+ msgid "Error could not open downloaded GeoIP database for reading: %s"
1258
+ msgstr ""
1259
+
1260
+ #: wps-updates.php:57
1261
+ msgid "Error could not open destination GeoIP database for writing %s"
1262
+ msgstr ""
1263
+
1264
+ #: wps-updates.php:73
1265
+ msgid "GeoIP Database updated successfully!"
1266
+ msgstr ""
1267
+
1268
+ #: wps-updates.php:98
1269
+ msgid "GeoIP update on"
1270
+ msgstr ""
1271
+
1272
+ #: wps-updates.php:165
1273
+ msgid "Error downloading browscap database from: %s - %s"
1274
+ msgstr ""
1275
+
1276
+ #: wps-updates.php:267
1277
+ msgid "browscap database updated successfully!"
1278
+ msgstr ""
1279
+
1280
+ #: wps-updates.php:277
1281
+ msgid "browscap database updated failed! Cache file too large, reverting to previous browscap.ini."
1282
+ msgstr ""
1283
+
1284
+ #: wps-updates.php:285
1285
+ msgid "browscap database updated failed! New browscap.ini is mis-identifing user agents as crawlers, reverting to previous browscap.ini."
1286
+ msgstr ""
1287
+
1288
+ #: wps-updates.php:307
1289
+ msgid "browscap already at current version!"
1290
+ msgstr ""
1291
+
1292
+ #: wps-updates.php:320
1293
+ msgid "Browscap.ini update on"
1294
+ msgstr ""
1295
+
1296
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1297
+ #. Plugin URI of the plugin/theme
1298
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1299
+ #. Author URI of the plugin/theme
1300
+ msgid "http://wp-statistics.com/"
1301
+ msgstr ""
1302
+
1303
+ #. Author of the plugin/theme
1304
+ msgid "Mostafa Soufi & Greg Ross"
1305
+ msgstr ""
1306
+
1307
+ #: dashboard.php:55
1308
+ msgid "Quick Stats"
1309
+ msgstr ""
1310
+
1311
+ #: dashboard.php:56 includes/log/widgets/browsers.php:58
1312
+ msgid "Top 10 Browsers"
1313
+ msgstr ""
1314
+
1315
+ #: dashboard.php:57 includes/log/widgets/countries.php:11
1316
+ #: includes/settings/tabs/wps-overview-display.php:27
1317
+ msgid "Top 10 Countries"
1318
+ msgstr ""
1319
+
1320
+ #: dashboard.php:58
1321
+ msgid "Today's Visitor Map"
1322
+ msgstr ""
1323
+
1324
+ #: dashboard.php:59 editor.php:46 includes/log/hit-statistics.php:8
1325
+ #: includes/log/widgets/hits.php:10
1326
+ msgid "Hit Statistics"
1327
+ msgstr ""
1328
+
1329
+ #: dashboard.php:60 includes/log/widgets/pages.php:14
1330
+ msgid "Top 10 Pages"
1331
+ msgstr ""
1332
+
1333
+ #: dashboard.php:61 includes/log/last-visitor.php:36
1334
+ #: includes/log/widgets/recent.php:10
1335
+ #: includes/settings/tabs/wps-overview-display.php:39
1336
+ msgid "Recent Visitors"
1337
+ msgstr ""
1338
+
1339
+ #: dashboard.php:62 includes/log/top-referring.php:27
1340
+ #: includes/log/top-referring.php:42 includes/log/widgets/referring.php:16
1341
+ #: includes/settings/tabs/wps-overview-display.php:26
1342
+ msgid "Top Referring Sites"
1343
+ msgstr ""
1344
+
1345
+ #: dashboard.php:63 includes/log/widgets/search.php:10
1346
+ #: includes/log/widgets/summary.php:89
1347
+ msgid "Search Engine Referrals"
1348
+ msgstr ""
1349
+
1350
+ #: dashboard.php:64 includes/log/widgets/summary.php:8
1351
+ msgid "Summary"
1352
+ msgstr ""
1353
+
1354
+ #: dashboard.php:65 includes/log/last-search.php:31
1355
+ #: includes/log/widgets/words.php:11
1356
+ #: includes/settings/tabs/wps-overview-display.php:37
1357
+ msgid "Latest Search Words"
1358
+ msgstr ""
1359
+
1360
+ #: dashboard.php:66 includes/log/widgets/top.visitors.php:10
1361
+ #: includes/settings/tabs/wps-overview-display.php:35
1362
+ msgid "Top 10 Visitors Today"
1363
+ msgstr ""
1364
+
1365
+ #: dashboard.php:97
1366
+ msgid "Please reload the dashboard to display the content of this widget."
1367
+ msgstr ""
1368
+
1369
+ #: dashboard.php:138
1370
+ msgid "WP Statistics Overview"
1371
+ msgstr ""
1372
+
1373
+ #: editor.php:63
1374
+ msgid "This post is not yet published."
1375
+ msgstr ""
1376
+
1377
+ #: includes/functions/geoip-populate.php:24
1378
+ msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
1379
+ msgstr ""
1380
+
1381
+ #: includes/functions/geoip-populate.php:48
1382
+ msgid "Updated %s GeoIP records in the visitors database."
1383
+ msgstr ""
1384
+
1385
+ #: includes/functions/purge.php:21 includes/functions/purge.php:39
1386
+ #: includes/functions/purge.php:50 includes/functions/purge.php:83
1387
+ msgid "%s data older than %s days purged successfully."
1388
+ msgstr ""
1389
+
1390
+ #: includes/functions/purge.php:23 includes/functions/purge.php:41
1391
+ #: includes/functions/purge.php:52 includes/functions/purge.php:85
1392
+ msgid "No records found to purge from %s!"
1393
+ msgstr ""
1394
+
1395
+ #: includes/functions/purge-hits.php:45 includes/functions/purge.php:98
1396
+ msgid "Database pruned on"
1397
+ msgstr ""
1398
+
1399
+ #: includes/functions/purge.php:103
1400
+ msgid "Please select a value over 30 days."
1401
+ msgstr ""
1402
+
1403
+ #: includes/log/all-browsers.php:8
1404
+ msgid "Browser Statistics"
1405
+ msgstr ""
1406
+
1407
+ #: includes/log/all-browsers.php:14 includes/log/all-browsers.php:98
1408
+ #: includes/log/all-browsers.php:233 includes/log/exclusions.php:72
1409
+ #: includes/log/exclusions.php:190 includes/log/hit-statistics.php:26
1410
+ #: includes/log/hit-statistics.php:162 includes/log/last-search.php:64
1411
+ #: includes/log/last-visitor.php:67 includes/log/online.php:17
1412
+ #: includes/log/page-statistics.php:34 includes/log/search-statistics.php:27
1413
+ #: includes/log/top-pages.php:28 includes/log/top-pages.php:148
1414
+ #: includes/log/top-referring.php:38 includes/log/widgets/about.php:7
1415
+ #: includes/log/widgets/browsers.php:9 includes/log/widgets/countries.php:9
1416
+ #: includes/log/widgets/google.map.php:8 includes/log/widgets/hits.php:9
1417
+ #: includes/log/widgets/jqv.map.php:8 includes/log/widgets/pages.php:12
1418
+ #: includes/log/widgets/recent.php:8 includes/log/widgets/referring.php:14
1419
+ #: includes/log/widgets/search.php:9 includes/log/widgets/summary.php:7
1420
+ #: includes/log/widgets/top.visitors.php:9 includes/log/widgets/words.php:9
1421
+ msgid "Click to toggle"
1422
+ msgstr ""
1423
+
1424
+ #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1425
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
1426
+ #: wp-statistics.php:426
1427
+ msgid "Browsers"
1428
+ msgstr ""
1429
+
1430
+ #: includes/log/all-browsers.php:42
1431
+ msgid "Browsers by type"
1432
+ msgstr ""
1433
+
1434
+ #: includes/log/all-browsers.php:99 includes/log/widgets/top.visitors.php:37
1435
+ #: includes/optimization/tabs/wps-optimization-resources.php:302
1436
+ msgid "Platform"
1437
+ msgstr ""
1438
+
1439
+ #: includes/log/all-browsers.php:126
1440
+ msgid "Browsers by platform"
1441
+ msgstr ""
1442
+
1443
+ #: includes/log/all-browsers.php:234
1444
+ msgid "%s Version"
1445
+ msgstr ""
1446
+
1447
+ #: includes/log/exclusions.php:8
1448
+ msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
1449
+ msgstr ""
1450
+
1451
+ #: includes/log/exclusions.php:64
1452
+ msgid "Exclusions Statistics"
1453
+ msgstr ""
1454
+
1455
+ #: includes/functions/functions.php:931
1456
+ msgid "10 Days"
1457
+ msgstr ""
1458
+
1459
+ #: includes/functions/functions.php:931
1460
+ msgid "20 Days"
1461
+ msgstr ""
1462
+
1463
+ #: includes/functions/functions.php:931
1464
+ msgid "30 Days"
1465
+ msgstr ""
1466
+
1467
+ #: includes/functions/functions.php:931
1468
+ msgid "2 Months"
1469
+ msgstr ""
1470
+
1471
+ #: includes/functions/functions.php:931
1472
+ msgid "3 Months"
1473
+ msgstr ""
1474
+
1475
+ #: includes/functions/functions.php:931
1476
+ msgid "6 Months"
1477
+ msgstr ""
1478
+
1479
+ #: includes/functions/functions.php:931
1480
+ msgid "9 Months"
1481
+ msgstr ""
1482
+
1483
+ #: includes/functions/functions.php:931
1484
+ msgid "1 Year"
1485
+ msgstr ""
1486
+
1487
+ #: includes/log/exclusions.php:73
1488
+ msgid "Exclusions Statistical Chart"
1489
+ msgstr ""
1490
+
1491
+ #: includes/log/exclusions.php:95
1492
+ msgid "Excluded hits in the last"
1493
+ msgstr ""
1494
+
1495
+ #: includes/log/exclusions.php:95 includes/log/hit-statistics.php:65
1496
+ #: includes/log/search-statistics.php:69 includes/log/widgets/hits.php:61
1497
+ #: includes/log/widgets/search.php:59
1498
+ #: includes/optimization/tabs/wps-optimization-purging.php:207
1499
+ msgid "days"
1500
+ msgstr ""
1501
+
1502
+ #: includes/log/exclusions.php:116
1503
+ msgid "Number of excluded hits"
1504
+ msgstr ""
1505
+
1506
+ #: includes/log/hit-statistics.php:27
1507
+ msgid "Hits Statistics Chart"
1508
+ msgstr ""
1509
+
1510
+ #: includes/log/hit-statistics.php:65 includes/log/widgets/hits.php:61
1511
+ msgid "Hits in the last"
1512
+ msgstr ""
1513
+
1514
+ #: includes/log/hit-statistics.php:86 includes/log/widgets/hits.php:82
1515
+ msgid "Number of visits and visitors"
1516
+ msgstr ""
1517
+
1518
+ #: includes/log/hit-statistics.php:100 includes/log/hit-statistics.php:169
1519
+ #: includes/log/widgets/hits.php:96 includes/log/widgets/summary.php:38
1520
+ msgid "Visit"
1521
+ msgstr ""
1522
+
1523
+ #: includes/log/hit-statistics.php:100 includes/log/hit-statistics.php:170
1524
+ #: includes/log/widgets/hits.php:96 includes/log/widgets/summary.php:37
1525
+ msgid "Visitor"
1526
+ msgstr ""
1527
+
1528
+ #: includes/log/last-search.php:65
1529
+ msgid "Latest Search Word Statistics"
1530
+ msgstr ""
1531
+
1532
+ #: includes/log/last-search.php:110 includes/log/last-visitor.php:101
1533
+ #: includes/log/online.php:50 includes/log/widgets/google.map.php:84
1534
+ #: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
1535
+ #: includes/log/widgets/words.php:46
1536
+ msgid "#hash#"
1537
+ msgstr ""
1538
+
1539
+ #: includes/log/last-search.php:115 includes/log/last-visitor.php:106
1540
+ #: includes/log/online.php:55 includes/log/top-referring.php:71
1541
+ #: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
1542
+ #: includes/settings/tabs/wps-overview-display.php:33
1543
+ #: includes/settings/tabs/wps-overview-display.php:113
1544
+ msgid "Map"
1545
+ msgstr ""
1546
+
1547
+ #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1548
+ #: includes/log/online.php:109 includes/log/top-pages.php:198
1549
+ #: includes/log/top-referring.php:125
1550
+ msgid "Page"
1551
+ msgstr ""
1552
+
1553
+ #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1554
+ #: includes/log/online.php:109 includes/log/top-pages.php:198
1555
+ #: includes/log/top-referring.php:125
1556
+ msgid "From"
1557
+ msgstr ""
1558
+
1559
+ #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1560
+ #: includes/log/top-referring.php:29
1561
+ #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
1562
+ msgid "All"
1563
+ msgstr ""
1564
+
1565
+ #: includes/log/last-visitor.php:68
1566
+ msgid "Recent Visitor Statistics"
1567
+ msgstr ""
1568
+
1569
+ #: includes/log/online.php:11 includes/log/online.php:18
1570
+ msgid "Online Users"
1571
+ msgstr ""
1572
+
1573
+ #: includes/log/online.php:75
1574
+ msgid "Online for "
1575
+ msgstr ""
1576
+
1577
+ #: includes/log/page-statistics.php:26
1578
+ msgid "Page Trend for Post ID"
1579
+ msgstr ""
1580
+
1581
+ #: includes/log/page-statistics.php:35
1582
+ msgid "Page Trend"
1583
+ msgstr ""
1584
+
1585
+ #: includes/log/search-statistics.php:19 includes/log/search-statistics.php:28
1586
+ msgid "Search Engine Referral Statistics"
1587
+ msgstr ""
1588
+
1589
+ #: includes/log/search-statistics.php:69 includes/log/widgets/search.php:59
1590
+ msgid "Search engine referrals in the last"
1591
+ msgstr ""
1592
+
1593
+ #: includes/log/search-statistics.php:90 includes/log/widgets/search.php:80
1594
+ msgid "Number of referrals"
1595
+ msgstr ""
1596
+
1597
+ #: includes/log/exclusions.php:24 includes/log/search-statistics.php:104
1598
+ #: includes/log/widgets/search.php:94 includes/log/widgets/summary.php:72
1599
+ #: includes/log/widgets/summary.php:119
1600
+ msgid "Total"
1601
+ msgstr ""
1602
+
1603
+ #: includes/log/top-countries.php:18
1604
+ msgid "Top Countries"
1605
+ msgstr ""
1606
+
1607
+ #: includes/log/top-countries.php:30 includes/log/widgets/countries.php:30
1608
+ #: includes/log/widgets/top.visitors.php:30
1609
+ msgid "Rank"
1610
+ msgstr ""
1611
+
1612
+ #: includes/log/top-countries.php:31 includes/log/widgets/countries.php:31
1613
+ #: includes/log/widgets/top.visitors.php:32
1614
+ msgid "Flag"
1615
+ msgstr ""
1616
+
1617
+ #: includes/log/top-countries.php:32 includes/log/widgets/countries.php:32
1618
+ #: includes/log/widgets/top.visitors.php:33
1619
+ msgid "Country"
1620
+ msgstr ""
1621
+
1622
+ #: includes/log/top-countries.php:33 includes/log/widgets/countries.php:33
1623
+ msgid "Visitor Count"
1624
+ msgstr ""
1625
+
1626
+ #: includes/log/top-pages.php:19 includes/log/top-pages.php:149
1627
+ msgid "Top Pages"
1628
+ msgstr ""
1629
+
1630
+ #: includes/log/top-pages.php:29
1631
+ msgid "Top 5 Pages Trends"
1632
+ msgstr ""
1633
+
1634
+ #: includes/log/top-pages.php:60
1635
+ msgid "Top 5 Page Trending Stats"
1636
+ msgstr ""
1637
+
1638
+ #: includes/log/top-pages.php:81 includes/log/widgets/page.php:63
1639
+ msgid "Number of Hits"
1640
+ msgstr ""
1641
+
1642
+ #: includes/log/top-pages.php:177 includes/log/widgets/pages.php:35
1643
+ msgid "No page title found"
1644
+ msgstr ""
1645
+
1646
+ #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1647
+ #: includes/optimization/tabs/wps-optimization-historical.php:37
1648
+ #: includes/settings/tabs/wps-general.php:122
1649
+ #: includes/settings/tabs/wps-general.php:127 shortcode.php:132
1650
+ msgid "Visits"
1651
+ msgstr ""
1652
+
1653
+ #: includes/log/top-referring.php:4
1654
+ msgid "To be added soon"
1655
+ msgstr ""
1656
+
1657
+ #: includes/log/top-referring.php:40
1658
+ msgid "Referring sites from"
1659
+ msgstr ""
1660
+
1661
+ #: includes/log/top-referring.php:110 includes/log/widgets/referring.php:34
1662
+ msgid "References"
1663
+ msgstr ""
1664
+
1665
+ #: includes/log/top-visitors.php:12
1666
+ msgid "Top 100 Visitors Today"
1667
+ msgstr ""
1668
+
1669
+ #: includes/log/widgets/about.php:8
1670
+ msgid "About WP Statistics Version %s"
1671
+ msgstr ""
1672
+
1673
+ #: includes/log/widgets/about.php:25
1674
+ msgid "Website"
1675
+ msgstr ""
1676
+
1677
+ #: includes/log/widgets/about.php:26
1678
+ msgid "Rate and Review"
1679
+ msgstr ""
1680
+
1681
+ #: includes/log/widgets/about.php:30
1682
+ msgid "More Information"
1683
+ msgstr ""
1684
+
1685
+ #: includes/log/widgets/about.php:39 includes/settings/tabs/wps-about.php:12
1686
+ msgid "This product includes GeoLite2 data created by MaxMind, available from %s."
1687
+ msgstr ""
1688
+
1689
+ #: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
1690
+ #: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
1691
+ #: includes/log/widgets/recent.php:10 includes/log/widgets/referring.php:16
1692
+ #: includes/log/widgets/search.php:10 includes/log/widgets/top.visitors.php:10
1693
+ #: includes/log/widgets/words.php:11
1694
+ msgid "More"
1695
+ msgstr ""
1696
+
1697
+ #: includes/log/widgets/browsers.php:51
1698
+ msgid "Other"
1699
+ msgstr ""
1700
+
1701
+ #: includes/log/widgets/google.map.php:9 includes/log/widgets/jqv.map.php:9
1702
+ msgid "Today Visitors Map"
1703
+ msgstr ""
1704
+
1705
+ #: includes/log/widgets/referring.php:35
1706
+ msgid "Address"
1707
+ msgstr ""
1708
+
1709
+ #: includes/log/widgets/summary.php:26
1710
+ msgid "User(s) Online"
1711
+ msgstr ""
1712
+
1713
+ #: includes/log/widgets/summary.php:42 includes/log/widgets/summary.php:94
1714
+ msgid "Today"
1715
+ msgstr ""
1716
+
1717
+ #: includes/log/widgets/summary.php:48 includes/log/widgets/summary.php:95
1718
+ msgid "Yesterday"
1719
+ msgstr ""
1720
+
1721
+ #: includes/log/widgets/summary.php:113
1722
+ msgid "Daily Total"
1723
+ msgstr ""
1724
+
1725
+ #: includes/log/widgets/summary.php:132
1726
+ msgid "Current Time and Date"
1727
+ msgstr ""
1728
+
1729
+ #: includes/log/widgets/summary.php:132
1730
+ msgid "(Adjustment)"
1731
+ msgstr ""
1732
+
1733
+ #: includes/log/widgets/summary.php:136
1734
+ msgid "Date: %s"
1735
+ msgstr ""
1736
+
1737
+ #: includes/log/widgets/summary.php:140
1738
+ msgid "Time: %s"
1739
+ msgstr ""
1740
+
1741
+ #: includes/log/widgets/top.visitors.php:31
1742
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
1743
+ #: wp-statistics.php:353 wp-statistics.php:429
1744
+ msgid "Hits"
1745
+ msgstr ""
1746
+
1747
+ #: includes/log/widgets/top.visitors.php:34
1748
+ msgid "IP"
1749
+ msgstr ""
1750
+
1751
+ #: includes/log/widgets/top.visitors.php:36
1752
+ msgid "Agent"
1753
+ msgstr ""
1754
+
1755
+ #: includes/log/widgets/top.visitors.php:38
1756
+ #: includes/optimization/tabs/wps-optimization-resources.php:291
1757
+ msgid "Version"
1758
+ msgstr ""
1759
+
1760
+ #: ajax.php:41 ajax.php:71 ajax.php:125 ajax.php:150 ajax.php:180
1761
+ #: includes/optimization/wps-optimization.php:6
1762
+ msgid "Access denied!"
1763
+ msgstr ""
1764
+
1765
+ #: ajax.php:31
1766
+ msgid "%s agent data deleted successfully."
1767
+ msgstr ""
1768
+
1769
+ #: ajax.php:34
1770
+ msgid "No agent data found to remove!"
1771
+ msgstr ""
1772
+
1773
+ #: ajax.php:38 ajax.php:68 ajax.php:116 ajax.php:122
1774
+ msgid "Please select the desired items."
1775
+ msgstr ""
1776
+
1777
+ #: ajax.php:62
1778
+ msgid "%s platform data deleted successfully."
1779
+ msgstr ""
1780
+
1781
+ #: ajax.php:65
1782
+ msgid "No platform data found to remove!"
1783
+ msgstr ""
1784
+
1785
+ #: includes/functions/functions.php:1019
1786
+ msgid "%s table data deleted successfully."
1787
+ msgstr ""
1788
+
1789
+ #: includes/functions/functions.php:1023
1790
+ msgid "Error, %s not emptied!"
1791
+ msgstr ""
1792
+
1793
+ #: includes/optimization/tabs/wps-optimization-database.php:5
1794
+ msgid "Database Setup"
1795
+ msgstr ""
1796
+
1797
+ #: includes/optimization/tabs/wps-optimization-database.php:10
1798
+ msgid "Re-run Install"
1799
+ msgstr ""
1800
+
1801
+ #: includes/optimization/tabs/wps-optimization-database.php:14
1802
+ msgid "Install Now!"
1803
+ msgstr ""
1804
+
1805
+ #: includes/optimization/tabs/wps-optimization-database.php:15
1806
+ 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."
1807
+ msgstr ""
1808
+
1809
+ #: includes/optimization/tabs/wps-optimization-database.php:20
1810
+ msgid "Database Index"
1811
+ msgstr ""
1812
+
1813
+ #: includes/optimization/tabs/wps-optimization-database.php:25
1814
+ #: includes/optimization/tabs/wps-optimization-updates.php:21
1815
+ #: wp-statistics.php:351 wp-statistics.php:427
1816
+ msgid "Countries"
1817
+ msgstr ""
1818
+
1819
+ #: includes/optimization/tabs/wps-optimization-database.php:39
1820
+ #: includes/optimization/tabs/wps-optimization-database.php:69
1821
+ #: includes/optimization/tabs/wps-optimization-updates.php:25
1822
+ #: includes/optimization/tabs/wps-optimization-updates.php:40
1823
+ msgid "Update Now!"
1824
+ msgstr ""
1825
+
1826
+ #: includes/optimization/tabs/wps-optimization-database.php:40
1827
+ 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."
1828
+ msgstr ""
1829
+
1830
+ #: includes/optimization/tabs/wps-optimization-database.php:41
1831
+ #: includes/optimization/tabs/wps-optimization-database.php:102
1832
+ msgid "This operation could take a long time on installs with many rows in the visitors table."
1833
+ msgstr ""
1834
+
1835
+ #: includes/optimization/tabs/wps-optimization-database.php:46
1836
+ 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."
1837
+ msgstr ""
1838
+
1839
+ #: includes/optimization/tabs/wps-optimization-database.php:47
1840
+ #: includes/optimization/tabs/wps-optimization-database.php:77
1841
+ #: includes/optimization/tabs/wps-optimization-database.php:108
1842
+ msgid "Congratulations, your installation is already up to date, nothing to do."
1843
+ msgstr ""
1844
+
1845
+ #: includes/optimization/tabs/wps-optimization-export.php:8
1846
+ #: includes/optimization/wps-optimization.php:212
1847
+ msgid "Export"
1848
+ msgstr ""
1849
+
1850
+ #: includes/optimization/tabs/wps-optimization-export.php:13
1851
+ msgid "Export from"
1852
+ msgstr ""
1853
+
1854
+ #: includes/optimization/tabs/wps-optimization-export.php:18
1855
+ #: includes/optimization/tabs/wps-optimization-export.php:36
1856
+ #: includes/optimization/tabs/wps-optimization-purging.php:185
1857
+ #: includes/optimization/tabs/wps-optimization-purging.php:241
1858
+ #: includes/optimization/tabs/wps-optimization-purging.php:265
1859
+ #: includes/settings/tabs/wps-notifications.php:134
1860
+ #: includes/settings/tabs/wps-notifications.php:164
1861
+ msgid "Please select"
1862
+ msgstr ""
1863
+
1864
+ #: includes/optimization/tabs/wps-optimization-export.php:25
1865
+ msgid "Select the table for the output file."
1866
+ msgstr ""
1867
+
1868
+ #: includes/optimization/tabs/wps-optimization-export.php:31
1869
+ msgid "Export To"
1870
+ msgstr ""
1871
+
1872
+ #: includes/optimization/tabs/wps-optimization-export.php:42
1873
+ msgid "Select the output file type."
1874
+ msgstr ""
1875
+
1876
+ #: includes/optimization/tabs/wps-optimization-export.php:48
1877
+ msgid "Include Header Row"
1878
+ msgstr ""
1879
+
1880
+ #: includes/optimization/tabs/wps-optimization-export.php:53
1881
+ msgid "Include a header row as the first line of the exported file."
1882
+ msgstr ""
1883
+
1884
+ #: includes/optimization/tabs/wps-optimization-export.php:54
1885
+ msgid "Start Now!"
1886
+ msgstr ""
1887
+
1888
+ #: includes/optimization/tabs/wps-optimization-historical.php:15
1889
+ msgid "Historical Values"
1890
+ msgstr ""
1891
+
1892
+ #: includes/optimization/tabs/wps-optimization-historical.php:20
1893
+ msgid "Note: As you have just purged the database you must reload this page for these numbers to be correct."
1894
+ msgstr ""
1895
+
1896
+ #: includes/optimization/tabs/wps-optimization-historical.php:26
1897
+ #: includes/settings/tabs/wps-general.php:138
1898
+ #: includes/settings/tabs/wps-general.php:143 shortcode.php:133
1899
+ #: wp-statistics.php:360 wp-statistics.php:436
1900
+ msgid "Visitors"
1901
+ msgstr ""
1902
+
1903
+ #: includes/optimization/tabs/wps-optimization-historical.php:31
1904
+ msgid "Number of historical number of visitors to the site (current value is %s)."
1905
+ msgstr ""
1906
+
1907
+ #: includes/optimization/tabs/wps-optimization-historical.php:42
1908
+ msgid "Number of historical number of visits to the site (current value is %s)."
1909
+ msgstr ""
1910
+
1911
+ #: includes/optimization/tabs/wps-optimization-historical.php:48
1912
+ msgid "Update now!"
1913
+ msgstr ""
1914
+
1915
+ #: includes/optimization/tabs/wps-optimization-purging.php:10
1916
+ #: includes/optimization/tabs/wps-optimization-purging.php:43
1917
+ #: includes/optimization/tabs/wps-optimization-purging.php:75
1918
+ #: includes/optimization/tabs/wps-optimization-purging.php:107
1919
+ #: includes/optimization/tabs/wps-optimization-purging.php:141
1920
+ msgid "Are you sure?"
1921
+ msgstr ""
1922
+
1923
+ #: includes/optimization/tabs/wps-optimization-purging.php:175
1924
+ msgid "Data"
1925
+ msgstr ""
1926
+
1927
+ #: includes/optimization/tabs/wps-optimization-purging.php:180
1928
+ msgid "Empty Table"
1929
+ msgstr ""
1930
+
1931
+ #: includes/optimization/tabs/wps-optimization-purging.php:193
1932
+ msgid "All data table will be lost."
1933
+ msgstr ""
1934
+
1935
+ #: includes/optimization/tabs/wps-optimization-purging.php:194
1936
+ msgid "Clear now!"
1937
+ msgstr ""
1938
+
1939
+ #: includes/optimization/tabs/wps-optimization-purging.php:202
1940
+ msgid "Purge records older than"
1941
+ msgstr ""
1942
+
1943
+ #: includes/optimization/tabs/wps-optimization-purging.php:208
1944
+ msgid "Deleted user statistics data older than the selected number of days. Minimum value is 30 days."
1945
+ msgstr ""
1946
+
1947
+ #: includes/optimization/tabs/wps-optimization-purging.php:209
1948
+ #: includes/optimization/tabs/wps-optimization-purging.php:224
1949
+ msgid "Purge now!"
1950
+ msgstr ""
1951
+
1952
+ #: includes/optimization/tabs/wps-optimization-purging.php:231
1953
+ msgid "Delete User Agent Types"
1954
+ msgstr ""
1955
+
1956
+ #: includes/optimization/tabs/wps-optimization-purging.php:236
1957
+ msgid "Delete Agents"
1958
+ msgstr ""
1959
+
1960
+ #: includes/optimization/tabs/wps-optimization-purging.php:251
1961
+ msgid "All visitor data will be lost for this agent type."
1962
+ msgstr ""
1963
+
1964
+ #: includes/optimization/tabs/wps-optimization-purging.php:252
1965
+ #: includes/optimization/tabs/wps-optimization-purging.php:276
1966
+ msgid "Delete now!"
1967
+ msgstr ""
1968
+
1969
+ #: includes/optimization/tabs/wps-optimization-purging.php:260
1970
+ msgid "Delete Platforms"
1971
+ msgstr ""
1972
+
1973
+ #: includes/optimization/tabs/wps-optimization-purging.php:275
1974
+ msgid "All visitor data will be lost for this platform type."
1975
+ msgstr ""
1976
+
1977
+ #: includes/optimization/tabs/wps-optimization-resources.php:17
1978
+ msgid "Resources"
1979
+ msgstr ""
1980
+
1981
+ #: includes/optimization/tabs/wps-optimization-resources.php:22
1982
+ #: includes/optimization/tabs/wps-optimization-resources.php:27
1983
+ msgid "Memory usage in PHP"
1984
+ msgstr ""
1985
+
1986
+ #: includes/optimization/tabs/wps-optimization-resources.php:26
1987
+ #: includes/optimization/tabs/wps-optimization-resources.php:37
1988
+ msgid "Byte"
1989
+ msgstr ""
1990
+
1991
+ #: includes/optimization/tabs/wps-optimization-resources.php:33
1992
+ msgid "Last Overview page memory usage"
1993
+ msgstr ""
1994
+
1995
+ #: includes/optimization/tabs/wps-optimization-resources.php:38
1996
+ msgid "Memory usage in the overview page"
1997
+ msgstr ""
1998
+
1999
+ #: includes/optimization/tabs/wps-optimization-resources.php:44
2000
+ msgid "PHP Memory Limit"
2001
+ msgstr ""
2002
+
2003
+ #: includes/optimization/tabs/wps-optimization-resources.php:49
2004
+ msgid "The memory limit a script is allowed to consume, set in php.ini."
2005
+ msgstr ""
2006
+
2007
+ #: includes/optimization/tabs/wps-optimization-resources.php:55
2008
+ #: includes/optimization/tabs/wps-optimization-resources.php:66
2009
+ #: includes/optimization/tabs/wps-optimization-resources.php:77
2010
+ #: includes/optimization/tabs/wps-optimization-resources.php:88
2011
+ #: includes/optimization/tabs/wps-optimization-resources.php:99
2012
+ #: includes/optimization/tabs/wps-optimization-resources.php:110
2013
+ msgid "Number of rows in the %s table"
2014
+ msgstr ""
2015
+
2016
+ #: includes/optimization/tabs/wps-optimization-resources.php:59
2017
+ #: includes/optimization/tabs/wps-optimization-resources.php:70
2018
+ #: includes/optimization/tabs/wps-optimization-resources.php:81
2019
+ #: includes/optimization/tabs/wps-optimization-resources.php:92
2020
+ #: includes/optimization/tabs/wps-optimization-resources.php:103
2021
+ #: includes/optimization/tabs/wps-optimization-resources.php:114
2022
+ msgid "Row"
2023
+ msgstr ""
2024
+
2025
+ #: includes/optimization/tabs/wps-optimization-resources.php:60
2026
+ #: includes/optimization/tabs/wps-optimization-resources.php:71
2027
+ #: includes/optimization/tabs/wps-optimization-resources.php:82
2028
+ #: includes/optimization/tabs/wps-optimization-resources.php:93
2029
+ #: includes/optimization/tabs/wps-optimization-resources.php:104
2030
+ #: includes/optimization/tabs/wps-optimization-resources.php:115
2031
+ msgid "Number of rows"
2032
+ msgstr ""
2033
+
2034
+ #: includes/optimization/tabs/wps-optimization-resources.php:120
2035
+ msgid "Version Info"
2036
+ msgstr ""
2037
+
2038
+ #: includes/optimization/tabs/wps-optimization-resources.php:125
2039
+ msgid "WP Statistics Version"
2040
+ msgstr ""
2041
+
2042
+ #: includes/optimization/tabs/wps-optimization-resources.php:130
2043
+ msgid "The WP Statistics version you are running."
2044
+ msgstr ""
2045
+
2046
+ #: includes/optimization/tabs/wps-optimization-resources.php:136
2047
+ msgid "PHP Version"
2048
+ msgstr ""
2049
+
2050
+ #: includes/optimization/tabs/wps-optimization-resources.php:141
2051
+ msgid "The PHP version you are running."
2052
+ msgstr ""
2053
+
2054
+ #: includes/optimization/tabs/wps-optimization-resources.php:147
2055
+ msgid "PHP Safe Mode"
2056
+ msgstr ""
2057
+
2058
+ #: includes/optimization/tabs/wps-optimization-resources.php:152
2059
+ msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
2060
+ msgstr ""
2061
+
2062
+ #: includes/optimization/tabs/wps-optimization-resources.php:158
2063
+ msgid "jQuery Version"
2064
+ msgstr ""
2065
+
2066
+ #: includes/optimization/tabs/wps-optimization-resources.php:163
2067
+ msgid "The jQuery version you are running."
2068
+ msgstr ""
2069
+
2070
+ #: includes/optimization/tabs/wps-optimization-resources.php:169
2071
+ msgid "cURL Version"
2072
+ msgstr ""
2073
+
2074
+ #: includes/optimization/tabs/wps-optimization-resources.php:173
2075
+ msgid "cURL not installed"
2076
+ msgstr ""
2077
+
2078
+ #: includes/optimization/tabs/wps-optimization-resources.php:174
2079
+ 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."
2080
+ msgstr ""
2081
+
2082
+ #: includes/optimization/tabs/wps-optimization-resources.php:180
2083
+ msgid "BC Math"
2084
+ msgstr ""
2085
+
2086
+ #: includes/optimization/tabs/wps-optimization-resources.php:184
2087
+ msgid "Installed"
2088
+ msgstr ""
2089
+
2090
+ #: includes/optimization/tabs/wps-optimization-resources.php:184
2091
+ msgid "Not installed"
2092
+ msgstr ""
2093
+
2094
+ #: includes/optimization/tabs/wps-optimization-resources.php:185
2095
+ 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."
2096
+ msgstr ""
2097
+
2098
+ #: includes/optimization/tabs/wps-optimization-resources.php:190
2099
+ msgid "File Info"
2100
+ msgstr ""
2101
+
2102
+ #: includes/optimization/tabs/wps-optimization-resources.php:195
2103
+ msgid "GeoIP Database"
2104
+ msgstr ""
2105
+
2106
+ #: includes/optimization/tabs/wps-optimization-resources.php:204
2107
+ msgid "Database file does not exist."
2108
+ msgstr ""
2109
+
2110
+ #: includes/optimization/tabs/wps-optimization-resources.php:206
2111
+ #: includes/optimization/tabs/wps-optimization-resources.php:225
2112
+ #: includes/optimization/tabs/wps-optimization-resources.php:244
2113
+ msgid ", created on "
2114
+ msgstr ""
2115
+
2116
+ #: includes/optimization/tabs/wps-optimization-resources.php:208
2117
+ msgid "The file size and date of the GeoIP database."
2118
+ msgstr ""
2119
+
2120
+ #: includes/optimization/tabs/wps-optimization-resources.php:214
2121
+ msgid "browscap.ini File"
2122
+ msgstr ""
2123
+
2124
+ #: includes/optimization/tabs/wps-optimization-resources.php:223
2125
+ msgid "browscap.ini file does not exist."
2126
+ msgstr ""
2127
+
2128
+ #: includes/optimization/tabs/wps-optimization-resources.php:227
2129
+ msgid "The file size and date of the browscap.ini file."
2130
+ msgstr ""
2131
+
2132
+ #: includes/optimization/tabs/wps-optimization-resources.php:233
2133
+ msgid "browscap Cache File"
2134
+ msgstr ""
2135
+
2136
+ #: includes/optimization/tabs/wps-optimization-resources.php:242
2137
+ msgid "browscap cache file does not exist."
2138
+ msgstr ""
2139
+
2140
+ #: includes/optimization/tabs/wps-optimization-resources.php:246
2141
+ msgid "The file size and date of the browscap cache file."
2142
+ msgstr ""
2143
+
2144
+ #: includes/optimization/tabs/wps-optimization-resources.php:251
2145
+ msgid "Client Info"
2146
+ msgstr ""
2147
+
2148
+ #: includes/optimization/tabs/wps-optimization-resources.php:256
2149
+ msgid "Client IP"
2150
+ msgstr ""
2151
+
2152
+ #: includes/optimization/tabs/wps-optimization-resources.php:261
2153
+ msgid "The client IP address."
2154
+ msgstr ""
2155
+
2156
+ #: includes/optimization/tabs/wps-optimization-resources.php:267
2157
+ msgid "User Agent"
2158
+ msgstr ""
2159
+
2160
+ #: includes/optimization/tabs/wps-optimization-resources.php:272
2161
+ msgid "The client user agent string."
2162
+ msgstr ""
2163
+
2164
+ #: includes/optimization/tabs/wps-optimization-resources.php:278
2165
+ msgid "Browser"
2166
+ msgstr ""
2167
+
2168
+ #: includes/optimization/tabs/wps-optimization-resources.php:285
2169
+ msgid "The detected client browser."
2170
+ msgstr ""
2171
+
2172
+ #: includes/optimization/tabs/wps-optimization-resources.php:296
2173
+ msgid "The detected client browser version."
2174
+ msgstr ""
2175
+
2176
+ #: includes/optimization/tabs/wps-optimization-resources.php:307
2177
+ msgid "The detected client platform."
2178
+ msgstr ""
2179
+
2180
+ #: includes/optimization/tabs/wps-optimization-updates.php:4
2181
+ msgid "This will replace all IP addresses in the database with hash values and cannot be undo, are you sure?"
2182
+ msgstr ""
2183
+
2184
+ #: includes/optimization/tabs/wps-optimization-updates.php:16
2185
+ msgid "GeoIP Options"
2186
+ msgstr ""
2187
+
2188
+ #: includes/optimization/tabs/wps-optimization-updates.php:26
2189
+ msgid "Updates any unknown location data in the database, this may take a while"
2190
+ msgstr ""
2191
+
2192
+ #: includes/optimization/tabs/wps-optimization-updates.php:31
2193
+ #: includes/settings/tabs/wps-general.php:66
2194
+ msgid "IP Addresses"
2195
+ msgstr ""
2196
+
2197
+ #: includes/optimization/tabs/wps-optimization-updates.php:36
2198
+ #: includes/settings/tabs/wps-general.php:71
2199
+ msgid "Hash IP Addresses"
2200
+ msgstr ""
2201
+
2202
+ #: includes/optimization/tabs/wps-optimization-updates.php:41
2203
+ 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"
2204
+ msgstr ""
2205
+
2206
+ #: includes/optimization/wps-optimization.php:43
2207
+ msgid "IP Addresses replaced with hash values."
2208
+ msgstr ""
2209
+
2210
+ #: includes/optimization/wps-optimization.php:51
2211
+ msgid "Install routine complete."
2212
+ msgstr ""
2213
+
2214
+ #: includes/optimization/wps-optimization.php:211
2215
+ msgid "Resources/Information"
2216
+ msgstr ""
2217
+
2218
+ #: includes/optimization/wps-optimization.php:213
2219
+ msgid "Purging"
2220
+ msgstr ""
2221
+
2222
+ #: includes/optimization/wps-optimization.php:214
2223
+ msgid "Database"
2224
+ msgstr ""
2225
+
2226
+ #: includes/optimization/wps-optimization.php:215
2227
+ msgid "Updates"
2228
+ msgstr ""
2229
+
2230
+ #: includes/optimization/wps-optimization.php:216
2231
+ msgid "Historical"
2232
+ msgstr ""
2233
+
2234
+ #: includes/settings/tabs/wps-about.php:8
2235
+ msgid "WP Statistics V%s"
2236
+ msgstr ""
2237
+
2238
+ #: includes/settings/tabs/wps-about.php:28
2239
+ msgid "Visit Us Online"
2240
+ msgstr ""
2241
+
2242
+ #: includes/settings/tabs/wps-about.php:32
2243
+ msgid "Come visit our great new %s and keep up to date on the latest news about WP Statistics."
2244
+ msgstr ""
2245
+
2246
+ #: includes/settings/tabs/wps-about.php:32
2247
+ msgid "website"
2248
+ msgstr ""
2249
+
2250
+ #: includes/settings/tabs/wps-about.php:36
2251
+ msgid "Rate and Review at WordPress.org"
2252
+ msgstr ""
2253
+
2254
+ #: includes/settings/tabs/wps-about.php:40
2255
+ msgid "Thanks for installing WP Statistics, we encourage you to submit a "
2256
+ msgstr ""
2257
+
2258
+ #: includes/settings/tabs/wps-about.php:40
2259
+ msgid "rating and review"
2260
+ msgstr ""
2261
+
2262
+ #: includes/settings/tabs/wps-about.php:40
2263
+ msgid "over at WordPress.org. Your feedback is greatly appreciated!"
2264
+ msgstr ""
2265
+
2266
+ #: includes/settings/tabs/wps-about.php:44
2267
+ msgid "Translations"
2268
+ msgstr ""
2269
+
2270
+ #: includes/settings/tabs/wps-about.php:48
2271
+ 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."
2272
+ msgstr ""
2273
+
2274
+ #: includes/settings/tabs/wps-about.php:48
2275
+ msgid "translation collaboration site"
2276
+ msgstr ""
2277
+
2278
+ #: includes/settings/tabs/wps-about.php:48
2279
+ msgid "drop us a line"
2280
+ msgstr ""
2281
+
2282
+ #: includes/settings/tabs/wps-about.php:52
2283
+ msgid "Support"
2284
+ msgstr ""
2285
+
2286
+ #: includes/settings/tabs/wps-about.php:57
2287
+ 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:"
2288
+ msgstr ""
2289
+
2290
+ #: includes/settings/tabs/wps-about.php:60
2291
+ #: includes/settings/tabs/wps-about.php:61
2292
+ msgid "Have you read the %s?"
2293
+ msgstr ""
2294
+
2295
+ #: includes/settings/tabs/wps-about.php:60
2296
+ msgid "FAQs"
2297
+ msgstr ""
2298
+
2299
+ #: includes/settings/tabs/wps-about.php:61
2300
+ msgid "manual"
2301
+ msgstr ""
2302
+
2303
+ #: includes/settings/tabs/wps-about.php:62
2304
+ msgid "Have you search the %s for a similar issue?"
2305
+ msgstr ""
2306
+
2307
+ #: includes/settings/tabs/wps-about.php:62
2308
+ msgid "support forum"
2309
+ msgstr ""
2310
+
2311
+ #: includes/settings/tabs/wps-about.php:63
2312
+ msgid "Have you search the Internet for any error messages you are receiving?"
2313
+ msgstr ""
2314
+
2315
+ #: includes/settings/tabs/wps-about.php:64
2316
+ msgid "Make sure you have access to your PHP error logs."
2317
+ msgstr ""
2318
+
2319
+ #: includes/settings/tabs/wps-about.php:67
2320
+ msgid "And a few things to double-check:"
2321
+ msgstr ""
2322
+
2323
+ #: includes/settings/tabs/wps-about.php:70
2324
+ msgid "How's your memory_limit in php.ini?"
2325
+ msgstr ""
2326
+
2327
+ #: includes/settings/tabs/wps-about.php:71
2328
+ msgid "Have you tried disabling any other plugins you may have installed?"
2329
+ msgstr ""
2330
+
2331
+ #: includes/settings/tabs/wps-about.php:72
2332
+ msgid "Have you tried using the default WordPress theme?"
2333
+ msgstr ""
2334
+
2335
+ #: includes/settings/tabs/wps-about.php:73
2336
+ msgid "Have you double checked the plugin settings?"
2337
+ msgstr ""
2338
+
2339
+ #: includes/settings/tabs/wps-about.php:74
2340
+ msgid "Do you have all the required PHP extensions installed?"
2341
+ msgstr ""
2342
+
2343
+ #: includes/settings/tabs/wps-about.php:75
2344
+ 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?"
2345
+ msgstr ""
2346
+
2347
+ #: includes/settings/tabs/wps-about.php:76
2348
+ msgid "Have you checked your PHP and web server error logs?"
2349
+ msgstr ""
2350
+
2351
+ #: includes/settings/tabs/wps-about.php:79
2352
+ msgid "Still not having any luck?"
2353
+ msgstr ""
2354
+
2355
+ #: includes/settings/tabs/wps-about.php:79
2356
+ msgid "Then please open a new thread on the %s and we'll respond as soon as possible."
2357
+ msgstr ""
2358
+
2359
+ #: includes/settings/tabs/wps-about.php:79
2360
+ msgid "WordPress.org support forum"
2361
+ msgstr ""
2362
+
2363
+ #: includes/settings/tabs/wps-about.php:83
2364
+ msgid "Alternatively %s support is available as well."
2365
+ msgstr ""
2366
+
2367
+ #: includes/settings/tabs/wps-about.php:83
2368
+ msgid "Farsi"
2369
+ msgstr ""
2370
+
2371
+ #: includes/settings/tabs/wps-exclusions.php:21
2372
+ msgid "WP Statistics Honey Pot Page"
2373
+ msgstr ""
2374
+
2375
+ #: includes/settings/tabs/wps-exclusions.php:22
2376
+ msgid "This is the honey pot for WP Statistics to use, do not delete."
2377
+ msgstr ""
2378
+
2379
+ #: includes/settings/tabs/wps-access-level.php:23
2380
+ #: includes/settings/wps-settings.php:103
2381
+ msgid "Access Levels"
2382
+ msgstr ""
2383
+
2384
+ #: includes/settings/tabs/wps-access-level.php:52
2385
+ msgid "Required user level to view WP Statistics"
2386
+ msgstr ""
2387
+
2388
+ #: includes/settings/tabs/wps-access-level.php:67
2389
+ msgid "Required user level to manage WP Statistics"
2390
+ msgstr ""
2391
+
2392
+ #: includes/settings/tabs/wps-access-level.php:75
2393
+ msgid "See the %s for details on capability levels."
2394
+ msgstr ""
2395
+
2396
+ #: includes/settings/tabs/wps-access-level.php:75
2397
+ msgid "WordPress Roles and Capabilities page"
2398
+ msgstr ""
2399
+
2400
+ #: includes/settings/tabs/wps-access-level.php:76
2401
+ msgid "Hint: manage_network = Super Admin Network, manage_options = Administrator, edit_others_posts = Editor, publish_posts = Author, edit_posts = Contributor, read = Everyone."
2402
+ msgstr ""
2403
+
2404
+ #: includes/settings/tabs/wps-access-level.php:77
2405
+ 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."
2406
+ msgstr ""
2407
+
2408
+ #: includes/settings/tabs/wps-access-level.php:78
2409
+ msgid "If you need a more robust solution to delegate access you might want to look at %s in the WordPress plugin directory."
2410
+ msgstr ""
2411
+
2412
+ #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2413
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:352
2414
+ #: wp-statistics.php:428
2415
+ msgid "Exclusions"
2416
+ msgstr ""
2417
+
2418
+ #: includes/settings/tabs/wps-exclusions.php:50
2419
+ msgid "Record exclusions"
2420
+ msgstr ""
2421
+
2422
+ #: includes/settings/tabs/wps-exclusions.php:52
2423
+ #: includes/settings/tabs/wps-exclusions.php:106
2424
+ #: includes/settings/tabs/wps-exclusions.php:133
2425
+ #: includes/settings/tabs/wps-exclusions.php:150
2426
+ msgid "Enable"
2427
+ msgstr ""
2428
+
2429
+ #: includes/settings/tabs/wps-exclusions.php:53
2430
+ 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."
2431
+ msgstr ""
2432
+
2433
+ #: includes/settings/tabs/wps-exclusions.php:58
2434
+ msgid "Exclude User Roles"
2435
+ msgstr ""
2436
+
2437
+ #: includes/settings/tabs/wps-exclusions.php:74
2438
+ #: includes/settings/tabs/wps-exclusions.php:196
2439
+ #: includes/settings/tabs/wps-exclusions.php:203
2440
+ #: includes/settings/tabs/wps-exclusions.php:210
2441
+ #: includes/settings/tabs/wps-exclusions.php:217
2442
+ msgid "Exclude"
2443
+ msgstr ""
2444
+
2445
+ #: includes/settings/tabs/wps-exclusions.php:75
2446
+ msgid "Exclude %s role from data collection."
2447
+ msgstr ""
2448
+
2449
+ #: includes/settings/tabs/wps-exclusions.php:81
2450
+ msgid "IP/Robot Exclusions"
2451
+ msgstr ""
2452
+
2453
+ #: includes/settings/tabs/wps-exclusions.php:85
2454
+ msgid "Robot list"
2455
+ msgstr ""
2456
+
2457
+ #: includes/settings/tabs/wps-exclusions.php:98
2458
+ 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."
2459
+ msgstr ""
2460
+
2461
+ #: includes/settings/tabs/wps-exclusions.php:99
2462
+ msgid "Reset to Default"
2463
+ msgstr ""
2464
+
2465
+ #: includes/settings/tabs/wps-exclusions.php:104
2466
+ msgid "Force robot list update after upgrades"
2467
+ msgstr ""
2468
+
2469
+ #: includes/settings/tabs/wps-exclusions.php:107
2470
+ 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."
2471
+ msgstr ""
2472
+
2473
+ #: includes/settings/tabs/wps-exclusions.php:112
2474
+ msgid "Robot visit threshold"
2475
+ msgstr ""
2476
+
2477
+ #: includes/settings/tabs/wps-exclusions.php:115
2478
+ msgid "Treat visitors with more than this number of visits per day as robots. 0 = disabled."
2479
+ msgstr ""
2480
+
2481
+ #: includes/settings/tabs/wps-exclusions.php:120
2482
+ msgid "Excluded IP address list"
2483
+ msgstr ""
2484
+
2485
+ #: includes/settings/tabs/wps-exclusions.php:123
2486
+ 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."
2487
+ msgstr ""
2488
+
2489
+ #: includes/settings/tabs/wps-exclusions.php:124
2490
+ msgid "Add 10.0.0.0"
2491
+ msgstr ""
2492
+
2493
+ #: includes/settings/tabs/wps-exclusions.php:125
2494
+ msgid "Add 172.16.0.0"
2495
+ msgstr ""
2496
+
2497
+ #: includes/settings/tabs/wps-exclusions.php:126
2498
+ msgid "Add 192.168.0.0"
2499
+ msgstr ""
2500
+
2501
+ #: includes/settings/tabs/wps-exclusions.php:131
2502
+ msgid "Use honey pot"
2503
+ msgstr ""
2504
+
2505
+ #: includes/settings/tabs/wps-exclusions.php:134
2506
+ msgid "Use a honey pot page to identify robots."
2507
+ msgstr ""
2508
+
2509
+ #: includes/settings/tabs/wps-exclusions.php:139
2510
+ msgid "Honey pot post id"
2511
+ msgstr ""
2512
+
2513
+ #: includes/settings/tabs/wps-exclusions.php:142
2514
+ msgid "The post id to use for the honeypot page."
2515
+ msgstr ""
2516
+
2517
+ #: includes/settings/tabs/wps-exclusions.php:143
2518
+ msgid "Create a new honey pot page"
2519
+ msgstr ""
2520
+
2521
+ #: includes/settings/tabs/wps-exclusions.php:156
2522
+ msgid "GeoIP Exclusions"
2523
+ msgstr ""
2524
+
2525
+ #: includes/settings/tabs/wps-exclusions.php:160
2526
+ msgid "Excluded countries list"
2527
+ msgstr ""
2528
+
2529
+ #: includes/settings/tabs/wps-exclusions.php:163
2530
+ 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."
2531
+ msgstr ""
2532
+
2533
+ #: includes/settings/tabs/wps-exclusions.php:168
2534
+ msgid "Included countries list"
2535
+ msgstr ""
2536
+
2537
+ #: includes/settings/tabs/wps-exclusions.php:171
2538
+ 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."
2539
+ msgstr ""
2540
+
2541
+ #: includes/settings/tabs/wps-exclusions.php:176
2542
+ msgid "Host Exclusions"
2543
+ msgstr ""
2544
+
2545
+ #: includes/settings/tabs/wps-exclusions.php:180
2546
+ msgid "Excluded hosts list"
2547
+ msgstr ""
2548
+
2549
+ #: includes/settings/tabs/wps-exclusions.php:183
2550
+ msgid "A list of fully qualified host names (ie. server.example.com, one per line) to exclude from statistics collection."
2551
+ msgstr ""
2552
+
2553
+ #: includes/settings/tabs/wps-exclusions.php:185
2554
+ 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."
2555
+ msgstr ""
2556
+
2557
+ #: includes/settings/tabs/wps-exclusions.php:190
2558
+ msgid "Site URL Exclusions"
2559
+ msgstr ""
2560
+
2561
+ #: includes/settings/tabs/wps-exclusions.php:194
2562
+ msgid "Excluded login page"
2563
+ msgstr ""
2564
+
2565
+ #: includes/settings/tabs/wps-exclusions.php:197
2566
+ msgid "Exclude the login page for registering as a hit."
2567
+ msgstr ""
2568
+
2569
+ #: includes/settings/tabs/wps-exclusions.php:201
2570
+ msgid "Excluded admin pages"
2571
+ msgstr ""
2572
+
2573
+ #: includes/settings/tabs/wps-exclusions.php:204
2574
+ msgid "Exclude the admin pages for registering as a hit."
2575
+ msgstr ""
2576
+
2577
+ #: includes/settings/tabs/wps-exclusions.php:208
2578
+ msgid "Excluded RSS feeds"
2579
+ msgstr ""
2580
+
2581
+ #: includes/settings/tabs/wps-exclusions.php:211
2582
+ msgid "Exclude the RSS feeds for registering as a hit."
2583
+ msgstr ""
2584
+
2585
+ #: includes/settings/tabs/wps-externals.php:162
2586
+ msgid "browscap settings"
2587
+ msgstr ""
2588
+
2589
+ #: includes/settings/tabs/wps-externals.php:167
2590
+ msgid "browscap usage"
2591
+ msgstr ""
2592
+
2593
+ #: includes/settings/tabs/wps-externals.php:52
2594
+ #: includes/settings/tabs/wps-externals.php:76
2595
+ #: includes/settings/tabs/wps-externals.php:109
2596
+ #: includes/settings/tabs/wps-externals.php:172
2597
+ #: includes/settings/tabs/wps-externals.php:196
2598
+ #: includes/settings/tabs/wps-externals.php:235
2599
+ #: includes/settings/tabs/wps-externals.php:259
2600
+ #: includes/settings/tabs/wps-general.php:76
2601
+ #: includes/settings/tabs/wps-general.php:92
2602
+ #: includes/settings/tabs/wps-general.php:116
2603
+ #: includes/settings/tabs/wps-general.php:132
2604
+ #: includes/settings/tabs/wps-general.php:148
2605
+ #: includes/settings/tabs/wps-general.php:160
2606
+ #: includes/settings/tabs/wps-general.php:187
2607
+ #: includes/settings/tabs/wps-general.php:199
2608
+ #: includes/settings/tabs/wps-general.php:214
2609
+ #: includes/settings/tabs/wps-general.php:228
2610
+ #: includes/settings/tabs/wps-general.php:258
2611
+ #: includes/settings/tabs/wps-general.php:270
2612
+ #: includes/settings/tabs/wps-general.php:286
2613
+ #: includes/settings/tabs/wps-general.php:325
2614
+ #: includes/settings/tabs/wps-general.php:341
2615
+ #: includes/settings/tabs/wps-maintenance.php:40
2616
+ #: includes/settings/tabs/wps-maintenance.php:64
2617
+ #: includes/settings/tabs/wps-notifications.php:69
2618
+ #: includes/settings/tabs/wps-notifications.php:81
2619
+ #: includes/settings/tabs/wps-notifications.php:93
2620
+ #: includes/settings/tabs/wps-notifications.php:105
2621
+ #: includes/settings/tabs/wps-notifications.php:121
2622
+ #: includes/settings/tabs/wps-overview-display.php:87
2623
+ #: includes/settings/tabs/wps-overview-display.php:107
2624
+ #: includes/settings/tabs/wps-overview-display.php:147
2625
+ #: includes/settings/tabs/wps-overview-display.php:159
2626
+ msgid "Active"
2627
+ msgstr ""
2628
+
2629
+ #: includes/settings/tabs/wps-externals.php:173
2630
+ msgid "The browscap database will be downloaded and used to detect robots."
2631
+ msgstr ""
2632
+
2633
+ #: includes/settings/tabs/wps-externals.php:179
2634
+ msgid "Update browscap Info"
2635
+ msgstr ""
2636
+
2637
+ #: includes/settings/tabs/wps-externals.php:184
2638
+ msgid "Download browscap Database"
2639
+ msgstr ""
2640
+
2641
+ #: includes/settings/tabs/wps-externals.php:65
2642
+ #: includes/settings/tabs/wps-externals.php:185
2643
+ #: includes/settings/tabs/wps-externals.php:248
2644
+ msgid "Save changes on this page to download the update."
2645
+ msgstr ""
2646
+
2647
+ #: includes/settings/tabs/wps-externals.php:191
2648
+ msgid "Schedule weekly update of browscap DB"
2649
+ msgstr ""
2650
+
2651
+ #: includes/settings/tabs/wps-externals.php:79
2652
+ #: includes/settings/tabs/wps-externals.php:199
2653
+ #: includes/settings/tabs/wps-externals.php:262
2654
+ msgid "Next update will be"
2655
+ msgstr ""
2656
+
2657
+ #: includes/settings/tabs/wps-externals.php:214
2658
+ msgid "Download of the browscap database will be scheduled for once a week."
2659
+ msgstr ""
2660
+
2661
+ #: includes/settings/tabs/wps-general.php:50
2662
+ msgid "This will delete the manual when you save the settings, are you sure?"
2663
+ msgstr ""
2664
+
2665
+ #: includes/settings/tabs/wps-general.php:77
2666
+ 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."
2667
+ msgstr ""
2668
+
2669
+ #: includes/settings/tabs/wps-general.php:82 shortcode.php:131
2670
+ msgid "Users Online"
2671
+ msgstr ""
2672
+
2673
+ #: includes/settings/tabs/wps-general.php:87
2674
+ msgid "User online"
2675
+ msgstr ""
languages/wp_statistics-es_ES.mo CHANGED
Binary file
languages/wp_statistics-es_ES.po CHANGED
@@ -10,6 +10,70 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  #: includes/settings/tabs/wps-exclusions.php:148
14
  msgid "Treat corrupt browser info as a bot"
15
  msgstr ""
@@ -158,7 +222,7 @@ msgstr ""
158
  msgid "Have you thought about donating to WP Statistics?"
159
  msgstr ""
160
 
161
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:362
162
  msgid "Donate"
163
  msgstr ""
164
 
@@ -194,11 +258,11 @@ msgstr ""
194
  msgid "Time Frame"
195
  msgstr ""
196
 
197
- #: includes/functions/functions.php:929
198
  msgid "to"
199
  msgstr ""
200
 
201
- #: includes/functions/functions.php:929 includes/log/top-visitors.php:29
202
  msgid "Go"
203
  msgstr ""
204
 
@@ -242,11 +306,11 @@ msgstr ""
242
  msgid "Filtered by"
243
  msgstr ""
244
 
245
- #: includes/functions/functions.php:922 includes/functions/functions.php:925
246
  msgid "Range"
247
  msgstr ""
248
 
249
- #: includes/functions/functions.php:929 includes/log/top-visitors.php:29
250
  msgid "MM/DD/YYYY"
251
  msgstr "MM/DD/YYYY"
252
 
@@ -290,27 +354,27 @@ msgstr ""
290
  msgid "Last 7 Days (Week)"
291
  msgstr ""
292
 
293
- #: includes/functions/functions.php:403
294
  msgid "Yahoo!"
295
  msgstr ""
296
 
297
- #: includes/functions/functions.php:404
298
  msgid "Yandex"
299
  msgstr ""
300
 
301
- #: includes/functions/functions.php:400
302
  msgid "clearch.org"
303
  msgstr ""
304
 
305
- #: includes/functions/functions.php:401
306
  msgid "DuckDuckGo"
307
  msgstr ""
308
 
309
- #: includes/functions/functions.php:399
310
  msgid "Bing"
311
  msgstr ""
312
 
313
- #: includes/functions/functions.php:398
314
  msgid "Baidu"
315
  msgstr ""
316
 
@@ -413,8 +477,8 @@ msgid "For each visit to account for several hits. Currently %s."
413
  msgstr "Por cada visita para tener en cuenta varios golpes. Actualmente %s."
414
 
415
  #: includes/settings/tabs/wps-general.php:177
416
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:351
417
- #: wp-statistics.php:427
418
  msgid "Pages"
419
  msgstr "Páginas"
420
 
@@ -498,75 +562,75 @@ msgstr "Incluir totales"
498
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
499
  msgstr "Añada una línea total a listas con varios valores, como las referencias del motor de búsqueda"
500
 
501
- #: includes/settings/tabs/wps-geoip.php:27
502
  msgid "GeoIP settings"
503
  msgstr "Configuración de GeoIP"
504
 
505
- #: includes/settings/tabs/wps-geoip.php:32
506
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
507
  msgstr "Servicios de localización de IP proporcionados por GeoLite2 datos creados por MaxMind, disponible desde %s."
508
 
509
- #: includes/settings/tabs/wps-geoip.php:42
510
  msgid "GeoIP collection"
511
  msgstr "Colección GeoIP"
512
 
513
- #: includes/settings/tabs/wps-geoip.php:48
514
  msgid "For get more information and location (country) from visitor, enable this feature."
515
  msgstr "Para obtener más información y ubicación (país) de visitante, activar esta función."
516
 
517
- #: includes/settings/tabs/wps-geoip.php:54
518
  msgid "Update GeoIP Info"
519
  msgstr "Actualizar su información GeoIP"
520
 
521
- #: includes/settings/tabs/wps-geoip.php:59
522
  msgid "Download GeoIP Database"
523
  msgstr "Descargar GeoIP Database"
524
 
525
- #: includes/settings/tabs/wps-geoip.php:66
526
  msgid "Schedule monthly update of GeoIP DB"
527
  msgstr "Actualización mensual de GeoIP DB de la programación"
528
 
529
- #: includes/settings/tabs/wps-geoip.php:92
530
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
531
  msgstr "La descarga de la base de datos GeoIP programará durante 2 días después del primer martes del mes."
532
 
533
- #: includes/settings/tabs/wps-geoip.php:93
534
  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)."
535
  msgstr "Esta opción también descargará la base de datos si el tamaño del archivo local es menos de 1k (lo que generalmente significa el talón que viene con el plugin está todavía en su lugar)."
536
 
537
- #: includes/settings/tabs/wps-geoip.php:99
538
  msgid "Populate missing GeoIP after update of GeoIP DB"
539
  msgstr "Poblar GeoIP desaparecido después de la actualización de GeoIP DB"
540
 
541
- #: includes/settings/tabs/wps-geoip.php:105
542
  msgid "Update any missing GeoIP data after downloading a new database."
543
  msgstr "Actualizar cualquier dato GeoIP desaparecido después de descargar una nueva base de datos."
544
 
545
- #: includes/settings/tabs/wps-geoip.php:111
546
  msgid "Country code for private IP addresses"
547
  msgstr ""
548
 
549
- #: includes/settings/tabs/wps-geoip.php:116
550
  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."
551
  msgstr ""
552
 
553
- #: includes/settings/tabs/wps-geoip.php:127
554
  msgid "GeoIP collection is disabled due to the following reasons:"
555
  msgstr "Colección GeoIP está deshabilitado debido a las razones siguientes:"
556
 
557
- #: includes/settings/tabs/wps-geoip.php:130
558
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
559
  msgstr "Colección GeoIP requiere PHP %s o por encima, está actualmente deshabilitado debido a la versión instalada PHP es "
560
 
561
- #: includes/settings/tabs/wps-geoip.php:135
562
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
563
  msgstr "Colección GeoIP requiere la extensión PHP cURL y no está cargada en su versión de PHP."
564
 
565
- #: includes/settings/tabs/wps-geoip.php:141
566
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
567
  msgstr "Colección GeoIP requiere la extensión PHP matemáticas BC y no está cargada en su versión de PHP!"
568
 
569
- #: includes/settings/tabs/wps-geoip.php:147
570
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
571
  msgstr "Modo seguro de PHP detectado! GeoIP colección no es compatible con el modo seguro de PHP está activado!"
572
 
@@ -626,7 +690,6 @@ msgstr ""
626
 
627
  #: includes/log/exclusions.php:24
628
  #: includes/settings/tabs/wps-notifications.php:76
629
- #: includes/settings/wps-settings.php:111
630
  msgid "GeoIP"
631
  msgstr "GeoIP"
632
 
@@ -651,7 +714,7 @@ msgid "Send a report whenever the plugin is upgraded."
651
  msgstr ""
652
 
653
  #: includes/settings/tabs/wps-notifications.php:111
654
- #: includes/settings/tabs/wps-notifications.php:116 schedule.php:199
655
  msgid "Statistical reporting"
656
  msgstr "Informes estadísticos"
657
 
@@ -700,7 +763,7 @@ msgid "Any shortcode supported by your installation of WordPress, include all sh
700
  msgstr ""
701
 
702
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
703
- #: widget.php:245 wp-statistics.php:532
704
  msgid "User Online"
705
  msgstr "Usuarios conectados"
706
 
@@ -743,7 +806,7 @@ msgid "Summary Statistics"
743
  msgstr "Estadísticas de Resumen"
744
 
745
  #: includes/settings/tabs/wps-overview-display.php:28
746
- #: includes/settings/wps-settings.php:115
747
  msgid "About"
748
  msgstr "Acerca de"
749
 
@@ -793,7 +856,7 @@ msgstr ""
793
  msgid "Map type"
794
  msgstr "Tipo de mapa"
795
 
796
- #: includes/functions/functions.php:402
797
  #: includes/settings/tabs/wps-overview-display.php:128
798
  msgid "Google"
799
  msgstr "Google"
@@ -903,35 +966,30 @@ msgstr ""
903
  msgid "Remove data and settings, this action cannot be undone."
904
  msgstr ""
905
 
906
- #: includes/settings/wps-settings.php:106
907
  msgid "General"
908
  msgstr "General"
909
 
910
- #: includes/settings/wps-settings.php:107
911
  msgid "Notifications"
912
  msgstr ""
913
 
914
- #: includes/settings/wps-settings.php:108
915
  msgid "Dashboard/Overview"
916
  msgstr ""
917
 
918
- #: includes/settings/wps-settings.php:112
919
- msgid "browscap"
920
- msgstr "browscap"
921
-
922
- #: includes/settings/wps-settings.php:113
923
  msgid "Maintenance"
924
  msgstr "Mantenimiento"
925
 
926
- #: includes/settings/wps-settings.php:114
927
  msgid "Removal"
928
  msgstr ""
929
 
930
  #: includes/settings/tabs/wps-access-level.php:85
931
- #: includes/settings/tabs/wps-browscap.php:81
932
  #: includes/settings/tabs/wps-exclusions.php:234
 
933
  #: includes/settings/tabs/wps-general.php:349
934
- #: includes/settings/tabs/wps-geoip.php:158
935
  #: includes/settings/tabs/wps-maintenance.php:84
936
  #: includes/settings/tabs/wps-notifications.php:201
937
  #: includes/settings/tabs/wps-overview-display.php:388
@@ -951,7 +1009,7 @@ msgstr "Una vez cada 2 semanas"
951
  msgid "Once Every 4 Weeks"
952
  msgstr "Una vez cada 4 semanas"
953
 
954
- #: widget.php:14 wp-statistics.php:342 wp-statistics.php:380
955
  msgid "Statistics"
956
  msgstr "Estadísticas"
957
 
@@ -1023,7 +1081,7 @@ msgstr "Nombre"
1023
  msgid "Items"
1024
  msgstr "Elementos"
1025
 
1026
- #: widget.php:254 wp-statistics.php:557
1027
  msgid "Yesterday visit"
1028
  msgstr "Visitas ayer"
1029
 
@@ -1051,13 +1109,13 @@ msgstr ""
1051
  msgid "WP Statistics has been removed, please disable and delete it."
1052
  msgstr ""
1053
 
1054
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1055
  #. Plugin Name of the plugin/theme
1056
  #: wp-statistics.php:37
1057
  msgid "WP Statistics"
1058
  msgstr "Estadísticas de WP"
1059
 
1060
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1061
  #. Description of the plugin/theme
1062
  #: wp-statistics.php:38
1063
  msgid "Complete statistics for your WordPress site."
@@ -1087,99 +1145,99 @@ msgstr "GeoIP colección no está activo, por favor vaya a %s y activar esta fun
1087
  msgid "Setting page > GeoIP"
1088
  msgstr "Página Configuración > GeoIP"
1089
 
1090
- #: wp-statistics.php:249 wp-statistics.php:361 wp-statistics.php:434
1091
  msgid "Settings"
1092
  msgstr "Configuración"
1093
 
1094
- #: wp-statistics.php:261
1095
  msgid "Click here to visit the plugin on WordPress.org"
1096
  msgstr "Haga clic aquí para visitar el plugin en WordPress.org"
1097
 
1098
- #: wp-statistics.php:261
1099
  msgid "Visit WordPress.org page"
1100
  msgstr "Visita la página de WordPress.org"
1101
 
1102
- #: wp-statistics.php:264
1103
  msgid "Click here to rate and review this plugin on WordPress.org"
1104
  msgstr "Haga clic aquí para calificar y revisar este plugin en WordPress.org"
1105
 
1106
- #: wp-statistics.php:264
1107
  msgid "Rate this plugin"
1108
  msgstr "Tasa de este plugin"
1109
 
1110
- #: wp-statistics.php:308
1111
  msgid "WP Statistics - Hits"
1112
  msgstr "Estadísticas de WP - Hits"
1113
 
1114
- #: wp-statistics.php:345 wp-statistics.php:383 wp-statistics.php:421
1115
  msgid "Overview"
1116
  msgstr "Resumen"
1117
 
1118
- #: wp-statistics.php:350 wp-statistics.php:426
1119
  msgid "Online"
1120
  msgstr ""
1121
 
1122
- #: wp-statistics.php:352 wp-statistics.php:428
1123
  msgid "Referrers"
1124
  msgstr ""
1125
 
1126
- #: shortcode.php:135 wp-statistics.php:353 wp-statistics.php:429
1127
  msgid "Searches"
1128
  msgstr "Búsquedas"
1129
 
1130
- #: wp-statistics.php:354 wp-statistics.php:430
1131
  msgid "Search Words"
1132
  msgstr "Palabras de búsqueda"
1133
 
1134
- #: wp-statistics.php:355 wp-statistics.php:431
1135
  msgid "Top Visitors Today"
1136
  msgstr ""
1137
 
1138
- #: wp-statistics.php:360 wp-statistics.php:433
1139
  msgid "Optimization"
1140
  msgstr "Optimización"
1141
 
1142
- #: wp-statistics.php:366 wp-statistics.php:397
1143
  msgid "Manual"
1144
  msgstr "Manual"
1145
 
1146
- #: wp-statistics.php:412
1147
  msgid "Site"
1148
  msgstr ""
1149
 
1150
- #: wp-statistics.php:413
1151
  msgid "Options"
1152
  msgstr ""
1153
 
1154
- #: wp-statistics.php:539
1155
  msgid "Today visitor"
1156
  msgstr "Visitante de hoy"
1157
 
1158
- #: wp-statistics.php:545
1159
  msgid "Today visit"
1160
  msgstr "Visite hoy"
1161
 
1162
- #: wp-statistics.php:551
1163
  msgid "Yesterday visitor"
1164
  msgstr "Ayer visitante"
1165
 
1166
- #: wp-statistics.php:563
1167
  msgid "View Stats"
1168
  msgstr "Ver estadísticas"
1169
 
1170
- #: wp-statistics.php:587
1171
  msgid "Download ODF file"
1172
  msgstr "Descargar archivo ODF"
1173
 
1174
- #: wp-statistics.php:588
1175
  msgid "Download HTML file"
1176
  msgstr "Descargar archivo HTML"
1177
 
1178
- #: wp-statistics.php:592
1179
  msgid "Manual file not found."
1180
  msgstr "Manual archivo no encontrado."
1181
 
1182
- #: wp-statistics.php:659 wp-statistics.php:770 wp-statistics.php:804
1183
  msgid "You do not have sufficient permissions to access this page."
1184
  msgstr "No tienes permisos suficientes para acceder a esta página."
1185
 
@@ -1187,7 +1245,7 @@ msgstr "No tienes permisos suficientes para acceder a esta página."
1187
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
1188
  msgstr ""
1189
 
1190
- #: wp-statistics.php:237
1191
  msgid "WP Statistics %s installed on"
1192
  msgstr ""
1193
 
@@ -1235,9 +1293,9 @@ msgstr "browscap ya en la versión actual."
1235
  msgid "Browscap.ini update on"
1236
  msgstr ""
1237
 
1238
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1239
  #. Plugin URI of the plugin/theme
1240
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1241
  #. Author URI of the plugin/theme
1242
  msgid "http://wp-statistics.com/"
1243
  msgstr "http://WP-Statistics.com/"
@@ -1364,8 +1422,8 @@ msgid "Click to toggle"
1364
  msgstr "Haga clic para alternar"
1365
 
1366
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1367
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:346
1368
- #: wp-statistics.php:422
1369
  msgid "Browsers"
1370
  msgstr "Navegadores"
1371
 
@@ -1394,35 +1452,35 @@ msgstr "Atención: La exclusión no son actualmente establecido en grabarse, aba
1394
  msgid "Exclusions Statistics"
1395
  msgstr "Estadísticas de exclusiones"
1396
 
1397
- #: includes/functions/functions.php:879
1398
  msgid "10 Days"
1399
  msgstr "10 días"
1400
 
1401
- #: includes/functions/functions.php:879
1402
  msgid "20 Days"
1403
  msgstr "20 días"
1404
 
1405
- #: includes/functions/functions.php:879
1406
  msgid "30 Days"
1407
  msgstr "30 días"
1408
 
1409
- #: includes/functions/functions.php:879
1410
  msgid "2 Months"
1411
  msgstr "2 meses"
1412
 
1413
- #: includes/functions/functions.php:879
1414
  msgid "3 Months"
1415
  msgstr "3 meses"
1416
 
1417
- #: includes/functions/functions.php:879
1418
  msgid "6 Months"
1419
  msgstr "6 meses"
1420
 
1421
- #: includes/functions/functions.php:879
1422
  msgid "9 Months"
1423
  msgstr "9 meses"
1424
 
1425
- #: includes/functions/functions.php:879
1426
  msgid "1 Year"
1427
  msgstr "1 año"
1428
 
@@ -1471,28 +1529,28 @@ msgstr "Visitante"
1471
  msgid "Latest Search Word Statistics"
1472
  msgstr "Últimas estadísticas de la palabra de búsqueda"
1473
 
1474
- #: includes/log/last-search.php:100 includes/log/last-visitor.php:101
1475
  #: includes/log/online.php:50 includes/log/widgets/google.map.php:84
1476
  #: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
1477
- #: includes/log/widgets/words.php:36
1478
  msgid "#hash#"
1479
  msgstr "#hash #"
1480
 
1481
- #: includes/log/last-search.php:105 includes/log/last-visitor.php:106
1482
  #: includes/log/online.php:55 includes/log/top-referring.php:71
1483
- #: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:43
1484
  #: includes/settings/tabs/wps-overview-display.php:33
1485
  #: includes/settings/tabs/wps-overview-display.php:113
1486
  msgid "Map"
1487
  msgstr "Mapa"
1488
 
1489
- #: includes/log/last-search.php:142 includes/log/last-visitor.php:139
1490
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1491
  #: includes/log/top-referring.php:125
1492
  msgid "Page"
1493
  msgstr "Página"
1494
 
1495
- #: includes/log/last-search.php:142 includes/log/last-visitor.php:139
1496
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1497
  #: includes/log/top-referring.php:125
1498
  msgid "From"
@@ -1681,8 +1739,8 @@ msgid "Time: %s"
1681
  msgstr "Tiempo: %s"
1682
 
1683
  #: includes/log/widgets/top.visitors.php:31
1684
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:273
1685
- #: wp-statistics.php:349 wp-statistics.php:425
1686
  msgid "Hits"
1687
  msgstr "Hits"
1688
 
@@ -1724,11 +1782,11 @@ msgstr "datos de %s plataforma eliminados satisfactoriamente."
1724
  msgid "No platform data found to remove!"
1725
  msgstr ""
1726
 
1727
- #: includes/functions/functions.php:967
1728
  msgid "%s table data deleted successfully."
1729
  msgstr "datos de la tabla de %s eliminados satisfactoriamente."
1730
 
1731
- #: includes/functions/functions.php:971
1732
  msgid "Error, %s not emptied!"
1733
  msgstr "Error, %s no vaciado."
1734
 
@@ -1754,7 +1812,7 @@ msgstr "Índice de base de datos"
1754
 
1755
  #: includes/optimization/tabs/wps-optimization-database.php:25
1756
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1757
- #: wp-statistics.php:347 wp-statistics.php:423
1758
  msgid "Countries"
1759
  msgstr "Países"
1760
 
@@ -1770,6 +1828,7 @@ msgid "Older installs of WP Statistics allow for duplicate entries in the visito
1770
  msgstr "Mayores instalaciones de WP Statistics permiten entradas duplicadas en la tabla de visitantes en un caso de esquina. Instala nuevo protegerse de esto con un índice único sobre la mesa. Para crear el índice en el instala mayor entradas duplicadas debe ser suprimido primero. Haga clic en \"Update Now\" explorará la mesa de los visitantes, eliminar entradas duplicadas y añadir el índice."
1771
 
1772
  #: includes/optimization/tabs/wps-optimization-database.php:41
 
1773
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1774
  msgstr "Esta operación podría tomar mucho tiempo en instalaciones con muchas filas en la tabla de visitantes."
1775
 
@@ -1779,11 +1838,12 @@ msgstr "Mayores instalaciones de WP Statistics permiten entradas duplicadas en l
1779
 
1780
  #: includes/optimization/tabs/wps-optimization-database.php:47
1781
  #: includes/optimization/tabs/wps-optimization-database.php:77
 
1782
  msgid "Congratulations, your installation is already up to date, nothing to do."
1783
  msgstr "Felicitaciones, su instalación es ya hasta la fecha, nada que ver."
1784
 
1785
  #: includes/optimization/tabs/wps-optimization-export.php:8
1786
- #: includes/optimization/wps-optimization.php:183
1787
  msgid "Export"
1788
  msgstr "Exportación"
1789
 
@@ -1836,7 +1896,7 @@ msgstr ""
1836
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1837
  #: includes/settings/tabs/wps-general.php:138
1838
  #: includes/settings/tabs/wps-general.php:143 shortcode.php:133
1839
- #: wp-statistics.php:356 wp-statistics.php:432
1840
  msgid "Visitors"
1841
  msgstr "Visitantes"
1842
 
@@ -2151,23 +2211,23 @@ msgstr "Direcciones IP reemplazado con valores hash."
2151
  msgid "Install routine complete."
2152
  msgstr "Instale la rutina completa."
2153
 
2154
- #: includes/optimization/wps-optimization.php:182
2155
  msgid "Resources/Information"
2156
  msgstr "Recursos e información"
2157
 
2158
- #: includes/optimization/wps-optimization.php:184
2159
  msgid "Purging"
2160
  msgstr "Purga"
2161
 
2162
- #: includes/optimization/wps-optimization.php:185
2163
  msgid "Database"
2164
  msgstr "Base de datos"
2165
 
2166
- #: includes/optimization/wps-optimization.php:186
2167
  msgid "Updates"
2168
  msgstr "Actualizaciones"
2169
 
2170
- #: includes/optimization/wps-optimization.php:187
2171
  msgid "Historical"
2172
  msgstr ""
2173
 
@@ -2317,7 +2377,7 @@ msgid "This is the honey pot for WP Statistics to use, do not delete."
2317
  msgstr ""
2318
 
2319
  #: includes/settings/tabs/wps-access-level.php:23
2320
- #: includes/settings/wps-settings.php:109
2321
  msgid "Access Levels"
2322
  msgstr "Niveles de acceso"
2323
 
@@ -2350,8 +2410,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2350
  msgstr "Si usted necesita una solución más robusta para delegar el acceso que tal vez quieras ver %s en el directorio del plugin de WordPress."
2351
 
2352
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2353
- #: includes/settings/wps-settings.php:110 wp-statistics.php:348
2354
- #: wp-statistics.php:424
2355
  msgid "Exclusions"
2356
  msgstr "Exclusiones"
2357
 
@@ -2522,16 +2582,21 @@ msgstr ""
2522
  msgid "Exclude the RSS feeds for registering as a hit."
2523
  msgstr ""
2524
 
2525
- #: includes/settings/tabs/wps-browscap.php:22
2526
  msgid "browscap settings"
2527
  msgstr "configuración de Browscap"
2528
 
2529
- #: includes/settings/tabs/wps-browscap.php:27
2530
  msgid "browscap usage"
2531
  msgstr "uso Browscap"
2532
 
2533
- #: includes/settings/tabs/wps-browscap.php:32
2534
- #: includes/settings/tabs/wps-browscap.php:56
 
 
 
 
 
2535
  #: includes/settings/tabs/wps-general.php:76
2536
  #: includes/settings/tabs/wps-general.php:92
2537
  #: includes/settings/tabs/wps-general.php:116
@@ -2547,9 +2612,6 @@ msgstr "uso Browscap"
2547
  #: includes/settings/tabs/wps-general.php:286
2548
  #: includes/settings/tabs/wps-general.php:325
2549
  #: includes/settings/tabs/wps-general.php:341
2550
- #: includes/settings/tabs/wps-geoip.php:47
2551
- #: includes/settings/tabs/wps-geoip.php:71
2552
- #: includes/settings/tabs/wps-geoip.php:104
2553
  #: includes/settings/tabs/wps-maintenance.php:40
2554
  #: includes/settings/tabs/wps-maintenance.php:64
2555
  #: includes/settings/tabs/wps-notifications.php:69
@@ -2564,33 +2626,35 @@ msgstr "uso Browscap"
2564
  msgid "Active"
2565
  msgstr "Activo"
2566
 
2567
- #: includes/settings/tabs/wps-browscap.php:33
2568
  msgid "The browscap database will be downloaded and used to detect robots."
2569
  msgstr "La base de datos browscap será descargado y utilizado para detectar los robots."
2570
 
2571
- #: includes/settings/tabs/wps-browscap.php:39
2572
  msgid "Update browscap Info"
2573
  msgstr "Actualización browscap información"
2574
 
2575
- #: includes/settings/tabs/wps-browscap.php:44
2576
  msgid "Download browscap Database"
2577
  msgstr "Descargar browscap base de datos"
2578
 
2579
- #: includes/settings/tabs/wps-browscap.php:45
2580
- #: includes/settings/tabs/wps-geoip.php:60
 
2581
  msgid "Save changes on this page to download the update."
2582
  msgstr "Guardar cambios en esta página para descargar la actualización."
2583
 
2584
- #: includes/settings/tabs/wps-browscap.php:51
2585
  msgid "Schedule weekly update of browscap DB"
2586
  msgstr "Actualización semanal de horario de browscap DB"
2587
 
2588
- #: includes/settings/tabs/wps-browscap.php:59
2589
- #: includes/settings/tabs/wps-geoip.php:74
 
2590
  msgid "Next update will be"
2591
  msgstr "Próxima actualización será"
2592
 
2593
- #: includes/settings/tabs/wps-browscap.php:74
2594
  msgid "Download of the browscap database will be scheduled for once a week."
2595
  msgstr "La descarga de la base de datos browscap se programarán por primera vez a la semana."
2596
 
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: includes/optimization/wps-optimization.php:173
14
+ msgid "Search table conversion complete, %d rows added."
15
+ msgstr ""
16
+
17
+ #: includes/optimization/tabs/wps-optimization-database.php:107
18
+ msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion."
19
+ msgstr ""
20
+
21
+ #: includes/optimization/tabs/wps-optimization-database.php:86
22
+ msgid "Search Table"
23
+ msgstr ""
24
+
25
+ #: includes/optimization/tabs/wps-optimization-database.php:91
26
+ msgid "Convert"
27
+ msgstr ""
28
+
29
+ #: includes/optimization/tabs/wps-optimization-database.php:100
30
+ msgid "Convert Now!"
31
+ msgstr ""
32
+
33
+ #: includes/optimization/tabs/wps-optimization-database.php:101
34
+ msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion, however the old data must first be converted to the new format before it can be used."
35
+ msgstr ""
36
+
37
+ #: includes/log/exclusions.php:24
38
+ msgid "Referrer Spam"
39
+ msgstr ""
40
+
41
+ #: includes/settings/tabs/wps-externals.php:277
42
+ msgid "Download of the Piwik Referrer Spam Blacklist database will be scheduled for once a week."
43
+ msgstr ""
44
+
45
+ #: includes/settings/wps-settings.php:105
46
+ msgid "Externals"
47
+ msgstr ""
48
+
49
+ #: includes/settings/tabs/wps-externals.php:219
50
+ msgid "Piwik Referrer Spam Blacklist settings"
51
+ msgstr ""
52
+
53
+ #: includes/settings/tabs/wps-externals.php:254
54
+ msgid "Schedule weekly update of Piwik Referrer Spam Blacklist DB"
55
+ msgstr ""
56
+
57
+ #: includes/settings/tabs/wps-externals.php:247
58
+ msgid "Download Piwik Referrer Spam Blacklist Database"
59
+ msgstr ""
60
+
61
+ #: includes/settings/tabs/wps-externals.php:242
62
+ msgid "Update Piwik Referrer Spam Blacklist Info"
63
+ msgstr ""
64
+
65
+ #: includes/settings/tabs/wps-externals.php:236
66
+ msgid "The Piwik Referrer Spam Blacklist database will be downloaded and used to detect referrer spam."
67
+ msgstr ""
68
+
69
+ #: includes/settings/tabs/wps-externals.php:224
70
+ msgid "Referrer spam blacklist is provided by Piwik, available from %s."
71
+ msgstr ""
72
+
73
+ #: includes/settings/tabs/wps-externals.php:230
74
+ msgid "Piwik Referrer Spam Blacklist usage"
75
+ msgstr ""
76
+
77
  #: includes/settings/tabs/wps-exclusions.php:148
78
  msgid "Treat corrupt browser info as a bot"
79
  msgstr ""
222
  msgid "Have you thought about donating to WP Statistics?"
223
  msgstr ""
224
 
225
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
226
  msgid "Donate"
227
  msgstr ""
228
 
258
  msgid "Time Frame"
259
  msgstr ""
260
 
261
+ #: includes/functions/functions.php:981
262
  msgid "to"
263
  msgstr ""
264
 
265
+ #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
266
  msgid "Go"
267
  msgstr ""
268
 
306
  msgid "Filtered by"
307
  msgstr ""
308
 
309
+ #: includes/functions/functions.php:974 includes/functions/functions.php:977
310
  msgid "Range"
311
  msgstr ""
312
 
313
+ #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
314
  msgid "MM/DD/YYYY"
315
  msgstr "MM/DD/YYYY"
316
 
354
  msgid "Last 7 Days (Week)"
355
  msgstr ""
356
 
357
+ #: includes/functions/functions.php:405
358
  msgid "Yahoo!"
359
  msgstr ""
360
 
361
+ #: includes/functions/functions.php:406
362
  msgid "Yandex"
363
  msgstr ""
364
 
365
+ #: includes/functions/functions.php:402
366
  msgid "clearch.org"
367
  msgstr ""
368
 
369
+ #: includes/functions/functions.php:403
370
  msgid "DuckDuckGo"
371
  msgstr ""
372
 
373
+ #: includes/functions/functions.php:401
374
  msgid "Bing"
375
  msgstr ""
376
 
377
+ #: includes/functions/functions.php:400
378
  msgid "Baidu"
379
  msgstr ""
380
 
477
  msgstr "Por cada visita para tener en cuenta varios golpes. Actualmente %s."
478
 
479
  #: includes/settings/tabs/wps-general.php:177
480
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
481
+ #: wp-statistics.php:431
482
  msgid "Pages"
483
  msgstr "Páginas"
484
 
562
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
563
  msgstr "Añada una línea total a listas con varios valores, como las referencias del motor de búsqueda"
564
 
565
+ #: includes/settings/tabs/wps-externals.php:32
566
  msgid "GeoIP settings"
567
  msgstr "Configuración de GeoIP"
568
 
569
+ #: includes/settings/tabs/wps-externals.php:37
570
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
571
  msgstr "Servicios de localización de IP proporcionados por GeoLite2 datos creados por MaxMind, disponible desde %s."
572
 
573
+ #: includes/settings/tabs/wps-externals.php:47
574
  msgid "GeoIP collection"
575
  msgstr "Colección GeoIP"
576
 
577
+ #: includes/settings/tabs/wps-externals.php:53
578
  msgid "For get more information and location (country) from visitor, enable this feature."
579
  msgstr "Para obtener más información y ubicación (país) de visitante, activar esta función."
580
 
581
+ #: includes/settings/tabs/wps-externals.php:59
582
  msgid "Update GeoIP Info"
583
  msgstr "Actualizar su información GeoIP"
584
 
585
+ #: includes/settings/tabs/wps-externals.php:64
586
  msgid "Download GeoIP Database"
587
  msgstr "Descargar GeoIP Database"
588
 
589
+ #: includes/settings/tabs/wps-externals.php:71
590
  msgid "Schedule monthly update of GeoIP DB"
591
  msgstr "Actualización mensual de GeoIP DB de la programación"
592
 
593
+ #: includes/settings/tabs/wps-externals.php:97
594
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
595
  msgstr "La descarga de la base de datos GeoIP programará durante 2 días después del primer martes del mes."
596
 
597
+ #: includes/settings/tabs/wps-externals.php:98
598
  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)."
599
  msgstr "Esta opción también descargará la base de datos si el tamaño del archivo local es menos de 1k (lo que generalmente significa el talón que viene con el plugin está todavía en su lugar)."
600
 
601
+ #: includes/settings/tabs/wps-externals.php:104
602
  msgid "Populate missing GeoIP after update of GeoIP DB"
603
  msgstr "Poblar GeoIP desaparecido después de la actualización de GeoIP DB"
604
 
605
+ #: includes/settings/tabs/wps-externals.php:110
606
  msgid "Update any missing GeoIP data after downloading a new database."
607
  msgstr "Actualizar cualquier dato GeoIP desaparecido después de descargar una nueva base de datos."
608
 
609
+ #: includes/settings/tabs/wps-externals.php:116
610
  msgid "Country code for private IP addresses"
611
  msgstr ""
612
 
613
+ #: includes/settings/tabs/wps-externals.php:121
614
  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."
615
  msgstr ""
616
 
617
+ #: includes/settings/tabs/wps-externals.php:132
618
  msgid "GeoIP collection is disabled due to the following reasons:"
619
  msgstr "Colección GeoIP está deshabilitado debido a las razones siguientes:"
620
 
621
+ #: includes/settings/tabs/wps-externals.php:135
622
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
623
  msgstr "Colección GeoIP requiere PHP %s o por encima, está actualmente deshabilitado debido a la versión instalada PHP es "
624
 
625
+ #: includes/settings/tabs/wps-externals.php:140
626
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
627
  msgstr "Colección GeoIP requiere la extensión PHP cURL y no está cargada en su versión de PHP."
628
 
629
+ #: includes/settings/tabs/wps-externals.php:146
630
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
631
  msgstr "Colección GeoIP requiere la extensión PHP matemáticas BC y no está cargada en su versión de PHP!"
632
 
633
+ #: includes/settings/tabs/wps-externals.php:152
634
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
635
  msgstr "Modo seguro de PHP detectado! GeoIP colección no es compatible con el modo seguro de PHP está activado!"
636
 
690
 
691
  #: includes/log/exclusions.php:24
692
  #: includes/settings/tabs/wps-notifications.php:76
 
693
  msgid "GeoIP"
694
  msgstr "GeoIP"
695
 
714
  msgstr ""
715
 
716
  #: includes/settings/tabs/wps-notifications.php:111
717
+ #: includes/settings/tabs/wps-notifications.php:116 schedule.php:221
718
  msgid "Statistical reporting"
719
  msgstr "Informes estadísticos"
720
 
763
  msgstr ""
764
 
765
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
766
+ #: widget.php:245 wp-statistics.php:536
767
  msgid "User Online"
768
  msgstr "Usuarios conectados"
769
 
806
  msgstr "Estadísticas de Resumen"
807
 
808
  #: includes/settings/tabs/wps-overview-display.php:28
809
+ #: includes/settings/wps-settings.php:108
810
  msgid "About"
811
  msgstr "Acerca de"
812
 
856
  msgid "Map type"
857
  msgstr "Tipo de mapa"
858
 
859
+ #: includes/functions/functions.php:404
860
  #: includes/settings/tabs/wps-overview-display.php:128
861
  msgid "Google"
862
  msgstr "Google"
966
  msgid "Remove data and settings, this action cannot be undone."
967
  msgstr ""
968
 
969
+ #: includes/settings/wps-settings.php:100
970
  msgid "General"
971
  msgstr "General"
972
 
973
+ #: includes/settings/wps-settings.php:101
974
  msgid "Notifications"
975
  msgstr ""
976
 
977
+ #: includes/settings/wps-settings.php:102
978
  msgid "Dashboard/Overview"
979
  msgstr ""
980
 
981
+ #: includes/settings/wps-settings.php:106
 
 
 
 
982
  msgid "Maintenance"
983
  msgstr "Mantenimiento"
984
 
985
+ #: includes/settings/wps-settings.php:107
986
  msgid "Removal"
987
  msgstr ""
988
 
989
  #: includes/settings/tabs/wps-access-level.php:85
 
990
  #: includes/settings/tabs/wps-exclusions.php:234
991
+ #: includes/settings/tabs/wps-externals.php:284
992
  #: includes/settings/tabs/wps-general.php:349
 
993
  #: includes/settings/tabs/wps-maintenance.php:84
994
  #: includes/settings/tabs/wps-notifications.php:201
995
  #: includes/settings/tabs/wps-overview-display.php:388
1009
  msgid "Once Every 4 Weeks"
1010
  msgstr "Una vez cada 4 semanas"
1011
 
1012
+ #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
1013
  msgid "Statistics"
1014
  msgstr "Estadísticas"
1015
 
1081
  msgid "Items"
1082
  msgstr "Elementos"
1083
 
1084
+ #: widget.php:254 wp-statistics.php:561
1085
  msgid "Yesterday visit"
1086
  msgstr "Visitas ayer"
1087
 
1109
  msgid "WP Statistics has been removed, please disable and delete it."
1110
  msgstr ""
1111
 
1112
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1113
  #. Plugin Name of the plugin/theme
1114
  #: wp-statistics.php:37
1115
  msgid "WP Statistics"
1116
  msgstr "Estadísticas de WP"
1117
 
1118
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1119
  #. Description of the plugin/theme
1120
  #: wp-statistics.php:38
1121
  msgid "Complete statistics for your WordPress site."
1145
  msgid "Setting page > GeoIP"
1146
  msgstr "Página Configuración > GeoIP"
1147
 
1148
+ #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
1149
  msgid "Settings"
1150
  msgstr "Configuración"
1151
 
1152
+ #: wp-statistics.php:265
1153
  msgid "Click here to visit the plugin on WordPress.org"
1154
  msgstr "Haga clic aquí para visitar el plugin en WordPress.org"
1155
 
1156
+ #: wp-statistics.php:265
1157
  msgid "Visit WordPress.org page"
1158
  msgstr "Visita la página de WordPress.org"
1159
 
1160
+ #: wp-statistics.php:268
1161
  msgid "Click here to rate and review this plugin on WordPress.org"
1162
  msgstr "Haga clic aquí para calificar y revisar este plugin en WordPress.org"
1163
 
1164
+ #: wp-statistics.php:268
1165
  msgid "Rate this plugin"
1166
  msgstr "Tasa de este plugin"
1167
 
1168
+ #: wp-statistics.php:312
1169
  msgid "WP Statistics - Hits"
1170
  msgstr "Estadísticas de WP - Hits"
1171
 
1172
+ #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
1173
  msgid "Overview"
1174
  msgstr "Resumen"
1175
 
1176
+ #: wp-statistics.php:354 wp-statistics.php:430
1177
  msgid "Online"
1178
  msgstr ""
1179
 
1180
+ #: wp-statistics.php:356 wp-statistics.php:432
1181
  msgid "Referrers"
1182
  msgstr ""
1183
 
1184
+ #: shortcode.php:135 wp-statistics.php:357 wp-statistics.php:433
1185
  msgid "Searches"
1186
  msgstr "Búsquedas"
1187
 
1188
+ #: wp-statistics.php:358 wp-statistics.php:434
1189
  msgid "Search Words"
1190
  msgstr "Palabras de búsqueda"
1191
 
1192
+ #: wp-statistics.php:359 wp-statistics.php:435
1193
  msgid "Top Visitors Today"
1194
  msgstr ""
1195
 
1196
+ #: wp-statistics.php:364 wp-statistics.php:437
1197
  msgid "Optimization"
1198
  msgstr "Optimización"
1199
 
1200
+ #: wp-statistics.php:370 wp-statistics.php:401
1201
  msgid "Manual"
1202
  msgstr "Manual"
1203
 
1204
+ #: wp-statistics.php:416
1205
  msgid "Site"
1206
  msgstr ""
1207
 
1208
+ #: wp-statistics.php:417
1209
  msgid "Options"
1210
  msgstr ""
1211
 
1212
+ #: wp-statistics.php:543
1213
  msgid "Today visitor"
1214
  msgstr "Visitante de hoy"
1215
 
1216
+ #: wp-statistics.php:549
1217
  msgid "Today visit"
1218
  msgstr "Visite hoy"
1219
 
1220
+ #: wp-statistics.php:555
1221
  msgid "Yesterday visitor"
1222
  msgstr "Ayer visitante"
1223
 
1224
+ #: wp-statistics.php:567
1225
  msgid "View Stats"
1226
  msgstr "Ver estadísticas"
1227
 
1228
+ #: wp-statistics.php:591
1229
  msgid "Download ODF file"
1230
  msgstr "Descargar archivo ODF"
1231
 
1232
+ #: wp-statistics.php:592
1233
  msgid "Download HTML file"
1234
  msgstr "Descargar archivo HTML"
1235
 
1236
+ #: wp-statistics.php:596
1237
  msgid "Manual file not found."
1238
  msgstr "Manual archivo no encontrado."
1239
 
1240
+ #: wp-statistics.php:663 wp-statistics.php:770 wp-statistics.php:804
1241
  msgid "You do not have sufficient permissions to access this page."
1242
  msgstr "No tienes permisos suficientes para acceder a esta página."
1243
 
1245
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
1246
  msgstr ""
1247
 
1248
+ #: wp-statistics.php:241
1249
  msgid "WP Statistics %s installed on"
1250
  msgstr ""
1251
 
1293
  msgid "Browscap.ini update on"
1294
  msgstr ""
1295
 
1296
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1297
  #. Plugin URI of the plugin/theme
1298
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1299
  #. Author URI of the plugin/theme
1300
  msgid "http://wp-statistics.com/"
1301
  msgstr "http://WP-Statistics.com/"
1422
  msgstr "Haga clic para alternar"
1423
 
1424
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1425
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
1426
+ #: wp-statistics.php:426
1427
  msgid "Browsers"
1428
  msgstr "Navegadores"
1429
 
1452
  msgid "Exclusions Statistics"
1453
  msgstr "Estadísticas de exclusiones"
1454
 
1455
+ #: includes/functions/functions.php:931
1456
  msgid "10 Days"
1457
  msgstr "10 días"
1458
 
1459
+ #: includes/functions/functions.php:931
1460
  msgid "20 Days"
1461
  msgstr "20 días"
1462
 
1463
+ #: includes/functions/functions.php:931
1464
  msgid "30 Days"
1465
  msgstr "30 días"
1466
 
1467
+ #: includes/functions/functions.php:931
1468
  msgid "2 Months"
1469
  msgstr "2 meses"
1470
 
1471
+ #: includes/functions/functions.php:931
1472
  msgid "3 Months"
1473
  msgstr "3 meses"
1474
 
1475
+ #: includes/functions/functions.php:931
1476
  msgid "6 Months"
1477
  msgstr "6 meses"
1478
 
1479
+ #: includes/functions/functions.php:931
1480
  msgid "9 Months"
1481
  msgstr "9 meses"
1482
 
1483
+ #: includes/functions/functions.php:931
1484
  msgid "1 Year"
1485
  msgstr "1 año"
1486
 
1529
  msgid "Latest Search Word Statistics"
1530
  msgstr "Últimas estadísticas de la palabra de búsqueda"
1531
 
1532
+ #: includes/log/last-search.php:110 includes/log/last-visitor.php:101
1533
  #: includes/log/online.php:50 includes/log/widgets/google.map.php:84
1534
  #: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
1535
+ #: includes/log/widgets/words.php:46
1536
  msgid "#hash#"
1537
  msgstr "#hash #"
1538
 
1539
+ #: includes/log/last-search.php:115 includes/log/last-visitor.php:106
1540
  #: includes/log/online.php:55 includes/log/top-referring.php:71
1541
+ #: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
1542
  #: includes/settings/tabs/wps-overview-display.php:33
1543
  #: includes/settings/tabs/wps-overview-display.php:113
1544
  msgid "Map"
1545
  msgstr "Mapa"
1546
 
1547
+ #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1548
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1549
  #: includes/log/top-referring.php:125
1550
  msgid "Page"
1551
  msgstr "Página"
1552
 
1553
+ #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1554
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1555
  #: includes/log/top-referring.php:125
1556
  msgid "From"
1739
  msgstr "Tiempo: %s"
1740
 
1741
  #: includes/log/widgets/top.visitors.php:31
1742
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
1743
+ #: wp-statistics.php:353 wp-statistics.php:429
1744
  msgid "Hits"
1745
  msgstr "Hits"
1746
 
1782
  msgid "No platform data found to remove!"
1783
  msgstr ""
1784
 
1785
+ #: includes/functions/functions.php:1019
1786
  msgid "%s table data deleted successfully."
1787
  msgstr "datos de la tabla de %s eliminados satisfactoriamente."
1788
 
1789
+ #: includes/functions/functions.php:1023
1790
  msgid "Error, %s not emptied!"
1791
  msgstr "Error, %s no vaciado."
1792
 
1812
 
1813
  #: includes/optimization/tabs/wps-optimization-database.php:25
1814
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1815
+ #: wp-statistics.php:351 wp-statistics.php:427
1816
  msgid "Countries"
1817
  msgstr "Países"
1818
 
1828
  msgstr "Mayores instalaciones de WP Statistics permiten entradas duplicadas en la tabla de visitantes en un caso de esquina. Instala nuevo protegerse de esto con un índice único sobre la mesa. Para crear el índice en el instala mayor entradas duplicadas debe ser suprimido primero. Haga clic en \"Update Now\" explorará la mesa de los visitantes, eliminar entradas duplicadas y añadir el índice."
1829
 
1830
  #: includes/optimization/tabs/wps-optimization-database.php:41
1831
+ #: includes/optimization/tabs/wps-optimization-database.php:102
1832
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1833
  msgstr "Esta operación podría tomar mucho tiempo en instalaciones con muchas filas en la tabla de visitantes."
1834
 
1838
 
1839
  #: includes/optimization/tabs/wps-optimization-database.php:47
1840
  #: includes/optimization/tabs/wps-optimization-database.php:77
1841
+ #: includes/optimization/tabs/wps-optimization-database.php:108
1842
  msgid "Congratulations, your installation is already up to date, nothing to do."
1843
  msgstr "Felicitaciones, su instalación es ya hasta la fecha, nada que ver."
1844
 
1845
  #: includes/optimization/tabs/wps-optimization-export.php:8
1846
+ #: includes/optimization/wps-optimization.php:212
1847
  msgid "Export"
1848
  msgstr "Exportación"
1849
 
1896
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1897
  #: includes/settings/tabs/wps-general.php:138
1898
  #: includes/settings/tabs/wps-general.php:143 shortcode.php:133
1899
+ #: wp-statistics.php:360 wp-statistics.php:436
1900
  msgid "Visitors"
1901
  msgstr "Visitantes"
1902
 
2211
  msgid "Install routine complete."
2212
  msgstr "Instale la rutina completa."
2213
 
2214
+ #: includes/optimization/wps-optimization.php:211
2215
  msgid "Resources/Information"
2216
  msgstr "Recursos e información"
2217
 
2218
+ #: includes/optimization/wps-optimization.php:213
2219
  msgid "Purging"
2220
  msgstr "Purga"
2221
 
2222
+ #: includes/optimization/wps-optimization.php:214
2223
  msgid "Database"
2224
  msgstr "Base de datos"
2225
 
2226
+ #: includes/optimization/wps-optimization.php:215
2227
  msgid "Updates"
2228
  msgstr "Actualizaciones"
2229
 
2230
+ #: includes/optimization/wps-optimization.php:216
2231
  msgid "Historical"
2232
  msgstr ""
2233
 
2377
  msgstr ""
2378
 
2379
  #: includes/settings/tabs/wps-access-level.php:23
2380
+ #: includes/settings/wps-settings.php:103
2381
  msgid "Access Levels"
2382
  msgstr "Niveles de acceso"
2383
 
2410
  msgstr "Si usted necesita una solución más robusta para delegar el acceso que tal vez quieras ver %s en el directorio del plugin de WordPress."
2411
 
2412
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2413
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:352
2414
+ #: wp-statistics.php:428
2415
  msgid "Exclusions"
2416
  msgstr "Exclusiones"
2417
 
2582
  msgid "Exclude the RSS feeds for registering as a hit."
2583
  msgstr ""
2584
 
2585
+ #: includes/settings/tabs/wps-externals.php:162
2586
  msgid "browscap settings"
2587
  msgstr "configuración de Browscap"
2588
 
2589
+ #: includes/settings/tabs/wps-externals.php:167
2590
  msgid "browscap usage"
2591
  msgstr "uso Browscap"
2592
 
2593
+ #: includes/settings/tabs/wps-externals.php:52
2594
+ #: includes/settings/tabs/wps-externals.php:76
2595
+ #: includes/settings/tabs/wps-externals.php:109
2596
+ #: includes/settings/tabs/wps-externals.php:172
2597
+ #: includes/settings/tabs/wps-externals.php:196
2598
+ #: includes/settings/tabs/wps-externals.php:235
2599
+ #: includes/settings/tabs/wps-externals.php:259
2600
  #: includes/settings/tabs/wps-general.php:76
2601
  #: includes/settings/tabs/wps-general.php:92
2602
  #: includes/settings/tabs/wps-general.php:116
2612
  #: includes/settings/tabs/wps-general.php:286
2613
  #: includes/settings/tabs/wps-general.php:325
2614
  #: includes/settings/tabs/wps-general.php:341
 
 
 
2615
  #: includes/settings/tabs/wps-maintenance.php:40
2616
  #: includes/settings/tabs/wps-maintenance.php:64
2617
  #: includes/settings/tabs/wps-notifications.php:69
2626
  msgid "Active"
2627
  msgstr "Activo"
2628
 
2629
+ #: includes/settings/tabs/wps-externals.php:173
2630
  msgid "The browscap database will be downloaded and used to detect robots."
2631
  msgstr "La base de datos browscap será descargado y utilizado para detectar los robots."
2632
 
2633
+ #: includes/settings/tabs/wps-externals.php:179
2634
  msgid "Update browscap Info"
2635
  msgstr "Actualización browscap información"
2636
 
2637
+ #: includes/settings/tabs/wps-externals.php:184
2638
  msgid "Download browscap Database"
2639
  msgstr "Descargar browscap base de datos"
2640
 
2641
+ #: includes/settings/tabs/wps-externals.php:65
2642
+ #: includes/settings/tabs/wps-externals.php:185
2643
+ #: includes/settings/tabs/wps-externals.php:248
2644
  msgid "Save changes on this page to download the update."
2645
  msgstr "Guardar cambios en esta página para descargar la actualización."
2646
 
2647
+ #: includes/settings/tabs/wps-externals.php:191
2648
  msgid "Schedule weekly update of browscap DB"
2649
  msgstr "Actualización semanal de horario de browscap DB"
2650
 
2651
+ #: includes/settings/tabs/wps-externals.php:79
2652
+ #: includes/settings/tabs/wps-externals.php:199
2653
+ #: includes/settings/tabs/wps-externals.php:262
2654
  msgid "Next update will be"
2655
  msgstr "Próxima actualización será"
2656
 
2657
+ #: includes/settings/tabs/wps-externals.php:214
2658
  msgid "Download of the browscap database will be scheduled for once a week."
2659
  msgstr "La descarga de la base de datos browscap se programarán por primera vez a la semana."
2660
 
languages/wp_statistics-fa_IR.mo CHANGED
Binary file
languages/wp_statistics-fa_IR.po CHANGED
@@ -10,6 +10,70 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  #: includes/settings/tabs/wps-exclusions.php:148
14
  msgid "Treat corrupt browser info as a bot"
15
  msgstr ""
@@ -158,7 +222,7 @@ msgstr ""
158
  msgid "Have you thought about donating to WP Statistics?"
159
  msgstr "آیا در مورد حمایت به آمار وردپرس فکر کرده‌اید؟"
160
 
161
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:362
162
  msgid "Donate"
163
  msgstr "حمایت مالی"
164
 
@@ -194,11 +258,11 @@ msgstr "تعداد نوشته‌ها"
194
  msgid "Time Frame"
195
  msgstr "قاب زمان"
196
 
197
- #: includes/functions/functions.php:929
198
  msgid "to"
199
  msgstr "تا"
200
 
201
- #: includes/functions/functions.php:929 includes/log/top-visitors.php:29
202
  msgid "Go"
203
  msgstr "برو"
204
 
@@ -242,11 +306,11 @@ msgstr "نصب‌های قدیمی از آمار وردپرس به محتواه
242
  msgid "Filtered by"
243
  msgstr "فیلتر توسط"
244
 
245
- #: includes/functions/functions.php:922 includes/functions/functions.php:925
246
  msgid "Range"
247
  msgstr "از"
248
 
249
- #: includes/functions/functions.php:929 includes/log/top-visitors.php:29
250
  msgid "MM/DD/YYYY"
251
  msgstr "MM/DD/YYYY"
252
 
@@ -290,27 +354,27 @@ msgstr "30 روز گذشته (ماه)"
290
  msgid "Last 7 Days (Week)"
291
  msgstr "7 روز گذشته (هفته)"
292
 
293
- #: includes/functions/functions.php:403
294
  msgid "Yahoo!"
295
  msgstr "یاهو!"
296
 
297
- #: includes/functions/functions.php:404
298
  msgid "Yandex"
299
  msgstr "یاندکس"
300
 
301
- #: includes/functions/functions.php:400
302
  msgid "clearch.org"
303
  msgstr "clearch.org"
304
 
305
- #: includes/functions/functions.php:401
306
  msgid "DuckDuckGo"
307
  msgstr "داک‌داک‌گو"
308
 
309
- #: includes/functions/functions.php:399
310
  msgid "Bing"
311
  msgstr "بینگ"
312
 
313
- #: includes/functions/functions.php:398
314
  msgid "Baidu"
315
  msgstr "بایدو"
316
 
@@ -413,8 +477,8 @@ msgid "For each visit to account for several hits. Currently %s."
413
  msgstr "ضریب محاسبه هر بازدید کننده را در آمار مشخص می‌کند. درحال حاضر %s است."
414
 
415
  #: includes/settings/tabs/wps-general.php:177
416
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:351
417
- #: wp-statistics.php:427
418
  msgid "Pages"
419
  msgstr "برگه‌ها"
420
 
@@ -498,75 +562,75 @@ msgstr "جمع کل"
498
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
499
  msgstr "اضافه شدن جمع کل به نمودار آمار ورودی از موتورهای جستجو"
500
 
501
- #: includes/settings/tabs/wps-geoip.php:27
502
  msgid "GeoIP settings"
503
  msgstr "تنظیمات GeoIP"
504
 
505
- #: includes/settings/tabs/wps-geoip.php:32
506
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
507
  msgstr "سرویس ارائه‌دهنده مکان‌نمای IP با GeoLite2 ایجاد شده و توسط MaxMind ساخته شده است و در %s قابل دسترس است."
508
 
509
- #: includes/settings/tabs/wps-geoip.php:42
510
  msgid "GeoIP collection"
511
  msgstr "مجموعه GeoIP"
512
 
513
- #: includes/settings/tabs/wps-geoip.php:48
514
  msgid "For get more information and location (country) from visitor, enable this feature."
515
  msgstr "برای دریافت اطلاعات بیشتر و موقعیت (کشور) بازدیدکننده، این امکان را فعال کنید."
516
 
517
- #: includes/settings/tabs/wps-geoip.php:54
518
  msgid "Update GeoIP Info"
519
  msgstr "به روز رسانی اطلاعات GeoIP"
520
 
521
- #: includes/settings/tabs/wps-geoip.php:59
522
  msgid "Download GeoIP Database"
523
  msgstr "دریافت پایگاه‌داده GeoIP"
524
 
525
- #: includes/settings/tabs/wps-geoip.php:66
526
  msgid "Schedule monthly update of GeoIP DB"
527
  msgstr "برنامه‌ریزی به‌روزرسانی ماهیانه پایگاه‌داده‌ی GeoIP"
528
 
529
- #: includes/settings/tabs/wps-geoip.php:92
530
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
531
  msgstr "دریافت پایگاه‌داده‌ی GeoIP در 2 روز بعد از اولین سه‌شنبه در هرماه."
532
 
533
- #: includes/settings/tabs/wps-geoip.php:93
534
  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)."
535
  msgstr "این امکان حتی داده‌های کمتر از 1 کیلوبایت را نیز دریافت می‌کند (که به معنای داده‌های همراه افزونه است)."
536
 
537
- #: includes/settings/tabs/wps-geoip.php:99
538
  msgid "Populate missing GeoIP after update of GeoIP DB"
539
  msgstr "جمعیت‌های از دست رفته GeoIP بعد از به‌روز سانی پایگاه‌داده‌ی GeoIP"
540
 
541
- #: includes/settings/tabs/wps-geoip.php:105
542
  msgid "Update any missing GeoIP data after downloading a new database."
543
  msgstr "به‌روز رسانی هر داده‌ی از دست‌رفته‌ی GeoIP بعد از دریافت پایگاه داده‌ی جدید."
544
 
545
- #: includes/settings/tabs/wps-geoip.php:111
546
  msgid "Country code for private IP addresses"
547
  msgstr "کد کشور برای آدرس های IP خصوصی"
548
 
549
- #: includes/settings/tabs/wps-geoip.php:116
550
  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."
551
  msgstr "استاندارد دو کد بین المللی نامه کشور (به عنوان مثال. ایالات متحده = ایالات متحده، CA = کانادا، و غیره) برای خصوصی (غیر قابل دسترسی) آدرس IP (به عنوان مثال. 10.0.0.1، 192.158.1.1، 127.0.0.1، و غیره). استفاده از &quot;000&quot; (سه صفر) به استفاده از &quot;ناشناخته&quot; به عنوان کد کشور."
552
 
553
- #: includes/settings/tabs/wps-geoip.php:127
554
  msgid "GeoIP collection is disabled due to the following reasons:"
555
  msgstr "مجموعه GeoIP با توجه به دلایل زیر غیرفعال شده است:"
556
 
557
- #: includes/settings/tabs/wps-geoip.php:130
558
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
559
  msgstr "مجموعه GeoIP به PHP نسخه %s و بالاتر نیاز دارد، در حال حاضر با توجه به پایین بودن نسخه PHP شما، غیرفعال است"
560
 
561
- #: includes/settings/tabs/wps-geoip.php:135
562
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
563
  msgstr "مجموعه‌ی GeoIP نیاز به ماژول cURL در PHP دارد و نمی‌تواند در نگارش PHP شما بارگزاری شود!"
564
 
565
- #: includes/settings/tabs/wps-geoip.php:141
566
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
567
  msgstr "مجموعه‌ی GeoIP نیاز به ماژول BC Math در PHP دارد و نمی‌تواند در نگارش PHP شما بارگزاری شود!"
568
 
569
- #: includes/settings/tabs/wps-geoip.php:147
570
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
571
  msgstr "حالت ایمنی PHP شناسایی نشد! مجموعه GeoIP توسط حالت ایمنی PHP پشتیبانی نمی‌شود!"
572
 
@@ -626,7 +690,6 @@ msgstr "ارسال گزارش زمانیکه browscap.ini به‌روز شد."
626
 
627
  #: includes/log/exclusions.php:24
628
  #: includes/settings/tabs/wps-notifications.php:76
629
- #: includes/settings/wps-settings.php:111
630
  msgid "GeoIP"
631
  msgstr "GeoIP"
632
 
@@ -651,7 +714,7 @@ msgid "Send a report whenever the plugin is upgraded."
651
  msgstr "ارسال گزارش زمانیکه افزونه به‌روز شد."
652
 
653
  #: includes/settings/tabs/wps-notifications.php:111
654
- #: includes/settings/tabs/wps-notifications.php:116 schedule.php:199
655
  msgid "Statistical reporting"
656
  msgstr "گزارش آماری"
657
 
@@ -700,7 +763,7 @@ msgid "Any shortcode supported by your installation of WordPress, include all sh
700
  msgstr "هر کدکوتاهی توسط وردپرس شما پشتیبانی میشود. کدهای کوتاه در افزونه آمار (لیست کدها در راهنمای کاربری موجود است) در بدنه‌ی متن پشتیبانی می‌شوند. نمونه‌هایی برای مثال:"
701
 
702
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
703
- #: widget.php:245 wp-statistics.php:532
704
  msgid "User Online"
705
  msgstr "کاربران حاضر"
706
 
@@ -743,7 +806,7 @@ msgid "Summary Statistics"
743
  msgstr "خلاصه آمار"
744
 
745
  #: includes/settings/tabs/wps-overview-display.php:28
746
- #: includes/settings/wps-settings.php:115
747
  msgid "About"
748
  msgstr "درباره"
749
 
@@ -793,7 +856,7 @@ msgstr "غیرفعال ابزارک در نوشته/برگه"
793
  msgid "Map type"
794
  msgstr "نوع نقشه"
795
 
796
- #: includes/functions/functions.php:402
797
  #: includes/settings/tabs/wps-overview-display.php:128
798
  msgid "Google"
799
  msgstr "گوگل"
@@ -903,35 +966,30 @@ msgstr "حذف"
903
  msgid "Remove data and settings, this action cannot be undone."
904
  msgstr "حذف داده‌ها و تنظیمات، این عمل غیرقابل برگشت است."
905
 
906
- #: includes/settings/wps-settings.php:106
907
  msgid "General"
908
  msgstr "عمومی"
909
 
910
- #: includes/settings/wps-settings.php:107
911
  msgid "Notifications"
912
  msgstr "اطلاعیه‌ها"
913
 
914
- #: includes/settings/wps-settings.php:108
915
  msgid "Dashboard/Overview"
916
  msgstr "پیشخوان/در یک نگاه"
917
 
918
- #: includes/settings/wps-settings.php:112
919
- msgid "browscap"
920
- msgstr "browscap"
921
-
922
- #: includes/settings/wps-settings.php:113
923
  msgid "Maintenance"
924
  msgstr "تعمیر و نگه‌داری"
925
 
926
- #: includes/settings/wps-settings.php:114
927
  msgid "Removal"
928
  msgstr "حذف"
929
 
930
  #: includes/settings/tabs/wps-access-level.php:85
931
- #: includes/settings/tabs/wps-browscap.php:81
932
  #: includes/settings/tabs/wps-exclusions.php:234
 
933
  #: includes/settings/tabs/wps-general.php:349
934
- #: includes/settings/tabs/wps-geoip.php:158
935
  #: includes/settings/tabs/wps-maintenance.php:84
936
  #: includes/settings/tabs/wps-notifications.php:201
937
  #: includes/settings/tabs/wps-overview-display.php:388
@@ -951,7 +1009,7 @@ msgstr "هر 2 هفته"
951
  msgid "Once Every 4 Weeks"
952
  msgstr "هر 4 هفته"
953
 
954
- #: widget.php:14 wp-statistics.php:342 wp-statistics.php:380
955
  msgid "Statistics"
956
  msgstr "آمار"
957
 
@@ -1023,7 +1081,7 @@ msgstr "نام"
1023
  msgid "Items"
1024
  msgstr "آیتم‌ها"
1025
 
1026
- #: widget.php:254 wp-statistics.php:557
1027
  msgid "Yesterday visit"
1028
  msgstr "بازدید دیروز"
1029
 
@@ -1051,13 +1109,13 @@ msgstr "نسخه جاری PHP شما"
1051
  msgid "WP Statistics has been removed, please disable and delete it."
1052
  msgstr "افزونه آمار وردپرس حذف شد، لطفاً افزونه را غیرفعال و پاک کنید."
1053
 
1054
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1055
  #. Plugin Name of the plugin/theme
1056
  #: wp-statistics.php:37
1057
  msgid "WP Statistics"
1058
  msgstr "آمار وردپرس"
1059
 
1060
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1061
  #. Description of the plugin/theme
1062
  #: wp-statistics.php:38
1063
  msgid "Complete statistics for your WordPress site."
@@ -1087,99 +1145,99 @@ msgstr "مجموعه GeoIP فعال نیست لطفا به قسمت %s بروی
1087
  msgid "Setting page > GeoIP"
1088
  msgstr "صفحه تنظیمات > GeoIP"
1089
 
1090
- #: wp-statistics.php:249 wp-statistics.php:361 wp-statistics.php:434
1091
  msgid "Settings"
1092
  msgstr "تنظیمات"
1093
 
1094
- #: wp-statistics.php:261
1095
  msgid "Click here to visit the plugin on WordPress.org"
1096
  msgstr "برای مشاهده افزونه در Wordpress.org کلیک کنید."
1097
 
1098
- #: wp-statistics.php:261
1099
  msgid "Visit WordPress.org page"
1100
  msgstr "مشاهده برگه‌ی Wordpress.org"
1101
 
1102
- #: wp-statistics.php:264
1103
  msgid "Click here to rate and review this plugin on WordPress.org"
1104
  msgstr "برای دادن امتیاز و بررسی افزونه در Wordpress.org کلیک کنید."
1105
 
1106
- #: wp-statistics.php:264
1107
  msgid "Rate this plugin"
1108
  msgstr "امتیاز به افزونه"
1109
 
1110
- #: wp-statistics.php:308
1111
  msgid "WP Statistics - Hits"
1112
  msgstr "آمار وردپرس - بازدید"
1113
 
1114
- #: wp-statistics.php:345 wp-statistics.php:383 wp-statistics.php:421
1115
  msgid "Overview"
1116
  msgstr "مرور کلی"
1117
 
1118
- #: wp-statistics.php:350 wp-statistics.php:426
1119
  msgid "Online"
1120
  msgstr "آنلاین"
1121
 
1122
- #: wp-statistics.php:352 wp-statistics.php:428
1123
  msgid "Referrers"
1124
  msgstr "ارجاع‌دهنده‌ها"
1125
 
1126
- #: shortcode.php:135 wp-statistics.php:353 wp-statistics.php:429
1127
  msgid "Searches"
1128
  msgstr "جستجوها"
1129
 
1130
- #: wp-statistics.php:354 wp-statistics.php:430
1131
  msgid "Search Words"
1132
  msgstr "کلمات جستجو شده"
1133
 
1134
- #: wp-statistics.php:355 wp-statistics.php:431
1135
  msgid "Top Visitors Today"
1136
  msgstr "برترین بازدیدکنندگان"
1137
 
1138
- #: wp-statistics.php:360 wp-statistics.php:433
1139
  msgid "Optimization"
1140
  msgstr "بهینه سازی"
1141
 
1142
- #: wp-statistics.php:366 wp-statistics.php:397
1143
  msgid "Manual"
1144
  msgstr "راهنما"
1145
 
1146
- #: wp-statistics.php:412
1147
  msgid "Site"
1148
  msgstr "سایت"
1149
 
1150
- #: wp-statistics.php:413
1151
  msgid "Options"
1152
  msgstr "تنظیمات"
1153
 
1154
- #: wp-statistics.php:539
1155
  msgid "Today visitor"
1156
  msgstr "بازدید کننده امروز"
1157
 
1158
- #: wp-statistics.php:545
1159
  msgid "Today visit"
1160
  msgstr "بازدید امروز"
1161
 
1162
- #: wp-statistics.php:551
1163
  msgid "Yesterday visitor"
1164
  msgstr "بازدید کننده دیروز"
1165
 
1166
- #: wp-statistics.php:563
1167
  msgid "View Stats"
1168
  msgstr "نمایش آمار"
1169
 
1170
- #: wp-statistics.php:587
1171
  msgid "Download ODF file"
1172
  msgstr "دریافت فایل ODF"
1173
 
1174
- #: wp-statistics.php:588
1175
  msgid "Download HTML file"
1176
  msgstr "دریافت فایل HTML"
1177
 
1178
- #: wp-statistics.php:592
1179
  msgid "Manual file not found."
1180
  msgstr "راهنما یافت نشد."
1181
 
1182
- #: wp-statistics.php:659 wp-statistics.php:770 wp-statistics.php:804
1183
  msgid "You do not have sufficient permissions to access this page."
1184
  msgstr "شما مجوز کافی برای مشاهده‌ی این قسمت را ندارید."
1185
 
@@ -1187,7 +1245,7 @@ msgstr "شما مجوز کافی برای مشاهده‌ی این قسمت را
1187
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
1188
  msgstr "جدول‌های افزونه در پایگاه‌داده وجود ندارند! لطفاً %s را اجرا کنید برای نصب %s."
1189
 
1190
- #: wp-statistics.php:237
1191
  msgid "WP Statistics %s installed on"
1192
  msgstr "افزونه آمار وردپرس نگارش %s نصب شده است"
1193
 
@@ -1235,9 +1293,9 @@ msgstr "browscap در حال حاضر در نسخه فعلی!"
1235
  msgid "Browscap.ini update on"
1236
  msgstr "Browscap.ini به روز رسانی شد"
1237
 
1238
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1239
  #. Plugin URI of the plugin/theme
1240
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1241
  #. Author URI of the plugin/theme
1242
  msgid "http://wp-statistics.com/"
1243
  msgstr ""
@@ -1364,8 +1422,8 @@ msgid "Click to toggle"
1364
  msgstr "برای باز و بستن کلیک کنید"
1365
 
1366
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1367
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:346
1368
- #: wp-statistics.php:422
1369
  msgid "Browsers"
1370
  msgstr "مرورگرها"
1371
 
@@ -1394,35 +1452,35 @@ msgstr "توجه: در حال حاظر استثنائات برای رکورده
1394
  msgid "Exclusions Statistics"
1395
  msgstr "استثنائات آمار"
1396
 
1397
- #: includes/functions/functions.php:879
1398
  msgid "10 Days"
1399
  msgstr "10 روز گذشته"
1400
 
1401
- #: includes/functions/functions.php:879
1402
  msgid "20 Days"
1403
  msgstr "20 روز گذشته"
1404
 
1405
- #: includes/functions/functions.php:879
1406
  msgid "30 Days"
1407
  msgstr "30 روز گذشته"
1408
 
1409
- #: includes/functions/functions.php:879
1410
  msgid "2 Months"
1411
  msgstr "2 ماهه گذشته"
1412
 
1413
- #: includes/functions/functions.php:879
1414
  msgid "3 Months"
1415
  msgstr "3 ماهه گذشته"
1416
 
1417
- #: includes/functions/functions.php:879
1418
  msgid "6 Months"
1419
  msgstr "6 ماهه گذشته"
1420
 
1421
- #: includes/functions/functions.php:879
1422
  msgid "9 Months"
1423
  msgstr "9 ماهه گذشته"
1424
 
1425
- #: includes/functions/functions.php:879
1426
  msgid "1 Year"
1427
  msgstr "1 ساله گذشته"
1428
 
@@ -1471,28 +1529,28 @@ msgstr "بازدیدکننده"
1471
  msgid "Latest Search Word Statistics"
1472
  msgstr "آخرین آمار کلمات جستجو شده"
1473
 
1474
- #: includes/log/last-search.php:100 includes/log/last-visitor.php:101
1475
  #: includes/log/online.php:50 includes/log/widgets/google.map.php:84
1476
  #: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
1477
- #: includes/log/widgets/words.php:36
1478
  msgid "#hash#"
1479
  msgstr "#hash#"
1480
 
1481
- #: includes/log/last-search.php:105 includes/log/last-visitor.php:106
1482
  #: includes/log/online.php:55 includes/log/top-referring.php:71
1483
- #: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:43
1484
  #: includes/settings/tabs/wps-overview-display.php:33
1485
  #: includes/settings/tabs/wps-overview-display.php:113
1486
  msgid "Map"
1487
  msgstr "نقشه"
1488
 
1489
- #: includes/log/last-search.php:142 includes/log/last-visitor.php:139
1490
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1491
  #: includes/log/top-referring.php:125
1492
  msgid "Page"
1493
  msgstr "صفحه"
1494
 
1495
- #: includes/log/last-search.php:142 includes/log/last-visitor.php:139
1496
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1497
  #: includes/log/top-referring.php:125
1498
  msgid "From"
@@ -1681,8 +1739,8 @@ msgid "Time: %s"
1681
  msgstr "زمان: %s"
1682
 
1683
  #: includes/log/widgets/top.visitors.php:31
1684
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:273
1685
- #: wp-statistics.php:349 wp-statistics.php:425
1686
  msgid "Hits"
1687
  msgstr "بازدیدها"
1688
 
@@ -1724,11 +1782,11 @@ msgstr "اطلاعات پلت فرم %s با موفقیت حذف."
1724
  msgid "No platform data found to remove!"
1725
  msgstr "سکوی‌های مرورگر برای حذف شدن یافت نشد!"
1726
 
1727
- #: includes/functions/functions.php:967
1728
  msgid "%s table data deleted successfully."
1729
  msgstr "اطلاعات جدول %s با موفقیت حذف."
1730
 
1731
- #: includes/functions/functions.php:971
1732
  msgid "Error, %s not emptied!"
1733
  msgstr "خطا! %s خالی نیست!"
1734
 
@@ -1754,7 +1812,7 @@ msgstr "شاخص پایگاه‌داده"
1754
 
1755
  #: includes/optimization/tabs/wps-optimization-database.php:25
1756
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1757
- #: wp-statistics.php:347 wp-statistics.php:423
1758
  msgid "Countries"
1759
  msgstr "کشورها"
1760
 
@@ -1770,6 +1828,7 @@ msgid "Older installs of WP Statistics allow for duplicate entries in the visito
1770
  msgstr "در نصب‌های قدیمی افزونه آمارگیر داده‌های تکراری در گوشه‌ای از جدول بازدیدکنند‌‌گان ایجاد می‌شدند. نصب‌های جدیدتر در رابطه با این مورد توسط یک فهرست شاخص محافظت شده‌اند. برای ایجاد یک فهرست شاخص در نصب‌های قدیمی ابتدا باید داده‌های تکراری را پاک کنید. با کلیک برروی \"به روز رسانی\" ابتدا جدول بازدیدکننده‌گان را بررسی و سپس داده‌های تکراری را حذف و فهرست را اضافه می‌کند."
1771
 
1772
  #: includes/optimization/tabs/wps-optimization-database.php:41
 
1773
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1774
  msgstr "این عملیات زمان زیادی برای نصب تعدادی ردیف‌ها در جدل بازدیدکنندگان صرف می کند."
1775
 
@@ -1779,11 +1838,12 @@ msgstr "در نصب‌های قدیمی افزونه آمارگیر داده‌
1779
 
1780
  #: includes/optimization/tabs/wps-optimization-database.php:47
1781
  #: includes/optimization/tabs/wps-optimization-database.php:77
 
1782
  msgid "Congratulations, your installation is already up to date, nothing to do."
1783
  msgstr "تبریک می‌گویم، در حال حاضر نصب شما به‌روز است و مشکلی ندارد."
1784
 
1785
  #: includes/optimization/tabs/wps-optimization-export.php:8
1786
- #: includes/optimization/wps-optimization.php:183
1787
  msgid "Export"
1788
  msgstr "برون‌بری"
1789
 
@@ -1836,7 +1896,7 @@ msgstr "نکته: همانطوری که پایگاه‌داده را پاک سا
1836
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1837
  #: includes/settings/tabs/wps-general.php:138
1838
  #: includes/settings/tabs/wps-general.php:143 shortcode.php:133
1839
- #: wp-statistics.php:356 wp-statistics.php:432
1840
  msgid "Visitors"
1841
  msgstr "بازدیدکنندگان"
1842
 
@@ -2151,23 +2211,23 @@ msgstr "آدرس آی‌پی با مقادیر هش جایگزین می‌شود
2151
  msgid "Install routine complete."
2152
  msgstr "نصب کامل شد."
2153
 
2154
- #: includes/optimization/wps-optimization.php:182
2155
  msgid "Resources/Information"
2156
  msgstr "منابع/اطلاعات"
2157
 
2158
- #: includes/optimization/wps-optimization.php:184
2159
  msgid "Purging"
2160
  msgstr "پاک‌سازی"
2161
 
2162
- #: includes/optimization/wps-optimization.php:185
2163
  msgid "Database"
2164
  msgstr "پایگاه‌داده"
2165
 
2166
- #: includes/optimization/wps-optimization.php:186
2167
  msgid "Updates"
2168
  msgstr "به‌روز رسانی‌ها"
2169
 
2170
- #: includes/optimization/wps-optimization.php:187
2171
  msgid "Historical"
2172
  msgstr "تاریخچه"
2173
 
@@ -2317,7 +2377,7 @@ msgid "This is the honey pot for WP Statistics to use, do not delete."
2317
  msgstr "این گلدان عسل برای آمار WP برای استفاده، حذف نمی باشد."
2318
 
2319
  #: includes/settings/tabs/wps-access-level.php:23
2320
- #: includes/settings/wps-settings.php:109
2321
  msgid "Access Levels"
2322
  msgstr "سطح دسترسی"
2323
 
@@ -2350,8 +2410,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2350
  msgstr "اگر نیاز به راه‌حل‌های بیشتری در رابطه با نقش‌های کاربری وردپرس داشتید، نگاهی به افزونه %s بیندازید."
2351
 
2352
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2353
- #: includes/settings/wps-settings.php:110 wp-statistics.php:348
2354
- #: wp-statistics.php:424
2355
  msgid "Exclusions"
2356
  msgstr "استثنائات"
2357
 
@@ -2522,16 +2582,21 @@ msgstr "استثنائات خوراک RSS"
2522
  msgid "Exclude the RSS feeds for registering as a hit."
2523
  msgstr "حذف RSS خوراک برای ثبت نام به عنوان یک رسید."
2524
 
2525
- #: includes/settings/tabs/wps-browscap.php:22
2526
  msgid "browscap settings"
2527
  msgstr "تنظیمات browscap"
2528
 
2529
- #: includes/settings/tabs/wps-browscap.php:27
2530
  msgid "browscap usage"
2531
  msgstr "استفاده از browscap"
2532
 
2533
- #: includes/settings/tabs/wps-browscap.php:32
2534
- #: includes/settings/tabs/wps-browscap.php:56
 
 
 
 
 
2535
  #: includes/settings/tabs/wps-general.php:76
2536
  #: includes/settings/tabs/wps-general.php:92
2537
  #: includes/settings/tabs/wps-general.php:116
@@ -2547,9 +2612,6 @@ msgstr "استفاده از browscap"
2547
  #: includes/settings/tabs/wps-general.php:286
2548
  #: includes/settings/tabs/wps-general.php:325
2549
  #: includes/settings/tabs/wps-general.php:341
2550
- #: includes/settings/tabs/wps-geoip.php:47
2551
- #: includes/settings/tabs/wps-geoip.php:71
2552
- #: includes/settings/tabs/wps-geoip.php:104
2553
  #: includes/settings/tabs/wps-maintenance.php:40
2554
  #: includes/settings/tabs/wps-maintenance.php:64
2555
  #: includes/settings/tabs/wps-notifications.php:69
@@ -2564,33 +2626,35 @@ msgstr "استفاده از browscap"
2564
  msgid "Active"
2565
  msgstr "فعال"
2566
 
2567
- #: includes/settings/tabs/wps-browscap.php:33
2568
  msgid "The browscap database will be downloaded and used to detect robots."
2569
  msgstr "پایگاه داده browscap را دانلود و استفاده برای شناسایی ربات."
2570
 
2571
- #: includes/settings/tabs/wps-browscap.php:39
2572
  msgid "Update browscap Info"
2573
  msgstr "Browscap به روز رسانی اطلاعات"
2574
 
2575
- #: includes/settings/tabs/wps-browscap.php:44
2576
  msgid "Download browscap Database"
2577
  msgstr "دانلود browscap پایگاه داده"
2578
 
2579
- #: includes/settings/tabs/wps-browscap.php:45
2580
- #: includes/settings/tabs/wps-geoip.php:60
 
2581
  msgid "Save changes on this page to download the update."
2582
  msgstr "ذخیره‌ی تغییرات در این برگه و دریافت به‌روز رسانی"
2583
 
2584
- #: includes/settings/tabs/wps-browscap.php:51
2585
  msgid "Schedule weekly update of browscap DB"
2586
  msgstr "برنامه به روز رسانی هفتگی browscap دسی بل"
2587
 
2588
- #: includes/settings/tabs/wps-browscap.php:59
2589
- #: includes/settings/tabs/wps-geoip.php:74
 
2590
  msgid "Next update will be"
2591
  msgstr "به‌روز رسانی بعدی خواهد بود"
2592
 
2593
- #: includes/settings/tabs/wps-browscap.php:74
2594
  msgid "Download of the browscap database will be scheduled for once a week."
2595
  msgstr "دانلود بانک اطلاعاتی browscap برای یک بار در هفته طوری زمانبندی خواهد شد."
2596
 
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: includes/optimization/wps-optimization.php:173
14
+ msgid "Search table conversion complete, %d rows added."
15
+ msgstr ""
16
+
17
+ #: includes/optimization/tabs/wps-optimization-database.php:107
18
+ msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion."
19
+ msgstr ""
20
+
21
+ #: includes/optimization/tabs/wps-optimization-database.php:86
22
+ msgid "Search Table"
23
+ msgstr ""
24
+
25
+ #: includes/optimization/tabs/wps-optimization-database.php:91
26
+ msgid "Convert"
27
+ msgstr ""
28
+
29
+ #: includes/optimization/tabs/wps-optimization-database.php:100
30
+ msgid "Convert Now!"
31
+ msgstr ""
32
+
33
+ #: includes/optimization/tabs/wps-optimization-database.php:101
34
+ msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion, however the old data must first be converted to the new format before it can be used."
35
+ msgstr ""
36
+
37
+ #: includes/log/exclusions.php:24
38
+ msgid "Referrer Spam"
39
+ msgstr ""
40
+
41
+ #: includes/settings/tabs/wps-externals.php:277
42
+ msgid "Download of the Piwik Referrer Spam Blacklist database will be scheduled for once a week."
43
+ msgstr ""
44
+
45
+ #: includes/settings/wps-settings.php:105
46
+ msgid "Externals"
47
+ msgstr ""
48
+
49
+ #: includes/settings/tabs/wps-externals.php:219
50
+ msgid "Piwik Referrer Spam Blacklist settings"
51
+ msgstr ""
52
+
53
+ #: includes/settings/tabs/wps-externals.php:254
54
+ msgid "Schedule weekly update of Piwik Referrer Spam Blacklist DB"
55
+ msgstr ""
56
+
57
+ #: includes/settings/tabs/wps-externals.php:247
58
+ msgid "Download Piwik Referrer Spam Blacklist Database"
59
+ msgstr ""
60
+
61
+ #: includes/settings/tabs/wps-externals.php:242
62
+ msgid "Update Piwik Referrer Spam Blacklist Info"
63
+ msgstr ""
64
+
65
+ #: includes/settings/tabs/wps-externals.php:236
66
+ msgid "The Piwik Referrer Spam Blacklist database will be downloaded and used to detect referrer spam."
67
+ msgstr ""
68
+
69
+ #: includes/settings/tabs/wps-externals.php:224
70
+ msgid "Referrer spam blacklist is provided by Piwik, available from %s."
71
+ msgstr ""
72
+
73
+ #: includes/settings/tabs/wps-externals.php:230
74
+ msgid "Piwik Referrer Spam Blacklist usage"
75
+ msgstr ""
76
+
77
  #: includes/settings/tabs/wps-exclusions.php:148
78
  msgid "Treat corrupt browser info as a bot"
79
  msgstr ""
222
  msgid "Have you thought about donating to WP Statistics?"
223
  msgstr "آیا در مورد حمایت به آمار وردپرس فکر کرده‌اید؟"
224
 
225
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
226
  msgid "Donate"
227
  msgstr "حمایت مالی"
228
 
258
  msgid "Time Frame"
259
  msgstr "قاب زمان"
260
 
261
+ #: includes/functions/functions.php:981
262
  msgid "to"
263
  msgstr "تا"
264
 
265
+ #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
266
  msgid "Go"
267
  msgstr "برو"
268
 
306
  msgid "Filtered by"
307
  msgstr "فیلتر توسط"
308
 
309
+ #: includes/functions/functions.php:974 includes/functions/functions.php:977
310
  msgid "Range"
311
  msgstr "از"
312
 
313
+ #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
314
  msgid "MM/DD/YYYY"
315
  msgstr "MM/DD/YYYY"
316
 
354
  msgid "Last 7 Days (Week)"
355
  msgstr "7 روز گذشته (هفته)"
356
 
357
+ #: includes/functions/functions.php:405
358
  msgid "Yahoo!"
359
  msgstr "یاهو!"
360
 
361
+ #: includes/functions/functions.php:406
362
  msgid "Yandex"
363
  msgstr "یاندکس"
364
 
365
+ #: includes/functions/functions.php:402
366
  msgid "clearch.org"
367
  msgstr "clearch.org"
368
 
369
+ #: includes/functions/functions.php:403
370
  msgid "DuckDuckGo"
371
  msgstr "داک‌داک‌گو"
372
 
373
+ #: includes/functions/functions.php:401
374
  msgid "Bing"
375
  msgstr "بینگ"
376
 
377
+ #: includes/functions/functions.php:400
378
  msgid "Baidu"
379
  msgstr "بایدو"
380
 
477
  msgstr "ضریب محاسبه هر بازدید کننده را در آمار مشخص می‌کند. درحال حاضر %s است."
478
 
479
  #: includes/settings/tabs/wps-general.php:177
480
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
481
+ #: wp-statistics.php:431
482
  msgid "Pages"
483
  msgstr "برگه‌ها"
484
 
562
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
563
  msgstr "اضافه شدن جمع کل به نمودار آمار ورودی از موتورهای جستجو"
564
 
565
+ #: includes/settings/tabs/wps-externals.php:32
566
  msgid "GeoIP settings"
567
  msgstr "تنظیمات GeoIP"
568
 
569
+ #: includes/settings/tabs/wps-externals.php:37
570
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
571
  msgstr "سرویس ارائه‌دهنده مکان‌نمای IP با GeoLite2 ایجاد شده و توسط MaxMind ساخته شده است و در %s قابل دسترس است."
572
 
573
+ #: includes/settings/tabs/wps-externals.php:47
574
  msgid "GeoIP collection"
575
  msgstr "مجموعه GeoIP"
576
 
577
+ #: includes/settings/tabs/wps-externals.php:53
578
  msgid "For get more information and location (country) from visitor, enable this feature."
579
  msgstr "برای دریافت اطلاعات بیشتر و موقعیت (کشور) بازدیدکننده، این امکان را فعال کنید."
580
 
581
+ #: includes/settings/tabs/wps-externals.php:59
582
  msgid "Update GeoIP Info"
583
  msgstr "به روز رسانی اطلاعات GeoIP"
584
 
585
+ #: includes/settings/tabs/wps-externals.php:64
586
  msgid "Download GeoIP Database"
587
  msgstr "دریافت پایگاه‌داده GeoIP"
588
 
589
+ #: includes/settings/tabs/wps-externals.php:71
590
  msgid "Schedule monthly update of GeoIP DB"
591
  msgstr "برنامه‌ریزی به‌روزرسانی ماهیانه پایگاه‌داده‌ی GeoIP"
592
 
593
+ #: includes/settings/tabs/wps-externals.php:97
594
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
595
  msgstr "دریافت پایگاه‌داده‌ی GeoIP در 2 روز بعد از اولین سه‌شنبه در هرماه."
596
 
597
+ #: includes/settings/tabs/wps-externals.php:98
598
  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)."
599
  msgstr "این امکان حتی داده‌های کمتر از 1 کیلوبایت را نیز دریافت می‌کند (که به معنای داده‌های همراه افزونه است)."
600
 
601
+ #: includes/settings/tabs/wps-externals.php:104
602
  msgid "Populate missing GeoIP after update of GeoIP DB"
603
  msgstr "جمعیت‌های از دست رفته GeoIP بعد از به‌روز سانی پایگاه‌داده‌ی GeoIP"
604
 
605
+ #: includes/settings/tabs/wps-externals.php:110
606
  msgid "Update any missing GeoIP data after downloading a new database."
607
  msgstr "به‌روز رسانی هر داده‌ی از دست‌رفته‌ی GeoIP بعد از دریافت پایگاه داده‌ی جدید."
608
 
609
+ #: includes/settings/tabs/wps-externals.php:116
610
  msgid "Country code for private IP addresses"
611
  msgstr "کد کشور برای آدرس های IP خصوصی"
612
 
613
+ #: includes/settings/tabs/wps-externals.php:121
614
  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."
615
  msgstr "استاندارد دو کد بین المللی نامه کشور (به عنوان مثال. ایالات متحده = ایالات متحده، CA = کانادا، و غیره) برای خصوصی (غیر قابل دسترسی) آدرس IP (به عنوان مثال. 10.0.0.1، 192.158.1.1، 127.0.0.1، و غیره). استفاده از &quot;000&quot; (سه صفر) به استفاده از &quot;ناشناخته&quot; به عنوان کد کشور."
616
 
617
+ #: includes/settings/tabs/wps-externals.php:132
618
  msgid "GeoIP collection is disabled due to the following reasons:"
619
  msgstr "مجموعه GeoIP با توجه به دلایل زیر غیرفعال شده است:"
620
 
621
+ #: includes/settings/tabs/wps-externals.php:135
622
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
623
  msgstr "مجموعه GeoIP به PHP نسخه %s و بالاتر نیاز دارد، در حال حاضر با توجه به پایین بودن نسخه PHP شما، غیرفعال است"
624
 
625
+ #: includes/settings/tabs/wps-externals.php:140
626
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
627
  msgstr "مجموعه‌ی GeoIP نیاز به ماژول cURL در PHP دارد و نمی‌تواند در نگارش PHP شما بارگزاری شود!"
628
 
629
+ #: includes/settings/tabs/wps-externals.php:146
630
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
631
  msgstr "مجموعه‌ی GeoIP نیاز به ماژول BC Math در PHP دارد و نمی‌تواند در نگارش PHP شما بارگزاری شود!"
632
 
633
+ #: includes/settings/tabs/wps-externals.php:152
634
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
635
  msgstr "حالت ایمنی PHP شناسایی نشد! مجموعه GeoIP توسط حالت ایمنی PHP پشتیبانی نمی‌شود!"
636
 
690
 
691
  #: includes/log/exclusions.php:24
692
  #: includes/settings/tabs/wps-notifications.php:76
 
693
  msgid "GeoIP"
694
  msgstr "GeoIP"
695
 
714
  msgstr "ارسال گزارش زمانیکه افزونه به‌روز شد."
715
 
716
  #: includes/settings/tabs/wps-notifications.php:111
717
+ #: includes/settings/tabs/wps-notifications.php:116 schedule.php:221
718
  msgid "Statistical reporting"
719
  msgstr "گزارش آماری"
720
 
763
  msgstr "هر کدکوتاهی توسط وردپرس شما پشتیبانی میشود. کدهای کوتاه در افزونه آمار (لیست کدها در راهنمای کاربری موجود است) در بدنه‌ی متن پشتیبانی می‌شوند. نمونه‌هایی برای مثال:"
764
 
765
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
766
+ #: widget.php:245 wp-statistics.php:536
767
  msgid "User Online"
768
  msgstr "کاربران حاضر"
769
 
806
  msgstr "خلاصه آمار"
807
 
808
  #: includes/settings/tabs/wps-overview-display.php:28
809
+ #: includes/settings/wps-settings.php:108
810
  msgid "About"
811
  msgstr "درباره"
812
 
856
  msgid "Map type"
857
  msgstr "نوع نقشه"
858
 
859
+ #: includes/functions/functions.php:404
860
  #: includes/settings/tabs/wps-overview-display.php:128
861
  msgid "Google"
862
  msgstr "گوگل"
966
  msgid "Remove data and settings, this action cannot be undone."
967
  msgstr "حذف داده‌ها و تنظیمات، این عمل غیرقابل برگشت است."
968
 
969
+ #: includes/settings/wps-settings.php:100
970
  msgid "General"
971
  msgstr "عمومی"
972
 
973
+ #: includes/settings/wps-settings.php:101
974
  msgid "Notifications"
975
  msgstr "اطلاعیه‌ها"
976
 
977
+ #: includes/settings/wps-settings.php:102
978
  msgid "Dashboard/Overview"
979
  msgstr "پیشخوان/در یک نگاه"
980
 
981
+ #: includes/settings/wps-settings.php:106
 
 
 
 
982
  msgid "Maintenance"
983
  msgstr "تعمیر و نگه‌داری"
984
 
985
+ #: includes/settings/wps-settings.php:107
986
  msgid "Removal"
987
  msgstr "حذف"
988
 
989
  #: includes/settings/tabs/wps-access-level.php:85
 
990
  #: includes/settings/tabs/wps-exclusions.php:234
991
+ #: includes/settings/tabs/wps-externals.php:284
992
  #: includes/settings/tabs/wps-general.php:349
 
993
  #: includes/settings/tabs/wps-maintenance.php:84
994
  #: includes/settings/tabs/wps-notifications.php:201
995
  #: includes/settings/tabs/wps-overview-display.php:388
1009
  msgid "Once Every 4 Weeks"
1010
  msgstr "هر 4 هفته"
1011
 
1012
+ #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
1013
  msgid "Statistics"
1014
  msgstr "آمار"
1015
 
1081
  msgid "Items"
1082
  msgstr "آیتم‌ها"
1083
 
1084
+ #: widget.php:254 wp-statistics.php:561
1085
  msgid "Yesterday visit"
1086
  msgstr "بازدید دیروز"
1087
 
1109
  msgid "WP Statistics has been removed, please disable and delete it."
1110
  msgstr "افزونه آمار وردپرس حذف شد، لطفاً افزونه را غیرفعال و پاک کنید."
1111
 
1112
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1113
  #. Plugin Name of the plugin/theme
1114
  #: wp-statistics.php:37
1115
  msgid "WP Statistics"
1116
  msgstr "آمار وردپرس"
1117
 
1118
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1119
  #. Description of the plugin/theme
1120
  #: wp-statistics.php:38
1121
  msgid "Complete statistics for your WordPress site."
1145
  msgid "Setting page > GeoIP"
1146
  msgstr "صفحه تنظیمات > GeoIP"
1147
 
1148
+ #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
1149
  msgid "Settings"
1150
  msgstr "تنظیمات"
1151
 
1152
+ #: wp-statistics.php:265
1153
  msgid "Click here to visit the plugin on WordPress.org"
1154
  msgstr "برای مشاهده افزونه در Wordpress.org کلیک کنید."
1155
 
1156
+ #: wp-statistics.php:265
1157
  msgid "Visit WordPress.org page"
1158
  msgstr "مشاهده برگه‌ی Wordpress.org"
1159
 
1160
+ #: wp-statistics.php:268
1161
  msgid "Click here to rate and review this plugin on WordPress.org"
1162
  msgstr "برای دادن امتیاز و بررسی افزونه در Wordpress.org کلیک کنید."
1163
 
1164
+ #: wp-statistics.php:268
1165
  msgid "Rate this plugin"
1166
  msgstr "امتیاز به افزونه"
1167
 
1168
+ #: wp-statistics.php:312
1169
  msgid "WP Statistics - Hits"
1170
  msgstr "آمار وردپرس - بازدید"
1171
 
1172
+ #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
1173
  msgid "Overview"
1174
  msgstr "مرور کلی"
1175
 
1176
+ #: wp-statistics.php:354 wp-statistics.php:430
1177
  msgid "Online"
1178
  msgstr "آنلاین"
1179
 
1180
+ #: wp-statistics.php:356 wp-statistics.php:432
1181
  msgid "Referrers"
1182
  msgstr "ارجاع‌دهنده‌ها"
1183
 
1184
+ #: shortcode.php:135 wp-statistics.php:357 wp-statistics.php:433
1185
  msgid "Searches"
1186
  msgstr "جستجوها"
1187
 
1188
+ #: wp-statistics.php:358 wp-statistics.php:434
1189
  msgid "Search Words"
1190
  msgstr "کلمات جستجو شده"
1191
 
1192
+ #: wp-statistics.php:359 wp-statistics.php:435
1193
  msgid "Top Visitors Today"
1194
  msgstr "برترین بازدیدکنندگان"
1195
 
1196
+ #: wp-statistics.php:364 wp-statistics.php:437
1197
  msgid "Optimization"
1198
  msgstr "بهینه سازی"
1199
 
1200
+ #: wp-statistics.php:370 wp-statistics.php:401
1201
  msgid "Manual"
1202
  msgstr "راهنما"
1203
 
1204
+ #: wp-statistics.php:416
1205
  msgid "Site"
1206
  msgstr "سایت"
1207
 
1208
+ #: wp-statistics.php:417
1209
  msgid "Options"
1210
  msgstr "تنظیمات"
1211
 
1212
+ #: wp-statistics.php:543
1213
  msgid "Today visitor"
1214
  msgstr "بازدید کننده امروز"
1215
 
1216
+ #: wp-statistics.php:549
1217
  msgid "Today visit"
1218
  msgstr "بازدید امروز"
1219
 
1220
+ #: wp-statistics.php:555
1221
  msgid "Yesterday visitor"
1222
  msgstr "بازدید کننده دیروز"
1223
 
1224
+ #: wp-statistics.php:567
1225
  msgid "View Stats"
1226
  msgstr "نمایش آمار"
1227
 
1228
+ #: wp-statistics.php:591
1229
  msgid "Download ODF file"
1230
  msgstr "دریافت فایل ODF"
1231
 
1232
+ #: wp-statistics.php:592
1233
  msgid "Download HTML file"
1234
  msgstr "دریافت فایل HTML"
1235
 
1236
+ #: wp-statistics.php:596
1237
  msgid "Manual file not found."
1238
  msgstr "راهنما یافت نشد."
1239
 
1240
+ #: wp-statistics.php:663 wp-statistics.php:770 wp-statistics.php:804
1241
  msgid "You do not have sufficient permissions to access this page."
1242
  msgstr "شما مجوز کافی برای مشاهده‌ی این قسمت را ندارید."
1243
 
1245
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
1246
  msgstr "جدول‌های افزونه در پایگاه‌داده وجود ندارند! لطفاً %s را اجرا کنید برای نصب %s."
1247
 
1248
+ #: wp-statistics.php:241
1249
  msgid "WP Statistics %s installed on"
1250
  msgstr "افزونه آمار وردپرس نگارش %s نصب شده است"
1251
 
1293
  msgid "Browscap.ini update on"
1294
  msgstr "Browscap.ini به روز رسانی شد"
1295
 
1296
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1297
  #. Plugin URI of the plugin/theme
1298
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1299
  #. Author URI of the plugin/theme
1300
  msgid "http://wp-statistics.com/"
1301
  msgstr ""
1422
  msgstr "برای باز و بستن کلیک کنید"
1423
 
1424
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1425
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
1426
+ #: wp-statistics.php:426
1427
  msgid "Browsers"
1428
  msgstr "مرورگرها"
1429
 
1452
  msgid "Exclusions Statistics"
1453
  msgstr "استثنائات آمار"
1454
 
1455
+ #: includes/functions/functions.php:931
1456
  msgid "10 Days"
1457
  msgstr "10 روز گذشته"
1458
 
1459
+ #: includes/functions/functions.php:931
1460
  msgid "20 Days"
1461
  msgstr "20 روز گذشته"
1462
 
1463
+ #: includes/functions/functions.php:931
1464
  msgid "30 Days"
1465
  msgstr "30 روز گذشته"
1466
 
1467
+ #: includes/functions/functions.php:931
1468
  msgid "2 Months"
1469
  msgstr "2 ماهه گذشته"
1470
 
1471
+ #: includes/functions/functions.php:931
1472
  msgid "3 Months"
1473
  msgstr "3 ماهه گذشته"
1474
 
1475
+ #: includes/functions/functions.php:931
1476
  msgid "6 Months"
1477
  msgstr "6 ماهه گذشته"
1478
 
1479
+ #: includes/functions/functions.php:931
1480
  msgid "9 Months"
1481
  msgstr "9 ماهه گذشته"
1482
 
1483
+ #: includes/functions/functions.php:931
1484
  msgid "1 Year"
1485
  msgstr "1 ساله گذشته"
1486
 
1529
  msgid "Latest Search Word Statistics"
1530
  msgstr "آخرین آمار کلمات جستجو شده"
1531
 
1532
+ #: includes/log/last-search.php:110 includes/log/last-visitor.php:101
1533
  #: includes/log/online.php:50 includes/log/widgets/google.map.php:84
1534
  #: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
1535
+ #: includes/log/widgets/words.php:46
1536
  msgid "#hash#"
1537
  msgstr "#hash#"
1538
 
1539
+ #: includes/log/last-search.php:115 includes/log/last-visitor.php:106
1540
  #: includes/log/online.php:55 includes/log/top-referring.php:71
1541
+ #: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
1542
  #: includes/settings/tabs/wps-overview-display.php:33
1543
  #: includes/settings/tabs/wps-overview-display.php:113
1544
  msgid "Map"
1545
  msgstr "نقشه"
1546
 
1547
+ #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1548
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1549
  #: includes/log/top-referring.php:125
1550
  msgid "Page"
1551
  msgstr "صفحه"
1552
 
1553
+ #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1554
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1555
  #: includes/log/top-referring.php:125
1556
  msgid "From"
1739
  msgstr "زمان: %s"
1740
 
1741
  #: includes/log/widgets/top.visitors.php:31
1742
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
1743
+ #: wp-statistics.php:353 wp-statistics.php:429
1744
  msgid "Hits"
1745
  msgstr "بازدیدها"
1746
 
1782
  msgid "No platform data found to remove!"
1783
  msgstr "سکوی‌های مرورگر برای حذف شدن یافت نشد!"
1784
 
1785
+ #: includes/functions/functions.php:1019
1786
  msgid "%s table data deleted successfully."
1787
  msgstr "اطلاعات جدول %s با موفقیت حذف."
1788
 
1789
+ #: includes/functions/functions.php:1023
1790
  msgid "Error, %s not emptied!"
1791
  msgstr "خطا! %s خالی نیست!"
1792
 
1812
 
1813
  #: includes/optimization/tabs/wps-optimization-database.php:25
1814
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1815
+ #: wp-statistics.php:351 wp-statistics.php:427
1816
  msgid "Countries"
1817
  msgstr "کشورها"
1818
 
1828
  msgstr "در نصب‌های قدیمی افزونه آمارگیر داده‌های تکراری در گوشه‌ای از جدول بازدیدکنند‌‌گان ایجاد می‌شدند. نصب‌های جدیدتر در رابطه با این مورد توسط یک فهرست شاخص محافظت شده‌اند. برای ایجاد یک فهرست شاخص در نصب‌های قدیمی ابتدا باید داده‌های تکراری را پاک کنید. با کلیک برروی \"به روز رسانی\" ابتدا جدول بازدیدکننده‌گان را بررسی و سپس داده‌های تکراری را حذف و فهرست را اضافه می‌کند."
1829
 
1830
  #: includes/optimization/tabs/wps-optimization-database.php:41
1831
+ #: includes/optimization/tabs/wps-optimization-database.php:102
1832
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1833
  msgstr "این عملیات زمان زیادی برای نصب تعدادی ردیف‌ها در جدل بازدیدکنندگان صرف می کند."
1834
 
1838
 
1839
  #: includes/optimization/tabs/wps-optimization-database.php:47
1840
  #: includes/optimization/tabs/wps-optimization-database.php:77
1841
+ #: includes/optimization/tabs/wps-optimization-database.php:108
1842
  msgid "Congratulations, your installation is already up to date, nothing to do."
1843
  msgstr "تبریک می‌گویم، در حال حاضر نصب شما به‌روز است و مشکلی ندارد."
1844
 
1845
  #: includes/optimization/tabs/wps-optimization-export.php:8
1846
+ #: includes/optimization/wps-optimization.php:212
1847
  msgid "Export"
1848
  msgstr "برون‌بری"
1849
 
1896
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1897
  #: includes/settings/tabs/wps-general.php:138
1898
  #: includes/settings/tabs/wps-general.php:143 shortcode.php:133
1899
+ #: wp-statistics.php:360 wp-statistics.php:436
1900
  msgid "Visitors"
1901
  msgstr "بازدیدکنندگان"
1902
 
2211
  msgid "Install routine complete."
2212
  msgstr "نصب کامل شد."
2213
 
2214
+ #: includes/optimization/wps-optimization.php:211
2215
  msgid "Resources/Information"
2216
  msgstr "منابع/اطلاعات"
2217
 
2218
+ #: includes/optimization/wps-optimization.php:213
2219
  msgid "Purging"
2220
  msgstr "پاک‌سازی"
2221
 
2222
+ #: includes/optimization/wps-optimization.php:214
2223
  msgid "Database"
2224
  msgstr "پایگاه‌داده"
2225
 
2226
+ #: includes/optimization/wps-optimization.php:215
2227
  msgid "Updates"
2228
  msgstr "به‌روز رسانی‌ها"
2229
 
2230
+ #: includes/optimization/wps-optimization.php:216
2231
  msgid "Historical"
2232
  msgstr "تاریخچه"
2233
 
2377
  msgstr "این گلدان عسل برای آمار WP برای استفاده، حذف نمی باشد."
2378
 
2379
  #: includes/settings/tabs/wps-access-level.php:23
2380
+ #: includes/settings/wps-settings.php:103
2381
  msgid "Access Levels"
2382
  msgstr "سطح دسترسی"
2383
 
2410
  msgstr "اگر نیاز به راه‌حل‌های بیشتری در رابطه با نقش‌های کاربری وردپرس داشتید، نگاهی به افزونه %s بیندازید."
2411
 
2412
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2413
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:352
2414
+ #: wp-statistics.php:428
2415
  msgid "Exclusions"
2416
  msgstr "استثنائات"
2417
 
2582
  msgid "Exclude the RSS feeds for registering as a hit."
2583
  msgstr "حذف RSS خوراک برای ثبت نام به عنوان یک رسید."
2584
 
2585
+ #: includes/settings/tabs/wps-externals.php:162
2586
  msgid "browscap settings"
2587
  msgstr "تنظیمات browscap"
2588
 
2589
+ #: includes/settings/tabs/wps-externals.php:167
2590
  msgid "browscap usage"
2591
  msgstr "استفاده از browscap"
2592
 
2593
+ #: includes/settings/tabs/wps-externals.php:52
2594
+ #: includes/settings/tabs/wps-externals.php:76
2595
+ #: includes/settings/tabs/wps-externals.php:109
2596
+ #: includes/settings/tabs/wps-externals.php:172
2597
+ #: includes/settings/tabs/wps-externals.php:196
2598
+ #: includes/settings/tabs/wps-externals.php:235
2599
+ #: includes/settings/tabs/wps-externals.php:259
2600
  #: includes/settings/tabs/wps-general.php:76
2601
  #: includes/settings/tabs/wps-general.php:92
2602
  #: includes/settings/tabs/wps-general.php:116
2612
  #: includes/settings/tabs/wps-general.php:286
2613
  #: includes/settings/tabs/wps-general.php:325
2614
  #: includes/settings/tabs/wps-general.php:341
 
 
 
2615
  #: includes/settings/tabs/wps-maintenance.php:40
2616
  #: includes/settings/tabs/wps-maintenance.php:64
2617
  #: includes/settings/tabs/wps-notifications.php:69
2626
  msgid "Active"
2627
  msgstr "فعال"
2628
 
2629
+ #: includes/settings/tabs/wps-externals.php:173
2630
  msgid "The browscap database will be downloaded and used to detect robots."
2631
  msgstr "پایگاه داده browscap را دانلود و استفاده برای شناسایی ربات."
2632
 
2633
+ #: includes/settings/tabs/wps-externals.php:179
2634
  msgid "Update browscap Info"
2635
  msgstr "Browscap به روز رسانی اطلاعات"
2636
 
2637
+ #: includes/settings/tabs/wps-externals.php:184
2638
  msgid "Download browscap Database"
2639
  msgstr "دانلود browscap پایگاه داده"
2640
 
2641
+ #: includes/settings/tabs/wps-externals.php:65
2642
+ #: includes/settings/tabs/wps-externals.php:185
2643
+ #: includes/settings/tabs/wps-externals.php:248
2644
  msgid "Save changes on this page to download the update."
2645
  msgstr "ذخیره‌ی تغییرات در این برگه و دریافت به‌روز رسانی"
2646
 
2647
+ #: includes/settings/tabs/wps-externals.php:191
2648
  msgid "Schedule weekly update of browscap DB"
2649
  msgstr "برنامه به روز رسانی هفتگی browscap دسی بل"
2650
 
2651
+ #: includes/settings/tabs/wps-externals.php:79
2652
+ #: includes/settings/tabs/wps-externals.php:199
2653
+ #: includes/settings/tabs/wps-externals.php:262
2654
  msgid "Next update will be"
2655
  msgstr "به‌روز رسانی بعدی خواهد بود"
2656
 
2657
+ #: includes/settings/tabs/wps-externals.php:214
2658
  msgid "Download of the browscap database will be scheduled for once a week."
2659
  msgstr "دانلود بانک اطلاعاتی browscap برای یک بار در هفته طوری زمانبندی خواهد شد."
2660
 
languages/wp_statistics-fr_FR.mo CHANGED
Binary file
languages/wp_statistics-fr_FR.po CHANGED
@@ -10,6 +10,70 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  #: includes/settings/tabs/wps-exclusions.php:148
14
  msgid "Treat corrupt browser info as a bot"
15
  msgstr ""
@@ -158,7 +222,7 @@ msgstr ""
158
  msgid "Have you thought about donating to WP Statistics?"
159
  msgstr ""
160
 
161
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:362
162
  msgid "Donate"
163
  msgstr ""
164
 
@@ -194,11 +258,11 @@ msgstr ""
194
  msgid "Time Frame"
195
  msgstr ""
196
 
197
- #: includes/functions/functions.php:929
198
  msgid "to"
199
  msgstr "jusqu'à"
200
 
201
- #: includes/functions/functions.php:929 includes/log/top-visitors.php:29
202
  msgid "Go"
203
  msgstr "Aller"
204
 
@@ -242,11 +306,11 @@ msgstr "Certains version précédentes de WP Statistics comptabilisent des doubl
242
  msgid "Filtered by"
243
  msgstr "Filtré par"
244
 
245
- #: includes/functions/functions.php:922 includes/functions/functions.php:925
246
  msgid "Range"
247
  msgstr "Intervalle"
248
 
249
- #: includes/functions/functions.php:929 includes/log/top-visitors.php:29
250
  msgid "MM/DD/YYYY"
251
  msgstr "MM/JJ/AAAA"
252
 
@@ -290,27 +354,27 @@ msgstr "30 derniers jours (un mois)"
290
  msgid "Last 7 Days (Week)"
291
  msgstr "7 derniers jours (Semaine)"
292
 
293
- #: includes/functions/functions.php:403
294
  msgid "Yahoo!"
295
  msgstr "Yahoo!"
296
 
297
- #: includes/functions/functions.php:404
298
  msgid "Yandex"
299
  msgstr "Yandex"
300
 
301
- #: includes/functions/functions.php:400
302
  msgid "clearch.org"
303
  msgstr "clearch.org"
304
 
305
- #: includes/functions/functions.php:401
306
  msgid "DuckDuckGo"
307
  msgstr "DuckDuckGo"
308
 
309
- #: includes/functions/functions.php:399
310
  msgid "Bing"
311
  msgstr "Bing"
312
 
313
- #: includes/functions/functions.php:398
314
  msgid "Baidu"
315
  msgstr "Baidu"
316
 
@@ -413,8 +477,8 @@ msgid "For each visit to account for several hits. Currently %s."
413
  msgstr "Pour chaque visite tenir compte de plusieurs hits. Actuellement %s."
414
 
415
  #: includes/settings/tabs/wps-general.php:177
416
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:351
417
- #: wp-statistics.php:427
418
  msgid "Pages"
419
  msgstr "Pages"
420
 
@@ -498,75 +562,75 @@ msgstr "Inclure les totaux"
498
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
499
  msgstr "Ajouter une ligne total dans le tableau avec des valeurs multiples, telles que les références de moteur de recherche"
500
 
501
- #: includes/settings/tabs/wps-geoip.php:27
502
  msgid "GeoIP settings"
503
  msgstr "Paramètres de GeoIP"
504
 
505
- #: includes/settings/tabs/wps-geoip.php:32
506
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
507
  msgstr "Services de localisation IP fournis par GeoLite2 créé par MaxMind, disponible à l'adresse %s."
508
 
509
- #: includes/settings/tabs/wps-geoip.php:42
510
  msgid "GeoIP collection"
511
  msgstr "Collecte GeoIP"
512
 
513
- #: includes/settings/tabs/wps-geoip.php:48
514
  msgid "For get more information and location (country) from visitor, enable this feature."
515
  msgstr "Pour obtenir plus de renseignements sur le visiteur et sa localisation (pays), activer cette fonctionnalité."
516
 
517
- #: includes/settings/tabs/wps-geoip.php:54
518
  msgid "Update GeoIP Info"
519
  msgstr "Mise à jour des informations GeoIP"
520
 
521
- #: includes/settings/tabs/wps-geoip.php:59
522
  msgid "Download GeoIP Database"
523
  msgstr "Télécharger la base de données GeoIP"
524
 
525
- #: includes/settings/tabs/wps-geoip.php:66
526
  msgid "Schedule monthly update of GeoIP DB"
527
  msgstr "Programmer la mise à jour mensuelle de la base de données GeoIP"
528
 
529
- #: includes/settings/tabs/wps-geoip.php:92
530
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
531
  msgstr "Le téléchargement de la base de données GeoIP est programmé 2 jours après le premier mardi du mois."
532
 
533
- #: includes/settings/tabs/wps-geoip.php:93
534
  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)."
535
  msgstr "Cette option va également télécharger la base de données si la taille du fichier local est inférieur à 1k (ce qui signifie généralement que le stub qui s'installe avec le plugin est encore présent)."
536
 
537
- #: includes/settings/tabs/wps-geoip.php:99
538
  msgid "Populate missing GeoIP after update of GeoIP DB"
539
  msgstr "Compléter les données GeoIP manquantes après la mise à jour de la base de données GeoIP"
540
 
541
- #: includes/settings/tabs/wps-geoip.php:105
542
  msgid "Update any missing GeoIP data after downloading a new database."
543
  msgstr "Mettre à jour les données GeoIP manquantes après le téléchargement d'une nouvelle base de données."
544
 
545
- #: includes/settings/tabs/wps-geoip.php:111
546
  msgid "Country code for private IP addresses"
547
  msgstr "Code pays pour des adresses IP privées"
548
 
549
- #: includes/settings/tabs/wps-geoip.php:116
550
  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."
551
  msgstr "La norme code à deux lettres du pays internationale (ie. US = États-Unis, CA = Canada, etc.) pour les adresses IP privées (non routables) (ie. 10.0.0.1, 192.158.1.1, 127.0.0.1, etc.). Utilisez \"000\" (trois zéros) pour spécifier \"Inconnu\" en tant que code du pays."
552
 
553
- #: includes/settings/tabs/wps-geoip.php:127
554
  msgid "GeoIP collection is disabled due to the following reasons:"
555
  msgstr "La collecte GeoIP est désactivée pour les raisons suivantes :"
556
 
557
- #: includes/settings/tabs/wps-geoip.php:130
558
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
559
  msgstr "La collecte GeoIP nécessite une version PHP %s ou supérieure. Elle est actuellement désactivée en raison de la version PHP installée en "
560
 
561
- #: includes/settings/tabs/wps-geoip.php:135
562
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
563
  msgstr "La collecte GeoIP nécessite l'extension PHP cURL et elle n'est pas activée avec votre installation de PHP actuelle !"
564
 
565
- #: includes/settings/tabs/wps-geoip.php:141
566
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
567
  msgstr "La collecte GeoIP nécessite l'extension PHP Math BC et elle n'est pas activée sur votre installation PHP actuelle !"
568
 
569
- #: includes/settings/tabs/wps-geoip.php:147
570
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
571
  msgstr "Mode sans échec de PHP détecté ! La collecte GeoIP n'est pas prise en charge lorsque le mode sécurisé de PHP est activé !"
572
 
@@ -626,7 +690,6 @@ msgstr "Envoyer un rapport quand browscap.ini est actualisé."
626
 
627
  #: includes/log/exclusions.php:24
628
  #: includes/settings/tabs/wps-notifications.php:76
629
- #: includes/settings/wps-settings.php:111
630
  msgid "GeoIP"
631
  msgstr "GeoIP"
632
 
@@ -651,7 +714,7 @@ msgid "Send a report whenever the plugin is upgraded."
651
  msgstr "Envoyer une notification lorsque le plugin est mis à jour."
652
 
653
  #: includes/settings/tabs/wps-notifications.php:111
654
- #: includes/settings/tabs/wps-notifications.php:116 schedule.php:199
655
  msgid "Statistical reporting"
656
  msgstr "Rapports statistiques"
657
 
@@ -700,7 +763,7 @@ msgid "Any shortcode supported by your installation of WordPress, include all sh
700
  msgstr "N'importe quel code supporté par votre installation de Wordpress, incluant tous les codes de WP Statistics (voir le manuel d'administrateur pour obtenir une liste des codes disponibles) sont supportés dans le message. Voici quelques exemples"
701
 
702
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
703
- #: widget.php:245 wp-statistics.php:532
704
  msgid "User Online"
705
  msgstr "Utilisateur en ligne"
706
 
@@ -743,7 +806,7 @@ msgid "Summary Statistics"
743
  msgstr "Résumé des statistiques"
744
 
745
  #: includes/settings/tabs/wps-overview-display.php:28
746
- #: includes/settings/wps-settings.php:115
747
  msgid "About"
748
  msgstr "A propos"
749
 
@@ -793,7 +856,7 @@ msgstr "Désactive le gadget de l'éditeur de page/article."
793
  msgid "Map type"
794
  msgstr "Type de carte"
795
 
796
- #: includes/functions/functions.php:402
797
  #: includes/settings/tabs/wps-overview-display.php:128
798
  msgid "Google"
799
  msgstr "Google"
@@ -903,35 +966,30 @@ msgstr "Supprimer"
903
  msgid "Remove data and settings, this action cannot be undone."
904
  msgstr "Supprimer les données et paramètres. Cette action ne peut pas être annulé."
905
 
906
- #: includes/settings/wps-settings.php:106
907
  msgid "General"
908
  msgstr "Générales"
909
 
910
- #: includes/settings/wps-settings.php:107
911
  msgid "Notifications"
912
  msgstr "Notifications"
913
 
914
- #: includes/settings/wps-settings.php:108
915
  msgid "Dashboard/Overview"
916
  msgstr "Vue globale/Tableau de bord"
917
 
918
- #: includes/settings/wps-settings.php:112
919
- msgid "browscap"
920
- msgstr "Browscap"
921
-
922
- #: includes/settings/wps-settings.php:113
923
  msgid "Maintenance"
924
  msgstr "Maintenance"
925
 
926
- #: includes/settings/wps-settings.php:114
927
  msgid "Removal"
928
  msgstr "Suppression"
929
 
930
  #: includes/settings/tabs/wps-access-level.php:85
931
- #: includes/settings/tabs/wps-browscap.php:81
932
  #: includes/settings/tabs/wps-exclusions.php:234
 
933
  #: includes/settings/tabs/wps-general.php:349
934
- #: includes/settings/tabs/wps-geoip.php:158
935
  #: includes/settings/tabs/wps-maintenance.php:84
936
  #: includes/settings/tabs/wps-notifications.php:201
937
  #: includes/settings/tabs/wps-overview-display.php:388
@@ -951,7 +1009,7 @@ msgstr "Une fois toutes les 2 semaines"
951
  msgid "Once Every 4 Weeks"
952
  msgstr "Une fois toutes les 4 semaines"
953
 
954
- #: widget.php:14 wp-statistics.php:342 wp-statistics.php:380
955
  msgid "Statistics"
956
  msgstr "Statistiques"
957
 
@@ -1023,7 +1081,7 @@ msgstr "Nom"
1023
  msgid "Items"
1024
  msgstr "Éléments"
1025
 
1026
- #: widget.php:254 wp-statistics.php:557
1027
  msgid "Yesterday visit"
1028
  msgstr "Visite d'hier"
1029
 
@@ -1051,13 +1109,13 @@ msgstr "Votre version PHP actuelle est "
1051
  msgid "WP Statistics has been removed, please disable and delete it."
1052
  msgstr "WP Statistics a été désinstallé. Merci de le désactiver et de le supprimer."
1053
 
1054
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1055
  #. Plugin Name of the plugin/theme
1056
  #: wp-statistics.php:37
1057
  msgid "WP Statistics"
1058
  msgstr "WP Statistics"
1059
 
1060
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1061
  #. Description of the plugin/theme
1062
  #: wp-statistics.php:38
1063
  msgid "Complete statistics for your WordPress site."
@@ -1087,99 +1145,99 @@ msgstr "GeoIP collection n'est pas active, s'il vous plaît aller à %s et activ
1087
  msgid "Setting page > GeoIP"
1088
  msgstr "Mise en page > GeoIP"
1089
 
1090
- #: wp-statistics.php:249 wp-statistics.php:361 wp-statistics.php:434
1091
  msgid "Settings"
1092
  msgstr "Paramètres"
1093
 
1094
- #: wp-statistics.php:261
1095
  msgid "Click here to visit the plugin on WordPress.org"
1096
  msgstr "Cliquez ici pour visiter le plugin sur WordPress.org"
1097
 
1098
- #: wp-statistics.php:261
1099
  msgid "Visit WordPress.org page"
1100
  msgstr "Visitez la page de WordPress.org"
1101
 
1102
- #: wp-statistics.php:264
1103
  msgid "Click here to rate and review this plugin on WordPress.org"
1104
  msgstr "Cliquez ici pour évaluer et revoir ce plugin sur WordPress.org"
1105
 
1106
- #: wp-statistics.php:264
1107
  msgid "Rate this plugin"
1108
  msgstr "Noter ce plugin"
1109
 
1110
- #: wp-statistics.php:308
1111
  msgid "WP Statistics - Hits"
1112
  msgstr "WP Statistics - Hits"
1113
 
1114
- #: wp-statistics.php:345 wp-statistics.php:383 wp-statistics.php:421
1115
  msgid "Overview"
1116
  msgstr "Vue d'ensemble"
1117
 
1118
- #: wp-statistics.php:350 wp-statistics.php:426
1119
  msgid "Online"
1120
  msgstr "En ligne"
1121
 
1122
- #: wp-statistics.php:352 wp-statistics.php:428
1123
  msgid "Referrers"
1124
  msgstr "Référents"
1125
 
1126
- #: shortcode.php:135 wp-statistics.php:353 wp-statistics.php:429
1127
  msgid "Searches"
1128
  msgstr "Recherches"
1129
 
1130
- #: wp-statistics.php:354 wp-statistics.php:430
1131
  msgid "Search Words"
1132
  msgstr "Recherche par mots"
1133
 
1134
- #: wp-statistics.php:355 wp-statistics.php:431
1135
  msgid "Top Visitors Today"
1136
  msgstr "Top des visiteurs du jour"
1137
 
1138
- #: wp-statistics.php:360 wp-statistics.php:433
1139
  msgid "Optimization"
1140
  msgstr "Optimisation"
1141
 
1142
- #: wp-statistics.php:366 wp-statistics.php:397
1143
  msgid "Manual"
1144
  msgstr "Manuelle"
1145
 
1146
- #: wp-statistics.php:412
1147
  msgid "Site"
1148
  msgstr "Site"
1149
 
1150
- #: wp-statistics.php:413
1151
  msgid "Options"
1152
  msgstr "Options"
1153
 
1154
- #: wp-statistics.php:539
1155
  msgid "Today visitor"
1156
  msgstr "Visiteur aujourd'hui"
1157
 
1158
- #: wp-statistics.php:545
1159
  msgid "Today visit"
1160
  msgstr "Aujourd'hui, visiter"
1161
 
1162
- #: wp-statistics.php:551
1163
  msgid "Yesterday visitor"
1164
  msgstr "Hier le visiteur"
1165
 
1166
- #: wp-statistics.php:563
1167
  msgid "View Stats"
1168
  msgstr "Voir ses Stats"
1169
 
1170
- #: wp-statistics.php:587
1171
  msgid "Download ODF file"
1172
  msgstr "Télécharger fichier ODF"
1173
 
1174
- #: wp-statistics.php:588
1175
  msgid "Download HTML file"
1176
  msgstr "Télécharger le fichier HTML"
1177
 
1178
- #: wp-statistics.php:592
1179
  msgid "Manual file not found."
1180
  msgstr "Manuel fichier non trouvé."
1181
 
1182
- #: wp-statistics.php:659 wp-statistics.php:770 wp-statistics.php:804
1183
  msgid "You do not have sufficient permissions to access this page."
1184
  msgstr "Vous n'avez pas les autorisations suffisantes pour accéder à cette page."
1185
 
@@ -1187,7 +1245,7 @@ msgstr "Vous n'avez pas les autorisations suffisantes pour accéder à cette pag
1187
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
1188
  msgstr "La table du plugin n'existe pas dans la base de données ! Merci de relancer la %s installation de la routine %s"
1189
 
1190
- #: wp-statistics.php:237
1191
  msgid "WP Statistics %s installed on"
1192
  msgstr "WP Statistics %s installé"
1193
 
@@ -1235,9 +1293,9 @@ msgstr "Browscap déjà à la version actuelle !"
1235
  msgid "Browscap.ini update on"
1236
  msgstr "Browscap.in mis à jour"
1237
 
1238
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1239
  #. Plugin URI of the plugin/theme
1240
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1241
  #. Author URI of the plugin/theme
1242
  msgid "http://wp-statistics.com/"
1243
  msgstr "http://WP-Statistics.com/"
@@ -1364,8 +1422,8 @@ msgid "Click to toggle"
1364
  msgstr "Cliquez ici pour activer/désactiver"
1365
 
1366
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1367
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:346
1368
- #: wp-statistics.php:422
1369
  msgid "Browsers"
1370
  msgstr "Navigateurs"
1371
 
@@ -1394,35 +1452,35 @@ msgstr "ATTENTION : Exclusion ne sont pas actuellement définis pour être enreg
1394
  msgid "Exclusions Statistics"
1395
  msgstr "Statistiques d'exclusions"
1396
 
1397
- #: includes/functions/functions.php:879
1398
  msgid "10 Days"
1399
  msgstr "10 jours"
1400
 
1401
- #: includes/functions/functions.php:879
1402
  msgid "20 Days"
1403
  msgstr "20 jours"
1404
 
1405
- #: includes/functions/functions.php:879
1406
  msgid "30 Days"
1407
  msgstr "30 jours"
1408
 
1409
- #: includes/functions/functions.php:879
1410
  msgid "2 Months"
1411
  msgstr "2 mois"
1412
 
1413
- #: includes/functions/functions.php:879
1414
  msgid "3 Months"
1415
  msgstr "3 mois"
1416
 
1417
- #: includes/functions/functions.php:879
1418
  msgid "6 Months"
1419
  msgstr "6 mois"
1420
 
1421
- #: includes/functions/functions.php:879
1422
  msgid "9 Months"
1423
  msgstr "9 mois"
1424
 
1425
- #: includes/functions/functions.php:879
1426
  msgid "1 Year"
1427
  msgstr "1 an"
1428
 
@@ -1471,28 +1529,28 @@ msgstr "Visiteur"
1471
  msgid "Latest Search Word Statistics"
1472
  msgstr "Recherche mot statistiques les plus récentes"
1473
 
1474
- #: includes/log/last-search.php:100 includes/log/last-visitor.php:101
1475
  #: includes/log/online.php:50 includes/log/widgets/google.map.php:84
1476
  #: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
1477
- #: includes/log/widgets/words.php:36
1478
  msgid "#hash#"
1479
  msgstr "#hash #"
1480
 
1481
- #: includes/log/last-search.php:105 includes/log/last-visitor.php:106
1482
  #: includes/log/online.php:55 includes/log/top-referring.php:71
1483
- #: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:43
1484
  #: includes/settings/tabs/wps-overview-display.php:33
1485
  #: includes/settings/tabs/wps-overview-display.php:113
1486
  msgid "Map"
1487
  msgstr "Carte"
1488
 
1489
- #: includes/log/last-search.php:142 includes/log/last-visitor.php:139
1490
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1491
  #: includes/log/top-referring.php:125
1492
  msgid "Page"
1493
  msgstr "Page"
1494
 
1495
- #: includes/log/last-search.php:142 includes/log/last-visitor.php:139
1496
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1497
  #: includes/log/top-referring.php:125
1498
  msgid "From"
@@ -1681,8 +1739,8 @@ msgid "Time: %s"
1681
  msgstr "Temps : %s"
1682
 
1683
  #: includes/log/widgets/top.visitors.php:31
1684
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:273
1685
- #: wp-statistics.php:349 wp-statistics.php:425
1686
  msgid "Hits"
1687
  msgstr "Hits"
1688
 
@@ -1724,11 +1782,11 @@ msgstr "données de plate-forme de %s supprimées avec succès."
1724
  msgid "No platform data found to remove!"
1725
  msgstr "!Pas de plateforme de donnée à supprimer trouvée"
1726
 
1727
- #: includes/functions/functions.php:967
1728
  msgid "%s table data deleted successfully."
1729
  msgstr "données de la table %s supprimées avec succès."
1730
 
1731
- #: includes/functions/functions.php:971
1732
  msgid "Error, %s not emptied!"
1733
  msgstr "Erreur, %s n'a ne pas vidé !"
1734
 
@@ -1754,7 +1812,7 @@ msgstr "Index de base de données"
1754
 
1755
  #: includes/optimization/tabs/wps-optimization-database.php:25
1756
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1757
- #: wp-statistics.php:347 wp-statistics.php:423
1758
  msgid "Countries"
1759
  msgstr "Pays"
1760
 
@@ -1770,6 +1828,7 @@ msgid "Older installs of WP Statistics allow for duplicate entries in the visito
1770
  msgstr "Âgées installe des statistiques WP permettre des entrées dupliquées dans la table des visiteurs dans une affaire d'angle. Installe plus récents protéger contre cela avec un index unique sur la table. Pour créer l'index sur l'ancienne installe les entrées en double doit être supprimés tout d'abord. En cliquant sur \"Update Now\" analyse de la table vistitors, supprimer les entrées dupliquées et ajouter l'index."
1771
 
1772
  #: includes/optimization/tabs/wps-optimization-database.php:41
 
1773
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1774
  msgstr "Cette opération peut prendre un certain temps sur installe avec le nombre de lignes dans la table de visiteurs."
1775
 
@@ -1779,11 +1838,12 @@ msgstr "Âgées installe des statistiques WP permettre des entrées dupliquées
1779
 
1780
  #: includes/optimization/tabs/wps-optimization-database.php:47
1781
  #: includes/optimization/tabs/wps-optimization-database.php:77
 
1782
  msgid "Congratulations, your installation is already up to date, nothing to do."
1783
  msgstr "Félicitations, votre installation est déjà à jour, rien à voir."
1784
 
1785
  #: includes/optimization/tabs/wps-optimization-export.php:8
1786
- #: includes/optimization/wps-optimization.php:183
1787
  msgid "Export"
1788
  msgstr "Exportation"
1789
 
@@ -1836,7 +1896,7 @@ msgstr "Note : comme vous avez purgé la base de données, vous devez recharger
1836
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1837
  #: includes/settings/tabs/wps-general.php:138
1838
  #: includes/settings/tabs/wps-general.php:143 shortcode.php:133
1839
- #: wp-statistics.php:356 wp-statistics.php:432
1840
  msgid "Visitors"
1841
  msgstr "Visiteurs"
1842
 
@@ -2151,23 +2211,23 @@ msgstr "Adresses IP remplacées par des valeurs de hachage."
2151
  msgid "Install routine complete."
2152
  msgstr "Installer la routine complète."
2153
 
2154
- #: includes/optimization/wps-optimization.php:182
2155
  msgid "Resources/Information"
2156
  msgstr "Ressources/informations"
2157
 
2158
- #: includes/optimization/wps-optimization.php:184
2159
  msgid "Purging"
2160
  msgstr "Purge"
2161
 
2162
- #: includes/optimization/wps-optimization.php:185
2163
  msgid "Database"
2164
  msgstr "Base de données"
2165
 
2166
- #: includes/optimization/wps-optimization.php:186
2167
  msgid "Updates"
2168
  msgstr "Mises à jour"
2169
 
2170
- #: includes/optimization/wps-optimization.php:187
2171
  msgid "Historical"
2172
  msgstr "Historique"
2173
 
@@ -2317,7 +2377,7 @@ msgid "This is the honey pot for WP Statistics to use, do not delete."
2317
  msgstr ".Il s'agit de la page \"pot de miel\" utilisée par WP Statistics, ne pas supprimer"
2318
 
2319
  #: includes/settings/tabs/wps-access-level.php:23
2320
- #: includes/settings/wps-settings.php:109
2321
  msgid "Access Levels"
2322
  msgstr "Niveaux d'accès"
2323
 
@@ -2350,8 +2410,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2350
  msgstr "Si vous avez besoin d'une solution plus robuste pour déléguer l'accès, que vous pourriez vouloir regarder %s dans le répertoire de plugin WordPress."
2351
 
2352
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2353
- #: includes/settings/wps-settings.php:110 wp-statistics.php:348
2354
- #: wp-statistics.php:424
2355
  msgid "Exclusions"
2356
  msgstr "Exclusions"
2357
 
@@ -2522,16 +2582,21 @@ msgstr "Flux RSS exclus"
2522
  msgid "Exclude the RSS feeds for registering as a hit."
2523
  msgstr "Exclure les flux RSS pour se inscrire comme un succès."
2524
 
2525
- #: includes/settings/tabs/wps-browscap.php:22
2526
  msgid "browscap settings"
2527
  msgstr "paramètres de Browscap"
2528
 
2529
- #: includes/settings/tabs/wps-browscap.php:27
2530
  msgid "browscap usage"
2531
  msgstr "utilisation de Browscap"
2532
 
2533
- #: includes/settings/tabs/wps-browscap.php:32
2534
- #: includes/settings/tabs/wps-browscap.php:56
 
 
 
 
 
2535
  #: includes/settings/tabs/wps-general.php:76
2536
  #: includes/settings/tabs/wps-general.php:92
2537
  #: includes/settings/tabs/wps-general.php:116
@@ -2547,9 +2612,6 @@ msgstr "utilisation de Browscap"
2547
  #: includes/settings/tabs/wps-general.php:286
2548
  #: includes/settings/tabs/wps-general.php:325
2549
  #: includes/settings/tabs/wps-general.php:341
2550
- #: includes/settings/tabs/wps-geoip.php:47
2551
- #: includes/settings/tabs/wps-geoip.php:71
2552
- #: includes/settings/tabs/wps-geoip.php:104
2553
  #: includes/settings/tabs/wps-maintenance.php:40
2554
  #: includes/settings/tabs/wps-maintenance.php:64
2555
  #: includes/settings/tabs/wps-notifications.php:69
@@ -2564,33 +2626,35 @@ msgstr "utilisation de Browscap"
2564
  msgid "Active"
2565
  msgstr "Active"
2566
 
2567
- #: includes/settings/tabs/wps-browscap.php:33
2568
  msgid "The browscap database will be downloaded and used to detect robots."
2569
  msgstr "La base de données de browscap sera téléchargé et utilisé pour détecter les robots."
2570
 
2571
- #: includes/settings/tabs/wps-browscap.php:39
2572
  msgid "Update browscap Info"
2573
  msgstr "Mise à jour browscap Info"
2574
 
2575
- #: includes/settings/tabs/wps-browscap.php:44
2576
  msgid "Download browscap Database"
2577
  msgstr "Télécharger browscap Database"
2578
 
2579
- #: includes/settings/tabs/wps-browscap.php:45
2580
- #: includes/settings/tabs/wps-geoip.php:60
 
2581
  msgid "Save changes on this page to download the update."
2582
  msgstr "Enregistrer les modifications sur cette page pour télécharger la mise à jour."
2583
 
2584
- #: includes/settings/tabs/wps-browscap.php:51
2585
  msgid "Schedule weekly update of browscap DB"
2586
  msgstr "Calendrier mise à jour hebdomadaire de browscap DB"
2587
 
2588
- #: includes/settings/tabs/wps-browscap.php:59
2589
- #: includes/settings/tabs/wps-geoip.php:74
 
2590
  msgid "Next update will be"
2591
  msgstr "Prochaine mise à jour sera"
2592
 
2593
- #: includes/settings/tabs/wps-browscap.php:74
2594
  msgid "Download of the browscap database will be scheduled for once a week."
2595
  msgstr "Le téléchargement de la base de données de browscap est programmé pour une fois par semaine."
2596
 
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: includes/optimization/wps-optimization.php:173
14
+ msgid "Search table conversion complete, %d rows added."
15
+ msgstr ""
16
+
17
+ #: includes/optimization/tabs/wps-optimization-database.php:107
18
+ msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion."
19
+ msgstr ""
20
+
21
+ #: includes/optimization/tabs/wps-optimization-database.php:86
22
+ msgid "Search Table"
23
+ msgstr ""
24
+
25
+ #: includes/optimization/tabs/wps-optimization-database.php:91
26
+ msgid "Convert"
27
+ msgstr ""
28
+
29
+ #: includes/optimization/tabs/wps-optimization-database.php:100
30
+ msgid "Convert Now!"
31
+ msgstr ""
32
+
33
+ #: includes/optimization/tabs/wps-optimization-database.php:101
34
+ msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion, however the old data must first be converted to the new format before it can be used."
35
+ msgstr ""
36
+
37
+ #: includes/log/exclusions.php:24
38
+ msgid "Referrer Spam"
39
+ msgstr ""
40
+
41
+ #: includes/settings/tabs/wps-externals.php:277
42
+ msgid "Download of the Piwik Referrer Spam Blacklist database will be scheduled for once a week."
43
+ msgstr ""
44
+
45
+ #: includes/settings/wps-settings.php:105
46
+ msgid "Externals"
47
+ msgstr ""
48
+
49
+ #: includes/settings/tabs/wps-externals.php:219
50
+ msgid "Piwik Referrer Spam Blacklist settings"
51
+ msgstr ""
52
+
53
+ #: includes/settings/tabs/wps-externals.php:254
54
+ msgid "Schedule weekly update of Piwik Referrer Spam Blacklist DB"
55
+ msgstr ""
56
+
57
+ #: includes/settings/tabs/wps-externals.php:247
58
+ msgid "Download Piwik Referrer Spam Blacklist Database"
59
+ msgstr ""
60
+
61
+ #: includes/settings/tabs/wps-externals.php:242
62
+ msgid "Update Piwik Referrer Spam Blacklist Info"
63
+ msgstr ""
64
+
65
+ #: includes/settings/tabs/wps-externals.php:236
66
+ msgid "The Piwik Referrer Spam Blacklist database will be downloaded and used to detect referrer spam."
67
+ msgstr ""
68
+
69
+ #: includes/settings/tabs/wps-externals.php:224
70
+ msgid "Referrer spam blacklist is provided by Piwik, available from %s."
71
+ msgstr ""
72
+
73
+ #: includes/settings/tabs/wps-externals.php:230
74
+ msgid "Piwik Referrer Spam Blacklist usage"
75
+ msgstr ""
76
+
77
  #: includes/settings/tabs/wps-exclusions.php:148
78
  msgid "Treat corrupt browser info as a bot"
79
  msgstr ""
222
  msgid "Have you thought about donating to WP Statistics?"
223
  msgstr ""
224
 
225
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
226
  msgid "Donate"
227
  msgstr ""
228
 
258
  msgid "Time Frame"
259
  msgstr ""
260
 
261
+ #: includes/functions/functions.php:981
262
  msgid "to"
263
  msgstr "jusqu'à"
264
 
265
+ #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
266
  msgid "Go"
267
  msgstr "Aller"
268
 
306
  msgid "Filtered by"
307
  msgstr "Filtré par"
308
 
309
+ #: includes/functions/functions.php:974 includes/functions/functions.php:977
310
  msgid "Range"
311
  msgstr "Intervalle"
312
 
313
+ #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
314
  msgid "MM/DD/YYYY"
315
  msgstr "MM/JJ/AAAA"
316
 
354
  msgid "Last 7 Days (Week)"
355
  msgstr "7 derniers jours (Semaine)"
356
 
357
+ #: includes/functions/functions.php:405
358
  msgid "Yahoo!"
359
  msgstr "Yahoo!"
360
 
361
+ #: includes/functions/functions.php:406
362
  msgid "Yandex"
363
  msgstr "Yandex"
364
 
365
+ #: includes/functions/functions.php:402
366
  msgid "clearch.org"
367
  msgstr "clearch.org"
368
 
369
+ #: includes/functions/functions.php:403
370
  msgid "DuckDuckGo"
371
  msgstr "DuckDuckGo"
372
 
373
+ #: includes/functions/functions.php:401
374
  msgid "Bing"
375
  msgstr "Bing"
376
 
377
+ #: includes/functions/functions.php:400
378
  msgid "Baidu"
379
  msgstr "Baidu"
380
 
477
  msgstr "Pour chaque visite tenir compte de plusieurs hits. Actuellement %s."
478
 
479
  #: includes/settings/tabs/wps-general.php:177
480
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
481
+ #: wp-statistics.php:431
482
  msgid "Pages"
483
  msgstr "Pages"
484
 
562
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
563
  msgstr "Ajouter une ligne total dans le tableau avec des valeurs multiples, telles que les références de moteur de recherche"
564
 
565
+ #: includes/settings/tabs/wps-externals.php:32
566
  msgid "GeoIP settings"
567
  msgstr "Paramètres de GeoIP"
568
 
569
+ #: includes/settings/tabs/wps-externals.php:37
570
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
571
  msgstr "Services de localisation IP fournis par GeoLite2 créé par MaxMind, disponible à l'adresse %s."
572
 
573
+ #: includes/settings/tabs/wps-externals.php:47
574
  msgid "GeoIP collection"
575
  msgstr "Collecte GeoIP"
576
 
577
+ #: includes/settings/tabs/wps-externals.php:53
578
  msgid "For get more information and location (country) from visitor, enable this feature."
579
  msgstr "Pour obtenir plus de renseignements sur le visiteur et sa localisation (pays), activer cette fonctionnalité."
580
 
581
+ #: includes/settings/tabs/wps-externals.php:59
582
  msgid "Update GeoIP Info"
583
  msgstr "Mise à jour des informations GeoIP"
584
 
585
+ #: includes/settings/tabs/wps-externals.php:64
586
  msgid "Download GeoIP Database"
587
  msgstr "Télécharger la base de données GeoIP"
588
 
589
+ #: includes/settings/tabs/wps-externals.php:71
590
  msgid "Schedule monthly update of GeoIP DB"
591
  msgstr "Programmer la mise à jour mensuelle de la base de données GeoIP"
592
 
593
+ #: includes/settings/tabs/wps-externals.php:97
594
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
595
  msgstr "Le téléchargement de la base de données GeoIP est programmé 2 jours après le premier mardi du mois."
596
 
597
+ #: includes/settings/tabs/wps-externals.php:98
598
  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)."
599
  msgstr "Cette option va également télécharger la base de données si la taille du fichier local est inférieur à 1k (ce qui signifie généralement que le stub qui s'installe avec le plugin est encore présent)."
600
 
601
+ #: includes/settings/tabs/wps-externals.php:104
602
  msgid "Populate missing GeoIP after update of GeoIP DB"
603
  msgstr "Compléter les données GeoIP manquantes après la mise à jour de la base de données GeoIP"
604
 
605
+ #: includes/settings/tabs/wps-externals.php:110
606
  msgid "Update any missing GeoIP data after downloading a new database."
607
  msgstr "Mettre à jour les données GeoIP manquantes après le téléchargement d'une nouvelle base de données."
608
 
609
+ #: includes/settings/tabs/wps-externals.php:116
610
  msgid "Country code for private IP addresses"
611
  msgstr "Code pays pour des adresses IP privées"
612
 
613
+ #: includes/settings/tabs/wps-externals.php:121
614
  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."
615
  msgstr "La norme code à deux lettres du pays internationale (ie. US = États-Unis, CA = Canada, etc.) pour les adresses IP privées (non routables) (ie. 10.0.0.1, 192.158.1.1, 127.0.0.1, etc.). Utilisez \"000\" (trois zéros) pour spécifier \"Inconnu\" en tant que code du pays."
616
 
617
+ #: includes/settings/tabs/wps-externals.php:132
618
  msgid "GeoIP collection is disabled due to the following reasons:"
619
  msgstr "La collecte GeoIP est désactivée pour les raisons suivantes :"
620
 
621
+ #: includes/settings/tabs/wps-externals.php:135
622
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
623
  msgstr "La collecte GeoIP nécessite une version PHP %s ou supérieure. Elle est actuellement désactivée en raison de la version PHP installée en "
624
 
625
+ #: includes/settings/tabs/wps-externals.php:140
626
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
627
  msgstr "La collecte GeoIP nécessite l'extension PHP cURL et elle n'est pas activée avec votre installation de PHP actuelle !"
628
 
629
+ #: includes/settings/tabs/wps-externals.php:146
630
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
631
  msgstr "La collecte GeoIP nécessite l'extension PHP Math BC et elle n'est pas activée sur votre installation PHP actuelle !"
632
 
633
+ #: includes/settings/tabs/wps-externals.php:152
634
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
635
  msgstr "Mode sans échec de PHP détecté ! La collecte GeoIP n'est pas prise en charge lorsque le mode sécurisé de PHP est activé !"
636
 
690
 
691
  #: includes/log/exclusions.php:24
692
  #: includes/settings/tabs/wps-notifications.php:76
 
693
  msgid "GeoIP"
694
  msgstr "GeoIP"
695
 
714
  msgstr "Envoyer une notification lorsque le plugin est mis à jour."
715
 
716
  #: includes/settings/tabs/wps-notifications.php:111
717
+ #: includes/settings/tabs/wps-notifications.php:116 schedule.php:221
718
  msgid "Statistical reporting"
719
  msgstr "Rapports statistiques"
720
 
763
  msgstr "N'importe quel code supporté par votre installation de Wordpress, incluant tous les codes de WP Statistics (voir le manuel d'administrateur pour obtenir une liste des codes disponibles) sont supportés dans le message. Voici quelques exemples"
764
 
765
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
766
+ #: widget.php:245 wp-statistics.php:536
767
  msgid "User Online"
768
  msgstr "Utilisateur en ligne"
769
 
806
  msgstr "Résumé des statistiques"
807
 
808
  #: includes/settings/tabs/wps-overview-display.php:28
809
+ #: includes/settings/wps-settings.php:108
810
  msgid "About"
811
  msgstr "A propos"
812
 
856
  msgid "Map type"
857
  msgstr "Type de carte"
858
 
859
+ #: includes/functions/functions.php:404
860
  #: includes/settings/tabs/wps-overview-display.php:128
861
  msgid "Google"
862
  msgstr "Google"
966
  msgid "Remove data and settings, this action cannot be undone."
967
  msgstr "Supprimer les données et paramètres. Cette action ne peut pas être annulé."
968
 
969
+ #: includes/settings/wps-settings.php:100
970
  msgid "General"
971
  msgstr "Générales"
972
 
973
+ #: includes/settings/wps-settings.php:101
974
  msgid "Notifications"
975
  msgstr "Notifications"
976
 
977
+ #: includes/settings/wps-settings.php:102
978
  msgid "Dashboard/Overview"
979
  msgstr "Vue globale/Tableau de bord"
980
 
981
+ #: includes/settings/wps-settings.php:106
 
 
 
 
982
  msgid "Maintenance"
983
  msgstr "Maintenance"
984
 
985
+ #: includes/settings/wps-settings.php:107
986
  msgid "Removal"
987
  msgstr "Suppression"
988
 
989
  #: includes/settings/tabs/wps-access-level.php:85
 
990
  #: includes/settings/tabs/wps-exclusions.php:234
991
+ #: includes/settings/tabs/wps-externals.php:284
992
  #: includes/settings/tabs/wps-general.php:349
 
993
  #: includes/settings/tabs/wps-maintenance.php:84
994
  #: includes/settings/tabs/wps-notifications.php:201
995
  #: includes/settings/tabs/wps-overview-display.php:388
1009
  msgid "Once Every 4 Weeks"
1010
  msgstr "Une fois toutes les 4 semaines"
1011
 
1012
+ #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
1013
  msgid "Statistics"
1014
  msgstr "Statistiques"
1015
 
1081
  msgid "Items"
1082
  msgstr "Éléments"
1083
 
1084
+ #: widget.php:254 wp-statistics.php:561
1085
  msgid "Yesterday visit"
1086
  msgstr "Visite d'hier"
1087
 
1109
  msgid "WP Statistics has been removed, please disable and delete it."
1110
  msgstr "WP Statistics a été désinstallé. Merci de le désactiver et de le supprimer."
1111
 
1112
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1113
  #. Plugin Name of the plugin/theme
1114
  #: wp-statistics.php:37
1115
  msgid "WP Statistics"
1116
  msgstr "WP Statistics"
1117
 
1118
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1119
  #. Description of the plugin/theme
1120
  #: wp-statistics.php:38
1121
  msgid "Complete statistics for your WordPress site."
1145
  msgid "Setting page > GeoIP"
1146
  msgstr "Mise en page > GeoIP"
1147
 
1148
+ #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
1149
  msgid "Settings"
1150
  msgstr "Paramètres"
1151
 
1152
+ #: wp-statistics.php:265
1153
  msgid "Click here to visit the plugin on WordPress.org"
1154
  msgstr "Cliquez ici pour visiter le plugin sur WordPress.org"
1155
 
1156
+ #: wp-statistics.php:265
1157
  msgid "Visit WordPress.org page"
1158
  msgstr "Visitez la page de WordPress.org"
1159
 
1160
+ #: wp-statistics.php:268
1161
  msgid "Click here to rate and review this plugin on WordPress.org"
1162
  msgstr "Cliquez ici pour évaluer et revoir ce plugin sur WordPress.org"
1163
 
1164
+ #: wp-statistics.php:268
1165
  msgid "Rate this plugin"
1166
  msgstr "Noter ce plugin"
1167
 
1168
+ #: wp-statistics.php:312
1169
  msgid "WP Statistics - Hits"
1170
  msgstr "WP Statistics - Hits"
1171
 
1172
+ #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
1173
  msgid "Overview"
1174
  msgstr "Vue d'ensemble"
1175
 
1176
+ #: wp-statistics.php:354 wp-statistics.php:430
1177
  msgid "Online"
1178
  msgstr "En ligne"
1179
 
1180
+ #: wp-statistics.php:356 wp-statistics.php:432
1181
  msgid "Referrers"
1182
  msgstr "Référents"
1183
 
1184
+ #: shortcode.php:135 wp-statistics.php:357 wp-statistics.php:433
1185
  msgid "Searches"
1186
  msgstr "Recherches"
1187
 
1188
+ #: wp-statistics.php:358 wp-statistics.php:434
1189
  msgid "Search Words"
1190
  msgstr "Recherche par mots"
1191
 
1192
+ #: wp-statistics.php:359 wp-statistics.php:435
1193
  msgid "Top Visitors Today"
1194
  msgstr "Top des visiteurs du jour"
1195
 
1196
+ #: wp-statistics.php:364 wp-statistics.php:437
1197
  msgid "Optimization"
1198
  msgstr "Optimisation"
1199
 
1200
+ #: wp-statistics.php:370 wp-statistics.php:401
1201
  msgid "Manual"
1202
  msgstr "Manuelle"
1203
 
1204
+ #: wp-statistics.php:416
1205
  msgid "Site"
1206
  msgstr "Site"
1207
 
1208
+ #: wp-statistics.php:417
1209
  msgid "Options"
1210
  msgstr "Options"
1211
 
1212
+ #: wp-statistics.php:543
1213
  msgid "Today visitor"
1214
  msgstr "Visiteur aujourd'hui"
1215
 
1216
+ #: wp-statistics.php:549
1217
  msgid "Today visit"
1218
  msgstr "Aujourd'hui, visiter"
1219
 
1220
+ #: wp-statistics.php:555
1221
  msgid "Yesterday visitor"
1222
  msgstr "Hier le visiteur"
1223
 
1224
+ #: wp-statistics.php:567
1225
  msgid "View Stats"
1226
  msgstr "Voir ses Stats"
1227
 
1228
+ #: wp-statistics.php:591
1229
  msgid "Download ODF file"
1230
  msgstr "Télécharger fichier ODF"
1231
 
1232
+ #: wp-statistics.php:592
1233
  msgid "Download HTML file"
1234
  msgstr "Télécharger le fichier HTML"
1235
 
1236
+ #: wp-statistics.php:596
1237
  msgid "Manual file not found."
1238
  msgstr "Manuel fichier non trouvé."
1239
 
1240
+ #: wp-statistics.php:663 wp-statistics.php:770 wp-statistics.php:804
1241
  msgid "You do not have sufficient permissions to access this page."
1242
  msgstr "Vous n'avez pas les autorisations suffisantes pour accéder à cette page."
1243
 
1245
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
1246
  msgstr "La table du plugin n'existe pas dans la base de données ! Merci de relancer la %s installation de la routine %s"
1247
 
1248
+ #: wp-statistics.php:241
1249
  msgid "WP Statistics %s installed on"
1250
  msgstr "WP Statistics %s installé"
1251
 
1293
  msgid "Browscap.ini update on"
1294
  msgstr "Browscap.in mis à jour"
1295
 
1296
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1297
  #. Plugin URI of the plugin/theme
1298
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1299
  #. Author URI of the plugin/theme
1300
  msgid "http://wp-statistics.com/"
1301
  msgstr "http://WP-Statistics.com/"
1422
  msgstr "Cliquez ici pour activer/désactiver"
1423
 
1424
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1425
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
1426
+ #: wp-statistics.php:426
1427
  msgid "Browsers"
1428
  msgstr "Navigateurs"
1429
 
1452
  msgid "Exclusions Statistics"
1453
  msgstr "Statistiques d'exclusions"
1454
 
1455
+ #: includes/functions/functions.php:931
1456
  msgid "10 Days"
1457
  msgstr "10 jours"
1458
 
1459
+ #: includes/functions/functions.php:931
1460
  msgid "20 Days"
1461
  msgstr "20 jours"
1462
 
1463
+ #: includes/functions/functions.php:931
1464
  msgid "30 Days"
1465
  msgstr "30 jours"
1466
 
1467
+ #: includes/functions/functions.php:931
1468
  msgid "2 Months"
1469
  msgstr "2 mois"
1470
 
1471
+ #: includes/functions/functions.php:931
1472
  msgid "3 Months"
1473
  msgstr "3 mois"
1474
 
1475
+ #: includes/functions/functions.php:931
1476
  msgid "6 Months"
1477
  msgstr "6 mois"
1478
 
1479
+ #: includes/functions/functions.php:931
1480
  msgid "9 Months"
1481
  msgstr "9 mois"
1482
 
1483
+ #: includes/functions/functions.php:931
1484
  msgid "1 Year"
1485
  msgstr "1 an"
1486
 
1529
  msgid "Latest Search Word Statistics"
1530
  msgstr "Recherche mot statistiques les plus récentes"
1531
 
1532
+ #: includes/log/last-search.php:110 includes/log/last-visitor.php:101
1533
  #: includes/log/online.php:50 includes/log/widgets/google.map.php:84
1534
  #: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
1535
+ #: includes/log/widgets/words.php:46
1536
  msgid "#hash#"
1537
  msgstr "#hash #"
1538
 
1539
+ #: includes/log/last-search.php:115 includes/log/last-visitor.php:106
1540
  #: includes/log/online.php:55 includes/log/top-referring.php:71
1541
+ #: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
1542
  #: includes/settings/tabs/wps-overview-display.php:33
1543
  #: includes/settings/tabs/wps-overview-display.php:113
1544
  msgid "Map"
1545
  msgstr "Carte"
1546
 
1547
+ #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1548
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1549
  #: includes/log/top-referring.php:125
1550
  msgid "Page"
1551
  msgstr "Page"
1552
 
1553
+ #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1554
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1555
  #: includes/log/top-referring.php:125
1556
  msgid "From"
1739
  msgstr "Temps : %s"
1740
 
1741
  #: includes/log/widgets/top.visitors.php:31
1742
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
1743
+ #: wp-statistics.php:353 wp-statistics.php:429
1744
  msgid "Hits"
1745
  msgstr "Hits"
1746
 
1782
  msgid "No platform data found to remove!"
1783
  msgstr "!Pas de plateforme de donnée à supprimer trouvée"
1784
 
1785
+ #: includes/functions/functions.php:1019
1786
  msgid "%s table data deleted successfully."
1787
  msgstr "données de la table %s supprimées avec succès."
1788
 
1789
+ #: includes/functions/functions.php:1023
1790
  msgid "Error, %s not emptied!"
1791
  msgstr "Erreur, %s n'a ne pas vidé !"
1792
 
1812
 
1813
  #: includes/optimization/tabs/wps-optimization-database.php:25
1814
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1815
+ #: wp-statistics.php:351 wp-statistics.php:427
1816
  msgid "Countries"
1817
  msgstr "Pays"
1818
 
1828
  msgstr "Âgées installe des statistiques WP permettre des entrées dupliquées dans la table des visiteurs dans une affaire d'angle. Installe plus récents protéger contre cela avec un index unique sur la table. Pour créer l'index sur l'ancienne installe les entrées en double doit être supprimés tout d'abord. En cliquant sur \"Update Now\" analyse de la table vistitors, supprimer les entrées dupliquées et ajouter l'index."
1829
 
1830
  #: includes/optimization/tabs/wps-optimization-database.php:41
1831
+ #: includes/optimization/tabs/wps-optimization-database.php:102
1832
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1833
  msgstr "Cette opération peut prendre un certain temps sur installe avec le nombre de lignes dans la table de visiteurs."
1834
 
1838
 
1839
  #: includes/optimization/tabs/wps-optimization-database.php:47
1840
  #: includes/optimization/tabs/wps-optimization-database.php:77
1841
+ #: includes/optimization/tabs/wps-optimization-database.php:108
1842
  msgid "Congratulations, your installation is already up to date, nothing to do."
1843
  msgstr "Félicitations, votre installation est déjà à jour, rien à voir."
1844
 
1845
  #: includes/optimization/tabs/wps-optimization-export.php:8
1846
+ #: includes/optimization/wps-optimization.php:212
1847
  msgid "Export"
1848
  msgstr "Exportation"
1849
 
1896
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1897
  #: includes/settings/tabs/wps-general.php:138
1898
  #: includes/settings/tabs/wps-general.php:143 shortcode.php:133
1899
+ #: wp-statistics.php:360 wp-statistics.php:436
1900
  msgid "Visitors"
1901
  msgstr "Visiteurs"
1902
 
2211
  msgid "Install routine complete."
2212
  msgstr "Installer la routine complète."
2213
 
2214
+ #: includes/optimization/wps-optimization.php:211
2215
  msgid "Resources/Information"
2216
  msgstr "Ressources/informations"
2217
 
2218
+ #: includes/optimization/wps-optimization.php:213
2219
  msgid "Purging"
2220
  msgstr "Purge"
2221
 
2222
+ #: includes/optimization/wps-optimization.php:214
2223
  msgid "Database"
2224
  msgstr "Base de données"
2225
 
2226
+ #: includes/optimization/wps-optimization.php:215
2227
  msgid "Updates"
2228
  msgstr "Mises à jour"
2229
 
2230
+ #: includes/optimization/wps-optimization.php:216
2231
  msgid "Historical"
2232
  msgstr "Historique"
2233
 
2377
  msgstr ".Il s'agit de la page \"pot de miel\" utilisée par WP Statistics, ne pas supprimer"
2378
 
2379
  #: includes/settings/tabs/wps-access-level.php:23
2380
+ #: includes/settings/wps-settings.php:103
2381
  msgid "Access Levels"
2382
  msgstr "Niveaux d'accès"
2383
 
2410
  msgstr "Si vous avez besoin d'une solution plus robuste pour déléguer l'accès, que vous pourriez vouloir regarder %s dans le répertoire de plugin WordPress."
2411
 
2412
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2413
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:352
2414
+ #: wp-statistics.php:428
2415
  msgid "Exclusions"
2416
  msgstr "Exclusions"
2417
 
2582
  msgid "Exclude the RSS feeds for registering as a hit."
2583
  msgstr "Exclure les flux RSS pour se inscrire comme un succès."
2584
 
2585
+ #: includes/settings/tabs/wps-externals.php:162
2586
  msgid "browscap settings"
2587
  msgstr "paramètres de Browscap"
2588
 
2589
+ #: includes/settings/tabs/wps-externals.php:167
2590
  msgid "browscap usage"
2591
  msgstr "utilisation de Browscap"
2592
 
2593
+ #: includes/settings/tabs/wps-externals.php:52
2594
+ #: includes/settings/tabs/wps-externals.php:76
2595
+ #: includes/settings/tabs/wps-externals.php:109
2596
+ #: includes/settings/tabs/wps-externals.php:172
2597
+ #: includes/settings/tabs/wps-externals.php:196
2598
+ #: includes/settings/tabs/wps-externals.php:235
2599
+ #: includes/settings/tabs/wps-externals.php:259
2600
  #: includes/settings/tabs/wps-general.php:76
2601
  #: includes/settings/tabs/wps-general.php:92
2602
  #: includes/settings/tabs/wps-general.php:116
2612
  #: includes/settings/tabs/wps-general.php:286
2613
  #: includes/settings/tabs/wps-general.php:325
2614
  #: includes/settings/tabs/wps-general.php:341
 
 
 
2615
  #: includes/settings/tabs/wps-maintenance.php:40
2616
  #: includes/settings/tabs/wps-maintenance.php:64
2617
  #: includes/settings/tabs/wps-notifications.php:69
2626
  msgid "Active"
2627
  msgstr "Active"
2628
 
2629
+ #: includes/settings/tabs/wps-externals.php:173
2630
  msgid "The browscap database will be downloaded and used to detect robots."
2631
  msgstr "La base de données de browscap sera téléchargé et utilisé pour détecter les robots."
2632
 
2633
+ #: includes/settings/tabs/wps-externals.php:179
2634
  msgid "Update browscap Info"
2635
  msgstr "Mise à jour browscap Info"
2636
 
2637
+ #: includes/settings/tabs/wps-externals.php:184
2638
  msgid "Download browscap Database"
2639
  msgstr "Télécharger browscap Database"
2640
 
2641
+ #: includes/settings/tabs/wps-externals.php:65
2642
+ #: includes/settings/tabs/wps-externals.php:185
2643
+ #: includes/settings/tabs/wps-externals.php:248
2644
  msgid "Save changes on this page to download the update."
2645
  msgstr "Enregistrer les modifications sur cette page pour télécharger la mise à jour."
2646
 
2647
+ #: includes/settings/tabs/wps-externals.php:191
2648
  msgid "Schedule weekly update of browscap DB"
2649
  msgstr "Calendrier mise à jour hebdomadaire de browscap DB"
2650
 
2651
+ #: includes/settings/tabs/wps-externals.php:79
2652
+ #: includes/settings/tabs/wps-externals.php:199
2653
+ #: includes/settings/tabs/wps-externals.php:262
2654
  msgid "Next update will be"
2655
  msgstr "Prochaine mise à jour sera"
2656
 
2657
+ #: includes/settings/tabs/wps-externals.php:214
2658
  msgid "Download of the browscap database will be scheduled for once a week."
2659
  msgstr "Le téléchargement de la base de données de browscap est programmé pour une fois par semaine."
2660
 
languages/wp_statistics-hu_HU.mo CHANGED
Binary file
languages/wp_statistics-hu_HU.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2015-05-13 08:16:05+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -10,29 +10,93 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  #: includes/settings/tabs/wps-exclusions.php:148
14
  msgid "Treat corrupt browser info as a bot"
15
- msgstr ""
16
 
17
  #: includes/log/exclusions.php:24
18
  msgid "404 Pages"
19
- msgstr ""
20
 
21
  #: includes/log/top-visitors.php:26
22
  msgid "Date"
23
- msgstr ""
24
 
25
  #: includes/settings/tabs/wps-exclusions.php:151
26
  msgid "Treat any visitor with corrupt browser info (missing IP address or empty user agent string) as a robot."
27
- msgstr ""
28
 
29
  #: includes/settings/tabs/wps-exclusions.php:215
30
  msgid "Excluded 404 pages"
31
- msgstr ""
32
 
33
  #: includes/settings/tabs/wps-exclusions.php:218
34
  msgid "Exclude any URL that returns a \"404 - Not Found\" message."
35
- msgstr ""
36
 
37
  #: wps-updates.php:29
38
  msgid "Error creating GeoIP database directory, make sure your web server has permissions to create directories in : %s"
@@ -72,7 +136,7 @@ msgstr ""
72
 
73
  #: includes/functions/purge-hits.php:28
74
  msgid "No visitors found to purge."
75
- msgstr ""
76
 
77
  #: includes/functions/purge-hits.php:25
78
  msgid "%s records purged successfully."
@@ -148,17 +212,17 @@ msgstr "Összesített találati statisztika"
148
 
149
  #: includes/log/exclusions.php:201 includes/log/hit-statistics.php:174
150
  msgid "Chart Total"
151
- msgstr "Teljes diagram"
152
 
153
  #: includes/log/exclusions.php:206 includes/log/hit-statistics.php:180
154
  msgid "All Time Total"
155
- msgstr ""
156
 
157
  #: includes/log/log.php:57
158
  msgid "Have you thought about donating to WP Statistics?"
159
  msgstr "Gondolt már arra, hogy adományozzon a WP Statisztikának?"
160
 
161
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:362
162
  msgid "Donate"
163
  msgstr "Adományoz"
164
 
@@ -176,11 +240,11 @@ msgstr "Adományozzon most!"
176
 
177
  #: includes/log/log.php:57
178
  msgid "Close"
179
- msgstr ""
180
 
181
  #: shortcode.php:128
182
  msgid "Select the statistic you wish to display."
183
- msgstr ""
184
 
185
  #: shortcode.php:125
186
  msgid "Statistic"
@@ -194,11 +258,11 @@ msgstr "Bejegyzés számláló"
194
  msgid "Time Frame"
195
  msgstr "Időkeret"
196
 
197
- #: includes/functions/functions.php:929
198
  msgid "to"
199
  msgstr ""
200
 
201
- #: includes/functions/functions.php:929 includes/log/top-visitors.php:29
202
  msgid "Go"
203
  msgstr ""
204
 
@@ -232,7 +296,7 @@ msgstr ""
232
 
233
  #: includes/optimization/tabs/wps-optimization-database.php:71
234
  msgid "This operation could take a long time on installs with many rows in the visits table."
235
- msgstr ""
236
 
237
  #: includes/optimization/tabs/wps-optimization-database.php:76
238
  msgid "Older installs of WP Statistics allow for duplicate entries in the visits table in a corner case. Newer installs protect against this with a unique index on the table."
@@ -242,17 +306,17 @@ msgstr ""
242
  msgid "Filtered by"
243
  msgstr "Szűrés"
244
 
245
- #: includes/functions/functions.php:922 includes/functions/functions.php:925
246
  msgid "Range"
247
- msgstr ""
248
 
249
- #: includes/functions/functions.php:929 includes/log/top-visitors.php:29
250
  msgid "MM/DD/YYYY"
251
- msgstr "MM/DD/YYYY"
252
 
253
  #: includes/settings/tabs/wps-general.php:342
254
  msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
255
- msgstr "Ne használja a beállított fordítást, helyette az angol legyen a WP Statisztika alapértelmezett nyelve (két oldal betöltése szükséges)"
256
 
257
  #: includes/settings/tabs/wps-general.php:336
258
  msgid "Force English"
@@ -268,7 +332,7 @@ msgstr ""
268
 
269
  #: includes/settings/tabs/wps-exclusions.php:225
270
  msgid "A list of local urls (ie. /wordpress/about, one per line) to exclude from statistics collection."
271
- msgstr ""
272
 
273
  #: includes/settings/tabs/wps-exclusions.php:222
274
  msgid "Excluded URLs list"
@@ -290,27 +354,27 @@ msgstr "Utolsó 30 nap (hónap)"
290
  msgid "Last 7 Days (Week)"
291
  msgstr "Utolsó 7 nap (hét)"
292
 
293
- #: includes/functions/functions.php:403
294
  msgid "Yahoo!"
295
  msgstr "Yahoo!"
296
 
297
- #: includes/functions/functions.php:404
298
  msgid "Yandex"
299
  msgstr "Yandex"
300
 
301
- #: includes/functions/functions.php:400
302
  msgid "clearch.org"
303
  msgstr "clearch.org"
304
 
305
- #: includes/functions/functions.php:401
306
  msgid "DuckDuckGo"
307
  msgstr "DuckDuckGo"
308
 
309
- #: includes/functions/functions.php:399
310
  msgid "Bing"
311
  msgstr "Bing"
312
 
313
- #: includes/functions/functions.php:398
314
  msgid "Baidu"
315
  msgstr "Baidu"
316
 
@@ -413,8 +477,8 @@ msgid "For each visit to account for several hits. Currently %s."
413
  msgstr "Egy azonosított felhasználó minden egyes találatának egységesítése. Jelenleg %s."
414
 
415
  #: includes/settings/tabs/wps-general.php:177
416
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:351
417
- #: wp-statistics.php:427
418
  msgid "Pages"
419
  msgstr "Oldal"
420
 
@@ -424,11 +488,11 @@ msgstr "Nyomon követi az összes oldalak"
424
 
425
  #: includes/settings/tabs/wps-general.php:209
426
  msgid "Strip parameters from URI"
427
- msgstr ""
428
 
429
  #: includes/settings/tabs/wps-general.php:215
430
  msgid "This will remove anything after the ? in a URL."
431
- msgstr ""
432
 
433
  #: includes/settings/tabs/wps-general.php:223
434
  msgid "Disable hits column in post/pages list"
@@ -464,7 +528,7 @@ msgstr "Mellett hiba WP Statistics figyelmeztetést jelenít meg, ha az alapvet
464
 
465
  #: includes/settings/tabs/wps-general.php:265
466
  msgid "Delete the manual"
467
- msgstr "A manuális törlése"
468
 
469
  #: includes/settings/tabs/wps-general.php:271
470
  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."
@@ -498,81 +562,81 @@ msgstr "Összegek szerepeltethetők"
498
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
499
  msgstr "Adjunk hozzá egy teljes sort térképek több értéket, mint a search engine áttételek"
500
 
501
- #: includes/settings/tabs/wps-geoip.php:27
502
  msgid "GeoIP settings"
503
  msgstr "GeoIP beállítások"
504
 
505
- #: includes/settings/tabs/wps-geoip.php:32
506
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
507
- msgstr "IP helymeghatározó szolgáltatások által GeoLite2 adatok készítette MaxMind, elérhető: %s."
508
 
509
- #: includes/settings/tabs/wps-geoip.php:42
510
  msgid "GeoIP collection"
511
- msgstr "GeoIP gyűjtemény"
512
 
513
- #: includes/settings/tabs/wps-geoip.php:48
514
  msgid "For get more information and location (country) from visitor, enable this feature."
515
- msgstr "A get további információkért és a hely (ország), a látogató, képessé tesz ez vonás."
516
 
517
- #: includes/settings/tabs/wps-geoip.php:54
518
  msgid "Update GeoIP Info"
519
  msgstr "GeoIP információ frissítése"
520
 
521
- #: includes/settings/tabs/wps-geoip.php:59
522
  msgid "Download GeoIP Database"
523
  msgstr "GeoIP adatbázis letöltése"
524
 
525
- #: includes/settings/tabs/wps-geoip.php:66
526
  msgid "Schedule monthly update of GeoIP DB"
527
- msgstr "GeoIP db havi frissítés ütemezése"
528
 
529
- #: includes/settings/tabs/wps-geoip.php:92
530
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
531
- msgstr "Letöltés GeoIP adatbázis részére 2 napok után minden hónap első keddjén ütemezi."
532
 
533
- #: includes/settings/tabs/wps-geoip.php:93
534
  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)."
535
- msgstr "Ez a beállítás is töltse le az adatbázist, ha a helyi filesize, kevesebb, mint 1k (ami általában azt jelenti, a percet, amit jön-val a plugin még mindig a helyén)."
536
 
537
- #: includes/settings/tabs/wps-geoip.php:99
538
  msgid "Populate missing GeoIP after update of GeoIP DB"
539
- msgstr "Feltölti a hiányzó GeoIP GeoIP db frissítés után"
540
 
541
- #: includes/settings/tabs/wps-geoip.php:105
542
  msgid "Update any missing GeoIP data after downloading a new database."
543
- msgstr "Minden hiányzó GeoIP adatok frissítése után letöltő egy új adatbázist."
544
 
545
- #: includes/settings/tabs/wps-geoip.php:111
546
  msgid "Country code for private IP addresses"
547
- msgstr ""
548
 
549
- #: includes/settings/tabs/wps-geoip.php:116
550
  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."
551
- msgstr ""
552
 
553
- #: includes/settings/tabs/wps-geoip.php:127
554
  msgid "GeoIP collection is disabled due to the following reasons:"
555
  msgstr "GeoIP-gyűjtés le van tiltva, az alábbi okokból:"
556
 
557
- #: includes/settings/tabs/wps-geoip.php:130
558
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
559
- msgstr "GeoIP gyűjtemény megkövetel PHP (% s), vagy a fenti, ez jelenleg meghibásodott miatt a telepített PHP változat "
560
 
561
- #: includes/settings/tabs/wps-geoip.php:135
562
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
563
- msgstr "Gyűjtemény GeoIP PHP cURL kiterjesztése szükséges, és nincs betöltve, PHP-verzió!"
564
 
565
- #: includes/settings/tabs/wps-geoip.php:141
566
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
567
- msgstr "GeoIP gyűjtemény igényel a BC matematikai PHP kiterjesztés, és nincs betöltve, PHP-verzió!"
568
 
569
- #: includes/settings/tabs/wps-geoip.php:147
570
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
571
- msgstr "PHP safe mód! Gyűjtemény GeoIP PHP safe mód engedélyezve van nem támogatott!"
572
 
573
  #: includes/settings/tabs/wps-maintenance.php:20
574
  msgid "This will permanently delete data from the database each day, are you sure you want to enable this option?"
575
- msgstr "Ez véglegesen törli adatok az adatbázisból minden nap, Ön biztos benne, hogy engedélyezze ezt a beállítást?"
576
 
577
  #: includes/settings/tabs/wps-maintenance.php:30
578
  msgid "Database Maintenance"
@@ -581,15 +645,15 @@ msgstr "Adatbázis karbantartás"
581
  #: includes/settings/tabs/wps-maintenance.php:35
582
  #: includes/settings/tabs/wps-maintenance.php:59
583
  msgid "Run a daily WP Cron job to prune the databases"
584
- msgstr "Fuss egy napi WP-banya munka-adatbázisok szilva"
585
 
586
  #: includes/settings/tabs/wps-maintenance.php:41
587
  msgid "A WP Cron job will be run daily to prune any data older than a set number of days."
588
- msgstr "A WP-banya munka napi szilva megadott számú napnál régebbi adatokat kell futtatni."
589
 
590
  #: includes/settings/tabs/wps-maintenance.php:47
591
  msgid "Prune data older than"
592
- msgstr "Szilva adatait, régebbi, mint"
593
 
594
  #: includes/settings/tabs/wps-maintenance.php:52
595
  msgid "Days"
@@ -609,38 +673,37 @@ msgstr "E-mail címek"
609
 
610
  #: includes/settings/tabs/wps-notifications.php:54
611
  msgid "A comma separated list of e-mail addresses to send reports to."
612
- msgstr ""
613
 
614
  #: includes/settings/tabs/wps-notifications.php:59
615
  msgid "Update Reports"
616
- msgstr ""
617
 
618
  #: includes/log/exclusions.php:24
619
  #: includes/settings/tabs/wps-notifications.php:64
620
  msgid "Browscap"
621
- msgstr ""
622
 
623
  #: includes/settings/tabs/wps-notifications.php:70
624
  msgid "Send a report whenever the browscap.ini is updated."
625
- msgstr ""
626
 
627
  #: includes/log/exclusions.php:24
628
  #: includes/settings/tabs/wps-notifications.php:76
629
- #: includes/settings/wps-settings.php:111
630
  msgid "GeoIP"
631
  msgstr "GeoIP"
632
 
633
  #: includes/settings/tabs/wps-notifications.php:82
634
  msgid "Send a report whenever the GeoIP database is updated."
635
- msgstr ""
636
 
637
  #: includes/settings/tabs/wps-notifications.php:88
638
  msgid "Pruning"
639
- msgstr "Fametszés"
640
 
641
  #: includes/settings/tabs/wps-notifications.php:94
642
  msgid "Send a report whenever the pruning of database is run."
643
- msgstr ""
644
 
645
  #: includes/settings/tabs/wps-notifications.php:100
646
  msgid "Upgrade"
@@ -651,7 +714,7 @@ msgid "Send a report whenever the plugin is upgraded."
651
  msgstr "Jelentést küld, ha a plugint frissítették."
652
 
653
  #: includes/settings/tabs/wps-notifications.php:111
654
- #: includes/settings/tabs/wps-notifications.php:116 schedule.php:199
655
  msgid "Statistical reporting"
656
  msgstr "Statisztikai adatszolgáltatás"
657
 
@@ -681,7 +744,7 @@ msgstr "Válassz ki egy kézbesítési módot a statisztikai jelentésekről."
681
 
682
  #: includes/settings/tabs/wps-notifications.php:173
683
  msgid "Note: To send SMS text messages please install the %s plugin."
684
- msgstr "Megjegyzés: Küld SMS szöveg üzenet kérjük telepítse a %s plugin."
685
 
686
  #: includes/settings/tabs/wps-notifications.php:173
687
  msgid "WordPress SMS"
@@ -697,10 +760,10 @@ msgstr "Írd be a jelentés tartalmát."
697
 
698
  #: includes/settings/tabs/wps-notifications.php:187
699
  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:"
700
- msgstr ""
701
 
702
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
703
- #: widget.php:245 wp-statistics.php:532
704
  msgid "User Online"
705
  msgstr "Jelenlévő felhasználó"
706
 
@@ -743,7 +806,7 @@ msgid "Summary Statistics"
743
  msgstr "Statisztikák összegzése"
744
 
745
  #: includes/settings/tabs/wps-overview-display.php:28
746
- #: includes/settings/wps-settings.php:115
747
  msgid "About"
748
  msgstr "Rólunk"
749
 
@@ -787,13 +850,13 @@ msgstr "Bejegyzés/ oldal szerkesztő widget kikapcsolása"
787
 
788
  #: includes/settings/tabs/wps-overview-display.php:108
789
  msgid "Disable the page/post editor widget."
790
- msgstr ""
791
 
792
  #: includes/settings/tabs/wps-overview-display.php:122
793
  msgid "Map type"
794
  msgstr "Típusa"
795
 
796
- #: includes/functions/functions.php:402
797
  #: includes/settings/tabs/wps-overview-display.php:128
798
  msgid "Google"
799
  msgstr "Google"
@@ -816,15 +879,15 @@ msgstr "Térkép kikapcsolása"
816
 
817
  #: includes/settings/tabs/wps-overview-display.php:148
818
  msgid "Disable the map display"
819
- msgstr "Térkép megjelenítésének a kikapcsolása"
820
 
821
  #: includes/settings/tabs/wps-overview-display.php:154
822
  msgid "Get country location from Google"
823
- msgstr "Kap ország helyét a Google-tól"
824
 
825
  #: includes/settings/tabs/wps-overview-display.php:160
826
  msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
827
- msgstr "Ez a funkció egy teljesítménycsökkenést okozhat, amikor statisztika, és csak akkor érvényes, ha a Térkép típus van készlet-hoz \"Google\"."
828
 
829
  #: includes/settings/tabs/wps-overview-display.php:171
830
  msgid "Overview Widgets to Display"
@@ -840,52 +903,52 @@ msgstr "Cella"
840
 
841
  #: includes/settings/tabs/wps-overview-display.php:184
842
  msgid "Column A"
843
- msgstr "Oszlop A"
844
 
845
  #: includes/settings/tabs/wps-overview-display.php:188
846
  msgid "Column B"
847
- msgstr "Oszlop B"
848
 
849
  #: includes/settings/tabs/wps-overview-display.php:194
850
  msgid "Slot 1"
851
- msgstr "Cella 1"
852
 
853
  #: includes/settings/tabs/wps-overview-display.php:224
854
  msgid "Slot 2"
855
- msgstr "Cella 2"
856
 
857
  #: includes/settings/tabs/wps-overview-display.php:254
858
  msgid "Slot 3"
859
- msgstr "Cella 3"
860
 
861
  #: includes/settings/tabs/wps-overview-display.php:284
862
  msgid "Slot 4"
863
- msgstr "Cella 4"
864
 
865
  #: includes/settings/tabs/wps-overview-display.php:314
866
  msgid "Slot 5"
867
- msgstr "Cella 5"
868
 
869
  #: includes/settings/tabs/wps-overview-display.php:344
870
  msgid "Slot 6"
871
- msgstr "Cella 6"
872
 
873
  #: includes/settings/tabs/wps-overview-display.php:348
874
  #: includes/settings/tabs/wps-overview-display.php:370
875
  msgid "N/A"
876
- msgstr "NINCS ADAT"
877
 
878
  #: includes/settings/tabs/wps-overview-display.php:366
879
  msgid "Slot 7"
880
- msgstr "Cella 7"
881
 
882
  #: includes/settings/tabs/wps-removal.php:15
883
  msgid "WP Statisitcs Removal"
884
- msgstr ""
885
 
886
  #: includes/settings/tabs/wps-removal.php:20
887
  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."
888
- msgstr ""
889
 
890
  #: includes/settings/tabs/wps-removal.php:23
891
  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."
@@ -893,45 +956,40 @@ msgstr ""
893
 
894
  #: includes/settings/tabs/wps-removal.php:29
895
  msgid "Remove data and settings"
896
- msgstr ""
897
 
898
  #: includes/settings/tabs/wps-removal.php:34
899
  msgid "Remove"
900
- msgstr "Eltávolít"
901
 
902
  #: includes/settings/tabs/wps-removal.php:35
903
  msgid "Remove data and settings, this action cannot be undone."
904
- msgstr ""
905
 
906
- #: includes/settings/wps-settings.php:106
907
  msgid "General"
908
  msgstr "Általános"
909
 
910
- #: includes/settings/wps-settings.php:107
911
  msgid "Notifications"
912
  msgstr "Értesítések"
913
 
914
- #: includes/settings/wps-settings.php:108
915
  msgid "Dashboard/Overview"
916
  msgstr "Vezérlőpult/ áttekintés"
917
 
918
- #: includes/settings/wps-settings.php:112
919
- msgid "browscap"
920
- msgstr "browscap"
921
-
922
- #: includes/settings/wps-settings.php:113
923
  msgid "Maintenance"
924
  msgstr "Karbantartás"
925
 
926
- #: includes/settings/wps-settings.php:114
927
  msgid "Removal"
928
  msgstr "Eltávolítás"
929
 
930
  #: includes/settings/tabs/wps-access-level.php:85
931
- #: includes/settings/tabs/wps-browscap.php:81
932
  #: includes/settings/tabs/wps-exclusions.php:234
 
933
  #: includes/settings/tabs/wps-general.php:349
934
- #: includes/settings/tabs/wps-geoip.php:158
935
  #: includes/settings/tabs/wps-maintenance.php:84
936
  #: includes/settings/tabs/wps-notifications.php:201
937
  #: includes/settings/tabs/wps-overview-display.php:388
@@ -951,7 +1009,7 @@ msgstr "2 hetente egyszer"
951
  msgid "Once Every 4 Weeks"
952
  msgstr "4 hetente egyszer"
953
 
954
- #: widget.php:14 wp-statistics.php:342 wp-statistics.php:380
955
  msgid "Statistics"
956
  msgstr "Statisztikák"
957
 
@@ -977,7 +1035,7 @@ msgstr "Összes oldal megtekintése"
977
 
978
  #: widget.php:116
979
  msgid "Search Engine referred"
980
- msgstr "Említett kereső"
981
 
982
  #: widget.php:123 widget.php:298
983
  msgid "Total Posts"
@@ -1023,17 +1081,17 @@ msgstr "Név"
1023
  msgid "Items"
1024
  msgstr "Tételek"
1025
 
1026
- #: widget.php:254 wp-statistics.php:557
1027
  msgid "Yesterday visit"
1028
  msgstr "Tegnapi látogatás"
1029
 
1030
  #: widget.php:278
1031
  msgid "Search Engine Referred"
1032
- msgstr "Említett kereső"
1033
 
1034
  #: widget.php:281
1035
  msgid "Select type of search engine"
1036
- msgstr "Kereső motor típusának kiválasztása"
1037
 
1038
  #: wp-statistics.php:70
1039
  msgid "ERROR: WP Statistics has detected an unsupported version of PHP, WP Statistics will not function without PHP Version "
@@ -1049,15 +1107,15 @@ msgstr "Az aktuális PHP verzió"
1049
 
1050
  #: wp-statistics.php:86
1051
  msgid "WP Statistics has been removed, please disable and delete it."
1052
- msgstr "WP Statistics törölve lett, kérjük, kapcsolja ki és törölje."
1053
 
1054
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1055
  #. Plugin Name of the plugin/theme
1056
  #: wp-statistics.php:37
1057
  msgid "WP Statistics"
1058
  msgstr "WP Statisztika"
1059
 
1060
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1061
  #. Description of the plugin/theme
1062
  #: wp-statistics.php:38
1063
  msgid "Complete statistics for your WordPress site."
@@ -1073,113 +1131,113 @@ msgstr "beállítás oldal"
1073
 
1074
  #: wp-statistics.php:140
1075
  msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
1076
- msgstr "Hit-WP Statistics követés nincs engedélyezve, kérjük %s megy, és lehetővé teszi."
1077
 
1078
  #: wp-statistics.php:143
1079
  msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
1080
- msgstr "Látogató követés-ban WP Statistics nincs engedélyezve, legyen szíves megy (% s), és lehetővé teszi."
1081
 
1082
  #: wp-statistics.php:146
1083
  msgid "GeoIP collection is not active, please go to %s and enable this feature."
1084
- msgstr "GeoIP gyűjtemény nincs aktív, legyen szíves megy (% s), és képessé tesz ez vonás."
1085
 
1086
  #: wp-statistics.php:146
1087
  msgid "Setting page > GeoIP"
1088
  msgstr "Beállítás oldal > GeoIP"
1089
 
1090
- #: wp-statistics.php:249 wp-statistics.php:361 wp-statistics.php:434
1091
  msgid "Settings"
1092
  msgstr "Beállítások"
1093
 
1094
- #: wp-statistics.php:261
1095
  msgid "Click here to visit the plugin on WordPress.org"
1096
  msgstr "Kattintson ide a bővítmény megtekintéséhez a WordPress.org-on"
1097
 
1098
- #: wp-statistics.php:261
1099
  msgid "Visit WordPress.org page"
1100
  msgstr "WordPress.org oldal megtekintése"
1101
 
1102
- #: wp-statistics.php:264
1103
  msgid "Click here to rate and review this plugin on WordPress.org"
1104
  msgstr "Kattintson ide a bővítményértékeléséhez és áttekintéséhez a WordPress.org-on."
1105
 
1106
- #: wp-statistics.php:264
1107
  msgid "Rate this plugin"
1108
  msgstr "Bővítmény értékelése"
1109
 
1110
- #: wp-statistics.php:308
1111
  msgid "WP Statistics - Hits"
1112
  msgstr "WP Statisztika - találatok"
1113
 
1114
- #: wp-statistics.php:345 wp-statistics.php:383 wp-statistics.php:421
1115
  msgid "Overview"
1116
  msgstr "Áttekintés"
1117
 
1118
- #: wp-statistics.php:350 wp-statistics.php:426
1119
  msgid "Online"
1120
  msgstr "Elérhető"
1121
 
1122
- #: wp-statistics.php:352 wp-statistics.php:428
1123
  msgid "Referrers"
1124
  msgstr "Hivatkozók"
1125
 
1126
- #: shortcode.php:135 wp-statistics.php:353 wp-statistics.php:429
1127
  msgid "Searches"
1128
  msgstr "Keresések"
1129
 
1130
- #: wp-statistics.php:354 wp-statistics.php:430
1131
  msgid "Search Words"
1132
  msgstr "Kereső szavak"
1133
 
1134
- #: wp-statistics.php:355 wp-statistics.php:431
1135
  msgid "Top Visitors Today"
1136
  msgstr "Top mai látogatók"
1137
 
1138
- #: wp-statistics.php:360 wp-statistics.php:433
1139
  msgid "Optimization"
1140
  msgstr "Optimalizálás"
1141
 
1142
- #: wp-statistics.php:366 wp-statistics.php:397
1143
  msgid "Manual"
1144
  msgstr "Kézikönyv"
1145
 
1146
- #: wp-statistics.php:412
1147
  msgid "Site"
1148
  msgstr "Oldal"
1149
 
1150
- #: wp-statistics.php:413
1151
  msgid "Options"
1152
  msgstr "Opciók"
1153
 
1154
- #: wp-statistics.php:539
1155
  msgid "Today visitor"
1156
  msgstr "Mai Látogató"
1157
 
1158
- #: wp-statistics.php:545
1159
  msgid "Today visit"
1160
  msgstr "Mai látogatás"
1161
 
1162
- #: wp-statistics.php:551
1163
  msgid "Yesterday visitor"
1164
  msgstr "Tegnapi látogató"
1165
 
1166
- #: wp-statistics.php:563
1167
  msgid "View Stats"
1168
  msgstr "Statisztikák megtekintése"
1169
 
1170
- #: wp-statistics.php:587
1171
  msgid "Download ODF file"
1172
  msgstr "ODF fájl letöltése"
1173
 
1174
- #: wp-statistics.php:588
1175
  msgid "Download HTML file"
1176
  msgstr "HTML fájl letöltése"
1177
 
1178
- #: wp-statistics.php:592
1179
  msgid "Manual file not found."
1180
  msgstr "Kézikönyv nem található."
1181
 
1182
- #: wp-statistics.php:659 wp-statistics.php:770 wp-statistics.php:804
1183
  msgid "You do not have sufficient permissions to access this page."
1184
  msgstr "Nincs megfelelő jogosultság az oldal megtekintéséhez."
1185
 
@@ -1187,7 +1245,7 @@ msgstr "Nincs megfelelő jogosultság az oldal megtekintéséhez."
1187
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
1188
  msgstr ""
1189
 
1190
- #: wp-statistics.php:237
1191
  msgid "WP Statistics %s installed on"
1192
  msgstr "WP Statisztika %s telepítve a(z)"
1193
 
@@ -1209,7 +1267,7 @@ msgstr "A GeoIP adatbázis frissítése sikeresen megtörtént!"
1209
 
1210
  #: wps-updates.php:98
1211
  msgid "GeoIP update on"
1212
- msgstr ""
1213
 
1214
  #: wps-updates.php:165
1215
  msgid "Error downloading browscap database from: %s - %s"
@@ -1235,9 +1293,9 @@ msgstr "browscap már az aktuális verzió!"
1235
  msgid "Browscap.ini update on"
1236
  msgstr "Browscap.ini frissítés"
1237
 
1238
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1239
  #. Plugin URI of the plugin/theme
1240
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1241
  #. Author URI of the plugin/theme
1242
  msgid "http://wp-statistics.com/"
1243
  msgstr "http://wp-statistics.com/"
@@ -1340,7 +1398,7 @@ msgstr ""
1340
 
1341
  #: includes/functions/purge.php:103
1342
  msgid "Please select a value over 30 days."
1343
- msgstr "Kérjük, válasszon egy értéket több mint 30 nap."
1344
 
1345
  #: includes/log/all-browsers.php:8
1346
  msgid "Browser Statistics"
@@ -1364,8 +1422,8 @@ msgid "Click to toggle"
1364
  msgstr "Bővebben kikapcsolás/bekapcsolás"
1365
 
1366
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1367
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:346
1368
- #: wp-statistics.php:422
1369
  msgid "Browsers"
1370
  msgstr "Böngészők"
1371
 
@@ -1384,45 +1442,45 @@ msgstr "Böngésző platform"
1384
 
1385
  #: includes/log/all-browsers.php:234
1386
  msgid "%s Version"
1387
- msgstr "%s Verzió"
1388
 
1389
  #: includes/log/exclusions.php:8
1390
  msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
1391
- msgstr "Figyelem: Kizárás nem aktuális beállítása kell elszámolni, az alábbi eredményeket nem tükrözi a jelenlegi statisztikák!"
1392
 
1393
  #: includes/log/exclusions.php:64
1394
  msgid "Exclusions Statistics"
1395
- msgstr "Statisztika kizárások"
1396
 
1397
- #: includes/functions/functions.php:879
1398
  msgid "10 Days"
1399
  msgstr "10 nap"
1400
 
1401
- #: includes/functions/functions.php:879
1402
  msgid "20 Days"
1403
  msgstr "20 nap"
1404
 
1405
- #: includes/functions/functions.php:879
1406
  msgid "30 Days"
1407
  msgstr "30 nap"
1408
 
1409
- #: includes/functions/functions.php:879
1410
  msgid "2 Months"
1411
  msgstr "2 hónap"
1412
 
1413
- #: includes/functions/functions.php:879
1414
  msgid "3 Months"
1415
  msgstr "3 hónap"
1416
 
1417
- #: includes/functions/functions.php:879
1418
  msgid "6 Months"
1419
  msgstr "6 hónap"
1420
 
1421
- #: includes/functions/functions.php:879
1422
  msgid "9 Months"
1423
  msgstr "9 hónap"
1424
 
1425
- #: includes/functions/functions.php:879
1426
  msgid "1 Year"
1427
  msgstr "1 év"
1428
 
@@ -1471,28 +1529,28 @@ msgstr "Látogató"
1471
  msgid "Latest Search Word Statistics"
1472
  msgstr "Legutolsó keresési szavak statisztikája"
1473
 
1474
- #: includes/log/last-search.php:100 includes/log/last-visitor.php:101
1475
  #: includes/log/online.php:50 includes/log/widgets/google.map.php:84
1476
  #: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
1477
- #: includes/log/widgets/words.php:36
1478
  msgid "#hash#"
1479
  msgstr "#hash#"
1480
 
1481
- #: includes/log/last-search.php:105 includes/log/last-visitor.php:106
1482
  #: includes/log/online.php:55 includes/log/top-referring.php:71
1483
- #: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:43
1484
  #: includes/settings/tabs/wps-overview-display.php:33
1485
  #: includes/settings/tabs/wps-overview-display.php:113
1486
  msgid "Map"
1487
  msgstr "Térkép"
1488
 
1489
- #: includes/log/last-search.php:142 includes/log/last-visitor.php:139
1490
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1491
  #: includes/log/top-referring.php:125
1492
  msgid "Page"
1493
  msgstr "Oldal"
1494
 
1495
- #: includes/log/last-search.php:142 includes/log/last-visitor.php:139
1496
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1497
  #: includes/log/top-referring.php:125
1498
  msgid "From"
@@ -1526,11 +1584,11 @@ msgstr "Oldal Trend"
1526
 
1527
  #: includes/log/search-statistics.php:19 includes/log/search-statistics.php:28
1528
  msgid "Search Engine Referral Statistics"
1529
- msgstr ""
1530
 
1531
  #: includes/log/search-statistics.php:69 includes/log/widgets/search.php:59
1532
  msgid "Search engine referrals in the last"
1533
- msgstr "Search engine áttétel az utolsó"
1534
 
1535
  #: includes/log/search-statistics.php:90 includes/log/widgets/search.php:80
1536
  msgid "Number of referrals"
@@ -1549,7 +1607,7 @@ msgstr "Leggyakoribb országok"
1549
  #: includes/log/top-countries.php:30 includes/log/widgets/countries.php:30
1550
  #: includes/log/widgets/top.visitors.php:30
1551
  msgid "Rank"
1552
- msgstr "Sor"
1553
 
1554
  #: includes/log/top-countries.php:31 includes/log/widgets/countries.php:31
1555
  #: includes/log/widgets/top.visitors.php:32
@@ -1626,7 +1684,7 @@ msgstr "További információ"
1626
 
1627
  #: includes/log/widgets/about.php:39 includes/settings/tabs/wps-about.php:12
1628
  msgid "This product includes GeoLite2 data created by MaxMind, available from %s."
1629
- msgstr "Ez a termék tartalmaz GeoLite2 adatokat, amit a MaxMind készített, elérhető: %s."
1630
 
1631
  #: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
1632
  #: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
@@ -1681,8 +1739,8 @@ msgid "Time: %s"
1681
  msgstr "Idő: %s"
1682
 
1683
  #: includes/log/widgets/top.visitors.php:31
1684
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:273
1685
- #: wp-statistics.php:349 wp-statistics.php:425
1686
  msgid "Hits"
1687
  msgstr "Találatok"
1688
 
@@ -1692,7 +1750,7 @@ msgstr "IP"
1692
 
1693
  #: includes/log/widgets/top.visitors.php:36
1694
  msgid "Agent"
1695
- msgstr ""
1696
 
1697
  #: includes/log/widgets/top.visitors.php:38
1698
  #: includes/optimization/tabs/wps-optimization-resources.php:291
@@ -1706,15 +1764,15 @@ msgstr "Hozzáférés megtagadva!"
1706
 
1707
  #: ajax.php:31
1708
  msgid "%s agent data deleted successfully."
1709
- msgstr "a(z) %s minőségben adatait sikeresen törölve."
1710
 
1711
  #: ajax.php:34
1712
  msgid "No agent data found to remove!"
1713
- msgstr ""
1714
 
1715
  #: ajax.php:38 ajax.php:68 ajax.php:116 ajax.php:122
1716
  msgid "Please select the desired items."
1717
- msgstr "Kérjük, kiválasztani a kívánt elemeket."
1718
 
1719
  #: ajax.php:62
1720
  msgid "%s platform data deleted successfully."
@@ -1724,13 +1782,13 @@ msgstr "a(z) %s platform adatok sikeresen törölve."
1724
  msgid "No platform data found to remove!"
1725
  msgstr "Nincs eltávolítható platform adat!"
1726
 
1727
- #: includes/functions/functions.php:967
1728
  msgid "%s table data deleted successfully."
1729
  msgstr "%s tábla adatai sikeresen törölve."
1730
 
1731
- #: includes/functions/functions.php:971
1732
  msgid "Error, %s not emptied!"
1733
- msgstr "Hiba a(z) %s nem ürítette ki!"
1734
 
1735
  #: includes/optimization/tabs/wps-optimization-database.php:5
1736
  msgid "Database Setup"
@@ -1738,7 +1796,7 @@ msgstr "Adatbázis-beállítások"
1738
 
1739
  #: includes/optimization/tabs/wps-optimization-database.php:10
1740
  msgid "Re-run Install"
1741
- msgstr "Futtassa újra a telepítés"
1742
 
1743
  #: includes/optimization/tabs/wps-optimization-database.php:14
1744
  msgid "Install Now!"
@@ -1746,15 +1804,15 @@ msgstr "Telepítés most!"
1746
 
1747
  #: includes/optimization/tabs/wps-optimization-database.php:15
1748
  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."
1749
- msgstr "Ha valamilyen oknál fogva a bevezetés-ból WP Statistics hiányzik az adatbázis táblákat vagy más magtok elemeket, ez újra végrehajtja a telepítést."
1750
 
1751
  #: includes/optimization/tabs/wps-optimization-database.php:20
1752
  msgid "Database Index"
1753
- msgstr "Index adatbázis"
1754
 
1755
  #: includes/optimization/tabs/wps-optimization-database.php:25
1756
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1757
- #: wp-statistics.php:347 wp-statistics.php:423
1758
  msgid "Countries"
1759
  msgstr "Országok"
1760
 
@@ -1770,8 +1828,9 @@ msgid "Older installs of WP Statistics allow for duplicate entries in the visito
1770
  msgstr "Régi installálók WP Statistics ismétlődő bejegyzések a látogatók tábla sarok esetben teszi lehetővé. Újabb telepíti véd ez a táblázat egyedi indexet. Létrehozni az index a régi installálók ismétlődő bejegyzéseket kell törölni először. Kattintson a \"Update Now\" a vistitors táblázat scan, törölje ismétlődő bejegyzéseket, és hozzá az index."
1771
 
1772
  #: includes/optimization/tabs/wps-optimization-database.php:41
 
1773
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1774
- msgstr "Ez a művelet hosszú időbe is telepíthető, sok a látogatók tábla sorait."
1775
 
1776
  #: includes/optimization/tabs/wps-optimization-database.php:46
1777
  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."
@@ -1779,17 +1838,18 @@ msgstr "Régi installálók WP Statistics ismétlődő bejegyzések a látogató
1779
 
1780
  #: includes/optimization/tabs/wps-optimization-database.php:47
1781
  #: includes/optimization/tabs/wps-optimization-database.php:77
 
1782
  msgid "Congratulations, your installation is already up to date, nothing to do."
1783
  msgstr "Gratulálunk a telepítés befejeződött, nincs további teendője."
1784
 
1785
  #: includes/optimization/tabs/wps-optimization-export.php:8
1786
- #: includes/optimization/wps-optimization.php:183
1787
  msgid "Export"
1788
  msgstr "Exportálás"
1789
 
1790
  #: includes/optimization/tabs/wps-optimization-export.php:13
1791
  msgid "Export from"
1792
- msgstr "Exportálás"
1793
 
1794
  #: includes/optimization/tabs/wps-optimization-export.php:18
1795
  #: includes/optimization/tabs/wps-optimization-export.php:36
@@ -1799,27 +1859,27 @@ msgstr "Exportálás"
1799
  #: includes/settings/tabs/wps-notifications.php:134
1800
  #: includes/settings/tabs/wps-notifications.php:164
1801
  msgid "Please select"
1802
- msgstr "Kérjük, válassza ki"
1803
 
1804
  #: includes/optimization/tabs/wps-optimization-export.php:25
1805
  msgid "Select the table for the output file."
1806
- msgstr "A kimeti fájl táblázatának kiválasztása."
1807
 
1808
  #: includes/optimization/tabs/wps-optimization-export.php:31
1809
  msgid "Export To"
1810
- msgstr "Exportálás formátuma"
1811
 
1812
  #: includes/optimization/tabs/wps-optimization-export.php:42
1813
  msgid "Select the output file type."
1814
- msgstr "A kimeti fájl típúsának kiválasztása."
1815
 
1816
  #: includes/optimization/tabs/wps-optimization-export.php:48
1817
  msgid "Include Header Row"
1818
- msgstr "Fejléc sor beleérve"
1819
 
1820
  #: includes/optimization/tabs/wps-optimization-export.php:53
1821
  msgid "Include a header row as the first line of the exported file."
1822
- msgstr "Az exportált fájl első sora a fejlécsor közé."
1823
 
1824
  #: includes/optimization/tabs/wps-optimization-export.php:54
1825
  msgid "Start Now!"
@@ -1831,12 +1891,12 @@ msgstr "Történeti értékek"
1831
 
1832
  #: includes/optimization/tabs/wps-optimization-historical.php:20
1833
  msgid "Note: As you have just purged the database you must reload this page for these numbers to be correct."
1834
- msgstr ""
1835
 
1836
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1837
  #: includes/settings/tabs/wps-general.php:138
1838
  #: includes/settings/tabs/wps-general.php:143 shortcode.php:133
1839
- #: wp-statistics.php:356 wp-statistics.php:432
1840
  msgid "Visitors"
1841
  msgstr "Megtekintések"
1842
 
@@ -1891,7 +1951,7 @@ msgstr "Tisztítás most!"
1891
 
1892
  #: includes/optimization/tabs/wps-optimization-purging.php:231
1893
  msgid "Delete User Agent Types"
1894
- msgstr "A felhasználó által használt eszköz típusok törlése"
1895
 
1896
  #: includes/optimization/tabs/wps-optimization-purging.php:236
1897
  msgid "Delete Agents"
@@ -1930,7 +1990,7 @@ msgstr "Byte"
1930
 
1931
  #: includes/optimization/tabs/wps-optimization-resources.php:33
1932
  msgid "Last Overview page memory usage"
1933
- msgstr ""
1934
 
1935
  #: includes/optimization/tabs/wps-optimization-resources.php:38
1936
  msgid "Memory usage in the overview page"
@@ -1942,7 +2002,7 @@ msgstr "PHP memória limit"
1942
 
1943
  #: includes/optimization/tabs/wps-optimization-resources.php:49
1944
  msgid "The memory limit a script is allowed to consume, set in php.ini."
1945
- msgstr "A memória korlátoz egy script szabad fogyasztani, a php.ini-ben."
1946
 
1947
  #: includes/optimization/tabs/wps-optimization-resources.php:55
1948
  #: includes/optimization/tabs/wps-optimization-resources.php:66
@@ -1977,7 +2037,7 @@ msgstr "Verzió információ"
1977
 
1978
  #: includes/optimization/tabs/wps-optimization-resources.php:125
1979
  msgid "WP Statistics Version"
1980
- msgstr "WP Statisztika verzió"
1981
 
1982
  #: includes/optimization/tabs/wps-optimization-resources.php:130
1983
  msgid "The WP Statistics version you are running."
@@ -1997,7 +2057,7 @@ msgstr "PHP Safe Mode"
1997
 
1998
  #: includes/optimization/tabs/wps-optimization-resources.php:152
1999
  msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
2000
- msgstr "PHP Safe Mode tevékenykedik. A GeoIP kódot biztonságos üzemmódban nem támogatott."
2001
 
2002
  #: includes/optimization/tabs/wps-optimization-resources.php:158
2003
  msgid "jQuery Version"
@@ -2033,7 +2093,7 @@ msgstr "Nincs telepítve"
2033
 
2034
  #: includes/optimization/tabs/wps-optimization-resources.php:185
2035
  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."
2036
- msgstr "Ha a PHP BC matematikai kiterjesztés telepítve van. BCMath nem hosszabb szükséges a GeoIP-kódot, és itt szerepel, csak történelmi okokból."
2037
 
2038
  #: includes/optimization/tabs/wps-optimization-resources.php:190
2039
  msgid "File Info"
@@ -2051,11 +2111,11 @@ msgstr "Adatbázis fájl nem létezik."
2051
  #: includes/optimization/tabs/wps-optimization-resources.php:225
2052
  #: includes/optimization/tabs/wps-optimization-resources.php:244
2053
  msgid ", created on "
2054
- msgstr ", létre "
2055
 
2056
  #: includes/optimization/tabs/wps-optimization-resources.php:208
2057
  msgid "The file size and date of the GeoIP database."
2058
- msgstr "A fájl méreet és a dátuma a GeoIP adatbázisnak."
2059
 
2060
  #: includes/optimization/tabs/wps-optimization-resources.php:214
2061
  msgid "browscap.ini File"
@@ -2079,7 +2139,7 @@ msgstr "browscap gyorsítótár-fájl nem létezik."
2079
 
2080
  #: includes/optimization/tabs/wps-optimization-resources.php:246
2081
  msgid "The file size and date of the browscap cache file."
2082
- msgstr "A fájl méretét és a browscap fájl."
2083
 
2084
  #: includes/optimization/tabs/wps-optimization-resources.php:251
2085
  msgid "Client Info"
@@ -2095,11 +2155,11 @@ msgstr "Az ügyfél IP-címe."
2095
 
2096
  #: includes/optimization/tabs/wps-optimization-resources.php:267
2097
  msgid "User Agent"
2098
- msgstr "Felhasználó ügynök"
2099
 
2100
  #: includes/optimization/tabs/wps-optimization-resources.php:272
2101
  msgid "The client user agent string."
2102
- msgstr "Az ügyfél felhasználói ügynök karakterlánca."
2103
 
2104
  #: includes/optimization/tabs/wps-optimization-resources.php:278
2105
  msgid "Browser"
@@ -2127,7 +2187,7 @@ msgstr "GeoIP opciók"
2127
 
2128
  #: includes/optimization/tabs/wps-optimization-updates.php:26
2129
  msgid "Updates any unknown location data in the database, this may take a while"
2130
- msgstr "Minden ismeretlen hely adatait frissíti az adatbázisban ez eltarthat egy ideig"
2131
 
2132
  #: includes/optimization/tabs/wps-optimization-updates.php:31
2133
  #: includes/settings/tabs/wps-general.php:66
@@ -2151,23 +2211,23 @@ msgstr "IP-címek helyett vagdalék érték."
2151
  msgid "Install routine complete."
2152
  msgstr "Felszerel rutin teljes."
2153
 
2154
- #: includes/optimization/wps-optimization.php:182
2155
  msgid "Resources/Information"
2156
  msgstr "Erőforrás/információ"
2157
 
2158
- #: includes/optimization/wps-optimization.php:184
2159
  msgid "Purging"
2160
  msgstr "Tisztítás"
2161
 
2162
- #: includes/optimization/wps-optimization.php:185
2163
  msgid "Database"
2164
  msgstr "Adatbázis"
2165
 
2166
- #: includes/optimization/wps-optimization.php:186
2167
  msgid "Updates"
2168
  msgstr "Frissítések"
2169
 
2170
- #: includes/optimization/wps-optimization.php:187
2171
  msgid "Historical"
2172
  msgstr "Történeti"
2173
 
@@ -2225,7 +2285,7 @@ msgstr "Támogatás"
2225
 
2226
  #: includes/settings/tabs/wps-about.php:57
2227
  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:"
2228
- msgstr "Sajnáljuk, hogy problémába ütközött a WP Statisticssal, és örülünk, hogy segíthetünk. Itt van egy pár dolgot, mielőtt kapcsolatba lépne velünk:"
2229
 
2230
  #: includes/settings/tabs/wps-about.php:60
2231
  #: includes/settings/tabs/wps-about.php:61
@@ -2254,7 +2314,7 @@ msgstr "Keress az interneten, ha valamilyen hibaüzenetet kapsz."
2254
 
2255
  #: includes/settings/tabs/wps-about.php:64
2256
  msgid "Make sure you have access to your PHP error logs."
2257
- msgstr ""
2258
 
2259
  #: includes/settings/tabs/wps-about.php:67
2260
  msgid "And a few things to double-check:"
@@ -2317,7 +2377,7 @@ msgid "This is the honey pot for WP Statistics to use, do not delete."
2317
  msgstr ""
2318
 
2319
  #: includes/settings/tabs/wps-access-level.php:23
2320
- #: includes/settings/wps-settings.php:109
2321
  msgid "Access Levels"
2322
  msgstr "Hozzáférési szintek"
2323
 
@@ -2350,8 +2410,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2350
  msgstr "Ha szüksége van a meghatalmazást erőteljesebb megoldást érdemes nézni a WordPress plugin könyvtárban (% s)."
2351
 
2352
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2353
- #: includes/settings/wps-settings.php:110 wp-statistics.php:348
2354
- #: wp-statistics.php:424
2355
  msgid "Exclusions"
2356
  msgstr "Kizárások"
2357
 
@@ -2416,7 +2476,7 @@ msgstr "Robot látogatási küszöb"
2416
 
2417
  #: includes/settings/tabs/wps-exclusions.php:115
2418
  msgid "Treat visitors with more than this number of visits per day as robots. 0 = disabled."
2419
- msgstr ""
2420
 
2421
  #: includes/settings/tabs/wps-exclusions.php:120
2422
  msgid "Excluded IP address list"
@@ -2448,7 +2508,7 @@ msgstr ""
2448
 
2449
  #: includes/settings/tabs/wps-exclusions.php:139
2450
  msgid "Honey pot post id"
2451
- msgstr ""
2452
 
2453
  #: includes/settings/tabs/wps-exclusions.php:142
2454
  msgid "The post id to use for the honeypot page."
@@ -2456,7 +2516,7 @@ msgstr ""
2456
 
2457
  #: includes/settings/tabs/wps-exclusions.php:143
2458
  msgid "Create a new honey pot page"
2459
- msgstr ""
2460
 
2461
  #: includes/settings/tabs/wps-exclusions.php:156
2462
  msgid "GeoIP Exclusions"
@@ -2488,7 +2548,7 @@ msgstr "Blokkolt hostok listája"
2488
 
2489
  #: includes/settings/tabs/wps-exclusions.php:183
2490
  msgid "A list of fully qualified host names (ie. server.example.com, one per line) to exclude from statistics collection."
2491
- msgstr ""
2492
 
2493
  #: includes/settings/tabs/wps-exclusions.php:185
2494
  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."
@@ -2522,16 +2582,21 @@ msgstr "Blokkolt RSS hírcsatornák"
2522
  msgid "Exclude the RSS feeds for registering as a hit."
2523
  msgstr "Blokkolja az RSS csatornák találatként való regisztrálását. "
2524
 
2525
- #: includes/settings/tabs/wps-browscap.php:22
2526
  msgid "browscap settings"
2527
  msgstr "browscap beállítások"
2528
 
2529
- #: includes/settings/tabs/wps-browscap.php:27
2530
  msgid "browscap usage"
2531
  msgstr "browscap használat"
2532
 
2533
- #: includes/settings/tabs/wps-browscap.php:32
2534
- #: includes/settings/tabs/wps-browscap.php:56
 
 
 
 
 
2535
  #: includes/settings/tabs/wps-general.php:76
2536
  #: includes/settings/tabs/wps-general.php:92
2537
  #: includes/settings/tabs/wps-general.php:116
@@ -2547,9 +2612,6 @@ msgstr "browscap használat"
2547
  #: includes/settings/tabs/wps-general.php:286
2548
  #: includes/settings/tabs/wps-general.php:325
2549
  #: includes/settings/tabs/wps-general.php:341
2550
- #: includes/settings/tabs/wps-geoip.php:47
2551
- #: includes/settings/tabs/wps-geoip.php:71
2552
- #: includes/settings/tabs/wps-geoip.php:104
2553
  #: includes/settings/tabs/wps-maintenance.php:40
2554
  #: includes/settings/tabs/wps-maintenance.php:64
2555
  #: includes/settings/tabs/wps-notifications.php:69
@@ -2564,39 +2626,41 @@ msgstr "browscap használat"
2564
  msgid "Active"
2565
  msgstr "Aktív"
2566
 
2567
- #: includes/settings/tabs/wps-browscap.php:33
2568
  msgid "The browscap database will be downloaded and used to detect robots."
2569
- msgstr "Az browscap adatbázis le lesz töltötve és hozzászokott kinyomoz robotok."
2570
 
2571
- #: includes/settings/tabs/wps-browscap.php:39
2572
  msgid "Update browscap Info"
2573
  msgstr "Frissítés browscap Info"
2574
 
2575
- #: includes/settings/tabs/wps-browscap.php:44
2576
  msgid "Download browscap Database"
2577
  msgstr "Letölti a browscap adatbázist"
2578
 
2579
- #: includes/settings/tabs/wps-browscap.php:45
2580
- #: includes/settings/tabs/wps-geoip.php:60
 
2581
  msgid "Save changes on this page to download the update."
2582
  msgstr " Kérjük mentse el módosításait ezen az oldalon a frissítéshez."
2583
 
2584
- #: includes/settings/tabs/wps-browscap.php:51
2585
  msgid "Schedule weekly update of browscap DB"
2586
  msgstr "Browscap DB heti frissítés ütemezése"
2587
 
2588
- #: includes/settings/tabs/wps-browscap.php:59
2589
- #: includes/settings/tabs/wps-geoip.php:74
 
2590
  msgid "Next update will be"
2591
  msgstr "Következő frissítés lesz"
2592
 
2593
- #: includes/settings/tabs/wps-browscap.php:74
2594
  msgid "Download of the browscap database will be scheduled for once a week."
2595
  msgstr "Hetente egyszer a browscap adatbázis letölthető lesz ütemezve."
2596
 
2597
  #: includes/settings/tabs/wps-general.php:50
2598
  msgid "This will delete the manual when you save the settings, are you sure?"
2599
- msgstr "Ez törli a kézikönyv, a beállítások mentésekor, biztos?"
2600
 
2601
  #: includes/settings/tabs/wps-general.php:77
2602
  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."
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2015-07-30 14:59:04+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: includes/optimization/wps-optimization.php:173
14
+ msgid "Search table conversion complete, %d rows added."
15
+ msgstr "Keresés táblázat átalakítás befejeződött,%d sor hozzáadva"
16
+
17
+ #: includes/optimization/tabs/wps-optimization-database.php:107
18
+ msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion."
19
+ msgstr "Régebbi WP Statisztika telepítések keresések részletei tárolják a látogatói táblázatban, amely ronthatja a teljesítményt nagy adatbázis esetén. Egy új táblázat jött létre hogy ezeket az információkat jobban skálázható módon tárolja."
20
+
21
+ #: includes/optimization/tabs/wps-optimization-database.php:86
22
+ msgid "Search Table"
23
+ msgstr ""
24
+
25
+ #: includes/optimization/tabs/wps-optimization-database.php:91
26
+ msgid "Convert"
27
+ msgstr "Konvertálás"
28
+
29
+ #: includes/optimization/tabs/wps-optimization-database.php:100
30
+ msgid "Convert Now!"
31
+ msgstr "Konvertálás indítása"
32
+
33
+ #: includes/optimization/tabs/wps-optimization-database.php:101
34
+ msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion, however the old data must first be converted to the new format before it can be used."
35
+ msgstr ""
36
+
37
+ #: includes/log/exclusions.php:24
38
+ msgid "Referrer Spam"
39
+ msgstr ""
40
+
41
+ #: includes/settings/tabs/wps-externals.php:277
42
+ msgid "Download of the Piwik Referrer Spam Blacklist database will be scheduled for once a week."
43
+ msgstr "A Piwik Referrer Spam Blacklist adatbázis letöltésének ütemezése heti egy alkalommal."
44
+
45
+ #: includes/settings/wps-settings.php:105
46
+ msgid "Externals"
47
+ msgstr ""
48
+
49
+ #: includes/settings/tabs/wps-externals.php:219
50
+ msgid "Piwik Referrer Spam Blacklist settings"
51
+ msgstr ""
52
+
53
+ #: includes/settings/tabs/wps-externals.php:254
54
+ msgid "Schedule weekly update of Piwik Referrer Spam Blacklist DB"
55
+ msgstr ""
56
+
57
+ #: includes/settings/tabs/wps-externals.php:247
58
+ msgid "Download Piwik Referrer Spam Blacklist Database"
59
+ msgstr "Piwik Hivatkozó Spam Blacklist adatbázis letöltése"
60
+
61
+ #: includes/settings/tabs/wps-externals.php:242
62
+ msgid "Update Piwik Referrer Spam Blacklist Info"
63
+ msgstr "Piwik Hivatkozó Spam Blacklist frissítése"
64
+
65
+ #: includes/settings/tabs/wps-externals.php:236
66
+ msgid "The Piwik Referrer Spam Blacklist database will be downloaded and used to detect referrer spam."
67
+ msgstr "A Piwik Referrer Spam Blacklist adatbázis le lesz töltve és használva lesz hivatkozó spam észlelésére"
68
+
69
+ #: includes/settings/tabs/wps-externals.php:224
70
+ msgid "Referrer spam blacklist is provided by Piwik, available from %s."
71
+ msgstr "A hivatkozó spam feketelistát a Piwik biztosítja, elérhető innen:%s."
72
+
73
+ #: includes/settings/tabs/wps-externals.php:230
74
+ msgid "Piwik Referrer Spam Blacklist usage"
75
+ msgstr ""
76
+
77
  #: includes/settings/tabs/wps-exclusions.php:148
78
  msgid "Treat corrupt browser info as a bot"
79
+ msgstr "Nem megfelelő böngésző információ esetén bot-ként kezelés"
80
 
81
  #: includes/log/exclusions.php:24
82
  msgid "404 Pages"
83
+ msgstr "404 Oldalak"
84
 
85
  #: includes/log/top-visitors.php:26
86
  msgid "Date"
87
+ msgstr "Dátum"
88
 
89
  #: includes/settings/tabs/wps-exclusions.php:151
90
  msgid "Treat any visitor with corrupt browser info (missing IP address or empty user agent string) as a robot."
91
+ msgstr "Nem megfelelő böngésző információ (hiányzó IP-cím vagy üres user agent) esetén a látogató kezelése robotként"
92
 
93
  #: includes/settings/tabs/wps-exclusions.php:215
94
  msgid "Excluded 404 pages"
95
+ msgstr "Kizárt 404 oldalak"
96
 
97
  #: includes/settings/tabs/wps-exclusions.php:218
98
  msgid "Exclude any URL that returns a \"404 - Not Found\" message."
99
+ msgstr "Minden URL kizárása, ami &quot;404 - Not Found&quot; üzenetet ad."
100
 
101
  #: wps-updates.php:29
102
  msgid "Error creating GeoIP database directory, make sure your web server has permissions to create directories in : %s"
136
 
137
  #: includes/functions/purge-hits.php:28
138
  msgid "No visitors found to purge."
139
+ msgstr "Nem található látogató amit meg kell tisztítani"
140
 
141
  #: includes/functions/purge-hits.php:25
142
  msgid "%s records purged successfully."
212
 
213
  #: includes/log/exclusions.php:201 includes/log/hit-statistics.php:174
214
  msgid "Chart Total"
215
+ msgstr "Kiválasztott időtartam"
216
 
217
  #: includes/log/exclusions.php:206 includes/log/hit-statistics.php:180
218
  msgid "All Time Total"
219
+ msgstr "Összesen"
220
 
221
  #: includes/log/log.php:57
222
  msgid "Have you thought about donating to WP Statistics?"
223
  msgstr "Gondolt már arra, hogy adományozzon a WP Statisztikának?"
224
 
225
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
226
  msgid "Donate"
227
  msgstr "Adományoz"
228
 
240
 
241
  #: includes/log/log.php:57
242
  msgid "Close"
243
+ msgstr "Bezárás"
244
 
245
  #: shortcode.php:128
246
  msgid "Select the statistic you wish to display."
247
+ msgstr "Válassza ki a megjeleníteni kívánt statisztikát."
248
 
249
  #: shortcode.php:125
250
  msgid "Statistic"
258
  msgid "Time Frame"
259
  msgstr "Időkeret"
260
 
261
+ #: includes/functions/functions.php:981
262
  msgid "to"
263
  msgstr ""
264
 
265
+ #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
266
  msgid "Go"
267
  msgstr ""
268
 
296
 
297
  #: includes/optimization/tabs/wps-optimization-database.php:71
298
  msgid "This operation could take a long time on installs with many rows in the visits table."
299
+ msgstr "Ez a művelet sokáig tarthat olyan telepítés esetében, ahol sok sor van a látogatások táblázatban."
300
 
301
  #: includes/optimization/tabs/wps-optimization-database.php:76
302
  msgid "Older installs of WP Statistics allow for duplicate entries in the visits table in a corner case. Newer installs protect against this with a unique index on the table."
306
  msgid "Filtered by"
307
  msgstr "Szűrés"
308
 
309
+ #: includes/functions/functions.php:974 includes/functions/functions.php:977
310
  msgid "Range"
311
+ msgstr "Tartomány"
312
 
313
+ #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
314
  msgid "MM/DD/YYYY"
315
+ msgstr "HH/NN/ÉÉÉÉ"
316
 
317
  #: includes/settings/tabs/wps-general.php:342
318
  msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
319
+ msgstr "Ne használja a beállított fordítást, helyette az angol legyen a WP Statisztika alapértelmezett nyelve (két oldalbetöltés szükséges)"
320
 
321
  #: includes/settings/tabs/wps-general.php:336
322
  msgid "Force English"
332
 
333
  #: includes/settings/tabs/wps-exclusions.php:225
334
  msgid "A list of local urls (ie. /wordpress/about, one per line) to exclude from statistics collection."
335
+ msgstr "Azon helyi URL-ek listája, melyeket a statisztikai gyűjtésből kizár (Pl.: /wordpress/about, soronként egy)"
336
 
337
  #: includes/settings/tabs/wps-exclusions.php:222
338
  msgid "Excluded URLs list"
354
  msgid "Last 7 Days (Week)"
355
  msgstr "Utolsó 7 nap (hét)"
356
 
357
+ #: includes/functions/functions.php:405
358
  msgid "Yahoo!"
359
  msgstr "Yahoo!"
360
 
361
+ #: includes/functions/functions.php:406
362
  msgid "Yandex"
363
  msgstr "Yandex"
364
 
365
+ #: includes/functions/functions.php:402
366
  msgid "clearch.org"
367
  msgstr "clearch.org"
368
 
369
+ #: includes/functions/functions.php:403
370
  msgid "DuckDuckGo"
371
  msgstr "DuckDuckGo"
372
 
373
+ #: includes/functions/functions.php:401
374
  msgid "Bing"
375
  msgstr "Bing"
376
 
377
+ #: includes/functions/functions.php:400
378
  msgid "Baidu"
379
  msgstr "Baidu"
380
 
477
  msgstr "Egy azonosított felhasználó minden egyes találatának egységesítése. Jelenleg %s."
478
 
479
  #: includes/settings/tabs/wps-general.php:177
480
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
481
+ #: wp-statistics.php:431
482
  msgid "Pages"
483
  msgstr "Oldal"
484
 
488
 
489
  #: includes/settings/tabs/wps-general.php:209
490
  msgid "Strip parameters from URI"
491
+ msgstr "Az URI-ból paraméterek kivágása"
492
 
493
  #: includes/settings/tabs/wps-general.php:215
494
  msgid "This will remove anything after the ? in a URL."
495
+ msgstr "Ez mindent eltávolít az URL-ben lévő \"?\" után."
496
 
497
  #: includes/settings/tabs/wps-general.php:223
498
  msgid "Disable hits column in post/pages list"
528
 
529
  #: includes/settings/tabs/wps-general.php:265
530
  msgid "Delete the manual"
531
+ msgstr "A használati utasítás törlése"
532
 
533
  #: includes/settings/tabs/wps-general.php:271
534
  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."
562
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
563
  msgstr "Adjunk hozzá egy teljes sort térképek több értéket, mint a search engine áttételek"
564
 
565
+ #: includes/settings/tabs/wps-externals.php:32
566
  msgid "GeoIP settings"
567
  msgstr "GeoIP beállítások"
568
 
569
+ #: includes/settings/tabs/wps-externals.php:37
570
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
571
+ msgstr "Az IP helymeghatározó szolgáltatásokat a GeoLite2 adat biztosítja, készítette a MaxMind, elérhető: %s."
572
 
573
+ #: includes/settings/tabs/wps-externals.php:47
574
  msgid "GeoIP collection"
575
+ msgstr "GeoIP gyűjtés"
576
 
577
+ #: includes/settings/tabs/wps-externals.php:53
578
  msgid "For get more information and location (country) from visitor, enable this feature."
579
+ msgstr "Ha szeretne a látogatóról több információt és helyinformációt (ország) kapni, engedélyezze ezt a funkciót"
580
 
581
+ #: includes/settings/tabs/wps-externals.php:59
582
  msgid "Update GeoIP Info"
583
  msgstr "GeoIP információ frissítése"
584
 
585
+ #: includes/settings/tabs/wps-externals.php:64
586
  msgid "Download GeoIP Database"
587
  msgstr "GeoIP adatbázis letöltése"
588
 
589
+ #: includes/settings/tabs/wps-externals.php:71
590
  msgid "Schedule monthly update of GeoIP DB"
591
+ msgstr "GeoIP adatbázis havi frissítés ütemezése"
592
 
593
+ #: includes/settings/tabs/wps-externals.php:97
594
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
595
+ msgstr "GeoIP adatbázis letöltés ütemezése minden hónap első keddi napja után 2 nappal."
596
 
597
+ #: includes/settings/tabs/wps-externals.php:98
598
  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)."
599
+ msgstr "Ez a beállítás is letölti az adatbázist, ha a helyi file méret kevesebb, mint 1k (ami általában azt jelenti, hogy a csonk amivel a bővítménnyel jön, még mindig a helyén van)"
600
 
601
+ #: includes/settings/tabs/wps-externals.php:104
602
  msgid "Populate missing GeoIP after update of GeoIP DB"
603
+ msgstr "Hiányzó GeoIP betöltése a GeoIP adatbázis frissítése után"
604
 
605
+ #: includes/settings/tabs/wps-externals.php:110
606
  msgid "Update any missing GeoIP data after downloading a new database."
607
+ msgstr "Bármely hiányzó GeoIP adat frissítése új adatbázis letöltése után."
608
 
609
+ #: includes/settings/tabs/wps-externals.php:116
610
  msgid "Country code for private IP addresses"
611
+ msgstr "privát IP-címek ország kódja"
612
 
613
+ #: includes/settings/tabs/wps-externals.php:121
614
  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."
615
+ msgstr "A nemzetközi szabvány szerinti kétbetűs országkód (Pl.: US = Egyesült Államok, HU = Magyarország, stb) magán (nem átirányítható) IP-címeknek (pl. 10.0.0.1, 192.158.1.1, 127.0.0.1, stb). Használd a &quot;000&quot; (három nullát) &quot;Ismeretlen&quot;, ország kód jelzéshez."
616
 
617
+ #: includes/settings/tabs/wps-externals.php:132
618
  msgid "GeoIP collection is disabled due to the following reasons:"
619
  msgstr "GeoIP-gyűjtés le van tiltva, az alábbi okokból:"
620
 
621
+ #: includes/settings/tabs/wps-externals.php:135
622
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
623
+ msgstr "GeoIP gyűjtéshez szükséges PHP (%s) vagy a újabb, ezért jelenleg kikapcsolva, mert a telepített PHP verzió"
624
 
625
+ #: includes/settings/tabs/wps-externals.php:140
626
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
627
+ msgstr "GeoIP gyűjtéshez cURL PHP kiterjesztés szükséges, és az nincs betöltve az Ön PHP-verziójában!"
628
 
629
+ #: includes/settings/tabs/wps-externals.php:146
630
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
631
+ msgstr "GeoIP gyűjtéshez a BC Math PHP kiterjesztés szükséges, és az nincs betöltve az Ön PHP-verziójában!"
632
 
633
+ #: includes/settings/tabs/wps-externals.php:152
634
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
635
+ msgstr "PHP safe mód-ot észletünk! GeoIP gyűjtés nem támogatott ha a PHP safe mód engedélyezve van!"
636
 
637
  #: includes/settings/tabs/wps-maintenance.php:20
638
  msgid "This will permanently delete data from the database each day, are you sure you want to enable this option?"
639
+ msgstr "Ez véglegesen törli az adatokat az adatbázisból minden nap, biztos benne, hogy engedélyezi ezt a beállítást?"
640
 
641
  #: includes/settings/tabs/wps-maintenance.php:30
642
  msgid "Database Maintenance"
645
  #: includes/settings/tabs/wps-maintenance.php:35
646
  #: includes/settings/tabs/wps-maintenance.php:59
647
  msgid "Run a daily WP Cron job to prune the databases"
648
+ msgstr "Napi WP Cron job futtatása az adatbázisok adatbázisok tisztításához"
649
 
650
  #: includes/settings/tabs/wps-maintenance.php:41
651
  msgid "A WP Cron job will be run daily to prune any data older than a set number of days."
652
+ msgstr "A WP Cron job futtatása naponta, hogy a megadott számú napnál régebbi adatokat töröljük."
653
 
654
  #: includes/settings/tabs/wps-maintenance.php:47
655
  msgid "Prune data older than"
656
+ msgstr "Adatok törlése, ami régebbi, mint"
657
 
658
  #: includes/settings/tabs/wps-maintenance.php:52
659
  msgid "Days"
673
 
674
  #: includes/settings/tabs/wps-notifications.php:54
675
  msgid "A comma separated list of e-mail addresses to send reports to."
676
+ msgstr "E-mail címek vesszővel elválasztott listája, ahová a jelentéseket küldjük."
677
 
678
  #: includes/settings/tabs/wps-notifications.php:59
679
  msgid "Update Reports"
680
+ msgstr "Jelentések frissítése"
681
 
682
  #: includes/log/exclusions.php:24
683
  #: includes/settings/tabs/wps-notifications.php:64
684
  msgid "Browscap"
685
+ msgstr "Browscap"
686
 
687
  #: includes/settings/tabs/wps-notifications.php:70
688
  msgid "Send a report whenever the browscap.ini is updated."
689
+ msgstr "Jelentést küld, ha a browscap.ini frissül."
690
 
691
  #: includes/log/exclusions.php:24
692
  #: includes/settings/tabs/wps-notifications.php:76
 
693
  msgid "GeoIP"
694
  msgstr "GeoIP"
695
 
696
  #: includes/settings/tabs/wps-notifications.php:82
697
  msgid "Send a report whenever the GeoIP database is updated."
698
+ msgstr "Jelentést küld, ha a GeoIP adatbázis frissül."
699
 
700
  #: includes/settings/tabs/wps-notifications.php:88
701
  msgid "Pruning"
702
+ msgstr "Tisztítás"
703
 
704
  #: includes/settings/tabs/wps-notifications.php:94
705
  msgid "Send a report whenever the pruning of database is run."
706
+ msgstr "Jelentést küld, ha adatbázis tisztítás fut."
707
 
708
  #: includes/settings/tabs/wps-notifications.php:100
709
  msgid "Upgrade"
714
  msgstr "Jelentést küld, ha a plugint frissítették."
715
 
716
  #: includes/settings/tabs/wps-notifications.php:111
717
+ #: includes/settings/tabs/wps-notifications.php:116 schedule.php:221
718
  msgid "Statistical reporting"
719
  msgstr "Statisztikai adatszolgáltatás"
720
 
744
 
745
  #: includes/settings/tabs/wps-notifications.php:173
746
  msgid "Note: To send SMS text messages please install the %s plugin."
747
+ msgstr "Megjegyzés: SMS küldéshez kérjük telepítse a %s plugint."
748
 
749
  #: includes/settings/tabs/wps-notifications.php:173
750
  msgid "WordPress SMS"
760
 
761
  #: includes/settings/tabs/wps-notifications.php:187
762
  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:"
763
+ msgstr "Bármilyen rövid kód (shortcode) támogatott a WordPress levél törzsében, beleértve az összes WP Statisztika rövid kódot (rendelkezésre álló kódokat ld. admin kézikönyv). Íme néhány példa:"
764
 
765
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
766
+ #: widget.php:245 wp-statistics.php:536
767
  msgid "User Online"
768
  msgstr "Jelenlévő felhasználó"
769
 
806
  msgstr "Statisztikák összegzése"
807
 
808
  #: includes/settings/tabs/wps-overview-display.php:28
809
+ #: includes/settings/wps-settings.php:108
810
  msgid "About"
811
  msgstr "Rólunk"
812
 
850
 
851
  #: includes/settings/tabs/wps-overview-display.php:108
852
  msgid "Disable the page/post editor widget."
853
+ msgstr "Oldal / Hozzászólás-szerkesztő widget tiltása."
854
 
855
  #: includes/settings/tabs/wps-overview-display.php:122
856
  msgid "Map type"
857
  msgstr "Típusa"
858
 
859
+ #: includes/functions/functions.php:404
860
  #: includes/settings/tabs/wps-overview-display.php:128
861
  msgid "Google"
862
  msgstr "Google"
879
 
880
  #: includes/settings/tabs/wps-overview-display.php:148
881
  msgid "Disable the map display"
882
+ msgstr "A térkép megjelenítésének kikapcsolása"
883
 
884
  #: includes/settings/tabs/wps-overview-display.php:154
885
  msgid "Get country location from Google"
886
+ msgstr "Ország lekérdezése a Google-tól"
887
 
888
  #: includes/settings/tabs/wps-overview-display.php:160
889
  msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
890
+ msgstr "Ez a funkció teljesítménycsökkenést okozhat statisztika nézés közben és csak akkor érvényes, ha a térkép tipusa \"Google\""
891
 
892
  #: includes/settings/tabs/wps-overview-display.php:171
893
  msgid "Overview Widgets to Display"
903
 
904
  #: includes/settings/tabs/wps-overview-display.php:184
905
  msgid "Column A"
906
+ msgstr "A Oszlop"
907
 
908
  #: includes/settings/tabs/wps-overview-display.php:188
909
  msgid "Column B"
910
+ msgstr "B Oszlop"
911
 
912
  #: includes/settings/tabs/wps-overview-display.php:194
913
  msgid "Slot 1"
914
+ msgstr "1. Cella"
915
 
916
  #: includes/settings/tabs/wps-overview-display.php:224
917
  msgid "Slot 2"
918
+ msgstr "2. Cella"
919
 
920
  #: includes/settings/tabs/wps-overview-display.php:254
921
  msgid "Slot 3"
922
+ msgstr "3. Cella"
923
 
924
  #: includes/settings/tabs/wps-overview-display.php:284
925
  msgid "Slot 4"
926
+ msgstr "4. Cella"
927
 
928
  #: includes/settings/tabs/wps-overview-display.php:314
929
  msgid "Slot 5"
930
+ msgstr "5. Cella"
931
 
932
  #: includes/settings/tabs/wps-overview-display.php:344
933
  msgid "Slot 6"
934
+ msgstr "6. Cella"
935
 
936
  #: includes/settings/tabs/wps-overview-display.php:348
937
  #: includes/settings/tabs/wps-overview-display.php:370
938
  msgid "N/A"
939
+ msgstr "NEM ELÉRHETŐ"
940
 
941
  #: includes/settings/tabs/wps-overview-display.php:366
942
  msgid "Slot 7"
943
+ msgstr "7. Cella"
944
 
945
  #: includes/settings/tabs/wps-removal.php:15
946
  msgid "WP Statisitcs Removal"
947
+ msgstr "WP Statisitcs eltávolítása"
948
 
949
  #: includes/settings/tabs/wps-removal.php:20
950
  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."
951
+ msgstr "A WP Statisztika eltávolítása nem távolítja el az adatokat és beállításokat, akkor használd ezt a lehetőséget, ha el akarod távolítani a tárolt adatokat a Bővítmény eltávolítása előtt."
952
 
953
  #: includes/settings/tabs/wps-removal.php:23
954
  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."
956
 
957
  #: includes/settings/tabs/wps-removal.php:29
958
  msgid "Remove data and settings"
959
+ msgstr "Adatok és beállítások eltávolítása"
960
 
961
  #: includes/settings/tabs/wps-removal.php:34
962
  msgid "Remove"
963
+ msgstr "Eltávolítás"
964
 
965
  #: includes/settings/tabs/wps-removal.php:35
966
  msgid "Remove data and settings, this action cannot be undone."
967
+ msgstr "Adatok és beállítások eltávolítása, ez a művelet nem vonható vissza."
968
 
969
+ #: includes/settings/wps-settings.php:100
970
  msgid "General"
971
  msgstr "Általános"
972
 
973
+ #: includes/settings/wps-settings.php:101
974
  msgid "Notifications"
975
  msgstr "Értesítések"
976
 
977
+ #: includes/settings/wps-settings.php:102
978
  msgid "Dashboard/Overview"
979
  msgstr "Vezérlőpult/ áttekintés"
980
 
981
+ #: includes/settings/wps-settings.php:106
 
 
 
 
982
  msgid "Maintenance"
983
  msgstr "Karbantartás"
984
 
985
+ #: includes/settings/wps-settings.php:107
986
  msgid "Removal"
987
  msgstr "Eltávolítás"
988
 
989
  #: includes/settings/tabs/wps-access-level.php:85
 
990
  #: includes/settings/tabs/wps-exclusions.php:234
991
+ #: includes/settings/tabs/wps-externals.php:284
992
  #: includes/settings/tabs/wps-general.php:349
 
993
  #: includes/settings/tabs/wps-maintenance.php:84
994
  #: includes/settings/tabs/wps-notifications.php:201
995
  #: includes/settings/tabs/wps-overview-display.php:388
1009
  msgid "Once Every 4 Weeks"
1010
  msgstr "4 hetente egyszer"
1011
 
1012
+ #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
1013
  msgid "Statistics"
1014
  msgstr "Statisztikák"
1015
 
1035
 
1036
  #: widget.php:116
1037
  msgid "Search Engine referred"
1038
+ msgstr "Keresőmotor hivatkozás"
1039
 
1040
  #: widget.php:123 widget.php:298
1041
  msgid "Total Posts"
1081
  msgid "Items"
1082
  msgstr "Tételek"
1083
 
1084
+ #: widget.php:254 wp-statistics.php:561
1085
  msgid "Yesterday visit"
1086
  msgstr "Tegnapi látogatás"
1087
 
1088
  #: widget.php:278
1089
  msgid "Search Engine Referred"
1090
+ msgstr "Keresőmotor hivatkozás"
1091
 
1092
  #: widget.php:281
1093
  msgid "Select type of search engine"
1094
+ msgstr "Keresőmotor típusának kiválasztása"
1095
 
1096
  #: wp-statistics.php:70
1097
  msgid "ERROR: WP Statistics has detected an unsupported version of PHP, WP Statistics will not function without PHP Version "
1107
 
1108
  #: wp-statistics.php:86
1109
  msgid "WP Statistics has been removed, please disable and delete it."
1110
+ msgstr "WP Statistics el lett távolítva, kérjük, kapcsolja ki és törölje."
1111
 
1112
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1113
  #. Plugin Name of the plugin/theme
1114
  #: wp-statistics.php:37
1115
  msgid "WP Statistics"
1116
  msgstr "WP Statisztika"
1117
 
1118
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1119
  #. Description of the plugin/theme
1120
  #: wp-statistics.php:38
1121
  msgid "Complete statistics for your WordPress site."
1131
 
1132
  #: wp-statistics.php:140
1133
  msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
1134
+ msgstr "Találatok követése a WP Statistics-ban nincs engedélyezve, bekapcsoláshoz menjen az %s oldalra."
1135
 
1136
  #: wp-statistics.php:143
1137
  msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
1138
+ msgstr "Látogató követés a WP Statistics-ban nincs engedélyezve, bekapcsoláshoz menjen a (%s) oldalra."
1139
 
1140
  #: wp-statistics.php:146
1141
  msgid "GeoIP collection is not active, please go to %s and enable this feature."
1142
+ msgstr "GeoIP gyűjtés nem aktív, engedélyezéshez menjen a %s fülre."
1143
 
1144
  #: wp-statistics.php:146
1145
  msgid "Setting page > GeoIP"
1146
  msgstr "Beállítás oldal > GeoIP"
1147
 
1148
+ #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
1149
  msgid "Settings"
1150
  msgstr "Beállítások"
1151
 
1152
+ #: wp-statistics.php:265
1153
  msgid "Click here to visit the plugin on WordPress.org"
1154
  msgstr "Kattintson ide a bővítmény megtekintéséhez a WordPress.org-on"
1155
 
1156
+ #: wp-statistics.php:265
1157
  msgid "Visit WordPress.org page"
1158
  msgstr "WordPress.org oldal megtekintése"
1159
 
1160
+ #: wp-statistics.php:268
1161
  msgid "Click here to rate and review this plugin on WordPress.org"
1162
  msgstr "Kattintson ide a bővítményértékeléséhez és áttekintéséhez a WordPress.org-on."
1163
 
1164
+ #: wp-statistics.php:268
1165
  msgid "Rate this plugin"
1166
  msgstr "Bővítmény értékelése"
1167
 
1168
+ #: wp-statistics.php:312
1169
  msgid "WP Statistics - Hits"
1170
  msgstr "WP Statisztika - találatok"
1171
 
1172
+ #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
1173
  msgid "Overview"
1174
  msgstr "Áttekintés"
1175
 
1176
+ #: wp-statistics.php:354 wp-statistics.php:430
1177
  msgid "Online"
1178
  msgstr "Elérhető"
1179
 
1180
+ #: wp-statistics.php:356 wp-statistics.php:432
1181
  msgid "Referrers"
1182
  msgstr "Hivatkozók"
1183
 
1184
+ #: shortcode.php:135 wp-statistics.php:357 wp-statistics.php:433
1185
  msgid "Searches"
1186
  msgstr "Keresések"
1187
 
1188
+ #: wp-statistics.php:358 wp-statistics.php:434
1189
  msgid "Search Words"
1190
  msgstr "Kereső szavak"
1191
 
1192
+ #: wp-statistics.php:359 wp-statistics.php:435
1193
  msgid "Top Visitors Today"
1194
  msgstr "Top mai látogatók"
1195
 
1196
+ #: wp-statistics.php:364 wp-statistics.php:437
1197
  msgid "Optimization"
1198
  msgstr "Optimalizálás"
1199
 
1200
+ #: wp-statistics.php:370 wp-statistics.php:401
1201
  msgid "Manual"
1202
  msgstr "Kézikönyv"
1203
 
1204
+ #: wp-statistics.php:416
1205
  msgid "Site"
1206
  msgstr "Oldal"
1207
 
1208
+ #: wp-statistics.php:417
1209
  msgid "Options"
1210
  msgstr "Opciók"
1211
 
1212
+ #: wp-statistics.php:543
1213
  msgid "Today visitor"
1214
  msgstr "Mai Látogató"
1215
 
1216
+ #: wp-statistics.php:549
1217
  msgid "Today visit"
1218
  msgstr "Mai látogatás"
1219
 
1220
+ #: wp-statistics.php:555
1221
  msgid "Yesterday visitor"
1222
  msgstr "Tegnapi látogató"
1223
 
1224
+ #: wp-statistics.php:567
1225
  msgid "View Stats"
1226
  msgstr "Statisztikák megtekintése"
1227
 
1228
+ #: wp-statistics.php:591
1229
  msgid "Download ODF file"
1230
  msgstr "ODF fájl letöltése"
1231
 
1232
+ #: wp-statistics.php:592
1233
  msgid "Download HTML file"
1234
  msgstr "HTML fájl letöltése"
1235
 
1236
+ #: wp-statistics.php:596
1237
  msgid "Manual file not found."
1238
  msgstr "Kézikönyv nem található."
1239
 
1240
+ #: wp-statistics.php:663 wp-statistics.php:770 wp-statistics.php:804
1241
  msgid "You do not have sufficient permissions to access this page."
1242
  msgstr "Nincs megfelelő jogosultság az oldal megtekintéséhez."
1243
 
1245
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
1246
  msgstr ""
1247
 
1248
+ #: wp-statistics.php:241
1249
  msgid "WP Statistics %s installed on"
1250
  msgstr "WP Statisztika %s telepítve a(z)"
1251
 
1267
 
1268
  #: wps-updates.php:98
1269
  msgid "GeoIP update on"
1270
+ msgstr "Geoip frissítés:"
1271
 
1272
  #: wps-updates.php:165
1273
  msgid "Error downloading browscap database from: %s - %s"
1293
  msgid "Browscap.ini update on"
1294
  msgstr "Browscap.ini frissítés"
1295
 
1296
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1297
  #. Plugin URI of the plugin/theme
1298
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1299
  #. Author URI of the plugin/theme
1300
  msgid "http://wp-statistics.com/"
1301
  msgstr "http://wp-statistics.com/"
1398
 
1399
  #: includes/functions/purge.php:103
1400
  msgid "Please select a value over 30 days."
1401
+ msgstr "Kérjük, válasszon 30 napnál magasabb értéket."
1402
 
1403
  #: includes/log/all-browsers.php:8
1404
  msgid "Browser Statistics"
1422
  msgstr "Bővebben kikapcsolás/bekapcsolás"
1423
 
1424
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1425
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
1426
+ #: wp-statistics.php:426
1427
  msgid "Browsers"
1428
  msgstr "Böngészők"
1429
 
1442
 
1443
  #: includes/log/all-browsers.php:234
1444
  msgid "%s Version"
1445
+ msgstr "%s verzió"
1446
 
1447
  #: includes/log/exclusions.php:8
1448
  msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
1449
+ msgstr "Figyelem: Kizárások jelenleg nem kerülnek rögzítésre, lehet, hogy az alábbi eredmény nem tükrözi a jelenlegi statisztikát!"
1450
 
1451
  #: includes/log/exclusions.php:64
1452
  msgid "Exclusions Statistics"
1453
+ msgstr "Kizárás statisztika"
1454
 
1455
+ #: includes/functions/functions.php:931
1456
  msgid "10 Days"
1457
  msgstr "10 nap"
1458
 
1459
+ #: includes/functions/functions.php:931
1460
  msgid "20 Days"
1461
  msgstr "20 nap"
1462
 
1463
+ #: includes/functions/functions.php:931
1464
  msgid "30 Days"
1465
  msgstr "30 nap"
1466
 
1467
+ #: includes/functions/functions.php:931
1468
  msgid "2 Months"
1469
  msgstr "2 hónap"
1470
 
1471
+ #: includes/functions/functions.php:931
1472
  msgid "3 Months"
1473
  msgstr "3 hónap"
1474
 
1475
+ #: includes/functions/functions.php:931
1476
  msgid "6 Months"
1477
  msgstr "6 hónap"
1478
 
1479
+ #: includes/functions/functions.php:931
1480
  msgid "9 Months"
1481
  msgstr "9 hónap"
1482
 
1483
+ #: includes/functions/functions.php:931
1484
  msgid "1 Year"
1485
  msgstr "1 év"
1486
 
1529
  msgid "Latest Search Word Statistics"
1530
  msgstr "Legutolsó keresési szavak statisztikája"
1531
 
1532
+ #: includes/log/last-search.php:110 includes/log/last-visitor.php:101
1533
  #: includes/log/online.php:50 includes/log/widgets/google.map.php:84
1534
  #: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
1535
+ #: includes/log/widgets/words.php:46
1536
  msgid "#hash#"
1537
  msgstr "#hash#"
1538
 
1539
+ #: includes/log/last-search.php:115 includes/log/last-visitor.php:106
1540
  #: includes/log/online.php:55 includes/log/top-referring.php:71
1541
+ #: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
1542
  #: includes/settings/tabs/wps-overview-display.php:33
1543
  #: includes/settings/tabs/wps-overview-display.php:113
1544
  msgid "Map"
1545
  msgstr "Térkép"
1546
 
1547
+ #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1548
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1549
  #: includes/log/top-referring.php:125
1550
  msgid "Page"
1551
  msgstr "Oldal"
1552
 
1553
+ #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1554
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1555
  #: includes/log/top-referring.php:125
1556
  msgid "From"
1584
 
1585
  #: includes/log/search-statistics.php:19 includes/log/search-statistics.php:28
1586
  msgid "Search Engine Referral Statistics"
1587
+ msgstr "Keresőmotor Hivatkozás Statisztika"
1588
 
1589
  #: includes/log/search-statistics.php:69 includes/log/widgets/search.php:59
1590
  msgid "Search engine referrals in the last"
1591
+ msgstr "Keresőmotor hivatkozások az utolsó"
1592
 
1593
  #: includes/log/search-statistics.php:90 includes/log/widgets/search.php:80
1594
  msgid "Number of referrals"
1607
  #: includes/log/top-countries.php:30 includes/log/widgets/countries.php:30
1608
  #: includes/log/widgets/top.visitors.php:30
1609
  msgid "Rank"
1610
+ msgstr "Helyezés"
1611
 
1612
  #: includes/log/top-countries.php:31 includes/log/widgets/countries.php:31
1613
  #: includes/log/widgets/top.visitors.php:32
1684
 
1685
  #: includes/log/widgets/about.php:39 includes/settings/tabs/wps-about.php:12
1686
  msgid "This product includes GeoLite2 data created by MaxMind, available from %s."
1687
+ msgstr "Ez a termék tartalmaz GeoLite2 adatokat, amit a MaxMind készített, elérhetősége: %s."
1688
 
1689
  #: includes/log/widgets/browsers.php:10 includes/log/widgets/countries.php:11
1690
  #: includes/log/widgets/hits.php:10 includes/log/widgets/pages.php:14
1739
  msgstr "Idő: %s"
1740
 
1741
  #: includes/log/widgets/top.visitors.php:31
1742
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
1743
+ #: wp-statistics.php:353 wp-statistics.php:429
1744
  msgid "Hits"
1745
  msgstr "Találatok"
1746
 
1750
 
1751
  #: includes/log/widgets/top.visitors.php:36
1752
  msgid "Agent"
1753
+ msgstr "Agent"
1754
 
1755
  #: includes/log/widgets/top.visitors.php:38
1756
  #: includes/optimization/tabs/wps-optimization-resources.php:291
1764
 
1765
  #: ajax.php:31
1766
  msgid "%s agent data deleted successfully."
1767
+ msgstr "%s agent adatai sikeresen törölve."
1768
 
1769
  #: ajax.php:34
1770
  msgid "No agent data found to remove!"
1771
+ msgstr "Nincs eltávolítható agent adat!"
1772
 
1773
  #: ajax.php:38 ajax.php:68 ajax.php:116 ajax.php:122
1774
  msgid "Please select the desired items."
1775
+ msgstr "Kérjük válassza ki a kívánt elemeket."
1776
 
1777
  #: ajax.php:62
1778
  msgid "%s platform data deleted successfully."
1782
  msgid "No platform data found to remove!"
1783
  msgstr "Nincs eltávolítható platform adat!"
1784
 
1785
+ #: includes/functions/functions.php:1019
1786
  msgid "%s table data deleted successfully."
1787
  msgstr "%s tábla adatai sikeresen törölve."
1788
 
1789
+ #: includes/functions/functions.php:1023
1790
  msgid "Error, %s not emptied!"
1791
+ msgstr "Hiba, %s nincs ürítve!"
1792
 
1793
  #: includes/optimization/tabs/wps-optimization-database.php:5
1794
  msgid "Database Setup"
1796
 
1797
  #: includes/optimization/tabs/wps-optimization-database.php:10
1798
  msgid "Re-run Install"
1799
+ msgstr "Újratelepítés"
1800
 
1801
  #: includes/optimization/tabs/wps-optimization-database.php:14
1802
  msgid "Install Now!"
1804
 
1805
  #: includes/optimization/tabs/wps-optimization-database.php:15
1806
  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."
1807
+ msgstr "Ha valamilyen oknál fogva a WP Statistics hiányolja az adatbázis táblákat vagy más alap összetevőt, ez újra elindítja a telepítési folyamatot."
1808
 
1809
  #: includes/optimization/tabs/wps-optimization-database.php:20
1810
  msgid "Database Index"
1811
+ msgstr "Adatbázis index"
1812
 
1813
  #: includes/optimization/tabs/wps-optimization-database.php:25
1814
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1815
+ #: wp-statistics.php:351 wp-statistics.php:427
1816
  msgid "Countries"
1817
  msgstr "Országok"
1818
 
1828
  msgstr "Régi installálók WP Statistics ismétlődő bejegyzések a látogatók tábla sarok esetben teszi lehetővé. Újabb telepíti véd ez a táblázat egyedi indexet. Létrehozni az index a régi installálók ismétlődő bejegyzéseket kell törölni először. Kattintson a \"Update Now\" a vistitors táblázat scan, törölje ismétlődő bejegyzéseket, és hozzá az index."
1829
 
1830
  #: includes/optimization/tabs/wps-optimization-database.php:41
1831
+ #: includes/optimization/tabs/wps-optimization-database.php:102
1832
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1833
+ msgstr "Ez a művelet hosszú ideig eltarthat, ha sok sora van a látogatók táblának."
1834
 
1835
  #: includes/optimization/tabs/wps-optimization-database.php:46
1836
  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."
1838
 
1839
  #: includes/optimization/tabs/wps-optimization-database.php:47
1840
  #: includes/optimization/tabs/wps-optimization-database.php:77
1841
+ #: includes/optimization/tabs/wps-optimization-database.php:108
1842
  msgid "Congratulations, your installation is already up to date, nothing to do."
1843
  msgstr "Gratulálunk a telepítés befejeződött, nincs további teendője."
1844
 
1845
  #: includes/optimization/tabs/wps-optimization-export.php:8
1846
+ #: includes/optimization/wps-optimization.php:212
1847
  msgid "Export"
1848
  msgstr "Exportálás"
1849
 
1850
  #: includes/optimization/tabs/wps-optimization-export.php:13
1851
  msgid "Export from"
1852
+ msgstr "Adatbázis exportálás"
1853
 
1854
  #: includes/optimization/tabs/wps-optimization-export.php:18
1855
  #: includes/optimization/tabs/wps-optimization-export.php:36
1859
  #: includes/settings/tabs/wps-notifications.php:134
1860
  #: includes/settings/tabs/wps-notifications.php:164
1861
  msgid "Please select"
1862
+ msgstr "Kérjük válasszon"
1863
 
1864
  #: includes/optimization/tabs/wps-optimization-export.php:25
1865
  msgid "Select the table for the output file."
1866
+ msgstr "Vállasza ki a táblát amit exportálni szeretne."
1867
 
1868
  #: includes/optimization/tabs/wps-optimization-export.php:31
1869
  msgid "Export To"
1870
+ msgstr "Export formátuma"
1871
 
1872
  #: includes/optimization/tabs/wps-optimization-export.php:42
1873
  msgid "Select the output file type."
1874
+ msgstr "Válassza ki a kimeti fájl típusát."
1875
 
1876
  #: includes/optimization/tabs/wps-optimization-export.php:48
1877
  msgid "Include Header Row"
1878
+ msgstr "Fejléc sor"
1879
 
1880
  #: includes/optimization/tabs/wps-optimization-export.php:53
1881
  msgid "Include a header row as the first line of the exported file."
1882
+ msgstr "Fejléc a kimeneti fájl első sorában"
1883
 
1884
  #: includes/optimization/tabs/wps-optimization-export.php:54
1885
  msgid "Start Now!"
1891
 
1892
  #: includes/optimization/tabs/wps-optimization-historical.php:20
1893
  msgid "Note: As you have just purged the database you must reload this page for these numbers to be correct."
1894
+ msgstr "Megjegyzés: mivel az imént tisztította meg az adatbázist, újra be kell töltenie ezt az oldalt, ezek a számok helyesen jelenjenek meg."
1895
 
1896
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1897
  #: includes/settings/tabs/wps-general.php:138
1898
  #: includes/settings/tabs/wps-general.php:143 shortcode.php:133
1899
+ #: wp-statistics.php:360 wp-statistics.php:436
1900
  msgid "Visitors"
1901
  msgstr "Megtekintések"
1902
 
1951
 
1952
  #: includes/optimization/tabs/wps-optimization-purging.php:231
1953
  msgid "Delete User Agent Types"
1954
+ msgstr "User Agent típusok törlése"
1955
 
1956
  #: includes/optimization/tabs/wps-optimization-purging.php:236
1957
  msgid "Delete Agents"
1990
 
1991
  #: includes/optimization/tabs/wps-optimization-resources.php:33
1992
  msgid "Last Overview page memory usage"
1993
+ msgstr "Utolsó Áttekintés oldal memóriahasználata"
1994
 
1995
  #: includes/optimization/tabs/wps-optimization-resources.php:38
1996
  msgid "Memory usage in the overview page"
2002
 
2003
  #: includes/optimization/tabs/wps-optimization-resources.php:49
2004
  msgid "The memory limit a script is allowed to consume, set in php.ini."
2005
+ msgstr "Egy script által használható memória korlátozása, beállítva a php.ini-ben."
2006
 
2007
  #: includes/optimization/tabs/wps-optimization-resources.php:55
2008
  #: includes/optimization/tabs/wps-optimization-resources.php:66
2037
 
2038
  #: includes/optimization/tabs/wps-optimization-resources.php:125
2039
  msgid "WP Statistics Version"
2040
+ msgstr "WP Statistics verzió"
2041
 
2042
  #: includes/optimization/tabs/wps-optimization-resources.php:130
2043
  msgid "The WP Statistics version you are running."
2057
 
2058
  #: includes/optimization/tabs/wps-optimization-resources.php:152
2059
  msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
2060
+ msgstr "PHP Safe Mode aktív. A GeoIP kód biztonságos üzemmódban nem támogatott."
2061
 
2062
  #: includes/optimization/tabs/wps-optimization-resources.php:158
2063
  msgid "jQuery Version"
2093
 
2094
  #: includes/optimization/tabs/wps-optimization-resources.php:185
2095
  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."
2096
+ msgstr "Ha a PHP BC matematikai kiterjesztés telepítve van. BCMath már nem előfeltétele a GeoIP-kódnak, és itt csak történelmi okokból szerepel a bejegyzés."
2097
 
2098
  #: includes/optimization/tabs/wps-optimization-resources.php:190
2099
  msgid "File Info"
2111
  #: includes/optimization/tabs/wps-optimization-resources.php:225
2112
  #: includes/optimization/tabs/wps-optimization-resources.php:244
2113
  msgid ", created on "
2114
+ msgstr ", létre hozva"
2115
 
2116
  #: includes/optimization/tabs/wps-optimization-resources.php:208
2117
  msgid "The file size and date of the GeoIP database."
2118
+ msgstr "a GeoIP adatbázis fájl mérete és dátuma "
2119
 
2120
  #: includes/optimization/tabs/wps-optimization-resources.php:214
2121
  msgid "browscap.ini File"
2139
 
2140
  #: includes/optimization/tabs/wps-optimization-resources.php:246
2141
  msgid "The file size and date of the browscap cache file."
2142
+ msgstr "A browscap gyorsítótár-fájl mérete és dátuma."
2143
 
2144
  #: includes/optimization/tabs/wps-optimization-resources.php:251
2145
  msgid "Client Info"
2155
 
2156
  #: includes/optimization/tabs/wps-optimization-resources.php:267
2157
  msgid "User Agent"
2158
+ msgstr "User Agent"
2159
 
2160
  #: includes/optimization/tabs/wps-optimization-resources.php:272
2161
  msgid "The client user agent string."
2162
+ msgstr "A kliens User Agent beállítása"
2163
 
2164
  #: includes/optimization/tabs/wps-optimization-resources.php:278
2165
  msgid "Browser"
2187
 
2188
  #: includes/optimization/tabs/wps-optimization-updates.php:26
2189
  msgid "Updates any unknown location data in the database, this may take a while"
2190
+ msgstr "Minden ismeretlen hely adatait frissíti az adatbázisban, ez eltarthat egy ideig"
2191
 
2192
  #: includes/optimization/tabs/wps-optimization-updates.php:31
2193
  #: includes/settings/tabs/wps-general.php:66
2211
  msgid "Install routine complete."
2212
  msgstr "Felszerel rutin teljes."
2213
 
2214
+ #: includes/optimization/wps-optimization.php:211
2215
  msgid "Resources/Information"
2216
  msgstr "Erőforrás/információ"
2217
 
2218
+ #: includes/optimization/wps-optimization.php:213
2219
  msgid "Purging"
2220
  msgstr "Tisztítás"
2221
 
2222
+ #: includes/optimization/wps-optimization.php:214
2223
  msgid "Database"
2224
  msgstr "Adatbázis"
2225
 
2226
+ #: includes/optimization/wps-optimization.php:215
2227
  msgid "Updates"
2228
  msgstr "Frissítések"
2229
 
2230
+ #: includes/optimization/wps-optimization.php:216
2231
  msgid "Historical"
2232
  msgstr "Történeti"
2233
 
2285
 
2286
  #: includes/settings/tabs/wps-about.php:57
2287
  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:"
2288
+ msgstr "Sajnáljuk, hogy problémába ütközött a WP Statisticssal, és örülünk, hogy segíthetünk. Itt van pár dolog, mielőtt kapcsolatba lépne velünk:"
2289
 
2290
  #: includes/settings/tabs/wps-about.php:60
2291
  #: includes/settings/tabs/wps-about.php:61
2314
 
2315
  #: includes/settings/tabs/wps-about.php:64
2316
  msgid "Make sure you have access to your PHP error logs."
2317
+ msgstr "Győződjön meg róla, hogy van hozzáférése a PHP hibanaplóhoz."
2318
 
2319
  #: includes/settings/tabs/wps-about.php:67
2320
  msgid "And a few things to double-check:"
2377
  msgstr ""
2378
 
2379
  #: includes/settings/tabs/wps-access-level.php:23
2380
+ #: includes/settings/wps-settings.php:103
2381
  msgid "Access Levels"
2382
  msgstr "Hozzáférési szintek"
2383
 
2410
  msgstr "Ha szüksége van a meghatalmazást erőteljesebb megoldást érdemes nézni a WordPress plugin könyvtárban (% s)."
2411
 
2412
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2413
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:352
2414
+ #: wp-statistics.php:428
2415
  msgid "Exclusions"
2416
  msgstr "Kizárások"
2417
 
2476
 
2477
  #: includes/settings/tabs/wps-exclusions.php:115
2478
  msgid "Treat visitors with more than this number of visits per day as robots. 0 = disabled."
2479
+ msgstr "Azon látogatók robotként kezelése, akiknek a napi látogatásuk magasabb, mint ez a szám (0 = kikapcsolva.)"
2480
 
2481
  #: includes/settings/tabs/wps-exclusions.php:120
2482
  msgid "Excluded IP address list"
2508
 
2509
  #: includes/settings/tabs/wps-exclusions.php:139
2510
  msgid "Honey pot post id"
2511
+ msgstr "Honey pot post id"
2512
 
2513
  #: includes/settings/tabs/wps-exclusions.php:142
2514
  msgid "The post id to use for the honeypot page."
2516
 
2517
  #: includes/settings/tabs/wps-exclusions.php:143
2518
  msgid "Create a new honey pot page"
2519
+ msgstr "Új honey pot oldal létrehozása"
2520
 
2521
  #: includes/settings/tabs/wps-exclusions.php:156
2522
  msgid "GeoIP Exclusions"
2548
 
2549
  #: includes/settings/tabs/wps-exclusions.php:183
2550
  msgid "A list of fully qualified host names (ie. server.example.com, one per line) to exclude from statistics collection."
2551
+ msgstr "Azon teljes host nevek listája, ahol kizárja a statisztikai adatok gyűjtését. (pl.: server.example.com, soronként egy)"
2552
 
2553
  #: includes/settings/tabs/wps-exclusions.php:185
2554
  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."
2582
  msgid "Exclude the RSS feeds for registering as a hit."
2583
  msgstr "Blokkolja az RSS csatornák találatként való regisztrálását. "
2584
 
2585
+ #: includes/settings/tabs/wps-externals.php:162
2586
  msgid "browscap settings"
2587
  msgstr "browscap beállítások"
2588
 
2589
+ #: includes/settings/tabs/wps-externals.php:167
2590
  msgid "browscap usage"
2591
  msgstr "browscap használat"
2592
 
2593
+ #: includes/settings/tabs/wps-externals.php:52
2594
+ #: includes/settings/tabs/wps-externals.php:76
2595
+ #: includes/settings/tabs/wps-externals.php:109
2596
+ #: includes/settings/tabs/wps-externals.php:172
2597
+ #: includes/settings/tabs/wps-externals.php:196
2598
+ #: includes/settings/tabs/wps-externals.php:235
2599
+ #: includes/settings/tabs/wps-externals.php:259
2600
  #: includes/settings/tabs/wps-general.php:76
2601
  #: includes/settings/tabs/wps-general.php:92
2602
  #: includes/settings/tabs/wps-general.php:116
2612
  #: includes/settings/tabs/wps-general.php:286
2613
  #: includes/settings/tabs/wps-general.php:325
2614
  #: includes/settings/tabs/wps-general.php:341
 
 
 
2615
  #: includes/settings/tabs/wps-maintenance.php:40
2616
  #: includes/settings/tabs/wps-maintenance.php:64
2617
  #: includes/settings/tabs/wps-notifications.php:69
2626
  msgid "Active"
2627
  msgstr "Aktív"
2628
 
2629
+ #: includes/settings/tabs/wps-externals.php:173
2630
  msgid "The browscap database will be downloaded and used to detect robots."
2631
+ msgstr "A browscap adatbázis le lesz töltve és robotok detektálására lesz használva."
2632
 
2633
+ #: includes/settings/tabs/wps-externals.php:179
2634
  msgid "Update browscap Info"
2635
  msgstr "Frissítés browscap Info"
2636
 
2637
+ #: includes/settings/tabs/wps-externals.php:184
2638
  msgid "Download browscap Database"
2639
  msgstr "Letölti a browscap adatbázist"
2640
 
2641
+ #: includes/settings/tabs/wps-externals.php:65
2642
+ #: includes/settings/tabs/wps-externals.php:185
2643
+ #: includes/settings/tabs/wps-externals.php:248
2644
  msgid "Save changes on this page to download the update."
2645
  msgstr " Kérjük mentse el módosításait ezen az oldalon a frissítéshez."
2646
 
2647
+ #: includes/settings/tabs/wps-externals.php:191
2648
  msgid "Schedule weekly update of browscap DB"
2649
  msgstr "Browscap DB heti frissítés ütemezése"
2650
 
2651
+ #: includes/settings/tabs/wps-externals.php:79
2652
+ #: includes/settings/tabs/wps-externals.php:199
2653
+ #: includes/settings/tabs/wps-externals.php:262
2654
  msgid "Next update will be"
2655
  msgstr "Következő frissítés lesz"
2656
 
2657
+ #: includes/settings/tabs/wps-externals.php:214
2658
  msgid "Download of the browscap database will be scheduled for once a week."
2659
  msgstr "Hetente egyszer a browscap adatbázis letölthető lesz ütemezve."
2660
 
2661
  #: includes/settings/tabs/wps-general.php:50
2662
  msgid "This will delete the manual when you save the settings, are you sure?"
2663
+ msgstr "Ez letörli a kézikönyvet a beállítások mentésekor, biztos benne?"
2664
 
2665
  #: includes/settings/tabs/wps-general.php:77
2666
  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."
languages/wp_statistics-id_ID.mo CHANGED
Binary file
languages/wp_statistics-id_ID.po CHANGED
@@ -10,6 +10,70 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  #: includes/settings/tabs/wps-exclusions.php:148
14
  msgid "Treat corrupt browser info as a bot"
15
  msgstr ""
@@ -158,7 +222,7 @@ msgstr ""
158
  msgid "Have you thought about donating to WP Statistics?"
159
  msgstr ""
160
 
161
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:362
162
  msgid "Donate"
163
  msgstr ""
164
 
@@ -194,11 +258,11 @@ msgstr ""
194
  msgid "Time Frame"
195
  msgstr ""
196
 
197
- #: includes/functions/functions.php:929
198
  msgid "to"
199
  msgstr ""
200
 
201
- #: includes/functions/functions.php:929 includes/log/top-visitors.php:29
202
  msgid "Go"
203
  msgstr ""
204
 
@@ -242,11 +306,11 @@ msgstr ""
242
  msgid "Filtered by"
243
  msgstr ""
244
 
245
- #: includes/functions/functions.php:922 includes/functions/functions.php:925
246
  msgid "Range"
247
  msgstr ""
248
 
249
- #: includes/functions/functions.php:929 includes/log/top-visitors.php:29
250
  msgid "MM/DD/YYYY"
251
  msgstr "MM/DD/YYYY"
252
 
@@ -290,27 +354,27 @@ msgstr ""
290
  msgid "Last 7 Days (Week)"
291
  msgstr ""
292
 
293
- #: includes/functions/functions.php:403
294
  msgid "Yahoo!"
295
  msgstr ""
296
 
297
- #: includes/functions/functions.php:404
298
  msgid "Yandex"
299
  msgstr ""
300
 
301
- #: includes/functions/functions.php:400
302
  msgid "clearch.org"
303
  msgstr ""
304
 
305
- #: includes/functions/functions.php:401
306
  msgid "DuckDuckGo"
307
  msgstr ""
308
 
309
- #: includes/functions/functions.php:399
310
  msgid "Bing"
311
  msgstr ""
312
 
313
- #: includes/functions/functions.php:398
314
  msgid "Baidu"
315
  msgstr ""
316
 
@@ -413,8 +477,8 @@ msgid "For each visit to account for several hits. Currently %s."
413
  msgstr "Untuk setiap kunjungan untuk mendata beberapa hit. Saat ini %s."
414
 
415
  #: includes/settings/tabs/wps-general.php:177
416
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:351
417
- #: wp-statistics.php:427
418
  msgid "Pages"
419
  msgstr "Halaman"
420
 
@@ -498,75 +562,75 @@ msgstr "Termasuk Total"
498
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
499
  msgstr "Menambahkan baris total grafik dengan beberapa nilai, seperti arahan mesin pencarian"
500
 
501
- #: includes/settings/tabs/wps-geoip.php:27
502
  msgid "GeoIP settings"
503
  msgstr "Pengaturan GeoIP"
504
 
505
- #: includes/settings/tabs/wps-geoip.php:32
506
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
507
  msgstr "IP lokasi layanan yang disediakan oleh GeoLite2 data yang dibuat oleh MaxMind, tersedia dari %s."
508
 
509
- #: includes/settings/tabs/wps-geoip.php:42
510
  msgid "GeoIP collection"
511
  msgstr "GeoIP koleksi"
512
 
513
- #: includes/settings/tabs/wps-geoip.php:48
514
  msgid "For get more information and location (country) from visitor, enable this feature."
515
  msgstr "Untuk mendapatkan informasi lebih lanjut dan lokasi (negara) dari pengunjung, mengaktifkan fitur ini."
516
 
517
- #: includes/settings/tabs/wps-geoip.php:54
518
  msgid "Update GeoIP Info"
519
  msgstr "Memperbarui GeoIP Info"
520
 
521
- #: includes/settings/tabs/wps-geoip.php:59
522
  msgid "Download GeoIP Database"
523
  msgstr "Ambil GeoIP Database"
524
 
525
- #: includes/settings/tabs/wps-geoip.php:66
526
  msgid "Schedule monthly update of GeoIP DB"
527
  msgstr "Jadwal bulanan pembaruan GeoIP DB"
528
 
529
- #: includes/settings/tabs/wps-geoip.php:92
530
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
531
  msgstr "Download GeoIP database akan dijadwalkan selama 2 hari setelah hari Selasa pertama bulan."
532
 
533
- #: includes/settings/tabs/wps-geoip.php:93
534
  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)."
535
  msgstr "Opsi ini juga akan download database jika filesize lokal adalah kurang dari 1k (yang biasanya berarti rintisan yang datang dengan plugin ini masih di tempat)."
536
 
537
- #: includes/settings/tabs/wps-geoip.php:99
538
  msgid "Populate missing GeoIP after update of GeoIP DB"
539
  msgstr "Mengisi GeoIP hilang setelah update GeoIP DB"
540
 
541
- #: includes/settings/tabs/wps-geoip.php:105
542
  msgid "Update any missing GeoIP data after downloading a new database."
543
  msgstr "Memperbarui data GeoIP hilang setelah men-download database baru."
544
 
545
- #: includes/settings/tabs/wps-geoip.php:111
546
  msgid "Country code for private IP addresses"
547
  msgstr ""
548
 
549
- #: includes/settings/tabs/wps-geoip.php:116
550
  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."
551
  msgstr ""
552
 
553
- #: includes/settings/tabs/wps-geoip.php:127
554
  msgid "GeoIP collection is disabled due to the following reasons:"
555
  msgstr "Koleksi GeoIP dinonaktifkan karena alasan berikut:"
556
 
557
- #: includes/settings/tabs/wps-geoip.php:130
558
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
559
  msgstr "Koleksi GeoIP memerlukan PHP %s atau di atas, saat ini dinonaktifkan karena menjadi versi PHP diinstal "
560
 
561
- #: includes/settings/tabs/wps-geoip.php:135
562
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
563
  msgstr "Koleksi GeoIP memerlukan ekstensi PHP cURL dan tidak diambil pada versi PHP!"
564
 
565
- #: includes/settings/tabs/wps-geoip.php:141
566
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
567
  msgstr "Koleksi GeoIP memerlukan ekstensi PHP matematika BC dan tidak diambil pada versi PHP!"
568
 
569
- #: includes/settings/tabs/wps-geoip.php:147
570
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
571
  msgstr "Mode PHP aman terdeteksi! Koleksi GeoIP tidak didukung dengan PHP mode aman diaktifkan!"
572
 
@@ -626,7 +690,6 @@ msgstr ""
626
 
627
  #: includes/log/exclusions.php:24
628
  #: includes/settings/tabs/wps-notifications.php:76
629
- #: includes/settings/wps-settings.php:111
630
  msgid "GeoIP"
631
  msgstr "GeoIP"
632
 
@@ -651,7 +714,7 @@ msgid "Send a report whenever the plugin is upgraded."
651
  msgstr ""
652
 
653
  #: includes/settings/tabs/wps-notifications.php:111
654
- #: includes/settings/tabs/wps-notifications.php:116 schedule.php:199
655
  msgid "Statistical reporting"
656
  msgstr "Laporan Statistik"
657
 
@@ -700,7 +763,7 @@ msgid "Any shortcode supported by your installation of WordPress, include all sh
700
  msgstr ""
701
 
702
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
703
- #: widget.php:245 wp-statistics.php:532
704
  msgid "User Online"
705
  msgstr "User sedang online"
706
 
@@ -743,7 +806,7 @@ msgid "Summary Statistics"
743
  msgstr "Ringkasan Statistik"
744
 
745
  #: includes/settings/tabs/wps-overview-display.php:28
746
- #: includes/settings/wps-settings.php:115
747
  msgid "About"
748
  msgstr "Tentang"
749
 
@@ -793,7 +856,7 @@ msgstr ""
793
  msgid "Map type"
794
  msgstr "Peta jenis"
795
 
796
- #: includes/functions/functions.php:402
797
  #: includes/settings/tabs/wps-overview-display.php:128
798
  msgid "Google"
799
  msgstr "Google"
@@ -903,35 +966,30 @@ msgstr ""
903
  msgid "Remove data and settings, this action cannot be undone."
904
  msgstr ""
905
 
906
- #: includes/settings/wps-settings.php:106
907
  msgid "General"
908
  msgstr "Umum"
909
 
910
- #: includes/settings/wps-settings.php:107
911
  msgid "Notifications"
912
  msgstr ""
913
 
914
- #: includes/settings/wps-settings.php:108
915
  msgid "Dashboard/Overview"
916
  msgstr ""
917
 
918
- #: includes/settings/wps-settings.php:112
919
- msgid "browscap"
920
- msgstr "browscap"
921
-
922
- #: includes/settings/wps-settings.php:113
923
  msgid "Maintenance"
924
  msgstr "Pemeliharaan"
925
 
926
- #: includes/settings/wps-settings.php:114
927
  msgid "Removal"
928
  msgstr ""
929
 
930
  #: includes/settings/tabs/wps-access-level.php:85
931
- #: includes/settings/tabs/wps-browscap.php:81
932
  #: includes/settings/tabs/wps-exclusions.php:234
 
933
  #: includes/settings/tabs/wps-general.php:349
934
- #: includes/settings/tabs/wps-geoip.php:158
935
  #: includes/settings/tabs/wps-maintenance.php:84
936
  #: includes/settings/tabs/wps-notifications.php:201
937
  #: includes/settings/tabs/wps-overview-display.php:388
@@ -951,7 +1009,7 @@ msgstr "Setiap 2 minggu sekali"
951
  msgid "Once Every 4 Weeks"
952
  msgstr "Setiap 4 minggu"
953
 
954
- #: widget.php:14 wp-statistics.php:342 wp-statistics.php:380
955
  msgid "Statistics"
956
  msgstr "Statistik"
957
 
@@ -1023,7 +1081,7 @@ msgstr "Nama"
1023
  msgid "Items"
1024
  msgstr "Butir"
1025
 
1026
- #: widget.php:254 wp-statistics.php:557
1027
  msgid "Yesterday visit"
1028
  msgstr "Pengunjung Kemarin"
1029
 
@@ -1051,13 +1109,13 @@ msgstr ""
1051
  msgid "WP Statistics has been removed, please disable and delete it."
1052
  msgstr ""
1053
 
1054
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1055
  #. Plugin Name of the plugin/theme
1056
  #: wp-statistics.php:37
1057
  msgid "WP Statistics"
1058
  msgstr "WP Statistics"
1059
 
1060
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1061
  #. Description of the plugin/theme
1062
  #: wp-statistics.php:38
1063
  msgid "Complete statistics for your WordPress site."
@@ -1087,99 +1145,99 @@ msgstr "Koleksi GeoIP tidak aktif, harap menuju %s dan mengaktifkan fitur ini."
1087
  msgid "Setting page > GeoIP"
1088
  msgstr "Halaman Pengaturan > GeoIP"
1089
 
1090
- #: wp-statistics.php:249 wp-statistics.php:361 wp-statistics.php:434
1091
  msgid "Settings"
1092
  msgstr "Pengaturan"
1093
 
1094
- #: wp-statistics.php:261
1095
  msgid "Click here to visit the plugin on WordPress.org"
1096
  msgstr "Klik di sini untuk mengunjungi plugin di WordPress.org"
1097
 
1098
- #: wp-statistics.php:261
1099
  msgid "Visit WordPress.org page"
1100
  msgstr "Kunjungi halaman WordPress.org"
1101
 
1102
- #: wp-statistics.php:264
1103
  msgid "Click here to rate and review this plugin on WordPress.org"
1104
  msgstr "Klik di sini untuk menilai dan meninjau plugin ini di WordPress.org"
1105
 
1106
- #: wp-statistics.php:264
1107
  msgid "Rate this plugin"
1108
  msgstr "Menilai plugin ini"
1109
 
1110
- #: wp-statistics.php:308
1111
  msgid "WP Statistics - Hits"
1112
  msgstr "WP Statistics - Hits"
1113
 
1114
- #: wp-statistics.php:345 wp-statistics.php:383 wp-statistics.php:421
1115
  msgid "Overview"
1116
  msgstr "Ikhtisar"
1117
 
1118
- #: wp-statistics.php:350 wp-statistics.php:426
1119
  msgid "Online"
1120
  msgstr ""
1121
 
1122
- #: wp-statistics.php:352 wp-statistics.php:428
1123
  msgid "Referrers"
1124
  msgstr ""
1125
 
1126
- #: shortcode.php:135 wp-statistics.php:353 wp-statistics.php:429
1127
  msgid "Searches"
1128
  msgstr "Pencarian"
1129
 
1130
- #: wp-statistics.php:354 wp-statistics.php:430
1131
  msgid "Search Words"
1132
  msgstr "Kata-kata pencarian"
1133
 
1134
- #: wp-statistics.php:355 wp-statistics.php:431
1135
  msgid "Top Visitors Today"
1136
  msgstr ""
1137
 
1138
- #: wp-statistics.php:360 wp-statistics.php:433
1139
  msgid "Optimization"
1140
  msgstr "Optimasi"
1141
 
1142
- #: wp-statistics.php:366 wp-statistics.php:397
1143
  msgid "Manual"
1144
  msgstr "Manual"
1145
 
1146
- #: wp-statistics.php:412
1147
  msgid "Site"
1148
  msgstr ""
1149
 
1150
- #: wp-statistics.php:413
1151
  msgid "Options"
1152
  msgstr ""
1153
 
1154
- #: wp-statistics.php:539
1155
  msgid "Today visitor"
1156
  msgstr "Pengunjung hari ini"
1157
 
1158
- #: wp-statistics.php:545
1159
  msgid "Today visit"
1160
  msgstr "Hari ini mengunjungi"
1161
 
1162
- #: wp-statistics.php:551
1163
  msgid "Yesterday visitor"
1164
  msgstr "Pengunjung kemarin"
1165
 
1166
- #: wp-statistics.php:563
1167
  msgid "View Stats"
1168
  msgstr "Lihat statistik"
1169
 
1170
- #: wp-statistics.php:587
1171
  msgid "Download ODF file"
1172
  msgstr "Men-download ODF file"
1173
 
1174
- #: wp-statistics.php:588
1175
  msgid "Download HTML file"
1176
  msgstr "Men-download HTML file"
1177
 
1178
- #: wp-statistics.php:592
1179
  msgid "Manual file not found."
1180
  msgstr "Manual file tidak ditemukan."
1181
 
1182
- #: wp-statistics.php:659 wp-statistics.php:770 wp-statistics.php:804
1183
  msgid "You do not have sufficient permissions to access this page."
1184
  msgstr "Anda tidak mempunyai akses yang cukup untuk halaman ini"
1185
 
@@ -1187,7 +1245,7 @@ msgstr "Anda tidak mempunyai akses yang cukup untuk halaman ini"
1187
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
1188
  msgstr ""
1189
 
1190
- #: wp-statistics.php:237
1191
  msgid "WP Statistics %s installed on"
1192
  msgstr ""
1193
 
@@ -1235,9 +1293,9 @@ msgstr "browscap sudah di versi saat ini!"
1235
  msgid "Browscap.ini update on"
1236
  msgstr ""
1237
 
1238
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1239
  #. Plugin URI of the plugin/theme
1240
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1241
  #. Author URI of the plugin/theme
1242
  msgid "http://wp-statistics.com/"
1243
  msgstr "http://WP-Statistics.com/"
@@ -1364,8 +1422,8 @@ msgid "Click to toggle"
1364
  msgstr "Klik untuk beralih"
1365
 
1366
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1367
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:346
1368
- #: wp-statistics.php:422
1369
  msgid "Browsers"
1370
  msgstr "Browser"
1371
 
@@ -1394,35 +1452,35 @@ msgstr "Perhatian: Pengecualian tidak saat ini diatur untuk direkam, hasil di ba
1394
  msgid "Exclusions Statistics"
1395
  msgstr "Pengecualian Statistik"
1396
 
1397
- #: includes/functions/functions.php:879
1398
  msgid "10 Days"
1399
  msgstr "10 hari"
1400
 
1401
- #: includes/functions/functions.php:879
1402
  msgid "20 Days"
1403
  msgstr "20 hari"
1404
 
1405
- #: includes/functions/functions.php:879
1406
  msgid "30 Days"
1407
  msgstr "30 hari"
1408
 
1409
- #: includes/functions/functions.php:879
1410
  msgid "2 Months"
1411
  msgstr "2 bulan"
1412
 
1413
- #: includes/functions/functions.php:879
1414
  msgid "3 Months"
1415
  msgstr "3 bulan"
1416
 
1417
- #: includes/functions/functions.php:879
1418
  msgid "6 Months"
1419
  msgstr "6 bulan"
1420
 
1421
- #: includes/functions/functions.php:879
1422
  msgid "9 Months"
1423
  msgstr "9 bulan"
1424
 
1425
- #: includes/functions/functions.php:879
1426
  msgid "1 Year"
1427
  msgstr "1 tahun"
1428
 
@@ -1471,28 +1529,28 @@ msgstr "Pengunjung"
1471
  msgid "Latest Search Word Statistics"
1472
  msgstr "Cari kata Statistik terbaru"
1473
 
1474
- #: includes/log/last-search.php:100 includes/log/last-visitor.php:101
1475
  #: includes/log/online.php:50 includes/log/widgets/google.map.php:84
1476
  #: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
1477
- #: includes/log/widgets/words.php:36
1478
  msgid "#hash#"
1479
  msgstr "#hash #"
1480
 
1481
- #: includes/log/last-search.php:105 includes/log/last-visitor.php:106
1482
  #: includes/log/online.php:55 includes/log/top-referring.php:71
1483
- #: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:43
1484
  #: includes/settings/tabs/wps-overview-display.php:33
1485
  #: includes/settings/tabs/wps-overview-display.php:113
1486
  msgid "Map"
1487
  msgstr "Peta"
1488
 
1489
- #: includes/log/last-search.php:142 includes/log/last-visitor.php:139
1490
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1491
  #: includes/log/top-referring.php:125
1492
  msgid "Page"
1493
  msgstr "Halaman"
1494
 
1495
- #: includes/log/last-search.php:142 includes/log/last-visitor.php:139
1496
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1497
  #: includes/log/top-referring.php:125
1498
  msgid "From"
@@ -1681,8 +1739,8 @@ msgid "Time: %s"
1681
  msgstr "Waktu: %s"
1682
 
1683
  #: includes/log/widgets/top.visitors.php:31
1684
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:273
1685
- #: wp-statistics.php:349 wp-statistics.php:425
1686
  msgid "Hits"
1687
  msgstr "Hits"
1688
 
@@ -1724,11 +1782,11 @@ msgstr "%s platform data dihapus berhasil."
1724
  msgid "No platform data found to remove!"
1725
  msgstr ""
1726
 
1727
- #: includes/functions/functions.php:967
1728
  msgid "%s table data deleted successfully."
1729
  msgstr "data tabel %s berhasil dihapus."
1730
 
1731
- #: includes/functions/functions.php:971
1732
  msgid "Error, %s not emptied!"
1733
  msgstr "Kesalahan, %s tidak dikosongkan!"
1734
 
@@ -1754,7 +1812,7 @@ msgstr "Indeks database"
1754
 
1755
  #: includes/optimization/tabs/wps-optimization-database.php:25
1756
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1757
- #: wp-statistics.php:347 wp-statistics.php:423
1758
  msgid "Countries"
1759
  msgstr "Negara"
1760
 
@@ -1770,6 +1828,7 @@ msgid "Older installs of WP Statistics allow for duplicate entries in the visito
1770
  msgstr "Remaja menginstal WP Statistics memungkinkan untuk entri duplikat dalam tabel pengunjung dalam kasus sudut. Menginstall baru melindungi terhadap ini dengan indeks unik di atas meja. Untuk membuat indeks di menginstall remaja entri duplikat harus dihapus terlebih dahulu. Mengklik \"Update Now\" akan memindai tabel vistitors, menghapus entri duplikat dan menambahkan indeks."
1771
 
1772
  #: includes/optimization/tabs/wps-optimization-database.php:41
 
1773
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1774
  msgstr "Operasi ini dapat mengambil waktu lama untuk menginstal dengan banyak baris dalam tabel pengunjung."
1775
 
@@ -1779,11 +1838,12 @@ msgstr "Remaja menginstal WP Statistics memungkinkan untuk entri duplikat dalam
1779
 
1780
  #: includes/optimization/tabs/wps-optimization-database.php:47
1781
  #: includes/optimization/tabs/wps-optimization-database.php:77
 
1782
  msgid "Congratulations, your installation is already up to date, nothing to do."
1783
  msgstr "Selamat, instalasi ini sudah sampai tanggal, tidak ada hubungannya."
1784
 
1785
  #: includes/optimization/tabs/wps-optimization-export.php:8
1786
- #: includes/optimization/wps-optimization.php:183
1787
  msgid "Export"
1788
  msgstr "Ekspor"
1789
 
@@ -1836,7 +1896,7 @@ msgstr ""
1836
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1837
  #: includes/settings/tabs/wps-general.php:138
1838
  #: includes/settings/tabs/wps-general.php:143 shortcode.php:133
1839
- #: wp-statistics.php:356 wp-statistics.php:432
1840
  msgid "Visitors"
1841
  msgstr "Pengunjung"
1842
 
@@ -2151,23 +2211,23 @@ msgstr "Alamat IP diganti dengan nilai hash."
2151
  msgid "Install routine complete."
2152
  msgstr "Menginstal rutin lengkap."
2153
 
2154
- #: includes/optimization/wps-optimization.php:182
2155
  msgid "Resources/Information"
2156
  msgstr "Sumber-sumber/informasi"
2157
 
2158
- #: includes/optimization/wps-optimization.php:184
2159
  msgid "Purging"
2160
  msgstr "Membersihkan"
2161
 
2162
- #: includes/optimization/wps-optimization.php:185
2163
  msgid "Database"
2164
  msgstr "Database"
2165
 
2166
- #: includes/optimization/wps-optimization.php:186
2167
  msgid "Updates"
2168
  msgstr "Update"
2169
 
2170
- #: includes/optimization/wps-optimization.php:187
2171
  msgid "Historical"
2172
  msgstr ""
2173
 
@@ -2317,7 +2377,7 @@ msgid "This is the honey pot for WP Statistics to use, do not delete."
2317
  msgstr ""
2318
 
2319
  #: includes/settings/tabs/wps-access-level.php:23
2320
- #: includes/settings/wps-settings.php:109
2321
  msgid "Access Levels"
2322
  msgstr "Tingkat akses"
2323
 
@@ -2350,8 +2410,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2350
  msgstr "Jika Anda memerlukan solusi yang lebih kuat untuk mendelegasikan akses Anda mungkin ingin melihat %s di WordPress plugin direktori."
2351
 
2352
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2353
- #: includes/settings/wps-settings.php:110 wp-statistics.php:348
2354
- #: wp-statistics.php:424
2355
  msgid "Exclusions"
2356
  msgstr "Pengecualian"
2357
 
@@ -2522,16 +2582,21 @@ msgstr ""
2522
  msgid "Exclude the RSS feeds for registering as a hit."
2523
  msgstr ""
2524
 
2525
- #: includes/settings/tabs/wps-browscap.php:22
2526
  msgid "browscap settings"
2527
  msgstr "pengaturan browscap"
2528
 
2529
- #: includes/settings/tabs/wps-browscap.php:27
2530
  msgid "browscap usage"
2531
  msgstr "browscap penggunaan"
2532
 
2533
- #: includes/settings/tabs/wps-browscap.php:32
2534
- #: includes/settings/tabs/wps-browscap.php:56
 
 
 
 
 
2535
  #: includes/settings/tabs/wps-general.php:76
2536
  #: includes/settings/tabs/wps-general.php:92
2537
  #: includes/settings/tabs/wps-general.php:116
@@ -2547,9 +2612,6 @@ msgstr "browscap penggunaan"
2547
  #: includes/settings/tabs/wps-general.php:286
2548
  #: includes/settings/tabs/wps-general.php:325
2549
  #: includes/settings/tabs/wps-general.php:341
2550
- #: includes/settings/tabs/wps-geoip.php:47
2551
- #: includes/settings/tabs/wps-geoip.php:71
2552
- #: includes/settings/tabs/wps-geoip.php:104
2553
  #: includes/settings/tabs/wps-maintenance.php:40
2554
  #: includes/settings/tabs/wps-maintenance.php:64
2555
  #: includes/settings/tabs/wps-notifications.php:69
@@ -2564,33 +2626,35 @@ msgstr "browscap penggunaan"
2564
  msgid "Active"
2565
  msgstr "Aktif"
2566
 
2567
- #: includes/settings/tabs/wps-browscap.php:33
2568
  msgid "The browscap database will be downloaded and used to detect robots."
2569
  msgstr "Browscap database akan didownload dan digunakan untuk mendeteksi robot."
2570
 
2571
- #: includes/settings/tabs/wps-browscap.php:39
2572
  msgid "Update browscap Info"
2573
  msgstr "Memperbarui browscap Info"
2574
 
2575
- #: includes/settings/tabs/wps-browscap.php:44
2576
  msgid "Download browscap Database"
2577
  msgstr "Men-download browscap Database"
2578
 
2579
- #: includes/settings/tabs/wps-browscap.php:45
2580
- #: includes/settings/tabs/wps-geoip.php:60
 
2581
  msgid "Save changes on this page to download the update."
2582
  msgstr "Simpan perubahan pada Halaman ini untuk men-download pembaruan."
2583
 
2584
- #: includes/settings/tabs/wps-browscap.php:51
2585
  msgid "Schedule weekly update of browscap DB"
2586
  msgstr "Jadwal mingguan update dari browscap DB"
2587
 
2588
- #: includes/settings/tabs/wps-browscap.php:59
2589
- #: includes/settings/tabs/wps-geoip.php:74
 
2590
  msgid "Next update will be"
2591
  msgstr "Update berikutnya akan"
2592
 
2593
- #: includes/settings/tabs/wps-browscap.php:74
2594
  msgid "Download of the browscap database will be scheduled for once a week."
2595
  msgstr "Download browscap database akan dijadwalkan untuk sekali seminggu."
2596
 
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: includes/optimization/wps-optimization.php:173
14
+ msgid "Search table conversion complete, %d rows added."
15
+ msgstr ""
16
+
17
+ #: includes/optimization/tabs/wps-optimization-database.php:107
18
+ msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion."
19
+ msgstr ""
20
+
21
+ #: includes/optimization/tabs/wps-optimization-database.php:86
22
+ msgid "Search Table"
23
+ msgstr ""
24
+
25
+ #: includes/optimization/tabs/wps-optimization-database.php:91
26
+ msgid "Convert"
27
+ msgstr ""
28
+
29
+ #: includes/optimization/tabs/wps-optimization-database.php:100
30
+ msgid "Convert Now!"
31
+ msgstr ""
32
+
33
+ #: includes/optimization/tabs/wps-optimization-database.php:101
34
+ msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion, however the old data must first be converted to the new format before it can be used."
35
+ msgstr ""
36
+
37
+ #: includes/log/exclusions.php:24
38
+ msgid "Referrer Spam"
39
+ msgstr ""
40
+
41
+ #: includes/settings/tabs/wps-externals.php:277
42
+ msgid "Download of the Piwik Referrer Spam Blacklist database will be scheduled for once a week."
43
+ msgstr ""
44
+
45
+ #: includes/settings/wps-settings.php:105
46
+ msgid "Externals"
47
+ msgstr ""
48
+
49
+ #: includes/settings/tabs/wps-externals.php:219
50
+ msgid "Piwik Referrer Spam Blacklist settings"
51
+ msgstr ""
52
+
53
+ #: includes/settings/tabs/wps-externals.php:254
54
+ msgid "Schedule weekly update of Piwik Referrer Spam Blacklist DB"
55
+ msgstr ""
56
+
57
+ #: includes/settings/tabs/wps-externals.php:247
58
+ msgid "Download Piwik Referrer Spam Blacklist Database"
59
+ msgstr ""
60
+
61
+ #: includes/settings/tabs/wps-externals.php:242
62
+ msgid "Update Piwik Referrer Spam Blacklist Info"
63
+ msgstr ""
64
+
65
+ #: includes/settings/tabs/wps-externals.php:236
66
+ msgid "The Piwik Referrer Spam Blacklist database will be downloaded and used to detect referrer spam."
67
+ msgstr ""
68
+
69
+ #: includes/settings/tabs/wps-externals.php:224
70
+ msgid "Referrer spam blacklist is provided by Piwik, available from %s."
71
+ msgstr ""
72
+
73
+ #: includes/settings/tabs/wps-externals.php:230
74
+ msgid "Piwik Referrer Spam Blacklist usage"
75
+ msgstr ""
76
+
77
  #: includes/settings/tabs/wps-exclusions.php:148
78
  msgid "Treat corrupt browser info as a bot"
79
  msgstr ""
222
  msgid "Have you thought about donating to WP Statistics?"
223
  msgstr ""
224
 
225
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
226
  msgid "Donate"
227
  msgstr ""
228
 
258
  msgid "Time Frame"
259
  msgstr ""
260
 
261
+ #: includes/functions/functions.php:981
262
  msgid "to"
263
  msgstr ""
264
 
265
+ #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
266
  msgid "Go"
267
  msgstr ""
268
 
306
  msgid "Filtered by"
307
  msgstr ""
308
 
309
+ #: includes/functions/functions.php:974 includes/functions/functions.php:977
310
  msgid "Range"
311
  msgstr ""
312
 
313
+ #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
314
  msgid "MM/DD/YYYY"
315
  msgstr "MM/DD/YYYY"
316
 
354
  msgid "Last 7 Days (Week)"
355
  msgstr ""
356
 
357
+ #: includes/functions/functions.php:405
358
  msgid "Yahoo!"
359
  msgstr ""
360
 
361
+ #: includes/functions/functions.php:406
362
  msgid "Yandex"
363
  msgstr ""
364
 
365
+ #: includes/functions/functions.php:402
366
  msgid "clearch.org"
367
  msgstr ""
368
 
369
+ #: includes/functions/functions.php:403
370
  msgid "DuckDuckGo"
371
  msgstr ""
372
 
373
+ #: includes/functions/functions.php:401
374
  msgid "Bing"
375
  msgstr ""
376
 
377
+ #: includes/functions/functions.php:400
378
  msgid "Baidu"
379
  msgstr ""
380
 
477
  msgstr "Untuk setiap kunjungan untuk mendata beberapa hit. Saat ini %s."
478
 
479
  #: includes/settings/tabs/wps-general.php:177
480
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
481
+ #: wp-statistics.php:431
482
  msgid "Pages"
483
  msgstr "Halaman"
484
 
562
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
563
  msgstr "Menambahkan baris total grafik dengan beberapa nilai, seperti arahan mesin pencarian"
564
 
565
+ #: includes/settings/tabs/wps-externals.php:32
566
  msgid "GeoIP settings"
567
  msgstr "Pengaturan GeoIP"
568
 
569
+ #: includes/settings/tabs/wps-externals.php:37
570
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
571
  msgstr "IP lokasi layanan yang disediakan oleh GeoLite2 data yang dibuat oleh MaxMind, tersedia dari %s."
572
 
573
+ #: includes/settings/tabs/wps-externals.php:47
574
  msgid "GeoIP collection"
575
  msgstr "GeoIP koleksi"
576
 
577
+ #: includes/settings/tabs/wps-externals.php:53
578
  msgid "For get more information and location (country) from visitor, enable this feature."
579
  msgstr "Untuk mendapatkan informasi lebih lanjut dan lokasi (negara) dari pengunjung, mengaktifkan fitur ini."
580
 
581
+ #: includes/settings/tabs/wps-externals.php:59
582
  msgid "Update GeoIP Info"
583
  msgstr "Memperbarui GeoIP Info"
584
 
585
+ #: includes/settings/tabs/wps-externals.php:64
586
  msgid "Download GeoIP Database"
587
  msgstr "Ambil GeoIP Database"
588
 
589
+ #: includes/settings/tabs/wps-externals.php:71
590
  msgid "Schedule monthly update of GeoIP DB"
591
  msgstr "Jadwal bulanan pembaruan GeoIP DB"
592
 
593
+ #: includes/settings/tabs/wps-externals.php:97
594
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
595
  msgstr "Download GeoIP database akan dijadwalkan selama 2 hari setelah hari Selasa pertama bulan."
596
 
597
+ #: includes/settings/tabs/wps-externals.php:98
598
  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)."
599
  msgstr "Opsi ini juga akan download database jika filesize lokal adalah kurang dari 1k (yang biasanya berarti rintisan yang datang dengan plugin ini masih di tempat)."
600
 
601
+ #: includes/settings/tabs/wps-externals.php:104
602
  msgid "Populate missing GeoIP after update of GeoIP DB"
603
  msgstr "Mengisi GeoIP hilang setelah update GeoIP DB"
604
 
605
+ #: includes/settings/tabs/wps-externals.php:110
606
  msgid "Update any missing GeoIP data after downloading a new database."
607
  msgstr "Memperbarui data GeoIP hilang setelah men-download database baru."
608
 
609
+ #: includes/settings/tabs/wps-externals.php:116
610
  msgid "Country code for private IP addresses"
611
  msgstr ""
612
 
613
+ #: includes/settings/tabs/wps-externals.php:121
614
  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."
615
  msgstr ""
616
 
617
+ #: includes/settings/tabs/wps-externals.php:132
618
  msgid "GeoIP collection is disabled due to the following reasons:"
619
  msgstr "Koleksi GeoIP dinonaktifkan karena alasan berikut:"
620
 
621
+ #: includes/settings/tabs/wps-externals.php:135
622
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
623
  msgstr "Koleksi GeoIP memerlukan PHP %s atau di atas, saat ini dinonaktifkan karena menjadi versi PHP diinstal "
624
 
625
+ #: includes/settings/tabs/wps-externals.php:140
626
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
627
  msgstr "Koleksi GeoIP memerlukan ekstensi PHP cURL dan tidak diambil pada versi PHP!"
628
 
629
+ #: includes/settings/tabs/wps-externals.php:146
630
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
631
  msgstr "Koleksi GeoIP memerlukan ekstensi PHP matematika BC dan tidak diambil pada versi PHP!"
632
 
633
+ #: includes/settings/tabs/wps-externals.php:152
634
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
635
  msgstr "Mode PHP aman terdeteksi! Koleksi GeoIP tidak didukung dengan PHP mode aman diaktifkan!"
636
 
690
 
691
  #: includes/log/exclusions.php:24
692
  #: includes/settings/tabs/wps-notifications.php:76
 
693
  msgid "GeoIP"
694
  msgstr "GeoIP"
695
 
714
  msgstr ""
715
 
716
  #: includes/settings/tabs/wps-notifications.php:111
717
+ #: includes/settings/tabs/wps-notifications.php:116 schedule.php:221
718
  msgid "Statistical reporting"
719
  msgstr "Laporan Statistik"
720
 
763
  msgstr ""
764
 
765
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
766
+ #: widget.php:245 wp-statistics.php:536
767
  msgid "User Online"
768
  msgstr "User sedang online"
769
 
806
  msgstr "Ringkasan Statistik"
807
 
808
  #: includes/settings/tabs/wps-overview-display.php:28
809
+ #: includes/settings/wps-settings.php:108
810
  msgid "About"
811
  msgstr "Tentang"
812
 
856
  msgid "Map type"
857
  msgstr "Peta jenis"
858
 
859
+ #: includes/functions/functions.php:404
860
  #: includes/settings/tabs/wps-overview-display.php:128
861
  msgid "Google"
862
  msgstr "Google"
966
  msgid "Remove data and settings, this action cannot be undone."
967
  msgstr ""
968
 
969
+ #: includes/settings/wps-settings.php:100
970
  msgid "General"
971
  msgstr "Umum"
972
 
973
+ #: includes/settings/wps-settings.php:101
974
  msgid "Notifications"
975
  msgstr ""
976
 
977
+ #: includes/settings/wps-settings.php:102
978
  msgid "Dashboard/Overview"
979
  msgstr ""
980
 
981
+ #: includes/settings/wps-settings.php:106
 
 
 
 
982
  msgid "Maintenance"
983
  msgstr "Pemeliharaan"
984
 
985
+ #: includes/settings/wps-settings.php:107
986
  msgid "Removal"
987
  msgstr ""
988
 
989
  #: includes/settings/tabs/wps-access-level.php:85
 
990
  #: includes/settings/tabs/wps-exclusions.php:234
991
+ #: includes/settings/tabs/wps-externals.php:284
992
  #: includes/settings/tabs/wps-general.php:349
 
993
  #: includes/settings/tabs/wps-maintenance.php:84
994
  #: includes/settings/tabs/wps-notifications.php:201
995
  #: includes/settings/tabs/wps-overview-display.php:388
1009
  msgid "Once Every 4 Weeks"
1010
  msgstr "Setiap 4 minggu"
1011
 
1012
+ #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
1013
  msgid "Statistics"
1014
  msgstr "Statistik"
1015
 
1081
  msgid "Items"
1082
  msgstr "Butir"
1083
 
1084
+ #: widget.php:254 wp-statistics.php:561
1085
  msgid "Yesterday visit"
1086
  msgstr "Pengunjung Kemarin"
1087
 
1109
  msgid "WP Statistics has been removed, please disable and delete it."
1110
  msgstr ""
1111
 
1112
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1113
  #. Plugin Name of the plugin/theme
1114
  #: wp-statistics.php:37
1115
  msgid "WP Statistics"
1116
  msgstr "WP Statistics"
1117
 
1118
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1119
  #. Description of the plugin/theme
1120
  #: wp-statistics.php:38
1121
  msgid "Complete statistics for your WordPress site."
1145
  msgid "Setting page > GeoIP"
1146
  msgstr "Halaman Pengaturan > GeoIP"
1147
 
1148
+ #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
1149
  msgid "Settings"
1150
  msgstr "Pengaturan"
1151
 
1152
+ #: wp-statistics.php:265
1153
  msgid "Click here to visit the plugin on WordPress.org"
1154
  msgstr "Klik di sini untuk mengunjungi plugin di WordPress.org"
1155
 
1156
+ #: wp-statistics.php:265
1157
  msgid "Visit WordPress.org page"
1158
  msgstr "Kunjungi halaman WordPress.org"
1159
 
1160
+ #: wp-statistics.php:268
1161
  msgid "Click here to rate and review this plugin on WordPress.org"
1162
  msgstr "Klik di sini untuk menilai dan meninjau plugin ini di WordPress.org"
1163
 
1164
+ #: wp-statistics.php:268
1165
  msgid "Rate this plugin"
1166
  msgstr "Menilai plugin ini"
1167
 
1168
+ #: wp-statistics.php:312
1169
  msgid "WP Statistics - Hits"
1170
  msgstr "WP Statistics - Hits"
1171
 
1172
+ #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
1173
  msgid "Overview"
1174
  msgstr "Ikhtisar"
1175
 
1176
+ #: wp-statistics.php:354 wp-statistics.php:430
1177
  msgid "Online"
1178
  msgstr ""
1179
 
1180
+ #: wp-statistics.php:356 wp-statistics.php:432
1181
  msgid "Referrers"
1182
  msgstr ""
1183
 
1184
+ #: shortcode.php:135 wp-statistics.php:357 wp-statistics.php:433
1185
  msgid "Searches"
1186
  msgstr "Pencarian"
1187
 
1188
+ #: wp-statistics.php:358 wp-statistics.php:434
1189
  msgid "Search Words"
1190
  msgstr "Kata-kata pencarian"
1191
 
1192
+ #: wp-statistics.php:359 wp-statistics.php:435
1193
  msgid "Top Visitors Today"
1194
  msgstr ""
1195
 
1196
+ #: wp-statistics.php:364 wp-statistics.php:437
1197
  msgid "Optimization"
1198
  msgstr "Optimasi"
1199
 
1200
+ #: wp-statistics.php:370 wp-statistics.php:401
1201
  msgid "Manual"
1202
  msgstr "Manual"
1203
 
1204
+ #: wp-statistics.php:416
1205
  msgid "Site"
1206
  msgstr ""
1207
 
1208
+ #: wp-statistics.php:417
1209
  msgid "Options"
1210
  msgstr ""
1211
 
1212
+ #: wp-statistics.php:543
1213
  msgid "Today visitor"
1214
  msgstr "Pengunjung hari ini"
1215
 
1216
+ #: wp-statistics.php:549
1217
  msgid "Today visit"
1218
  msgstr "Hari ini mengunjungi"
1219
 
1220
+ #: wp-statistics.php:555
1221
  msgid "Yesterday visitor"
1222
  msgstr "Pengunjung kemarin"
1223
 
1224
+ #: wp-statistics.php:567
1225
  msgid "View Stats"
1226
  msgstr "Lihat statistik"
1227
 
1228
+ #: wp-statistics.php:591
1229
  msgid "Download ODF file"
1230
  msgstr "Men-download ODF file"
1231
 
1232
+ #: wp-statistics.php:592
1233
  msgid "Download HTML file"
1234
  msgstr "Men-download HTML file"
1235
 
1236
+ #: wp-statistics.php:596
1237
  msgid "Manual file not found."
1238
  msgstr "Manual file tidak ditemukan."
1239
 
1240
+ #: wp-statistics.php:663 wp-statistics.php:770 wp-statistics.php:804
1241
  msgid "You do not have sufficient permissions to access this page."
1242
  msgstr "Anda tidak mempunyai akses yang cukup untuk halaman ini"
1243
 
1245
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
1246
  msgstr ""
1247
 
1248
+ #: wp-statistics.php:241
1249
  msgid "WP Statistics %s installed on"
1250
  msgstr ""
1251
 
1293
  msgid "Browscap.ini update on"
1294
  msgstr ""
1295
 
1296
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1297
  #. Plugin URI of the plugin/theme
1298
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1299
  #. Author URI of the plugin/theme
1300
  msgid "http://wp-statistics.com/"
1301
  msgstr "http://WP-Statistics.com/"
1422
  msgstr "Klik untuk beralih"
1423
 
1424
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1425
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
1426
+ #: wp-statistics.php:426
1427
  msgid "Browsers"
1428
  msgstr "Browser"
1429
 
1452
  msgid "Exclusions Statistics"
1453
  msgstr "Pengecualian Statistik"
1454
 
1455
+ #: includes/functions/functions.php:931
1456
  msgid "10 Days"
1457
  msgstr "10 hari"
1458
 
1459
+ #: includes/functions/functions.php:931
1460
  msgid "20 Days"
1461
  msgstr "20 hari"
1462
 
1463
+ #: includes/functions/functions.php:931
1464
  msgid "30 Days"
1465
  msgstr "30 hari"
1466
 
1467
+ #: includes/functions/functions.php:931
1468
  msgid "2 Months"
1469
  msgstr "2 bulan"
1470
 
1471
+ #: includes/functions/functions.php:931
1472
  msgid "3 Months"
1473
  msgstr "3 bulan"
1474
 
1475
+ #: includes/functions/functions.php:931
1476
  msgid "6 Months"
1477
  msgstr "6 bulan"
1478
 
1479
+ #: includes/functions/functions.php:931
1480
  msgid "9 Months"
1481
  msgstr "9 bulan"
1482
 
1483
+ #: includes/functions/functions.php:931
1484
  msgid "1 Year"
1485
  msgstr "1 tahun"
1486
 
1529
  msgid "Latest Search Word Statistics"
1530
  msgstr "Cari kata Statistik terbaru"
1531
 
1532
+ #: includes/log/last-search.php:110 includes/log/last-visitor.php:101
1533
  #: includes/log/online.php:50 includes/log/widgets/google.map.php:84
1534
  #: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
1535
+ #: includes/log/widgets/words.php:46
1536
  msgid "#hash#"
1537
  msgstr "#hash #"
1538
 
1539
+ #: includes/log/last-search.php:115 includes/log/last-visitor.php:106
1540
  #: includes/log/online.php:55 includes/log/top-referring.php:71
1541
+ #: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
1542
  #: includes/settings/tabs/wps-overview-display.php:33
1543
  #: includes/settings/tabs/wps-overview-display.php:113
1544
  msgid "Map"
1545
  msgstr "Peta"
1546
 
1547
+ #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1548
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1549
  #: includes/log/top-referring.php:125
1550
  msgid "Page"
1551
  msgstr "Halaman"
1552
 
1553
+ #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1554
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1555
  #: includes/log/top-referring.php:125
1556
  msgid "From"
1739
  msgstr "Waktu: %s"
1740
 
1741
  #: includes/log/widgets/top.visitors.php:31
1742
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
1743
+ #: wp-statistics.php:353 wp-statistics.php:429
1744
  msgid "Hits"
1745
  msgstr "Hits"
1746
 
1782
  msgid "No platform data found to remove!"
1783
  msgstr ""
1784
 
1785
+ #: includes/functions/functions.php:1019
1786
  msgid "%s table data deleted successfully."
1787
  msgstr "data tabel %s berhasil dihapus."
1788
 
1789
+ #: includes/functions/functions.php:1023
1790
  msgid "Error, %s not emptied!"
1791
  msgstr "Kesalahan, %s tidak dikosongkan!"
1792
 
1812
 
1813
  #: includes/optimization/tabs/wps-optimization-database.php:25
1814
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1815
+ #: wp-statistics.php:351 wp-statistics.php:427
1816
  msgid "Countries"
1817
  msgstr "Negara"
1818
 
1828
  msgstr "Remaja menginstal WP Statistics memungkinkan untuk entri duplikat dalam tabel pengunjung dalam kasus sudut. Menginstall baru melindungi terhadap ini dengan indeks unik di atas meja. Untuk membuat indeks di menginstall remaja entri duplikat harus dihapus terlebih dahulu. Mengklik \"Update Now\" akan memindai tabel vistitors, menghapus entri duplikat dan menambahkan indeks."
1829
 
1830
  #: includes/optimization/tabs/wps-optimization-database.php:41
1831
+ #: includes/optimization/tabs/wps-optimization-database.php:102
1832
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1833
  msgstr "Operasi ini dapat mengambil waktu lama untuk menginstal dengan banyak baris dalam tabel pengunjung."
1834
 
1838
 
1839
  #: includes/optimization/tabs/wps-optimization-database.php:47
1840
  #: includes/optimization/tabs/wps-optimization-database.php:77
1841
+ #: includes/optimization/tabs/wps-optimization-database.php:108
1842
  msgid "Congratulations, your installation is already up to date, nothing to do."
1843
  msgstr "Selamat, instalasi ini sudah sampai tanggal, tidak ada hubungannya."
1844
 
1845
  #: includes/optimization/tabs/wps-optimization-export.php:8
1846
+ #: includes/optimization/wps-optimization.php:212
1847
  msgid "Export"
1848
  msgstr "Ekspor"
1849
 
1896
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1897
  #: includes/settings/tabs/wps-general.php:138
1898
  #: includes/settings/tabs/wps-general.php:143 shortcode.php:133
1899
+ #: wp-statistics.php:360 wp-statistics.php:436
1900
  msgid "Visitors"
1901
  msgstr "Pengunjung"
1902
 
2211
  msgid "Install routine complete."
2212
  msgstr "Menginstal rutin lengkap."
2213
 
2214
+ #: includes/optimization/wps-optimization.php:211
2215
  msgid "Resources/Information"
2216
  msgstr "Sumber-sumber/informasi"
2217
 
2218
+ #: includes/optimization/wps-optimization.php:213
2219
  msgid "Purging"
2220
  msgstr "Membersihkan"
2221
 
2222
+ #: includes/optimization/wps-optimization.php:214
2223
  msgid "Database"
2224
  msgstr "Database"
2225
 
2226
+ #: includes/optimization/wps-optimization.php:215
2227
  msgid "Updates"
2228
  msgstr "Update"
2229
 
2230
+ #: includes/optimization/wps-optimization.php:216
2231
  msgid "Historical"
2232
  msgstr ""
2233
 
2377
  msgstr ""
2378
 
2379
  #: includes/settings/tabs/wps-access-level.php:23
2380
+ #: includes/settings/wps-settings.php:103
2381
  msgid "Access Levels"
2382
  msgstr "Tingkat akses"
2383
 
2410
  msgstr "Jika Anda memerlukan solusi yang lebih kuat untuk mendelegasikan akses Anda mungkin ingin melihat %s di WordPress plugin direktori."
2411
 
2412
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2413
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:352
2414
+ #: wp-statistics.php:428
2415
  msgid "Exclusions"
2416
  msgstr "Pengecualian"
2417
 
2582
  msgid "Exclude the RSS feeds for registering as a hit."
2583
  msgstr ""
2584
 
2585
+ #: includes/settings/tabs/wps-externals.php:162
2586
  msgid "browscap settings"
2587
  msgstr "pengaturan browscap"
2588
 
2589
+ #: includes/settings/tabs/wps-externals.php:167
2590
  msgid "browscap usage"
2591
  msgstr "browscap penggunaan"
2592
 
2593
+ #: includes/settings/tabs/wps-externals.php:52
2594
+ #: includes/settings/tabs/wps-externals.php:76
2595
+ #: includes/settings/tabs/wps-externals.php:109
2596
+ #: includes/settings/tabs/wps-externals.php:172
2597
+ #: includes/settings/tabs/wps-externals.php:196
2598
+ #: includes/settings/tabs/wps-externals.php:235
2599
+ #: includes/settings/tabs/wps-externals.php:259
2600
  #: includes/settings/tabs/wps-general.php:76
2601
  #: includes/settings/tabs/wps-general.php:92
2602
  #: includes/settings/tabs/wps-general.php:116
2612
  #: includes/settings/tabs/wps-general.php:286
2613
  #: includes/settings/tabs/wps-general.php:325
2614
  #: includes/settings/tabs/wps-general.php:341
 
 
 
2615
  #: includes/settings/tabs/wps-maintenance.php:40
2616
  #: includes/settings/tabs/wps-maintenance.php:64
2617
  #: includes/settings/tabs/wps-notifications.php:69
2626
  msgid "Active"
2627
  msgstr "Aktif"
2628
 
2629
+ #: includes/settings/tabs/wps-externals.php:173
2630
  msgid "The browscap database will be downloaded and used to detect robots."
2631
  msgstr "Browscap database akan didownload dan digunakan untuk mendeteksi robot."
2632
 
2633
+ #: includes/settings/tabs/wps-externals.php:179
2634
  msgid "Update browscap Info"
2635
  msgstr "Memperbarui browscap Info"
2636
 
2637
+ #: includes/settings/tabs/wps-externals.php:184
2638
  msgid "Download browscap Database"
2639
  msgstr "Men-download browscap Database"
2640
 
2641
+ #: includes/settings/tabs/wps-externals.php:65
2642
+ #: includes/settings/tabs/wps-externals.php:185
2643
+ #: includes/settings/tabs/wps-externals.php:248
2644
  msgid "Save changes on this page to download the update."
2645
  msgstr "Simpan perubahan pada Halaman ini untuk men-download pembaruan."
2646
 
2647
+ #: includes/settings/tabs/wps-externals.php:191
2648
  msgid "Schedule weekly update of browscap DB"
2649
  msgstr "Jadwal mingguan update dari browscap DB"
2650
 
2651
+ #: includes/settings/tabs/wps-externals.php:79
2652
+ #: includes/settings/tabs/wps-externals.php:199
2653
+ #: includes/settings/tabs/wps-externals.php:262
2654
  msgid "Next update will be"
2655
  msgstr "Update berikutnya akan"
2656
 
2657
+ #: includes/settings/tabs/wps-externals.php:214
2658
  msgid "Download of the browscap database will be scheduled for once a week."
2659
  msgstr "Download browscap database akan dijadwalkan untuk sekali seminggu."
2660
 
languages/wp_statistics-it_IT.mo CHANGED
Binary file
languages/wp_statistics-it_IT.po CHANGED
@@ -10,6 +10,70 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  #: includes/settings/tabs/wps-exclusions.php:148
14
  msgid "Treat corrupt browser info as a bot"
15
  msgstr ""
@@ -158,7 +222,7 @@ msgstr ""
158
  msgid "Have you thought about donating to WP Statistics?"
159
  msgstr ""
160
 
161
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:362
162
  msgid "Donate"
163
  msgstr ""
164
 
@@ -194,11 +258,11 @@ msgstr ""
194
  msgid "Time Frame"
195
  msgstr ""
196
 
197
- #: includes/functions/functions.php:929
198
  msgid "to"
199
  msgstr ""
200
 
201
- #: includes/functions/functions.php:929 includes/log/top-visitors.php:29
202
  msgid "Go"
203
  msgstr ""
204
 
@@ -242,11 +306,11 @@ msgstr ""
242
  msgid "Filtered by"
243
  msgstr ""
244
 
245
- #: includes/functions/functions.php:922 includes/functions/functions.php:925
246
  msgid "Range"
247
  msgstr ""
248
 
249
- #: includes/functions/functions.php:929 includes/log/top-visitors.php:29
250
  msgid "MM/DD/YYYY"
251
  msgstr "MM/DD/YYYY"
252
 
@@ -290,27 +354,27 @@ msgstr ""
290
  msgid "Last 7 Days (Week)"
291
  msgstr ""
292
 
293
- #: includes/functions/functions.php:403
294
  msgid "Yahoo!"
295
  msgstr ""
296
 
297
- #: includes/functions/functions.php:404
298
  msgid "Yandex"
299
  msgstr ""
300
 
301
- #: includes/functions/functions.php:400
302
  msgid "clearch.org"
303
  msgstr ""
304
 
305
- #: includes/functions/functions.php:401
306
  msgid "DuckDuckGo"
307
  msgstr ""
308
 
309
- #: includes/functions/functions.php:399
310
  msgid "Bing"
311
  msgstr ""
312
 
313
- #: includes/functions/functions.php:398
314
  msgid "Baidu"
315
  msgstr ""
316
 
@@ -413,8 +477,8 @@ msgid "For each visit to account for several hits. Currently %s."
413
  msgstr "Per ogni visita tenere conto di parecchi Hits. Attualmente %s."
414
 
415
  #: includes/settings/tabs/wps-general.php:177
416
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:351
417
- #: wp-statistics.php:427
418
  msgid "Pages"
419
  msgstr "Pagine"
420
 
@@ -498,75 +562,75 @@ msgstr "Includi totali"
498
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
499
  msgstr "Aggiunge una riga con i totali dei grafici."
500
 
501
- #: includes/settings/tabs/wps-geoip.php:27
502
  msgid "GeoIP settings"
503
  msgstr "impostazioni GeoIP"
504
 
505
- #: includes/settings/tabs/wps-geoip.php:32
506
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
507
  msgstr "Servizi di localizzazione IP forniti da GeoLite2 dati creati da MaxMind, disponibili da %s."
508
 
509
- #: includes/settings/tabs/wps-geoip.php:42
510
  msgid "GeoIP collection"
511
  msgstr "GeoIP"
512
 
513
- #: includes/settings/tabs/wps-geoip.php:48
514
  msgid "For get more information and location (country) from visitor, enable this feature."
515
  msgstr "Per ottenere ulteriori informazioni e luogo (nazione) dal visitatore, attivare questa funzione."
516
 
517
- #: includes/settings/tabs/wps-geoip.php:54
518
  msgid "Update GeoIP Info"
519
  msgstr "Aggiorna info GeoIP"
520
 
521
- #: includes/settings/tabs/wps-geoip.php:59
522
  msgid "Download GeoIP Database"
523
  msgstr "Scarica Database GeoIP"
524
 
525
- #: includes/settings/tabs/wps-geoip.php:66
526
  msgid "Schedule monthly update of GeoIP DB"
527
  msgstr "Pianificazione aggiornamento mensile di GeoIP DB"
528
 
529
- #: includes/settings/tabs/wps-geoip.php:92
530
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
531
  msgstr "Download del database GeoIP sarà programmato per 2 giorni dopo il primo"
532
 
533
- #: includes/settings/tabs/wps-geoip.php:93
534
  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)."
535
  msgstr "Questa opzione scaricherà anche il database se la dimensione del file locale è minore di 1k."
536
 
537
- #: includes/settings/tabs/wps-geoip.php:99
538
  msgid "Populate missing GeoIP after update of GeoIP DB"
539
  msgstr "Popola i dati mancanti di GeoIP dopo l'aggiornamento del DB"
540
 
541
- #: includes/settings/tabs/wps-geoip.php:105
542
  msgid "Update any missing GeoIP data after downloading a new database."
543
  msgstr "Aggiornare dati GeoIP mancanti dopo aver scaricato un nuovo database."
544
 
545
- #: includes/settings/tabs/wps-geoip.php:111
546
  msgid "Country code for private IP addresses"
547
  msgstr ""
548
 
549
- #: includes/settings/tabs/wps-geoip.php:116
550
  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."
551
  msgstr ""
552
 
553
- #: includes/settings/tabs/wps-geoip.php:127
554
  msgid "GeoIP collection is disabled due to the following reasons:"
555
  msgstr "Collezione GeoIP è disabilitata per i seguenti motivi:"
556
 
557
- #: includes/settings/tabs/wps-geoip.php:130
558
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
559
  msgstr "GeoIP richiede PHP %s o superiore. Attualmente è disabilitato a causa della versione non corretta di PHP"
560
 
561
- #: includes/settings/tabs/wps-geoip.php:135
562
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
563
  msgstr "Raccolta di GeoIP richiede l'estensione PHP cURL che attualmente non è presente sul tuo Sistema."
564
 
565
- #: includes/settings/tabs/wps-geoip.php:141
566
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
567
  msgstr "Raccolta di GeoIP richiede l'estensione PHP Math BC che attualmente non è presente sul Sistema."
568
 
569
- #: includes/settings/tabs/wps-geoip.php:147
570
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
571
  msgstr "PHP safe mode rilevata! GeoIP non è supportata con di questa modalità di PHP attivata!"
572
 
@@ -626,7 +690,6 @@ msgstr ""
626
 
627
  #: includes/log/exclusions.php:24
628
  #: includes/settings/tabs/wps-notifications.php:76
629
- #: includes/settings/wps-settings.php:111
630
  msgid "GeoIP"
631
  msgstr "GeoIP"
632
 
@@ -651,7 +714,7 @@ msgid "Send a report whenever the plugin is upgraded."
651
  msgstr ""
652
 
653
  #: includes/settings/tabs/wps-notifications.php:111
654
- #: includes/settings/tabs/wps-notifications.php:116 schedule.php:199
655
  msgid "Statistical reporting"
656
  msgstr "Segnalazione statistica"
657
 
@@ -700,7 +763,7 @@ msgid "Any shortcode supported by your installation of WordPress, include all sh
700
  msgstr ""
701
 
702
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
703
- #: widget.php:245 wp-statistics.php:532
704
  msgid "User Online"
705
  msgstr "Utenti Online"
706
 
@@ -743,7 +806,7 @@ msgid "Summary Statistics"
743
  msgstr "Statistiche di Riepilogo"
744
 
745
  #: includes/settings/tabs/wps-overview-display.php:28
746
- #: includes/settings/wps-settings.php:115
747
  msgid "About"
748
  msgstr "Su di noi"
749
 
@@ -793,7 +856,7 @@ msgstr ""
793
  msgid "Map type"
794
  msgstr "Tipo di mappa"
795
 
796
- #: includes/functions/functions.php:402
797
  #: includes/settings/tabs/wps-overview-display.php:128
798
  msgid "Google"
799
  msgstr "Google"
@@ -903,35 +966,30 @@ msgstr ""
903
  msgid "Remove data and settings, this action cannot be undone."
904
  msgstr ""
905
 
906
- #: includes/settings/wps-settings.php:106
907
  msgid "General"
908
  msgstr "Generale"
909
 
910
- #: includes/settings/wps-settings.php:107
911
  msgid "Notifications"
912
  msgstr ""
913
 
914
- #: includes/settings/wps-settings.php:108
915
  msgid "Dashboard/Overview"
916
  msgstr ""
917
 
918
- #: includes/settings/wps-settings.php:112
919
- msgid "browscap"
920
- msgstr "browscap"
921
-
922
- #: includes/settings/wps-settings.php:113
923
  msgid "Maintenance"
924
  msgstr "Manutenzione"
925
 
926
- #: includes/settings/wps-settings.php:114
927
  msgid "Removal"
928
  msgstr ""
929
 
930
  #: includes/settings/tabs/wps-access-level.php:85
931
- #: includes/settings/tabs/wps-browscap.php:81
932
  #: includes/settings/tabs/wps-exclusions.php:234
 
933
  #: includes/settings/tabs/wps-general.php:349
934
- #: includes/settings/tabs/wps-geoip.php:158
935
  #: includes/settings/tabs/wps-maintenance.php:84
936
  #: includes/settings/tabs/wps-notifications.php:201
937
  #: includes/settings/tabs/wps-overview-display.php:388
@@ -951,7 +1009,7 @@ msgstr "Una volta ogni 2 settimane"
951
  msgid "Once Every 4 Weeks"
952
  msgstr "Una volta ogni 4 settimane"
953
 
954
- #: widget.php:14 wp-statistics.php:342 wp-statistics.php:380
955
  msgid "Statistics"
956
  msgstr "Statistiche"
957
 
@@ -1023,7 +1081,7 @@ msgstr "Nome"
1023
  msgid "Items"
1024
  msgstr "Oggetti"
1025
 
1026
- #: widget.php:254 wp-statistics.php:557
1027
  msgid "Yesterday visit"
1028
  msgstr "Visite di ieri"
1029
 
@@ -1051,13 +1109,13 @@ msgstr ""
1051
  msgid "WP Statistics has been removed, please disable and delete it."
1052
  msgstr ""
1053
 
1054
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1055
  #. Plugin Name of the plugin/theme
1056
  #: wp-statistics.php:37
1057
  msgid "WP Statistics"
1058
  msgstr "WP Statistics"
1059
 
1060
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1061
  #. Description of the plugin/theme
1062
  #: wp-statistics.php:38
1063
  msgid "Complete statistics for your WordPress site."
@@ -1087,99 +1145,99 @@ msgstr "Il GeoIP non è attivo, vai su %s per abilitare questa funzionalità."
1087
  msgid "Setting page > GeoIP"
1088
  msgstr "Pagina di configurazione > GeoIP"
1089
 
1090
- #: wp-statistics.php:249 wp-statistics.php:361 wp-statistics.php:434
1091
  msgid "Settings"
1092
  msgstr "Impostazioni"
1093
 
1094
- #: wp-statistics.php:261
1095
  msgid "Click here to visit the plugin on WordPress.org"
1096
  msgstr "Clicca qui per vedere il plugin su WordPress.org"
1097
 
1098
- #: wp-statistics.php:261
1099
  msgid "Visit WordPress.org page"
1100
  msgstr "Pagina visita WordPress.org"
1101
 
1102
- #: wp-statistics.php:264
1103
  msgid "Click here to rate and review this plugin on WordPress.org"
1104
  msgstr "Clicca qui per votare e vedere questo plugin su WordPress.org"
1105
 
1106
- #: wp-statistics.php:264
1107
  msgid "Rate this plugin"
1108
  msgstr "Vota questo plugin"
1109
 
1110
- #: wp-statistics.php:308
1111
  msgid "WP Statistics - Hits"
1112
  msgstr "WP Statistics – Hits"
1113
 
1114
- #: wp-statistics.php:345 wp-statistics.php:383 wp-statistics.php:421
1115
  msgid "Overview"
1116
  msgstr "Panoramica"
1117
 
1118
- #: wp-statistics.php:350 wp-statistics.php:426
1119
  msgid "Online"
1120
  msgstr ""
1121
 
1122
- #: wp-statistics.php:352 wp-statistics.php:428
1123
  msgid "Referrers"
1124
  msgstr ""
1125
 
1126
- #: shortcode.php:135 wp-statistics.php:353 wp-statistics.php:429
1127
  msgid "Searches"
1128
  msgstr "Ricerche"
1129
 
1130
- #: wp-statistics.php:354 wp-statistics.php:430
1131
  msgid "Search Words"
1132
  msgstr "Parole di Ricerca"
1133
 
1134
- #: wp-statistics.php:355 wp-statistics.php:431
1135
  msgid "Top Visitors Today"
1136
  msgstr "Top Visite Odierne"
1137
 
1138
- #: wp-statistics.php:360 wp-statistics.php:433
1139
  msgid "Optimization"
1140
  msgstr "Ottimizzazione"
1141
 
1142
- #: wp-statistics.php:366 wp-statistics.php:397
1143
  msgid "Manual"
1144
  msgstr "Manuale"
1145
 
1146
- #: wp-statistics.php:412
1147
  msgid "Site"
1148
  msgstr ""
1149
 
1150
- #: wp-statistics.php:413
1151
  msgid "Options"
1152
  msgstr ""
1153
 
1154
- #: wp-statistics.php:539
1155
  msgid "Today visitor"
1156
  msgstr "Visitatori di oggi"
1157
 
1158
- #: wp-statistics.php:545
1159
  msgid "Today visit"
1160
  msgstr "Visite di oggi"
1161
 
1162
- #: wp-statistics.php:551
1163
  msgid "Yesterday visitor"
1164
  msgstr "Visitatori di ieri"
1165
 
1166
- #: wp-statistics.php:563
1167
  msgid "View Stats"
1168
  msgstr "Vedi Statistiche"
1169
 
1170
- #: wp-statistics.php:587
1171
  msgid "Download ODF file"
1172
  msgstr "Scarica file ODF"
1173
 
1174
- #: wp-statistics.php:588
1175
  msgid "Download HTML file"
1176
  msgstr "Scarica file HTML"
1177
 
1178
- #: wp-statistics.php:592
1179
  msgid "Manual file not found."
1180
  msgstr "File con il manuale non trovato."
1181
 
1182
- #: wp-statistics.php:659 wp-statistics.php:770 wp-statistics.php:804
1183
  msgid "You do not have sufficient permissions to access this page."
1184
  msgstr "Non si dispone delle autorizzazioni sufficienti per accedere a questa pagina."
1185
 
@@ -1187,7 +1245,7 @@ msgstr "Non si dispone delle autorizzazioni sufficienti per accedere a questa pa
1187
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
1188
  msgstr ""
1189
 
1190
- #: wp-statistics.php:237
1191
  msgid "WP Statistics %s installed on"
1192
  msgstr ""
1193
 
@@ -1235,9 +1293,9 @@ msgstr "browscap è già alla versione corrente!"
1235
  msgid "Browscap.ini update on"
1236
  msgstr ""
1237
 
1238
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1239
  #. Plugin URI of the plugin/theme
1240
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1241
  #. Author URI of the plugin/theme
1242
  msgid "http://wp-statistics.com/"
1243
  msgstr ""
@@ -1364,8 +1422,8 @@ msgid "Click to toggle"
1364
  msgstr "Fare clic per attivare"
1365
 
1366
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1367
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:346
1368
- #: wp-statistics.php:422
1369
  msgid "Browsers"
1370
  msgstr "Browsers"
1371
 
@@ -1394,35 +1452,35 @@ msgstr "Attenzione!!: Le Esclusioni al monento non sono registrate. I risultati
1394
  msgid "Exclusions Statistics"
1395
  msgstr "Statistiche Esclusioni"
1396
 
1397
- #: includes/functions/functions.php:879
1398
  msgid "10 Days"
1399
  msgstr "10 Giorni"
1400
 
1401
- #: includes/functions/functions.php:879
1402
  msgid "20 Days"
1403
  msgstr "20 Giorni"
1404
 
1405
- #: includes/functions/functions.php:879
1406
  msgid "30 Days"
1407
  msgstr "30 Giorni"
1408
 
1409
- #: includes/functions/functions.php:879
1410
  msgid "2 Months"
1411
  msgstr "2 Mesi"
1412
 
1413
- #: includes/functions/functions.php:879
1414
  msgid "3 Months"
1415
  msgstr "3 Mesi"
1416
 
1417
- #: includes/functions/functions.php:879
1418
  msgid "6 Months"
1419
  msgstr "6 Mesi"
1420
 
1421
- #: includes/functions/functions.php:879
1422
  msgid "9 Months"
1423
  msgstr "9 Mesi"
1424
 
1425
- #: includes/functions/functions.php:879
1426
  msgid "1 Year"
1427
  msgstr "1 Anno"
1428
 
@@ -1471,28 +1529,28 @@ msgstr "Visitatore"
1471
  msgid "Latest Search Word Statistics"
1472
  msgstr "Ultime Statistiche Parola di Ricerca"
1473
 
1474
- #: includes/log/last-search.php:100 includes/log/last-visitor.php:101
1475
  #: includes/log/online.php:50 includes/log/widgets/google.map.php:84
1476
  #: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
1477
- #: includes/log/widgets/words.php:36
1478
  msgid "#hash#"
1479
  msgstr "#hash#"
1480
 
1481
- #: includes/log/last-search.php:105 includes/log/last-visitor.php:106
1482
  #: includes/log/online.php:55 includes/log/top-referring.php:71
1483
- #: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:43
1484
  #: includes/settings/tabs/wps-overview-display.php:33
1485
  #: includes/settings/tabs/wps-overview-display.php:113
1486
  msgid "Map"
1487
  msgstr "Mappa"
1488
 
1489
- #: includes/log/last-search.php:142 includes/log/last-visitor.php:139
1490
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1491
  #: includes/log/top-referring.php:125
1492
  msgid "Page"
1493
  msgstr "Pagina"
1494
 
1495
- #: includes/log/last-search.php:142 includes/log/last-visitor.php:139
1496
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1497
  #: includes/log/top-referring.php:125
1498
  msgid "From"
@@ -1681,8 +1739,8 @@ msgid "Time: %s"
1681
  msgstr "Ora: %s"
1682
 
1683
  #: includes/log/widgets/top.visitors.php:31
1684
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:273
1685
- #: wp-statistics.php:349 wp-statistics.php:425
1686
  msgid "Hits"
1687
  msgstr "Hits"
1688
 
@@ -1724,11 +1782,11 @@ msgstr "%s dati piattaforma eliminati con successo."
1724
  msgid "No platform data found to remove!"
1725
  msgstr ""
1726
 
1727
- #: includes/functions/functions.php:967
1728
  msgid "%s table data deleted successfully."
1729
  msgstr "dati di tabella %s cancellati con successo."
1730
 
1731
- #: includes/functions/functions.php:971
1732
  msgid "Error, %s not emptied!"
1733
  msgstr "Errore, %s non svuotato!"
1734
 
@@ -1754,7 +1812,7 @@ msgstr "Database Index"
1754
 
1755
  #: includes/optimization/tabs/wps-optimization-database.php:25
1756
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1757
- #: wp-statistics.php:347 wp-statistics.php:423
1758
  msgid "Countries"
1759
  msgstr "Paesi"
1760
 
@@ -1770,6 +1828,7 @@ msgid "Older installs of WP Statistics allow for duplicate entries in the visito
1770
  msgstr "Le vecchie installazioni di Wp Statistics permettevano la registrazione di dati duplicate nella tabella dei visitatori. Le nuove installazioni proteggono la tabella grazie ad un indice unico. Per creare questo indice devi cancellare tutte le entries duplicate. Cliccando \"Update Now\" inizierai la scansione della tabella vistitors, eliminerai le voci duplicate e verrà aggiunto l'indice."
1771
 
1772
  #: includes/optimization/tabs/wps-optimization-database.php:41
 
1773
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1774
  msgstr "Questa operazione potrebbe richiedere molto tempo su siti che hanno molti dati nelle tabelle dei visitatori."
1775
 
@@ -1779,11 +1838,12 @@ msgstr "Le vecchie installazioni di Wp Statistics permettevano la registrazione
1779
 
1780
  #: includes/optimization/tabs/wps-optimization-database.php:47
1781
  #: includes/optimization/tabs/wps-optimization-database.php:77
 
1782
  msgid "Congratulations, your installation is already up to date, nothing to do."
1783
  msgstr "Congratulazioni, l'installazione è già aggiornata all'ultima versione, non devi fare altro."
1784
 
1785
  #: includes/optimization/tabs/wps-optimization-export.php:8
1786
- #: includes/optimization/wps-optimization.php:183
1787
  msgid "Export"
1788
  msgstr "Esporta"
1789
 
@@ -1836,7 +1896,7 @@ msgstr ""
1836
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1837
  #: includes/settings/tabs/wps-general.php:138
1838
  #: includes/settings/tabs/wps-general.php:143 shortcode.php:133
1839
- #: wp-statistics.php:356 wp-statistics.php:432
1840
  msgid "Visitors"
1841
  msgstr "Visitatori"
1842
 
@@ -2151,23 +2211,23 @@ msgstr "Indirizzi IP sostituiti con i valori hash."
2151
  msgid "Install routine complete."
2152
  msgstr "Installazione completa della routine."
2153
 
2154
- #: includes/optimization/wps-optimization.php:182
2155
  msgid "Resources/Information"
2156
  msgstr "Risorse/informazioni"
2157
 
2158
- #: includes/optimization/wps-optimization.php:184
2159
  msgid "Purging"
2160
  msgstr "Pulisci"
2161
 
2162
- #: includes/optimization/wps-optimization.php:185
2163
  msgid "Database"
2164
  msgstr "Database"
2165
 
2166
- #: includes/optimization/wps-optimization.php:186
2167
  msgid "Updates"
2168
  msgstr "Aggiornamenti"
2169
 
2170
- #: includes/optimization/wps-optimization.php:187
2171
  msgid "Historical"
2172
  msgstr ""
2173
 
@@ -2317,7 +2377,7 @@ msgid "This is the honey pot for WP Statistics to use, do not delete."
2317
  msgstr ""
2318
 
2319
  #: includes/settings/tabs/wps-access-level.php:23
2320
- #: includes/settings/wps-settings.php:109
2321
  msgid "Access Levels"
2322
  msgstr "Livelli di accesso"
2323
 
@@ -2350,8 +2410,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2350
  msgstr "Se avete bisogno di una soluzione più sicura per delegare l'accesso, potresti guardare %s nella WordPress plugin directory."
2351
 
2352
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2353
- #: includes/settings/wps-settings.php:110 wp-statistics.php:348
2354
- #: wp-statistics.php:424
2355
  msgid "Exclusions"
2356
  msgstr "Esclusioni"
2357
 
@@ -2522,16 +2582,21 @@ msgstr ""
2522
  msgid "Exclude the RSS feeds for registering as a hit."
2523
  msgstr ""
2524
 
2525
- #: includes/settings/tabs/wps-browscap.php:22
2526
  msgid "browscap settings"
2527
  msgstr "Impostazioni di browscap"
2528
 
2529
- #: includes/settings/tabs/wps-browscap.php:27
2530
  msgid "browscap usage"
2531
  msgstr "Utilizzo di browsca"
2532
 
2533
- #: includes/settings/tabs/wps-browscap.php:32
2534
- #: includes/settings/tabs/wps-browscap.php:56
 
 
 
 
 
2535
  #: includes/settings/tabs/wps-general.php:76
2536
  #: includes/settings/tabs/wps-general.php:92
2537
  #: includes/settings/tabs/wps-general.php:116
@@ -2547,9 +2612,6 @@ msgstr "Utilizzo di browsca"
2547
  #: includes/settings/tabs/wps-general.php:286
2548
  #: includes/settings/tabs/wps-general.php:325
2549
  #: includes/settings/tabs/wps-general.php:341
2550
- #: includes/settings/tabs/wps-geoip.php:47
2551
- #: includes/settings/tabs/wps-geoip.php:71
2552
- #: includes/settings/tabs/wps-geoip.php:104
2553
  #: includes/settings/tabs/wps-maintenance.php:40
2554
  #: includes/settings/tabs/wps-maintenance.php:64
2555
  #: includes/settings/tabs/wps-notifications.php:69
@@ -2564,33 +2626,35 @@ msgstr "Utilizzo di browsca"
2564
  msgid "Active"
2565
  msgstr "Active"
2566
 
2567
- #: includes/settings/tabs/wps-browscap.php:33
2568
  msgid "The browscap database will be downloaded and used to detect robots."
2569
  msgstr "Il database di browscap sarà scaricato e utilizzato per rilevare i robots."
2570
 
2571
- #: includes/settings/tabs/wps-browscap.php:39
2572
  msgid "Update browscap Info"
2573
  msgstr "Aggiornamento browscap Info"
2574
 
2575
- #: includes/settings/tabs/wps-browscap.php:44
2576
  msgid "Download browscap Database"
2577
  msgstr "Scarica browscap Database"
2578
 
2579
- #: includes/settings/tabs/wps-browscap.php:45
2580
- #: includes/settings/tabs/wps-geoip.php:60
 
2581
  msgid "Save changes on this page to download the update."
2582
  msgstr "Salva i cambiamenti in questa pagina per scaricare l'aggiornamento."
2583
 
2584
- #: includes/settings/tabs/wps-browscap.php:51
2585
  msgid "Schedule weekly update of browscap DB"
2586
  msgstr "Pianificare l'aggiornamento settimanale del browscap DB"
2587
 
2588
- #: includes/settings/tabs/wps-browscap.php:59
2589
- #: includes/settings/tabs/wps-geoip.php:74
 
2590
  msgid "Next update will be"
2591
  msgstr "il prossimo aggiornamento sarà"
2592
 
2593
- #: includes/settings/tabs/wps-browscap.php:74
2594
  msgid "Download of the browscap database will be scheduled for once a week."
2595
  msgstr "Il download del database browscap sarà programmato per essere eseguito una volta a settimana."
2596
 
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: includes/optimization/wps-optimization.php:173
14
+ msgid "Search table conversion complete, %d rows added."
15
+ msgstr ""
16
+
17
+ #: includes/optimization/tabs/wps-optimization-database.php:107
18
+ msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion."
19
+ msgstr ""
20
+
21
+ #: includes/optimization/tabs/wps-optimization-database.php:86
22
+ msgid "Search Table"
23
+ msgstr ""
24
+
25
+ #: includes/optimization/tabs/wps-optimization-database.php:91
26
+ msgid "Convert"
27
+ msgstr ""
28
+
29
+ #: includes/optimization/tabs/wps-optimization-database.php:100
30
+ msgid "Convert Now!"
31
+ msgstr ""
32
+
33
+ #: includes/optimization/tabs/wps-optimization-database.php:101
34
+ msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion, however the old data must first be converted to the new format before it can be used."
35
+ msgstr ""
36
+
37
+ #: includes/log/exclusions.php:24
38
+ msgid "Referrer Spam"
39
+ msgstr ""
40
+
41
+ #: includes/settings/tabs/wps-externals.php:277
42
+ msgid "Download of the Piwik Referrer Spam Blacklist database will be scheduled for once a week."
43
+ msgstr ""
44
+
45
+ #: includes/settings/wps-settings.php:105
46
+ msgid "Externals"
47
+ msgstr ""
48
+
49
+ #: includes/settings/tabs/wps-externals.php:219
50
+ msgid "Piwik Referrer Spam Blacklist settings"
51
+ msgstr ""
52
+
53
+ #: includes/settings/tabs/wps-externals.php:254
54
+ msgid "Schedule weekly update of Piwik Referrer Spam Blacklist DB"
55
+ msgstr ""
56
+
57
+ #: includes/settings/tabs/wps-externals.php:247
58
+ msgid "Download Piwik Referrer Spam Blacklist Database"
59
+ msgstr ""
60
+
61
+ #: includes/settings/tabs/wps-externals.php:242
62
+ msgid "Update Piwik Referrer Spam Blacklist Info"
63
+ msgstr ""
64
+
65
+ #: includes/settings/tabs/wps-externals.php:236
66
+ msgid "The Piwik Referrer Spam Blacklist database will be downloaded and used to detect referrer spam."
67
+ msgstr ""
68
+
69
+ #: includes/settings/tabs/wps-externals.php:224
70
+ msgid "Referrer spam blacklist is provided by Piwik, available from %s."
71
+ msgstr ""
72
+
73
+ #: includes/settings/tabs/wps-externals.php:230
74
+ msgid "Piwik Referrer Spam Blacklist usage"
75
+ msgstr ""
76
+
77
  #: includes/settings/tabs/wps-exclusions.php:148
78
  msgid "Treat corrupt browser info as a bot"
79
  msgstr ""
222
  msgid "Have you thought about donating to WP Statistics?"
223
  msgstr ""
224
 
225
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
226
  msgid "Donate"
227
  msgstr ""
228
 
258
  msgid "Time Frame"
259
  msgstr ""
260
 
261
+ #: includes/functions/functions.php:981
262
  msgid "to"
263
  msgstr ""
264
 
265
+ #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
266
  msgid "Go"
267
  msgstr ""
268
 
306
  msgid "Filtered by"
307
  msgstr ""
308
 
309
+ #: includes/functions/functions.php:974 includes/functions/functions.php:977
310
  msgid "Range"
311
  msgstr ""
312
 
313
+ #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
314
  msgid "MM/DD/YYYY"
315
  msgstr "MM/DD/YYYY"
316
 
354
  msgid "Last 7 Days (Week)"
355
  msgstr ""
356
 
357
+ #: includes/functions/functions.php:405
358
  msgid "Yahoo!"
359
  msgstr ""
360
 
361
+ #: includes/functions/functions.php:406
362
  msgid "Yandex"
363
  msgstr ""
364
 
365
+ #: includes/functions/functions.php:402
366
  msgid "clearch.org"
367
  msgstr ""
368
 
369
+ #: includes/functions/functions.php:403
370
  msgid "DuckDuckGo"
371
  msgstr ""
372
 
373
+ #: includes/functions/functions.php:401
374
  msgid "Bing"
375
  msgstr ""
376
 
377
+ #: includes/functions/functions.php:400
378
  msgid "Baidu"
379
  msgstr ""
380
 
477
  msgstr "Per ogni visita tenere conto di parecchi Hits. Attualmente %s."
478
 
479
  #: includes/settings/tabs/wps-general.php:177
480
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
481
+ #: wp-statistics.php:431
482
  msgid "Pages"
483
  msgstr "Pagine"
484
 
562
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
563
  msgstr "Aggiunge una riga con i totali dei grafici."
564
 
565
+ #: includes/settings/tabs/wps-externals.php:32
566
  msgid "GeoIP settings"
567
  msgstr "impostazioni GeoIP"
568
 
569
+ #: includes/settings/tabs/wps-externals.php:37
570
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
571
  msgstr "Servizi di localizzazione IP forniti da GeoLite2 dati creati da MaxMind, disponibili da %s."
572
 
573
+ #: includes/settings/tabs/wps-externals.php:47
574
  msgid "GeoIP collection"
575
  msgstr "GeoIP"
576
 
577
+ #: includes/settings/tabs/wps-externals.php:53
578
  msgid "For get more information and location (country) from visitor, enable this feature."
579
  msgstr "Per ottenere ulteriori informazioni e luogo (nazione) dal visitatore, attivare questa funzione."
580
 
581
+ #: includes/settings/tabs/wps-externals.php:59
582
  msgid "Update GeoIP Info"
583
  msgstr "Aggiorna info GeoIP"
584
 
585
+ #: includes/settings/tabs/wps-externals.php:64
586
  msgid "Download GeoIP Database"
587
  msgstr "Scarica Database GeoIP"
588
 
589
+ #: includes/settings/tabs/wps-externals.php:71
590
  msgid "Schedule monthly update of GeoIP DB"
591
  msgstr "Pianificazione aggiornamento mensile di GeoIP DB"
592
 
593
+ #: includes/settings/tabs/wps-externals.php:97
594
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
595
  msgstr "Download del database GeoIP sarà programmato per 2 giorni dopo il primo"
596
 
597
+ #: includes/settings/tabs/wps-externals.php:98
598
  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)."
599
  msgstr "Questa opzione scaricherà anche il database se la dimensione del file locale è minore di 1k."
600
 
601
+ #: includes/settings/tabs/wps-externals.php:104
602
  msgid "Populate missing GeoIP after update of GeoIP DB"
603
  msgstr "Popola i dati mancanti di GeoIP dopo l'aggiornamento del DB"
604
 
605
+ #: includes/settings/tabs/wps-externals.php:110
606
  msgid "Update any missing GeoIP data after downloading a new database."
607
  msgstr "Aggiornare dati GeoIP mancanti dopo aver scaricato un nuovo database."
608
 
609
+ #: includes/settings/tabs/wps-externals.php:116
610
  msgid "Country code for private IP addresses"
611
  msgstr ""
612
 
613
+ #: includes/settings/tabs/wps-externals.php:121
614
  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."
615
  msgstr ""
616
 
617
+ #: includes/settings/tabs/wps-externals.php:132
618
  msgid "GeoIP collection is disabled due to the following reasons:"
619
  msgstr "Collezione GeoIP è disabilitata per i seguenti motivi:"
620
 
621
+ #: includes/settings/tabs/wps-externals.php:135
622
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
623
  msgstr "GeoIP richiede PHP %s o superiore. Attualmente è disabilitato a causa della versione non corretta di PHP"
624
 
625
+ #: includes/settings/tabs/wps-externals.php:140
626
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
627
  msgstr "Raccolta di GeoIP richiede l'estensione PHP cURL che attualmente non è presente sul tuo Sistema."
628
 
629
+ #: includes/settings/tabs/wps-externals.php:146
630
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
631
  msgstr "Raccolta di GeoIP richiede l'estensione PHP Math BC che attualmente non è presente sul Sistema."
632
 
633
+ #: includes/settings/tabs/wps-externals.php:152
634
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
635
  msgstr "PHP safe mode rilevata! GeoIP non è supportata con di questa modalità di PHP attivata!"
636
 
690
 
691
  #: includes/log/exclusions.php:24
692
  #: includes/settings/tabs/wps-notifications.php:76
 
693
  msgid "GeoIP"
694
  msgstr "GeoIP"
695
 
714
  msgstr ""
715
 
716
  #: includes/settings/tabs/wps-notifications.php:111
717
+ #: includes/settings/tabs/wps-notifications.php:116 schedule.php:221
718
  msgid "Statistical reporting"
719
  msgstr "Segnalazione statistica"
720
 
763
  msgstr ""
764
 
765
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
766
+ #: widget.php:245 wp-statistics.php:536
767
  msgid "User Online"
768
  msgstr "Utenti Online"
769
 
806
  msgstr "Statistiche di Riepilogo"
807
 
808
  #: includes/settings/tabs/wps-overview-display.php:28
809
+ #: includes/settings/wps-settings.php:108
810
  msgid "About"
811
  msgstr "Su di noi"
812
 
856
  msgid "Map type"
857
  msgstr "Tipo di mappa"
858
 
859
+ #: includes/functions/functions.php:404
860
  #: includes/settings/tabs/wps-overview-display.php:128
861
  msgid "Google"
862
  msgstr "Google"
966
  msgid "Remove data and settings, this action cannot be undone."
967
  msgstr ""
968
 
969
+ #: includes/settings/wps-settings.php:100
970
  msgid "General"
971
  msgstr "Generale"
972
 
973
+ #: includes/settings/wps-settings.php:101
974
  msgid "Notifications"
975
  msgstr ""
976
 
977
+ #: includes/settings/wps-settings.php:102
978
  msgid "Dashboard/Overview"
979
  msgstr ""
980
 
981
+ #: includes/settings/wps-settings.php:106
 
 
 
 
982
  msgid "Maintenance"
983
  msgstr "Manutenzione"
984
 
985
+ #: includes/settings/wps-settings.php:107
986
  msgid "Removal"
987
  msgstr ""
988
 
989
  #: includes/settings/tabs/wps-access-level.php:85
 
990
  #: includes/settings/tabs/wps-exclusions.php:234
991
+ #: includes/settings/tabs/wps-externals.php:284
992
  #: includes/settings/tabs/wps-general.php:349
 
993
  #: includes/settings/tabs/wps-maintenance.php:84
994
  #: includes/settings/tabs/wps-notifications.php:201
995
  #: includes/settings/tabs/wps-overview-display.php:388
1009
  msgid "Once Every 4 Weeks"
1010
  msgstr "Una volta ogni 4 settimane"
1011
 
1012
+ #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
1013
  msgid "Statistics"
1014
  msgstr "Statistiche"
1015
 
1081
  msgid "Items"
1082
  msgstr "Oggetti"
1083
 
1084
+ #: widget.php:254 wp-statistics.php:561
1085
  msgid "Yesterday visit"
1086
  msgstr "Visite di ieri"
1087
 
1109
  msgid "WP Statistics has been removed, please disable and delete it."
1110
  msgstr ""
1111
 
1112
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1113
  #. Plugin Name of the plugin/theme
1114
  #: wp-statistics.php:37
1115
  msgid "WP Statistics"
1116
  msgstr "WP Statistics"
1117
 
1118
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1119
  #. Description of the plugin/theme
1120
  #: wp-statistics.php:38
1121
  msgid "Complete statistics for your WordPress site."
1145
  msgid "Setting page > GeoIP"
1146
  msgstr "Pagina di configurazione > GeoIP"
1147
 
1148
+ #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
1149
  msgid "Settings"
1150
  msgstr "Impostazioni"
1151
 
1152
+ #: wp-statistics.php:265
1153
  msgid "Click here to visit the plugin on WordPress.org"
1154
  msgstr "Clicca qui per vedere il plugin su WordPress.org"
1155
 
1156
+ #: wp-statistics.php:265
1157
  msgid "Visit WordPress.org page"
1158
  msgstr "Pagina visita WordPress.org"
1159
 
1160
+ #: wp-statistics.php:268
1161
  msgid "Click here to rate and review this plugin on WordPress.org"
1162
  msgstr "Clicca qui per votare e vedere questo plugin su WordPress.org"
1163
 
1164
+ #: wp-statistics.php:268
1165
  msgid "Rate this plugin"
1166
  msgstr "Vota questo plugin"
1167
 
1168
+ #: wp-statistics.php:312
1169
  msgid "WP Statistics - Hits"
1170
  msgstr "WP Statistics – Hits"
1171
 
1172
+ #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
1173
  msgid "Overview"
1174
  msgstr "Panoramica"
1175
 
1176
+ #: wp-statistics.php:354 wp-statistics.php:430
1177
  msgid "Online"
1178
  msgstr ""
1179
 
1180
+ #: wp-statistics.php:356 wp-statistics.php:432
1181
  msgid "Referrers"
1182
  msgstr ""
1183
 
1184
+ #: shortcode.php:135 wp-statistics.php:357 wp-statistics.php:433
1185
  msgid "Searches"
1186
  msgstr "Ricerche"
1187
 
1188
+ #: wp-statistics.php:358 wp-statistics.php:434
1189
  msgid "Search Words"
1190
  msgstr "Parole di Ricerca"
1191
 
1192
+ #: wp-statistics.php:359 wp-statistics.php:435
1193
  msgid "Top Visitors Today"
1194
  msgstr "Top Visite Odierne"
1195
 
1196
+ #: wp-statistics.php:364 wp-statistics.php:437
1197
  msgid "Optimization"
1198
  msgstr "Ottimizzazione"
1199
 
1200
+ #: wp-statistics.php:370 wp-statistics.php:401
1201
  msgid "Manual"
1202
  msgstr "Manuale"
1203
 
1204
+ #: wp-statistics.php:416
1205
  msgid "Site"
1206
  msgstr ""
1207
 
1208
+ #: wp-statistics.php:417
1209
  msgid "Options"
1210
  msgstr ""
1211
 
1212
+ #: wp-statistics.php:543
1213
  msgid "Today visitor"
1214
  msgstr "Visitatori di oggi"
1215
 
1216
+ #: wp-statistics.php:549
1217
  msgid "Today visit"
1218
  msgstr "Visite di oggi"
1219
 
1220
+ #: wp-statistics.php:555
1221
  msgid "Yesterday visitor"
1222
  msgstr "Visitatori di ieri"
1223
 
1224
+ #: wp-statistics.php:567
1225
  msgid "View Stats"
1226
  msgstr "Vedi Statistiche"
1227
 
1228
+ #: wp-statistics.php:591
1229
  msgid "Download ODF file"
1230
  msgstr "Scarica file ODF"
1231
 
1232
+ #: wp-statistics.php:592
1233
  msgid "Download HTML file"
1234
  msgstr "Scarica file HTML"
1235
 
1236
+ #: wp-statistics.php:596
1237
  msgid "Manual file not found."
1238
  msgstr "File con il manuale non trovato."
1239
 
1240
+ #: wp-statistics.php:663 wp-statistics.php:770 wp-statistics.php:804
1241
  msgid "You do not have sufficient permissions to access this page."
1242
  msgstr "Non si dispone delle autorizzazioni sufficienti per accedere a questa pagina."
1243
 
1245
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
1246
  msgstr ""
1247
 
1248
+ #: wp-statistics.php:241
1249
  msgid "WP Statistics %s installed on"
1250
  msgstr ""
1251
 
1293
  msgid "Browscap.ini update on"
1294
  msgstr ""
1295
 
1296
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1297
  #. Plugin URI of the plugin/theme
1298
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1299
  #. Author URI of the plugin/theme
1300
  msgid "http://wp-statistics.com/"
1301
  msgstr ""
1422
  msgstr "Fare clic per attivare"
1423
 
1424
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1425
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
1426
+ #: wp-statistics.php:426
1427
  msgid "Browsers"
1428
  msgstr "Browsers"
1429
 
1452
  msgid "Exclusions Statistics"
1453
  msgstr "Statistiche Esclusioni"
1454
 
1455
+ #: includes/functions/functions.php:931
1456
  msgid "10 Days"
1457
  msgstr "10 Giorni"
1458
 
1459
+ #: includes/functions/functions.php:931
1460
  msgid "20 Days"
1461
  msgstr "20 Giorni"
1462
 
1463
+ #: includes/functions/functions.php:931
1464
  msgid "30 Days"
1465
  msgstr "30 Giorni"
1466
 
1467
+ #: includes/functions/functions.php:931
1468
  msgid "2 Months"
1469
  msgstr "2 Mesi"
1470
 
1471
+ #: includes/functions/functions.php:931
1472
  msgid "3 Months"
1473
  msgstr "3 Mesi"
1474
 
1475
+ #: includes/functions/functions.php:931
1476
  msgid "6 Months"
1477
  msgstr "6 Mesi"
1478
 
1479
+ #: includes/functions/functions.php:931
1480
  msgid "9 Months"
1481
  msgstr "9 Mesi"
1482
 
1483
+ #: includes/functions/functions.php:931
1484
  msgid "1 Year"
1485
  msgstr "1 Anno"
1486
 
1529
  msgid "Latest Search Word Statistics"
1530
  msgstr "Ultime Statistiche Parola di Ricerca"
1531
 
1532
+ #: includes/log/last-search.php:110 includes/log/last-visitor.php:101
1533
  #: includes/log/online.php:50 includes/log/widgets/google.map.php:84
1534
  #: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
1535
+ #: includes/log/widgets/words.php:46
1536
  msgid "#hash#"
1537
  msgstr "#hash#"
1538
 
1539
+ #: includes/log/last-search.php:115 includes/log/last-visitor.php:106
1540
  #: includes/log/online.php:55 includes/log/top-referring.php:71
1541
+ #: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
1542
  #: includes/settings/tabs/wps-overview-display.php:33
1543
  #: includes/settings/tabs/wps-overview-display.php:113
1544
  msgid "Map"
1545
  msgstr "Mappa"
1546
 
1547
+ #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1548
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1549
  #: includes/log/top-referring.php:125
1550
  msgid "Page"
1551
  msgstr "Pagina"
1552
 
1553
+ #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1554
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1555
  #: includes/log/top-referring.php:125
1556
  msgid "From"
1739
  msgstr "Ora: %s"
1740
 
1741
  #: includes/log/widgets/top.visitors.php:31
1742
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
1743
+ #: wp-statistics.php:353 wp-statistics.php:429
1744
  msgid "Hits"
1745
  msgstr "Hits"
1746
 
1782
  msgid "No platform data found to remove!"
1783
  msgstr ""
1784
 
1785
+ #: includes/functions/functions.php:1019
1786
  msgid "%s table data deleted successfully."
1787
  msgstr "dati di tabella %s cancellati con successo."
1788
 
1789
+ #: includes/functions/functions.php:1023
1790
  msgid "Error, %s not emptied!"
1791
  msgstr "Errore, %s non svuotato!"
1792
 
1812
 
1813
  #: includes/optimization/tabs/wps-optimization-database.php:25
1814
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1815
+ #: wp-statistics.php:351 wp-statistics.php:427
1816
  msgid "Countries"
1817
  msgstr "Paesi"
1818
 
1828
  msgstr "Le vecchie installazioni di Wp Statistics permettevano la registrazione di dati duplicate nella tabella dei visitatori. Le nuove installazioni proteggono la tabella grazie ad un indice unico. Per creare questo indice devi cancellare tutte le entries duplicate. Cliccando \"Update Now\" inizierai la scansione della tabella vistitors, eliminerai le voci duplicate e verrà aggiunto l'indice."
1829
 
1830
  #: includes/optimization/tabs/wps-optimization-database.php:41
1831
+ #: includes/optimization/tabs/wps-optimization-database.php:102
1832
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1833
  msgstr "Questa operazione potrebbe richiedere molto tempo su siti che hanno molti dati nelle tabelle dei visitatori."
1834
 
1838
 
1839
  #: includes/optimization/tabs/wps-optimization-database.php:47
1840
  #: includes/optimization/tabs/wps-optimization-database.php:77
1841
+ #: includes/optimization/tabs/wps-optimization-database.php:108
1842
  msgid "Congratulations, your installation is already up to date, nothing to do."
1843
  msgstr "Congratulazioni, l'installazione è già aggiornata all'ultima versione, non devi fare altro."
1844
 
1845
  #: includes/optimization/tabs/wps-optimization-export.php:8
1846
+ #: includes/optimization/wps-optimization.php:212
1847
  msgid "Export"
1848
  msgstr "Esporta"
1849
 
1896
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1897
  #: includes/settings/tabs/wps-general.php:138
1898
  #: includes/settings/tabs/wps-general.php:143 shortcode.php:133
1899
+ #: wp-statistics.php:360 wp-statistics.php:436
1900
  msgid "Visitors"
1901
  msgstr "Visitatori"
1902
 
2211
  msgid "Install routine complete."
2212
  msgstr "Installazione completa della routine."
2213
 
2214
+ #: includes/optimization/wps-optimization.php:211
2215
  msgid "Resources/Information"
2216
  msgstr "Risorse/informazioni"
2217
 
2218
+ #: includes/optimization/wps-optimization.php:213
2219
  msgid "Purging"
2220
  msgstr "Pulisci"
2221
 
2222
+ #: includes/optimization/wps-optimization.php:214
2223
  msgid "Database"
2224
  msgstr "Database"
2225
 
2226
+ #: includes/optimization/wps-optimization.php:215
2227
  msgid "Updates"
2228
  msgstr "Aggiornamenti"
2229
 
2230
+ #: includes/optimization/wps-optimization.php:216
2231
  msgid "Historical"
2232
  msgstr ""
2233
 
2377
  msgstr ""
2378
 
2379
  #: includes/settings/tabs/wps-access-level.php:23
2380
+ #: includes/settings/wps-settings.php:103
2381
  msgid "Access Levels"
2382
  msgstr "Livelli di accesso"
2383
 
2410
  msgstr "Se avete bisogno di una soluzione più sicura per delegare l'accesso, potresti guardare %s nella WordPress plugin directory."
2411
 
2412
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2413
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:352
2414
+ #: wp-statistics.php:428
2415
  msgid "Exclusions"
2416
  msgstr "Esclusioni"
2417
 
2582
  msgid "Exclude the RSS feeds for registering as a hit."
2583
  msgstr ""
2584
 
2585
+ #: includes/settings/tabs/wps-externals.php:162
2586
  msgid "browscap settings"
2587
  msgstr "Impostazioni di browscap"
2588
 
2589
+ #: includes/settings/tabs/wps-externals.php:167
2590
  msgid "browscap usage"
2591
  msgstr "Utilizzo di browsca"
2592
 
2593
+ #: includes/settings/tabs/wps-externals.php:52
2594
+ #: includes/settings/tabs/wps-externals.php:76
2595
+ #: includes/settings/tabs/wps-externals.php:109
2596
+ #: includes/settings/tabs/wps-externals.php:172
2597
+ #: includes/settings/tabs/wps-externals.php:196
2598
+ #: includes/settings/tabs/wps-externals.php:235
2599
+ #: includes/settings/tabs/wps-externals.php:259
2600
  #: includes/settings/tabs/wps-general.php:76
2601
  #: includes/settings/tabs/wps-general.php:92
2602
  #: includes/settings/tabs/wps-general.php:116
2612
  #: includes/settings/tabs/wps-general.php:286
2613
  #: includes/settings/tabs/wps-general.php:325
2614
  #: includes/settings/tabs/wps-general.php:341
 
 
 
2615
  #: includes/settings/tabs/wps-maintenance.php:40
2616
  #: includes/settings/tabs/wps-maintenance.php:64
2617
  #: includes/settings/tabs/wps-notifications.php:69
2626
  msgid "Active"
2627
  msgstr "Active"
2628
 
2629
+ #: includes/settings/tabs/wps-externals.php:173
2630
  msgid "The browscap database will be downloaded and used to detect robots."
2631
  msgstr "Il database di browscap sarà scaricato e utilizzato per rilevare i robots."
2632
 
2633
+ #: includes/settings/tabs/wps-externals.php:179
2634
  msgid "Update browscap Info"
2635
  msgstr "Aggiornamento browscap Info"
2636
 
2637
+ #: includes/settings/tabs/wps-externals.php:184
2638
  msgid "Download browscap Database"
2639
  msgstr "Scarica browscap Database"
2640
 
2641
+ #: includes/settings/tabs/wps-externals.php:65
2642
+ #: includes/settings/tabs/wps-externals.php:185
2643
+ #: includes/settings/tabs/wps-externals.php:248
2644
  msgid "Save changes on this page to download the update."
2645
  msgstr "Salva i cambiamenti in questa pagina per scaricare l'aggiornamento."
2646
 
2647
+ #: includes/settings/tabs/wps-externals.php:191
2648
  msgid "Schedule weekly update of browscap DB"
2649
  msgstr "Pianificare l'aggiornamento settimanale del browscap DB"
2650
 
2651
+ #: includes/settings/tabs/wps-externals.php:79
2652
+ #: includes/settings/tabs/wps-externals.php:199
2653
+ #: includes/settings/tabs/wps-externals.php:262
2654
  msgid "Next update will be"
2655
  msgstr "il prossimo aggiornamento sarà"
2656
 
2657
+ #: includes/settings/tabs/wps-externals.php:214
2658
  msgid "Download of the browscap database will be scheduled for once a week."
2659
  msgstr "Il download del database browscap sarà programmato per essere eseguito una volta a settimana."
2660
 
languages/wp_statistics-ja.mo CHANGED
Binary file
languages/wp_statistics-ja.po CHANGED
@@ -10,6 +10,70 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  #: includes/settings/tabs/wps-exclusions.php:148
14
  msgid "Treat corrupt browser info as a bot"
15
  msgstr "破損しているブラウザ情報をボットとして扱います"
@@ -158,7 +222,7 @@ msgstr "全時間の合計"
158
  msgid "Have you thought about donating to WP Statistics?"
159
  msgstr "WP Statisticsへの寄付について考えたことはありますか?"
160
 
161
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:362
162
  msgid "Donate"
163
  msgstr "寄付します"
164
 
@@ -194,11 +258,11 @@ msgstr "投稿数"
194
  msgid "Time Frame"
195
  msgstr "時間範囲"
196
 
197
- #: includes/functions/functions.php:929
198
  msgid "to"
199
  msgstr "へ"
200
 
201
- #: includes/functions/functions.php:929 includes/log/top-visitors.php:29
202
  msgid "Go"
203
  msgstr "行きます"
204
 
@@ -242,11 +306,11 @@ msgstr "WP Statisticsの古いインストールは境界状態で訪問テー
242
  msgid "Filtered by"
243
  msgstr "によってフィルタ"
244
 
245
- #: includes/functions/functions.php:922 includes/functions/functions.php:925
246
  msgid "Range"
247
  msgstr "範囲"
248
 
249
- #: includes/functions/functions.php:929 includes/log/top-visitors.php:29
250
  msgid "MM/DD/YYYY"
251
  msgstr "MM/DD/YYYY"
252
 
@@ -290,27 +354,27 @@ msgstr "最近の30日 (月)"
290
  msgid "Last 7 Days (Week)"
291
  msgstr "最近の7日間 (1週間)"
292
 
293
- #: includes/functions/functions.php:403
294
  msgid "Yahoo!"
295
  msgstr "Yahoo!"
296
 
297
- #: includes/functions/functions.php:404
298
  msgid "Yandex"
299
  msgstr "Yandex"
300
 
301
- #: includes/functions/functions.php:400
302
  msgid "clearch.org"
303
  msgstr "clearch.org"
304
 
305
- #: includes/functions/functions.php:401
306
  msgid "DuckDuckGo"
307
  msgstr "DuckDuckGo"
308
 
309
- #: includes/functions/functions.php:399
310
  msgid "Bing"
311
  msgstr "Bing"
312
 
313
- #: includes/functions/functions.php:398
314
  msgid "Baidu"
315
  msgstr "百度"
316
 
@@ -413,8 +477,8 @@ msgid "For each visit to account for several hits. Currently %s."
413
  msgstr "それぞれの訪問について複数のヒットを考慮する。現在値は%s。"
414
 
415
  #: includes/settings/tabs/wps-general.php:177
416
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:351
417
- #: wp-statistics.php:427
418
  msgid "Pages"
419
  msgstr "ページ"
420
 
@@ -498,75 +562,75 @@ msgstr "合計を含めます"
498
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
499
  msgstr "検索エンジンへの参照のように、複数の値を持つチャートについて全行を追加します。"
500
 
501
- #: includes/settings/tabs/wps-geoip.php:27
502
  msgid "GeoIP settings"
503
  msgstr "GeoIPの設定"
504
 
505
- #: includes/settings/tabs/wps-geoip.php:32
506
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
507
  msgstr "MaxMindによって作成されたGeoLite2データによって提供されるIPロケーションサービス, %sから入手可能"
508
 
509
- #: includes/settings/tabs/wps-geoip.php:42
510
  msgid "GeoIP collection"
511
  msgstr "GeoIPコレクション"
512
 
513
- #: includes/settings/tabs/wps-geoip.php:48
514
  msgid "For get more information and location (country) from visitor, enable this feature."
515
  msgstr "訪問者からより多くの情報と場所(国)を取得するために、この機能を有効にしてください。"
516
 
517
- #: includes/settings/tabs/wps-geoip.php:54
518
  msgid "Update GeoIP Info"
519
  msgstr "GeoIP情報を更新"
520
 
521
- #: includes/settings/tabs/wps-geoip.php:59
522
  msgid "Download GeoIP Database"
523
  msgstr "GeoIPデータベースをダウンロード"
524
 
525
- #: includes/settings/tabs/wps-geoip.php:66
526
  msgid "Schedule monthly update of GeoIP DB"
527
  msgstr "GeoIP DBの毎月更新をスケジュールします"
528
 
529
- #: includes/settings/tabs/wps-geoip.php:92
530
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
531
  msgstr "GeoIPデータベースのダウンロードは月の最初の火曜日の2日後にスケジュールされます。"
532
 
533
- #: includes/settings/tabs/wps-geoip.php:93
534
  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)."
535
  msgstr "このオプションは、ローカルのファイルサイズが1K以下である場合(これは通常プラグイン付属のスタブが所定の位置にまだあることを意味します)にもデータベースをダウンロードします。"
536
 
537
- #: includes/settings/tabs/wps-geoip.php:99
538
  msgid "Populate missing GeoIP after update of GeoIP DB"
539
  msgstr "GeoIP DBの更新後に不足のGeoIPを移入します。"
540
 
541
- #: includes/settings/tabs/wps-geoip.php:105
542
  msgid "Update any missing GeoIP data after downloading a new database."
543
  msgstr "新しいデータベースをダウンロードした後、不足のGeoIPデータを更新します。"
544
 
545
- #: includes/settings/tabs/wps-geoip.php:111
546
  msgid "Country code for private IP addresses"
547
  msgstr "プライベートIPアドレスの国コード"
548
 
549
- #: includes/settings/tabs/wps-geoip.php:116
550
  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."
551
  msgstr "(ルーティング不可の)プライベートIPアドレス(すなわち10.0.0.1, 192.158.1.1, 127.0.0.1など)に使う国際標準2文字国コード(すなわちUS = 米国、CA = カナダなど)。国コードとして”Unknown”を使用するには、\"000\"(ゼロ3つ)を使用します。"
552
 
553
- #: includes/settings/tabs/wps-geoip.php:127
554
  msgid "GeoIP collection is disabled due to the following reasons:"
555
  msgstr "GeoIPコレクションは、以下の理由により無効になっています:"
556
 
557
- #: includes/settings/tabs/wps-geoip.php:130
558
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
559
  msgstr "GeoIPコレクションは、PHP %s かそれ以降が必要です。インストールされているPHPのバージョンのため現在無効になっています。"
560
 
561
- #: includes/settings/tabs/wps-geoip.php:135
562
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
563
  msgstr "GeoIPコレクションには、cURL PHP拡張モジュールが必要ですが、あなたがお使いのPHPにはロードされていません!"
564
 
565
- #: includes/settings/tabs/wps-geoip.php:141
566
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
567
  msgstr "GeoIPコレクションにはBC Math PHP拡張モジュールが必要ですが、あなたがお使いのPHPにはロードされていません!"
568
 
569
- #: includes/settings/tabs/wps-geoip.php:147
570
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
571
  msgstr "PHPセーフモードが検出されました! GeoIPコレクションはセーフモードが有効なPHPをサポートしません!"
572
 
@@ -626,7 +690,6 @@ msgstr "browscap.iniが更新されるたびにレポートを送信します。
626
 
627
  #: includes/log/exclusions.php:24
628
  #: includes/settings/tabs/wps-notifications.php:76
629
- #: includes/settings/wps-settings.php:111
630
  msgid "GeoIP"
631
  msgstr "GeoIP"
632
 
@@ -651,7 +714,7 @@ msgid "Send a report whenever the plugin is upgraded."
651
  msgstr "プラグインを更新するたびにレポートを送信します。"
652
 
653
  #: includes/settings/tabs/wps-notifications.php:111
654
- #: includes/settings/tabs/wps-notifications.php:116 schedule.php:199
655
  msgid "Statistical reporting"
656
  msgstr "統計レポート"
657
 
@@ -700,7 +763,7 @@ msgid "Any shortcode supported by your installation of WordPress, include all sh
700
  msgstr "WP Statisticsのためのショートコード(使用可能なコードのリストについては、管理マニュアルを参照してください)全てを含む、インストールされているWordPressでサポートされている全てのショートコードが、メッセージの本文でサポートされています ​​。ここではいくつかの例を示します。"
701
 
702
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
703
- #: widget.php:245 wp-statistics.php:532
704
  msgid "User Online"
705
  msgstr "オンラインユーザー"
706
 
@@ -743,7 +806,7 @@ msgid "Summary Statistics"
743
  msgstr "統計概要"
744
 
745
  #: includes/settings/tabs/wps-overview-display.php:28
746
- #: includes/settings/wps-settings.php:115
747
  msgid "About"
748
  msgstr "約"
749
 
@@ -793,7 +856,7 @@ msgstr "ページ/投稿エディタウィジェットを無効にします。"
793
  msgid "Map type"
794
  msgstr "マップタイプ"
795
 
796
- #: includes/functions/functions.php:402
797
  #: includes/settings/tabs/wps-overview-display.php:128
798
  msgid "Google"
799
  msgstr "グーグル"
@@ -903,35 +966,30 @@ msgstr "削除"
903
  msgid "Remove data and settings, this action cannot be undone."
904
  msgstr "データと設定を削除し、このアクションは元に戻すことはできません。"
905
 
906
- #: includes/settings/wps-settings.php:106
907
  msgid "General"
908
  msgstr "一般"
909
 
910
- #: includes/settings/wps-settings.php:107
911
  msgid "Notifications"
912
  msgstr "お知らせ"
913
 
914
- #: includes/settings/wps-settings.php:108
915
  msgid "Dashboard/Overview"
916
  msgstr "ダッシュボード/概要"
917
 
918
- #: includes/settings/wps-settings.php:112
919
- msgid "browscap"
920
- msgstr "browscap"
921
-
922
- #: includes/settings/wps-settings.php:113
923
  msgid "Maintenance"
924
  msgstr "保守"
925
 
926
- #: includes/settings/wps-settings.php:114
927
  msgid "Removal"
928
  msgstr "削除"
929
 
930
  #: includes/settings/tabs/wps-access-level.php:85
931
- #: includes/settings/tabs/wps-browscap.php:81
932
  #: includes/settings/tabs/wps-exclusions.php:234
 
933
  #: includes/settings/tabs/wps-general.php:349
934
- #: includes/settings/tabs/wps-geoip.php:158
935
  #: includes/settings/tabs/wps-maintenance.php:84
936
  #: includes/settings/tabs/wps-notifications.php:201
937
  #: includes/settings/tabs/wps-overview-display.php:388
@@ -951,7 +1009,7 @@ msgstr "2週間毎に1回"
951
  msgid "Once Every 4 Weeks"
952
  msgstr "4週間毎に1回"
953
 
954
- #: widget.php:14 wp-statistics.php:342 wp-statistics.php:380
955
  msgid "Statistics"
956
  msgstr "統計"
957
 
@@ -1023,7 +1081,7 @@ msgstr "名"
1023
  msgid "Items"
1024
  msgstr "アイテム"
1025
 
1026
- #: widget.php:254 wp-statistics.php:557
1027
  msgid "Yesterday visit"
1028
  msgstr "昨日の訪問数"
1029
 
@@ -1051,13 +1109,13 @@ msgstr "現在のPHPバージョンは"
1051
  msgid "WP Statistics has been removed, please disable and delete it."
1052
  msgstr "WP Statisticsは削除されています。無効にして削除してください。"
1053
 
1054
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1055
  #. Plugin Name of the plugin/theme
1056
  #: wp-statistics.php:37
1057
  msgid "WP Statistics"
1058
  msgstr "WP Statistics"
1059
 
1060
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1061
  #. Description of the plugin/theme
1062
  #: wp-statistics.php:38
1063
  msgid "Complete statistics for your WordPress site."
@@ -1087,99 +1145,99 @@ msgstr "GeoIPコレクションが有効ではありません。%sに移動し
1087
  msgid "Setting page > GeoIP"
1088
  msgstr "設定ページ > GeoIP"
1089
 
1090
- #: wp-statistics.php:249 wp-statistics.php:361 wp-statistics.php:434
1091
  msgid "Settings"
1092
  msgstr "設定"
1093
 
1094
- #: wp-statistics.php:261
1095
  msgid "Click here to visit the plugin on WordPress.org"
1096
  msgstr "ここをクリックして、WordPress.orgのプラグインを訪問してください"
1097
 
1098
- #: wp-statistics.php:261
1099
  msgid "Visit WordPress.org page"
1100
  msgstr "WordPress.orgページを訪問します"
1101
 
1102
- #: wp-statistics.php:264
1103
  msgid "Click here to rate and review this plugin on WordPress.org"
1104
  msgstr "ここをクリックして、WordPress.orgでこのプラグインの評価とレビューをしてください。"
1105
 
1106
- #: wp-statistics.php:264
1107
  msgid "Rate this plugin"
1108
  msgstr "このプラグインを評価する"
1109
 
1110
- #: wp-statistics.php:308
1111
  msgid "WP Statistics - Hits"
1112
  msgstr "WP Statistics - ヒット"
1113
 
1114
- #: wp-statistics.php:345 wp-statistics.php:383 wp-statistics.php:421
1115
  msgid "Overview"
1116
  msgstr "概要"
1117
 
1118
- #: wp-statistics.php:350 wp-statistics.php:426
1119
  msgid "Online"
1120
  msgstr "オンライン"
1121
 
1122
- #: wp-statistics.php:352 wp-statistics.php:428
1123
  msgid "Referrers"
1124
  msgstr "参照元"
1125
 
1126
- #: shortcode.php:135 wp-statistics.php:353 wp-statistics.php:429
1127
  msgid "Searches"
1128
  msgstr "検索"
1129
 
1130
- #: wp-statistics.php:354 wp-statistics.php:430
1131
  msgid "Search Words"
1132
  msgstr "検索ワード"
1133
 
1134
- #: wp-statistics.php:355 wp-statistics.php:431
1135
  msgid "Top Visitors Today"
1136
  msgstr "今日のトップ訪問者"
1137
 
1138
- #: wp-statistics.php:360 wp-statistics.php:433
1139
  msgid "Optimization"
1140
  msgstr "最適化"
1141
 
1142
- #: wp-statistics.php:366 wp-statistics.php:397
1143
  msgid "Manual"
1144
  msgstr "マニュアル"
1145
 
1146
- #: wp-statistics.php:412
1147
  msgid "Site"
1148
  msgstr "サイト"
1149
 
1150
- #: wp-statistics.php:413
1151
  msgid "Options"
1152
  msgstr "オプション"
1153
 
1154
- #: wp-statistics.php:539
1155
  msgid "Today visitor"
1156
  msgstr "今日の訪問者"
1157
 
1158
- #: wp-statistics.php:545
1159
  msgid "Today visit"
1160
  msgstr "今日の訪問"
1161
 
1162
- #: wp-statistics.php:551
1163
  msgid "Yesterday visitor"
1164
  msgstr "昨日の訪問者"
1165
 
1166
- #: wp-statistics.php:563
1167
  msgid "View Stats"
1168
  msgstr "統計を見る"
1169
 
1170
- #: wp-statistics.php:587
1171
  msgid "Download ODF file"
1172
  msgstr "ODFファイルをダウンロード"
1173
 
1174
- #: wp-statistics.php:588
1175
  msgid "Download HTML file"
1176
  msgstr "HTMLファイルをダウンロード"
1177
 
1178
- #: wp-statistics.php:592
1179
  msgid "Manual file not found."
1180
  msgstr "マニュアルファイルが見つかりません。"
1181
 
1182
- #: wp-statistics.php:659 wp-statistics.php:770 wp-statistics.php:804
1183
  msgid "You do not have sufficient permissions to access this page."
1184
  msgstr "あなたがこのページにアクセスするための十分な権限がありません。"
1185
 
@@ -1187,7 +1245,7 @@ msgstr "あなたがこのページにアクセスするための十分な権限
1187
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
1188
  msgstr "プラグインのテーブルがデータベースに存在しません! %sを再実行してルーチン%sをインストールしてください。"
1189
 
1190
- #: wp-statistics.php:237
1191
  msgid "WP Statistics %s installed on"
1192
  msgstr "WPの統計は、%s上に設置されています"
1193
 
@@ -1235,9 +1293,9 @@ msgstr "browscapは既に最新バージョンです!"
1235
  msgid "Browscap.ini update on"
1236
  msgstr "Browscap.ini更新"
1237
 
1238
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1239
  #. Plugin URI of the plugin/theme
1240
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1241
  #. Author URI of the plugin/theme
1242
  msgid "http://wp-statistics.com/"
1243
  msgstr "http://wp-statistics.com/"
@@ -1364,8 +1422,8 @@ msgid "Click to toggle"
1364
  msgstr "クリックして切り替えます"
1365
 
1366
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1367
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:346
1368
- #: wp-statistics.php:422
1369
  msgid "Browsers"
1370
  msgstr "ブラウザ"
1371
 
@@ -1394,35 +1452,35 @@ msgstr "注意: 現在、除外を記録するように設定されていませ
1394
  msgid "Exclusions Statistics"
1395
  msgstr "除外統計"
1396
 
1397
- #: includes/functions/functions.php:879
1398
  msgid "10 Days"
1399
  msgstr "10日"
1400
 
1401
- #: includes/functions/functions.php:879
1402
  msgid "20 Days"
1403
  msgstr "20日"
1404
 
1405
- #: includes/functions/functions.php:879
1406
  msgid "30 Days"
1407
  msgstr "30日"
1408
 
1409
- #: includes/functions/functions.php:879
1410
  msgid "2 Months"
1411
  msgstr "2ヶ月"
1412
 
1413
- #: includes/functions/functions.php:879
1414
  msgid "3 Months"
1415
  msgstr "3ヶ月"
1416
 
1417
- #: includes/functions/functions.php:879
1418
  msgid "6 Months"
1419
  msgstr "6ヶ月"
1420
 
1421
- #: includes/functions/functions.php:879
1422
  msgid "9 Months"
1423
  msgstr "9ヶ月"
1424
 
1425
- #: includes/functions/functions.php:879
1426
  msgid "1 Year"
1427
  msgstr "1年"
1428
 
@@ -1471,28 +1529,28 @@ msgstr "訪問者"
1471
  msgid "Latest Search Word Statistics"
1472
  msgstr "最近の検索ワード統計"
1473
 
1474
- #: includes/log/last-search.php:100 includes/log/last-visitor.php:101
1475
  #: includes/log/online.php:50 includes/log/widgets/google.map.php:84
1476
  #: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
1477
- #: includes/log/widgets/words.php:36
1478
  msgid "#hash#"
1479
  msgstr "#ハッシュ#"
1480
 
1481
- #: includes/log/last-search.php:105 includes/log/last-visitor.php:106
1482
  #: includes/log/online.php:55 includes/log/top-referring.php:71
1483
- #: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:43
1484
  #: includes/settings/tabs/wps-overview-display.php:33
1485
  #: includes/settings/tabs/wps-overview-display.php:113
1486
  msgid "Map"
1487
  msgstr "マップ"
1488
 
1489
- #: includes/log/last-search.php:142 includes/log/last-visitor.php:139
1490
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1491
  #: includes/log/top-referring.php:125
1492
  msgid "Page"
1493
  msgstr "ページ"
1494
 
1495
- #: includes/log/last-search.php:142 includes/log/last-visitor.php:139
1496
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1497
  #: includes/log/top-referring.php:125
1498
  msgid "From"
@@ -1681,8 +1739,8 @@ msgid "Time: %s"
1681
  msgstr "時間: %sの"
1682
 
1683
  #: includes/log/widgets/top.visitors.php:31
1684
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:273
1685
- #: wp-statistics.php:349 wp-statistics.php:425
1686
  msgid "Hits"
1687
  msgstr "ヒット数"
1688
 
@@ -1724,11 +1782,11 @@ msgstr "%sのプラットフォームのデータが正常に削除されまし
1724
  msgid "No platform data found to remove!"
1725
  msgstr "削除すべきプラットフォームのデータはありません!"
1726
 
1727
- #: includes/functions/functions.php:967
1728
  msgid "%s table data deleted successfully."
1729
  msgstr "%sのテーブルデータが正常に削除されました。"
1730
 
1731
- #: includes/functions/functions.php:971
1732
  msgid "Error, %s not emptied!"
1733
  msgstr "エラー %sが空ではありません!"
1734
 
@@ -1754,7 +1812,7 @@ msgstr "データベースのインデックス"
1754
 
1755
  #: includes/optimization/tabs/wps-optimization-database.php:25
1756
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1757
- #: wp-statistics.php:347 wp-statistics.php:423
1758
  msgid "Countries"
1759
  msgstr "国"
1760
 
@@ -1770,6 +1828,7 @@ msgid "Older installs of WP Statistics allow for duplicate entries in the visito
1770
  msgstr "古いWP Statisticsは境界ケースで訪問者テーブルに重複エントリを許容します。新しいものは、テーブルの一意索引によりこれを防止します。古いものに索引を作成するには、最初に重複したエントリを削除する必要があります。\"今すぐ更新\"をクリックすると、訪問者テーブルをスキャンし、重複したエントリを削除し、索引を追加します。"
1771
 
1772
  #: includes/optimization/tabs/wps-optimization-database.php:41
 
1773
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1774
  msgstr "訪問者テーブルに多くの行がある場合、この操作によりインストールに長い時間がかかることがあります。"
1775
 
@@ -1779,11 +1838,12 @@ msgstr "古いWP Statisticsは境界ケースで訪問者テーブルに重複
1779
 
1780
  #: includes/optimization/tabs/wps-optimization-database.php:47
1781
  #: includes/optimization/tabs/wps-optimization-database.php:77
 
1782
  msgid "Congratulations, your installation is already up to date, nothing to do."
1783
  msgstr "おめでとうございます、あなたのインストールは既に最新になり、すべきことは何もありません。"
1784
 
1785
  #: includes/optimization/tabs/wps-optimization-export.php:8
1786
- #: includes/optimization/wps-optimization.php:183
1787
  msgid "Export"
1788
  msgstr "エクスポート"
1789
 
@@ -1836,7 +1896,7 @@ msgstr "注: データベースからパージしたばかりなので、番号
1836
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1837
  #: includes/settings/tabs/wps-general.php:138
1838
  #: includes/settings/tabs/wps-general.php:143 shortcode.php:133
1839
- #: wp-statistics.php:356 wp-statistics.php:432
1840
  msgid "Visitors"
1841
  msgstr "訪問者"
1842
 
@@ -2151,23 +2211,23 @@ msgstr "IPアドレスをハッシュ値に置き換えます。"
2151
  msgid "Install routine complete."
2152
  msgstr "イ​​ンストールルーチンが完了しました。"
2153
 
2154
- #: includes/optimization/wps-optimization.php:182
2155
  msgid "Resources/Information"
2156
  msgstr "リソース/情報"
2157
 
2158
- #: includes/optimization/wps-optimization.php:184
2159
  msgid "Purging"
2160
  msgstr "削除"
2161
 
2162
- #: includes/optimization/wps-optimization.php:185
2163
  msgid "Database"
2164
  msgstr "データベース"
2165
 
2166
- #: includes/optimization/wps-optimization.php:186
2167
  msgid "Updates"
2168
  msgstr "更新"
2169
 
2170
- #: includes/optimization/wps-optimization.php:187
2171
  msgid "Historical"
2172
  msgstr "履歴"
2173
 
@@ -2317,7 +2377,7 @@ msgid "This is the honey pot for WP Statistics to use, do not delete."
2317
  msgstr "これはWP Statisticsで利用するハニーポットです。削除しないでください。"
2318
 
2319
  #: includes/settings/tabs/wps-access-level.php:23
2320
- #: includes/settings/wps-settings.php:109
2321
  msgid "Access Levels"
2322
  msgstr "アクセスレベル"
2323
 
@@ -2350,8 +2410,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2350
  msgstr "あなたがアクセス権を委任するより堅牢なソリューションが必要な場合は、WordPressのプラグインディレクトリ内の%sで見たいと思うかもしれません。"
2351
 
2352
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2353
- #: includes/settings/wps-settings.php:110 wp-statistics.php:348
2354
- #: wp-statistics.php:424
2355
  msgid "Exclusions"
2356
  msgstr "除外"
2357
 
@@ -2522,16 +2582,21 @@ msgstr "RSSフィードの除外"
2522
  msgid "Exclude the RSS feeds for registering as a hit."
2523
  msgstr "RSSフィードをヒットの登録から除外します。"
2524
 
2525
- #: includes/settings/tabs/wps-browscap.php:22
2526
  msgid "browscap settings"
2527
  msgstr "browscap設定"
2528
 
2529
- #: includes/settings/tabs/wps-browscap.php:27
2530
  msgid "browscap usage"
2531
  msgstr "browscap利用"
2532
 
2533
- #: includes/settings/tabs/wps-browscap.php:32
2534
- #: includes/settings/tabs/wps-browscap.php:56
 
 
 
 
 
2535
  #: includes/settings/tabs/wps-general.php:76
2536
  #: includes/settings/tabs/wps-general.php:92
2537
  #: includes/settings/tabs/wps-general.php:116
@@ -2547,9 +2612,6 @@ msgstr "browscap利用"
2547
  #: includes/settings/tabs/wps-general.php:286
2548
  #: includes/settings/tabs/wps-general.php:325
2549
  #: includes/settings/tabs/wps-general.php:341
2550
- #: includes/settings/tabs/wps-geoip.php:47
2551
- #: includes/settings/tabs/wps-geoip.php:71
2552
- #: includes/settings/tabs/wps-geoip.php:104
2553
  #: includes/settings/tabs/wps-maintenance.php:40
2554
  #: includes/settings/tabs/wps-maintenance.php:64
2555
  #: includes/settings/tabs/wps-notifications.php:69
@@ -2564,33 +2626,35 @@ msgstr "browscap利用"
2564
  msgid "Active"
2565
  msgstr "有効"
2566
 
2567
- #: includes/settings/tabs/wps-browscap.php:33
2568
  msgid "The browscap database will be downloaded and used to detect robots."
2569
  msgstr "browscapデータベースがダウンロードされ、ロボットを検出するために使用されます。"
2570
 
2571
- #: includes/settings/tabs/wps-browscap.php:39
2572
  msgid "Update browscap Info"
2573
  msgstr "browscap情報を更新"
2574
 
2575
- #: includes/settings/tabs/wps-browscap.php:44
2576
  msgid "Download browscap Database"
2577
  msgstr "browscapデータベースのダウンロード"
2578
 
2579
- #: includes/settings/tabs/wps-browscap.php:45
2580
- #: includes/settings/tabs/wps-geoip.php:60
 
2581
  msgid "Save changes on this page to download the update."
2582
  msgstr "更新をダウンロードするには、このページの変更を保存します。"
2583
 
2584
- #: includes/settings/tabs/wps-browscap.php:51
2585
  msgid "Schedule weekly update of browscap DB"
2586
  msgstr "browscap DBを毎週更新する"
2587
 
2588
- #: includes/settings/tabs/wps-browscap.php:59
2589
- #: includes/settings/tabs/wps-geoip.php:74
 
2590
  msgid "Next update will be"
2591
  msgstr "次の更新は"
2592
 
2593
- #: includes/settings/tabs/wps-browscap.php:74
2594
  msgid "Download of the browscap database will be scheduled for once a week."
2595
  msgstr "browscapデータベースのダウンロードが、毎週一回にスケジュールされます。"
2596
 
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: includes/optimization/wps-optimization.php:173
14
+ msgid "Search table conversion complete, %d rows added."
15
+ msgstr ""
16
+
17
+ #: includes/optimization/tabs/wps-optimization-database.php:107
18
+ msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion."
19
+ msgstr ""
20
+
21
+ #: includes/optimization/tabs/wps-optimization-database.php:86
22
+ msgid "Search Table"
23
+ msgstr ""
24
+
25
+ #: includes/optimization/tabs/wps-optimization-database.php:91
26
+ msgid "Convert"
27
+ msgstr ""
28
+
29
+ #: includes/optimization/tabs/wps-optimization-database.php:100
30
+ msgid "Convert Now!"
31
+ msgstr ""
32
+
33
+ #: includes/optimization/tabs/wps-optimization-database.php:101
34
+ msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion, however the old data must first be converted to the new format before it can be used."
35
+ msgstr ""
36
+
37
+ #: includes/log/exclusions.php:24
38
+ msgid "Referrer Spam"
39
+ msgstr ""
40
+
41
+ #: includes/settings/tabs/wps-externals.php:277
42
+ msgid "Download of the Piwik Referrer Spam Blacklist database will be scheduled for once a week."
43
+ msgstr ""
44
+
45
+ #: includes/settings/wps-settings.php:105
46
+ msgid "Externals"
47
+ msgstr ""
48
+
49
+ #: includes/settings/tabs/wps-externals.php:219
50
+ msgid "Piwik Referrer Spam Blacklist settings"
51
+ msgstr ""
52
+
53
+ #: includes/settings/tabs/wps-externals.php:254
54
+ msgid "Schedule weekly update of Piwik Referrer Spam Blacklist DB"
55
+ msgstr ""
56
+
57
+ #: includes/settings/tabs/wps-externals.php:247
58
+ msgid "Download Piwik Referrer Spam Blacklist Database"
59
+ msgstr ""
60
+
61
+ #: includes/settings/tabs/wps-externals.php:242
62
+ msgid "Update Piwik Referrer Spam Blacklist Info"
63
+ msgstr ""
64
+
65
+ #: includes/settings/tabs/wps-externals.php:236
66
+ msgid "The Piwik Referrer Spam Blacklist database will be downloaded and used to detect referrer spam."
67
+ msgstr ""
68
+
69
+ #: includes/settings/tabs/wps-externals.php:224
70
+ msgid "Referrer spam blacklist is provided by Piwik, available from %s."
71
+ msgstr ""
72
+
73
+ #: includes/settings/tabs/wps-externals.php:230
74
+ msgid "Piwik Referrer Spam Blacklist usage"
75
+ msgstr ""
76
+
77
  #: includes/settings/tabs/wps-exclusions.php:148
78
  msgid "Treat corrupt browser info as a bot"
79
  msgstr "破損しているブラウザ情報をボットとして扱います"
222
  msgid "Have you thought about donating to WP Statistics?"
223
  msgstr "WP Statisticsへの寄付について考えたことはありますか?"
224
 
225
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
226
  msgid "Donate"
227
  msgstr "寄付します"
228
 
258
  msgid "Time Frame"
259
  msgstr "時間範囲"
260
 
261
+ #: includes/functions/functions.php:981
262
  msgid "to"
263
  msgstr "へ"
264
 
265
+ #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
266
  msgid "Go"
267
  msgstr "行きます"
268
 
306
  msgid "Filtered by"
307
  msgstr "によってフィルタ"
308
 
309
+ #: includes/functions/functions.php:974 includes/functions/functions.php:977
310
  msgid "Range"
311
  msgstr "範囲"
312
 
313
+ #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
314
  msgid "MM/DD/YYYY"
315
  msgstr "MM/DD/YYYY"
316
 
354
  msgid "Last 7 Days (Week)"
355
  msgstr "最近の7日間 (1週間)"
356
 
357
+ #: includes/functions/functions.php:405
358
  msgid "Yahoo!"
359
  msgstr "Yahoo!"
360
 
361
+ #: includes/functions/functions.php:406
362
  msgid "Yandex"
363
  msgstr "Yandex"
364
 
365
+ #: includes/functions/functions.php:402
366
  msgid "clearch.org"
367
  msgstr "clearch.org"
368
 
369
+ #: includes/functions/functions.php:403
370
  msgid "DuckDuckGo"
371
  msgstr "DuckDuckGo"
372
 
373
+ #: includes/functions/functions.php:401
374
  msgid "Bing"
375
  msgstr "Bing"
376
 
377
+ #: includes/functions/functions.php:400
378
  msgid "Baidu"
379
  msgstr "百度"
380
 
477
  msgstr "それぞれの訪問について複数のヒットを考慮する。現在値は%s。"
478
 
479
  #: includes/settings/tabs/wps-general.php:177
480
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
481
+ #: wp-statistics.php:431
482
  msgid "Pages"
483
  msgstr "ページ"
484
 
562
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
563
  msgstr "検索エンジンへの参照のように、複数の値を持つチャートについて全行を追加します。"
564
 
565
+ #: includes/settings/tabs/wps-externals.php:32
566
  msgid "GeoIP settings"
567
  msgstr "GeoIPの設定"
568
 
569
+ #: includes/settings/tabs/wps-externals.php:37
570
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
571
  msgstr "MaxMindによって作成されたGeoLite2データによって提供されるIPロケーションサービス, %sから入手可能"
572
 
573
+ #: includes/settings/tabs/wps-externals.php:47
574
  msgid "GeoIP collection"
575
  msgstr "GeoIPコレクション"
576
 
577
+ #: includes/settings/tabs/wps-externals.php:53
578
  msgid "For get more information and location (country) from visitor, enable this feature."
579
  msgstr "訪問者からより多くの情報と場所(国)を取得するために、この機能を有効にしてください。"
580
 
581
+ #: includes/settings/tabs/wps-externals.php:59
582
  msgid "Update GeoIP Info"
583
  msgstr "GeoIP情報を更新"
584
 
585
+ #: includes/settings/tabs/wps-externals.php:64
586
  msgid "Download GeoIP Database"
587
  msgstr "GeoIPデータベースをダウンロード"
588
 
589
+ #: includes/settings/tabs/wps-externals.php:71
590
  msgid "Schedule monthly update of GeoIP DB"
591
  msgstr "GeoIP DBの毎月更新をスケジュールします"
592
 
593
+ #: includes/settings/tabs/wps-externals.php:97
594
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
595
  msgstr "GeoIPデータベースのダウンロードは月の最初の火曜日の2日後にスケジュールされます。"
596
 
597
+ #: includes/settings/tabs/wps-externals.php:98
598
  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)."
599
  msgstr "このオプションは、ローカルのファイルサイズが1K以下である場合(これは通常プラグイン付属のスタブが所定の位置にまだあることを意味します)にもデータベースをダウンロードします。"
600
 
601
+ #: includes/settings/tabs/wps-externals.php:104
602
  msgid "Populate missing GeoIP after update of GeoIP DB"
603
  msgstr "GeoIP DBの更新後に不足のGeoIPを移入します。"
604
 
605
+ #: includes/settings/tabs/wps-externals.php:110
606
  msgid "Update any missing GeoIP data after downloading a new database."
607
  msgstr "新しいデータベースをダウンロードした後、不足のGeoIPデータを更新します。"
608
 
609
+ #: includes/settings/tabs/wps-externals.php:116
610
  msgid "Country code for private IP addresses"
611
  msgstr "プライベートIPアドレスの国コード"
612
 
613
+ #: includes/settings/tabs/wps-externals.php:121
614
  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."
615
  msgstr "(ルーティング不可の)プライベートIPアドレス(すなわち10.0.0.1, 192.158.1.1, 127.0.0.1など)に使う国際標準2文字国コード(すなわちUS = 米国、CA = カナダなど)。国コードとして”Unknown”を使用するには、\"000\"(ゼロ3つ)を使用します。"
616
 
617
+ #: includes/settings/tabs/wps-externals.php:132
618
  msgid "GeoIP collection is disabled due to the following reasons:"
619
  msgstr "GeoIPコレクションは、以下の理由により無効になっています:"
620
 
621
+ #: includes/settings/tabs/wps-externals.php:135
622
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
623
  msgstr "GeoIPコレクションは、PHP %s かそれ以降が必要です。インストールされているPHPのバージョンのため現在無効になっています。"
624
 
625
+ #: includes/settings/tabs/wps-externals.php:140
626
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
627
  msgstr "GeoIPコレクションには、cURL PHP拡張モジュールが必要ですが、あなたがお使いのPHPにはロードされていません!"
628
 
629
+ #: includes/settings/tabs/wps-externals.php:146
630
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
631
  msgstr "GeoIPコレクションにはBC Math PHP拡張モジュールが必要ですが、あなたがお使いのPHPにはロードされていません!"
632
 
633
+ #: includes/settings/tabs/wps-externals.php:152
634
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
635
  msgstr "PHPセーフモードが検出されました! GeoIPコレクションはセーフモードが有効なPHPをサポートしません!"
636
 
690
 
691
  #: includes/log/exclusions.php:24
692
  #: includes/settings/tabs/wps-notifications.php:76
 
693
  msgid "GeoIP"
694
  msgstr "GeoIP"
695
 
714
  msgstr "プラグインを更新するたびにレポートを送信します。"
715
 
716
  #: includes/settings/tabs/wps-notifications.php:111
717
+ #: includes/settings/tabs/wps-notifications.php:116 schedule.php:221
718
  msgid "Statistical reporting"
719
  msgstr "統計レポート"
720
 
763
  msgstr "WP Statisticsのためのショートコード(使用可能なコードのリストについては、管理マニュアルを参照してください)全てを含む、インストールされているWordPressでサポートされている全てのショートコードが、メッセージの本文でサポートされています ​​。ここではいくつかの例を示します。"
764
 
765
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
766
+ #: widget.php:245 wp-statistics.php:536
767
  msgid "User Online"
768
  msgstr "オンラインユーザー"
769
 
806
  msgstr "統計概要"
807
 
808
  #: includes/settings/tabs/wps-overview-display.php:28
809
+ #: includes/settings/wps-settings.php:108
810
  msgid "About"
811
  msgstr "約"
812
 
856
  msgid "Map type"
857
  msgstr "マップタイプ"
858
 
859
+ #: includes/functions/functions.php:404
860
  #: includes/settings/tabs/wps-overview-display.php:128
861
  msgid "Google"
862
  msgstr "グーグル"
966
  msgid "Remove data and settings, this action cannot be undone."
967
  msgstr "データと設定を削除し、このアクションは元に戻すことはできません。"
968
 
969
+ #: includes/settings/wps-settings.php:100
970
  msgid "General"
971
  msgstr "一般"
972
 
973
+ #: includes/settings/wps-settings.php:101
974
  msgid "Notifications"
975
  msgstr "お知らせ"
976
 
977
+ #: includes/settings/wps-settings.php:102
978
  msgid "Dashboard/Overview"
979
  msgstr "ダッシュボード/概要"
980
 
981
+ #: includes/settings/wps-settings.php:106
 
 
 
 
982
  msgid "Maintenance"
983
  msgstr "保守"
984
 
985
+ #: includes/settings/wps-settings.php:107
986
  msgid "Removal"
987
  msgstr "削除"
988
 
989
  #: includes/settings/tabs/wps-access-level.php:85
 
990
  #: includes/settings/tabs/wps-exclusions.php:234
991
+ #: includes/settings/tabs/wps-externals.php:284
992
  #: includes/settings/tabs/wps-general.php:349
 
993
  #: includes/settings/tabs/wps-maintenance.php:84
994
  #: includes/settings/tabs/wps-notifications.php:201
995
  #: includes/settings/tabs/wps-overview-display.php:388
1009
  msgid "Once Every 4 Weeks"
1010
  msgstr "4週間毎に1回"
1011
 
1012
+ #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
1013
  msgid "Statistics"
1014
  msgstr "統計"
1015
 
1081
  msgid "Items"
1082
  msgstr "アイテム"
1083
 
1084
+ #: widget.php:254 wp-statistics.php:561
1085
  msgid "Yesterday visit"
1086
  msgstr "昨日の訪問数"
1087
 
1109
  msgid "WP Statistics has been removed, please disable and delete it."
1110
  msgstr "WP Statisticsは削除されています。無効にして削除してください。"
1111
 
1112
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1113
  #. Plugin Name of the plugin/theme
1114
  #: wp-statistics.php:37
1115
  msgid "WP Statistics"
1116
  msgstr "WP Statistics"
1117
 
1118
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1119
  #. Description of the plugin/theme
1120
  #: wp-statistics.php:38
1121
  msgid "Complete statistics for your WordPress site."
1145
  msgid "Setting page > GeoIP"
1146
  msgstr "設定ページ > GeoIP"
1147
 
1148
+ #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
1149
  msgid "Settings"
1150
  msgstr "設定"
1151
 
1152
+ #: wp-statistics.php:265
1153
  msgid "Click here to visit the plugin on WordPress.org"
1154
  msgstr "ここをクリックして、WordPress.orgのプラグインを訪問してください"
1155
 
1156
+ #: wp-statistics.php:265
1157
  msgid "Visit WordPress.org page"
1158
  msgstr "WordPress.orgページを訪問します"
1159
 
1160
+ #: wp-statistics.php:268
1161
  msgid "Click here to rate and review this plugin on WordPress.org"
1162
  msgstr "ここをクリックして、WordPress.orgでこのプラグインの評価とレビューをしてください。"
1163
 
1164
+ #: wp-statistics.php:268
1165
  msgid "Rate this plugin"
1166
  msgstr "このプラグインを評価する"
1167
 
1168
+ #: wp-statistics.php:312
1169
  msgid "WP Statistics - Hits"
1170
  msgstr "WP Statistics - ヒット"
1171
 
1172
+ #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
1173
  msgid "Overview"
1174
  msgstr "概要"
1175
 
1176
+ #: wp-statistics.php:354 wp-statistics.php:430
1177
  msgid "Online"
1178
  msgstr "オンライン"
1179
 
1180
+ #: wp-statistics.php:356 wp-statistics.php:432
1181
  msgid "Referrers"
1182
  msgstr "参照元"
1183
 
1184
+ #: shortcode.php:135 wp-statistics.php:357 wp-statistics.php:433
1185
  msgid "Searches"
1186
  msgstr "検索"
1187
 
1188
+ #: wp-statistics.php:358 wp-statistics.php:434
1189
  msgid "Search Words"
1190
  msgstr "検索ワード"
1191
 
1192
+ #: wp-statistics.php:359 wp-statistics.php:435
1193
  msgid "Top Visitors Today"
1194
  msgstr "今日のトップ訪問者"
1195
 
1196
+ #: wp-statistics.php:364 wp-statistics.php:437
1197
  msgid "Optimization"
1198
  msgstr "最適化"
1199
 
1200
+ #: wp-statistics.php:370 wp-statistics.php:401
1201
  msgid "Manual"
1202
  msgstr "マニュアル"
1203
 
1204
+ #: wp-statistics.php:416
1205
  msgid "Site"
1206
  msgstr "サイト"
1207
 
1208
+ #: wp-statistics.php:417
1209
  msgid "Options"
1210
  msgstr "オプション"
1211
 
1212
+ #: wp-statistics.php:543
1213
  msgid "Today visitor"
1214
  msgstr "今日の訪問者"
1215
 
1216
+ #: wp-statistics.php:549
1217
  msgid "Today visit"
1218
  msgstr "今日の訪問"
1219
 
1220
+ #: wp-statistics.php:555
1221
  msgid "Yesterday visitor"
1222
  msgstr "昨日の訪問者"
1223
 
1224
+ #: wp-statistics.php:567
1225
  msgid "View Stats"
1226
  msgstr "統計を見る"
1227
 
1228
+ #: wp-statistics.php:591
1229
  msgid "Download ODF file"
1230
  msgstr "ODFファイルをダウンロード"
1231
 
1232
+ #: wp-statistics.php:592
1233
  msgid "Download HTML file"
1234
  msgstr "HTMLファイルをダウンロード"
1235
 
1236
+ #: wp-statistics.php:596
1237
  msgid "Manual file not found."
1238
  msgstr "マニュアルファイルが見つかりません。"
1239
 
1240
+ #: wp-statistics.php:663 wp-statistics.php:770 wp-statistics.php:804
1241
  msgid "You do not have sufficient permissions to access this page."
1242
  msgstr "あなたがこのページにアクセスするための十分な権限がありません。"
1243
 
1245
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
1246
  msgstr "プラグインのテーブルがデータベースに存在しません! %sを再実行してルーチン%sをインストールしてください。"
1247
 
1248
+ #: wp-statistics.php:241
1249
  msgid "WP Statistics %s installed on"
1250
  msgstr "WPの統計は、%s上に設置されています"
1251
 
1293
  msgid "Browscap.ini update on"
1294
  msgstr "Browscap.ini更新"
1295
 
1296
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1297
  #. Plugin URI of the plugin/theme
1298
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1299
  #. Author URI of the plugin/theme
1300
  msgid "http://wp-statistics.com/"
1301
  msgstr "http://wp-statistics.com/"
1422
  msgstr "クリックして切り替えます"
1423
 
1424
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1425
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
1426
+ #: wp-statistics.php:426
1427
  msgid "Browsers"
1428
  msgstr "ブラウザ"
1429
 
1452
  msgid "Exclusions Statistics"
1453
  msgstr "除外統計"
1454
 
1455
+ #: includes/functions/functions.php:931
1456
  msgid "10 Days"
1457
  msgstr "10日"
1458
 
1459
+ #: includes/functions/functions.php:931
1460
  msgid "20 Days"
1461
  msgstr "20日"
1462
 
1463
+ #: includes/functions/functions.php:931
1464
  msgid "30 Days"
1465
  msgstr "30日"
1466
 
1467
+ #: includes/functions/functions.php:931
1468
  msgid "2 Months"
1469
  msgstr "2ヶ月"
1470
 
1471
+ #: includes/functions/functions.php:931
1472
  msgid "3 Months"
1473
  msgstr "3ヶ月"
1474
 
1475
+ #: includes/functions/functions.php:931
1476
  msgid "6 Months"
1477
  msgstr "6ヶ月"
1478
 
1479
+ #: includes/functions/functions.php:931
1480
  msgid "9 Months"
1481
  msgstr "9ヶ月"
1482
 
1483
+ #: includes/functions/functions.php:931
1484
  msgid "1 Year"
1485
  msgstr "1年"
1486
 
1529
  msgid "Latest Search Word Statistics"
1530
  msgstr "最近の検索ワード統計"
1531
 
1532
+ #: includes/log/last-search.php:110 includes/log/last-visitor.php:101
1533
  #: includes/log/online.php:50 includes/log/widgets/google.map.php:84
1534
  #: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
1535
+ #: includes/log/widgets/words.php:46
1536
  msgid "#hash#"
1537
  msgstr "#ハッシュ#"
1538
 
1539
+ #: includes/log/last-search.php:115 includes/log/last-visitor.php:106
1540
  #: includes/log/online.php:55 includes/log/top-referring.php:71
1541
+ #: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
1542
  #: includes/settings/tabs/wps-overview-display.php:33
1543
  #: includes/settings/tabs/wps-overview-display.php:113
1544
  msgid "Map"
1545
  msgstr "マップ"
1546
 
1547
+ #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1548
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1549
  #: includes/log/top-referring.php:125
1550
  msgid "Page"
1551
  msgstr "ページ"
1552
 
1553
+ #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1554
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1555
  #: includes/log/top-referring.php:125
1556
  msgid "From"
1739
  msgstr "時間: %sの"
1740
 
1741
  #: includes/log/widgets/top.visitors.php:31
1742
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
1743
+ #: wp-statistics.php:353 wp-statistics.php:429
1744
  msgid "Hits"
1745
  msgstr "ヒット数"
1746
 
1782
  msgid "No platform data found to remove!"
1783
  msgstr "削除すべきプラットフォームのデータはありません!"
1784
 
1785
+ #: includes/functions/functions.php:1019
1786
  msgid "%s table data deleted successfully."
1787
  msgstr "%sのテーブルデータが正常に削除されました。"
1788
 
1789
+ #: includes/functions/functions.php:1023
1790
  msgid "Error, %s not emptied!"
1791
  msgstr "エラー %sが空ではありません!"
1792
 
1812
 
1813
  #: includes/optimization/tabs/wps-optimization-database.php:25
1814
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1815
+ #: wp-statistics.php:351 wp-statistics.php:427
1816
  msgid "Countries"
1817
  msgstr "国"
1818
 
1828
  msgstr "古いWP Statisticsは境界ケースで訪問者テーブルに重複エントリを許容します。新しいものは、テーブルの一意索引によりこれを防止します。古いものに索引を作成するには、最初に重複したエントリを削除する必要があります。\"今すぐ更新\"をクリックすると、訪問者テーブルをスキャンし、重複したエントリを削除し、索引を追加します。"
1829
 
1830
  #: includes/optimization/tabs/wps-optimization-database.php:41
1831
+ #: includes/optimization/tabs/wps-optimization-database.php:102
1832
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1833
  msgstr "訪問者テーブルに多くの行がある場合、この操作によりインストールに長い時間がかかることがあります。"
1834
 
1838
 
1839
  #: includes/optimization/tabs/wps-optimization-database.php:47
1840
  #: includes/optimization/tabs/wps-optimization-database.php:77
1841
+ #: includes/optimization/tabs/wps-optimization-database.php:108
1842
  msgid "Congratulations, your installation is already up to date, nothing to do."
1843
  msgstr "おめでとうございます、あなたのインストールは既に最新になり、すべきことは何もありません。"
1844
 
1845
  #: includes/optimization/tabs/wps-optimization-export.php:8
1846
+ #: includes/optimization/wps-optimization.php:212
1847
  msgid "Export"
1848
  msgstr "エクスポート"
1849
 
1896
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1897
  #: includes/settings/tabs/wps-general.php:138
1898
  #: includes/settings/tabs/wps-general.php:143 shortcode.php:133
1899
+ #: wp-statistics.php:360 wp-statistics.php:436
1900
  msgid "Visitors"
1901
  msgstr "訪問者"
1902
 
2211
  msgid "Install routine complete."
2212
  msgstr "イ​​ンストールルーチンが完了しました。"
2213
 
2214
+ #: includes/optimization/wps-optimization.php:211
2215
  msgid "Resources/Information"
2216
  msgstr "リソース/情報"
2217
 
2218
+ #: includes/optimization/wps-optimization.php:213
2219
  msgid "Purging"
2220
  msgstr "削除"
2221
 
2222
+ #: includes/optimization/wps-optimization.php:214
2223
  msgid "Database"
2224
  msgstr "データベース"
2225
 
2226
+ #: includes/optimization/wps-optimization.php:215
2227
  msgid "Updates"
2228
  msgstr "更新"
2229
 
2230
+ #: includes/optimization/wps-optimization.php:216
2231
  msgid "Historical"
2232
  msgstr "履歴"
2233
 
2377
  msgstr "これはWP Statisticsで利用するハニーポットです。削除しないでください。"
2378
 
2379
  #: includes/settings/tabs/wps-access-level.php:23
2380
+ #: includes/settings/wps-settings.php:103
2381
  msgid "Access Levels"
2382
  msgstr "アクセスレベル"
2383
 
2410
  msgstr "あなたがアクセス権を委任するより堅牢なソリューションが必要な場合は、WordPressのプラグインディレクトリ内の%sで見たいと思うかもしれません。"
2411
 
2412
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2413
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:352
2414
+ #: wp-statistics.php:428
2415
  msgid "Exclusions"
2416
  msgstr "除外"
2417
 
2582
  msgid "Exclude the RSS feeds for registering as a hit."
2583
  msgstr "RSSフィードをヒットの登録から除外します。"
2584
 
2585
+ #: includes/settings/tabs/wps-externals.php:162
2586
  msgid "browscap settings"
2587
  msgstr "browscap設定"
2588
 
2589
+ #: includes/settings/tabs/wps-externals.php:167
2590
  msgid "browscap usage"
2591
  msgstr "browscap利用"
2592
 
2593
+ #: includes/settings/tabs/wps-externals.php:52
2594
+ #: includes/settings/tabs/wps-externals.php:76
2595
+ #: includes/settings/tabs/wps-externals.php:109
2596
+ #: includes/settings/tabs/wps-externals.php:172
2597
+ #: includes/settings/tabs/wps-externals.php:196
2598
+ #: includes/settings/tabs/wps-externals.php:235
2599
+ #: includes/settings/tabs/wps-externals.php:259
2600
  #: includes/settings/tabs/wps-general.php:76
2601
  #: includes/settings/tabs/wps-general.php:92
2602
  #: includes/settings/tabs/wps-general.php:116
2612
  #: includes/settings/tabs/wps-general.php:286
2613
  #: includes/settings/tabs/wps-general.php:325
2614
  #: includes/settings/tabs/wps-general.php:341
 
 
 
2615
  #: includes/settings/tabs/wps-maintenance.php:40
2616
  #: includes/settings/tabs/wps-maintenance.php:64
2617
  #: includes/settings/tabs/wps-notifications.php:69
2626
  msgid "Active"
2627
  msgstr "有効"
2628
 
2629
+ #: includes/settings/tabs/wps-externals.php:173
2630
  msgid "The browscap database will be downloaded and used to detect robots."
2631
  msgstr "browscapデータベースがダウンロードされ、ロボットを検出するために使用されます。"
2632
 
2633
+ #: includes/settings/tabs/wps-externals.php:179
2634
  msgid "Update browscap Info"
2635
  msgstr "browscap情報を更新"
2636
 
2637
+ #: includes/settings/tabs/wps-externals.php:184
2638
  msgid "Download browscap Database"
2639
  msgstr "browscapデータベースのダウンロード"
2640
 
2641
+ #: includes/settings/tabs/wps-externals.php:65
2642
+ #: includes/settings/tabs/wps-externals.php:185
2643
+ #: includes/settings/tabs/wps-externals.php:248
2644
  msgid "Save changes on this page to download the update."
2645
  msgstr "更新をダウンロードするには、このページの変更を保存します。"
2646
 
2647
+ #: includes/settings/tabs/wps-externals.php:191
2648
  msgid "Schedule weekly update of browscap DB"
2649
  msgstr "browscap DBを毎週更新する"
2650
 
2651
+ #: includes/settings/tabs/wps-externals.php:79
2652
+ #: includes/settings/tabs/wps-externals.php:199
2653
+ #: includes/settings/tabs/wps-externals.php:262
2654
  msgid "Next update will be"
2655
  msgstr "次の更新は"
2656
 
2657
+ #: includes/settings/tabs/wps-externals.php:214
2658
  msgid "Download of the browscap database will be scheduled for once a week."
2659
  msgstr "browscapデータベースのダウンロードが、毎週一回にスケジュールされます。"
2660
 
languages/wp_statistics-nl_NL.mo CHANGED
Binary file
languages/wp_statistics-nl_NL.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2015-05-22 14:51:56+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -10,33 +10,97 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  #: includes/settings/tabs/wps-exclusions.php:148
14
  msgid "Treat corrupt browser info as a bot"
15
- msgstr ""
16
 
17
  #: includes/log/exclusions.php:24
18
  msgid "404 Pages"
19
- msgstr ""
20
 
21
  #: includes/log/top-visitors.php:26
22
  msgid "Date"
23
- msgstr ""
24
 
25
  #: includes/settings/tabs/wps-exclusions.php:151
26
  msgid "Treat any visitor with corrupt browser info (missing IP address or empty user agent string) as a robot."
27
- msgstr ""
28
 
29
  #: includes/settings/tabs/wps-exclusions.php:215
30
  msgid "Excluded 404 pages"
31
- msgstr ""
32
 
33
  #: includes/settings/tabs/wps-exclusions.php:218
34
  msgid "Exclude any URL that returns a \"404 - Not Found\" message."
35
- msgstr ""
36
 
37
  #: wps-updates.php:29
38
  msgid "Error creating GeoIP database directory, make sure your web server has permissions to create directories in : %s"
39
- msgstr ""
40
 
41
  #: includes/settings/tabs/wps-general.php:281
42
  msgid "Add page title to empty search words"
@@ -44,11 +108,11 @@ msgstr "Voeg paginatitel toe om zoekwoorden te verwijderen"
44
 
45
  #: includes/settings/tabs/wps-general.php:287
46
  msgid "If a search engine is identified as the referrer but it does not include the search query this option will substitute the page title in quotes preceded by \"~:\" as the search query to help identify what the user may have been searching for."
47
- msgstr ""
48
 
49
  #: includes/settings/tabs/wps-maintenance.php:77
50
  msgid "The number of hits required to delete the visitor. Invalid values will disable the daily maintenance (must be 10 or greater)."
51
- msgstr ""
52
 
53
  #: includes/settings/tabs/wps-maintenance.php:71
54
  msgid "Prune visitors with more than"
@@ -56,7 +120,7 @@ msgstr "Opschonen bezoekers met meer dan"
56
 
57
  #: includes/settings/tabs/wps-maintenance.php:65
58
  msgid "A WP Cron job will be run daily to prune any users statistics data where the user has more than the defined number of hits in a day (aka they are probably a bot)."
59
- msgstr ""
60
 
61
  #: includes/optimization/tabs/wps-optimization-purging.php:217
62
  msgid "Purge visitors with more than"
@@ -68,7 +132,7 @@ msgstr "hits"
68
 
69
  #: includes/optimization/tabs/wps-optimization-purging.php:223
70
  msgid "Deleted user statistics data where the user has more than the defined number of hits in a day. This can be useful to clear up old data when your site has been hit by a bot. This will remove the visitor and their hits to the site, however it will not remove individual page hits as that data is not recorded on a per use basis. Minimum value is 10 hits."
71
- msgstr ""
72
 
73
  #: includes/functions/purge-hits.php:28
74
  msgid "No visitors found to purge."
@@ -88,11 +152,11 @@ msgstr "Paginabezoeken"
88
 
89
  #: shortcode.php:137
90
  msgid "Page Count"
91
- msgstr ""
92
 
93
  #: shortcode.php:138
94
  msgid "Comment Count"
95
- msgstr ""
96
 
97
  #: shortcode.php:139
98
  msgid "Spam Count"
@@ -100,23 +164,23 @@ msgstr "Spam aantal"
100
 
101
  #: shortcode.php:140
102
  msgid "User Count"
103
- msgstr ""
104
 
105
  #: shortcode.php:141
106
  msgid "Post Average"
107
- msgstr ""
108
 
109
  #: shortcode.php:142
110
  msgid "Comment Average"
111
- msgstr ""
112
 
113
  #: shortcode.php:143
114
  msgid "User Average"
115
- msgstr ""
116
 
117
  #: shortcode.php:151
118
  msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
119
- msgstr ""
120
 
121
  #: shortcode.php:155
122
  msgid "Search Provider"
@@ -124,7 +188,7 @@ msgstr "Zoekmachine"
124
 
125
  #: shortcode.php:158
126
  msgid "The search provider to get statistics on."
127
- msgstr ""
128
 
129
  #: shortcode.php:162
130
  msgid "Number Format"
@@ -158,13 +222,13 @@ msgstr "Alles"
158
  msgid "Have you thought about donating to WP Statistics?"
159
  msgstr "Heb je nagedacht om te doneren aan WP Statistics?"
160
 
161
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:362
162
  msgid "Donate"
163
  msgstr "Doneren"
164
 
165
  #: includes/settings/tabs/wps-about.php:24
166
  msgid "Fell like showing us how much you enjoy WP Statistics? Drop by our %s page and show us some love!"
167
- msgstr ""
168
 
169
  #: includes/settings/tabs/wps-about.php:24
170
  msgid "donation"
@@ -184,21 +248,21 @@ msgstr "Selecteer de statistiek die u wilt weergeven."
184
 
185
  #: shortcode.php:125
186
  msgid "Statistic"
187
- msgstr ""
188
 
189
  #: shortcode.php:136
190
  msgid "Post Count"
191
- msgstr ""
192
 
193
  #: shortcode.php:148
194
  msgid "Time Frame"
195
- msgstr ""
196
 
197
- #: includes/functions/functions.php:929
198
  msgid "to"
199
  msgstr "naar"
200
 
201
- #: includes/functions/functions.php:929 includes/log/top-visitors.php:29
202
  msgid "Go"
203
  msgstr "Ga"
204
 
@@ -242,11 +306,11 @@ msgstr "Oudere installaties van WP-statistics staan in sommige gevallen dubbele
242
  msgid "Filtered by"
243
  msgstr "Gefilterd op"
244
 
245
- #: includes/functions/functions.php:922 includes/functions/functions.php:925
246
  msgid "Range"
247
  msgstr "Reeks"
248
 
249
- #: includes/functions/functions.php:929 includes/log/top-visitors.php:29
250
  msgid "MM/DD/YYYY"
251
  msgstr "MM/DD/YYYY"
252
 
@@ -290,27 +354,27 @@ msgstr "Laatste 30 dagen (maand)"
290
  msgid "Last 7 Days (Week)"
291
  msgstr "Laatste 7 dagen (week)"
292
 
293
- #: includes/functions/functions.php:403
294
  msgid "Yahoo!"
295
  msgstr "Yahoo!"
296
 
297
- #: includes/functions/functions.php:404
298
  msgid "Yandex"
299
  msgstr "Yandex"
300
 
301
- #: includes/functions/functions.php:400
302
  msgid "clearch.org"
303
  msgstr "clearch.org"
304
 
305
- #: includes/functions/functions.php:401
306
  msgid "DuckDuckGo"
307
  msgstr "DuckDuckGo"
308
 
309
- #: includes/functions/functions.php:399
310
  msgid "Bing"
311
  msgstr "Bing"
312
 
313
- #: includes/functions/functions.php:398
314
  msgid "Baidu"
315
  msgstr "Baidu"
316
 
@@ -413,8 +477,8 @@ msgid "For each visit to account for several hits. Currently %s."
413
  msgstr "Voor elk bezoek meerdere hits tellen. Momenteel %s."
414
 
415
  #: includes/settings/tabs/wps-general.php:177
416
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:351
417
- #: wp-statistics.php:427
418
  msgid "Pages"
419
  msgstr "Pagina 's"
420
 
@@ -498,75 +562,75 @@ msgstr "Totalen opnemen"
498
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
499
  msgstr "Een totale lijn met meerdere waarden toevoegen aan grafieken, zoals de verwijzingen van de zoekmachine"
500
 
501
- #: includes/settings/tabs/wps-geoip.php:27
502
  msgid "GeoIP settings"
503
  msgstr "GeoIP instellingen"
504
 
505
- #: includes/settings/tabs/wps-geoip.php:32
506
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
507
  msgstr "IP-locatie diensten van GeoLite2-data (door MaxMind), zijn beschikbaar op %s."
508
 
509
- #: includes/settings/tabs/wps-geoip.php:42
510
  msgid "GeoIP collection"
511
  msgstr "GeoIP-collectie"
512
 
513
- #: includes/settings/tabs/wps-geoip.php:48
514
  msgid "For get more information and location (country) from visitor, enable this feature."
515
  msgstr "Deze functie inschakelen om meer informatie over de bezoeker en locatie (land) te krijgen."
516
 
517
- #: includes/settings/tabs/wps-geoip.php:54
518
  msgid "Update GeoIP Info"
519
  msgstr "GeoIP Info bijwerken"
520
 
521
- #: includes/settings/tabs/wps-geoip.php:59
522
  msgid "Download GeoIP Database"
523
  msgstr "GeoIP-Database downloaden"
524
 
525
- #: includes/settings/tabs/wps-geoip.php:66
526
  msgid "Schedule monthly update of GeoIP DB"
527
  msgstr "Maandelijkse update voor GeoIP DB plannen"
528
 
529
- #: includes/settings/tabs/wps-geoip.php:92
530
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
531
  msgstr "Downloaden van de GeoIP-database zal worden gepland voor 2 dagen na de eerste dinsdag van de maand."
532
 
533
- #: includes/settings/tabs/wps-geoip.php:93
534
  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)."
535
  msgstr "Deze optie zal de database ook downloaden als de lokale bestandsgrootte minder dan 1k is (wat meestal betekent de stub die wordt geleverd met de plugin is nog steeds in plaats)."
536
 
537
- #: includes/settings/tabs/wps-geoip.php:99
538
  msgid "Populate missing GeoIP after update of GeoIP DB"
539
  msgstr "Ontbrekende GeoIP vullen na actualisering van GeoIP DB"
540
 
541
- #: includes/settings/tabs/wps-geoip.php:105
542
  msgid "Update any missing GeoIP data after downloading a new database."
543
  msgstr "Eventuele ontbrekende GeoIP gegevens bijwerken na het downloaden van een nieuwe database."
544
 
545
- #: includes/settings/tabs/wps-geoip.php:111
546
  msgid "Country code for private IP addresses"
547
  msgstr "Landcode voor privé IP-adressen"
548
 
549
- #: includes/settings/tabs/wps-geoip.php:116
550
  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."
551
  msgstr "De internationale standaard tweeletterige landcode (bijv. US = Verenigde Staten, CA = Canada, enz.) Voor de privé (niet-routeerbare) IP-adressen (bijv. 10.0.0.1, 192.158.1.1, 127.0.0.1, etc.). Gebruik \"000\" (drie nullen) om \"Onbekend\" als landcode te gebruiken."
552
 
553
- #: includes/settings/tabs/wps-geoip.php:127
554
  msgid "GeoIP collection is disabled due to the following reasons:"
555
  msgstr "GeoIP collectie is uitgeschakeld om de volgende redenen:"
556
 
557
- #: includes/settings/tabs/wps-geoip.php:130
558
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
559
  msgstr "GeoIP collectie vereist PHP %s of boven, is het momenteel uitgeschakeld als gevolg van de geïnstalleerde PHP versie wordt "
560
 
561
- #: includes/settings/tabs/wps-geoip.php:135
562
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
563
  msgstr "GeoIP collectie vereist de PHP cURL-extentie en het is niet geladen op uw versie van PHP!"
564
 
565
- #: includes/settings/tabs/wps-geoip.php:141
566
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
567
  msgstr "GeoIP collectie vereist de BC Math PHP-extensie en deze is niet beschikbaar in uw PHP-versie!"
568
 
569
- #: includes/settings/tabs/wps-geoip.php:147
570
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
571
  msgstr "PHP veilige modus gedetecteerd! GeoIP-collectie wordt niet ondersteund met PHP veilige modus ingeschakeld!"
572
 
@@ -626,7 +690,6 @@ msgstr "Stuur een bericht wanneer de Browscap.ini is bijgewerkt."
626
 
627
  #: includes/log/exclusions.php:24
628
  #: includes/settings/tabs/wps-notifications.php:76
629
- #: includes/settings/wps-settings.php:111
630
  msgid "GeoIP"
631
  msgstr "GeoIP"
632
 
@@ -651,7 +714,7 @@ msgid "Send a report whenever the plugin is upgraded."
651
  msgstr "Stuur een bericht wanneer de plug-in is bijgewerkt."
652
 
653
  #: includes/settings/tabs/wps-notifications.php:111
654
- #: includes/settings/tabs/wps-notifications.php:116 schedule.php:199
655
  msgid "Statistical reporting"
656
  msgstr "Statistieken rapportage"
657
 
@@ -700,7 +763,7 @@ msgid "Any shortcode supported by your installation of WordPress, include all sh
700
  msgstr "Elke shortcode die ondersteund worden door uw WordPress-installatie, inclusief alle shortcodes van WP Statistics (zie de beheerdershandleiding voor een lijst van beschikbare codes) wordt ondersteund in de inhoud van het bericht. Hier zijn enkele voorbeelden:"
701
 
702
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
703
- #: widget.php:245 wp-statistics.php:532
704
  msgid "User Online"
705
  msgstr "Gebruiker Online"
706
 
@@ -743,7 +806,7 @@ msgid "Summary Statistics"
743
  msgstr "Samenvatting van de statistieken"
744
 
745
  #: includes/settings/tabs/wps-overview-display.php:28
746
- #: includes/settings/wps-settings.php:115
747
  msgid "About"
748
  msgstr "Over"
749
 
@@ -793,7 +856,7 @@ msgstr "Uitschakelen van de pagina/bericht-bewerker widget."
793
  msgid "Map type"
794
  msgstr "Kaarttype"
795
 
796
- #: includes/functions/functions.php:402
797
  #: includes/settings/tabs/wps-overview-display.php:128
798
  msgid "Google"
799
  msgstr "Google"
@@ -903,35 +966,30 @@ msgstr "Verwijderen"
903
  msgid "Remove data and settings, this action cannot be undone."
904
  msgstr "Gegevens en instellingen verwijderen, deze actie kan niet ongedaan gemaakt worden."
905
 
906
- #: includes/settings/wps-settings.php:106
907
  msgid "General"
908
  msgstr "Algemeen"
909
 
910
- #: includes/settings/wps-settings.php:107
911
  msgid "Notifications"
912
  msgstr "Rapportage"
913
 
914
- #: includes/settings/wps-settings.php:108
915
  msgid "Dashboard/Overview"
916
  msgstr "Dashboard/overzicht"
917
 
918
- #: includes/settings/wps-settings.php:112
919
- msgid "browscap"
920
- msgstr "Browscap"
921
-
922
- #: includes/settings/wps-settings.php:113
923
  msgid "Maintenance"
924
  msgstr "Onderhoud"
925
 
926
- #: includes/settings/wps-settings.php:114
927
  msgid "Removal"
928
  msgstr "Verwijdering"
929
 
930
  #: includes/settings/tabs/wps-access-level.php:85
931
- #: includes/settings/tabs/wps-browscap.php:81
932
  #: includes/settings/tabs/wps-exclusions.php:234
 
933
  #: includes/settings/tabs/wps-general.php:349
934
- #: includes/settings/tabs/wps-geoip.php:158
935
  #: includes/settings/tabs/wps-maintenance.php:84
936
  #: includes/settings/tabs/wps-notifications.php:201
937
  #: includes/settings/tabs/wps-overview-display.php:388
@@ -951,7 +1009,7 @@ msgstr "Eenmaal per 2 weken"
951
  msgid "Once Every 4 Weeks"
952
  msgstr "Eenmaal per 4 weken"
953
 
954
- #: widget.php:14 wp-statistics.php:342 wp-statistics.php:380
955
  msgid "Statistics"
956
  msgstr "Statistieken"
957
 
@@ -1023,7 +1081,7 @@ msgstr "Naam"
1023
  msgid "Items"
1024
  msgstr "Artikelen"
1025
 
1026
- #: widget.php:254 wp-statistics.php:557
1027
  msgid "Yesterday visit"
1028
  msgstr "Bezoek gisteren"
1029
 
@@ -1051,13 +1109,13 @@ msgstr "Uw huidige PHP-versie is"
1051
  msgid "WP Statistics has been removed, please disable and delete it."
1052
  msgstr "WP CBS is verwijderd, u kunt het nu uitschakelen en verwijderen."
1053
 
1054
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1055
  #. Plugin Name of the plugin/theme
1056
  #: wp-statistics.php:37
1057
  msgid "WP Statistics"
1058
  msgstr "WP Statistics"
1059
 
1060
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1061
  #. Description of the plugin/theme
1062
  #: wp-statistics.php:38
1063
  msgid "Complete statistics for your WordPress site."
@@ -1087,99 +1145,99 @@ msgstr "GeoIP collectie is niet actief, ga naar %s en deze functie inschakelen."
1087
  msgid "Setting page > GeoIP"
1088
  msgstr "Instellingenpagina > GeoIP"
1089
 
1090
- #: wp-statistics.php:249 wp-statistics.php:361 wp-statistics.php:434
1091
  msgid "Settings"
1092
  msgstr "Instellingen"
1093
 
1094
- #: wp-statistics.php:261
1095
  msgid "Click here to visit the plugin on WordPress.org"
1096
  msgstr "Klik hier om naar de plug-in op WordPress.org te gaan"
1097
 
1098
- #: wp-statistics.php:261
1099
  msgid "Visit WordPress.org page"
1100
  msgstr "Bezoek WordPress.org pagina"
1101
 
1102
- #: wp-statistics.php:264
1103
  msgid "Click here to rate and review this plugin on WordPress.org"
1104
  msgstr "Klik hier om deze plug-in op WordPress.org te beoordelen en waardering te geven."
1105
 
1106
- #: wp-statistics.php:264
1107
  msgid "Rate this plugin"
1108
  msgstr "Waardeer deze plug-in"
1109
 
1110
- #: wp-statistics.php:308
1111
  msgid "WP Statistics - Hits"
1112
  msgstr "WP statistiek - Hits"
1113
 
1114
- #: wp-statistics.php:345 wp-statistics.php:383 wp-statistics.php:421
1115
  msgid "Overview"
1116
  msgstr "Overzicht"
1117
 
1118
- #: wp-statistics.php:350 wp-statistics.php:426
1119
  msgid "Online"
1120
  msgstr "Online"
1121
 
1122
- #: wp-statistics.php:352 wp-statistics.php:428
1123
  msgid "Referrers"
1124
  msgstr "Verwijzers"
1125
 
1126
- #: shortcode.php:135 wp-statistics.php:353 wp-statistics.php:429
1127
  msgid "Searches"
1128
  msgstr "Zoekopdrachten"
1129
 
1130
- #: wp-statistics.php:354 wp-statistics.php:430
1131
  msgid "Search Words"
1132
  msgstr "Zoekwoorden"
1133
 
1134
- #: wp-statistics.php:355 wp-statistics.php:431
1135
  msgid "Top Visitors Today"
1136
  msgstr "Topbezoekers vandaag"
1137
 
1138
- #: wp-statistics.php:360 wp-statistics.php:433
1139
  msgid "Optimization"
1140
  msgstr "Optimalisatie"
1141
 
1142
- #: wp-statistics.php:366 wp-statistics.php:397
1143
  msgid "Manual"
1144
  msgstr "Handleiding"
1145
 
1146
- #: wp-statistics.php:412
1147
  msgid "Site"
1148
  msgstr "Site"
1149
 
1150
- #: wp-statistics.php:413
1151
  msgid "Options"
1152
  msgstr "Opties"
1153
 
1154
- #: wp-statistics.php:539
1155
  msgid "Today visitor"
1156
  msgstr "Bezoeker vandaag"
1157
 
1158
- #: wp-statistics.php:545
1159
  msgid "Today visit"
1160
  msgstr "Bezoek vandaag"
1161
 
1162
- #: wp-statistics.php:551
1163
  msgid "Yesterday visitor"
1164
  msgstr "Bezoeker gisteren"
1165
 
1166
- #: wp-statistics.php:563
1167
  msgid "View Stats"
1168
  msgstr "Weergave Statistieken"
1169
 
1170
- #: wp-statistics.php:587
1171
  msgid "Download ODF file"
1172
  msgstr "ODF bestand downloaden"
1173
 
1174
- #: wp-statistics.php:588
1175
  msgid "Download HTML file"
1176
  msgstr "Het HTML-bestand downloaden"
1177
 
1178
- #: wp-statistics.php:592
1179
  msgid "Manual file not found."
1180
  msgstr "Handleiding-bestand niet gevonden."
1181
 
1182
- #: wp-statistics.php:659 wp-statistics.php:770 wp-statistics.php:804
1183
  msgid "You do not have sufficient permissions to access this page."
1184
  msgstr "U hoeft niet voldoende rechten om deze pagina te openen."
1185
 
@@ -1187,7 +1245,7 @@ msgstr "U hoeft niet voldoende rechten om deze pagina te openen."
1187
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
1188
  msgstr "Plug-in tabellen bestaan ​​niet in de database! Gelieve opnieuw de %s installatie-routine %s te draaien."
1189
 
1190
- #: wp-statistics.php:237
1191
  msgid "WP Statistics %s installed on"
1192
  msgstr "WP Statistics%s geïnstalleerd op"
1193
 
@@ -1235,9 +1293,9 @@ msgstr "Browscap al op de huidige versie!"
1235
  msgid "Browscap.ini update on"
1236
  msgstr "Browscap.ini update over"
1237
 
1238
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1239
  #. Plugin URI of the plugin/theme
1240
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1241
  #. Author URI of the plugin/theme
1242
  msgid "http://wp-statistics.com/"
1243
  msgstr "http://WP-Statistics.com/"
@@ -1364,8 +1422,8 @@ msgid "Click to toggle"
1364
  msgstr "Klik hierop om te schakelen"
1365
 
1366
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1367
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:346
1368
- #: wp-statistics.php:422
1369
  msgid "Browsers"
1370
  msgstr "Browsers"
1371
 
@@ -1394,35 +1452,35 @@ msgstr "Let op: Uitsluitingen worden momenteel niet geregistreerd. Onderstaande
1394
  msgid "Exclusions Statistics"
1395
  msgstr "Statistieken uitsluitingen"
1396
 
1397
- #: includes/functions/functions.php:879
1398
  msgid "10 Days"
1399
  msgstr "10 dagen"
1400
 
1401
- #: includes/functions/functions.php:879
1402
  msgid "20 Days"
1403
  msgstr "20 dagen"
1404
 
1405
- #: includes/functions/functions.php:879
1406
  msgid "30 Days"
1407
  msgstr "30 dagen"
1408
 
1409
- #: includes/functions/functions.php:879
1410
  msgid "2 Months"
1411
  msgstr "2 maanden"
1412
 
1413
- #: includes/functions/functions.php:879
1414
  msgid "3 Months"
1415
  msgstr "3 maanden"
1416
 
1417
- #: includes/functions/functions.php:879
1418
  msgid "6 Months"
1419
  msgstr "6 maanden"
1420
 
1421
- #: includes/functions/functions.php:879
1422
  msgid "9 Months"
1423
  msgstr "9 maanden"
1424
 
1425
- #: includes/functions/functions.php:879
1426
  msgid "1 Year"
1427
  msgstr "1 jaar"
1428
 
@@ -1471,28 +1529,28 @@ msgstr "Bezoekers"
1471
  msgid "Latest Search Word Statistics"
1472
  msgstr "Laatste zoekwoorden statistieken"
1473
 
1474
- #: includes/log/last-search.php:100 includes/log/last-visitor.php:101
1475
  #: includes/log/online.php:50 includes/log/widgets/google.map.php:84
1476
  #: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
1477
- #: includes/log/widgets/words.php:36
1478
  msgid "#hash#"
1479
  msgstr "#hash #"
1480
 
1481
- #: includes/log/last-search.php:105 includes/log/last-visitor.php:106
1482
  #: includes/log/online.php:55 includes/log/top-referring.php:71
1483
- #: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:43
1484
  #: includes/settings/tabs/wps-overview-display.php:33
1485
  #: includes/settings/tabs/wps-overview-display.php:113
1486
  msgid "Map"
1487
  msgstr "Kaart"
1488
 
1489
- #: includes/log/last-search.php:142 includes/log/last-visitor.php:139
1490
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1491
  #: includes/log/top-referring.php:125
1492
  msgid "Page"
1493
  msgstr "Pagina"
1494
 
1495
- #: includes/log/last-search.php:142 includes/log/last-visitor.php:139
1496
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1497
  #: includes/log/top-referring.php:125
1498
  msgid "From"
@@ -1681,8 +1739,8 @@ msgid "Time: %s"
1681
  msgstr "Tijd: %s"
1682
 
1683
  #: includes/log/widgets/top.visitors.php:31
1684
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:273
1685
- #: wp-statistics.php:349 wp-statistics.php:425
1686
  msgid "Hits"
1687
  msgstr "Hits"
1688
 
@@ -1724,11 +1782,11 @@ msgstr "%s platform gegevens verwijderd."
1724
  msgid "No platform data found to remove!"
1725
  msgstr "Geen platform-gegevens gevonden om te verwijderen!"
1726
 
1727
- #: includes/functions/functions.php:967
1728
  msgid "%s table data deleted successfully."
1729
  msgstr "tabelgegevens %s succesvol verwijderd."
1730
 
1731
- #: includes/functions/functions.php:971
1732
  msgid "Error, %s not emptied!"
1733
  msgstr "Fout, %s niet leeggemaakt!"
1734
 
@@ -1754,7 +1812,7 @@ msgstr "Database Index"
1754
 
1755
  #: includes/optimization/tabs/wps-optimization-database.php:25
1756
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1757
- #: wp-statistics.php:347 wp-statistics.php:423
1758
  msgid "Countries"
1759
  msgstr "Landen"
1760
 
@@ -1770,6 +1828,7 @@ msgid "Older installs of WP Statistics allow for duplicate entries in the visito
1770
  msgstr "Oudere installaties van WP Statistics staan in sommige gevallen dubbele vermeldingen toe in de bezoekerstabel. Nieuwere installaties beschermen hiertegen met een unieke index in de tabel. Als u in de oudere installatie deze index wilt creëren, moeten eerst de dubbele vermeldingen worden verwijderd. Door op \"Update Now\" te klikken, wordt de bezoekerstabel gescand, dubbele vermeldingen verwijderd en de index toegevoegd."
1771
 
1772
  #: includes/optimization/tabs/wps-optimization-database.php:41
 
1773
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1774
  msgstr "Deze bewerking kan lang duren op installeert met vele rijen in de tabel van de bezoekers."
1775
 
@@ -1779,11 +1838,12 @@ msgstr "Oudere installaties van WP Statistics staan in sommige gevallen dubbele
1779
 
1780
  #: includes/optimization/tabs/wps-optimization-database.php:47
1781
  #: includes/optimization/tabs/wps-optimization-database.php:77
 
1782
  msgid "Congratulations, your installation is already up to date, nothing to do."
1783
  msgstr "Gefeliciteerd, is uw installatie al up-to-date. Er is hier niets te doen."
1784
 
1785
  #: includes/optimization/tabs/wps-optimization-export.php:8
1786
- #: includes/optimization/wps-optimization.php:183
1787
  msgid "Export"
1788
  msgstr "Exporteren"
1789
 
@@ -1836,7 +1896,7 @@ msgstr "Opmerking: Omdat de database net opgeschoond is, moet u deze pagina herl
1836
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1837
  #: includes/settings/tabs/wps-general.php:138
1838
  #: includes/settings/tabs/wps-general.php:143 shortcode.php:133
1839
- #: wp-statistics.php:356 wp-statistics.php:432
1840
  msgid "Visitors"
1841
  msgstr "Bezoekers"
1842
 
@@ -2151,23 +2211,23 @@ msgstr "IP-adressen vervangen met hash-waarden."
2151
  msgid "Install routine complete."
2152
  msgstr "Installeren volledige routine."
2153
 
2154
- #: includes/optimization/wps-optimization.php:182
2155
  msgid "Resources/Information"
2156
  msgstr "Middelen/informatie"
2157
 
2158
- #: includes/optimization/wps-optimization.php:184
2159
  msgid "Purging"
2160
  msgstr "Systeemaanpassingen"
2161
 
2162
- #: includes/optimization/wps-optimization.php:185
2163
  msgid "Database"
2164
  msgstr "Database"
2165
 
2166
- #: includes/optimization/wps-optimization.php:186
2167
  msgid "Updates"
2168
  msgstr "Updates"
2169
 
2170
- #: includes/optimization/wps-optimization.php:187
2171
  msgid "Historical"
2172
  msgstr "Historie"
2173
 
@@ -2317,7 +2377,7 @@ msgid "This is the honey pot for WP Statistics to use, do not delete."
2317
  msgstr "Dit is de honingpot die door WP Statistics gebruikt wordt. Niet verwijderen."
2318
 
2319
  #: includes/settings/tabs/wps-access-level.php:23
2320
- #: includes/settings/wps-settings.php:109
2321
  msgid "Access Levels"
2322
  msgstr "Toegangsniveaus"
2323
 
@@ -2350,8 +2410,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2350
  msgstr "Als u een robuustere oplossing voor gemachtigden-toegang wilt,kunt u kijken naar %s in de WordPress plug-inmap."
2351
 
2352
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2353
- #: includes/settings/wps-settings.php:110 wp-statistics.php:348
2354
- #: wp-statistics.php:424
2355
  msgid "Exclusions"
2356
  msgstr "Uitsluitingen"
2357
 
@@ -2522,16 +2582,21 @@ msgstr "Uitsluiten RSS-feeds"
2522
  msgid "Exclude the RSS feeds for registering as a hit."
2523
  msgstr "Sluit de registratie van RSS-feed hit uit."
2524
 
2525
- #: includes/settings/tabs/wps-browscap.php:22
2526
  msgid "browscap settings"
2527
  msgstr "Browscap instellingen"
2528
 
2529
- #: includes/settings/tabs/wps-browscap.php:27
2530
  msgid "browscap usage"
2531
  msgstr "Browscap gebruik"
2532
 
2533
- #: includes/settings/tabs/wps-browscap.php:32
2534
- #: includes/settings/tabs/wps-browscap.php:56
 
 
 
 
 
2535
  #: includes/settings/tabs/wps-general.php:76
2536
  #: includes/settings/tabs/wps-general.php:92
2537
  #: includes/settings/tabs/wps-general.php:116
@@ -2547,9 +2612,6 @@ msgstr "Browscap gebruik"
2547
  #: includes/settings/tabs/wps-general.php:286
2548
  #: includes/settings/tabs/wps-general.php:325
2549
  #: includes/settings/tabs/wps-general.php:341
2550
- #: includes/settings/tabs/wps-geoip.php:47
2551
- #: includes/settings/tabs/wps-geoip.php:71
2552
- #: includes/settings/tabs/wps-geoip.php:104
2553
  #: includes/settings/tabs/wps-maintenance.php:40
2554
  #: includes/settings/tabs/wps-maintenance.php:64
2555
  #: includes/settings/tabs/wps-notifications.php:69
@@ -2564,33 +2626,35 @@ msgstr "Browscap gebruik"
2564
  msgid "Active"
2565
  msgstr "Actief"
2566
 
2567
- #: includes/settings/tabs/wps-browscap.php:33
2568
  msgid "The browscap database will be downloaded and used to detect robots."
2569
  msgstr "De browscap database zal worden gedownload en gebruikt voor het opsporen van robots."
2570
 
2571
- #: includes/settings/tabs/wps-browscap.php:39
2572
  msgid "Update browscap Info"
2573
  msgstr "Update browscap Info"
2574
 
2575
- #: includes/settings/tabs/wps-browscap.php:44
2576
  msgid "Download browscap Database"
2577
  msgstr "Browscap-database downloaden"
2578
 
2579
- #: includes/settings/tabs/wps-browscap.php:45
2580
- #: includes/settings/tabs/wps-geoip.php:60
 
2581
  msgid "Save changes on this page to download the update."
2582
  msgstr "Sla de wijzigingen op deze pagina op om de update te downloaden."
2583
 
2584
- #: includes/settings/tabs/wps-browscap.php:51
2585
  msgid "Schedule weekly update of browscap DB"
2586
  msgstr "Plan wekelijkse update van browscap DB"
2587
 
2588
- #: includes/settings/tabs/wps-browscap.php:59
2589
- #: includes/settings/tabs/wps-geoip.php:74
 
2590
  msgid "Next update will be"
2591
  msgstr "Volgende update zal worden"
2592
 
2593
- #: includes/settings/tabs/wps-browscap.php:74
2594
  msgid "Download of the browscap database will be scheduled for once a week."
2595
  msgstr "Download van de browscap-database is gepland voor één keer per week."
2596
 
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2015-07-21 14:30:10+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: includes/optimization/wps-optimization.php:173
14
+ msgid "Search table conversion complete, %d rows added."
15
+ msgstr ""
16
+
17
+ #: includes/optimization/tabs/wps-optimization-database.php:107
18
+ msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion."
19
+ msgstr ""
20
+
21
+ #: includes/optimization/tabs/wps-optimization-database.php:86
22
+ msgid "Search Table"
23
+ msgstr ""
24
+
25
+ #: includes/optimization/tabs/wps-optimization-database.php:91
26
+ msgid "Convert"
27
+ msgstr ""
28
+
29
+ #: includes/optimization/tabs/wps-optimization-database.php:100
30
+ msgid "Convert Now!"
31
+ msgstr ""
32
+
33
+ #: includes/optimization/tabs/wps-optimization-database.php:101
34
+ msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion, however the old data must first be converted to the new format before it can be used."
35
+ msgstr ""
36
+
37
+ #: includes/log/exclusions.php:24
38
+ msgid "Referrer Spam"
39
+ msgstr "Referrer Spam"
40
+
41
+ #: includes/settings/tabs/wps-externals.php:277
42
+ msgid "Download of the Piwik Referrer Spam Blacklist database will be scheduled for once a week."
43
+ msgstr "Download van de Piwik Referrer Spam Blacklist database is gepland voor eens per week."
44
+
45
+ #: includes/settings/wps-settings.php:105
46
+ msgid "Externals"
47
+ msgstr "Externe"
48
+
49
+ #: includes/settings/tabs/wps-externals.php:219
50
+ msgid "Piwik Referrer Spam Blacklist settings"
51
+ msgstr "Piwik Referrer Spam Blacklist instellingen"
52
+
53
+ #: includes/settings/tabs/wps-externals.php:254
54
+ msgid "Schedule weekly update of Piwik Referrer Spam Blacklist DB"
55
+ msgstr "Plan wekelijkse een update van Piwik Referrer Spam Blacklist DB"
56
+
57
+ #: includes/settings/tabs/wps-externals.php:247
58
+ msgid "Download Piwik Referrer Spam Blacklist Database"
59
+ msgstr "Download Piwik Referrer Spam Blacklist Database"
60
+
61
+ #: includes/settings/tabs/wps-externals.php:242
62
+ msgid "Update Piwik Referrer Spam Blacklist Info"
63
+ msgstr "Bijwerken Piwik Referrer Spam Blacklist info"
64
+
65
+ #: includes/settings/tabs/wps-externals.php:236
66
+ msgid "The Piwik Referrer Spam Blacklist database will be downloaded and used to detect referrer spam."
67
+ msgstr "De Piwik Referrer Spam Blacklist database wordt gedownload en gebruikt om referrer spam te detecteren."
68
+
69
+ #: includes/settings/tabs/wps-externals.php:224
70
+ msgid "Referrer spam blacklist is provided by Piwik, available from %s."
71
+ msgstr "Referrer spam blacklist wordt geleverd door Piwik, beschikbaar vanaf%s."
72
+
73
+ #: includes/settings/tabs/wps-externals.php:230
74
+ msgid "Piwik Referrer Spam Blacklist usage"
75
+ msgstr "Piwik Referrer Spam Blacklist gebruik"
76
+
77
  #: includes/settings/tabs/wps-exclusions.php:148
78
  msgid "Treat corrupt browser info as a bot"
79
+ msgstr "Behandel corrupte browser info als een bot"
80
 
81
  #: includes/log/exclusions.php:24
82
  msgid "404 Pages"
83
+ msgstr "404 Pagina&#39;s"
84
 
85
  #: includes/log/top-visitors.php:26
86
  msgid "Date"
87
+ msgstr "Datum"
88
 
89
  #: includes/settings/tabs/wps-exclusions.php:151
90
  msgid "Treat any visitor with corrupt browser info (missing IP address or empty user agent string) as a robot."
91
+ msgstr "Behandel elke bezoeker met corrupte browser info (ontbrekend IP-adres of lege user agent string) als een robot."
92
 
93
  #: includes/settings/tabs/wps-exclusions.php:215
94
  msgid "Excluded 404 pages"
95
+ msgstr "Uitgesloten 404 pagina&#39;s"
96
 
97
  #: includes/settings/tabs/wps-exclusions.php:218
98
  msgid "Exclude any URL that returns a \"404 - Not Found\" message."
99
+ msgstr "Sluit elke URL uit die een &quot;404 - Not Found&quot; bericht geeft."
100
 
101
  #: wps-updates.php:29
102
  msgid "Error creating GeoIP database directory, make sure your web server has permissions to create directories in : %s"
103
+ msgstr "Fout bij het maken van de GeoIP database-directory. Zorg ervoor dat uw webserver machtigingen heeft om mappen te maken in: %s"
104
 
105
  #: includes/settings/tabs/wps-general.php:281
106
  msgid "Add page title to empty search words"
108
 
109
  #: includes/settings/tabs/wps-general.php:287
110
  msgid "If a search engine is identified as the referrer but it does not include the search query this option will substitute the page title in quotes preceded by \"~:\" as the search query to help identify what the user may have been searching for."
111
+ msgstr "Als een zoekmachine wordt geïdentificeerd als de verwijzer maar het bevat niet de zoekopdracht, dan zal deze optie de paginatitel tussen aanhalingstekens en voorafgegaan door &quot;~:&quot; als zoekopdracht geven. Dit om de gebruiker te helpen bij het identificeren waar de bezoeker naar gezocht kan hebben."
112
 
113
  #: includes/settings/tabs/wps-maintenance.php:77
114
  msgid "The number of hits required to delete the visitor. Invalid values will disable the daily maintenance (must be 10 or greater)."
115
+ msgstr "Het aantal hits dat nodig is om de bezoeker te verwijderen. Ongeldige waarden zullen het dagelijks onderhoud uit schakelen (moet 10 of hoger zijn)."
116
 
117
  #: includes/settings/tabs/wps-maintenance.php:71
118
  msgid "Prune visitors with more than"
120
 
121
  #: includes/settings/tabs/wps-maintenance.php:65
122
  msgid "A WP Cron job will be run daily to prune any users statistics data where the user has more than the defined number of hits in a day (aka they are probably a bot)."
123
+ msgstr "Een WP Cron job zal dagelijks worden uitgevoerd om alle statistische gegevens van gebruikers met meer dan het gedefinieerde aantal hits in een dag op te schonen (waarschijnlijk gaat het om een (ro)bot)."
124
 
125
  #: includes/optimization/tabs/wps-optimization-purging.php:217
126
  msgid "Purge visitors with more than"
132
 
133
  #: includes/optimization/tabs/wps-optimization-purging.php:223
134
  msgid "Deleted user statistics data where the user has more than the defined number of hits in a day. This can be useful to clear up old data when your site has been hit by a bot. This will remove the visitor and their hits to the site, however it will not remove individual page hits as that data is not recorded on a per use basis. Minimum value is 10 hits."
135
+ msgstr "Verwijderde gebruikersstatistiek-data van de gebruikers met meer dan het gedefinieerde aantal hits in een dag. Dit kan nuttig zijn voor het opruimen van oude gegevens wanneer uw site is bezocht is door een bot. Dit zal de bezoeker en de bijbehorende hits op de site te verwijderen, maar het zal niet de individuele pagina-hits verwijderen als die data niet is opgenomen op een per use basis. Minimale waarde is 10 hits."
136
 
137
  #: includes/functions/purge-hits.php:28
138
  msgid "No visitors found to purge."
152
 
153
  #: shortcode.php:137
154
  msgid "Page Count"
155
+ msgstr "Aantal pagina&#39;s"
156
 
157
  #: shortcode.php:138
158
  msgid "Comment Count"
159
+ msgstr "Aantal commentaren"
160
 
161
  #: shortcode.php:139
162
  msgid "Spam Count"
164
 
165
  #: shortcode.php:140
166
  msgid "User Count"
167
+ msgstr "Aantal gebruikers"
168
 
169
  #: shortcode.php:141
170
  msgid "Post Average"
171
+ msgstr "Gemiddeld aantal berichten"
172
 
173
  #: shortcode.php:142
174
  msgid "Comment Average"
175
+ msgstr "Gemiddeld aantal commentaren"
176
 
177
  #: shortcode.php:143
178
  msgid "User Average"
179
+ msgstr "Gebruikergemiddelde"
180
 
181
  #: shortcode.php:151
182
  msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
183
+ msgstr "De tijdsduur voor het verkrijgen van de statistieken. De PHP-functie 'strtotime()' (http://php.net/manual/en/datetime.formats.php) zal worden gebruikt voor de berekening."
184
 
185
  #: shortcode.php:155
186
  msgid "Search Provider"
188
 
189
  #: shortcode.php:158
190
  msgid "The search provider to get statistics on."
191
+ msgstr "De zoekmachine waarvan de statistieken verkregen worden."
192
 
193
  #: shortcode.php:162
194
  msgid "Number Format"
222
  msgid "Have you thought about donating to WP Statistics?"
223
  msgstr "Heb je nagedacht om te doneren aan WP Statistics?"
224
 
225
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
226
  msgid "Donate"
227
  msgstr "Doneren"
228
 
229
  #: includes/settings/tabs/wps-about.php:24
230
  msgid "Fell like showing us how much you enjoy WP Statistics? Drop by our %s page and show us some love!"
231
+ msgstr "Zin om uw waardering voor WP-Statistics te tonen? Kom langs op onze %s pagina!"
232
 
233
  #: includes/settings/tabs/wps-about.php:24
234
  msgid "donation"
248
 
249
  #: shortcode.php:125
250
  msgid "Statistic"
251
+ msgstr "Statistisch"
252
 
253
  #: shortcode.php:136
254
  msgid "Post Count"
255
+ msgstr "Berichten teller"
256
 
257
  #: shortcode.php:148
258
  msgid "Time Frame"
259
+ msgstr "Tijdsduur"
260
 
261
+ #: includes/functions/functions.php:981
262
  msgid "to"
263
  msgstr "naar"
264
 
265
+ #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
266
  msgid "Go"
267
  msgstr "Ga"
268
 
306
  msgid "Filtered by"
307
  msgstr "Gefilterd op"
308
 
309
+ #: includes/functions/functions.php:974 includes/functions/functions.php:977
310
  msgid "Range"
311
  msgstr "Reeks"
312
 
313
+ #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
314
  msgid "MM/DD/YYYY"
315
  msgstr "MM/DD/YYYY"
316
 
354
  msgid "Last 7 Days (Week)"
355
  msgstr "Laatste 7 dagen (week)"
356
 
357
+ #: includes/functions/functions.php:405
358
  msgid "Yahoo!"
359
  msgstr "Yahoo!"
360
 
361
+ #: includes/functions/functions.php:406
362
  msgid "Yandex"
363
  msgstr "Yandex"
364
 
365
+ #: includes/functions/functions.php:402
366
  msgid "clearch.org"
367
  msgstr "clearch.org"
368
 
369
+ #: includes/functions/functions.php:403
370
  msgid "DuckDuckGo"
371
  msgstr "DuckDuckGo"
372
 
373
+ #: includes/functions/functions.php:401
374
  msgid "Bing"
375
  msgstr "Bing"
376
 
377
+ #: includes/functions/functions.php:400
378
  msgid "Baidu"
379
  msgstr "Baidu"
380
 
477
  msgstr "Voor elk bezoek meerdere hits tellen. Momenteel %s."
478
 
479
  #: includes/settings/tabs/wps-general.php:177
480
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
481
+ #: wp-statistics.php:431
482
  msgid "Pages"
483
  msgstr "Pagina 's"
484
 
562
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
563
  msgstr "Een totale lijn met meerdere waarden toevoegen aan grafieken, zoals de verwijzingen van de zoekmachine"
564
 
565
+ #: includes/settings/tabs/wps-externals.php:32
566
  msgid "GeoIP settings"
567
  msgstr "GeoIP instellingen"
568
 
569
+ #: includes/settings/tabs/wps-externals.php:37
570
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
571
  msgstr "IP-locatie diensten van GeoLite2-data (door MaxMind), zijn beschikbaar op %s."
572
 
573
+ #: includes/settings/tabs/wps-externals.php:47
574
  msgid "GeoIP collection"
575
  msgstr "GeoIP-collectie"
576
 
577
+ #: includes/settings/tabs/wps-externals.php:53
578
  msgid "For get more information and location (country) from visitor, enable this feature."
579
  msgstr "Deze functie inschakelen om meer informatie over de bezoeker en locatie (land) te krijgen."
580
 
581
+ #: includes/settings/tabs/wps-externals.php:59
582
  msgid "Update GeoIP Info"
583
  msgstr "GeoIP Info bijwerken"
584
 
585
+ #: includes/settings/tabs/wps-externals.php:64
586
  msgid "Download GeoIP Database"
587
  msgstr "GeoIP-Database downloaden"
588
 
589
+ #: includes/settings/tabs/wps-externals.php:71
590
  msgid "Schedule monthly update of GeoIP DB"
591
  msgstr "Maandelijkse update voor GeoIP DB plannen"
592
 
593
+ #: includes/settings/tabs/wps-externals.php:97
594
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
595
  msgstr "Downloaden van de GeoIP-database zal worden gepland voor 2 dagen na de eerste dinsdag van de maand."
596
 
597
+ #: includes/settings/tabs/wps-externals.php:98
598
  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)."
599
  msgstr "Deze optie zal de database ook downloaden als de lokale bestandsgrootte minder dan 1k is (wat meestal betekent de stub die wordt geleverd met de plugin is nog steeds in plaats)."
600
 
601
+ #: includes/settings/tabs/wps-externals.php:104
602
  msgid "Populate missing GeoIP after update of GeoIP DB"
603
  msgstr "Ontbrekende GeoIP vullen na actualisering van GeoIP DB"
604
 
605
+ #: includes/settings/tabs/wps-externals.php:110
606
  msgid "Update any missing GeoIP data after downloading a new database."
607
  msgstr "Eventuele ontbrekende GeoIP gegevens bijwerken na het downloaden van een nieuwe database."
608
 
609
+ #: includes/settings/tabs/wps-externals.php:116
610
  msgid "Country code for private IP addresses"
611
  msgstr "Landcode voor privé IP-adressen"
612
 
613
+ #: includes/settings/tabs/wps-externals.php:121
614
  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."
615
  msgstr "De internationale standaard tweeletterige landcode (bijv. US = Verenigde Staten, CA = Canada, enz.) Voor de privé (niet-routeerbare) IP-adressen (bijv. 10.0.0.1, 192.158.1.1, 127.0.0.1, etc.). Gebruik \"000\" (drie nullen) om \"Onbekend\" als landcode te gebruiken."
616
 
617
+ #: includes/settings/tabs/wps-externals.php:132
618
  msgid "GeoIP collection is disabled due to the following reasons:"
619
  msgstr "GeoIP collectie is uitgeschakeld om de volgende redenen:"
620
 
621
+ #: includes/settings/tabs/wps-externals.php:135
622
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
623
  msgstr "GeoIP collectie vereist PHP %s of boven, is het momenteel uitgeschakeld als gevolg van de geïnstalleerde PHP versie wordt "
624
 
625
+ #: includes/settings/tabs/wps-externals.php:140
626
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
627
  msgstr "GeoIP collectie vereist de PHP cURL-extentie en het is niet geladen op uw versie van PHP!"
628
 
629
+ #: includes/settings/tabs/wps-externals.php:146
630
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
631
  msgstr "GeoIP collectie vereist de BC Math PHP-extensie en deze is niet beschikbaar in uw PHP-versie!"
632
 
633
+ #: includes/settings/tabs/wps-externals.php:152
634
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
635
  msgstr "PHP veilige modus gedetecteerd! GeoIP-collectie wordt niet ondersteund met PHP veilige modus ingeschakeld!"
636
 
690
 
691
  #: includes/log/exclusions.php:24
692
  #: includes/settings/tabs/wps-notifications.php:76
 
693
  msgid "GeoIP"
694
  msgstr "GeoIP"
695
 
714
  msgstr "Stuur een bericht wanneer de plug-in is bijgewerkt."
715
 
716
  #: includes/settings/tabs/wps-notifications.php:111
717
+ #: includes/settings/tabs/wps-notifications.php:116 schedule.php:221
718
  msgid "Statistical reporting"
719
  msgstr "Statistieken rapportage"
720
 
763
  msgstr "Elke shortcode die ondersteund worden door uw WordPress-installatie, inclusief alle shortcodes van WP Statistics (zie de beheerdershandleiding voor een lijst van beschikbare codes) wordt ondersteund in de inhoud van het bericht. Hier zijn enkele voorbeelden:"
764
 
765
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
766
+ #: widget.php:245 wp-statistics.php:536
767
  msgid "User Online"
768
  msgstr "Gebruiker Online"
769
 
806
  msgstr "Samenvatting van de statistieken"
807
 
808
  #: includes/settings/tabs/wps-overview-display.php:28
809
+ #: includes/settings/wps-settings.php:108
810
  msgid "About"
811
  msgstr "Over"
812
 
856
  msgid "Map type"
857
  msgstr "Kaarttype"
858
 
859
+ #: includes/functions/functions.php:404
860
  #: includes/settings/tabs/wps-overview-display.php:128
861
  msgid "Google"
862
  msgstr "Google"
966
  msgid "Remove data and settings, this action cannot be undone."
967
  msgstr "Gegevens en instellingen verwijderen, deze actie kan niet ongedaan gemaakt worden."
968
 
969
+ #: includes/settings/wps-settings.php:100
970
  msgid "General"
971
  msgstr "Algemeen"
972
 
973
+ #: includes/settings/wps-settings.php:101
974
  msgid "Notifications"
975
  msgstr "Rapportage"
976
 
977
+ #: includes/settings/wps-settings.php:102
978
  msgid "Dashboard/Overview"
979
  msgstr "Dashboard/overzicht"
980
 
981
+ #: includes/settings/wps-settings.php:106
 
 
 
 
982
  msgid "Maintenance"
983
  msgstr "Onderhoud"
984
 
985
+ #: includes/settings/wps-settings.php:107
986
  msgid "Removal"
987
  msgstr "Verwijdering"
988
 
989
  #: includes/settings/tabs/wps-access-level.php:85
 
990
  #: includes/settings/tabs/wps-exclusions.php:234
991
+ #: includes/settings/tabs/wps-externals.php:284
992
  #: includes/settings/tabs/wps-general.php:349
 
993
  #: includes/settings/tabs/wps-maintenance.php:84
994
  #: includes/settings/tabs/wps-notifications.php:201
995
  #: includes/settings/tabs/wps-overview-display.php:388
1009
  msgid "Once Every 4 Weeks"
1010
  msgstr "Eenmaal per 4 weken"
1011
 
1012
+ #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
1013
  msgid "Statistics"
1014
  msgstr "Statistieken"
1015
 
1081
  msgid "Items"
1082
  msgstr "Artikelen"
1083
 
1084
+ #: widget.php:254 wp-statistics.php:561
1085
  msgid "Yesterday visit"
1086
  msgstr "Bezoek gisteren"
1087
 
1109
  msgid "WP Statistics has been removed, please disable and delete it."
1110
  msgstr "WP CBS is verwijderd, u kunt het nu uitschakelen en verwijderen."
1111
 
1112
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1113
  #. Plugin Name of the plugin/theme
1114
  #: wp-statistics.php:37
1115
  msgid "WP Statistics"
1116
  msgstr "WP Statistics"
1117
 
1118
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1119
  #. Description of the plugin/theme
1120
  #: wp-statistics.php:38
1121
  msgid "Complete statistics for your WordPress site."
1145
  msgid "Setting page > GeoIP"
1146
  msgstr "Instellingenpagina > GeoIP"
1147
 
1148
+ #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
1149
  msgid "Settings"
1150
  msgstr "Instellingen"
1151
 
1152
+ #: wp-statistics.php:265
1153
  msgid "Click here to visit the plugin on WordPress.org"
1154
  msgstr "Klik hier om naar de plug-in op WordPress.org te gaan"
1155
 
1156
+ #: wp-statistics.php:265
1157
  msgid "Visit WordPress.org page"
1158
  msgstr "Bezoek WordPress.org pagina"
1159
 
1160
+ #: wp-statistics.php:268
1161
  msgid "Click here to rate and review this plugin on WordPress.org"
1162
  msgstr "Klik hier om deze plug-in op WordPress.org te beoordelen en waardering te geven."
1163
 
1164
+ #: wp-statistics.php:268
1165
  msgid "Rate this plugin"
1166
  msgstr "Waardeer deze plug-in"
1167
 
1168
+ #: wp-statistics.php:312
1169
  msgid "WP Statistics - Hits"
1170
  msgstr "WP statistiek - Hits"
1171
 
1172
+ #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
1173
  msgid "Overview"
1174
  msgstr "Overzicht"
1175
 
1176
+ #: wp-statistics.php:354 wp-statistics.php:430
1177
  msgid "Online"
1178
  msgstr "Online"
1179
 
1180
+ #: wp-statistics.php:356 wp-statistics.php:432
1181
  msgid "Referrers"
1182
  msgstr "Verwijzers"
1183
 
1184
+ #: shortcode.php:135 wp-statistics.php:357 wp-statistics.php:433
1185
  msgid "Searches"
1186
  msgstr "Zoekopdrachten"
1187
 
1188
+ #: wp-statistics.php:358 wp-statistics.php:434
1189
  msgid "Search Words"
1190
  msgstr "Zoekwoorden"
1191
 
1192
+ #: wp-statistics.php:359 wp-statistics.php:435
1193
  msgid "Top Visitors Today"
1194
  msgstr "Topbezoekers vandaag"
1195
 
1196
+ #: wp-statistics.php:364 wp-statistics.php:437
1197
  msgid "Optimization"
1198
  msgstr "Optimalisatie"
1199
 
1200
+ #: wp-statistics.php:370 wp-statistics.php:401
1201
  msgid "Manual"
1202
  msgstr "Handleiding"
1203
 
1204
+ #: wp-statistics.php:416
1205
  msgid "Site"
1206
  msgstr "Site"
1207
 
1208
+ #: wp-statistics.php:417
1209
  msgid "Options"
1210
  msgstr "Opties"
1211
 
1212
+ #: wp-statistics.php:543
1213
  msgid "Today visitor"
1214
  msgstr "Bezoeker vandaag"
1215
 
1216
+ #: wp-statistics.php:549
1217
  msgid "Today visit"
1218
  msgstr "Bezoek vandaag"
1219
 
1220
+ #: wp-statistics.php:555
1221
  msgid "Yesterday visitor"
1222
  msgstr "Bezoeker gisteren"
1223
 
1224
+ #: wp-statistics.php:567
1225
  msgid "View Stats"
1226
  msgstr "Weergave Statistieken"
1227
 
1228
+ #: wp-statistics.php:591
1229
  msgid "Download ODF file"
1230
  msgstr "ODF bestand downloaden"
1231
 
1232
+ #: wp-statistics.php:592
1233
  msgid "Download HTML file"
1234
  msgstr "Het HTML-bestand downloaden"
1235
 
1236
+ #: wp-statistics.php:596
1237
  msgid "Manual file not found."
1238
  msgstr "Handleiding-bestand niet gevonden."
1239
 
1240
+ #: wp-statistics.php:663 wp-statistics.php:770 wp-statistics.php:804
1241
  msgid "You do not have sufficient permissions to access this page."
1242
  msgstr "U hoeft niet voldoende rechten om deze pagina te openen."
1243
 
1245
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
1246
  msgstr "Plug-in tabellen bestaan ​​niet in de database! Gelieve opnieuw de %s installatie-routine %s te draaien."
1247
 
1248
+ #: wp-statistics.php:241
1249
  msgid "WP Statistics %s installed on"
1250
  msgstr "WP Statistics%s geïnstalleerd op"
1251
 
1293
  msgid "Browscap.ini update on"
1294
  msgstr "Browscap.ini update over"
1295
 
1296
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1297
  #. Plugin URI of the plugin/theme
1298
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1299
  #. Author URI of the plugin/theme
1300
  msgid "http://wp-statistics.com/"
1301
  msgstr "http://WP-Statistics.com/"
1422
  msgstr "Klik hierop om te schakelen"
1423
 
1424
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1425
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
1426
+ #: wp-statistics.php:426
1427
  msgid "Browsers"
1428
  msgstr "Browsers"
1429
 
1452
  msgid "Exclusions Statistics"
1453
  msgstr "Statistieken uitsluitingen"
1454
 
1455
+ #: includes/functions/functions.php:931
1456
  msgid "10 Days"
1457
  msgstr "10 dagen"
1458
 
1459
+ #: includes/functions/functions.php:931
1460
  msgid "20 Days"
1461
  msgstr "20 dagen"
1462
 
1463
+ #: includes/functions/functions.php:931
1464
  msgid "30 Days"
1465
  msgstr "30 dagen"
1466
 
1467
+ #: includes/functions/functions.php:931
1468
  msgid "2 Months"
1469
  msgstr "2 maanden"
1470
 
1471
+ #: includes/functions/functions.php:931
1472
  msgid "3 Months"
1473
  msgstr "3 maanden"
1474
 
1475
+ #: includes/functions/functions.php:931
1476
  msgid "6 Months"
1477
  msgstr "6 maanden"
1478
 
1479
+ #: includes/functions/functions.php:931
1480
  msgid "9 Months"
1481
  msgstr "9 maanden"
1482
 
1483
+ #: includes/functions/functions.php:931
1484
  msgid "1 Year"
1485
  msgstr "1 jaar"
1486
 
1529
  msgid "Latest Search Word Statistics"
1530
  msgstr "Laatste zoekwoorden statistieken"
1531
 
1532
+ #: includes/log/last-search.php:110 includes/log/last-visitor.php:101
1533
  #: includes/log/online.php:50 includes/log/widgets/google.map.php:84
1534
  #: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
1535
+ #: includes/log/widgets/words.php:46
1536
  msgid "#hash#"
1537
  msgstr "#hash #"
1538
 
1539
+ #: includes/log/last-search.php:115 includes/log/last-visitor.php:106
1540
  #: includes/log/online.php:55 includes/log/top-referring.php:71
1541
+ #: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
1542
  #: includes/settings/tabs/wps-overview-display.php:33
1543
  #: includes/settings/tabs/wps-overview-display.php:113
1544
  msgid "Map"
1545
  msgstr "Kaart"
1546
 
1547
+ #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1548
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1549
  #: includes/log/top-referring.php:125
1550
  msgid "Page"
1551
  msgstr "Pagina"
1552
 
1553
+ #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1554
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1555
  #: includes/log/top-referring.php:125
1556
  msgid "From"
1739
  msgstr "Tijd: %s"
1740
 
1741
  #: includes/log/widgets/top.visitors.php:31
1742
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
1743
+ #: wp-statistics.php:353 wp-statistics.php:429
1744
  msgid "Hits"
1745
  msgstr "Hits"
1746
 
1782
  msgid "No platform data found to remove!"
1783
  msgstr "Geen platform-gegevens gevonden om te verwijderen!"
1784
 
1785
+ #: includes/functions/functions.php:1019
1786
  msgid "%s table data deleted successfully."
1787
  msgstr "tabelgegevens %s succesvol verwijderd."
1788
 
1789
+ #: includes/functions/functions.php:1023
1790
  msgid "Error, %s not emptied!"
1791
  msgstr "Fout, %s niet leeggemaakt!"
1792
 
1812
 
1813
  #: includes/optimization/tabs/wps-optimization-database.php:25
1814
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1815
+ #: wp-statistics.php:351 wp-statistics.php:427
1816
  msgid "Countries"
1817
  msgstr "Landen"
1818
 
1828
  msgstr "Oudere installaties van WP Statistics staan in sommige gevallen dubbele vermeldingen toe in de bezoekerstabel. Nieuwere installaties beschermen hiertegen met een unieke index in de tabel. Als u in de oudere installatie deze index wilt creëren, moeten eerst de dubbele vermeldingen worden verwijderd. Door op \"Update Now\" te klikken, wordt de bezoekerstabel gescand, dubbele vermeldingen verwijderd en de index toegevoegd."
1829
 
1830
  #: includes/optimization/tabs/wps-optimization-database.php:41
1831
+ #: includes/optimization/tabs/wps-optimization-database.php:102
1832
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1833
  msgstr "Deze bewerking kan lang duren op installeert met vele rijen in de tabel van de bezoekers."
1834
 
1838
 
1839
  #: includes/optimization/tabs/wps-optimization-database.php:47
1840
  #: includes/optimization/tabs/wps-optimization-database.php:77
1841
+ #: includes/optimization/tabs/wps-optimization-database.php:108
1842
  msgid "Congratulations, your installation is already up to date, nothing to do."
1843
  msgstr "Gefeliciteerd, is uw installatie al up-to-date. Er is hier niets te doen."
1844
 
1845
  #: includes/optimization/tabs/wps-optimization-export.php:8
1846
+ #: includes/optimization/wps-optimization.php:212
1847
  msgid "Export"
1848
  msgstr "Exporteren"
1849
 
1896
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1897
  #: includes/settings/tabs/wps-general.php:138
1898
  #: includes/settings/tabs/wps-general.php:143 shortcode.php:133
1899
+ #: wp-statistics.php:360 wp-statistics.php:436
1900
  msgid "Visitors"
1901
  msgstr "Bezoekers"
1902
 
2211
  msgid "Install routine complete."
2212
  msgstr "Installeren volledige routine."
2213
 
2214
+ #: includes/optimization/wps-optimization.php:211
2215
  msgid "Resources/Information"
2216
  msgstr "Middelen/informatie"
2217
 
2218
+ #: includes/optimization/wps-optimization.php:213
2219
  msgid "Purging"
2220
  msgstr "Systeemaanpassingen"
2221
 
2222
+ #: includes/optimization/wps-optimization.php:214
2223
  msgid "Database"
2224
  msgstr "Database"
2225
 
2226
+ #: includes/optimization/wps-optimization.php:215
2227
  msgid "Updates"
2228
  msgstr "Updates"
2229
 
2230
+ #: includes/optimization/wps-optimization.php:216
2231
  msgid "Historical"
2232
  msgstr "Historie"
2233
 
2377
  msgstr "Dit is de honingpot die door WP Statistics gebruikt wordt. Niet verwijderen."
2378
 
2379
  #: includes/settings/tabs/wps-access-level.php:23
2380
+ #: includes/settings/wps-settings.php:103
2381
  msgid "Access Levels"
2382
  msgstr "Toegangsniveaus"
2383
 
2410
  msgstr "Als u een robuustere oplossing voor gemachtigden-toegang wilt,kunt u kijken naar %s in de WordPress plug-inmap."
2411
 
2412
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2413
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:352
2414
+ #: wp-statistics.php:428
2415
  msgid "Exclusions"
2416
  msgstr "Uitsluitingen"
2417
 
2582
  msgid "Exclude the RSS feeds for registering as a hit."
2583
  msgstr "Sluit de registratie van RSS-feed hit uit."
2584
 
2585
+ #: includes/settings/tabs/wps-externals.php:162
2586
  msgid "browscap settings"
2587
  msgstr "Browscap instellingen"
2588
 
2589
+ #: includes/settings/tabs/wps-externals.php:167
2590
  msgid "browscap usage"
2591
  msgstr "Browscap gebruik"
2592
 
2593
+ #: includes/settings/tabs/wps-externals.php:52
2594
+ #: includes/settings/tabs/wps-externals.php:76
2595
+ #: includes/settings/tabs/wps-externals.php:109
2596
+ #: includes/settings/tabs/wps-externals.php:172
2597
+ #: includes/settings/tabs/wps-externals.php:196
2598
+ #: includes/settings/tabs/wps-externals.php:235
2599
+ #: includes/settings/tabs/wps-externals.php:259
2600
  #: includes/settings/tabs/wps-general.php:76
2601
  #: includes/settings/tabs/wps-general.php:92
2602
  #: includes/settings/tabs/wps-general.php:116
2612
  #: includes/settings/tabs/wps-general.php:286
2613
  #: includes/settings/tabs/wps-general.php:325
2614
  #: includes/settings/tabs/wps-general.php:341
 
 
 
2615
  #: includes/settings/tabs/wps-maintenance.php:40
2616
  #: includes/settings/tabs/wps-maintenance.php:64
2617
  #: includes/settings/tabs/wps-notifications.php:69
2626
  msgid "Active"
2627
  msgstr "Actief"
2628
 
2629
+ #: includes/settings/tabs/wps-externals.php:173
2630
  msgid "The browscap database will be downloaded and used to detect robots."
2631
  msgstr "De browscap database zal worden gedownload en gebruikt voor het opsporen van robots."
2632
 
2633
+ #: includes/settings/tabs/wps-externals.php:179
2634
  msgid "Update browscap Info"
2635
  msgstr "Update browscap Info"
2636
 
2637
+ #: includes/settings/tabs/wps-externals.php:184
2638
  msgid "Download browscap Database"
2639
  msgstr "Browscap-database downloaden"
2640
 
2641
+ #: includes/settings/tabs/wps-externals.php:65
2642
+ #: includes/settings/tabs/wps-externals.php:185
2643
+ #: includes/settings/tabs/wps-externals.php:248
2644
  msgid "Save changes on this page to download the update."
2645
  msgstr "Sla de wijzigingen op deze pagina op om de update te downloaden."
2646
 
2647
+ #: includes/settings/tabs/wps-externals.php:191
2648
  msgid "Schedule weekly update of browscap DB"
2649
  msgstr "Plan wekelijkse update van browscap DB"
2650
 
2651
+ #: includes/settings/tabs/wps-externals.php:79
2652
+ #: includes/settings/tabs/wps-externals.php:199
2653
+ #: includes/settings/tabs/wps-externals.php:262
2654
  msgid "Next update will be"
2655
  msgstr "Volgende update zal worden"
2656
 
2657
+ #: includes/settings/tabs/wps-externals.php:214
2658
  msgid "Download of the browscap database will be scheduled for once a week."
2659
  msgstr "Download van de browscap-database is gepland voor één keer per week."
2660
 
languages/wp_statistics-pl_PL.mo CHANGED
Binary file
languages/wp_statistics-pl_PL.po CHANGED
@@ -10,6 +10,70 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  #: includes/settings/tabs/wps-exclusions.php:148
14
  msgid "Treat corrupt browser info as a bot"
15
  msgstr ""
@@ -158,7 +222,7 @@ msgstr ""
158
  msgid "Have you thought about donating to WP Statistics?"
159
  msgstr ""
160
 
161
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:362
162
  msgid "Donate"
163
  msgstr ""
164
 
@@ -194,11 +258,11 @@ msgstr ""
194
  msgid "Time Frame"
195
  msgstr ""
196
 
197
- #: includes/functions/functions.php:929
198
  msgid "to"
199
  msgstr ""
200
 
201
- #: includes/functions/functions.php:929 includes/log/top-visitors.php:29
202
  msgid "Go"
203
  msgstr ""
204
 
@@ -242,11 +306,11 @@ msgstr ""
242
  msgid "Filtered by"
243
  msgstr ""
244
 
245
- #: includes/functions/functions.php:922 includes/functions/functions.php:925
246
  msgid "Range"
247
  msgstr ""
248
 
249
- #: includes/functions/functions.php:929 includes/log/top-visitors.php:29
250
  msgid "MM/DD/YYYY"
251
  msgstr "MM/DD/YYYY"
252
 
@@ -290,27 +354,27 @@ msgstr ""
290
  msgid "Last 7 Days (Week)"
291
  msgstr ""
292
 
293
- #: includes/functions/functions.php:403
294
  msgid "Yahoo!"
295
  msgstr ""
296
 
297
- #: includes/functions/functions.php:404
298
  msgid "Yandex"
299
  msgstr ""
300
 
301
- #: includes/functions/functions.php:400
302
  msgid "clearch.org"
303
  msgstr ""
304
 
305
- #: includes/functions/functions.php:401
306
  msgid "DuckDuckGo"
307
  msgstr ""
308
 
309
- #: includes/functions/functions.php:399
310
  msgid "Bing"
311
  msgstr ""
312
 
313
- #: includes/functions/functions.php:398
314
  msgid "Baidu"
315
  msgstr ""
316
 
@@ -413,8 +477,8 @@ msgid "For each visit to account for several hits. Currently %s."
413
  msgstr "Dla każdej odwiedziny z jednego konta. Aktualnie %s."
414
 
415
  #: includes/settings/tabs/wps-general.php:177
416
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:351
417
- #: wp-statistics.php:427
418
  msgid "Pages"
419
  msgstr "Strony"
420
 
@@ -498,75 +562,75 @@ msgstr "Razem dołączonych"
498
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
499
  msgstr "Dodaj całkowitą linię do wykresów z wieloma wartościami, takimi jak odwołania w wyszukiwarkach"
500
 
501
- #: includes/settings/tabs/wps-geoip.php:27
502
  msgid "GeoIP settings"
503
  msgstr "Ustawienia GeoIP"
504
 
505
- #: includes/settings/tabs/wps-geoip.php:32
506
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
507
  msgstr "Usługi lokalizacyjne IP świadczone przez dane GeoLite2 utworzone przez MediaWiki, dostępne z %s."
508
 
509
- #: includes/settings/tabs/wps-geoip.php:42
510
  msgid "GeoIP collection"
511
  msgstr "Biblioteka GeoIP"
512
 
513
- #: includes/settings/tabs/wps-geoip.php:48
514
  msgid "For get more information and location (country) from visitor, enable this feature."
515
  msgstr "Dla uzyskania dodatkowych informacji i lokalizacji (kraju) z odwiedzającym, włącz tą funkcję."
516
 
517
- #: includes/settings/tabs/wps-geoip.php:54
518
  msgid "Update GeoIP Info"
519
  msgstr "Aktualizacja informacji GeoIP"
520
 
521
- #: includes/settings/tabs/wps-geoip.php:59
522
  msgid "Download GeoIP Database"
523
  msgstr "Pobierz bazę danych GeoIP"
524
 
525
- #: includes/settings/tabs/wps-geoip.php:66
526
  msgid "Schedule monthly update of GeoIP DB"
527
  msgstr "Kalendarz miesięczny aktualizacji GeoIP DB"
528
 
529
- #: includes/settings/tabs/wps-geoip.php:92
530
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
531
  msgstr "Pobranie bazy danych GeoIP będzie zaplanowane na 2 dni po pierwszym Wtorku każdego miesiąca."
532
 
533
- #: includes/settings/tabs/wps-geoip.php:93
534
  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)."
535
  msgstr "Ta opcja również pobiera bazę danych, jeśli lokalny rozmiar pliku jest mniejszy niż 1k (który zazwyczaj oznacza odcinek, pochodzący z tej wtyczk jest nadal w tym miejscu)."
536
 
537
- #: includes/settings/tabs/wps-geoip.php:99
538
  msgid "Populate missing GeoIP after update of GeoIP DB"
539
  msgstr "Wypełnienie brakujących GeoIP po aktualizacji bazy danych GeoIP"
540
 
541
- #: includes/settings/tabs/wps-geoip.php:105
542
  msgid "Update any missing GeoIP data after downloading a new database."
543
  msgstr "Zaktualizuj wszelkie brakujące dane GeoIP po pobraniu nowej bazy danych."
544
 
545
- #: includes/settings/tabs/wps-geoip.php:111
546
  msgid "Country code for private IP addresses"
547
  msgstr "Numer kierunkowy do prywatnych adresów IP"
548
 
549
- #: includes/settings/tabs/wps-geoip.php:116
550
  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."
551
  msgstr "Międzynarodowy standard kod dwuliterowy kraju (tj. US = Stany Zjednoczone, CA = Kanada, itp) dla prywatnych (bez routingu) adresów IP (np. 10.0.0.1, 192.158.1.1, 127.0.0.1, itp). Użyj \"000\" (trzy zera) do korzystania z \"Nieznany\" jako kod kraju."
552
 
553
- #: includes/settings/tabs/wps-geoip.php:127
554
  msgid "GeoIP collection is disabled due to the following reasons:"
555
  msgstr "Biblioteka GeoIP jest wyłączona z powodu następujących przyczyn:"
556
 
557
- #: includes/settings/tabs/wps-geoip.php:130
558
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
559
  msgstr "Biblioteka GeoIP wymaga PHP %s lub nowszego, obecnie jest wyłączona z powodu zainstalowanej istniejącej wersji PHP"
560
 
561
- #: includes/settings/tabs/wps-geoip.php:135
562
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
563
  msgstr "Gromadzony GeoIP wymaga rozszerzenia cURL PHP i nie jest uruchomiony w Twojej wersji PHP!"
564
 
565
- #: includes/settings/tabs/wps-geoip.php:141
566
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
567
  msgstr "Gromadzony GeoIP wymaga rozszerzenia BC Math PHP i nie jest uruchomiony w Twojej wersji PHP!"
568
 
569
- #: includes/settings/tabs/wps-geoip.php:147
570
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
571
  msgstr "Wykryty PHP Safe Mode! Biblioteka GeoIP nie jest obsługiwana w trybie bezpiecznym PHP!"
572
 
@@ -626,7 +690,6 @@ msgstr "Wyślij raport, gdy browscap.ini jest aktualizowany."
626
 
627
  #: includes/log/exclusions.php:24
628
  #: includes/settings/tabs/wps-notifications.php:76
629
- #: includes/settings/wps-settings.php:111
630
  msgid "GeoIP"
631
  msgstr "GeoIP"
632
 
@@ -651,7 +714,7 @@ msgid "Send a report whenever the plugin is upgraded."
651
  msgstr "Wyślij raport, gdy wtyczka jest uaktualniania."
652
 
653
  #: includes/settings/tabs/wps-notifications.php:111
654
- #: includes/settings/tabs/wps-notifications.php:116 schedule.php:199
655
  msgid "Statistical reporting"
656
  msgstr "Raporty statystyk"
657
 
@@ -700,7 +763,7 @@ msgid "Any shortcode supported by your installation of WordPress, include all sh
700
  msgstr "Dowolny krótki kod obsługiwany przez Twoją instalację WordPressa, obejmuje wszystkie krótkie kody dla WP Statistics (zobacz podręcznik administratora uzyskując listę dostępnych kodów), które są obsługiwane w treści wiadomości. Oto kilka przykładów:"
701
 
702
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
703
- #: widget.php:245 wp-statistics.php:532
704
  msgid "User Online"
705
  msgstr "Osób online"
706
 
@@ -743,7 +806,7 @@ msgid "Summary Statistics"
743
  msgstr "Podsumowanie statystyk"
744
 
745
  #: includes/settings/tabs/wps-overview-display.php:28
746
- #: includes/settings/wps-settings.php:115
747
  msgid "About"
748
  msgstr "Informacje"
749
 
@@ -793,7 +856,7 @@ msgstr "Wyłącz widget edytora strony/wpisu."
793
  msgid "Map type"
794
  msgstr "Typ mapy"
795
 
796
- #: includes/functions/functions.php:402
797
  #: includes/settings/tabs/wps-overview-display.php:128
798
  msgid "Google"
799
  msgstr "Google"
@@ -903,35 +966,30 @@ msgstr "Usuń"
903
  msgid "Remove data and settings, this action cannot be undone."
904
  msgstr "Usuń dane i ustawienia, ta akcja nie może być cofnięta."
905
 
906
- #: includes/settings/wps-settings.php:106
907
  msgid "General"
908
  msgstr "Ogólne"
909
 
910
- #: includes/settings/wps-settings.php:107
911
  msgid "Notifications"
912
  msgstr "Powiadomienia"
913
 
914
- #: includes/settings/wps-settings.php:108
915
  msgid "Dashboard/Overview"
916
  msgstr "Panel główny/Przegląd"
917
 
918
- #: includes/settings/wps-settings.php:112
919
- msgid "browscap"
920
- msgstr "browscap"
921
-
922
- #: includes/settings/wps-settings.php:113
923
  msgid "Maintenance"
924
  msgstr "Zarządzanie"
925
 
926
- #: includes/settings/wps-settings.php:114
927
  msgid "Removal"
928
  msgstr "Usunięcie"
929
 
930
  #: includes/settings/tabs/wps-access-level.php:85
931
- #: includes/settings/tabs/wps-browscap.php:81
932
  #: includes/settings/tabs/wps-exclusions.php:234
 
933
  #: includes/settings/tabs/wps-general.php:349
934
- #: includes/settings/tabs/wps-geoip.php:158
935
  #: includes/settings/tabs/wps-maintenance.php:84
936
  #: includes/settings/tabs/wps-notifications.php:201
937
  #: includes/settings/tabs/wps-overview-display.php:388
@@ -951,7 +1009,7 @@ msgstr "Raz na 2 tygodnie"
951
  msgid "Once Every 4 Weeks"
952
  msgstr "Raz na 4 tygodnie"
953
 
954
- #: widget.php:14 wp-statistics.php:342 wp-statistics.php:380
955
  msgid "Statistics"
956
  msgstr "Statystyki"
957
 
@@ -1023,7 +1081,7 @@ msgstr "Nazwa"
1023
  msgid "Items"
1024
  msgstr "Wpisów"
1025
 
1026
- #: widget.php:254 wp-statistics.php:557
1027
  msgid "Yesterday visit"
1028
  msgstr "Wczoraj odwiedzin"
1029
 
@@ -1051,13 +1109,13 @@ msgstr "Twoja bieżąca wersja PHP"
1051
  msgid "WP Statistics has been removed, please disable and delete it."
1052
  msgstr "WP Statistics został usunięty, proszę wyłączyć i usunąć go."
1053
 
1054
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1055
  #. Plugin Name of the plugin/theme
1056
  #: wp-statistics.php:37
1057
  msgid "WP Statistics"
1058
  msgstr "WP Statistics"
1059
 
1060
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1061
  #. Description of the plugin/theme
1062
  #: wp-statistics.php:38
1063
  msgid "Complete statistics for your WordPress site."
@@ -1087,99 +1145,99 @@ msgstr "Biblioteka GeoIP nie jest aktywna, przejdź do %s i włącz ją."
1087
  msgid "Setting page > GeoIP"
1088
  msgstr "Ustawienie strony > GeoIP"
1089
 
1090
- #: wp-statistics.php:249 wp-statistics.php:361 wp-statistics.php:434
1091
  msgid "Settings"
1092
  msgstr "Ustawienia"
1093
 
1094
- #: wp-statistics.php:261
1095
  msgid "Click here to visit the plugin on WordPress.org"
1096
  msgstr "Kliknij tutaj, aby odwiedzić wtyczkę WordPress.org"
1097
 
1098
- #: wp-statistics.php:261
1099
  msgid "Visit WordPress.org page"
1100
  msgstr "Odwiedź stronę WordPress.org"
1101
 
1102
- #: wp-statistics.php:264
1103
  msgid "Click here to rate and review this plugin on WordPress.org"
1104
  msgstr "Kliknij tutaj, aby ocenić i opisać tę wtyczkę na WordPress.org"
1105
 
1106
- #: wp-statistics.php:264
1107
  msgid "Rate this plugin"
1108
  msgstr "Oceń tę wtyczkę"
1109
 
1110
- #: wp-statistics.php:308
1111
  msgid "WP Statistics - Hits"
1112
  msgstr "WP Statistics - Wejścia"
1113
 
1114
- #: wp-statistics.php:345 wp-statistics.php:383 wp-statistics.php:421
1115
  msgid "Overview"
1116
  msgstr "Przegląd"
1117
 
1118
- #: wp-statistics.php:350 wp-statistics.php:426
1119
  msgid "Online"
1120
  msgstr "Dostępni użytkownicy"
1121
 
1122
- #: wp-statistics.php:352 wp-statistics.php:428
1123
  msgid "Referrers"
1124
  msgstr "Referenci"
1125
 
1126
- #: shortcode.php:135 wp-statistics.php:353 wp-statistics.php:429
1127
  msgid "Searches"
1128
  msgstr "Wyszukiwarki"
1129
 
1130
- #: wp-statistics.php:354 wp-statistics.php:430
1131
  msgid "Search Words"
1132
  msgstr "Wyszukiwane frazy"
1133
 
1134
- #: wp-statistics.php:355 wp-statistics.php:431
1135
  msgid "Top Visitors Today"
1136
  msgstr "Najlepsi dzisiejsi odwiedzający"
1137
 
1138
- #: wp-statistics.php:360 wp-statistics.php:433
1139
  msgid "Optimization"
1140
  msgstr "Optymizacja"
1141
 
1142
- #: wp-statistics.php:366 wp-statistics.php:397
1143
  msgid "Manual"
1144
  msgstr "Podręcznik"
1145
 
1146
- #: wp-statistics.php:412
1147
  msgid "Site"
1148
  msgstr "Teren"
1149
 
1150
- #: wp-statistics.php:413
1151
  msgid "Options"
1152
  msgstr "Opcje"
1153
 
1154
- #: wp-statistics.php:539
1155
  msgid "Today visitor"
1156
  msgstr "Dzisiaj odwiedziło"
1157
 
1158
- #: wp-statistics.php:545
1159
  msgid "Today visit"
1160
  msgstr "Dzisiaj odwiedzin"
1161
 
1162
- #: wp-statistics.php:551
1163
  msgid "Yesterday visitor"
1164
  msgstr "Wczoraj odwiedziło"
1165
 
1166
- #: wp-statistics.php:563
1167
  msgid "View Stats"
1168
  msgstr "Zobacz statystyki"
1169
 
1170
- #: wp-statistics.php:587
1171
  msgid "Download ODF file"
1172
  msgstr "Pobierz plik ODF"
1173
 
1174
- #: wp-statistics.php:588
1175
  msgid "Download HTML file"
1176
  msgstr "Pobierz plik HTML"
1177
 
1178
- #: wp-statistics.php:592
1179
  msgid "Manual file not found."
1180
  msgstr "Plik podręcznika nie znaleziony."
1181
 
1182
- #: wp-statistics.php:659 wp-statistics.php:770 wp-statistics.php:804
1183
  msgid "You do not have sufficient permissions to access this page."
1184
  msgstr "Nie posiadasz wystarczających uprawnień by wyświetlić tę stronę."
1185
 
@@ -1187,7 +1245,7 @@ msgstr "Nie posiadasz wystarczających uprawnień by wyświetlić tę stronę."
1187
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
1188
  msgstr "Tabele wtyczki nie istnieją w bazie danych! Proszę ponownie uruchomić %s rutynową instalację %s."
1189
 
1190
- #: wp-statistics.php:237
1191
  msgid "WP Statistics %s installed on"
1192
  msgstr "WP Statistics %s zainstalował się"
1193
 
@@ -1235,9 +1293,9 @@ msgstr "browscap już w aktualnej wersji!"
1235
  msgid "Browscap.ini update on"
1236
  msgstr "Browscap.ini zaktualizował się"
1237
 
1238
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1239
  #. Plugin URI of the plugin/theme
1240
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1241
  #. Author URI of the plugin/theme
1242
  msgid "http://wp-statistics.com/"
1243
  msgstr ""
@@ -1364,8 +1422,8 @@ msgid "Click to toggle"
1364
  msgstr "Kliknij, aby przełączyć"
1365
 
1366
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1367
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:346
1368
- #: wp-statistics.php:422
1369
  msgid "Browsers"
1370
  msgstr "Przeglądarki"
1371
 
@@ -1394,35 +1452,35 @@ msgstr "Uwaga: Wykluczenia nie są obecnie ustawione na zapisywanie, poniższe w
1394
  msgid "Exclusions Statistics"
1395
  msgstr "Statytyki wykluczeń"
1396
 
1397
- #: includes/functions/functions.php:879
1398
  msgid "10 Days"
1399
  msgstr "10 dni"
1400
 
1401
- #: includes/functions/functions.php:879
1402
  msgid "20 Days"
1403
  msgstr "20 dni"
1404
 
1405
- #: includes/functions/functions.php:879
1406
  msgid "30 Days"
1407
  msgstr "30 dni"
1408
 
1409
- #: includes/functions/functions.php:879
1410
  msgid "2 Months"
1411
  msgstr "2 miesiące"
1412
 
1413
- #: includes/functions/functions.php:879
1414
  msgid "3 Months"
1415
  msgstr "3 miesiące"
1416
 
1417
- #: includes/functions/functions.php:879
1418
  msgid "6 Months"
1419
  msgstr "6 miesięcy"
1420
 
1421
- #: includes/functions/functions.php:879
1422
  msgid "9 Months"
1423
  msgstr "9 miesięcy"
1424
 
1425
- #: includes/functions/functions.php:879
1426
  msgid "1 Year"
1427
  msgstr "Rok"
1428
 
@@ -1471,28 +1529,28 @@ msgstr "Odwiedziło"
1471
  msgid "Latest Search Word Statistics"
1472
  msgstr "Najnowsze statystyki szukanych fraz"
1473
 
1474
- #: includes/log/last-search.php:100 includes/log/last-visitor.php:101
1475
  #: includes/log/online.php:50 includes/log/widgets/google.map.php:84
1476
  #: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
1477
- #: includes/log/widgets/words.php:36
1478
  msgid "#hash#"
1479
  msgstr "#hash#"
1480
 
1481
- #: includes/log/last-search.php:105 includes/log/last-visitor.php:106
1482
  #: includes/log/online.php:55 includes/log/top-referring.php:71
1483
- #: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:43
1484
  #: includes/settings/tabs/wps-overview-display.php:33
1485
  #: includes/settings/tabs/wps-overview-display.php:113
1486
  msgid "Map"
1487
  msgstr "Mapa"
1488
 
1489
- #: includes/log/last-search.php:142 includes/log/last-visitor.php:139
1490
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1491
  #: includes/log/top-referring.php:125
1492
  msgid "Page"
1493
  msgstr "Strona"
1494
 
1495
- #: includes/log/last-search.php:142 includes/log/last-visitor.php:139
1496
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1497
  #: includes/log/top-referring.php:125
1498
  msgid "From"
@@ -1681,8 +1739,8 @@ msgid "Time: %s"
1681
  msgstr "Czas: %s"
1682
 
1683
  #: includes/log/widgets/top.visitors.php:31
1684
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:273
1685
- #: wp-statistics.php:349 wp-statistics.php:425
1686
  msgid "Hits"
1687
  msgstr "Wejścia"
1688
 
@@ -1724,11 +1782,11 @@ msgstr "Dane platformy %s pomyślnie usunięte."
1724
  msgid "No platform data found to remove!"
1725
  msgstr "Nie znaleziono danych platform, aby usunąć!"
1726
 
1727
- #: includes/functions/functions.php:967
1728
  msgid "%s table data deleted successfully."
1729
  msgstr "Dane tabeli %s pomyślnie usunięte."
1730
 
1731
- #: includes/functions/functions.php:971
1732
  msgid "Error, %s not emptied!"
1733
  msgstr "Błąd, %s nie opróźniono!"
1734
 
@@ -1754,7 +1812,7 @@ msgstr "Indeks bazy danych"
1754
 
1755
  #: includes/optimization/tabs/wps-optimization-database.php:25
1756
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1757
- #: wp-statistics.php:347 wp-statistics.php:423
1758
  msgid "Countries"
1759
  msgstr "Kraje"
1760
 
@@ -1770,6 +1828,7 @@ msgid "Older installs of WP Statistics allow for duplicate entries in the visito
1770
  msgstr "Starsze instalacje WP Statistics pozwalają na duplikaty wpisów w tabeli odwiedzających użytkowników w razie przypadku. Nowe instalacje chronią przed tym z unikalnym indeksem na tabeli. Aby utworzyć indeks na starszych instalacjach, zdublowane wpisy muszą być najpierw usunięte. Kliknij \"Zaktualizuj\", aby przeskanować tabelę odwiedzających użytkowników, usunąć zdublowane wpisy i dodać indeks."
1771
 
1772
  #: includes/optimization/tabs/wps-optimization-database.php:41
 
1773
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1774
  msgstr "Ta operacja może zająć dużo czasu przy instalacji z wieloma wierszami w tabeli odwiedzających użytkowników."
1775
 
@@ -1779,11 +1838,12 @@ msgstr "Starsze instalacje WP Statistics pozwalają na duplikaty wpisów w tabel
1779
 
1780
  #: includes/optimization/tabs/wps-optimization-database.php:47
1781
  #: includes/optimization/tabs/wps-optimization-database.php:77
 
1782
  msgid "Congratulations, your installation is already up to date, nothing to do."
1783
  msgstr "Gratulacje, instalacja jest już aktualna, nic nie rób."
1784
 
1785
  #: includes/optimization/tabs/wps-optimization-export.php:8
1786
- #: includes/optimization/wps-optimization.php:183
1787
  msgid "Export"
1788
  msgstr "Eksportuj"
1789
 
@@ -1836,7 +1896,7 @@ msgstr "Uwaga: Ponieważ właśnie usunięto bazę danych, należy załadować t
1836
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1837
  #: includes/settings/tabs/wps-general.php:138
1838
  #: includes/settings/tabs/wps-general.php:143 shortcode.php:133
1839
- #: wp-statistics.php:356 wp-statistics.php:432
1840
  msgid "Visitors"
1841
  msgstr "Odzwiedzający"
1842
 
@@ -2151,23 +2211,23 @@ msgstr "Adresy IP zastąpione wartościami skrótu."
2151
  msgid "Install routine complete."
2152
  msgstr "Zainstaluj rutynowe zakończona."
2153
 
2154
- #: includes/optimization/wps-optimization.php:182
2155
  msgid "Resources/Information"
2156
  msgstr "Zasoby/Informacje"
2157
 
2158
- #: includes/optimization/wps-optimization.php:184
2159
  msgid "Purging"
2160
  msgstr "Wyczyść"
2161
 
2162
- #: includes/optimization/wps-optimization.php:185
2163
  msgid "Database"
2164
  msgstr "Baza danych"
2165
 
2166
- #: includes/optimization/wps-optimization.php:186
2167
  msgid "Updates"
2168
  msgstr "Zaktualizuj"
2169
 
2170
- #: includes/optimization/wps-optimization.php:187
2171
  msgid "Historical"
2172
  msgstr "Historyczny"
2173
 
@@ -2317,7 +2377,7 @@ msgid "This is the honey pot for WP Statistics to use, do not delete."
2317
  msgstr "To jest pełna pula dla WP Statistics, aby użyć, nie usunąć."
2318
 
2319
  #: includes/settings/tabs/wps-access-level.php:23
2320
- #: includes/settings/wps-settings.php:109
2321
  msgid "Access Levels"
2322
  msgstr "Dostęp do poziomów"
2323
 
@@ -2350,8 +2410,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2350
  msgstr "Jeśli potrzebujesz bardziej niezawodne rozwiązanie do delegowania dostępu, możesz zajrzeć do %s w katalogu wtyczek WordPress."
2351
 
2352
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2353
- #: includes/settings/wps-settings.php:110 wp-statistics.php:348
2354
- #: wp-statistics.php:424
2355
  msgid "Exclusions"
2356
  msgstr "Wykluczenia"
2357
 
@@ -2522,16 +2582,21 @@ msgstr "Wykluczone kanały RSS"
2522
  msgid "Exclude the RSS feeds for registering as a hit."
2523
  msgstr "Wyklucza RSS rejestracji jako trafienie."
2524
 
2525
- #: includes/settings/tabs/wps-browscap.php:22
2526
  msgid "browscap settings"
2527
  msgstr "Ustawienia browscap"
2528
 
2529
- #: includes/settings/tabs/wps-browscap.php:27
2530
  msgid "browscap usage"
2531
  msgstr "Użycie browscap"
2532
 
2533
- #: includes/settings/tabs/wps-browscap.php:32
2534
- #: includes/settings/tabs/wps-browscap.php:56
 
 
 
 
 
2535
  #: includes/settings/tabs/wps-general.php:76
2536
  #: includes/settings/tabs/wps-general.php:92
2537
  #: includes/settings/tabs/wps-general.php:116
@@ -2547,9 +2612,6 @@ msgstr "Użycie browscap"
2547
  #: includes/settings/tabs/wps-general.php:286
2548
  #: includes/settings/tabs/wps-general.php:325
2549
  #: includes/settings/tabs/wps-general.php:341
2550
- #: includes/settings/tabs/wps-geoip.php:47
2551
- #: includes/settings/tabs/wps-geoip.php:71
2552
- #: includes/settings/tabs/wps-geoip.php:104
2553
  #: includes/settings/tabs/wps-maintenance.php:40
2554
  #: includes/settings/tabs/wps-maintenance.php:64
2555
  #: includes/settings/tabs/wps-notifications.php:69
@@ -2564,33 +2626,35 @@ msgstr "Użycie browscap"
2564
  msgid "Active"
2565
  msgstr "Uaktywnij"
2566
 
2567
- #: includes/settings/tabs/wps-browscap.php:33
2568
  msgid "The browscap database will be downloaded and used to detect robots."
2569
  msgstr "Baza danych browscap będzie pobierana i wykorzystywana do wykrywania robotów."
2570
 
2571
- #: includes/settings/tabs/wps-browscap.php:39
2572
  msgid "Update browscap Info"
2573
  msgstr "Zaktualizuj informacje browscap"
2574
 
2575
- #: includes/settings/tabs/wps-browscap.php:44
2576
  msgid "Download browscap Database"
2577
  msgstr "Pobierz bazę danych browscap"
2578
 
2579
- #: includes/settings/tabs/wps-browscap.php:45
2580
- #: includes/settings/tabs/wps-geoip.php:60
 
2581
  msgid "Save changes on this page to download the update."
2582
  msgstr "Zapisz zmiany na tej stronie, aby pobrać aktualizację."
2583
 
2584
- #: includes/settings/tabs/wps-browscap.php:51
2585
  msgid "Schedule weekly update of browscap DB"
2586
  msgstr "Harmonogram tygodniowy aktualizacji bazy danych browscap"
2587
 
2588
- #: includes/settings/tabs/wps-browscap.php:59
2589
- #: includes/settings/tabs/wps-geoip.php:74
 
2590
  msgid "Next update will be"
2591
  msgstr "Następna aktualizacja będzie za"
2592
 
2593
- #: includes/settings/tabs/wps-browscap.php:74
2594
  msgid "Download of the browscap database will be scheduled for once a week."
2595
  msgstr "Pobieranie bazy danych browscap planowane będzie raz w tygodniu."
2596
 
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: includes/optimization/wps-optimization.php:173
14
+ msgid "Search table conversion complete, %d rows added."
15
+ msgstr ""
16
+
17
+ #: includes/optimization/tabs/wps-optimization-database.php:107
18
+ msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion."
19
+ msgstr ""
20
+
21
+ #: includes/optimization/tabs/wps-optimization-database.php:86
22
+ msgid "Search Table"
23
+ msgstr ""
24
+
25
+ #: includes/optimization/tabs/wps-optimization-database.php:91
26
+ msgid "Convert"
27
+ msgstr ""
28
+
29
+ #: includes/optimization/tabs/wps-optimization-database.php:100
30
+ msgid "Convert Now!"
31
+ msgstr ""
32
+
33
+ #: includes/optimization/tabs/wps-optimization-database.php:101
34
+ msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion, however the old data must first be converted to the new format before it can be used."
35
+ msgstr ""
36
+
37
+ #: includes/log/exclusions.php:24
38
+ msgid "Referrer Spam"
39
+ msgstr ""
40
+
41
+ #: includes/settings/tabs/wps-externals.php:277
42
+ msgid "Download of the Piwik Referrer Spam Blacklist database will be scheduled for once a week."
43
+ msgstr ""
44
+
45
+ #: includes/settings/wps-settings.php:105
46
+ msgid "Externals"
47
+ msgstr ""
48
+
49
+ #: includes/settings/tabs/wps-externals.php:219
50
+ msgid "Piwik Referrer Spam Blacklist settings"
51
+ msgstr ""
52
+
53
+ #: includes/settings/tabs/wps-externals.php:254
54
+ msgid "Schedule weekly update of Piwik Referrer Spam Blacklist DB"
55
+ msgstr ""
56
+
57
+ #: includes/settings/tabs/wps-externals.php:247
58
+ msgid "Download Piwik Referrer Spam Blacklist Database"
59
+ msgstr ""
60
+
61
+ #: includes/settings/tabs/wps-externals.php:242
62
+ msgid "Update Piwik Referrer Spam Blacklist Info"
63
+ msgstr ""
64
+
65
+ #: includes/settings/tabs/wps-externals.php:236
66
+ msgid "The Piwik Referrer Spam Blacklist database will be downloaded and used to detect referrer spam."
67
+ msgstr ""
68
+
69
+ #: includes/settings/tabs/wps-externals.php:224
70
+ msgid "Referrer spam blacklist is provided by Piwik, available from %s."
71
+ msgstr ""
72
+
73
+ #: includes/settings/tabs/wps-externals.php:230
74
+ msgid "Piwik Referrer Spam Blacklist usage"
75
+ msgstr ""
76
+
77
  #: includes/settings/tabs/wps-exclusions.php:148
78
  msgid "Treat corrupt browser info as a bot"
79
  msgstr ""
222
  msgid "Have you thought about donating to WP Statistics?"
223
  msgstr ""
224
 
225
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
226
  msgid "Donate"
227
  msgstr ""
228
 
258
  msgid "Time Frame"
259
  msgstr ""
260
 
261
+ #: includes/functions/functions.php:981
262
  msgid "to"
263
  msgstr ""
264
 
265
+ #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
266
  msgid "Go"
267
  msgstr ""
268
 
306
  msgid "Filtered by"
307
  msgstr ""
308
 
309
+ #: includes/functions/functions.php:974 includes/functions/functions.php:977
310
  msgid "Range"
311
  msgstr ""
312
 
313
+ #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
314
  msgid "MM/DD/YYYY"
315
  msgstr "MM/DD/YYYY"
316
 
354
  msgid "Last 7 Days (Week)"
355
  msgstr ""
356
 
357
+ #: includes/functions/functions.php:405
358
  msgid "Yahoo!"
359
  msgstr ""
360
 
361
+ #: includes/functions/functions.php:406
362
  msgid "Yandex"
363
  msgstr ""
364
 
365
+ #: includes/functions/functions.php:402
366
  msgid "clearch.org"
367
  msgstr ""
368
 
369
+ #: includes/functions/functions.php:403
370
  msgid "DuckDuckGo"
371
  msgstr ""
372
 
373
+ #: includes/functions/functions.php:401
374
  msgid "Bing"
375
  msgstr ""
376
 
377
+ #: includes/functions/functions.php:400
378
  msgid "Baidu"
379
  msgstr ""
380
 
477
  msgstr "Dla każdej odwiedziny z jednego konta. Aktualnie %s."
478
 
479
  #: includes/settings/tabs/wps-general.php:177
480
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
481
+ #: wp-statistics.php:431
482
  msgid "Pages"
483
  msgstr "Strony"
484
 
562
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
563
  msgstr "Dodaj całkowitą linię do wykresów z wieloma wartościami, takimi jak odwołania w wyszukiwarkach"
564
 
565
+ #: includes/settings/tabs/wps-externals.php:32
566
  msgid "GeoIP settings"
567
  msgstr "Ustawienia GeoIP"
568
 
569
+ #: includes/settings/tabs/wps-externals.php:37
570
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
571
  msgstr "Usługi lokalizacyjne IP świadczone przez dane GeoLite2 utworzone przez MediaWiki, dostępne z %s."
572
 
573
+ #: includes/settings/tabs/wps-externals.php:47
574
  msgid "GeoIP collection"
575
  msgstr "Biblioteka GeoIP"
576
 
577
+ #: includes/settings/tabs/wps-externals.php:53
578
  msgid "For get more information and location (country) from visitor, enable this feature."
579
  msgstr "Dla uzyskania dodatkowych informacji i lokalizacji (kraju) z odwiedzającym, włącz tą funkcję."
580
 
581
+ #: includes/settings/tabs/wps-externals.php:59
582
  msgid "Update GeoIP Info"
583
  msgstr "Aktualizacja informacji GeoIP"
584
 
585
+ #: includes/settings/tabs/wps-externals.php:64
586
  msgid "Download GeoIP Database"
587
  msgstr "Pobierz bazę danych GeoIP"
588
 
589
+ #: includes/settings/tabs/wps-externals.php:71
590
  msgid "Schedule monthly update of GeoIP DB"
591
  msgstr "Kalendarz miesięczny aktualizacji GeoIP DB"
592
 
593
+ #: includes/settings/tabs/wps-externals.php:97
594
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
595
  msgstr "Pobranie bazy danych GeoIP będzie zaplanowane na 2 dni po pierwszym Wtorku każdego miesiąca."
596
 
597
+ #: includes/settings/tabs/wps-externals.php:98
598
  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)."
599
  msgstr "Ta opcja również pobiera bazę danych, jeśli lokalny rozmiar pliku jest mniejszy niż 1k (który zazwyczaj oznacza odcinek, pochodzący z tej wtyczk jest nadal w tym miejscu)."
600
 
601
+ #: includes/settings/tabs/wps-externals.php:104
602
  msgid "Populate missing GeoIP after update of GeoIP DB"
603
  msgstr "Wypełnienie brakujących GeoIP po aktualizacji bazy danych GeoIP"
604
 
605
+ #: includes/settings/tabs/wps-externals.php:110
606
  msgid "Update any missing GeoIP data after downloading a new database."
607
  msgstr "Zaktualizuj wszelkie brakujące dane GeoIP po pobraniu nowej bazy danych."
608
 
609
+ #: includes/settings/tabs/wps-externals.php:116
610
  msgid "Country code for private IP addresses"
611
  msgstr "Numer kierunkowy do prywatnych adresów IP"
612
 
613
+ #: includes/settings/tabs/wps-externals.php:121
614
  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."
615
  msgstr "Międzynarodowy standard kod dwuliterowy kraju (tj. US = Stany Zjednoczone, CA = Kanada, itp) dla prywatnych (bez routingu) adresów IP (np. 10.0.0.1, 192.158.1.1, 127.0.0.1, itp). Użyj \"000\" (trzy zera) do korzystania z \"Nieznany\" jako kod kraju."
616
 
617
+ #: includes/settings/tabs/wps-externals.php:132
618
  msgid "GeoIP collection is disabled due to the following reasons:"
619
  msgstr "Biblioteka GeoIP jest wyłączona z powodu następujących przyczyn:"
620
 
621
+ #: includes/settings/tabs/wps-externals.php:135
622
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
623
  msgstr "Biblioteka GeoIP wymaga PHP %s lub nowszego, obecnie jest wyłączona z powodu zainstalowanej istniejącej wersji PHP"
624
 
625
+ #: includes/settings/tabs/wps-externals.php:140
626
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
627
  msgstr "Gromadzony GeoIP wymaga rozszerzenia cURL PHP i nie jest uruchomiony w Twojej wersji PHP!"
628
 
629
+ #: includes/settings/tabs/wps-externals.php:146
630
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
631
  msgstr "Gromadzony GeoIP wymaga rozszerzenia BC Math PHP i nie jest uruchomiony w Twojej wersji PHP!"
632
 
633
+ #: includes/settings/tabs/wps-externals.php:152
634
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
635
  msgstr "Wykryty PHP Safe Mode! Biblioteka GeoIP nie jest obsługiwana w trybie bezpiecznym PHP!"
636
 
690
 
691
  #: includes/log/exclusions.php:24
692
  #: includes/settings/tabs/wps-notifications.php:76
 
693
  msgid "GeoIP"
694
  msgstr "GeoIP"
695
 
714
  msgstr "Wyślij raport, gdy wtyczka jest uaktualniania."
715
 
716
  #: includes/settings/tabs/wps-notifications.php:111
717
+ #: includes/settings/tabs/wps-notifications.php:116 schedule.php:221
718
  msgid "Statistical reporting"
719
  msgstr "Raporty statystyk"
720
 
763
  msgstr "Dowolny krótki kod obsługiwany przez Twoją instalację WordPressa, obejmuje wszystkie krótkie kody dla WP Statistics (zobacz podręcznik administratora uzyskując listę dostępnych kodów), które są obsługiwane w treści wiadomości. Oto kilka przykładów:"
764
 
765
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
766
+ #: widget.php:245 wp-statistics.php:536
767
  msgid "User Online"
768
  msgstr "Osób online"
769
 
806
  msgstr "Podsumowanie statystyk"
807
 
808
  #: includes/settings/tabs/wps-overview-display.php:28
809
+ #: includes/settings/wps-settings.php:108
810
  msgid "About"
811
  msgstr "Informacje"
812
 
856
  msgid "Map type"
857
  msgstr "Typ mapy"
858
 
859
+ #: includes/functions/functions.php:404
860
  #: includes/settings/tabs/wps-overview-display.php:128
861
  msgid "Google"
862
  msgstr "Google"
966
  msgid "Remove data and settings, this action cannot be undone."
967
  msgstr "Usuń dane i ustawienia, ta akcja nie może być cofnięta."
968
 
969
+ #: includes/settings/wps-settings.php:100
970
  msgid "General"
971
  msgstr "Ogólne"
972
 
973
+ #: includes/settings/wps-settings.php:101
974
  msgid "Notifications"
975
  msgstr "Powiadomienia"
976
 
977
+ #: includes/settings/wps-settings.php:102
978
  msgid "Dashboard/Overview"
979
  msgstr "Panel główny/Przegląd"
980
 
981
+ #: includes/settings/wps-settings.php:106
 
 
 
 
982
  msgid "Maintenance"
983
  msgstr "Zarządzanie"
984
 
985
+ #: includes/settings/wps-settings.php:107
986
  msgid "Removal"
987
  msgstr "Usunięcie"
988
 
989
  #: includes/settings/tabs/wps-access-level.php:85
 
990
  #: includes/settings/tabs/wps-exclusions.php:234
991
+ #: includes/settings/tabs/wps-externals.php:284
992
  #: includes/settings/tabs/wps-general.php:349
 
993
  #: includes/settings/tabs/wps-maintenance.php:84
994
  #: includes/settings/tabs/wps-notifications.php:201
995
  #: includes/settings/tabs/wps-overview-display.php:388
1009
  msgid "Once Every 4 Weeks"
1010
  msgstr "Raz na 4 tygodnie"
1011
 
1012
+ #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
1013
  msgid "Statistics"
1014
  msgstr "Statystyki"
1015
 
1081
  msgid "Items"
1082
  msgstr "Wpisów"
1083
 
1084
+ #: widget.php:254 wp-statistics.php:561
1085
  msgid "Yesterday visit"
1086
  msgstr "Wczoraj odwiedzin"
1087
 
1109
  msgid "WP Statistics has been removed, please disable and delete it."
1110
  msgstr "WP Statistics został usunięty, proszę wyłączyć i usunąć go."
1111
 
1112
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1113
  #. Plugin Name of the plugin/theme
1114
  #: wp-statistics.php:37
1115
  msgid "WP Statistics"
1116
  msgstr "WP Statistics"
1117
 
1118
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1119
  #. Description of the plugin/theme
1120
  #: wp-statistics.php:38
1121
  msgid "Complete statistics for your WordPress site."
1145
  msgid "Setting page > GeoIP"
1146
  msgstr "Ustawienie strony > GeoIP"
1147
 
1148
+ #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
1149
  msgid "Settings"
1150
  msgstr "Ustawienia"
1151
 
1152
+ #: wp-statistics.php:265
1153
  msgid "Click here to visit the plugin on WordPress.org"
1154
  msgstr "Kliknij tutaj, aby odwiedzić wtyczkę WordPress.org"
1155
 
1156
+ #: wp-statistics.php:265
1157
  msgid "Visit WordPress.org page"
1158
  msgstr "Odwiedź stronę WordPress.org"
1159
 
1160
+ #: wp-statistics.php:268
1161
  msgid "Click here to rate and review this plugin on WordPress.org"
1162
  msgstr "Kliknij tutaj, aby ocenić i opisać tę wtyczkę na WordPress.org"
1163
 
1164
+ #: wp-statistics.php:268
1165
  msgid "Rate this plugin"
1166
  msgstr "Oceń tę wtyczkę"
1167
 
1168
+ #: wp-statistics.php:312
1169
  msgid "WP Statistics - Hits"
1170
  msgstr "WP Statistics - Wejścia"
1171
 
1172
+ #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
1173
  msgid "Overview"
1174
  msgstr "Przegląd"
1175
 
1176
+ #: wp-statistics.php:354 wp-statistics.php:430
1177
  msgid "Online"
1178
  msgstr "Dostępni użytkownicy"
1179
 
1180
+ #: wp-statistics.php:356 wp-statistics.php:432
1181
  msgid "Referrers"
1182
  msgstr "Referenci"
1183
 
1184
+ #: shortcode.php:135 wp-statistics.php:357 wp-statistics.php:433
1185
  msgid "Searches"
1186
  msgstr "Wyszukiwarki"
1187
 
1188
+ #: wp-statistics.php:358 wp-statistics.php:434
1189
  msgid "Search Words"
1190
  msgstr "Wyszukiwane frazy"
1191
 
1192
+ #: wp-statistics.php:359 wp-statistics.php:435
1193
  msgid "Top Visitors Today"
1194
  msgstr "Najlepsi dzisiejsi odwiedzający"
1195
 
1196
+ #: wp-statistics.php:364 wp-statistics.php:437
1197
  msgid "Optimization"
1198
  msgstr "Optymizacja"
1199
 
1200
+ #: wp-statistics.php:370 wp-statistics.php:401
1201
  msgid "Manual"
1202
  msgstr "Podręcznik"
1203
 
1204
+ #: wp-statistics.php:416
1205
  msgid "Site"
1206
  msgstr "Teren"
1207
 
1208
+ #: wp-statistics.php:417
1209
  msgid "Options"
1210
  msgstr "Opcje"
1211
 
1212
+ #: wp-statistics.php:543
1213
  msgid "Today visitor"
1214
  msgstr "Dzisiaj odwiedziło"
1215
 
1216
+ #: wp-statistics.php:549
1217
  msgid "Today visit"
1218
  msgstr "Dzisiaj odwiedzin"
1219
 
1220
+ #: wp-statistics.php:555
1221
  msgid "Yesterday visitor"
1222
  msgstr "Wczoraj odwiedziło"
1223
 
1224
+ #: wp-statistics.php:567
1225
  msgid "View Stats"
1226
  msgstr "Zobacz statystyki"
1227
 
1228
+ #: wp-statistics.php:591
1229
  msgid "Download ODF file"
1230
  msgstr "Pobierz plik ODF"
1231
 
1232
+ #: wp-statistics.php:592
1233
  msgid "Download HTML file"
1234
  msgstr "Pobierz plik HTML"
1235
 
1236
+ #: wp-statistics.php:596
1237
  msgid "Manual file not found."
1238
  msgstr "Plik podręcznika nie znaleziony."
1239
 
1240
+ #: wp-statistics.php:663 wp-statistics.php:770 wp-statistics.php:804
1241
  msgid "You do not have sufficient permissions to access this page."
1242
  msgstr "Nie posiadasz wystarczających uprawnień by wyświetlić tę stronę."
1243
 
1245
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
1246
  msgstr "Tabele wtyczki nie istnieją w bazie danych! Proszę ponownie uruchomić %s rutynową instalację %s."
1247
 
1248
+ #: wp-statistics.php:241
1249
  msgid "WP Statistics %s installed on"
1250
  msgstr "WP Statistics %s zainstalował się"
1251
 
1293
  msgid "Browscap.ini update on"
1294
  msgstr "Browscap.ini zaktualizował się"
1295
 
1296
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1297
  #. Plugin URI of the plugin/theme
1298
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1299
  #. Author URI of the plugin/theme
1300
  msgid "http://wp-statistics.com/"
1301
  msgstr ""
1422
  msgstr "Kliknij, aby przełączyć"
1423
 
1424
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1425
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
1426
+ #: wp-statistics.php:426
1427
  msgid "Browsers"
1428
  msgstr "Przeglądarki"
1429
 
1452
  msgid "Exclusions Statistics"
1453
  msgstr "Statytyki wykluczeń"
1454
 
1455
+ #: includes/functions/functions.php:931
1456
  msgid "10 Days"
1457
  msgstr "10 dni"
1458
 
1459
+ #: includes/functions/functions.php:931
1460
  msgid "20 Days"
1461
  msgstr "20 dni"
1462
 
1463
+ #: includes/functions/functions.php:931
1464
  msgid "30 Days"
1465
  msgstr "30 dni"
1466
 
1467
+ #: includes/functions/functions.php:931
1468
  msgid "2 Months"
1469
  msgstr "2 miesiące"
1470
 
1471
+ #: includes/functions/functions.php:931
1472
  msgid "3 Months"
1473
  msgstr "3 miesiące"
1474
 
1475
+ #: includes/functions/functions.php:931
1476
  msgid "6 Months"
1477
  msgstr "6 miesięcy"
1478
 
1479
+ #: includes/functions/functions.php:931
1480
  msgid "9 Months"
1481
  msgstr "9 miesięcy"
1482
 
1483
+ #: includes/functions/functions.php:931
1484
  msgid "1 Year"
1485
  msgstr "Rok"
1486
 
1529
  msgid "Latest Search Word Statistics"
1530
  msgstr "Najnowsze statystyki szukanych fraz"
1531
 
1532
+ #: includes/log/last-search.php:110 includes/log/last-visitor.php:101
1533
  #: includes/log/online.php:50 includes/log/widgets/google.map.php:84
1534
  #: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
1535
+ #: includes/log/widgets/words.php:46
1536
  msgid "#hash#"
1537
  msgstr "#hash#"
1538
 
1539
+ #: includes/log/last-search.php:115 includes/log/last-visitor.php:106
1540
  #: includes/log/online.php:55 includes/log/top-referring.php:71
1541
+ #: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
1542
  #: includes/settings/tabs/wps-overview-display.php:33
1543
  #: includes/settings/tabs/wps-overview-display.php:113
1544
  msgid "Map"
1545
  msgstr "Mapa"
1546
 
1547
+ #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1548
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1549
  #: includes/log/top-referring.php:125
1550
  msgid "Page"
1551
  msgstr "Strona"
1552
 
1553
+ #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1554
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1555
  #: includes/log/top-referring.php:125
1556
  msgid "From"
1739
  msgstr "Czas: %s"
1740
 
1741
  #: includes/log/widgets/top.visitors.php:31
1742
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
1743
+ #: wp-statistics.php:353 wp-statistics.php:429
1744
  msgid "Hits"
1745
  msgstr "Wejścia"
1746
 
1782
  msgid "No platform data found to remove!"
1783
  msgstr "Nie znaleziono danych platform, aby usunąć!"
1784
 
1785
+ #: includes/functions/functions.php:1019
1786
  msgid "%s table data deleted successfully."
1787
  msgstr "Dane tabeli %s pomyślnie usunięte."
1788
 
1789
+ #: includes/functions/functions.php:1023
1790
  msgid "Error, %s not emptied!"
1791
  msgstr "Błąd, %s nie opróźniono!"
1792
 
1812
 
1813
  #: includes/optimization/tabs/wps-optimization-database.php:25
1814
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1815
+ #: wp-statistics.php:351 wp-statistics.php:427
1816
  msgid "Countries"
1817
  msgstr "Kraje"
1818
 
1828
  msgstr "Starsze instalacje WP Statistics pozwalają na duplikaty wpisów w tabeli odwiedzających użytkowników w razie przypadku. Nowe instalacje chronią przed tym z unikalnym indeksem na tabeli. Aby utworzyć indeks na starszych instalacjach, zdublowane wpisy muszą być najpierw usunięte. Kliknij \"Zaktualizuj\", aby przeskanować tabelę odwiedzających użytkowników, usunąć zdublowane wpisy i dodać indeks."
1829
 
1830
  #: includes/optimization/tabs/wps-optimization-database.php:41
1831
+ #: includes/optimization/tabs/wps-optimization-database.php:102
1832
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1833
  msgstr "Ta operacja może zająć dużo czasu przy instalacji z wieloma wierszami w tabeli odwiedzających użytkowników."
1834
 
1838
 
1839
  #: includes/optimization/tabs/wps-optimization-database.php:47
1840
  #: includes/optimization/tabs/wps-optimization-database.php:77
1841
+ #: includes/optimization/tabs/wps-optimization-database.php:108
1842
  msgid "Congratulations, your installation is already up to date, nothing to do."
1843
  msgstr "Gratulacje, instalacja jest już aktualna, nic nie rób."
1844
 
1845
  #: includes/optimization/tabs/wps-optimization-export.php:8
1846
+ #: includes/optimization/wps-optimization.php:212
1847
  msgid "Export"
1848
  msgstr "Eksportuj"
1849
 
1896
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1897
  #: includes/settings/tabs/wps-general.php:138
1898
  #: includes/settings/tabs/wps-general.php:143 shortcode.php:133
1899
+ #: wp-statistics.php:360 wp-statistics.php:436
1900
  msgid "Visitors"
1901
  msgstr "Odzwiedzający"
1902
 
2211
  msgid "Install routine complete."
2212
  msgstr "Zainstaluj rutynowe zakończona."
2213
 
2214
+ #: includes/optimization/wps-optimization.php:211
2215
  msgid "Resources/Information"
2216
  msgstr "Zasoby/Informacje"
2217
 
2218
+ #: includes/optimization/wps-optimization.php:213
2219
  msgid "Purging"
2220
  msgstr "Wyczyść"
2221
 
2222
+ #: includes/optimization/wps-optimization.php:214
2223
  msgid "Database"
2224
  msgstr "Baza danych"
2225
 
2226
+ #: includes/optimization/wps-optimization.php:215
2227
  msgid "Updates"
2228
  msgstr "Zaktualizuj"
2229
 
2230
+ #: includes/optimization/wps-optimization.php:216
2231
  msgid "Historical"
2232
  msgstr "Historyczny"
2233
 
2377
  msgstr "To jest pełna pula dla WP Statistics, aby użyć, nie usunąć."
2378
 
2379
  #: includes/settings/tabs/wps-access-level.php:23
2380
+ #: includes/settings/wps-settings.php:103
2381
  msgid "Access Levels"
2382
  msgstr "Dostęp do poziomów"
2383
 
2410
  msgstr "Jeśli potrzebujesz bardziej niezawodne rozwiązanie do delegowania dostępu, możesz zajrzeć do %s w katalogu wtyczek WordPress."
2411
 
2412
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2413
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:352
2414
+ #: wp-statistics.php:428
2415
  msgid "Exclusions"
2416
  msgstr "Wykluczenia"
2417
 
2582
  msgid "Exclude the RSS feeds for registering as a hit."
2583
  msgstr "Wyklucza RSS rejestracji jako trafienie."
2584
 
2585
+ #: includes/settings/tabs/wps-externals.php:162
2586
  msgid "browscap settings"
2587
  msgstr "Ustawienia browscap"
2588
 
2589
+ #: includes/settings/tabs/wps-externals.php:167
2590
  msgid "browscap usage"
2591
  msgstr "Użycie browscap"
2592
 
2593
+ #: includes/settings/tabs/wps-externals.php:52
2594
+ #: includes/settings/tabs/wps-externals.php:76
2595
+ #: includes/settings/tabs/wps-externals.php:109
2596
+ #: includes/settings/tabs/wps-externals.php:172
2597
+ #: includes/settings/tabs/wps-externals.php:196
2598
+ #: includes/settings/tabs/wps-externals.php:235
2599
+ #: includes/settings/tabs/wps-externals.php:259
2600
  #: includes/settings/tabs/wps-general.php:76
2601
  #: includes/settings/tabs/wps-general.php:92
2602
  #: includes/settings/tabs/wps-general.php:116
2612
  #: includes/settings/tabs/wps-general.php:286
2613
  #: includes/settings/tabs/wps-general.php:325
2614
  #: includes/settings/tabs/wps-general.php:341
 
 
 
2615
  #: includes/settings/tabs/wps-maintenance.php:40
2616
  #: includes/settings/tabs/wps-maintenance.php:64
2617
  #: includes/settings/tabs/wps-notifications.php:69
2626
  msgid "Active"
2627
  msgstr "Uaktywnij"
2628
 
2629
+ #: includes/settings/tabs/wps-externals.php:173
2630
  msgid "The browscap database will be downloaded and used to detect robots."
2631
  msgstr "Baza danych browscap będzie pobierana i wykorzystywana do wykrywania robotów."
2632
 
2633
+ #: includes/settings/tabs/wps-externals.php:179
2634
  msgid "Update browscap Info"
2635
  msgstr "Zaktualizuj informacje browscap"
2636
 
2637
+ #: includes/settings/tabs/wps-externals.php:184
2638
  msgid "Download browscap Database"
2639
  msgstr "Pobierz bazę danych browscap"
2640
 
2641
+ #: includes/settings/tabs/wps-externals.php:65
2642
+ #: includes/settings/tabs/wps-externals.php:185
2643
+ #: includes/settings/tabs/wps-externals.php:248
2644
  msgid "Save changes on this page to download the update."
2645
  msgstr "Zapisz zmiany na tej stronie, aby pobrać aktualizację."
2646
 
2647
+ #: includes/settings/tabs/wps-externals.php:191
2648
  msgid "Schedule weekly update of browscap DB"
2649
  msgstr "Harmonogram tygodniowy aktualizacji bazy danych browscap"
2650
 
2651
+ #: includes/settings/tabs/wps-externals.php:79
2652
+ #: includes/settings/tabs/wps-externals.php:199
2653
+ #: includes/settings/tabs/wps-externals.php:262
2654
  msgid "Next update will be"
2655
  msgstr "Następna aktualizacja będzie za"
2656
 
2657
+ #: includes/settings/tabs/wps-externals.php:214
2658
  msgid "Download of the browscap database will be scheduled for once a week."
2659
  msgstr "Pobieranie bazy danych browscap planowane będzie raz w tygodniu."
2660
 
languages/wp_statistics-pt_BR.mo CHANGED
Binary file
languages/wp_statistics-pt_BR.po CHANGED
@@ -10,6 +10,70 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  #: includes/settings/tabs/wps-exclusions.php:148
14
  msgid "Treat corrupt browser info as a bot"
15
  msgstr ""
@@ -158,7 +222,7 @@ msgstr ""
158
  msgid "Have you thought about donating to WP Statistics?"
159
  msgstr ""
160
 
161
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:362
162
  msgid "Donate"
163
  msgstr ""
164
 
@@ -194,11 +258,11 @@ msgstr ""
194
  msgid "Time Frame"
195
  msgstr ""
196
 
197
- #: includes/functions/functions.php:929
198
  msgid "to"
199
  msgstr ""
200
 
201
- #: includes/functions/functions.php:929 includes/log/top-visitors.php:29
202
  msgid "Go"
203
  msgstr ""
204
 
@@ -242,11 +306,11 @@ msgstr ""
242
  msgid "Filtered by"
243
  msgstr ""
244
 
245
- #: includes/functions/functions.php:922 includes/functions/functions.php:925
246
  msgid "Range"
247
  msgstr ""
248
 
249
- #: includes/functions/functions.php:929 includes/log/top-visitors.php:29
250
  msgid "MM/DD/YYYY"
251
  msgstr "MM/DD/YYYY"
252
 
@@ -290,27 +354,27 @@ msgstr ""
290
  msgid "Last 7 Days (Week)"
291
  msgstr ""
292
 
293
- #: includes/functions/functions.php:403
294
  msgid "Yahoo!"
295
  msgstr ""
296
 
297
- #: includes/functions/functions.php:404
298
  msgid "Yandex"
299
  msgstr ""
300
 
301
- #: includes/functions/functions.php:400
302
  msgid "clearch.org"
303
  msgstr ""
304
 
305
- #: includes/functions/functions.php:401
306
  msgid "DuckDuckGo"
307
  msgstr ""
308
 
309
- #: includes/functions/functions.php:399
310
  msgid "Bing"
311
  msgstr ""
312
 
313
- #: includes/functions/functions.php:398
314
  msgid "Baidu"
315
  msgstr ""
316
 
@@ -413,8 +477,8 @@ msgid "For each visit to account for several hits. Currently %s."
413
  msgstr "Para cada visita contabilizar vários hits. Atualmente a %s."
414
 
415
  #: includes/settings/tabs/wps-general.php:177
416
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:351
417
- #: wp-statistics.php:427
418
  msgid "Pages"
419
  msgstr "Páginas"
420
 
@@ -498,75 +562,75 @@ msgstr "Incluir totais"
498
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
499
  msgstr "Adicione uma linha total para gráficos com vários valores, como as referências do motor de busca"
500
 
501
- #: includes/settings/tabs/wps-geoip.php:27
502
  msgid "GeoIP settings"
503
  msgstr "GeoIP configurações"
504
 
505
- #: includes/settings/tabs/wps-geoip.php:32
506
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
507
  msgstr "Serviços de localização de IP fornecidos pelo GeoLite2 dados criados pela MaxMind, disponível a partir de %s."
508
 
509
- #: includes/settings/tabs/wps-geoip.php:42
510
  msgid "GeoIP collection"
511
  msgstr "Coleção GeoIP"
512
 
513
- #: includes/settings/tabs/wps-geoip.php:48
514
  msgid "For get more information and location (country) from visitor, enable this feature."
515
  msgstr "Para obter mais informações e localização (país) do visitante, habilitar esse recurso."
516
 
517
- #: includes/settings/tabs/wps-geoip.php:54
518
  msgid "Update GeoIP Info"
519
  msgstr "Atualizar informações de GeoIP"
520
 
521
- #: includes/settings/tabs/wps-geoip.php:59
522
  msgid "Download GeoIP Database"
523
  msgstr "Baixar GeoIP Database"
524
 
525
- #: includes/settings/tabs/wps-geoip.php:66
526
  msgid "Schedule monthly update of GeoIP DB"
527
  msgstr "Agendar a atualização mensal do GeoIP DB"
528
 
529
- #: includes/settings/tabs/wps-geoip.php:92
530
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
531
  msgstr "Download do banco de dados GeoIP será agendado para 2 dias após a primeira terça-feira do mês."
532
 
533
- #: includes/settings/tabs/wps-geoip.php:93
534
  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)."
535
  msgstr "Esta opção também vai baixar o banco de dados, se o tamanho do arquivo local é menos de 1k (o que geralmente significa que o esboço que vem com o plugin ainda está em vigor)."
536
 
537
- #: includes/settings/tabs/wps-geoip.php:99
538
  msgid "Populate missing GeoIP after update of GeoIP DB"
539
  msgstr "Preencher GeoIP ausente após a atualização do GeoIP DB"
540
 
541
- #: includes/settings/tabs/wps-geoip.php:105
542
  msgid "Update any missing GeoIP data after downloading a new database."
543
  msgstr "Atualize quaisquer dados GeoIP desaparecidos depois de baixar um novo banco de dados."
544
 
545
- #: includes/settings/tabs/wps-geoip.php:111
546
  msgid "Country code for private IP addresses"
547
  msgstr ""
548
 
549
- #: includes/settings/tabs/wps-geoip.php:116
550
  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."
551
  msgstr ""
552
 
553
- #: includes/settings/tabs/wps-geoip.php:127
554
  msgid "GeoIP collection is disabled due to the following reasons:"
555
  msgstr "Coleção GeoIP está desativada devido às seguintes razões:"
556
 
557
- #: includes/settings/tabs/wps-geoip.php:130
558
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
559
  msgstr "Coleção GeoIP requer PHP %s ou acima, está atualmente desativado devido a ser de versão PHP instalado "
560
 
561
- #: includes/settings/tabs/wps-geoip.php:135
562
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
563
  msgstr "Coleção GeoIP requer a extensão PHP cURL e não está em sua versão de PHP!"
564
 
565
- #: includes/settings/tabs/wps-geoip.php:141
566
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
567
  msgstr "Coleção GeoIP requer a extensão PHP de matemática do BC e não está em sua versão de PHP!"
568
 
569
- #: includes/settings/tabs/wps-geoip.php:147
570
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
571
  msgstr "Modo de segurança PHP detectado! GeoIP coleção não é compatível com o modo de segurança do PHP habilitado!"
572
 
@@ -626,7 +690,6 @@ msgstr ""
626
 
627
  #: includes/log/exclusions.php:24
628
  #: includes/settings/tabs/wps-notifications.php:76
629
- #: includes/settings/wps-settings.php:111
630
  msgid "GeoIP"
631
  msgstr "GeoIP"
632
 
@@ -651,7 +714,7 @@ msgid "Send a report whenever the plugin is upgraded."
651
  msgstr ""
652
 
653
  #: includes/settings/tabs/wps-notifications.php:111
654
- #: includes/settings/tabs/wps-notifications.php:116 schedule.php:199
655
  msgid "Statistical reporting"
656
  msgstr "Emissão de relatórios estatísticos"
657
 
@@ -700,7 +763,7 @@ msgid "Any shortcode supported by your installation of WordPress, include all sh
700
  msgstr ""
701
 
702
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
703
- #: widget.php:245 wp-statistics.php:532
704
  msgid "User Online"
705
  msgstr "Usuário on-line"
706
 
@@ -743,7 +806,7 @@ msgid "Summary Statistics"
743
  msgstr "Estatísticas de resumo"
744
 
745
  #: includes/settings/tabs/wps-overview-display.php:28
746
- #: includes/settings/wps-settings.php:115
747
  msgid "About"
748
  msgstr "Sobre"
749
 
@@ -793,7 +856,7 @@ msgstr ""
793
  msgid "Map type"
794
  msgstr "Tipo de mapa"
795
 
796
- #: includes/functions/functions.php:402
797
  #: includes/settings/tabs/wps-overview-display.php:128
798
  msgid "Google"
799
  msgstr "Google"
@@ -903,35 +966,30 @@ msgstr ""
903
  msgid "Remove data and settings, this action cannot be undone."
904
  msgstr ""
905
 
906
- #: includes/settings/wps-settings.php:106
907
  msgid "General"
908
  msgstr "Geral"
909
 
910
- #: includes/settings/wps-settings.php:107
911
  msgid "Notifications"
912
  msgstr ""
913
 
914
- #: includes/settings/wps-settings.php:108
915
  msgid "Dashboard/Overview"
916
  msgstr ""
917
 
918
- #: includes/settings/wps-settings.php:112
919
- msgid "browscap"
920
- msgstr "browscap"
921
-
922
- #: includes/settings/wps-settings.php:113
923
  msgid "Maintenance"
924
  msgstr "Manutenção"
925
 
926
- #: includes/settings/wps-settings.php:114
927
  msgid "Removal"
928
  msgstr ""
929
 
930
  #: includes/settings/tabs/wps-access-level.php:85
931
- #: includes/settings/tabs/wps-browscap.php:81
932
  #: includes/settings/tabs/wps-exclusions.php:234
 
933
  #: includes/settings/tabs/wps-general.php:349
934
- #: includes/settings/tabs/wps-geoip.php:158
935
  #: includes/settings/tabs/wps-maintenance.php:84
936
  #: includes/settings/tabs/wps-notifications.php:201
937
  #: includes/settings/tabs/wps-overview-display.php:388
@@ -951,7 +1009,7 @@ msgstr "Uma vez a cada 2 semanas"
951
  msgid "Once Every 4 Weeks"
952
  msgstr "Uma vez a cada 4 semanas"
953
 
954
- #: widget.php:14 wp-statistics.php:342 wp-statistics.php:380
955
  msgid "Statistics"
956
  msgstr "Estatísticas"
957
 
@@ -1023,7 +1081,7 @@ msgstr "Nome"
1023
  msgid "Items"
1024
  msgstr "Itens"
1025
 
1026
- #: widget.php:254 wp-statistics.php:557
1027
  msgid "Yesterday visit"
1028
  msgstr "Visita de ontem"
1029
 
@@ -1051,13 +1109,13 @@ msgstr ""
1051
  msgid "WP Statistics has been removed, please disable and delete it."
1052
  msgstr ""
1053
 
1054
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1055
  #. Plugin Name of the plugin/theme
1056
  #: wp-statistics.php:37
1057
  msgid "WP Statistics"
1058
  msgstr "Estatísticas da WP"
1059
 
1060
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1061
  #. Description of the plugin/theme
1062
  #: wp-statistics.php:38
1063
  msgid "Complete statistics for your WordPress site."
@@ -1087,99 +1145,99 @@ msgstr "GeoIP coleção não está ativa, por favor, vá para %s e habilitar ess
1087
  msgid "Setting page > GeoIP"
1088
  msgstr "Página de configuração > GeoIP"
1089
 
1090
- #: wp-statistics.php:249 wp-statistics.php:361 wp-statistics.php:434
1091
  msgid "Settings"
1092
  msgstr "Configurações"
1093
 
1094
- #: wp-statistics.php:261
1095
  msgid "Click here to visit the plugin on WordPress.org"
1096
  msgstr "Clique aqui para visitar o plugin no WordPress.org"
1097
 
1098
- #: wp-statistics.php:261
1099
  msgid "Visit WordPress.org page"
1100
  msgstr "Visite a página do WordPress.org"
1101
 
1102
- #: wp-statistics.php:264
1103
  msgid "Click here to rate and review this plugin on WordPress.org"
1104
  msgstr "Clique aqui para avaliar e revisar este plugin no WordPress.org"
1105
 
1106
- #: wp-statistics.php:264
1107
  msgid "Rate this plugin"
1108
  msgstr "Classifique este plugin"
1109
 
1110
- #: wp-statistics.php:308
1111
  msgid "WP Statistics - Hits"
1112
  msgstr "WP-Statistics - Hits"
1113
 
1114
- #: wp-statistics.php:345 wp-statistics.php:383 wp-statistics.php:421
1115
  msgid "Overview"
1116
  msgstr "Visão geral"
1117
 
1118
- #: wp-statistics.php:350 wp-statistics.php:426
1119
  msgid "Online"
1120
  msgstr ""
1121
 
1122
- #: wp-statistics.php:352 wp-statistics.php:428
1123
  msgid "Referrers"
1124
  msgstr ""
1125
 
1126
- #: shortcode.php:135 wp-statistics.php:353 wp-statistics.php:429
1127
  msgid "Searches"
1128
  msgstr "Pesquisas"
1129
 
1130
- #: wp-statistics.php:354 wp-statistics.php:430
1131
  msgid "Search Words"
1132
  msgstr "Palavras de pesquisa"
1133
 
1134
- #: wp-statistics.php:355 wp-statistics.php:431
1135
  msgid "Top Visitors Today"
1136
  msgstr ""
1137
 
1138
- #: wp-statistics.php:360 wp-statistics.php:433
1139
  msgid "Optimization"
1140
  msgstr "Otimização"
1141
 
1142
- #: wp-statistics.php:366 wp-statistics.php:397
1143
  msgid "Manual"
1144
  msgstr "Manual"
1145
 
1146
- #: wp-statistics.php:412
1147
  msgid "Site"
1148
  msgstr ""
1149
 
1150
- #: wp-statistics.php:413
1151
  msgid "Options"
1152
  msgstr ""
1153
 
1154
- #: wp-statistics.php:539
1155
  msgid "Today visitor"
1156
  msgstr "Visitantes hoje"
1157
 
1158
- #: wp-statistics.php:545
1159
  msgid "Today visit"
1160
  msgstr "Hoje visitamos"
1161
 
1162
- #: wp-statistics.php:551
1163
  msgid "Yesterday visitor"
1164
  msgstr "Ontem o visitante"
1165
 
1166
- #: wp-statistics.php:563
1167
  msgid "View Stats"
1168
  msgstr "View Stats"
1169
 
1170
- #: wp-statistics.php:587
1171
  msgid "Download ODF file"
1172
  msgstr "Baixar arquivo ODF"
1173
 
1174
- #: wp-statistics.php:588
1175
  msgid "Download HTML file"
1176
  msgstr "Baixar arquivo HTML"
1177
 
1178
- #: wp-statistics.php:592
1179
  msgid "Manual file not found."
1180
  msgstr "Manual arquivo não encontrado."
1181
 
1182
- #: wp-statistics.php:659 wp-statistics.php:770 wp-statistics.php:804
1183
  msgid "You do not have sufficient permissions to access this page."
1184
  msgstr "Você não tem permissões suficientes para acessar esta página."
1185
 
@@ -1187,7 +1245,7 @@ msgstr "Você não tem permissões suficientes para acessar esta página."
1187
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
1188
  msgstr ""
1189
 
1190
- #: wp-statistics.php:237
1191
  msgid "WP Statistics %s installed on"
1192
  msgstr ""
1193
 
@@ -1235,9 +1293,9 @@ msgstr "browscap já na versão atual!"
1235
  msgid "Browscap.ini update on"
1236
  msgstr ""
1237
 
1238
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1239
  #. Plugin URI of the plugin/theme
1240
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1241
  #. Author URI of the plugin/theme
1242
  msgid "http://wp-statistics.com/"
1243
  msgstr "http://WP-Statistics.com/"
@@ -1364,8 +1422,8 @@ msgid "Click to toggle"
1364
  msgstr "Clique para alternar entre"
1365
 
1366
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1367
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:346
1368
- #: wp-statistics.php:422
1369
  msgid "Browsers"
1370
  msgstr "Navegadores"
1371
 
@@ -1394,35 +1452,35 @@ msgstr "Atenção: Exclusão não estão atualmente definidas para ser gravado,
1394
  msgid "Exclusions Statistics"
1395
  msgstr "Estatísticas de exclusões"
1396
 
1397
- #: includes/functions/functions.php:879
1398
  msgid "10 Days"
1399
  msgstr "10 dias"
1400
 
1401
- #: includes/functions/functions.php:879
1402
  msgid "20 Days"
1403
  msgstr "20 dias"
1404
 
1405
- #: includes/functions/functions.php:879
1406
  msgid "30 Days"
1407
  msgstr "30 dias"
1408
 
1409
- #: includes/functions/functions.php:879
1410
  msgid "2 Months"
1411
  msgstr "2 meses"
1412
 
1413
- #: includes/functions/functions.php:879
1414
  msgid "3 Months"
1415
  msgstr "3 meses"
1416
 
1417
- #: includes/functions/functions.php:879
1418
  msgid "6 Months"
1419
  msgstr "6 meses"
1420
 
1421
- #: includes/functions/functions.php:879
1422
  msgid "9 Months"
1423
  msgstr "9 meses"
1424
 
1425
- #: includes/functions/functions.php:879
1426
  msgid "1 Year"
1427
  msgstr "1 ano"
1428
 
@@ -1471,28 +1529,28 @@ msgstr "Visitante"
1471
  msgid "Latest Search Word Statistics"
1472
  msgstr "Últimas estatísticas de palavra de busca"
1473
 
1474
- #: includes/log/last-search.php:100 includes/log/last-visitor.php:101
1475
  #: includes/log/online.php:50 includes/log/widgets/google.map.php:84
1476
  #: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
1477
- #: includes/log/widgets/words.php:36
1478
  msgid "#hash#"
1479
  msgstr "#hash #"
1480
 
1481
- #: includes/log/last-search.php:105 includes/log/last-visitor.php:106
1482
  #: includes/log/online.php:55 includes/log/top-referring.php:71
1483
- #: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:43
1484
  #: includes/settings/tabs/wps-overview-display.php:33
1485
  #: includes/settings/tabs/wps-overview-display.php:113
1486
  msgid "Map"
1487
  msgstr "Mapa"
1488
 
1489
- #: includes/log/last-search.php:142 includes/log/last-visitor.php:139
1490
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1491
  #: includes/log/top-referring.php:125
1492
  msgid "Page"
1493
  msgstr "Página de vídeo"
1494
 
1495
- #: includes/log/last-search.php:142 includes/log/last-visitor.php:139
1496
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1497
  #: includes/log/top-referring.php:125
1498
  msgid "From"
@@ -1681,8 +1739,8 @@ msgid "Time: %s"
1681
  msgstr "Tempo: %s"
1682
 
1683
  #: includes/log/widgets/top.visitors.php:31
1684
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:273
1685
- #: wp-statistics.php:349 wp-statistics.php:425
1686
  msgid "Hits"
1687
  msgstr "Hits"
1688
 
@@ -1724,11 +1782,11 @@ msgstr "dados de %s plataformas excluídos com sucesso."
1724
  msgid "No platform data found to remove!"
1725
  msgstr ""
1726
 
1727
- #: includes/functions/functions.php:967
1728
  msgid "%s table data deleted successfully."
1729
  msgstr "dados da tabela %s excluídos com sucesso."
1730
 
1731
- #: includes/functions/functions.php:971
1732
  msgid "Error, %s not emptied!"
1733
  msgstr "Erro, %s não esvaziado!"
1734
 
@@ -1754,7 +1812,7 @@ msgstr "Índice de banco de dados"
1754
 
1755
  #: includes/optimization/tabs/wps-optimization-database.php:25
1756
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1757
- #: wp-statistics.php:347 wp-statistics.php:423
1758
  msgid "Countries"
1759
  msgstr "Países"
1760
 
@@ -1770,6 +1828,7 @@ msgid "Older installs of WP Statistics allow for duplicate entries in the visito
1770
  msgstr "Instala mais velhas de estatísticas WP permite entradas duplicadas na tabela de visitantes em um caso de canto. Instala mais recente protege contra isso, com um índice exclusivo na tabela. Para criar o índice o mais velho instala entradas duplicadas deve ser eliminado primeiro. \"Update Now, clicando em\" irá examinar a tabela de vistitors, exclua as entradas duplicadas e adicionar o índice."
1771
 
1772
  #: includes/optimization/tabs/wps-optimization-database.php:41
 
1773
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1774
  msgstr "Esta operação pode levar um longo tempo em instalações com muitas linhas na tabela de visitantes."
1775
 
@@ -1779,11 +1838,12 @@ msgstr "Instala mais velhas de estatísticas WP permite entradas duplicadas na t
1779
 
1780
  #: includes/optimization/tabs/wps-optimization-database.php:47
1781
  #: includes/optimization/tabs/wps-optimization-database.php:77
 
1782
  msgid "Congratulations, your installation is already up to date, nothing to do."
1783
  msgstr "Parabéns, sua instalação é já até à data, nada a fazer."
1784
 
1785
  #: includes/optimization/tabs/wps-optimization-export.php:8
1786
- #: includes/optimization/wps-optimization.php:183
1787
  msgid "Export"
1788
  msgstr "Exportação"
1789
 
@@ -1836,7 +1896,7 @@ msgstr ""
1836
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1837
  #: includes/settings/tabs/wps-general.php:138
1838
  #: includes/settings/tabs/wps-general.php:143 shortcode.php:133
1839
- #: wp-statistics.php:356 wp-statistics.php:432
1840
  msgid "Visitors"
1841
  msgstr "Visitantes"
1842
 
@@ -2151,23 +2211,23 @@ msgstr "Endereços IP substituído com valores de hash."
2151
  msgid "Install routine complete."
2152
  msgstr "Instale a rotina completa."
2153
 
2154
- #: includes/optimization/wps-optimization.php:182
2155
  msgid "Resources/Information"
2156
  msgstr "Recursos/informação"
2157
 
2158
- #: includes/optimization/wps-optimization.php:184
2159
  msgid "Purging"
2160
  msgstr "Purga"
2161
 
2162
- #: includes/optimization/wps-optimization.php:185
2163
  msgid "Database"
2164
  msgstr "Banco de dados"
2165
 
2166
- #: includes/optimization/wps-optimization.php:186
2167
  msgid "Updates"
2168
  msgstr "Atualizações"
2169
 
2170
- #: includes/optimization/wps-optimization.php:187
2171
  msgid "Historical"
2172
  msgstr ""
2173
 
@@ -2317,7 +2377,7 @@ msgid "This is the honey pot for WP Statistics to use, do not delete."
2317
  msgstr ""
2318
 
2319
  #: includes/settings/tabs/wps-access-level.php:23
2320
- #: includes/settings/wps-settings.php:109
2321
  msgid "Access Levels"
2322
  msgstr "Níveis de acesso"
2323
 
@@ -2350,8 +2410,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2350
  msgstr "Se você precisa de uma solução mais robusta para delegar acesso, que você pode querer olhar para %s no diretório plugin WordPress."
2351
 
2352
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2353
- #: includes/settings/wps-settings.php:110 wp-statistics.php:348
2354
- #: wp-statistics.php:424
2355
  msgid "Exclusions"
2356
  msgstr "Exclusões"
2357
 
@@ -2522,16 +2582,21 @@ msgstr ""
2522
  msgid "Exclude the RSS feeds for registering as a hit."
2523
  msgstr ""
2524
 
2525
- #: includes/settings/tabs/wps-browscap.php:22
2526
  msgid "browscap settings"
2527
  msgstr "browscap configurações"
2528
 
2529
- #: includes/settings/tabs/wps-browscap.php:27
2530
  msgid "browscap usage"
2531
  msgstr "uso browscap"
2532
 
2533
- #: includes/settings/tabs/wps-browscap.php:32
2534
- #: includes/settings/tabs/wps-browscap.php:56
 
 
 
 
 
2535
  #: includes/settings/tabs/wps-general.php:76
2536
  #: includes/settings/tabs/wps-general.php:92
2537
  #: includes/settings/tabs/wps-general.php:116
@@ -2547,9 +2612,6 @@ msgstr "uso browscap"
2547
  #: includes/settings/tabs/wps-general.php:286
2548
  #: includes/settings/tabs/wps-general.php:325
2549
  #: includes/settings/tabs/wps-general.php:341
2550
- #: includes/settings/tabs/wps-geoip.php:47
2551
- #: includes/settings/tabs/wps-geoip.php:71
2552
- #: includes/settings/tabs/wps-geoip.php:104
2553
  #: includes/settings/tabs/wps-maintenance.php:40
2554
  #: includes/settings/tabs/wps-maintenance.php:64
2555
  #: includes/settings/tabs/wps-notifications.php:69
@@ -2564,33 +2626,35 @@ msgstr "uso browscap"
2564
  msgid "Active"
2565
  msgstr "Ativo"
2566
 
2567
- #: includes/settings/tabs/wps-browscap.php:33
2568
  msgid "The browscap database will be downloaded and used to detect robots."
2569
  msgstr "Banco de dados browscap vai ser baixado e usado para detectar os robôs."
2570
 
2571
- #: includes/settings/tabs/wps-browscap.php:39
2572
  msgid "Update browscap Info"
2573
  msgstr "Atualização browscap informação"
2574
 
2575
- #: includes/settings/tabs/wps-browscap.php:44
2576
  msgid "Download browscap Database"
2577
  msgstr "Baixar browscap banco de dados"
2578
 
2579
- #: includes/settings/tabs/wps-browscap.php:45
2580
- #: includes/settings/tabs/wps-geoip.php:60
 
2581
  msgid "Save changes on this page to download the update."
2582
  msgstr "Salve as alterações nesta página para baixar a atualização."
2583
 
2584
- #: includes/settings/tabs/wps-browscap.php:51
2585
  msgid "Schedule weekly update of browscap DB"
2586
  msgstr "Agendar a atualização semanal do browscap DB"
2587
 
2588
- #: includes/settings/tabs/wps-browscap.php:59
2589
- #: includes/settings/tabs/wps-geoip.php:74
 
2590
  msgid "Next update will be"
2591
  msgstr "Próxima atualização será"
2592
 
2593
- #: includes/settings/tabs/wps-browscap.php:74
2594
  msgid "Download of the browscap database will be scheduled for once a week."
2595
  msgstr "Download do banco de dados browscap será agendado pelo menos uma vez por semana."
2596
 
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: includes/optimization/wps-optimization.php:173
14
+ msgid "Search table conversion complete, %d rows added."
15
+ msgstr ""
16
+
17
+ #: includes/optimization/tabs/wps-optimization-database.php:107
18
+ msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion."
19
+ msgstr ""
20
+
21
+ #: includes/optimization/tabs/wps-optimization-database.php:86
22
+ msgid "Search Table"
23
+ msgstr ""
24
+
25
+ #: includes/optimization/tabs/wps-optimization-database.php:91
26
+ msgid "Convert"
27
+ msgstr ""
28
+
29
+ #: includes/optimization/tabs/wps-optimization-database.php:100
30
+ msgid "Convert Now!"
31
+ msgstr ""
32
+
33
+ #: includes/optimization/tabs/wps-optimization-database.php:101
34
+ msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion, however the old data must first be converted to the new format before it can be used."
35
+ msgstr ""
36
+
37
+ #: includes/log/exclusions.php:24
38
+ msgid "Referrer Spam"
39
+ msgstr ""
40
+
41
+ #: includes/settings/tabs/wps-externals.php:277
42
+ msgid "Download of the Piwik Referrer Spam Blacklist database will be scheduled for once a week."
43
+ msgstr ""
44
+
45
+ #: includes/settings/wps-settings.php:105
46
+ msgid "Externals"
47
+ msgstr ""
48
+
49
+ #: includes/settings/tabs/wps-externals.php:219
50
+ msgid "Piwik Referrer Spam Blacklist settings"
51
+ msgstr ""
52
+
53
+ #: includes/settings/tabs/wps-externals.php:254
54
+ msgid "Schedule weekly update of Piwik Referrer Spam Blacklist DB"
55
+ msgstr ""
56
+
57
+ #: includes/settings/tabs/wps-externals.php:247
58
+ msgid "Download Piwik Referrer Spam Blacklist Database"
59
+ msgstr ""
60
+
61
+ #: includes/settings/tabs/wps-externals.php:242
62
+ msgid "Update Piwik Referrer Spam Blacklist Info"
63
+ msgstr ""
64
+
65
+ #: includes/settings/tabs/wps-externals.php:236
66
+ msgid "The Piwik Referrer Spam Blacklist database will be downloaded and used to detect referrer spam."
67
+ msgstr ""
68
+
69
+ #: includes/settings/tabs/wps-externals.php:224
70
+ msgid "Referrer spam blacklist is provided by Piwik, available from %s."
71
+ msgstr ""
72
+
73
+ #: includes/settings/tabs/wps-externals.php:230
74
+ msgid "Piwik Referrer Spam Blacklist usage"
75
+ msgstr ""
76
+
77
  #: includes/settings/tabs/wps-exclusions.php:148
78
  msgid "Treat corrupt browser info as a bot"
79
  msgstr ""
222
  msgid "Have you thought about donating to WP Statistics?"
223
  msgstr ""
224
 
225
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
226
  msgid "Donate"
227
  msgstr ""
228
 
258
  msgid "Time Frame"
259
  msgstr ""
260
 
261
+ #: includes/functions/functions.php:981
262
  msgid "to"
263
  msgstr ""
264
 
265
+ #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
266
  msgid "Go"
267
  msgstr ""
268
 
306
  msgid "Filtered by"
307
  msgstr ""
308
 
309
+ #: includes/functions/functions.php:974 includes/functions/functions.php:977
310
  msgid "Range"
311
  msgstr ""
312
 
313
+ #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
314
  msgid "MM/DD/YYYY"
315
  msgstr "MM/DD/YYYY"
316
 
354
  msgid "Last 7 Days (Week)"
355
  msgstr ""
356
 
357
+ #: includes/functions/functions.php:405
358
  msgid "Yahoo!"
359
  msgstr ""
360
 
361
+ #: includes/functions/functions.php:406
362
  msgid "Yandex"
363
  msgstr ""
364
 
365
+ #: includes/functions/functions.php:402
366
  msgid "clearch.org"
367
  msgstr ""
368
 
369
+ #: includes/functions/functions.php:403
370
  msgid "DuckDuckGo"
371
  msgstr ""
372
 
373
+ #: includes/functions/functions.php:401
374
  msgid "Bing"
375
  msgstr ""
376
 
377
+ #: includes/functions/functions.php:400
378
  msgid "Baidu"
379
  msgstr ""
380
 
477
  msgstr "Para cada visita contabilizar vários hits. Atualmente a %s."
478
 
479
  #: includes/settings/tabs/wps-general.php:177
480
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
481
+ #: wp-statistics.php:431
482
  msgid "Pages"
483
  msgstr "Páginas"
484
 
562
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
563
  msgstr "Adicione uma linha total para gráficos com vários valores, como as referências do motor de busca"
564
 
565
+ #: includes/settings/tabs/wps-externals.php:32
566
  msgid "GeoIP settings"
567
  msgstr "GeoIP configurações"
568
 
569
+ #: includes/settings/tabs/wps-externals.php:37
570
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
571
  msgstr "Serviços de localização de IP fornecidos pelo GeoLite2 dados criados pela MaxMind, disponível a partir de %s."
572
 
573
+ #: includes/settings/tabs/wps-externals.php:47
574
  msgid "GeoIP collection"
575
  msgstr "Coleção GeoIP"
576
 
577
+ #: includes/settings/tabs/wps-externals.php:53
578
  msgid "For get more information and location (country) from visitor, enable this feature."
579
  msgstr "Para obter mais informações e localização (país) do visitante, habilitar esse recurso."
580
 
581
+ #: includes/settings/tabs/wps-externals.php:59
582
  msgid "Update GeoIP Info"
583
  msgstr "Atualizar informações de GeoIP"
584
 
585
+ #: includes/settings/tabs/wps-externals.php:64
586
  msgid "Download GeoIP Database"
587
  msgstr "Baixar GeoIP Database"
588
 
589
+ #: includes/settings/tabs/wps-externals.php:71
590
  msgid "Schedule monthly update of GeoIP DB"
591
  msgstr "Agendar a atualização mensal do GeoIP DB"
592
 
593
+ #: includes/settings/tabs/wps-externals.php:97
594
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
595
  msgstr "Download do banco de dados GeoIP será agendado para 2 dias após a primeira terça-feira do mês."
596
 
597
+ #: includes/settings/tabs/wps-externals.php:98
598
  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)."
599
  msgstr "Esta opção também vai baixar o banco de dados, se o tamanho do arquivo local é menos de 1k (o que geralmente significa que o esboço que vem com o plugin ainda está em vigor)."
600
 
601
+ #: includes/settings/tabs/wps-externals.php:104
602
  msgid "Populate missing GeoIP after update of GeoIP DB"
603
  msgstr "Preencher GeoIP ausente após a atualização do GeoIP DB"
604
 
605
+ #: includes/settings/tabs/wps-externals.php:110
606
  msgid "Update any missing GeoIP data after downloading a new database."
607
  msgstr "Atualize quaisquer dados GeoIP desaparecidos depois de baixar um novo banco de dados."
608
 
609
+ #: includes/settings/tabs/wps-externals.php:116
610
  msgid "Country code for private IP addresses"
611
  msgstr ""
612
 
613
+ #: includes/settings/tabs/wps-externals.php:121
614
  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."
615
  msgstr ""
616
 
617
+ #: includes/settings/tabs/wps-externals.php:132
618
  msgid "GeoIP collection is disabled due to the following reasons:"
619
  msgstr "Coleção GeoIP está desativada devido às seguintes razões:"
620
 
621
+ #: includes/settings/tabs/wps-externals.php:135
622
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
623
  msgstr "Coleção GeoIP requer PHP %s ou acima, está atualmente desativado devido a ser de versão PHP instalado "
624
 
625
+ #: includes/settings/tabs/wps-externals.php:140
626
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
627
  msgstr "Coleção GeoIP requer a extensão PHP cURL e não está em sua versão de PHP!"
628
 
629
+ #: includes/settings/tabs/wps-externals.php:146
630
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
631
  msgstr "Coleção GeoIP requer a extensão PHP de matemática do BC e não está em sua versão de PHP!"
632
 
633
+ #: includes/settings/tabs/wps-externals.php:152
634
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
635
  msgstr "Modo de segurança PHP detectado! GeoIP coleção não é compatível com o modo de segurança do PHP habilitado!"
636
 
690
 
691
  #: includes/log/exclusions.php:24
692
  #: includes/settings/tabs/wps-notifications.php:76
 
693
  msgid "GeoIP"
694
  msgstr "GeoIP"
695
 
714
  msgstr ""
715
 
716
  #: includes/settings/tabs/wps-notifications.php:111
717
+ #: includes/settings/tabs/wps-notifications.php:116 schedule.php:221
718
  msgid "Statistical reporting"
719
  msgstr "Emissão de relatórios estatísticos"
720
 
763
  msgstr ""
764
 
765
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
766
+ #: widget.php:245 wp-statistics.php:536
767
  msgid "User Online"
768
  msgstr "Usuário on-line"
769
 
806
  msgstr "Estatísticas de resumo"
807
 
808
  #: includes/settings/tabs/wps-overview-display.php:28
809
+ #: includes/settings/wps-settings.php:108
810
  msgid "About"
811
  msgstr "Sobre"
812
 
856
  msgid "Map type"
857
  msgstr "Tipo de mapa"
858
 
859
+ #: includes/functions/functions.php:404
860
  #: includes/settings/tabs/wps-overview-display.php:128
861
  msgid "Google"
862
  msgstr "Google"
966
  msgid "Remove data and settings, this action cannot be undone."
967
  msgstr ""
968
 
969
+ #: includes/settings/wps-settings.php:100
970
  msgid "General"
971
  msgstr "Geral"
972
 
973
+ #: includes/settings/wps-settings.php:101
974
  msgid "Notifications"
975
  msgstr ""
976
 
977
+ #: includes/settings/wps-settings.php:102
978
  msgid "Dashboard/Overview"
979
  msgstr ""
980
 
981
+ #: includes/settings/wps-settings.php:106
 
 
 
 
982
  msgid "Maintenance"
983
  msgstr "Manutenção"
984
 
985
+ #: includes/settings/wps-settings.php:107
986
  msgid "Removal"
987
  msgstr ""
988
 
989
  #: includes/settings/tabs/wps-access-level.php:85
 
990
  #: includes/settings/tabs/wps-exclusions.php:234
991
+ #: includes/settings/tabs/wps-externals.php:284
992
  #: includes/settings/tabs/wps-general.php:349
 
993
  #: includes/settings/tabs/wps-maintenance.php:84
994
  #: includes/settings/tabs/wps-notifications.php:201
995
  #: includes/settings/tabs/wps-overview-display.php:388
1009
  msgid "Once Every 4 Weeks"
1010
  msgstr "Uma vez a cada 4 semanas"
1011
 
1012
+ #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
1013
  msgid "Statistics"
1014
  msgstr "Estatísticas"
1015
 
1081
  msgid "Items"
1082
  msgstr "Itens"
1083
 
1084
+ #: widget.php:254 wp-statistics.php:561
1085
  msgid "Yesterday visit"
1086
  msgstr "Visita de ontem"
1087
 
1109
  msgid "WP Statistics has been removed, please disable and delete it."
1110
  msgstr ""
1111
 
1112
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1113
  #. Plugin Name of the plugin/theme
1114
  #: wp-statistics.php:37
1115
  msgid "WP Statistics"
1116
  msgstr "Estatísticas da WP"
1117
 
1118
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1119
  #. Description of the plugin/theme
1120
  #: wp-statistics.php:38
1121
  msgid "Complete statistics for your WordPress site."
1145
  msgid "Setting page > GeoIP"
1146
  msgstr "Página de configuração > GeoIP"
1147
 
1148
+ #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
1149
  msgid "Settings"
1150
  msgstr "Configurações"
1151
 
1152
+ #: wp-statistics.php:265
1153
  msgid "Click here to visit the plugin on WordPress.org"
1154
  msgstr "Clique aqui para visitar o plugin no WordPress.org"
1155
 
1156
+ #: wp-statistics.php:265
1157
  msgid "Visit WordPress.org page"
1158
  msgstr "Visite a página do WordPress.org"
1159
 
1160
+ #: wp-statistics.php:268
1161
  msgid "Click here to rate and review this plugin on WordPress.org"
1162
  msgstr "Clique aqui para avaliar e revisar este plugin no WordPress.org"
1163
 
1164
+ #: wp-statistics.php:268
1165
  msgid "Rate this plugin"
1166
  msgstr "Classifique este plugin"
1167
 
1168
+ #: wp-statistics.php:312
1169
  msgid "WP Statistics - Hits"
1170
  msgstr "WP-Statistics - Hits"
1171
 
1172
+ #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
1173
  msgid "Overview"
1174
  msgstr "Visão geral"
1175
 
1176
+ #: wp-statistics.php:354 wp-statistics.php:430
1177
  msgid "Online"
1178
  msgstr ""
1179
 
1180
+ #: wp-statistics.php:356 wp-statistics.php:432
1181
  msgid "Referrers"
1182
  msgstr ""
1183
 
1184
+ #: shortcode.php:135 wp-statistics.php:357 wp-statistics.php:433
1185
  msgid "Searches"
1186
  msgstr "Pesquisas"
1187
 
1188
+ #: wp-statistics.php:358 wp-statistics.php:434
1189
  msgid "Search Words"
1190
  msgstr "Palavras de pesquisa"
1191
 
1192
+ #: wp-statistics.php:359 wp-statistics.php:435
1193
  msgid "Top Visitors Today"
1194
  msgstr ""
1195
 
1196
+ #: wp-statistics.php:364 wp-statistics.php:437
1197
  msgid "Optimization"
1198
  msgstr "Otimização"
1199
 
1200
+ #: wp-statistics.php:370 wp-statistics.php:401
1201
  msgid "Manual"
1202
  msgstr "Manual"
1203
 
1204
+ #: wp-statistics.php:416
1205
  msgid "Site"
1206
  msgstr ""
1207
 
1208
+ #: wp-statistics.php:417
1209
  msgid "Options"
1210
  msgstr ""
1211
 
1212
+ #: wp-statistics.php:543
1213
  msgid "Today visitor"
1214
  msgstr "Visitantes hoje"
1215
 
1216
+ #: wp-statistics.php:549
1217
  msgid "Today visit"
1218
  msgstr "Hoje visitamos"
1219
 
1220
+ #: wp-statistics.php:555
1221
  msgid "Yesterday visitor"
1222
  msgstr "Ontem o visitante"
1223
 
1224
+ #: wp-statistics.php:567
1225
  msgid "View Stats"
1226
  msgstr "View Stats"
1227
 
1228
+ #: wp-statistics.php:591
1229
  msgid "Download ODF file"
1230
  msgstr "Baixar arquivo ODF"
1231
 
1232
+ #: wp-statistics.php:592
1233
  msgid "Download HTML file"
1234
  msgstr "Baixar arquivo HTML"
1235
 
1236
+ #: wp-statistics.php:596
1237
  msgid "Manual file not found."
1238
  msgstr "Manual arquivo não encontrado."
1239
 
1240
+ #: wp-statistics.php:663 wp-statistics.php:770 wp-statistics.php:804
1241
  msgid "You do not have sufficient permissions to access this page."
1242
  msgstr "Você não tem permissões suficientes para acessar esta página."
1243
 
1245
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
1246
  msgstr ""
1247
 
1248
+ #: wp-statistics.php:241
1249
  msgid "WP Statistics %s installed on"
1250
  msgstr ""
1251
 
1293
  msgid "Browscap.ini update on"
1294
  msgstr ""
1295
 
1296
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1297
  #. Plugin URI of the plugin/theme
1298
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1299
  #. Author URI of the plugin/theme
1300
  msgid "http://wp-statistics.com/"
1301
  msgstr "http://WP-Statistics.com/"
1422
  msgstr "Clique para alternar entre"
1423
 
1424
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1425
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
1426
+ #: wp-statistics.php:426
1427
  msgid "Browsers"
1428
  msgstr "Navegadores"
1429
 
1452
  msgid "Exclusions Statistics"
1453
  msgstr "Estatísticas de exclusões"
1454
 
1455
+ #: includes/functions/functions.php:931
1456
  msgid "10 Days"
1457
  msgstr "10 dias"
1458
 
1459
+ #: includes/functions/functions.php:931
1460
  msgid "20 Days"
1461
  msgstr "20 dias"
1462
 
1463
+ #: includes/functions/functions.php:931
1464
  msgid "30 Days"
1465
  msgstr "30 dias"
1466
 
1467
+ #: includes/functions/functions.php:931
1468
  msgid "2 Months"
1469
  msgstr "2 meses"
1470
 
1471
+ #: includes/functions/functions.php:931
1472
  msgid "3 Months"
1473
  msgstr "3 meses"
1474
 
1475
+ #: includes/functions/functions.php:931
1476
  msgid "6 Months"
1477
  msgstr "6 meses"
1478
 
1479
+ #: includes/functions/functions.php:931
1480
  msgid "9 Months"
1481
  msgstr "9 meses"
1482
 
1483
+ #: includes/functions/functions.php:931
1484
  msgid "1 Year"
1485
  msgstr "1 ano"
1486
 
1529
  msgid "Latest Search Word Statistics"
1530
  msgstr "Últimas estatísticas de palavra de busca"
1531
 
1532
+ #: includes/log/last-search.php:110 includes/log/last-visitor.php:101
1533
  #: includes/log/online.php:50 includes/log/widgets/google.map.php:84
1534
  #: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
1535
+ #: includes/log/widgets/words.php:46
1536
  msgid "#hash#"
1537
  msgstr "#hash #"
1538
 
1539
+ #: includes/log/last-search.php:115 includes/log/last-visitor.php:106
1540
  #: includes/log/online.php:55 includes/log/top-referring.php:71
1541
+ #: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
1542
  #: includes/settings/tabs/wps-overview-display.php:33
1543
  #: includes/settings/tabs/wps-overview-display.php:113
1544
  msgid "Map"
1545
  msgstr "Mapa"
1546
 
1547
+ #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1548
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1549
  #: includes/log/top-referring.php:125
1550
  msgid "Page"
1551
  msgstr "Página de vídeo"
1552
 
1553
+ #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1554
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1555
  #: includes/log/top-referring.php:125
1556
  msgid "From"
1739
  msgstr "Tempo: %s"
1740
 
1741
  #: includes/log/widgets/top.visitors.php:31
1742
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
1743
+ #: wp-statistics.php:353 wp-statistics.php:429
1744
  msgid "Hits"
1745
  msgstr "Hits"
1746
 
1782
  msgid "No platform data found to remove!"
1783
  msgstr ""
1784
 
1785
+ #: includes/functions/functions.php:1019
1786
  msgid "%s table data deleted successfully."
1787
  msgstr "dados da tabela %s excluídos com sucesso."
1788
 
1789
+ #: includes/functions/functions.php:1023
1790
  msgid "Error, %s not emptied!"
1791
  msgstr "Erro, %s não esvaziado!"
1792
 
1812
 
1813
  #: includes/optimization/tabs/wps-optimization-database.php:25
1814
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1815
+ #: wp-statistics.php:351 wp-statistics.php:427
1816
  msgid "Countries"
1817
  msgstr "Países"
1818
 
1828
  msgstr "Instala mais velhas de estatísticas WP permite entradas duplicadas na tabela de visitantes em um caso de canto. Instala mais recente protege contra isso, com um índice exclusivo na tabela. Para criar o índice o mais velho instala entradas duplicadas deve ser eliminado primeiro. \"Update Now, clicando em\" irá examinar a tabela de vistitors, exclua as entradas duplicadas e adicionar o índice."
1829
 
1830
  #: includes/optimization/tabs/wps-optimization-database.php:41
1831
+ #: includes/optimization/tabs/wps-optimization-database.php:102
1832
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1833
  msgstr "Esta operação pode levar um longo tempo em instalações com muitas linhas na tabela de visitantes."
1834
 
1838
 
1839
  #: includes/optimization/tabs/wps-optimization-database.php:47
1840
  #: includes/optimization/tabs/wps-optimization-database.php:77
1841
+ #: includes/optimization/tabs/wps-optimization-database.php:108
1842
  msgid "Congratulations, your installation is already up to date, nothing to do."
1843
  msgstr "Parabéns, sua instalação é já até à data, nada a fazer."
1844
 
1845
  #: includes/optimization/tabs/wps-optimization-export.php:8
1846
+ #: includes/optimization/wps-optimization.php:212
1847
  msgid "Export"
1848
  msgstr "Exportação"
1849
 
1896
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1897
  #: includes/settings/tabs/wps-general.php:138
1898
  #: includes/settings/tabs/wps-general.php:143 shortcode.php:133
1899
+ #: wp-statistics.php:360 wp-statistics.php:436
1900
  msgid "Visitors"
1901
  msgstr "Visitantes"
1902
 
2211
  msgid "Install routine complete."
2212
  msgstr "Instale a rotina completa."
2213
 
2214
+ #: includes/optimization/wps-optimization.php:211
2215
  msgid "Resources/Information"
2216
  msgstr "Recursos/informação"
2217
 
2218
+ #: includes/optimization/wps-optimization.php:213
2219
  msgid "Purging"
2220
  msgstr "Purga"
2221
 
2222
+ #: includes/optimization/wps-optimization.php:214
2223
  msgid "Database"
2224
  msgstr "Banco de dados"
2225
 
2226
+ #: includes/optimization/wps-optimization.php:215
2227
  msgid "Updates"
2228
  msgstr "Atualizações"
2229
 
2230
+ #: includes/optimization/wps-optimization.php:216
2231
  msgid "Historical"
2232
  msgstr ""
2233
 
2377
  msgstr ""
2378
 
2379
  #: includes/settings/tabs/wps-access-level.php:23
2380
+ #: includes/settings/wps-settings.php:103
2381
  msgid "Access Levels"
2382
  msgstr "Níveis de acesso"
2383
 
2410
  msgstr "Se você precisa de uma solução mais robusta para delegar acesso, que você pode querer olhar para %s no diretório plugin WordPress."
2411
 
2412
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2413
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:352
2414
+ #: wp-statistics.php:428
2415
  msgid "Exclusions"
2416
  msgstr "Exclusões"
2417
 
2582
  msgid "Exclude the RSS feeds for registering as a hit."
2583
  msgstr ""
2584
 
2585
+ #: includes/settings/tabs/wps-externals.php:162
2586
  msgid "browscap settings"
2587
  msgstr "browscap configurações"
2588
 
2589
+ #: includes/settings/tabs/wps-externals.php:167
2590
  msgid "browscap usage"
2591
  msgstr "uso browscap"
2592
 
2593
+ #: includes/settings/tabs/wps-externals.php:52
2594
+ #: includes/settings/tabs/wps-externals.php:76
2595
+ #: includes/settings/tabs/wps-externals.php:109
2596
+ #: includes/settings/tabs/wps-externals.php:172
2597
+ #: includes/settings/tabs/wps-externals.php:196
2598
+ #: includes/settings/tabs/wps-externals.php:235
2599
+ #: includes/settings/tabs/wps-externals.php:259
2600
  #: includes/settings/tabs/wps-general.php:76
2601
  #: includes/settings/tabs/wps-general.php:92
2602
  #: includes/settings/tabs/wps-general.php:116
2612
  #: includes/settings/tabs/wps-general.php:286
2613
  #: includes/settings/tabs/wps-general.php:325
2614
  #: includes/settings/tabs/wps-general.php:341
 
 
 
2615
  #: includes/settings/tabs/wps-maintenance.php:40
2616
  #: includes/settings/tabs/wps-maintenance.php:64
2617
  #: includes/settings/tabs/wps-notifications.php:69
2626
  msgid "Active"
2627
  msgstr "Ativo"
2628
 
2629
+ #: includes/settings/tabs/wps-externals.php:173
2630
  msgid "The browscap database will be downloaded and used to detect robots."
2631
  msgstr "Banco de dados browscap vai ser baixado e usado para detectar os robôs."
2632
 
2633
+ #: includes/settings/tabs/wps-externals.php:179
2634
  msgid "Update browscap Info"
2635
  msgstr "Atualização browscap informação"
2636
 
2637
+ #: includes/settings/tabs/wps-externals.php:184
2638
  msgid "Download browscap Database"
2639
  msgstr "Baixar browscap banco de dados"
2640
 
2641
+ #: includes/settings/tabs/wps-externals.php:65
2642
+ #: includes/settings/tabs/wps-externals.php:185
2643
+ #: includes/settings/tabs/wps-externals.php:248
2644
  msgid "Save changes on this page to download the update."
2645
  msgstr "Salve as alterações nesta página para baixar a atualização."
2646
 
2647
+ #: includes/settings/tabs/wps-externals.php:191
2648
  msgid "Schedule weekly update of browscap DB"
2649
  msgstr "Agendar a atualização semanal do browscap DB"
2650
 
2651
+ #: includes/settings/tabs/wps-externals.php:79
2652
+ #: includes/settings/tabs/wps-externals.php:199
2653
+ #: includes/settings/tabs/wps-externals.php:262
2654
  msgid "Next update will be"
2655
  msgstr "Próxima atualização será"
2656
 
2657
+ #: includes/settings/tabs/wps-externals.php:214
2658
  msgid "Download of the browscap database will be scheduled for once a week."
2659
  msgstr "Download do banco de dados browscap será agendado pelo menos uma vez por semana."
2660
 
languages/wp_statistics-ro_RO.mo CHANGED
Binary file
languages/wp_statistics-ro_RO.po CHANGED
@@ -10,6 +10,70 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  #: includes/settings/tabs/wps-exclusions.php:148
14
  msgid "Treat corrupt browser info as a bot"
15
  msgstr ""
@@ -158,7 +222,7 @@ msgstr ""
158
  msgid "Have you thought about donating to WP Statistics?"
159
  msgstr ""
160
 
161
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:362
162
  msgid "Donate"
163
  msgstr ""
164
 
@@ -194,11 +258,11 @@ msgstr ""
194
  msgid "Time Frame"
195
  msgstr ""
196
 
197
- #: includes/functions/functions.php:929
198
  msgid "to"
199
  msgstr ""
200
 
201
- #: includes/functions/functions.php:929 includes/log/top-visitors.php:29
202
  msgid "Go"
203
  msgstr ""
204
 
@@ -242,11 +306,11 @@ msgstr ""
242
  msgid "Filtered by"
243
  msgstr ""
244
 
245
- #: includes/functions/functions.php:922 includes/functions/functions.php:925
246
  msgid "Range"
247
  msgstr ""
248
 
249
- #: includes/functions/functions.php:929 includes/log/top-visitors.php:29
250
  msgid "MM/DD/YYYY"
251
  msgstr "MM/DD/YYYY"
252
 
@@ -290,27 +354,27 @@ msgstr ""
290
  msgid "Last 7 Days (Week)"
291
  msgstr ""
292
 
293
- #: includes/functions/functions.php:403
294
  msgid "Yahoo!"
295
  msgstr ""
296
 
297
- #: includes/functions/functions.php:404
298
  msgid "Yandex"
299
  msgstr ""
300
 
301
- #: includes/functions/functions.php:400
302
  msgid "clearch.org"
303
  msgstr ""
304
 
305
- #: includes/functions/functions.php:401
306
  msgid "DuckDuckGo"
307
  msgstr ""
308
 
309
- #: includes/functions/functions.php:399
310
  msgid "Bing"
311
  msgstr ""
312
 
313
- #: includes/functions/functions.php:398
314
  msgid "Baidu"
315
  msgstr ""
316
 
@@ -413,8 +477,8 @@ msgid "For each visit to account for several hits. Currently %s."
413
  msgstr "Pentru fiecare vizita a ţine cont de mai multe hit-uri. În prezent %s."
414
 
415
  #: includes/settings/tabs/wps-general.php:177
416
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:351
417
- #: wp-statistics.php:427
418
  msgid "Pages"
419
  msgstr "Pagini"
420
 
@@ -498,75 +562,75 @@ msgstr "Include totaluri"
498
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
499
  msgstr "Adăugaţi o linie total grafice cu valori multiple, cum ar fi căutare motor de recomandări"
500
 
501
- #: includes/settings/tabs/wps-geoip.php:27
502
  msgid "GeoIP settings"
503
  msgstr "Setările de GeoIP"
504
 
505
- #: includes/settings/tabs/wps-geoip.php:32
506
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
507
  msgstr "IP locaţie servicii oferite de GeoLite2 de date creat de MaxMind, disponibil de la %s."
508
 
509
- #: includes/settings/tabs/wps-geoip.php:42
510
  msgid "GeoIP collection"
511
  msgstr "Colectia GeoIP"
512
 
513
- #: includes/settings/tabs/wps-geoip.php:48
514
  msgid "For get more information and location (country) from visitor, enable this feature."
515
  msgstr "Pentru a lua mai multe informaţii şi locația (ţara) la vizitator, activaţi această caracteristică."
516
 
517
- #: includes/settings/tabs/wps-geoip.php:54
518
  msgid "Update GeoIP Info"
519
  msgstr "Actualizare GeoIP Info"
520
 
521
- #: includes/settings/tabs/wps-geoip.php:59
522
  msgid "Download GeoIP Database"
523
  msgstr "Download baza de date GeoIP"
524
 
525
- #: includes/settings/tabs/wps-geoip.php:66
526
  msgid "Schedule monthly update of GeoIP DB"
527
  msgstr "Programa actualizarea lunara a GeoIP DB"
528
 
529
- #: includes/settings/tabs/wps-geoip.php:92
530
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
531
  msgstr "Download de date GeoIP va fi programat pentru 2 zile de la prima zi de marţi a lunii."
532
 
533
- #: includes/settings/tabs/wps-geoip.php:93
534
  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)."
535
  msgstr "Această opţiune va descărca, de asemenea, baza de date în cazul în care filesize locale este mai puţin 1k (care de obicei înseamnă ciot care vine cu plugin-ul este încă în vigoare)."
536
 
537
- #: includes/settings/tabs/wps-geoip.php:99
538
  msgid "Populate missing GeoIP after update of GeoIP DB"
539
  msgstr "Popula GeoIP lipsă după actualizare de GeoIP DB"
540
 
541
- #: includes/settings/tabs/wps-geoip.php:105
542
  msgid "Update any missing GeoIP data after downloading a new database."
543
  msgstr "Actualizaţi orice date lipsă GeoIP după descărcarea o nouă bază de date."
544
 
545
- #: includes/settings/tabs/wps-geoip.php:111
546
  msgid "Country code for private IP addresses"
547
  msgstr ""
548
 
549
- #: includes/settings/tabs/wps-geoip.php:116
550
  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."
551
  msgstr ""
552
 
553
- #: includes/settings/tabs/wps-geoip.php:127
554
  msgid "GeoIP collection is disabled due to the following reasons:"
555
  msgstr "GeoIP colecţie este dezactivat din următoarele motive:"
556
 
557
- #: includes/settings/tabs/wps-geoip.php:130
558
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
559
  msgstr "GeoIP Colectia necesită PHP %s sau mai sus, aceasta este în prezent dezactivată datorită instalat PHP versiune fiind "
560
 
561
- #: includes/settings/tabs/wps-geoip.php:135
562
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
563
  msgstr "GeoIP Colectia necesită extensia PHP buclat şi nu este încărcat pe versiunea dumneavoastră a PHP!"
564
 
565
- #: includes/settings/tabs/wps-geoip.php:141
566
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
567
  msgstr "GeoIP Colectia necesită extensia PHP de matematica BC şi nu este încărcat pe versiunea dumneavoastră a PHP!"
568
 
569
- #: includes/settings/tabs/wps-geoip.php:147
570
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
571
  msgstr "Modul de siguranţă PHP detectat! GeoIP colecția nu este acceptată cu modul de siguranţă PHP activat!"
572
 
@@ -626,7 +690,6 @@ msgstr ""
626
 
627
  #: includes/log/exclusions.php:24
628
  #: includes/settings/tabs/wps-notifications.php:76
629
- #: includes/settings/wps-settings.php:111
630
  msgid "GeoIP"
631
  msgstr "GeoIP"
632
 
@@ -651,7 +714,7 @@ msgid "Send a report whenever the plugin is upgraded."
651
  msgstr ""
652
 
653
  #: includes/settings/tabs/wps-notifications.php:111
654
- #: includes/settings/tabs/wps-notifications.php:116 schedule.php:199
655
  msgid "Statistical reporting"
656
  msgstr "Raportarea statistică"
657
 
@@ -700,7 +763,7 @@ msgid "Any shortcode supported by your installation of WordPress, include all sh
700
  msgstr ""
701
 
702
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
703
- #: widget.php:245 wp-statistics.php:532
704
  msgid "User Online"
705
  msgstr "Useri online"
706
 
@@ -743,7 +806,7 @@ msgid "Summary Statistics"
743
  msgstr "Sumar statistici"
744
 
745
  #: includes/settings/tabs/wps-overview-display.php:28
746
- #: includes/settings/wps-settings.php:115
747
  msgid "About"
748
  msgstr "Despre"
749
 
@@ -793,7 +856,7 @@ msgstr ""
793
  msgid "Map type"
794
  msgstr "Tip hartă"
795
 
796
- #: includes/functions/functions.php:402
797
  #: includes/settings/tabs/wps-overview-display.php:128
798
  msgid "Google"
799
  msgstr "Google"
@@ -903,35 +966,30 @@ msgstr ""
903
  msgid "Remove data and settings, this action cannot be undone."
904
  msgstr ""
905
 
906
- #: includes/settings/wps-settings.php:106
907
  msgid "General"
908
  msgstr "Generale"
909
 
910
- #: includes/settings/wps-settings.php:107
911
  msgid "Notifications"
912
  msgstr ""
913
 
914
- #: includes/settings/wps-settings.php:108
915
  msgid "Dashboard/Overview"
916
  msgstr ""
917
 
918
- #: includes/settings/wps-settings.php:112
919
- msgid "browscap"
920
- msgstr "browscap"
921
-
922
- #: includes/settings/wps-settings.php:113
923
  msgid "Maintenance"
924
  msgstr "Intretinere"
925
 
926
- #: includes/settings/wps-settings.php:114
927
  msgid "Removal"
928
  msgstr ""
929
 
930
  #: includes/settings/tabs/wps-access-level.php:85
931
- #: includes/settings/tabs/wps-browscap.php:81
932
  #: includes/settings/tabs/wps-exclusions.php:234
 
933
  #: includes/settings/tabs/wps-general.php:349
934
- #: includes/settings/tabs/wps-geoip.php:158
935
  #: includes/settings/tabs/wps-maintenance.php:84
936
  #: includes/settings/tabs/wps-notifications.php:201
937
  #: includes/settings/tabs/wps-overview-display.php:388
@@ -951,7 +1009,7 @@ msgstr "O dată la 2 săptămâni"
951
  msgid "Once Every 4 Weeks"
952
  msgstr "O dată la 4 săptămâni"
953
 
954
- #: widget.php:14 wp-statistics.php:342 wp-statistics.php:380
955
  msgid "Statistics"
956
  msgstr "Statistici"
957
 
@@ -1023,7 +1081,7 @@ msgstr "Nume"
1023
  msgid "Items"
1024
  msgstr "Elemente"
1025
 
1026
- #: widget.php:254 wp-statistics.php:557
1027
  msgid "Yesterday visit"
1028
  msgstr "Vizite ieri"
1029
 
@@ -1051,13 +1109,13 @@ msgstr ""
1051
  msgid "WP Statistics has been removed, please disable and delete it."
1052
  msgstr ""
1053
 
1054
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1055
  #. Plugin Name of the plugin/theme
1056
  #: wp-statistics.php:37
1057
  msgid "WP Statistics"
1058
  msgstr "WP Statistics"
1059
 
1060
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1061
  #. Description of the plugin/theme
1062
  #: wp-statistics.php:38
1063
  msgid "Complete statistics for your WordPress site."
@@ -1087,99 +1145,99 @@ msgstr "GeoIP colectare nu este activ, vă rugăm să mergeţi la %s şi activa
1087
  msgid "Setting page > GeoIP"
1088
  msgstr "Pagina de setare > GeoIP"
1089
 
1090
- #: wp-statistics.php:249 wp-statistics.php:361 wp-statistics.php:434
1091
  msgid "Settings"
1092
  msgstr "Setări"
1093
 
1094
- #: wp-statistics.php:261
1095
  msgid "Click here to visit the plugin on WordPress.org"
1096
  msgstr "Click aici pentru a vizita plugin-ul pe WordPress.org"
1097
 
1098
- #: wp-statistics.php:261
1099
  msgid "Visit WordPress.org page"
1100
  msgstr "Vizitaţi pagina de WordPress.org"
1101
 
1102
- #: wp-statistics.php:264
1103
  msgid "Click here to rate and review this plugin on WordPress.org"
1104
  msgstr "Click aici pentru a evalua şi revizui acest plug-in pe WordPress.org"
1105
 
1106
- #: wp-statistics.php:264
1107
  msgid "Rate this plugin"
1108
  msgstr "Rata de acest plugin"
1109
 
1110
- #: wp-statistics.php:308
1111
  msgid "WP Statistics - Hits"
1112
  msgstr "WP Statistics - hit-uri"
1113
 
1114
- #: wp-statistics.php:345 wp-statistics.php:383 wp-statistics.php:421
1115
  msgid "Overview"
1116
  msgstr "Privire de ansamblu"
1117
 
1118
- #: wp-statistics.php:350 wp-statistics.php:426
1119
  msgid "Online"
1120
  msgstr ""
1121
 
1122
- #: wp-statistics.php:352 wp-statistics.php:428
1123
  msgid "Referrers"
1124
  msgstr ""
1125
 
1126
- #: shortcode.php:135 wp-statistics.php:353 wp-statistics.php:429
1127
  msgid "Searches"
1128
  msgstr "Căutări"
1129
 
1130
- #: wp-statistics.php:354 wp-statistics.php:430
1131
  msgid "Search Words"
1132
  msgstr "Căutare cuvinte"
1133
 
1134
- #: wp-statistics.php:355 wp-statistics.php:431
1135
  msgid "Top Visitors Today"
1136
  msgstr ""
1137
 
1138
- #: wp-statistics.php:360 wp-statistics.php:433
1139
  msgid "Optimization"
1140
  msgstr "Optimizare"
1141
 
1142
- #: wp-statistics.php:366 wp-statistics.php:397
1143
  msgid "Manual"
1144
  msgstr "Manual de"
1145
 
1146
- #: wp-statistics.php:412
1147
  msgid "Site"
1148
  msgstr ""
1149
 
1150
- #: wp-statistics.php:413
1151
  msgid "Options"
1152
  msgstr ""
1153
 
1154
- #: wp-statistics.php:539
1155
  msgid "Today visitor"
1156
  msgstr "Azi vizitatori"
1157
 
1158
- #: wp-statistics.php:545
1159
  msgid "Today visit"
1160
  msgstr "Astăzi vizita"
1161
 
1162
- #: wp-statistics.php:551
1163
  msgid "Yesterday visitor"
1164
  msgstr "Ieri vizitator"
1165
 
1166
- #: wp-statistics.php:563
1167
  msgid "View Stats"
1168
  msgstr "Vezi statisticile"
1169
 
1170
- #: wp-statistics.php:587
1171
  msgid "Download ODF file"
1172
  msgstr "Descarcă ODF"
1173
 
1174
- #: wp-statistics.php:588
1175
  msgid "Download HTML file"
1176
  msgstr "Descărcaţi fişierul HTML"
1177
 
1178
- #: wp-statistics.php:592
1179
  msgid "Manual file not found."
1180
  msgstr "Manualul fişier negăsit."
1181
 
1182
- #: wp-statistics.php:659 wp-statistics.php:770 wp-statistics.php:804
1183
  msgid "You do not have sufficient permissions to access this page."
1184
  msgstr "Nu aveți suficiente permisiuni pentru a accesa această pagină."
1185
 
@@ -1187,7 +1245,7 @@ msgstr "Nu aveți suficiente permisiuni pentru a accesa această pagină."
1187
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
1188
  msgstr ""
1189
 
1190
- #: wp-statistics.php:237
1191
  msgid "WP Statistics %s installed on"
1192
  msgstr ""
1193
 
@@ -1235,9 +1293,9 @@ msgstr "browscap deja la versiunea curentă!"
1235
  msgid "Browscap.ini update on"
1236
  msgstr ""
1237
 
1238
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1239
  #. Plugin URI of the plugin/theme
1240
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1241
  #. Author URI of the plugin/theme
1242
  msgid "http://wp-statistics.com/"
1243
  msgstr "http://WP-Statistics.com/"
@@ -1364,8 +1422,8 @@ msgid "Click to toggle"
1364
  msgstr "Faceţi clic pentru a comuta"
1365
 
1366
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1367
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:346
1368
- #: wp-statistics.php:422
1369
  msgid "Browsers"
1370
  msgstr "Browsere"
1371
 
@@ -1394,35 +1452,35 @@ msgstr "Atentie: Excluderea nu sunt în prezent stabilite pentru a fi înregistr
1394
  msgid "Exclusions Statistics"
1395
  msgstr "Excluderi statistici"
1396
 
1397
- #: includes/functions/functions.php:879
1398
  msgid "10 Days"
1399
  msgstr "10 zile"
1400
 
1401
- #: includes/functions/functions.php:879
1402
  msgid "20 Days"
1403
  msgstr "20 de zile"
1404
 
1405
- #: includes/functions/functions.php:879
1406
  msgid "30 Days"
1407
  msgstr "30 de zile"
1408
 
1409
- #: includes/functions/functions.php:879
1410
  msgid "2 Months"
1411
  msgstr "2 luni"
1412
 
1413
- #: includes/functions/functions.php:879
1414
  msgid "3 Months"
1415
  msgstr "3 luni"
1416
 
1417
- #: includes/functions/functions.php:879
1418
  msgid "6 Months"
1419
  msgstr "6 luni"
1420
 
1421
- #: includes/functions/functions.php:879
1422
  msgid "9 Months"
1423
  msgstr "9 luni"
1424
 
1425
- #: includes/functions/functions.php:879
1426
  msgid "1 Year"
1427
  msgstr "1 an"
1428
 
@@ -1471,28 +1529,28 @@ msgstr "Vizitator"
1471
  msgid "Latest Search Word Statistics"
1472
  msgstr "Cele mai recente căutare cuvânt statistici"
1473
 
1474
- #: includes/log/last-search.php:100 includes/log/last-visitor.php:101
1475
  #: includes/log/online.php:50 includes/log/widgets/google.map.php:84
1476
  #: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
1477
- #: includes/log/widgets/words.php:36
1478
  msgid "#hash#"
1479
  msgstr "#hash #"
1480
 
1481
- #: includes/log/last-search.php:105 includes/log/last-visitor.php:106
1482
  #: includes/log/online.php:55 includes/log/top-referring.php:71
1483
- #: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:43
1484
  #: includes/settings/tabs/wps-overview-display.php:33
1485
  #: includes/settings/tabs/wps-overview-display.php:113
1486
  msgid "Map"
1487
  msgstr "Hartă"
1488
 
1489
- #: includes/log/last-search.php:142 includes/log/last-visitor.php:139
1490
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1491
  #: includes/log/top-referring.php:125
1492
  msgid "Page"
1493
  msgstr "Filme"
1494
 
1495
- #: includes/log/last-search.php:142 includes/log/last-visitor.php:139
1496
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1497
  #: includes/log/top-referring.php:125
1498
  msgid "From"
@@ -1681,8 +1739,8 @@ msgid "Time: %s"
1681
  msgstr "Timp: %s"
1682
 
1683
  #: includes/log/widgets/top.visitors.php:31
1684
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:273
1685
- #: wp-statistics.php:349 wp-statistics.php:425
1686
  msgid "Hits"
1687
  msgstr "Hit-uri"
1688
 
@@ -1724,11 +1782,11 @@ msgstr "platforma de date %s şters cu succes."
1724
  msgid "No platform data found to remove!"
1725
  msgstr ""
1726
 
1727
- #: includes/functions/functions.php:967
1728
  msgid "%s table data deleted successfully."
1729
  msgstr "date de tabel %s şters cu succes."
1730
 
1731
- #: includes/functions/functions.php:971
1732
  msgid "Error, %s not emptied!"
1733
  msgstr "Eroare, %s nu golite!"
1734
 
@@ -1754,7 +1812,7 @@ msgstr "Indicele de baze de date"
1754
 
1755
  #: includes/optimization/tabs/wps-optimization-database.php:25
1756
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1757
- #: wp-statistics.php:347 wp-statistics.php:423
1758
  msgid "Countries"
1759
  msgstr "Ţări"
1760
 
@@ -1770,6 +1828,7 @@ msgid "Older installs of WP Statistics allow for duplicate entries in the visito
1770
  msgstr "Instalări mai vechi de WP Statistics permit intrările dublate în tabelul de vizitatori într-un caz de colţ. Mai nou se instalează proteja cu un index unic pe masă. Pentru a crea indexul pe instalează mai vechi intrările dublate trebuie șters în primul rând. Clic pe \"Update Now\" va scana tabelul vistitors, Ştergeţi intrările dublate şi adăugaţi index."
1771
 
1772
  #: includes/optimization/tabs/wps-optimization-database.php:41
 
1773
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1774
  msgstr "Această operaţiune ar putea dura mult timp pe instalează cu multe rânduri din tabelul de vizitatori."
1775
 
@@ -1779,11 +1838,12 @@ msgstr "Instalări mai vechi de WP Statistics permit intrările dublate în tabe
1779
 
1780
  #: includes/optimization/tabs/wps-optimization-database.php:47
1781
  #: includes/optimization/tabs/wps-optimization-database.php:77
 
1782
  msgid "Congratulations, your installation is already up to date, nothing to do."
1783
  msgstr "Felicitări, instalarea este deja până la data, nimic de a face."
1784
 
1785
  #: includes/optimization/tabs/wps-optimization-export.php:8
1786
- #: includes/optimization/wps-optimization.php:183
1787
  msgid "Export"
1788
  msgstr "Export"
1789
 
@@ -1836,7 +1896,7 @@ msgstr ""
1836
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1837
  #: includes/settings/tabs/wps-general.php:138
1838
  #: includes/settings/tabs/wps-general.php:143 shortcode.php:133
1839
- #: wp-statistics.php:356 wp-statistics.php:432
1840
  msgid "Visitors"
1841
  msgstr "Vizitatori"
1842
 
@@ -2151,23 +2211,23 @@ msgstr "Adrese IP înlocuite cu valorile hash."
2151
  msgid "Install routine complete."
2152
  msgstr "Instalarea completă de rutină."
2153
 
2154
- #: includes/optimization/wps-optimization.php:182
2155
  msgid "Resources/Information"
2156
  msgstr "Resurse/informatii"
2157
 
2158
- #: includes/optimization/wps-optimization.php:184
2159
  msgid "Purging"
2160
  msgstr "Epurare"
2161
 
2162
- #: includes/optimization/wps-optimization.php:185
2163
  msgid "Database"
2164
  msgstr "Baza de date"
2165
 
2166
- #: includes/optimization/wps-optimization.php:186
2167
  msgid "Updates"
2168
  msgstr "Actualizări"
2169
 
2170
- #: includes/optimization/wps-optimization.php:187
2171
  msgid "Historical"
2172
  msgstr ""
2173
 
@@ -2317,7 +2377,7 @@ msgid "This is the honey pot for WP Statistics to use, do not delete."
2317
  msgstr ""
2318
 
2319
  #: includes/settings/tabs/wps-access-level.php:23
2320
- #: includes/settings/wps-settings.php:109
2321
  msgid "Access Levels"
2322
  msgstr "Nivele de acces"
2323
 
@@ -2350,8 +2410,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2350
  msgstr "Dacă aveţi nevoie de o soluţie mai robust pentru a delega acces aţi putea dori să se uite la %s în WordPress plug-in directorul."
2351
 
2352
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2353
- #: includes/settings/wps-settings.php:110 wp-statistics.php:348
2354
- #: wp-statistics.php:424
2355
  msgid "Exclusions"
2356
  msgstr "Excluderi"
2357
 
@@ -2522,16 +2582,21 @@ msgstr ""
2522
  msgid "Exclude the RSS feeds for registering as a hit."
2523
  msgstr ""
2524
 
2525
- #: includes/settings/tabs/wps-browscap.php:22
2526
  msgid "browscap settings"
2527
  msgstr "Setări browscap"
2528
 
2529
- #: includes/settings/tabs/wps-browscap.php:27
2530
  msgid "browscap usage"
2531
  msgstr "browscap de utilizare"
2532
 
2533
- #: includes/settings/tabs/wps-browscap.php:32
2534
- #: includes/settings/tabs/wps-browscap.php:56
 
 
 
 
 
2535
  #: includes/settings/tabs/wps-general.php:76
2536
  #: includes/settings/tabs/wps-general.php:92
2537
  #: includes/settings/tabs/wps-general.php:116
@@ -2547,9 +2612,6 @@ msgstr "browscap de utilizare"
2547
  #: includes/settings/tabs/wps-general.php:286
2548
  #: includes/settings/tabs/wps-general.php:325
2549
  #: includes/settings/tabs/wps-general.php:341
2550
- #: includes/settings/tabs/wps-geoip.php:47
2551
- #: includes/settings/tabs/wps-geoip.php:71
2552
- #: includes/settings/tabs/wps-geoip.php:104
2553
  #: includes/settings/tabs/wps-maintenance.php:40
2554
  #: includes/settings/tabs/wps-maintenance.php:64
2555
  #: includes/settings/tabs/wps-notifications.php:69
@@ -2564,33 +2626,35 @@ msgstr "browscap de utilizare"
2564
  msgid "Active"
2565
  msgstr "Activ"
2566
 
2567
- #: includes/settings/tabs/wps-browscap.php:33
2568
  msgid "The browscap database will be downloaded and used to detect robots."
2569
  msgstr "Browscap baza de date va fi descărcate şi utilizate pentru a detecta roboţi."
2570
 
2571
- #: includes/settings/tabs/wps-browscap.php:39
2572
  msgid "Update browscap Info"
2573
  msgstr "Actualizare browscap Info"
2574
 
2575
- #: includes/settings/tabs/wps-browscap.php:44
2576
  msgid "Download browscap Database"
2577
  msgstr "Descarca browscap baza de date"
2578
 
2579
- #: includes/settings/tabs/wps-browscap.php:45
2580
- #: includes/settings/tabs/wps-geoip.php:60
 
2581
  msgid "Save changes on this page to download the update."
2582
  msgstr "Salvați modificările pe această pagină pentru a descărca actualizarea."
2583
 
2584
- #: includes/settings/tabs/wps-browscap.php:51
2585
  msgid "Schedule weekly update of browscap DB"
2586
  msgstr "Orarul săptămânal update de browscap DB"
2587
 
2588
- #: includes/settings/tabs/wps-browscap.php:59
2589
- #: includes/settings/tabs/wps-geoip.php:74
 
2590
  msgid "Next update will be"
2591
  msgstr "Următoarea actualizare va fi"
2592
 
2593
- #: includes/settings/tabs/wps-browscap.php:74
2594
  msgid "Download of the browscap database will be scheduled for once a week."
2595
  msgstr "Descarca browscap bazei de date va fi programat pentru o dată pe săptămână."
2596
 
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: includes/optimization/wps-optimization.php:173
14
+ msgid "Search table conversion complete, %d rows added."
15
+ msgstr ""
16
+
17
+ #: includes/optimization/tabs/wps-optimization-database.php:107
18
+ msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion."
19
+ msgstr ""
20
+
21
+ #: includes/optimization/tabs/wps-optimization-database.php:86
22
+ msgid "Search Table"
23
+ msgstr ""
24
+
25
+ #: includes/optimization/tabs/wps-optimization-database.php:91
26
+ msgid "Convert"
27
+ msgstr ""
28
+
29
+ #: includes/optimization/tabs/wps-optimization-database.php:100
30
+ msgid "Convert Now!"
31
+ msgstr ""
32
+
33
+ #: includes/optimization/tabs/wps-optimization-database.php:101
34
+ msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion, however the old data must first be converted to the new format before it can be used."
35
+ msgstr ""
36
+
37
+ #: includes/log/exclusions.php:24
38
+ msgid "Referrer Spam"
39
+ msgstr ""
40
+
41
+ #: includes/settings/tabs/wps-externals.php:277
42
+ msgid "Download of the Piwik Referrer Spam Blacklist database will be scheduled for once a week."
43
+ msgstr ""
44
+
45
+ #: includes/settings/wps-settings.php:105
46
+ msgid "Externals"
47
+ msgstr ""
48
+
49
+ #: includes/settings/tabs/wps-externals.php:219
50
+ msgid "Piwik Referrer Spam Blacklist settings"
51
+ msgstr ""
52
+
53
+ #: includes/settings/tabs/wps-externals.php:254
54
+ msgid "Schedule weekly update of Piwik Referrer Spam Blacklist DB"
55
+ msgstr ""
56
+
57
+ #: includes/settings/tabs/wps-externals.php:247
58
+ msgid "Download Piwik Referrer Spam Blacklist Database"
59
+ msgstr ""
60
+
61
+ #: includes/settings/tabs/wps-externals.php:242
62
+ msgid "Update Piwik Referrer Spam Blacklist Info"
63
+ msgstr ""
64
+
65
+ #: includes/settings/tabs/wps-externals.php:236
66
+ msgid "The Piwik Referrer Spam Blacklist database will be downloaded and used to detect referrer spam."
67
+ msgstr ""
68
+
69
+ #: includes/settings/tabs/wps-externals.php:224
70
+ msgid "Referrer spam blacklist is provided by Piwik, available from %s."
71
+ msgstr ""
72
+
73
+ #: includes/settings/tabs/wps-externals.php:230
74
+ msgid "Piwik Referrer Spam Blacklist usage"
75
+ msgstr ""
76
+
77
  #: includes/settings/tabs/wps-exclusions.php:148
78
  msgid "Treat corrupt browser info as a bot"
79
  msgstr ""
222
  msgid "Have you thought about donating to WP Statistics?"
223
  msgstr ""
224
 
225
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
226
  msgid "Donate"
227
  msgstr ""
228
 
258
  msgid "Time Frame"
259
  msgstr ""
260
 
261
+ #: includes/functions/functions.php:981
262
  msgid "to"
263
  msgstr ""
264
 
265
+ #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
266
  msgid "Go"
267
  msgstr ""
268
 
306
  msgid "Filtered by"
307
  msgstr ""
308
 
309
+ #: includes/functions/functions.php:974 includes/functions/functions.php:977
310
  msgid "Range"
311
  msgstr ""
312
 
313
+ #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
314
  msgid "MM/DD/YYYY"
315
  msgstr "MM/DD/YYYY"
316
 
354
  msgid "Last 7 Days (Week)"
355
  msgstr ""
356
 
357
+ #: includes/functions/functions.php:405
358
  msgid "Yahoo!"
359
  msgstr ""
360
 
361
+ #: includes/functions/functions.php:406
362
  msgid "Yandex"
363
  msgstr ""
364
 
365
+ #: includes/functions/functions.php:402
366
  msgid "clearch.org"
367
  msgstr ""
368
 
369
+ #: includes/functions/functions.php:403
370
  msgid "DuckDuckGo"
371
  msgstr ""
372
 
373
+ #: includes/functions/functions.php:401
374
  msgid "Bing"
375
  msgstr ""
376
 
377
+ #: includes/functions/functions.php:400
378
  msgid "Baidu"
379
  msgstr ""
380
 
477
  msgstr "Pentru fiecare vizita a ţine cont de mai multe hit-uri. În prezent %s."
478
 
479
  #: includes/settings/tabs/wps-general.php:177
480
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
481
+ #: wp-statistics.php:431
482
  msgid "Pages"
483
  msgstr "Pagini"
484
 
562
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
563
  msgstr "Adăugaţi o linie total grafice cu valori multiple, cum ar fi căutare motor de recomandări"
564
 
565
+ #: includes/settings/tabs/wps-externals.php:32
566
  msgid "GeoIP settings"
567
  msgstr "Setările de GeoIP"
568
 
569
+ #: includes/settings/tabs/wps-externals.php:37
570
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
571
  msgstr "IP locaţie servicii oferite de GeoLite2 de date creat de MaxMind, disponibil de la %s."
572
 
573
+ #: includes/settings/tabs/wps-externals.php:47
574
  msgid "GeoIP collection"
575
  msgstr "Colectia GeoIP"
576
 
577
+ #: includes/settings/tabs/wps-externals.php:53
578
  msgid "For get more information and location (country) from visitor, enable this feature."
579
  msgstr "Pentru a lua mai multe informaţii şi locația (ţara) la vizitator, activaţi această caracteristică."
580
 
581
+ #: includes/settings/tabs/wps-externals.php:59
582
  msgid "Update GeoIP Info"
583
  msgstr "Actualizare GeoIP Info"
584
 
585
+ #: includes/settings/tabs/wps-externals.php:64
586
  msgid "Download GeoIP Database"
587
  msgstr "Download baza de date GeoIP"
588
 
589
+ #: includes/settings/tabs/wps-externals.php:71
590
  msgid "Schedule monthly update of GeoIP DB"
591
  msgstr "Programa actualizarea lunara a GeoIP DB"
592
 
593
+ #: includes/settings/tabs/wps-externals.php:97
594
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
595
  msgstr "Download de date GeoIP va fi programat pentru 2 zile de la prima zi de marţi a lunii."
596
 
597
+ #: includes/settings/tabs/wps-externals.php:98
598
  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)."
599
  msgstr "Această opţiune va descărca, de asemenea, baza de date în cazul în care filesize locale este mai puţin 1k (care de obicei înseamnă ciot care vine cu plugin-ul este încă în vigoare)."
600
 
601
+ #: includes/settings/tabs/wps-externals.php:104
602
  msgid "Populate missing GeoIP after update of GeoIP DB"
603
  msgstr "Popula GeoIP lipsă după actualizare de GeoIP DB"
604
 
605
+ #: includes/settings/tabs/wps-externals.php:110
606
  msgid "Update any missing GeoIP data after downloading a new database."
607
  msgstr "Actualizaţi orice date lipsă GeoIP după descărcarea o nouă bază de date."
608
 
609
+ #: includes/settings/tabs/wps-externals.php:116
610
  msgid "Country code for private IP addresses"
611
  msgstr ""
612
 
613
+ #: includes/settings/tabs/wps-externals.php:121
614
  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."
615
  msgstr ""
616
 
617
+ #: includes/settings/tabs/wps-externals.php:132
618
  msgid "GeoIP collection is disabled due to the following reasons:"
619
  msgstr "GeoIP colecţie este dezactivat din următoarele motive:"
620
 
621
+ #: includes/settings/tabs/wps-externals.php:135
622
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
623
  msgstr "GeoIP Colectia necesită PHP %s sau mai sus, aceasta este în prezent dezactivată datorită instalat PHP versiune fiind "
624
 
625
+ #: includes/settings/tabs/wps-externals.php:140
626
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
627
  msgstr "GeoIP Colectia necesită extensia PHP buclat şi nu este încărcat pe versiunea dumneavoastră a PHP!"
628
 
629
+ #: includes/settings/tabs/wps-externals.php:146
630
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
631
  msgstr "GeoIP Colectia necesită extensia PHP de matematica BC şi nu este încărcat pe versiunea dumneavoastră a PHP!"
632
 
633
+ #: includes/settings/tabs/wps-externals.php:152
634
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
635
  msgstr "Modul de siguranţă PHP detectat! GeoIP colecția nu este acceptată cu modul de siguranţă PHP activat!"
636
 
690
 
691
  #: includes/log/exclusions.php:24
692
  #: includes/settings/tabs/wps-notifications.php:76
 
693
  msgid "GeoIP"
694
  msgstr "GeoIP"
695
 
714
  msgstr ""
715
 
716
  #: includes/settings/tabs/wps-notifications.php:111
717
+ #: includes/settings/tabs/wps-notifications.php:116 schedule.php:221
718
  msgid "Statistical reporting"
719
  msgstr "Raportarea statistică"
720
 
763
  msgstr ""
764
 
765
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
766
+ #: widget.php:245 wp-statistics.php:536
767
  msgid "User Online"
768
  msgstr "Useri online"
769
 
806
  msgstr "Sumar statistici"
807
 
808
  #: includes/settings/tabs/wps-overview-display.php:28
809
+ #: includes/settings/wps-settings.php:108
810
  msgid "About"
811
  msgstr "Despre"
812
 
856
  msgid "Map type"
857
  msgstr "Tip hartă"
858
 
859
+ #: includes/functions/functions.php:404
860
  #: includes/settings/tabs/wps-overview-display.php:128
861
  msgid "Google"
862
  msgstr "Google"
966
  msgid "Remove data and settings, this action cannot be undone."
967
  msgstr ""
968
 
969
+ #: includes/settings/wps-settings.php:100
970
  msgid "General"
971
  msgstr "Generale"
972
 
973
+ #: includes/settings/wps-settings.php:101
974
  msgid "Notifications"
975
  msgstr ""
976
 
977
+ #: includes/settings/wps-settings.php:102
978
  msgid "Dashboard/Overview"
979
  msgstr ""
980
 
981
+ #: includes/settings/wps-settings.php:106
 
 
 
 
982
  msgid "Maintenance"
983
  msgstr "Intretinere"
984
 
985
+ #: includes/settings/wps-settings.php:107
986
  msgid "Removal"
987
  msgstr ""
988
 
989
  #: includes/settings/tabs/wps-access-level.php:85
 
990
  #: includes/settings/tabs/wps-exclusions.php:234
991
+ #: includes/settings/tabs/wps-externals.php:284
992
  #: includes/settings/tabs/wps-general.php:349
 
993
  #: includes/settings/tabs/wps-maintenance.php:84
994
  #: includes/settings/tabs/wps-notifications.php:201
995
  #: includes/settings/tabs/wps-overview-display.php:388
1009
  msgid "Once Every 4 Weeks"
1010
  msgstr "O dată la 4 săptămâni"
1011
 
1012
+ #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
1013
  msgid "Statistics"
1014
  msgstr "Statistici"
1015
 
1081
  msgid "Items"
1082
  msgstr "Elemente"
1083
 
1084
+ #: widget.php:254 wp-statistics.php:561
1085
  msgid "Yesterday visit"
1086
  msgstr "Vizite ieri"
1087
 
1109
  msgid "WP Statistics has been removed, please disable and delete it."
1110
  msgstr ""
1111
 
1112
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1113
  #. Plugin Name of the plugin/theme
1114
  #: wp-statistics.php:37
1115
  msgid "WP Statistics"
1116
  msgstr "WP Statistics"
1117
 
1118
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1119
  #. Description of the plugin/theme
1120
  #: wp-statistics.php:38
1121
  msgid "Complete statistics for your WordPress site."
1145
  msgid "Setting page > GeoIP"
1146
  msgstr "Pagina de setare > GeoIP"
1147
 
1148
+ #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
1149
  msgid "Settings"
1150
  msgstr "Setări"
1151
 
1152
+ #: wp-statistics.php:265
1153
  msgid "Click here to visit the plugin on WordPress.org"
1154
  msgstr "Click aici pentru a vizita plugin-ul pe WordPress.org"
1155
 
1156
+ #: wp-statistics.php:265
1157
  msgid "Visit WordPress.org page"
1158
  msgstr "Vizitaţi pagina de WordPress.org"
1159
 
1160
+ #: wp-statistics.php:268
1161
  msgid "Click here to rate and review this plugin on WordPress.org"
1162
  msgstr "Click aici pentru a evalua şi revizui acest plug-in pe WordPress.org"
1163
 
1164
+ #: wp-statistics.php:268
1165
  msgid "Rate this plugin"
1166
  msgstr "Rata de acest plugin"
1167
 
1168
+ #: wp-statistics.php:312
1169
  msgid "WP Statistics - Hits"
1170
  msgstr "WP Statistics - hit-uri"
1171
 
1172
+ #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
1173
  msgid "Overview"
1174
  msgstr "Privire de ansamblu"
1175
 
1176
+ #: wp-statistics.php:354 wp-statistics.php:430
1177
  msgid "Online"
1178
  msgstr ""
1179
 
1180
+ #: wp-statistics.php:356 wp-statistics.php:432
1181
  msgid "Referrers"
1182
  msgstr ""
1183
 
1184
+ #: shortcode.php:135 wp-statistics.php:357 wp-statistics.php:433
1185
  msgid "Searches"
1186
  msgstr "Căutări"
1187
 
1188
+ #: wp-statistics.php:358 wp-statistics.php:434
1189
  msgid "Search Words"
1190
  msgstr "Căutare cuvinte"
1191
 
1192
+ #: wp-statistics.php:359 wp-statistics.php:435
1193
  msgid "Top Visitors Today"
1194
  msgstr ""
1195
 
1196
+ #: wp-statistics.php:364 wp-statistics.php:437
1197
  msgid "Optimization"
1198
  msgstr "Optimizare"
1199
 
1200
+ #: wp-statistics.php:370 wp-statistics.php:401
1201
  msgid "Manual"
1202
  msgstr "Manual de"
1203
 
1204
+ #: wp-statistics.php:416
1205
  msgid "Site"
1206
  msgstr ""
1207
 
1208
+ #: wp-statistics.php:417
1209
  msgid "Options"
1210
  msgstr ""
1211
 
1212
+ #: wp-statistics.php:543
1213
  msgid "Today visitor"
1214
  msgstr "Azi vizitatori"
1215
 
1216
+ #: wp-statistics.php:549
1217
  msgid "Today visit"
1218
  msgstr "Astăzi vizita"
1219
 
1220
+ #: wp-statistics.php:555
1221
  msgid "Yesterday visitor"
1222
  msgstr "Ieri vizitator"
1223
 
1224
+ #: wp-statistics.php:567
1225
  msgid "View Stats"
1226
  msgstr "Vezi statisticile"
1227
 
1228
+ #: wp-statistics.php:591
1229
  msgid "Download ODF file"
1230
  msgstr "Descarcă ODF"
1231
 
1232
+ #: wp-statistics.php:592
1233
  msgid "Download HTML file"
1234
  msgstr "Descărcaţi fişierul HTML"
1235
 
1236
+ #: wp-statistics.php:596
1237
  msgid "Manual file not found."
1238
  msgstr "Manualul fişier negăsit."
1239
 
1240
+ #: wp-statistics.php:663 wp-statistics.php:770 wp-statistics.php:804
1241
  msgid "You do not have sufficient permissions to access this page."
1242
  msgstr "Nu aveți suficiente permisiuni pentru a accesa această pagină."
1243
 
1245
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
1246
  msgstr ""
1247
 
1248
+ #: wp-statistics.php:241
1249
  msgid "WP Statistics %s installed on"
1250
  msgstr ""
1251
 
1293
  msgid "Browscap.ini update on"
1294
  msgstr ""
1295
 
1296
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1297
  #. Plugin URI of the plugin/theme
1298
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1299
  #. Author URI of the plugin/theme
1300
  msgid "http://wp-statistics.com/"
1301
  msgstr "http://WP-Statistics.com/"
1422
  msgstr "Faceţi clic pentru a comuta"
1423
 
1424
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1425
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
1426
+ #: wp-statistics.php:426
1427
  msgid "Browsers"
1428
  msgstr "Browsere"
1429
 
1452
  msgid "Exclusions Statistics"
1453
  msgstr "Excluderi statistici"
1454
 
1455
+ #: includes/functions/functions.php:931
1456
  msgid "10 Days"
1457
  msgstr "10 zile"
1458
 
1459
+ #: includes/functions/functions.php:931
1460
  msgid "20 Days"
1461
  msgstr "20 de zile"
1462
 
1463
+ #: includes/functions/functions.php:931
1464
  msgid "30 Days"
1465
  msgstr "30 de zile"
1466
 
1467
+ #: includes/functions/functions.php:931
1468
  msgid "2 Months"
1469
  msgstr "2 luni"
1470
 
1471
+ #: includes/functions/functions.php:931
1472
  msgid "3 Months"
1473
  msgstr "3 luni"
1474
 
1475
+ #: includes/functions/functions.php:931
1476
  msgid "6 Months"
1477
  msgstr "6 luni"
1478
 
1479
+ #: includes/functions/functions.php:931
1480
  msgid "9 Months"
1481
  msgstr "9 luni"
1482
 
1483
+ #: includes/functions/functions.php:931
1484
  msgid "1 Year"
1485
  msgstr "1 an"
1486
 
1529
  msgid "Latest Search Word Statistics"
1530
  msgstr "Cele mai recente căutare cuvânt statistici"
1531
 
1532
+ #: includes/log/last-search.php:110 includes/log/last-visitor.php:101
1533
  #: includes/log/online.php:50 includes/log/widgets/google.map.php:84
1534
  #: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
1535
+ #: includes/log/widgets/words.php:46
1536
  msgid "#hash#"
1537
  msgstr "#hash #"
1538
 
1539
+ #: includes/log/last-search.php:115 includes/log/last-visitor.php:106
1540
  #: includes/log/online.php:55 includes/log/top-referring.php:71
1541
+ #: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
1542
  #: includes/settings/tabs/wps-overview-display.php:33
1543
  #: includes/settings/tabs/wps-overview-display.php:113
1544
  msgid "Map"
1545
  msgstr "Hartă"
1546
 
1547
+ #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1548
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1549
  #: includes/log/top-referring.php:125
1550
  msgid "Page"
1551
  msgstr "Filme"
1552
 
1553
+ #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1554
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1555
  #: includes/log/top-referring.php:125
1556
  msgid "From"
1739
  msgstr "Timp: %s"
1740
 
1741
  #: includes/log/widgets/top.visitors.php:31
1742
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
1743
+ #: wp-statistics.php:353 wp-statistics.php:429
1744
  msgid "Hits"
1745
  msgstr "Hit-uri"
1746
 
1782
  msgid "No platform data found to remove!"
1783
  msgstr ""
1784
 
1785
+ #: includes/functions/functions.php:1019
1786
  msgid "%s table data deleted successfully."
1787
  msgstr "date de tabel %s şters cu succes."
1788
 
1789
+ #: includes/functions/functions.php:1023
1790
  msgid "Error, %s not emptied!"
1791
  msgstr "Eroare, %s nu golite!"
1792
 
1812
 
1813
  #: includes/optimization/tabs/wps-optimization-database.php:25
1814
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1815
+ #: wp-statistics.php:351 wp-statistics.php:427
1816
  msgid "Countries"
1817
  msgstr "Ţări"
1818
 
1828
  msgstr "Instalări mai vechi de WP Statistics permit intrările dublate în tabelul de vizitatori într-un caz de colţ. Mai nou se instalează proteja cu un index unic pe masă. Pentru a crea indexul pe instalează mai vechi intrările dublate trebuie șters în primul rând. Clic pe \"Update Now\" va scana tabelul vistitors, Ştergeţi intrările dublate şi adăugaţi index."
1829
 
1830
  #: includes/optimization/tabs/wps-optimization-database.php:41
1831
+ #: includes/optimization/tabs/wps-optimization-database.php:102
1832
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1833
  msgstr "Această operaţiune ar putea dura mult timp pe instalează cu multe rânduri din tabelul de vizitatori."
1834
 
1838
 
1839
  #: includes/optimization/tabs/wps-optimization-database.php:47
1840
  #: includes/optimization/tabs/wps-optimization-database.php:77
1841
+ #: includes/optimization/tabs/wps-optimization-database.php:108
1842
  msgid "Congratulations, your installation is already up to date, nothing to do."
1843
  msgstr "Felicitări, instalarea este deja până la data, nimic de a face."
1844
 
1845
  #: includes/optimization/tabs/wps-optimization-export.php:8
1846
+ #: includes/optimization/wps-optimization.php:212
1847
  msgid "Export"
1848
  msgstr "Export"
1849
 
1896
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1897
  #: includes/settings/tabs/wps-general.php:138
1898
  #: includes/settings/tabs/wps-general.php:143 shortcode.php:133
1899
+ #: wp-statistics.php:360 wp-statistics.php:436
1900
  msgid "Visitors"
1901
  msgstr "Vizitatori"
1902
 
2211
  msgid "Install routine complete."
2212
  msgstr "Instalarea completă de rutină."
2213
 
2214
+ #: includes/optimization/wps-optimization.php:211
2215
  msgid "Resources/Information"
2216
  msgstr "Resurse/informatii"
2217
 
2218
+ #: includes/optimization/wps-optimization.php:213
2219
  msgid "Purging"
2220
  msgstr "Epurare"
2221
 
2222
+ #: includes/optimization/wps-optimization.php:214
2223
  msgid "Database"
2224
  msgstr "Baza de date"
2225
 
2226
+ #: includes/optimization/wps-optimization.php:215
2227
  msgid "Updates"
2228
  msgstr "Actualizări"
2229
 
2230
+ #: includes/optimization/wps-optimization.php:216
2231
  msgid "Historical"
2232
  msgstr ""
2233
 
2377
  msgstr ""
2378
 
2379
  #: includes/settings/tabs/wps-access-level.php:23
2380
+ #: includes/settings/wps-settings.php:103
2381
  msgid "Access Levels"
2382
  msgstr "Nivele de acces"
2383
 
2410
  msgstr "Dacă aveţi nevoie de o soluţie mai robust pentru a delega acces aţi putea dori să se uite la %s în WordPress plug-in directorul."
2411
 
2412
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2413
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:352
2414
+ #: wp-statistics.php:428
2415
  msgid "Exclusions"
2416
  msgstr "Excluderi"
2417
 
2582
  msgid "Exclude the RSS feeds for registering as a hit."
2583
  msgstr ""
2584
 
2585
+ #: includes/settings/tabs/wps-externals.php:162
2586
  msgid "browscap settings"
2587
  msgstr "Setări browscap"
2588
 
2589
+ #: includes/settings/tabs/wps-externals.php:167
2590
  msgid "browscap usage"
2591
  msgstr "browscap de utilizare"
2592
 
2593
+ #: includes/settings/tabs/wps-externals.php:52
2594
+ #: includes/settings/tabs/wps-externals.php:76
2595
+ #: includes/settings/tabs/wps-externals.php:109
2596
+ #: includes/settings/tabs/wps-externals.php:172
2597
+ #: includes/settings/tabs/wps-externals.php:196
2598
+ #: includes/settings/tabs/wps-externals.php:235
2599
+ #: includes/settings/tabs/wps-externals.php:259
2600
  #: includes/settings/tabs/wps-general.php:76
2601
  #: includes/settings/tabs/wps-general.php:92
2602
  #: includes/settings/tabs/wps-general.php:116
2612
  #: includes/settings/tabs/wps-general.php:286
2613
  #: includes/settings/tabs/wps-general.php:325
2614
  #: includes/settings/tabs/wps-general.php:341
 
 
 
2615
  #: includes/settings/tabs/wps-maintenance.php:40
2616
  #: includes/settings/tabs/wps-maintenance.php:64
2617
  #: includes/settings/tabs/wps-notifications.php:69
2626
  msgid "Active"
2627
  msgstr "Activ"
2628
 
2629
+ #: includes/settings/tabs/wps-externals.php:173
2630
  msgid "The browscap database will be downloaded and used to detect robots."
2631
  msgstr "Browscap baza de date va fi descărcate şi utilizate pentru a detecta roboţi."
2632
 
2633
+ #: includes/settings/tabs/wps-externals.php:179
2634
  msgid "Update browscap Info"
2635
  msgstr "Actualizare browscap Info"
2636
 
2637
+ #: includes/settings/tabs/wps-externals.php:184
2638
  msgid "Download browscap Database"
2639
  msgstr "Descarca browscap baza de date"
2640
 
2641
+ #: includes/settings/tabs/wps-externals.php:65
2642
+ #: includes/settings/tabs/wps-externals.php:185
2643
+ #: includes/settings/tabs/wps-externals.php:248
2644
  msgid "Save changes on this page to download the update."
2645
  msgstr "Salvați modificările pe această pagină pentru a descărca actualizarea."
2646
 
2647
+ #: includes/settings/tabs/wps-externals.php:191
2648
  msgid "Schedule weekly update of browscap DB"
2649
  msgstr "Orarul săptămânal update de browscap DB"
2650
 
2651
+ #: includes/settings/tabs/wps-externals.php:79
2652
+ #: includes/settings/tabs/wps-externals.php:199
2653
+ #: includes/settings/tabs/wps-externals.php:262
2654
  msgid "Next update will be"
2655
  msgstr "Următoarea actualizare va fi"
2656
 
2657
+ #: includes/settings/tabs/wps-externals.php:214
2658
  msgid "Download of the browscap database will be scheduled for once a week."
2659
  msgstr "Descarca browscap bazei de date va fi programat pentru o dată pe săptămână."
2660
 
languages/wp_statistics-ru_RU.mo CHANGED
Binary file
languages/wp_statistics-ru_RU.po CHANGED
@@ -10,6 +10,70 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  #: includes/settings/tabs/wps-exclusions.php:148
14
  msgid "Treat corrupt browser info as a bot"
15
  msgstr ""
@@ -158,7 +222,7 @@ msgstr ""
158
  msgid "Have you thought about donating to WP Statistics?"
159
  msgstr ""
160
 
161
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:362
162
  msgid "Donate"
163
  msgstr ""
164
 
@@ -194,11 +258,11 @@ msgstr ""
194
  msgid "Time Frame"
195
  msgstr ""
196
 
197
- #: includes/functions/functions.php:929
198
  msgid "to"
199
  msgstr ""
200
 
201
- #: includes/functions/functions.php:929 includes/log/top-visitors.php:29
202
  msgid "Go"
203
  msgstr ""
204
 
@@ -242,11 +306,11 @@ msgstr ""
242
  msgid "Filtered by"
243
  msgstr ""
244
 
245
- #: includes/functions/functions.php:922 includes/functions/functions.php:925
246
  msgid "Range"
247
  msgstr ""
248
 
249
- #: includes/functions/functions.php:929 includes/log/top-visitors.php:29
250
  msgid "MM/DD/YYYY"
251
  msgstr "MM/DD/YYYY"
252
 
@@ -290,27 +354,27 @@ msgstr ""
290
  msgid "Last 7 Days (Week)"
291
  msgstr ""
292
 
293
- #: includes/functions/functions.php:403
294
  msgid "Yahoo!"
295
  msgstr ""
296
 
297
- #: includes/functions/functions.php:404
298
  msgid "Yandex"
299
  msgstr ""
300
 
301
- #: includes/functions/functions.php:400
302
  msgid "clearch.org"
303
  msgstr ""
304
 
305
- #: includes/functions/functions.php:401
306
  msgid "DuckDuckGo"
307
  msgstr ""
308
 
309
- #: includes/functions/functions.php:399
310
  msgid "Bing"
311
  msgstr ""
312
 
313
- #: includes/functions/functions.php:398
314
  msgid "Baidu"
315
  msgstr ""
316
 
@@ -413,8 +477,8 @@ msgid "For each visit to account for several hits. Currently %s."
413
  msgstr "Для каждого визита за несколько посещений. Сейчас %s."
414
 
415
  #: includes/settings/tabs/wps-general.php:177
416
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:351
417
- #: wp-statistics.php:427
418
  msgid "Pages"
419
  msgstr "Страниц"
420
 
@@ -498,75 +562,75 @@ msgstr "Включить итоги"
498
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
499
  msgstr "Добавить общая линия диаграммы с несколькими значениями, как двигатель поиска рефералов"
500
 
501
- #: includes/settings/tabs/wps-geoip.php:27
502
  msgid "GeoIP settings"
503
  msgstr "Параметры GeoIP"
504
 
505
- #: includes/settings/tabs/wps-geoip.php:32
506
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
507
  msgstr "IP место службы, предоставляемые GeoLite2 данных, созданных MaxMind, доступные из %s."
508
 
509
- #: includes/settings/tabs/wps-geoip.php:42
510
  msgid "GeoIP collection"
511
  msgstr "Коллекция GeoIP"
512
 
513
- #: includes/settings/tabs/wps-geoip.php:48
514
  msgid "For get more information and location (country) from visitor, enable this feature."
515
  msgstr "Для получения дополнительной информации и местоположения (страны) от посетителя, включите эту функцию."
516
 
517
- #: includes/settings/tabs/wps-geoip.php:54
518
  msgid "Update GeoIP Info"
519
  msgstr "Обновление GeoIP информация"
520
 
521
- #: includes/settings/tabs/wps-geoip.php:59
522
  msgid "Download GeoIP Database"
523
  msgstr "Скачать GeoIP базы данных"
524
 
525
- #: includes/settings/tabs/wps-geoip.php:66
526
  msgid "Schedule monthly update of GeoIP DB"
527
  msgstr "Расписание ежемесячное обновление GeoIP дБ"
528
 
529
- #: includes/settings/tabs/wps-geoip.php:92
530
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
531
  msgstr "Скачать GeoIP базы данных будет назначено на 2 дня после первого вторника месяца."
532
 
533
- #: includes/settings/tabs/wps-geoip.php:93
534
  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)."
535
  msgstr "Этот параметр также скачать базы данных, если местные размер файла меньше, чем 1k, (который обычно означает, что до сих пор на месте заглушки, которая поставляется с плагином)."
536
 
537
- #: includes/settings/tabs/wps-geoip.php:99
538
  msgid "Populate missing GeoIP after update of GeoIP DB"
539
  msgstr "Заполнить недостающие GeoIP после обновление GeoIP дБ"
540
 
541
- #: includes/settings/tabs/wps-geoip.php:105
542
  msgid "Update any missing GeoIP data after downloading a new database."
543
  msgstr "Обновление любых отсутствующих данных GeoIP после загрузки новой базы данных."
544
 
545
- #: includes/settings/tabs/wps-geoip.php:111
546
  msgid "Country code for private IP addresses"
547
  msgstr ""
548
 
549
- #: includes/settings/tabs/wps-geoip.php:116
550
  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."
551
  msgstr ""
552
 
553
- #: includes/settings/tabs/wps-geoip.php:127
554
  msgid "GeoIP collection is disabled due to the following reasons:"
555
  msgstr "Коллекция GeoIP отключена по следующим причинам:"
556
 
557
- #: includes/settings/tabs/wps-geoip.php:130
558
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
559
  msgstr "GeoIP коллекции требует PHP %s или выше, в настоящее время отключена из-за установленной версии PHP, в настоящее время "
560
 
561
- #: includes/settings/tabs/wps-geoip.php:135
562
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
563
  msgstr "GeoIP коллекции требует расширения PHP cURL и он не загружается на вашей версии PHP!"
564
 
565
- #: includes/settings/tabs/wps-geoip.php:141
566
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
567
  msgstr "GeoIP коллекции требует расширение PHP математике до н.э. и он не загружается на вашей версии PHP!"
568
 
569
- #: includes/settings/tabs/wps-geoip.php:147
570
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
571
  msgstr "Безопасный режим PHP обнаружены! GeoIP коллекции не поддерживается в PHP безопасном режиме включен!"
572
 
@@ -626,7 +690,6 @@ msgstr ""
626
 
627
  #: includes/log/exclusions.php:24
628
  #: includes/settings/tabs/wps-notifications.php:76
629
- #: includes/settings/wps-settings.php:111
630
  msgid "GeoIP"
631
  msgstr "GeoIP"
632
 
@@ -651,7 +714,7 @@ msgid "Send a report whenever the plugin is upgraded."
651
  msgstr ""
652
 
653
  #: includes/settings/tabs/wps-notifications.php:111
654
- #: includes/settings/tabs/wps-notifications.php:116 schedule.php:199
655
  msgid "Statistical reporting"
656
  msgstr "Статистическая отчетность"
657
 
@@ -700,7 +763,7 @@ msgid "Any shortcode supported by your installation of WordPress, include all sh
700
  msgstr ""
701
 
702
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
703
- #: widget.php:245 wp-statistics.php:532
704
  msgid "User Online"
705
  msgstr "Посетителей онлайн"
706
 
@@ -743,7 +806,7 @@ msgid "Summary Statistics"
743
  msgstr "Сводная статистика"
744
 
745
  #: includes/settings/tabs/wps-overview-display.php:28
746
- #: includes/settings/wps-settings.php:115
747
  msgid "About"
748
  msgstr "О"
749
 
@@ -793,7 +856,7 @@ msgstr ""
793
  msgid "Map type"
794
  msgstr "Тип карты"
795
 
796
- #: includes/functions/functions.php:402
797
  #: includes/settings/tabs/wps-overview-display.php:128
798
  msgid "Google"
799
  msgstr "Google"
@@ -903,35 +966,30 @@ msgstr ""
903
  msgid "Remove data and settings, this action cannot be undone."
904
  msgstr ""
905
 
906
- #: includes/settings/wps-settings.php:106
907
  msgid "General"
908
  msgstr "Общие"
909
 
910
- #: includes/settings/wps-settings.php:107
911
  msgid "Notifications"
912
  msgstr ""
913
 
914
- #: includes/settings/wps-settings.php:108
915
  msgid "Dashboard/Overview"
916
  msgstr ""
917
 
918
- #: includes/settings/wps-settings.php:112
919
- msgid "browscap"
920
- msgstr "browscap"
921
-
922
- #: includes/settings/wps-settings.php:113
923
  msgid "Maintenance"
924
  msgstr "Техническое обслуживание"
925
 
926
- #: includes/settings/wps-settings.php:114
927
  msgid "Removal"
928
  msgstr ""
929
 
930
  #: includes/settings/tabs/wps-access-level.php:85
931
- #: includes/settings/tabs/wps-browscap.php:81
932
  #: includes/settings/tabs/wps-exclusions.php:234
 
933
  #: includes/settings/tabs/wps-general.php:349
934
- #: includes/settings/tabs/wps-geoip.php:158
935
  #: includes/settings/tabs/wps-maintenance.php:84
936
  #: includes/settings/tabs/wps-notifications.php:201
937
  #: includes/settings/tabs/wps-overview-display.php:388
@@ -951,7 +1009,7 @@ msgstr "Каждые 2 недели"
951
  msgid "Once Every 4 Weeks"
952
  msgstr "Каждые 4 недели"
953
 
954
- #: widget.php:14 wp-statistics.php:342 wp-statistics.php:380
955
  msgid "Statistics"
956
  msgstr "Статистика"
957
 
@@ -1023,7 +1081,7 @@ msgstr "Имя"
1023
  msgid "Items"
1024
  msgstr "Пункты"
1025
 
1026
- #: widget.php:254 wp-statistics.php:557
1027
  msgid "Yesterday visit"
1028
  msgstr "Вчера посетителей"
1029
 
@@ -1051,13 +1109,13 @@ msgstr ""
1051
  msgid "WP Statistics has been removed, please disable and delete it."
1052
  msgstr ""
1053
 
1054
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1055
  #. Plugin Name of the plugin/theme
1056
  #: wp-statistics.php:37
1057
  msgid "WP Statistics"
1058
  msgstr "WP Statistics"
1059
 
1060
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1061
  #. Description of the plugin/theme
1062
  #: wp-statistics.php:38
1063
  msgid "Complete statistics for your WordPress site."
@@ -1087,99 +1145,99 @@ msgstr "GeoIP коллекция не является активным, пер
1087
  msgid "Setting page > GeoIP"
1088
  msgstr "Настройка страницы > GeoIP"
1089
 
1090
- #: wp-statistics.php:249 wp-statistics.php:361 wp-statistics.php:434
1091
  msgid "Settings"
1092
  msgstr "Настройки"
1093
 
1094
- #: wp-statistics.php:261
1095
  msgid "Click here to visit the plugin on WordPress.org"
1096
  msgstr "Нажмите здесь, чтобы посетить на WordPress.org плагин"
1097
 
1098
- #: wp-statistics.php:261
1099
  msgid "Visit WordPress.org page"
1100
  msgstr "Посетите страницы WordPress.org"
1101
 
1102
- #: wp-statistics.php:264
1103
  msgid "Click here to rate and review this plugin on WordPress.org"
1104
  msgstr "Нажмите здесь, чтобы оценить и пересмотреть этот плагин на WordPress.org"
1105
 
1106
- #: wp-statistics.php:264
1107
  msgid "Rate this plugin"
1108
  msgstr "Оценить этот плагин"
1109
 
1110
- #: wp-statistics.php:308
1111
  msgid "WP Statistics - Hits"
1112
  msgstr "WP Statistics - хиты"
1113
 
1114
- #: wp-statistics.php:345 wp-statistics.php:383 wp-statistics.php:421
1115
  msgid "Overview"
1116
  msgstr "Обзор"
1117
 
1118
- #: wp-statistics.php:350 wp-statistics.php:426
1119
  msgid "Online"
1120
  msgstr ""
1121
 
1122
- #: wp-statistics.php:352 wp-statistics.php:428
1123
  msgid "Referrers"
1124
  msgstr ""
1125
 
1126
- #: shortcode.php:135 wp-statistics.php:353 wp-statistics.php:429
1127
  msgid "Searches"
1128
  msgstr "Поиск"
1129
 
1130
- #: wp-statistics.php:354 wp-statistics.php:430
1131
  msgid "Search Words"
1132
  msgstr "Поисковые слова"
1133
 
1134
- #: wp-statistics.php:355 wp-statistics.php:431
1135
  msgid "Top Visitors Today"
1136
  msgstr ""
1137
 
1138
- #: wp-statistics.php:360 wp-statistics.php:433
1139
  msgid "Optimization"
1140
  msgstr "Оптимизация"
1141
 
1142
- #: wp-statistics.php:366 wp-statistics.php:397
1143
  msgid "Manual"
1144
  msgstr "Вручную"
1145
 
1146
- #: wp-statistics.php:412
1147
  msgid "Site"
1148
  msgstr ""
1149
 
1150
- #: wp-statistics.php:413
1151
  msgid "Options"
1152
  msgstr ""
1153
 
1154
- #: wp-statistics.php:539
1155
  msgid "Today visitor"
1156
  msgstr "Сегодня посетитель"
1157
 
1158
- #: wp-statistics.php:545
1159
  msgid "Today visit"
1160
  msgstr "Сегодня посетить"
1161
 
1162
- #: wp-statistics.php:551
1163
  msgid "Yesterday visitor"
1164
  msgstr "Вчера посетитель"
1165
 
1166
- #: wp-statistics.php:563
1167
  msgid "View Stats"
1168
  msgstr "Статистика"
1169
 
1170
- #: wp-statistics.php:587
1171
  msgid "Download ODF file"
1172
  msgstr "Скачать ODF файл"
1173
 
1174
- #: wp-statistics.php:588
1175
  msgid "Download HTML file"
1176
  msgstr "Скачать файл HTML"
1177
 
1178
- #: wp-statistics.php:592
1179
  msgid "Manual file not found."
1180
  msgstr "Вручную файл не найден."
1181
 
1182
- #: wp-statistics.php:659 wp-statistics.php:770 wp-statistics.php:804
1183
  msgid "You do not have sufficient permissions to access this page."
1184
  msgstr "У вас нет достаточных прав для доступа к этой странице."
1185
 
@@ -1187,7 +1245,7 @@ msgstr "У вас нет достаточных прав для доступа
1187
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
1188
  msgstr ""
1189
 
1190
- #: wp-statistics.php:237
1191
  msgid "WP Statistics %s installed on"
1192
  msgstr ""
1193
 
@@ -1235,9 +1293,9 @@ msgstr "browscap уже на текущей версии!"
1235
  msgid "Browscap.ini update on"
1236
  msgstr ""
1237
 
1238
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1239
  #. Plugin URI of the plugin/theme
1240
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1241
  #. Author URI of the plugin/theme
1242
  msgid "http://wp-statistics.com/"
1243
  msgstr "http://WP-Statistics.com/"
@@ -1364,8 +1422,8 @@ msgid "Click to toggle"
1364
  msgstr "Нажмите для переключения"
1365
 
1366
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1367
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:346
1368
- #: wp-statistics.php:422
1369
  msgid "Browsers"
1370
  msgstr "Браузеры"
1371
 
@@ -1394,35 +1452,35 @@ msgstr "Внимание: Исключение не установлены в н
1394
  msgid "Exclusions Statistics"
1395
  msgstr "Статистика исключения"
1396
 
1397
- #: includes/functions/functions.php:879
1398
  msgid "10 Days"
1399
  msgstr "10 дней"
1400
 
1401
- #: includes/functions/functions.php:879
1402
  msgid "20 Days"
1403
  msgstr "20 дней"
1404
 
1405
- #: includes/functions/functions.php:879
1406
  msgid "30 Days"
1407
  msgstr "30 дней"
1408
 
1409
- #: includes/functions/functions.php:879
1410
  msgid "2 Months"
1411
  msgstr "2 месяца"
1412
 
1413
- #: includes/functions/functions.php:879
1414
  msgid "3 Months"
1415
  msgstr "3 месяца"
1416
 
1417
- #: includes/functions/functions.php:879
1418
  msgid "6 Months"
1419
  msgstr "6 месяцев"
1420
 
1421
- #: includes/functions/functions.php:879
1422
  msgid "9 Months"
1423
  msgstr "9 месяцев"
1424
 
1425
- #: includes/functions/functions.php:879
1426
  msgid "1 Year"
1427
  msgstr "1 год"
1428
 
@@ -1471,28 +1529,28 @@ msgstr "Посетитель"
1471
  msgid "Latest Search Word Statistics"
1472
  msgstr "Последние статистические данные слова поиска"
1473
 
1474
- #: includes/log/last-search.php:100 includes/log/last-visitor.php:101
1475
  #: includes/log/online.php:50 includes/log/widgets/google.map.php:84
1476
  #: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
1477
- #: includes/log/widgets/words.php:36
1478
  msgid "#hash#"
1479
  msgstr "#hash #"
1480
 
1481
- #: includes/log/last-search.php:105 includes/log/last-visitor.php:106
1482
  #: includes/log/online.php:55 includes/log/top-referring.php:71
1483
- #: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:43
1484
  #: includes/settings/tabs/wps-overview-display.php:33
1485
  #: includes/settings/tabs/wps-overview-display.php:113
1486
  msgid "Map"
1487
  msgstr "Карта"
1488
 
1489
- #: includes/log/last-search.php:142 includes/log/last-visitor.php:139
1490
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1491
  #: includes/log/top-referring.php:125
1492
  msgid "Page"
1493
  msgstr "Страница"
1494
 
1495
- #: includes/log/last-search.php:142 includes/log/last-visitor.php:139
1496
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1497
  #: includes/log/top-referring.php:125
1498
  msgid "From"
@@ -1681,8 +1739,8 @@ msgid "Time: %s"
1681
  msgstr "Время: %s"
1682
 
1683
  #: includes/log/widgets/top.visitors.php:31
1684
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:273
1685
- #: wp-statistics.php:349 wp-statistics.php:425
1686
  msgid "Hits"
1687
  msgstr "Хиты"
1688
 
@@ -1724,11 +1782,11 @@ msgstr "Платформа данных %s успешно удалены."
1724
  msgid "No platform data found to remove!"
1725
  msgstr ""
1726
 
1727
- #: includes/functions/functions.php:967
1728
  msgid "%s table data deleted successfully."
1729
  msgstr "данные таблицы %s успешно удалены."
1730
 
1731
- #: includes/functions/functions.php:971
1732
  msgid "Error, %s not emptied!"
1733
  msgstr "Ошибка %s не опустели!"
1734
 
@@ -1754,7 +1812,7 @@ msgstr "Индекс базы данных"
1754
 
1755
  #: includes/optimization/tabs/wps-optimization-database.php:25
1756
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1757
- #: wp-statistics.php:347 wp-statistics.php:423
1758
  msgid "Countries"
1759
  msgstr "Страны"
1760
 
@@ -1770,6 +1828,7 @@ msgid "Older installs of WP Statistics allow for duplicate entries in the visito
1770
  msgstr "Старые установки WP статистики позволяют дубликатов записей в таблице посетителей в случае угла. Новые установки защититься от этого уникального индекса для таблицы. Чтобы создать индекс на старые установки повторяющиеся записи сначала должно быть удалено. Нажав \"Update Now\" будет сканировать vistitors таблицы, удаление повторяющихся записей и добавить индекс."
1771
 
1772
  #: includes/optimization/tabs/wps-optimization-database.php:41
 
1773
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1774
  msgstr "Эта операция может занять много времени на установки с большим количеством строк в таблице посетителей."
1775
 
@@ -1779,11 +1838,12 @@ msgstr "Старые установки WP статистики позволяю
1779
 
1780
  #: includes/optimization/tabs/wps-optimization-database.php:47
1781
  #: includes/optimization/tabs/wps-optimization-database.php:77
 
1782
  msgid "Congratulations, your installation is already up to date, nothing to do."
1783
  msgstr "Поздравляем ваша установка находится уже в курсе, ничего не делать."
1784
 
1785
  #: includes/optimization/tabs/wps-optimization-export.php:8
1786
- #: includes/optimization/wps-optimization.php:183
1787
  msgid "Export"
1788
  msgstr "Экспорт"
1789
 
@@ -1836,7 +1896,7 @@ msgstr ""
1836
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1837
  #: includes/settings/tabs/wps-general.php:138
1838
  #: includes/settings/tabs/wps-general.php:143 shortcode.php:133
1839
- #: wp-statistics.php:356 wp-statistics.php:432
1840
  msgid "Visitors"
1841
  msgstr "Посетителей"
1842
 
@@ -2151,23 +2211,23 @@ msgstr "IP-адреса заменяются значениями хэша."
2151
  msgid "Install routine complete."
2152
  msgstr "Установите полную рутину."
2153
 
2154
- #: includes/optimization/wps-optimization.php:182
2155
  msgid "Resources/Information"
2156
  msgstr "Ресурсы/информация"
2157
 
2158
- #: includes/optimization/wps-optimization.php:184
2159
  msgid "Purging"
2160
  msgstr "Очистка"
2161
 
2162
- #: includes/optimization/wps-optimization.php:185
2163
  msgid "Database"
2164
  msgstr "База данных"
2165
 
2166
- #: includes/optimization/wps-optimization.php:186
2167
  msgid "Updates"
2168
  msgstr "Обновления"
2169
 
2170
- #: includes/optimization/wps-optimization.php:187
2171
  msgid "Historical"
2172
  msgstr ""
2173
 
@@ -2317,7 +2377,7 @@ msgid "This is the honey pot for WP Statistics to use, do not delete."
2317
  msgstr ""
2318
 
2319
  #: includes/settings/tabs/wps-access-level.php:23
2320
- #: includes/settings/wps-settings.php:109
2321
  msgid "Access Levels"
2322
  msgstr "Уровни доступа"
2323
 
@@ -2350,8 +2410,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2350
  msgstr "Если вам нужно более надежное решение для делегирования доступа вы можете взглянуть на %s в WordPress плагин каталога."
2351
 
2352
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2353
- #: includes/settings/wps-settings.php:110 wp-statistics.php:348
2354
- #: wp-statistics.php:424
2355
  msgid "Exclusions"
2356
  msgstr "Исключения"
2357
 
@@ -2522,16 +2582,21 @@ msgstr ""
2522
  msgid "Exclude the RSS feeds for registering as a hit."
2523
  msgstr ""
2524
 
2525
- #: includes/settings/tabs/wps-browscap.php:22
2526
  msgid "browscap settings"
2527
  msgstr "browscap параметры"
2528
 
2529
- #: includes/settings/tabs/wps-browscap.php:27
2530
  msgid "browscap usage"
2531
  msgstr "browscap использование"
2532
 
2533
- #: includes/settings/tabs/wps-browscap.php:32
2534
- #: includes/settings/tabs/wps-browscap.php:56
 
 
 
 
 
2535
  #: includes/settings/tabs/wps-general.php:76
2536
  #: includes/settings/tabs/wps-general.php:92
2537
  #: includes/settings/tabs/wps-general.php:116
@@ -2547,9 +2612,6 @@ msgstr "browscap использование"
2547
  #: includes/settings/tabs/wps-general.php:286
2548
  #: includes/settings/tabs/wps-general.php:325
2549
  #: includes/settings/tabs/wps-general.php:341
2550
- #: includes/settings/tabs/wps-geoip.php:47
2551
- #: includes/settings/tabs/wps-geoip.php:71
2552
- #: includes/settings/tabs/wps-geoip.php:104
2553
  #: includes/settings/tabs/wps-maintenance.php:40
2554
  #: includes/settings/tabs/wps-maintenance.php:64
2555
  #: includes/settings/tabs/wps-notifications.php:69
@@ -2564,33 +2626,35 @@ msgstr "browscap использование"
2564
  msgid "Active"
2565
  msgstr "Активные"
2566
 
2567
- #: includes/settings/tabs/wps-browscap.php:33
2568
  msgid "The browscap database will be downloaded and used to detect robots."
2569
  msgstr "База данных browscap будет загружено и используются для обнаружения роботов."
2570
 
2571
- #: includes/settings/tabs/wps-browscap.php:39
2572
  msgid "Update browscap Info"
2573
  msgstr "Обновление browscap информация"
2574
 
2575
- #: includes/settings/tabs/wps-browscap.php:44
2576
  msgid "Download browscap Database"
2577
  msgstr "Скачать browscap базы данных"
2578
 
2579
- #: includes/settings/tabs/wps-browscap.php:45
2580
- #: includes/settings/tabs/wps-geoip.php:60
 
2581
  msgid "Save changes on this page to download the update."
2582
  msgstr "Сохраните изменения на этой странице для загрузки обновления."
2583
 
2584
- #: includes/settings/tabs/wps-browscap.php:51
2585
  msgid "Schedule weekly update of browscap DB"
2586
  msgstr "Еженедельное обновление расписания browscap DB"
2587
 
2588
- #: includes/settings/tabs/wps-browscap.php:59
2589
- #: includes/settings/tabs/wps-geoip.php:74
 
2590
  msgid "Next update will be"
2591
  msgstr "Следующее обновление будет"
2592
 
2593
- #: includes/settings/tabs/wps-browscap.php:74
2594
  msgid "Download of the browscap database will be scheduled for once a week."
2595
  msgstr "Скачать базы данных browscap будет планироваться за один раз в неделю."
2596
 
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: includes/optimization/wps-optimization.php:173
14
+ msgid "Search table conversion complete, %d rows added."
15
+ msgstr ""
16
+
17
+ #: includes/optimization/tabs/wps-optimization-database.php:107
18
+ msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion."
19
+ msgstr ""
20
+
21
+ #: includes/optimization/tabs/wps-optimization-database.php:86
22
+ msgid "Search Table"
23
+ msgstr ""
24
+
25
+ #: includes/optimization/tabs/wps-optimization-database.php:91
26
+ msgid "Convert"
27
+ msgstr ""
28
+
29
+ #: includes/optimization/tabs/wps-optimization-database.php:100
30
+ msgid "Convert Now!"
31
+ msgstr ""
32
+
33
+ #: includes/optimization/tabs/wps-optimization-database.php:101
34
+ msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion, however the old data must first be converted to the new format before it can be used."
35
+ msgstr ""
36
+
37
+ #: includes/log/exclusions.php:24
38
+ msgid "Referrer Spam"
39
+ msgstr ""
40
+
41
+ #: includes/settings/tabs/wps-externals.php:277
42
+ msgid "Download of the Piwik Referrer Spam Blacklist database will be scheduled for once a week."
43
+ msgstr ""
44
+
45
+ #: includes/settings/wps-settings.php:105
46
+ msgid "Externals"
47
+ msgstr ""
48
+
49
+ #: includes/settings/tabs/wps-externals.php:219
50
+ msgid "Piwik Referrer Spam Blacklist settings"
51
+ msgstr ""
52
+
53
+ #: includes/settings/tabs/wps-externals.php:254
54
+ msgid "Schedule weekly update of Piwik Referrer Spam Blacklist DB"
55
+ msgstr ""
56
+
57
+ #: includes/settings/tabs/wps-externals.php:247
58
+ msgid "Download Piwik Referrer Spam Blacklist Database"
59
+ msgstr ""
60
+
61
+ #: includes/settings/tabs/wps-externals.php:242
62
+ msgid "Update Piwik Referrer Spam Blacklist Info"
63
+ msgstr ""
64
+
65
+ #: includes/settings/tabs/wps-externals.php:236
66
+ msgid "The Piwik Referrer Spam Blacklist database will be downloaded and used to detect referrer spam."
67
+ msgstr ""
68
+
69
+ #: includes/settings/tabs/wps-externals.php:224
70
+ msgid "Referrer spam blacklist is provided by Piwik, available from %s."
71
+ msgstr ""
72
+
73
+ #: includes/settings/tabs/wps-externals.php:230
74
+ msgid "Piwik Referrer Spam Blacklist usage"
75
+ msgstr ""
76
+
77
  #: includes/settings/tabs/wps-exclusions.php:148
78
  msgid "Treat corrupt browser info as a bot"
79
  msgstr ""
222
  msgid "Have you thought about donating to WP Statistics?"
223
  msgstr ""
224
 
225
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
226
  msgid "Donate"
227
  msgstr ""
228
 
258
  msgid "Time Frame"
259
  msgstr ""
260
 
261
+ #: includes/functions/functions.php:981
262
  msgid "to"
263
  msgstr ""
264
 
265
+ #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
266
  msgid "Go"
267
  msgstr ""
268
 
306
  msgid "Filtered by"
307
  msgstr ""
308
 
309
+ #: includes/functions/functions.php:974 includes/functions/functions.php:977
310
  msgid "Range"
311
  msgstr ""
312
 
313
+ #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
314
  msgid "MM/DD/YYYY"
315
  msgstr "MM/DD/YYYY"
316
 
354
  msgid "Last 7 Days (Week)"
355
  msgstr ""
356
 
357
+ #: includes/functions/functions.php:405
358
  msgid "Yahoo!"
359
  msgstr ""
360
 
361
+ #: includes/functions/functions.php:406
362
  msgid "Yandex"
363
  msgstr ""
364
 
365
+ #: includes/functions/functions.php:402
366
  msgid "clearch.org"
367
  msgstr ""
368
 
369
+ #: includes/functions/functions.php:403
370
  msgid "DuckDuckGo"
371
  msgstr ""
372
 
373
+ #: includes/functions/functions.php:401
374
  msgid "Bing"
375
  msgstr ""
376
 
377
+ #: includes/functions/functions.php:400
378
  msgid "Baidu"
379
  msgstr ""
380
 
477
  msgstr "Для каждого визита за несколько посещений. Сейчас %s."
478
 
479
  #: includes/settings/tabs/wps-general.php:177
480
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
481
+ #: wp-statistics.php:431
482
  msgid "Pages"
483
  msgstr "Страниц"
484
 
562
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
563
  msgstr "Добавить общая линия диаграммы с несколькими значениями, как двигатель поиска рефералов"
564
 
565
+ #: includes/settings/tabs/wps-externals.php:32
566
  msgid "GeoIP settings"
567
  msgstr "Параметры GeoIP"
568
 
569
+ #: includes/settings/tabs/wps-externals.php:37
570
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
571
  msgstr "IP место службы, предоставляемые GeoLite2 данных, созданных MaxMind, доступные из %s."
572
 
573
+ #: includes/settings/tabs/wps-externals.php:47
574
  msgid "GeoIP collection"
575
  msgstr "Коллекция GeoIP"
576
 
577
+ #: includes/settings/tabs/wps-externals.php:53
578
  msgid "For get more information and location (country) from visitor, enable this feature."
579
  msgstr "Для получения дополнительной информации и местоположения (страны) от посетителя, включите эту функцию."
580
 
581
+ #: includes/settings/tabs/wps-externals.php:59
582
  msgid "Update GeoIP Info"
583
  msgstr "Обновление GeoIP информация"
584
 
585
+ #: includes/settings/tabs/wps-externals.php:64
586
  msgid "Download GeoIP Database"
587
  msgstr "Скачать GeoIP базы данных"
588
 
589
+ #: includes/settings/tabs/wps-externals.php:71
590
  msgid "Schedule monthly update of GeoIP DB"
591
  msgstr "Расписание ежемесячное обновление GeoIP дБ"
592
 
593
+ #: includes/settings/tabs/wps-externals.php:97
594
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
595
  msgstr "Скачать GeoIP базы данных будет назначено на 2 дня после первого вторника месяца."
596
 
597
+ #: includes/settings/tabs/wps-externals.php:98
598
  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)."
599
  msgstr "Этот параметр также скачать базы данных, если местные размер файла меньше, чем 1k, (который обычно означает, что до сих пор на месте заглушки, которая поставляется с плагином)."
600
 
601
+ #: includes/settings/tabs/wps-externals.php:104
602
  msgid "Populate missing GeoIP after update of GeoIP DB"
603
  msgstr "Заполнить недостающие GeoIP после обновление GeoIP дБ"
604
 
605
+ #: includes/settings/tabs/wps-externals.php:110
606
  msgid "Update any missing GeoIP data after downloading a new database."
607
  msgstr "Обновление любых отсутствующих данных GeoIP после загрузки новой базы данных."
608
 
609
+ #: includes/settings/tabs/wps-externals.php:116
610
  msgid "Country code for private IP addresses"
611
  msgstr ""
612
 
613
+ #: includes/settings/tabs/wps-externals.php:121
614
  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."
615
  msgstr ""
616
 
617
+ #: includes/settings/tabs/wps-externals.php:132
618
  msgid "GeoIP collection is disabled due to the following reasons:"
619
  msgstr "Коллекция GeoIP отключена по следующим причинам:"
620
 
621
+ #: includes/settings/tabs/wps-externals.php:135
622
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
623
  msgstr "GeoIP коллекции требует PHP %s или выше, в настоящее время отключена из-за установленной версии PHP, в настоящее время "
624
 
625
+ #: includes/settings/tabs/wps-externals.php:140
626
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
627
  msgstr "GeoIP коллекции требует расширения PHP cURL и он не загружается на вашей версии PHP!"
628
 
629
+ #: includes/settings/tabs/wps-externals.php:146
630
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
631
  msgstr "GeoIP коллекции требует расширение PHP математике до н.э. и он не загружается на вашей версии PHP!"
632
 
633
+ #: includes/settings/tabs/wps-externals.php:152
634
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
635
  msgstr "Безопасный режим PHP обнаружены! GeoIP коллекции не поддерживается в PHP безопасном режиме включен!"
636
 
690
 
691
  #: includes/log/exclusions.php:24
692
  #: includes/settings/tabs/wps-notifications.php:76
 
693
  msgid "GeoIP"
694
  msgstr "GeoIP"
695
 
714
  msgstr ""
715
 
716
  #: includes/settings/tabs/wps-notifications.php:111
717
+ #: includes/settings/tabs/wps-notifications.php:116 schedule.php:221
718
  msgid "Statistical reporting"
719
  msgstr "Статистическая отчетность"
720
 
763
  msgstr ""
764
 
765
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
766
+ #: widget.php:245 wp-statistics.php:536
767
  msgid "User Online"
768
  msgstr "Посетителей онлайн"
769
 
806
  msgstr "Сводная статистика"
807
 
808
  #: includes/settings/tabs/wps-overview-display.php:28
809
+ #: includes/settings/wps-settings.php:108
810
  msgid "About"
811
  msgstr "О"
812
 
856
  msgid "Map type"
857
  msgstr "Тип карты"
858
 
859
+ #: includes/functions/functions.php:404
860
  #: includes/settings/tabs/wps-overview-display.php:128
861
  msgid "Google"
862
  msgstr "Google"
966
  msgid "Remove data and settings, this action cannot be undone."
967
  msgstr ""
968
 
969
+ #: includes/settings/wps-settings.php:100
970
  msgid "General"
971
  msgstr "Общие"
972
 
973
+ #: includes/settings/wps-settings.php:101
974
  msgid "Notifications"
975
  msgstr ""
976
 
977
+ #: includes/settings/wps-settings.php:102
978
  msgid "Dashboard/Overview"
979
  msgstr ""
980
 
981
+ #: includes/settings/wps-settings.php:106
 
 
 
 
982
  msgid "Maintenance"
983
  msgstr "Техническое обслуживание"
984
 
985
+ #: includes/settings/wps-settings.php:107
986
  msgid "Removal"
987
  msgstr ""
988
 
989
  #: includes/settings/tabs/wps-access-level.php:85
 
990
  #: includes/settings/tabs/wps-exclusions.php:234
991
+ #: includes/settings/tabs/wps-externals.php:284
992
  #: includes/settings/tabs/wps-general.php:349
 
993
  #: includes/settings/tabs/wps-maintenance.php:84
994
  #: includes/settings/tabs/wps-notifications.php:201
995
  #: includes/settings/tabs/wps-overview-display.php:388
1009
  msgid "Once Every 4 Weeks"
1010
  msgstr "Каждые 4 недели"
1011
 
1012
+ #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
1013
  msgid "Statistics"
1014
  msgstr "Статистика"
1015
 
1081
  msgid "Items"
1082
  msgstr "Пункты"
1083
 
1084
+ #: widget.php:254 wp-statistics.php:561
1085
  msgid "Yesterday visit"
1086
  msgstr "Вчера посетителей"
1087
 
1109
  msgid "WP Statistics has been removed, please disable and delete it."
1110
  msgstr ""
1111
 
1112
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1113
  #. Plugin Name of the plugin/theme
1114
  #: wp-statistics.php:37
1115
  msgid "WP Statistics"
1116
  msgstr "WP Statistics"
1117
 
1118
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1119
  #. Description of the plugin/theme
1120
  #: wp-statistics.php:38
1121
  msgid "Complete statistics for your WordPress site."
1145
  msgid "Setting page > GeoIP"
1146
  msgstr "Настройка страницы > GeoIP"
1147
 
1148
+ #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
1149
  msgid "Settings"
1150
  msgstr "Настройки"
1151
 
1152
+ #: wp-statistics.php:265
1153
  msgid "Click here to visit the plugin on WordPress.org"
1154
  msgstr "Нажмите здесь, чтобы посетить на WordPress.org плагин"
1155
 
1156
+ #: wp-statistics.php:265
1157
  msgid "Visit WordPress.org page"
1158
  msgstr "Посетите страницы WordPress.org"
1159
 
1160
+ #: wp-statistics.php:268
1161
  msgid "Click here to rate and review this plugin on WordPress.org"
1162
  msgstr "Нажмите здесь, чтобы оценить и пересмотреть этот плагин на WordPress.org"
1163
 
1164
+ #: wp-statistics.php:268
1165
  msgid "Rate this plugin"
1166
  msgstr "Оценить этот плагин"
1167
 
1168
+ #: wp-statistics.php:312
1169
  msgid "WP Statistics - Hits"
1170
  msgstr "WP Statistics - хиты"
1171
 
1172
+ #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
1173
  msgid "Overview"
1174
  msgstr "Обзор"
1175
 
1176
+ #: wp-statistics.php:354 wp-statistics.php:430
1177
  msgid "Online"
1178
  msgstr ""
1179
 
1180
+ #: wp-statistics.php:356 wp-statistics.php:432
1181
  msgid "Referrers"
1182
  msgstr ""
1183
 
1184
+ #: shortcode.php:135 wp-statistics.php:357 wp-statistics.php:433
1185
  msgid "Searches"
1186
  msgstr "Поиск"
1187
 
1188
+ #: wp-statistics.php:358 wp-statistics.php:434
1189
  msgid "Search Words"
1190
  msgstr "Поисковые слова"
1191
 
1192
+ #: wp-statistics.php:359 wp-statistics.php:435
1193
  msgid "Top Visitors Today"
1194
  msgstr ""
1195
 
1196
+ #: wp-statistics.php:364 wp-statistics.php:437
1197
  msgid "Optimization"
1198
  msgstr "Оптимизация"
1199
 
1200
+ #: wp-statistics.php:370 wp-statistics.php:401
1201
  msgid "Manual"
1202
  msgstr "Вручную"
1203
 
1204
+ #: wp-statistics.php:416
1205
  msgid "Site"
1206
  msgstr ""
1207
 
1208
+ #: wp-statistics.php:417
1209
  msgid "Options"
1210
  msgstr ""
1211
 
1212
+ #: wp-statistics.php:543
1213
  msgid "Today visitor"
1214
  msgstr "Сегодня посетитель"
1215
 
1216
+ #: wp-statistics.php:549
1217
  msgid "Today visit"
1218
  msgstr "Сегодня посетить"
1219
 
1220
+ #: wp-statistics.php:555
1221
  msgid "Yesterday visitor"
1222
  msgstr "Вчера посетитель"
1223
 
1224
+ #: wp-statistics.php:567
1225
  msgid "View Stats"
1226
  msgstr "Статистика"
1227
 
1228
+ #: wp-statistics.php:591
1229
  msgid "Download ODF file"
1230
  msgstr "Скачать ODF файл"
1231
 
1232
+ #: wp-statistics.php:592
1233
  msgid "Download HTML file"
1234
  msgstr "Скачать файл HTML"
1235
 
1236
+ #: wp-statistics.php:596
1237
  msgid "Manual file not found."
1238
  msgstr "Вручную файл не найден."
1239
 
1240
+ #: wp-statistics.php:663 wp-statistics.php:770 wp-statistics.php:804
1241
  msgid "You do not have sufficient permissions to access this page."
1242
  msgstr "У вас нет достаточных прав для доступа к этой странице."
1243
 
1245
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
1246
  msgstr ""
1247
 
1248
+ #: wp-statistics.php:241
1249
  msgid "WP Statistics %s installed on"
1250
  msgstr ""
1251
 
1293
  msgid "Browscap.ini update on"
1294
  msgstr ""
1295
 
1296
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1297
  #. Plugin URI of the plugin/theme
1298
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1299
  #. Author URI of the plugin/theme
1300
  msgid "http://wp-statistics.com/"
1301
  msgstr "http://WP-Statistics.com/"
1422
  msgstr "Нажмите для переключения"
1423
 
1424
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1425
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
1426
+ #: wp-statistics.php:426
1427
  msgid "Browsers"
1428
  msgstr "Браузеры"
1429
 
1452
  msgid "Exclusions Statistics"
1453
  msgstr "Статистика исключения"
1454
 
1455
+ #: includes/functions/functions.php:931
1456
  msgid "10 Days"
1457
  msgstr "10 дней"
1458
 
1459
+ #: includes/functions/functions.php:931
1460
  msgid "20 Days"
1461
  msgstr "20 дней"
1462
 
1463
+ #: includes/functions/functions.php:931
1464
  msgid "30 Days"
1465
  msgstr "30 дней"
1466
 
1467
+ #: includes/functions/functions.php:931
1468
  msgid "2 Months"
1469
  msgstr "2 месяца"
1470
 
1471
+ #: includes/functions/functions.php:931
1472
  msgid "3 Months"
1473
  msgstr "3 месяца"
1474
 
1475
+ #: includes/functions/functions.php:931
1476
  msgid "6 Months"
1477
  msgstr "6 месяцев"
1478
 
1479
+ #: includes/functions/functions.php:931
1480
  msgid "9 Months"
1481
  msgstr "9 месяцев"
1482
 
1483
+ #: includes/functions/functions.php:931
1484
  msgid "1 Year"
1485
  msgstr "1 год"
1486
 
1529
  msgid "Latest Search Word Statistics"
1530
  msgstr "Последние статистические данные слова поиска"
1531
 
1532
+ #: includes/log/last-search.php:110 includes/log/last-visitor.php:101
1533
  #: includes/log/online.php:50 includes/log/widgets/google.map.php:84
1534
  #: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
1535
+ #: includes/log/widgets/words.php:46
1536
  msgid "#hash#"
1537
  msgstr "#hash #"
1538
 
1539
+ #: includes/log/last-search.php:115 includes/log/last-visitor.php:106
1540
  #: includes/log/online.php:55 includes/log/top-referring.php:71
1541
+ #: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
1542
  #: includes/settings/tabs/wps-overview-display.php:33
1543
  #: includes/settings/tabs/wps-overview-display.php:113
1544
  msgid "Map"
1545
  msgstr "Карта"
1546
 
1547
+ #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1548
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1549
  #: includes/log/top-referring.php:125
1550
  msgid "Page"
1551
  msgstr "Страница"
1552
 
1553
+ #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1554
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1555
  #: includes/log/top-referring.php:125
1556
  msgid "From"
1739
  msgstr "Время: %s"
1740
 
1741
  #: includes/log/widgets/top.visitors.php:31
1742
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
1743
+ #: wp-statistics.php:353 wp-statistics.php:429
1744
  msgid "Hits"
1745
  msgstr "Хиты"
1746
 
1782
  msgid "No platform data found to remove!"
1783
  msgstr ""
1784
 
1785
+ #: includes/functions/functions.php:1019
1786
  msgid "%s table data deleted successfully."
1787
  msgstr "данные таблицы %s успешно удалены."
1788
 
1789
+ #: includes/functions/functions.php:1023
1790
  msgid "Error, %s not emptied!"
1791
  msgstr "Ошибка %s не опустели!"
1792
 
1812
 
1813
  #: includes/optimization/tabs/wps-optimization-database.php:25
1814
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1815
+ #: wp-statistics.php:351 wp-statistics.php:427
1816
  msgid "Countries"
1817
  msgstr "Страны"
1818
 
1828
  msgstr "Старые установки WP статистики позволяют дубликатов записей в таблице посетителей в случае угла. Новые установки защититься от этого уникального индекса для таблицы. Чтобы создать индекс на старые установки повторяющиеся записи сначала должно быть удалено. Нажав \"Update Now\" будет сканировать vistitors таблицы, удаление повторяющихся записей и добавить индекс."
1829
 
1830
  #: includes/optimization/tabs/wps-optimization-database.php:41
1831
+ #: includes/optimization/tabs/wps-optimization-database.php:102
1832
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1833
  msgstr "Эта операция может занять много времени на установки с большим количеством строк в таблице посетителей."
1834
 
1838
 
1839
  #: includes/optimization/tabs/wps-optimization-database.php:47
1840
  #: includes/optimization/tabs/wps-optimization-database.php:77
1841
+ #: includes/optimization/tabs/wps-optimization-database.php:108
1842
  msgid "Congratulations, your installation is already up to date, nothing to do."
1843
  msgstr "Поздравляем ваша установка находится уже в курсе, ничего не делать."
1844
 
1845
  #: includes/optimization/tabs/wps-optimization-export.php:8
1846
+ #: includes/optimization/wps-optimization.php:212
1847
  msgid "Export"
1848
  msgstr "Экспорт"
1849
 
1896
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1897
  #: includes/settings/tabs/wps-general.php:138
1898
  #: includes/settings/tabs/wps-general.php:143 shortcode.php:133
1899
+ #: wp-statistics.php:360 wp-statistics.php:436
1900
  msgid "Visitors"
1901
  msgstr "Посетителей"
1902
 
2211
  msgid "Install routine complete."
2212
  msgstr "Установите полную рутину."
2213
 
2214
+ #: includes/optimization/wps-optimization.php:211
2215
  msgid "Resources/Information"
2216
  msgstr "Ресурсы/информация"
2217
 
2218
+ #: includes/optimization/wps-optimization.php:213
2219
  msgid "Purging"
2220
  msgstr "Очистка"
2221
 
2222
+ #: includes/optimization/wps-optimization.php:214
2223
  msgid "Database"
2224
  msgstr "База данных"
2225
 
2226
+ #: includes/optimization/wps-optimization.php:215
2227
  msgid "Updates"
2228
  msgstr "Обновления"
2229
 
2230
+ #: includes/optimization/wps-optimization.php:216
2231
  msgid "Historical"
2232
  msgstr ""
2233
 
2377
  msgstr ""
2378
 
2379
  #: includes/settings/tabs/wps-access-level.php:23
2380
+ #: includes/settings/wps-settings.php:103
2381
  msgid "Access Levels"
2382
  msgstr "Уровни доступа"
2383
 
2410
  msgstr "Если вам нужно более надежное решение для делегирования доступа вы можете взглянуть на %s в WordPress плагин каталога."
2411
 
2412
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2413
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:352
2414
+ #: wp-statistics.php:428
2415
  msgid "Exclusions"
2416
  msgstr "Исключения"
2417
 
2582
  msgid "Exclude the RSS feeds for registering as a hit."
2583
  msgstr ""
2584
 
2585
+ #: includes/settings/tabs/wps-externals.php:162
2586
  msgid "browscap settings"
2587
  msgstr "browscap параметры"
2588
 
2589
+ #: includes/settings/tabs/wps-externals.php:167
2590
  msgid "browscap usage"
2591
  msgstr "browscap использование"
2592
 
2593
+ #: includes/settings/tabs/wps-externals.php:52
2594
+ #: includes/settings/tabs/wps-externals.php:76
2595
+ #: includes/settings/tabs/wps-externals.php:109
2596
+ #: includes/settings/tabs/wps-externals.php:172
2597
+ #: includes/settings/tabs/wps-externals.php:196
2598
+ #: includes/settings/tabs/wps-externals.php:235
2599
+ #: includes/settings/tabs/wps-externals.php:259
2600
  #: includes/settings/tabs/wps-general.php:76
2601
  #: includes/settings/tabs/wps-general.php:92
2602
  #: includes/settings/tabs/wps-general.php:116
2612
  #: includes/settings/tabs/wps-general.php:286
2613
  #: includes/settings/tabs/wps-general.php:325
2614
  #: includes/settings/tabs/wps-general.php:341
 
 
 
2615
  #: includes/settings/tabs/wps-maintenance.php:40
2616
  #: includes/settings/tabs/wps-maintenance.php:64
2617
  #: includes/settings/tabs/wps-notifications.php:69
2626
  msgid "Active"
2627
  msgstr "Активные"
2628
 
2629
+ #: includes/settings/tabs/wps-externals.php:173
2630
  msgid "The browscap database will be downloaded and used to detect robots."
2631
  msgstr "База данных browscap будет загружено и используются для обнаружения роботов."
2632
 
2633
+ #: includes/settings/tabs/wps-externals.php:179
2634
  msgid "Update browscap Info"
2635
  msgstr "Обновление browscap информация"
2636
 
2637
+ #: includes/settings/tabs/wps-externals.php:184
2638
  msgid "Download browscap Database"
2639
  msgstr "Скачать browscap базы данных"
2640
 
2641
+ #: includes/settings/tabs/wps-externals.php:65
2642
+ #: includes/settings/tabs/wps-externals.php:185
2643
+ #: includes/settings/tabs/wps-externals.php:248
2644
  msgid "Save changes on this page to download the update."
2645
  msgstr "Сохраните изменения на этой странице для загрузки обновления."
2646
 
2647
+ #: includes/settings/tabs/wps-externals.php:191
2648
  msgid "Schedule weekly update of browscap DB"
2649
  msgstr "Еженедельное обновление расписания browscap DB"
2650
 
2651
+ #: includes/settings/tabs/wps-externals.php:79
2652
+ #: includes/settings/tabs/wps-externals.php:199
2653
+ #: includes/settings/tabs/wps-externals.php:262
2654
  msgid "Next update will be"
2655
  msgstr "Следующее обновление будет"
2656
 
2657
+ #: includes/settings/tabs/wps-externals.php:214
2658
  msgid "Download of the browscap database will be scheduled for once a week."
2659
  msgstr "Скачать базы данных browscap будет планироваться за один раз в неделю."
2660
 
languages/wp_statistics-ru_UA.po CHANGED
@@ -10,6 +10,70 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  #: includes/settings/tabs/wps-exclusions.php:148
14
  msgid "Treat corrupt browser info as a bot"
15
  msgstr ""
@@ -158,7 +222,7 @@ msgstr ""
158
  msgid "Have you thought about donating to WP Statistics?"
159
  msgstr ""
160
 
161
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:362
162
  msgid "Donate"
163
  msgstr ""
164
 
@@ -194,11 +258,11 @@ msgstr ""
194
  msgid "Time Frame"
195
  msgstr ""
196
 
197
- #: includes/functions/functions.php:929
198
  msgid "to"
199
  msgstr ""
200
 
201
- #: includes/functions/functions.php:929 includes/log/top-visitors.php:29
202
  msgid "Go"
203
  msgstr ""
204
 
@@ -242,11 +306,11 @@ msgstr ""
242
  msgid "Filtered by"
243
  msgstr ""
244
 
245
- #: includes/functions/functions.php:922 includes/functions/functions.php:925
246
  msgid "Range"
247
  msgstr ""
248
 
249
- #: includes/functions/functions.php:929 includes/log/top-visitors.php:29
250
  msgid "MM/DD/YYYY"
251
  msgstr ""
252
 
@@ -290,27 +354,27 @@ msgstr ""
290
  msgid "Last 7 Days (Week)"
291
  msgstr ""
292
 
293
- #: includes/functions/functions.php:403
294
  msgid "Yahoo!"
295
  msgstr ""
296
 
297
- #: includes/functions/functions.php:404
298
  msgid "Yandex"
299
  msgstr ""
300
 
301
- #: includes/functions/functions.php:400
302
  msgid "clearch.org"
303
  msgstr ""
304
 
305
- #: includes/functions/functions.php:401
306
  msgid "DuckDuckGo"
307
  msgstr ""
308
 
309
- #: includes/functions/functions.php:399
310
  msgid "Bing"
311
  msgstr ""
312
 
313
- #: includes/functions/functions.php:398
314
  msgid "Baidu"
315
  msgstr ""
316
 
@@ -413,8 +477,8 @@ msgid "For each visit to account for several hits. Currently %s."
413
  msgstr ""
414
 
415
  #: includes/settings/tabs/wps-general.php:177
416
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:351
417
- #: wp-statistics.php:427
418
  msgid "Pages"
419
  msgstr ""
420
 
@@ -498,75 +562,75 @@ msgstr ""
498
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
499
  msgstr ""
500
 
501
- #: includes/settings/tabs/wps-geoip.php:27
502
  msgid "GeoIP settings"
503
  msgstr ""
504
 
505
- #: includes/settings/tabs/wps-geoip.php:32
506
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
507
  msgstr ""
508
 
509
- #: includes/settings/tabs/wps-geoip.php:42
510
  msgid "GeoIP collection"
511
  msgstr ""
512
 
513
- #: includes/settings/tabs/wps-geoip.php:48
514
  msgid "For get more information and location (country) from visitor, enable this feature."
515
  msgstr ""
516
 
517
- #: includes/settings/tabs/wps-geoip.php:54
518
  msgid "Update GeoIP Info"
519
  msgstr ""
520
 
521
- #: includes/settings/tabs/wps-geoip.php:59
522
  msgid "Download GeoIP Database"
523
  msgstr ""
524
 
525
- #: includes/settings/tabs/wps-geoip.php:66
526
  msgid "Schedule monthly update of GeoIP DB"
527
  msgstr ""
528
 
529
- #: includes/settings/tabs/wps-geoip.php:92
530
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
531
  msgstr ""
532
 
533
- #: includes/settings/tabs/wps-geoip.php:93
534
  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)."
535
  msgstr ""
536
 
537
- #: includes/settings/tabs/wps-geoip.php:99
538
  msgid "Populate missing GeoIP after update of GeoIP DB"
539
  msgstr ""
540
 
541
- #: includes/settings/tabs/wps-geoip.php:105
542
  msgid "Update any missing GeoIP data after downloading a new database."
543
  msgstr ""
544
 
545
- #: includes/settings/tabs/wps-geoip.php:111
546
  msgid "Country code for private IP addresses"
547
  msgstr ""
548
 
549
- #: includes/settings/tabs/wps-geoip.php:116
550
  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."
551
  msgstr ""
552
 
553
- #: includes/settings/tabs/wps-geoip.php:127
554
  msgid "GeoIP collection is disabled due to the following reasons:"
555
  msgstr ""
556
 
557
- #: includes/settings/tabs/wps-geoip.php:130
558
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
559
  msgstr ""
560
 
561
- #: includes/settings/tabs/wps-geoip.php:135
562
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
563
  msgstr ""
564
 
565
- #: includes/settings/tabs/wps-geoip.php:141
566
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
567
  msgstr ""
568
 
569
- #: includes/settings/tabs/wps-geoip.php:147
570
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
571
  msgstr ""
572
 
@@ -626,7 +690,6 @@ msgstr ""
626
 
627
  #: includes/log/exclusions.php:24
628
  #: includes/settings/tabs/wps-notifications.php:76
629
- #: includes/settings/wps-settings.php:111
630
  msgid "GeoIP"
631
  msgstr ""
632
 
@@ -651,7 +714,7 @@ msgid "Send a report whenever the plugin is upgraded."
651
  msgstr ""
652
 
653
  #: includes/settings/tabs/wps-notifications.php:111
654
- #: includes/settings/tabs/wps-notifications.php:116 schedule.php:199
655
  msgid "Statistical reporting"
656
  msgstr ""
657
 
@@ -700,7 +763,7 @@ msgid "Any shortcode supported by your installation of WordPress, include all sh
700
  msgstr ""
701
 
702
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
703
- #: widget.php:245 wp-statistics.php:532
704
  msgid "User Online"
705
  msgstr ""
706
 
@@ -743,7 +806,7 @@ msgid "Summary Statistics"
743
  msgstr ""
744
 
745
  #: includes/settings/tabs/wps-overview-display.php:28
746
- #: includes/settings/wps-settings.php:115
747
  msgid "About"
748
  msgstr ""
749
 
@@ -793,7 +856,7 @@ msgstr ""
793
  msgid "Map type"
794
  msgstr ""
795
 
796
- #: includes/functions/functions.php:402
797
  #: includes/settings/tabs/wps-overview-display.php:128
798
  msgid "Google"
799
  msgstr ""
@@ -903,35 +966,30 @@ msgstr ""
903
  msgid "Remove data and settings, this action cannot be undone."
904
  msgstr ""
905
 
906
- #: includes/settings/wps-settings.php:106
907
  msgid "General"
908
  msgstr ""
909
 
910
- #: includes/settings/wps-settings.php:107
911
  msgid "Notifications"
912
  msgstr ""
913
 
914
- #: includes/settings/wps-settings.php:108
915
  msgid "Dashboard/Overview"
916
  msgstr ""
917
 
918
- #: includes/settings/wps-settings.php:112
919
- msgid "browscap"
920
- msgstr ""
921
-
922
- #: includes/settings/wps-settings.php:113
923
  msgid "Maintenance"
924
  msgstr ""
925
 
926
- #: includes/settings/wps-settings.php:114
927
  msgid "Removal"
928
  msgstr ""
929
 
930
  #: includes/settings/tabs/wps-access-level.php:85
931
- #: includes/settings/tabs/wps-browscap.php:81
932
  #: includes/settings/tabs/wps-exclusions.php:234
 
933
  #: includes/settings/tabs/wps-general.php:349
934
- #: includes/settings/tabs/wps-geoip.php:158
935
  #: includes/settings/tabs/wps-maintenance.php:84
936
  #: includes/settings/tabs/wps-notifications.php:201
937
  #: includes/settings/tabs/wps-overview-display.php:388
@@ -951,7 +1009,7 @@ msgstr ""
951
  msgid "Once Every 4 Weeks"
952
  msgstr ""
953
 
954
- #: widget.php:14 wp-statistics.php:342 wp-statistics.php:380
955
  msgid "Statistics"
956
  msgstr ""
957
 
@@ -1023,7 +1081,7 @@ msgstr ""
1023
  msgid "Items"
1024
  msgstr ""
1025
 
1026
- #: widget.php:254 wp-statistics.php:557
1027
  msgid "Yesterday visit"
1028
  msgstr ""
1029
 
@@ -1051,13 +1109,13 @@ msgstr ""
1051
  msgid "WP Statistics has been removed, please disable and delete it."
1052
  msgstr ""
1053
 
1054
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1055
  #. Plugin Name of the plugin/theme
1056
  #: wp-statistics.php:37
1057
  msgid "WP Statistics"
1058
  msgstr ""
1059
 
1060
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1061
  #. Description of the plugin/theme
1062
  #: wp-statistics.php:38
1063
  msgid "Complete statistics for your WordPress site."
@@ -1087,99 +1145,99 @@ msgstr ""
1087
  msgid "Setting page > GeoIP"
1088
  msgstr ""
1089
 
1090
- #: wp-statistics.php:249 wp-statistics.php:361 wp-statistics.php:434
1091
  msgid "Settings"
1092
  msgstr ""
1093
 
1094
- #: wp-statistics.php:261
1095
  msgid "Click here to visit the plugin on WordPress.org"
1096
  msgstr ""
1097
 
1098
- #: wp-statistics.php:261
1099
  msgid "Visit WordPress.org page"
1100
  msgstr ""
1101
 
1102
- #: wp-statistics.php:264
1103
  msgid "Click here to rate and review this plugin on WordPress.org"
1104
  msgstr ""
1105
 
1106
- #: wp-statistics.php:264
1107
  msgid "Rate this plugin"
1108
  msgstr ""
1109
 
1110
- #: wp-statistics.php:308
1111
  msgid "WP Statistics - Hits"
1112
  msgstr ""
1113
 
1114
- #: wp-statistics.php:345 wp-statistics.php:383 wp-statistics.php:421
1115
  msgid "Overview"
1116
  msgstr ""
1117
 
1118
- #: wp-statistics.php:350 wp-statistics.php:426
1119
  msgid "Online"
1120
  msgstr ""
1121
 
1122
- #: wp-statistics.php:352 wp-statistics.php:428
1123
  msgid "Referrers"
1124
  msgstr ""
1125
 
1126
- #: shortcode.php:135 wp-statistics.php:353 wp-statistics.php:429
1127
  msgid "Searches"
1128
  msgstr ""
1129
 
1130
- #: wp-statistics.php:354 wp-statistics.php:430
1131
  msgid "Search Words"
1132
  msgstr ""
1133
 
1134
- #: wp-statistics.php:355 wp-statistics.php:431
1135
  msgid "Top Visitors Today"
1136
  msgstr ""
1137
 
1138
- #: wp-statistics.php:360 wp-statistics.php:433
1139
  msgid "Optimization"
1140
  msgstr ""
1141
 
1142
- #: wp-statistics.php:366 wp-statistics.php:397
1143
  msgid "Manual"
1144
  msgstr ""
1145
 
1146
- #: wp-statistics.php:412
1147
  msgid "Site"
1148
  msgstr ""
1149
 
1150
- #: wp-statistics.php:413
1151
  msgid "Options"
1152
  msgstr ""
1153
 
1154
- #: wp-statistics.php:539
1155
  msgid "Today visitor"
1156
  msgstr ""
1157
 
1158
- #: wp-statistics.php:545
1159
  msgid "Today visit"
1160
  msgstr ""
1161
 
1162
- #: wp-statistics.php:551
1163
  msgid "Yesterday visitor"
1164
  msgstr ""
1165
 
1166
- #: wp-statistics.php:563
1167
  msgid "View Stats"
1168
  msgstr ""
1169
 
1170
- #: wp-statistics.php:587
1171
  msgid "Download ODF file"
1172
  msgstr ""
1173
 
1174
- #: wp-statistics.php:588
1175
  msgid "Download HTML file"
1176
  msgstr ""
1177
 
1178
- #: wp-statistics.php:592
1179
  msgid "Manual file not found."
1180
  msgstr ""
1181
 
1182
- #: wp-statistics.php:659 wp-statistics.php:770 wp-statistics.php:804
1183
  msgid "You do not have sufficient permissions to access this page."
1184
  msgstr ""
1185
 
@@ -1187,7 +1245,7 @@ msgstr ""
1187
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
1188
  msgstr ""
1189
 
1190
- #: wp-statistics.php:237
1191
  msgid "WP Statistics %s installed on"
1192
  msgstr ""
1193
 
@@ -1235,9 +1293,9 @@ msgstr ""
1235
  msgid "Browscap.ini update on"
1236
  msgstr ""
1237
 
1238
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1239
  #. Plugin URI of the plugin/theme
1240
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1241
  #. Author URI of the plugin/theme
1242
  msgid "http://wp-statistics.com/"
1243
  msgstr ""
@@ -1364,8 +1422,8 @@ msgid "Click to toggle"
1364
  msgstr ""
1365
 
1366
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1367
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:346
1368
- #: wp-statistics.php:422
1369
  msgid "Browsers"
1370
  msgstr ""
1371
 
@@ -1394,35 +1452,35 @@ msgstr ""
1394
  msgid "Exclusions Statistics"
1395
  msgstr ""
1396
 
1397
- #: includes/functions/functions.php:879
1398
  msgid "10 Days"
1399
  msgstr ""
1400
 
1401
- #: includes/functions/functions.php:879
1402
  msgid "20 Days"
1403
  msgstr ""
1404
 
1405
- #: includes/functions/functions.php:879
1406
  msgid "30 Days"
1407
  msgstr ""
1408
 
1409
- #: includes/functions/functions.php:879
1410
  msgid "2 Months"
1411
  msgstr ""
1412
 
1413
- #: includes/functions/functions.php:879
1414
  msgid "3 Months"
1415
  msgstr ""
1416
 
1417
- #: includes/functions/functions.php:879
1418
  msgid "6 Months"
1419
  msgstr ""
1420
 
1421
- #: includes/functions/functions.php:879
1422
  msgid "9 Months"
1423
  msgstr ""
1424
 
1425
- #: includes/functions/functions.php:879
1426
  msgid "1 Year"
1427
  msgstr ""
1428
 
@@ -1471,28 +1529,28 @@ msgstr ""
1471
  msgid "Latest Search Word Statistics"
1472
  msgstr ""
1473
 
1474
- #: includes/log/last-search.php:100 includes/log/last-visitor.php:101
1475
  #: includes/log/online.php:50 includes/log/widgets/google.map.php:84
1476
  #: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
1477
- #: includes/log/widgets/words.php:36
1478
  msgid "#hash#"
1479
  msgstr ""
1480
 
1481
- #: includes/log/last-search.php:105 includes/log/last-visitor.php:106
1482
  #: includes/log/online.php:55 includes/log/top-referring.php:71
1483
- #: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:43
1484
  #: includes/settings/tabs/wps-overview-display.php:33
1485
  #: includes/settings/tabs/wps-overview-display.php:113
1486
  msgid "Map"
1487
  msgstr ""
1488
 
1489
- #: includes/log/last-search.php:142 includes/log/last-visitor.php:139
1490
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1491
  #: includes/log/top-referring.php:125
1492
  msgid "Page"
1493
  msgstr ""
1494
 
1495
- #: includes/log/last-search.php:142 includes/log/last-visitor.php:139
1496
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1497
  #: includes/log/top-referring.php:125
1498
  msgid "From"
@@ -1681,8 +1739,8 @@ msgid "Time: %s"
1681
  msgstr ""
1682
 
1683
  #: includes/log/widgets/top.visitors.php:31
1684
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:273
1685
- #: wp-statistics.php:349 wp-statistics.php:425
1686
  msgid "Hits"
1687
  msgstr ""
1688
 
@@ -1724,11 +1782,11 @@ msgstr ""
1724
  msgid "No platform data found to remove!"
1725
  msgstr ""
1726
 
1727
- #: includes/functions/functions.php:967
1728
  msgid "%s table data deleted successfully."
1729
  msgstr ""
1730
 
1731
- #: includes/functions/functions.php:971
1732
  msgid "Error, %s not emptied!"
1733
  msgstr ""
1734
 
@@ -1754,7 +1812,7 @@ msgstr ""
1754
 
1755
  #: includes/optimization/tabs/wps-optimization-database.php:25
1756
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1757
- #: wp-statistics.php:347 wp-statistics.php:423
1758
  msgid "Countries"
1759
  msgstr ""
1760
 
@@ -1770,6 +1828,7 @@ msgid "Older installs of WP Statistics allow for duplicate entries in the visito
1770
  msgstr ""
1771
 
1772
  #: includes/optimization/tabs/wps-optimization-database.php:41
 
1773
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1774
  msgstr ""
1775
 
@@ -1779,11 +1838,12 @@ msgstr ""
1779
 
1780
  #: includes/optimization/tabs/wps-optimization-database.php:47
1781
  #: includes/optimization/tabs/wps-optimization-database.php:77
 
1782
  msgid "Congratulations, your installation is already up to date, nothing to do."
1783
  msgstr ""
1784
 
1785
  #: includes/optimization/tabs/wps-optimization-export.php:8
1786
- #: includes/optimization/wps-optimization.php:183
1787
  msgid "Export"
1788
  msgstr ""
1789
 
@@ -1836,7 +1896,7 @@ msgstr ""
1836
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1837
  #: includes/settings/tabs/wps-general.php:138
1838
  #: includes/settings/tabs/wps-general.php:143 shortcode.php:133
1839
- #: wp-statistics.php:356 wp-statistics.php:432
1840
  msgid "Visitors"
1841
  msgstr ""
1842
 
@@ -2151,23 +2211,23 @@ msgstr ""
2151
  msgid "Install routine complete."
2152
  msgstr ""
2153
 
2154
- #: includes/optimization/wps-optimization.php:182
2155
  msgid "Resources/Information"
2156
  msgstr ""
2157
 
2158
- #: includes/optimization/wps-optimization.php:184
2159
  msgid "Purging"
2160
  msgstr ""
2161
 
2162
- #: includes/optimization/wps-optimization.php:185
2163
  msgid "Database"
2164
  msgstr ""
2165
 
2166
- #: includes/optimization/wps-optimization.php:186
2167
  msgid "Updates"
2168
  msgstr ""
2169
 
2170
- #: includes/optimization/wps-optimization.php:187
2171
  msgid "Historical"
2172
  msgstr ""
2173
 
@@ -2317,7 +2377,7 @@ msgid "This is the honey pot for WP Statistics to use, do not delete."
2317
  msgstr ""
2318
 
2319
  #: includes/settings/tabs/wps-access-level.php:23
2320
- #: includes/settings/wps-settings.php:109
2321
  msgid "Access Levels"
2322
  msgstr ""
2323
 
@@ -2350,8 +2410,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2350
  msgstr ""
2351
 
2352
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2353
- #: includes/settings/wps-settings.php:110 wp-statistics.php:348
2354
- #: wp-statistics.php:424
2355
  msgid "Exclusions"
2356
  msgstr ""
2357
 
@@ -2522,16 +2582,21 @@ msgstr ""
2522
  msgid "Exclude the RSS feeds for registering as a hit."
2523
  msgstr ""
2524
 
2525
- #: includes/settings/tabs/wps-browscap.php:22
2526
  msgid "browscap settings"
2527
  msgstr ""
2528
 
2529
- #: includes/settings/tabs/wps-browscap.php:27
2530
  msgid "browscap usage"
2531
  msgstr ""
2532
 
2533
- #: includes/settings/tabs/wps-browscap.php:32
2534
- #: includes/settings/tabs/wps-browscap.php:56
 
 
 
 
 
2535
  #: includes/settings/tabs/wps-general.php:76
2536
  #: includes/settings/tabs/wps-general.php:92
2537
  #: includes/settings/tabs/wps-general.php:116
@@ -2547,9 +2612,6 @@ msgstr ""
2547
  #: includes/settings/tabs/wps-general.php:286
2548
  #: includes/settings/tabs/wps-general.php:325
2549
  #: includes/settings/tabs/wps-general.php:341
2550
- #: includes/settings/tabs/wps-geoip.php:47
2551
- #: includes/settings/tabs/wps-geoip.php:71
2552
- #: includes/settings/tabs/wps-geoip.php:104
2553
  #: includes/settings/tabs/wps-maintenance.php:40
2554
  #: includes/settings/tabs/wps-maintenance.php:64
2555
  #: includes/settings/tabs/wps-notifications.php:69
@@ -2564,33 +2626,35 @@ msgstr ""
2564
  msgid "Active"
2565
  msgstr ""
2566
 
2567
- #: includes/settings/tabs/wps-browscap.php:33
2568
  msgid "The browscap database will be downloaded and used to detect robots."
2569
  msgstr ""
2570
 
2571
- #: includes/settings/tabs/wps-browscap.php:39
2572
  msgid "Update browscap Info"
2573
  msgstr ""
2574
 
2575
- #: includes/settings/tabs/wps-browscap.php:44
2576
  msgid "Download browscap Database"
2577
  msgstr ""
2578
 
2579
- #: includes/settings/tabs/wps-browscap.php:45
2580
- #: includes/settings/tabs/wps-geoip.php:60
 
2581
  msgid "Save changes on this page to download the update."
2582
  msgstr ""
2583
 
2584
- #: includes/settings/tabs/wps-browscap.php:51
2585
  msgid "Schedule weekly update of browscap DB"
2586
  msgstr ""
2587
 
2588
- #: includes/settings/tabs/wps-browscap.php:59
2589
- #: includes/settings/tabs/wps-geoip.php:74
 
2590
  msgid "Next update will be"
2591
  msgstr ""
2592
 
2593
- #: includes/settings/tabs/wps-browscap.php:74
2594
  msgid "Download of the browscap database will be scheduled for once a week."
2595
  msgstr ""
2596
 
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: includes/optimization/wps-optimization.php:173
14
+ msgid "Search table conversion complete, %d rows added."
15
+ msgstr ""
16
+
17
+ #: includes/optimization/tabs/wps-optimization-database.php:107
18
+ msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion."
19
+ msgstr ""
20
+
21
+ #: includes/optimization/tabs/wps-optimization-database.php:86
22
+ msgid "Search Table"
23
+ msgstr ""
24
+
25
+ #: includes/optimization/tabs/wps-optimization-database.php:91
26
+ msgid "Convert"
27
+ msgstr ""
28
+
29
+ #: includes/optimization/tabs/wps-optimization-database.php:100
30
+ msgid "Convert Now!"
31
+ msgstr ""
32
+
33
+ #: includes/optimization/tabs/wps-optimization-database.php:101
34
+ msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion, however the old data must first be converted to the new format before it can be used."
35
+ msgstr ""
36
+
37
+ #: includes/log/exclusions.php:24
38
+ msgid "Referrer Spam"
39
+ msgstr ""
40
+
41
+ #: includes/settings/tabs/wps-externals.php:277
42
+ msgid "Download of the Piwik Referrer Spam Blacklist database will be scheduled for once a week."
43
+ msgstr ""
44
+
45
+ #: includes/settings/wps-settings.php:105
46
+ msgid "Externals"
47
+ msgstr ""
48
+
49
+ #: includes/settings/tabs/wps-externals.php:219
50
+ msgid "Piwik Referrer Spam Blacklist settings"
51
+ msgstr ""
52
+
53
+ #: includes/settings/tabs/wps-externals.php:254
54
+ msgid "Schedule weekly update of Piwik Referrer Spam Blacklist DB"
55
+ msgstr ""
56
+
57
+ #: includes/settings/tabs/wps-externals.php:247
58
+ msgid "Download Piwik Referrer Spam Blacklist Database"
59
+ msgstr ""
60
+
61
+ #: includes/settings/tabs/wps-externals.php:242
62
+ msgid "Update Piwik Referrer Spam Blacklist Info"
63
+ msgstr ""
64
+
65
+ #: includes/settings/tabs/wps-externals.php:236
66
+ msgid "The Piwik Referrer Spam Blacklist database will be downloaded and used to detect referrer spam."
67
+ msgstr ""
68
+
69
+ #: includes/settings/tabs/wps-externals.php:224
70
+ msgid "Referrer spam blacklist is provided by Piwik, available from %s."
71
+ msgstr ""
72
+
73
+ #: includes/settings/tabs/wps-externals.php:230
74
+ msgid "Piwik Referrer Spam Blacklist usage"
75
+ msgstr ""
76
+
77
  #: includes/settings/tabs/wps-exclusions.php:148
78
  msgid "Treat corrupt browser info as a bot"
79
  msgstr ""
222
  msgid "Have you thought about donating to WP Statistics?"
223
  msgstr ""
224
 
225
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
226
  msgid "Donate"
227
  msgstr ""
228
 
258
  msgid "Time Frame"
259
  msgstr ""
260
 
261
+ #: includes/functions/functions.php:981
262
  msgid "to"
263
  msgstr ""
264
 
265
+ #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
266
  msgid "Go"
267
  msgstr ""
268
 
306
  msgid "Filtered by"
307
  msgstr ""
308
 
309
+ #: includes/functions/functions.php:974 includes/functions/functions.php:977
310
  msgid "Range"
311
  msgstr ""
312
 
313
+ #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
314
  msgid "MM/DD/YYYY"
315
  msgstr ""
316
 
354
  msgid "Last 7 Days (Week)"
355
  msgstr ""
356
 
357
+ #: includes/functions/functions.php:405
358
  msgid "Yahoo!"
359
  msgstr ""
360
 
361
+ #: includes/functions/functions.php:406
362
  msgid "Yandex"
363
  msgstr ""
364
 
365
+ #: includes/functions/functions.php:402
366
  msgid "clearch.org"
367
  msgstr ""
368
 
369
+ #: includes/functions/functions.php:403
370
  msgid "DuckDuckGo"
371
  msgstr ""
372
 
373
+ #: includes/functions/functions.php:401
374
  msgid "Bing"
375
  msgstr ""
376
 
377
+ #: includes/functions/functions.php:400
378
  msgid "Baidu"
379
  msgstr ""
380
 
477
  msgstr ""
478
 
479
  #: includes/settings/tabs/wps-general.php:177
480
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
481
+ #: wp-statistics.php:431
482
  msgid "Pages"
483
  msgstr ""
484
 
562
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
563
  msgstr ""
564
 
565
+ #: includes/settings/tabs/wps-externals.php:32
566
  msgid "GeoIP settings"
567
  msgstr ""
568
 
569
+ #: includes/settings/tabs/wps-externals.php:37
570
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
571
  msgstr ""
572
 
573
+ #: includes/settings/tabs/wps-externals.php:47
574
  msgid "GeoIP collection"
575
  msgstr ""
576
 
577
+ #: includes/settings/tabs/wps-externals.php:53
578
  msgid "For get more information and location (country) from visitor, enable this feature."
579
  msgstr ""
580
 
581
+ #: includes/settings/tabs/wps-externals.php:59
582
  msgid "Update GeoIP Info"
583
  msgstr ""
584
 
585
+ #: includes/settings/tabs/wps-externals.php:64
586
  msgid "Download GeoIP Database"
587
  msgstr ""
588
 
589
+ #: includes/settings/tabs/wps-externals.php:71
590
  msgid "Schedule monthly update of GeoIP DB"
591
  msgstr ""
592
 
593
+ #: includes/settings/tabs/wps-externals.php:97
594
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
595
  msgstr ""
596
 
597
+ #: includes/settings/tabs/wps-externals.php:98
598
  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)."
599
  msgstr ""
600
 
601
+ #: includes/settings/tabs/wps-externals.php:104
602
  msgid "Populate missing GeoIP after update of GeoIP DB"
603
  msgstr ""
604
 
605
+ #: includes/settings/tabs/wps-externals.php:110
606
  msgid "Update any missing GeoIP data after downloading a new database."
607
  msgstr ""
608
 
609
+ #: includes/settings/tabs/wps-externals.php:116
610
  msgid "Country code for private IP addresses"
611
  msgstr ""
612
 
613
+ #: includes/settings/tabs/wps-externals.php:121
614
  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."
615
  msgstr ""
616
 
617
+ #: includes/settings/tabs/wps-externals.php:132
618
  msgid "GeoIP collection is disabled due to the following reasons:"
619
  msgstr ""
620
 
621
+ #: includes/settings/tabs/wps-externals.php:135
622
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
623
  msgstr ""
624
 
625
+ #: includes/settings/tabs/wps-externals.php:140
626
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
627
  msgstr ""
628
 
629
+ #: includes/settings/tabs/wps-externals.php:146
630
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
631
  msgstr ""
632
 
633
+ #: includes/settings/tabs/wps-externals.php:152
634
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
635
  msgstr ""
636
 
690
 
691
  #: includes/log/exclusions.php:24
692
  #: includes/settings/tabs/wps-notifications.php:76
 
693
  msgid "GeoIP"
694
  msgstr ""
695
 
714
  msgstr ""
715
 
716
  #: includes/settings/tabs/wps-notifications.php:111
717
+ #: includes/settings/tabs/wps-notifications.php:116 schedule.php:221
718
  msgid "Statistical reporting"
719
  msgstr ""
720
 
763
  msgstr ""
764
 
765
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
766
+ #: widget.php:245 wp-statistics.php:536
767
  msgid "User Online"
768
  msgstr ""
769
 
806
  msgstr ""
807
 
808
  #: includes/settings/tabs/wps-overview-display.php:28
809
+ #: includes/settings/wps-settings.php:108
810
  msgid "About"
811
  msgstr ""
812
 
856
  msgid "Map type"
857
  msgstr ""
858
 
859
+ #: includes/functions/functions.php:404
860
  #: includes/settings/tabs/wps-overview-display.php:128
861
  msgid "Google"
862
  msgstr ""
966
  msgid "Remove data and settings, this action cannot be undone."
967
  msgstr ""
968
 
969
+ #: includes/settings/wps-settings.php:100
970
  msgid "General"
971
  msgstr ""
972
 
973
+ #: includes/settings/wps-settings.php:101
974
  msgid "Notifications"
975
  msgstr ""
976
 
977
+ #: includes/settings/wps-settings.php:102
978
  msgid "Dashboard/Overview"
979
  msgstr ""
980
 
981
+ #: includes/settings/wps-settings.php:106
 
 
 
 
982
  msgid "Maintenance"
983
  msgstr ""
984
 
985
+ #: includes/settings/wps-settings.php:107
986
  msgid "Removal"
987
  msgstr ""
988
 
989
  #: includes/settings/tabs/wps-access-level.php:85
 
990
  #: includes/settings/tabs/wps-exclusions.php:234
991
+ #: includes/settings/tabs/wps-externals.php:284
992
  #: includes/settings/tabs/wps-general.php:349
 
993
  #: includes/settings/tabs/wps-maintenance.php:84
994
  #: includes/settings/tabs/wps-notifications.php:201
995
  #: includes/settings/tabs/wps-overview-display.php:388
1009
  msgid "Once Every 4 Weeks"
1010
  msgstr ""
1011
 
1012
+ #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
1013
  msgid "Statistics"
1014
  msgstr ""
1015
 
1081
  msgid "Items"
1082
  msgstr ""
1083
 
1084
+ #: widget.php:254 wp-statistics.php:561
1085
  msgid "Yesterday visit"
1086
  msgstr ""
1087
 
1109
  msgid "WP Statistics has been removed, please disable and delete it."
1110
  msgstr ""
1111
 
1112
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1113
  #. Plugin Name of the plugin/theme
1114
  #: wp-statistics.php:37
1115
  msgid "WP Statistics"
1116
  msgstr ""
1117
 
1118
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1119
  #. Description of the plugin/theme
1120
  #: wp-statistics.php:38
1121
  msgid "Complete statistics for your WordPress site."
1145
  msgid "Setting page > GeoIP"
1146
  msgstr ""
1147
 
1148
+ #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
1149
  msgid "Settings"
1150
  msgstr ""
1151
 
1152
+ #: wp-statistics.php:265
1153
  msgid "Click here to visit the plugin on WordPress.org"
1154
  msgstr ""
1155
 
1156
+ #: wp-statistics.php:265
1157
  msgid "Visit WordPress.org page"
1158
  msgstr ""
1159
 
1160
+ #: wp-statistics.php:268
1161
  msgid "Click here to rate and review this plugin on WordPress.org"
1162
  msgstr ""
1163
 
1164
+ #: wp-statistics.php:268
1165
  msgid "Rate this plugin"
1166
  msgstr ""
1167
 
1168
+ #: wp-statistics.php:312
1169
  msgid "WP Statistics - Hits"
1170
  msgstr ""
1171
 
1172
+ #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
1173
  msgid "Overview"
1174
  msgstr ""
1175
 
1176
+ #: wp-statistics.php:354 wp-statistics.php:430
1177
  msgid "Online"
1178
  msgstr ""
1179
 
1180
+ #: wp-statistics.php:356 wp-statistics.php:432
1181
  msgid "Referrers"
1182
  msgstr ""
1183
 
1184
+ #: shortcode.php:135 wp-statistics.php:357 wp-statistics.php:433
1185
  msgid "Searches"
1186
  msgstr ""
1187
 
1188
+ #: wp-statistics.php:358 wp-statistics.php:434
1189
  msgid "Search Words"
1190
  msgstr ""
1191
 
1192
+ #: wp-statistics.php:359 wp-statistics.php:435
1193
  msgid "Top Visitors Today"
1194
  msgstr ""
1195
 
1196
+ #: wp-statistics.php:364 wp-statistics.php:437
1197
  msgid "Optimization"
1198
  msgstr ""
1199
 
1200
+ #: wp-statistics.php:370 wp-statistics.php:401
1201
  msgid "Manual"
1202
  msgstr ""
1203
 
1204
+ #: wp-statistics.php:416
1205
  msgid "Site"
1206
  msgstr ""
1207
 
1208
+ #: wp-statistics.php:417
1209
  msgid "Options"
1210
  msgstr ""
1211
 
1212
+ #: wp-statistics.php:543
1213
  msgid "Today visitor"
1214
  msgstr ""
1215
 
1216
+ #: wp-statistics.php:549
1217
  msgid "Today visit"
1218
  msgstr ""
1219
 
1220
+ #: wp-statistics.php:555
1221
  msgid "Yesterday visitor"
1222
  msgstr ""
1223
 
1224
+ #: wp-statistics.php:567
1225
  msgid "View Stats"
1226
  msgstr ""
1227
 
1228
+ #: wp-statistics.php:591
1229
  msgid "Download ODF file"
1230
  msgstr ""
1231
 
1232
+ #: wp-statistics.php:592
1233
  msgid "Download HTML file"
1234
  msgstr ""
1235
 
1236
+ #: wp-statistics.php:596
1237
  msgid "Manual file not found."
1238
  msgstr ""
1239
 
1240
+ #: wp-statistics.php:663 wp-statistics.php:770 wp-statistics.php:804
1241
  msgid "You do not have sufficient permissions to access this page."
1242
  msgstr ""
1243
 
1245
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
1246
  msgstr ""
1247
 
1248
+ #: wp-statistics.php:241
1249
  msgid "WP Statistics %s installed on"
1250
  msgstr ""
1251
 
1293
  msgid "Browscap.ini update on"
1294
  msgstr ""
1295
 
1296
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1297
  #. Plugin URI of the plugin/theme
1298
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1299
  #. Author URI of the plugin/theme
1300
  msgid "http://wp-statistics.com/"
1301
  msgstr ""
1422
  msgstr ""
1423
 
1424
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1425
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
1426
+ #: wp-statistics.php:426
1427
  msgid "Browsers"
1428
  msgstr ""
1429
 
1452
  msgid "Exclusions Statistics"
1453
  msgstr ""
1454
 
1455
+ #: includes/functions/functions.php:931
1456
  msgid "10 Days"
1457
  msgstr ""
1458
 
1459
+ #: includes/functions/functions.php:931
1460
  msgid "20 Days"
1461
  msgstr ""
1462
 
1463
+ #: includes/functions/functions.php:931
1464
  msgid "30 Days"
1465
  msgstr ""
1466
 
1467
+ #: includes/functions/functions.php:931
1468
  msgid "2 Months"
1469
  msgstr ""
1470
 
1471
+ #: includes/functions/functions.php:931
1472
  msgid "3 Months"
1473
  msgstr ""
1474
 
1475
+ #: includes/functions/functions.php:931
1476
  msgid "6 Months"
1477
  msgstr ""
1478
 
1479
+ #: includes/functions/functions.php:931
1480
  msgid "9 Months"
1481
  msgstr ""
1482
 
1483
+ #: includes/functions/functions.php:931
1484
  msgid "1 Year"
1485
  msgstr ""
1486
 
1529
  msgid "Latest Search Word Statistics"
1530
  msgstr ""
1531
 
1532
+ #: includes/log/last-search.php:110 includes/log/last-visitor.php:101
1533
  #: includes/log/online.php:50 includes/log/widgets/google.map.php:84
1534
  #: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
1535
+ #: includes/log/widgets/words.php:46
1536
  msgid "#hash#"
1537
  msgstr ""
1538
 
1539
+ #: includes/log/last-search.php:115 includes/log/last-visitor.php:106
1540
  #: includes/log/online.php:55 includes/log/top-referring.php:71
1541
+ #: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
1542
  #: includes/settings/tabs/wps-overview-display.php:33
1543
  #: includes/settings/tabs/wps-overview-display.php:113
1544
  msgid "Map"
1545
  msgstr ""
1546
 
1547
+ #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1548
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1549
  #: includes/log/top-referring.php:125
1550
  msgid "Page"
1551
  msgstr ""
1552
 
1553
+ #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1554
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1555
  #: includes/log/top-referring.php:125
1556
  msgid "From"
1739
  msgstr ""
1740
 
1741
  #: includes/log/widgets/top.visitors.php:31
1742
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
1743
+ #: wp-statistics.php:353 wp-statistics.php:429
1744
  msgid "Hits"
1745
  msgstr ""
1746
 
1782
  msgid "No platform data found to remove!"
1783
  msgstr ""
1784
 
1785
+ #: includes/functions/functions.php:1019
1786
  msgid "%s table data deleted successfully."
1787
  msgstr ""
1788
 
1789
+ #: includes/functions/functions.php:1023
1790
  msgid "Error, %s not emptied!"
1791
  msgstr ""
1792
 
1812
 
1813
  #: includes/optimization/tabs/wps-optimization-database.php:25
1814
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1815
+ #: wp-statistics.php:351 wp-statistics.php:427
1816
  msgid "Countries"
1817
  msgstr ""
1818
 
1828
  msgstr ""
1829
 
1830
  #: includes/optimization/tabs/wps-optimization-database.php:41
1831
+ #: includes/optimization/tabs/wps-optimization-database.php:102
1832
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1833
  msgstr ""
1834
 
1838
 
1839
  #: includes/optimization/tabs/wps-optimization-database.php:47
1840
  #: includes/optimization/tabs/wps-optimization-database.php:77
1841
+ #: includes/optimization/tabs/wps-optimization-database.php:108
1842
  msgid "Congratulations, your installation is already up to date, nothing to do."
1843
  msgstr ""
1844
 
1845
  #: includes/optimization/tabs/wps-optimization-export.php:8
1846
+ #: includes/optimization/wps-optimization.php:212
1847
  msgid "Export"
1848
  msgstr ""
1849
 
1896
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1897
  #: includes/settings/tabs/wps-general.php:138
1898
  #: includes/settings/tabs/wps-general.php:143 shortcode.php:133
1899
+ #: wp-statistics.php:360 wp-statistics.php:436
1900
  msgid "Visitors"
1901
  msgstr ""
1902
 
2211
  msgid "Install routine complete."
2212
  msgstr ""
2213
 
2214
+ #: includes/optimization/wps-optimization.php:211
2215
  msgid "Resources/Information"
2216
  msgstr ""
2217
 
2218
+ #: includes/optimization/wps-optimization.php:213
2219
  msgid "Purging"
2220
  msgstr ""
2221
 
2222
+ #: includes/optimization/wps-optimization.php:214
2223
  msgid "Database"
2224
  msgstr ""
2225
 
2226
+ #: includes/optimization/wps-optimization.php:215
2227
  msgid "Updates"
2228
  msgstr ""
2229
 
2230
+ #: includes/optimization/wps-optimization.php:216
2231
  msgid "Historical"
2232
  msgstr ""
2233
 
2377
  msgstr ""
2378
 
2379
  #: includes/settings/tabs/wps-access-level.php:23
2380
+ #: includes/settings/wps-settings.php:103
2381
  msgid "Access Levels"
2382
  msgstr ""
2383
 
2410
  msgstr ""
2411
 
2412
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2413
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:352
2414
+ #: wp-statistics.php:428
2415
  msgid "Exclusions"
2416
  msgstr ""
2417
 
2582
  msgid "Exclude the RSS feeds for registering as a hit."
2583
  msgstr ""
2584
 
2585
+ #: includes/settings/tabs/wps-externals.php:162
2586
  msgid "browscap settings"
2587
  msgstr ""
2588
 
2589
+ #: includes/settings/tabs/wps-externals.php:167
2590
  msgid "browscap usage"
2591
  msgstr ""
2592
 
2593
+ #: includes/settings/tabs/wps-externals.php:52
2594
+ #: includes/settings/tabs/wps-externals.php:76
2595
+ #: includes/settings/tabs/wps-externals.php:109
2596
+ #: includes/settings/tabs/wps-externals.php:172
2597
+ #: includes/settings/tabs/wps-externals.php:196
2598
+ #: includes/settings/tabs/wps-externals.php:235
2599
+ #: includes/settings/tabs/wps-externals.php:259
2600
  #: includes/settings/tabs/wps-general.php:76
2601
  #: includes/settings/tabs/wps-general.php:92
2602
  #: includes/settings/tabs/wps-general.php:116
2612
  #: includes/settings/tabs/wps-general.php:286
2613
  #: includes/settings/tabs/wps-general.php:325
2614
  #: includes/settings/tabs/wps-general.php:341
 
 
 
2615
  #: includes/settings/tabs/wps-maintenance.php:40
2616
  #: includes/settings/tabs/wps-maintenance.php:64
2617
  #: includes/settings/tabs/wps-notifications.php:69
2626
  msgid "Active"
2627
  msgstr ""
2628
 
2629
+ #: includes/settings/tabs/wps-externals.php:173
2630
  msgid "The browscap database will be downloaded and used to detect robots."
2631
  msgstr ""
2632
 
2633
+ #: includes/settings/tabs/wps-externals.php:179
2634
  msgid "Update browscap Info"
2635
  msgstr ""
2636
 
2637
+ #: includes/settings/tabs/wps-externals.php:184
2638
  msgid "Download browscap Database"
2639
  msgstr ""
2640
 
2641
+ #: includes/settings/tabs/wps-externals.php:65
2642
+ #: includes/settings/tabs/wps-externals.php:185
2643
+ #: includes/settings/tabs/wps-externals.php:248
2644
  msgid "Save changes on this page to download the update."
2645
  msgstr ""
2646
 
2647
+ #: includes/settings/tabs/wps-externals.php:191
2648
  msgid "Schedule weekly update of browscap DB"
2649
  msgstr ""
2650
 
2651
+ #: includes/settings/tabs/wps-externals.php:79
2652
+ #: includes/settings/tabs/wps-externals.php:199
2653
+ #: includes/settings/tabs/wps-externals.php:262
2654
  msgid "Next update will be"
2655
  msgstr ""
2656
 
2657
+ #: includes/settings/tabs/wps-externals.php:214
2658
  msgid "Download of the browscap database will be scheduled for once a week."
2659
  msgstr ""
2660
 
languages/wp_statistics-sk_SK.mo CHANGED
Binary file
languages/wp_statistics-sk_SK.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2015-04-22 00:37:35+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -10,17 +10,81 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  #: includes/settings/tabs/wps-exclusions.php:148
14
  msgid "Treat corrupt browser info as a bot"
15
  msgstr ""
16
 
17
  #: includes/log/exclusions.php:24
18
  msgid "404 Pages"
19
- msgstr ""
20
 
21
  #: includes/log/top-visitors.php:26
22
  msgid "Date"
23
- msgstr ""
24
 
25
  #: includes/settings/tabs/wps-exclusions.php:151
26
  msgid "Treat any visitor with corrupt browser info (missing IP address or empty user agent string) as a robot."
@@ -28,87 +92,87 @@ msgstr ""
28
 
29
  #: includes/settings/tabs/wps-exclusions.php:215
30
  msgid "Excluded 404 pages"
31
- msgstr ""
32
 
33
  #: includes/settings/tabs/wps-exclusions.php:218
34
  msgid "Exclude any URL that returns a \"404 - Not Found\" message."
35
- msgstr ""
36
 
37
  #: wps-updates.php:29
38
  msgid "Error creating GeoIP database directory, make sure your web server has permissions to create directories in : %s"
39
- msgstr ""
40
 
41
  #: includes/settings/tabs/wps-general.php:281
42
  msgid "Add page title to empty search words"
43
- msgstr ""
44
 
45
  #: includes/settings/tabs/wps-general.php:287
46
  msgid "If a search engine is identified as the referrer but it does not include the search query this option will substitute the page title in quotes preceded by \"~:\" as the search query to help identify what the user may have been searching for."
47
- msgstr ""
48
 
49
  #: includes/settings/tabs/wps-maintenance.php:77
50
  msgid "The number of hits required to delete the visitor. Invalid values will disable the daily maintenance (must be 10 or greater)."
51
- msgstr ""
52
 
53
  #: includes/settings/tabs/wps-maintenance.php:71
54
  msgid "Prune visitors with more than"
55
- msgstr ""
56
 
57
  #: includes/settings/tabs/wps-maintenance.php:65
58
  msgid "A WP Cron job will be run daily to prune any users statistics data where the user has more than the defined number of hits in a day (aka they are probably a bot)."
59
- msgstr ""
60
 
61
  #: includes/optimization/tabs/wps-optimization-purging.php:217
62
  msgid "Purge visitors with more than"
63
- msgstr ""
64
 
65
  #: includes/optimization/tabs/wps-optimization-purging.php:222
66
  msgid "hits"
67
- msgstr ""
68
 
69
  #: includes/optimization/tabs/wps-optimization-purging.php:223
70
  msgid "Deleted user statistics data where the user has more than the defined number of hits in a day. This can be useful to clear up old data when your site has been hit by a bot. This will remove the visitor and their hits to the site, however it will not remove individual page hits as that data is not recorded on a per use basis. Minimum value is 10 hits."
71
- msgstr ""
72
 
73
  #: includes/functions/purge-hits.php:28
74
  msgid "No visitors found to purge."
75
- msgstr ""
76
 
77
  #: includes/functions/purge-hits.php:25
78
  msgid "%s records purged successfully."
79
- msgstr ""
80
 
81
  #: ajax.php:174 includes/functions/purge-hits.php:32
82
  msgid "Number of hits must be greater than or equal to 10!"
83
- msgstr ""
84
 
85
  #: shortcode.php:134
86
  msgid "Page Visits"
87
- msgstr ""
88
 
89
  #: shortcode.php:137
90
  msgid "Page Count"
91
- msgstr ""
92
 
93
  #: shortcode.php:138
94
  msgid "Comment Count"
95
- msgstr ""
96
 
97
  #: shortcode.php:139
98
  msgid "Spam Count"
99
- msgstr ""
100
 
101
  #: shortcode.php:140
102
  msgid "User Count"
103
- msgstr ""
104
 
105
  #: shortcode.php:141
106
  msgid "Post Average"
107
- msgstr ""
108
 
109
  #: shortcode.php:142
110
  msgid "Comment Average"
111
- msgstr ""
112
 
113
  #: shortcode.php:143
114
  msgid "User Average"
@@ -116,255 +180,255 @@ msgstr ""
116
 
117
  #: shortcode.php:151
118
  msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
119
- msgstr ""
120
 
121
  #: shortcode.php:155
122
  msgid "Search Provider"
123
- msgstr ""
124
 
125
  #: shortcode.php:158
126
  msgid "The search provider to get statistics on."
127
- msgstr ""
128
 
129
  #: shortcode.php:162
130
  msgid "Number Format"
131
- msgstr ""
132
 
133
  #: shortcode.php:165
134
  msgid "The format to display numbers in: i18n, english, none."
135
- msgstr ""
136
 
137
  #: shortcode.php:169
138
  msgid "English"
139
- msgstr ""
140
 
141
  #: shortcode.php:170
142
  msgid "International"
143
- msgstr ""
144
 
145
  #: includes/log/exclusions.php:191 includes/log/hit-statistics.php:163
146
  msgid "Hits Statistics Summary"
147
- msgstr ""
148
 
149
  #: includes/log/exclusions.php:201 includes/log/hit-statistics.php:174
150
  msgid "Chart Total"
151
- msgstr ""
152
 
153
  #: includes/log/exclusions.php:206 includes/log/hit-statistics.php:180
154
  msgid "All Time Total"
155
- msgstr ""
156
 
157
  #: includes/log/log.php:57
158
  msgid "Have you thought about donating to WP Statistics?"
159
- msgstr ""
160
 
161
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:362
162
  msgid "Donate"
163
- msgstr ""
164
 
165
  #: includes/settings/tabs/wps-about.php:24
166
  msgid "Fell like showing us how much you enjoy WP Statistics? Drop by our %s page and show us some love!"
167
- msgstr ""
168
 
169
  #: includes/settings/tabs/wps-about.php:24
170
  msgid "donation"
171
- msgstr ""
172
 
173
  #: includes/log/log.php:57
174
  msgid "Donate Now!"
175
- msgstr ""
176
 
177
  #: includes/log/log.php:57
178
  msgid "Close"
179
- msgstr ""
180
 
181
  #: shortcode.php:128
182
  msgid "Select the statistic you wish to display."
183
- msgstr ""
184
 
185
  #: shortcode.php:125
186
  msgid "Statistic"
187
- msgstr ""
188
 
189
  #: shortcode.php:136
190
  msgid "Post Count"
191
- msgstr ""
192
 
193
  #: shortcode.php:148
194
  msgid "Time Frame"
195
- msgstr ""
196
 
197
- #: includes/functions/functions.php:929
198
  msgid "to"
199
- msgstr ""
200
 
201
- #: includes/functions/functions.php:929 includes/log/top-visitors.php:29
202
  msgid "Go"
203
- msgstr ""
204
 
205
  #: includes/log/top-pages.php:95
206
  msgid "Rank #5"
207
- msgstr ""
208
 
209
  #: includes/log/top-pages.php:95
210
  msgid "Rank #4"
211
- msgstr ""
212
 
213
  #: includes/log/top-pages.php:95
214
  msgid "Rank #3"
215
- msgstr ""
216
 
217
  #: includes/log/top-pages.php:95
218
  msgid "Rank #1"
219
- msgstr ""
220
 
221
  #: includes/log/top-pages.php:95
222
  msgid "Rank #2"
223
- msgstr ""
224
 
225
  #: includes/optimization/tabs/wps-optimization-database.php:56
226
  msgid "Visits Table"
227
- msgstr ""
228
 
229
  #: includes/optimization/tabs/wps-optimization-database.php:70
230
  msgid "Older installs of WP Statistics allow for duplicate entries in the visits table in a corner case. Newer installs protect against this with a unique index on the table. To create the index on the older installs duplicate entries must be deleted first. Clicking \"Update Now\" will scan the vistits table, delete duplicate entries and add the index."
231
- msgstr ""
232
 
233
  #: includes/optimization/tabs/wps-optimization-database.php:71
234
  msgid "This operation could take a long time on installs with many rows in the visits table."
235
- msgstr ""
236
 
237
  #: includes/optimization/tabs/wps-optimization-database.php:76
238
  msgid "Older installs of WP Statistics allow for duplicate entries in the visits table in a corner case. Newer installs protect against this with a unique index on the table."
239
- msgstr ""
240
 
241
  #: includes/log/last-visitor.php:68
242
  msgid "Filtered by"
243
- msgstr ""
244
 
245
- #: includes/functions/functions.php:922 includes/functions/functions.php:925
246
  msgid "Range"
247
- msgstr ""
248
 
249
- #: includes/functions/functions.php:929 includes/log/top-visitors.php:29
250
  msgid "MM/DD/YYYY"
251
- msgstr "MM/DD/YYYY"
252
 
253
  #: includes/settings/tabs/wps-general.php:342
254
  msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
255
- msgstr ""
256
 
257
  #: includes/settings/tabs/wps-general.php:336
258
  msgid "Force English"
259
- msgstr ""
260
 
261
  #: includes/settings/tabs/wps-general.php:331
262
  msgid "Languages"
263
- msgstr ""
264
 
265
  #: includes/settings/tabs/wps-exclusions.php:227
266
  msgid "Note: this option will NOT handle url parameters (anything after the ?), only to the script name. Entries less than two characters will be ignored."
267
- msgstr ""
268
 
269
  #: includes/settings/tabs/wps-exclusions.php:225
270
  msgid "A list of local urls (ie. /wordpress/about, one per line) to exclude from statistics collection."
271
- msgstr ""
272
 
273
  #: includes/settings/tabs/wps-exclusions.php:222
274
  msgid "Excluded URLs list"
275
- msgstr ""
276
 
277
  #: includes/log/exclusions.php:24
278
  msgid "Excluded URL"
279
- msgstr ""
280
 
281
  #: includes/log/widgets/summary.php:66
282
  msgid "Last 365 Days (Year)"
283
- msgstr ""
284
 
285
  #: includes/log/widgets/summary.php:60
286
  msgid "Last 30 Days (Month)"
287
- msgstr ""
288
 
289
  #: includes/log/widgets/summary.php:54
290
  msgid "Last 7 Days (Week)"
291
- msgstr ""
292
 
293
- #: includes/functions/functions.php:403
294
  msgid "Yahoo!"
295
- msgstr ""
296
 
297
- #: includes/functions/functions.php:404
298
  msgid "Yandex"
299
- msgstr ""
300
 
301
- #: includes/functions/functions.php:400
302
  msgid "clearch.org"
303
- msgstr ""
304
 
305
- #: includes/functions/functions.php:401
306
  msgid "DuckDuckGo"
307
- msgstr ""
308
 
309
- #: includes/functions/functions.php:399
310
  msgid "Bing"
311
- msgstr ""
312
 
313
- #: includes/functions/functions.php:398
314
  msgid "Baidu"
315
- msgstr ""
316
 
317
  #: editor.php:69
318
  msgid "Hits in the last 20 days"
319
- msgstr ""
320
 
321
  #: includes/log/exclusions.php:24
322
  msgid "Feeds"
323
- msgstr ""
324
 
325
  #: includes/log/exclusions.php:24
326
  msgid "User Role"
327
- msgstr ""
328
 
329
  #: includes/log/exclusions.php:24
330
  msgid "Login Page"
331
- msgstr ""
332
 
333
  #: includes/log/exclusions.php:24
334
  msgid "Admin Page"
335
- msgstr ""
336
 
337
  #: includes/log/exclusions.php:24
338
  msgid "Self Referral"
339
- msgstr ""
340
 
341
  #: includes/log/exclusions.php:24
342
  msgid "IP Match"
343
- msgstr ""
344
 
345
  #: includes/log/exclusions.php:24
346
  msgid "Robot"
347
- msgstr ""
348
 
349
  #: includes/log/online.php:100
350
  msgid "Currently there are no users online in the site."
351
- msgstr ""
352
 
353
  #: includes/log/exclusions.php:24
354
  msgid "Robot Threshold"
355
- msgstr ""
356
 
357
  #: includes/log/exclusions.php:24
358
  msgid "Honey Pot"
359
- msgstr ""
360
 
361
  #: includes/log/widgets/page.php:8
362
  msgid "Page Trending Stats"
363
- msgstr ""
364
 
365
  #: includes/log/exclusions.php:24
366
  msgid "Hostname"
367
- msgstr ""
368
 
369
  #: includes/settings/tabs/wps-general.php:93
370
  #: includes/settings/tabs/wps-general.php:133
@@ -378,11 +442,11 @@ msgstr "Zapnúť alebo vypnúť túto funkciu"
378
 
379
  #: includes/settings/tabs/wps-general.php:99
380
  msgid "Check for online users every"
381
- msgstr "Skontrolujte, ci on-line uzivatelov kazdy"
382
 
383
  #: includes/settings/tabs/wps-general.php:104
384
  msgid "Second"
385
- msgstr "Druhý"
386
 
387
  #: includes/settings/tabs/wps-general.php:105
388
  msgid "Time for the check accurate online user in the site. Now: %s Second"
@@ -390,31 +454,31 @@ msgstr "Čas pre odhlásenie presné on-line užívateľov na webe. Teraz: %s dr
390
 
391
  #: includes/settings/tabs/wps-general.php:111
392
  msgid "Record all user"
393
- msgstr ""
394
 
395
  #: includes/settings/tabs/wps-general.php:117
396
  msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
397
- msgstr ""
398
 
399
  #: includes/settings/tabs/wps-general.php:155
400
  msgid "Store entire user agent string"
401
- msgstr "Uloženie celého reťazca"
402
 
403
  #: includes/settings/tabs/wps-general.php:161
404
  msgid "Only enabled for debugging"
405
- msgstr "Len aktivované pre ladenie"
406
 
407
  #: includes/settings/tabs/wps-general.php:167
408
  msgid "Coefficient per visitor"
409
- msgstr "Koeficient za navstevnika"
410
 
411
  #: includes/settings/tabs/wps-general.php:172
412
  msgid "For each visit to account for several hits. Currently %s."
413
- msgstr "Za každú návštevu účet pre niekoľko hitov. Momentálne %s."
414
 
415
  #: includes/settings/tabs/wps-general.php:177
416
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:351
417
- #: wp-statistics.php:427
418
  msgid "Pages"
419
  msgstr "Stránky"
420
 
@@ -424,15 +488,15 @@ msgstr "Sledovať všetky stránky"
424
 
425
  #: includes/settings/tabs/wps-general.php:209
426
  msgid "Strip parameters from URI"
427
- msgstr ""
428
 
429
  #: includes/settings/tabs/wps-general.php:215
430
  msgid "This will remove anything after the ? in a URL."
431
- msgstr ""
432
 
433
  #: includes/settings/tabs/wps-general.php:223
434
  msgid "Disable hits column in post/pages list"
435
- msgstr "Zakázať hity stĺpec v post/stránky zoznam"
436
 
437
  #: includes/settings/tabs/wps-general.php:234
438
  msgid "Miscellaneous"
@@ -440,7 +504,7 @@ msgstr "Rôzne"
440
 
441
  #: includes/settings/tabs/wps-general.php:239
442
  msgid "Show stats in menu bar"
443
- msgstr "Zobrazit statistiky v menu"
444
 
445
  #: includes/settings/tabs/wps-general.php:244
446
  msgid "No"
@@ -448,19 +512,19 @@ msgstr "Nie"
448
 
449
  #: includes/settings/tabs/wps-general.php:245
450
  msgid "Yes"
451
- msgstr "Ano"
452
 
453
  #: includes/settings/tabs/wps-general.php:247
454
  msgid "Show stats in admin menu bar"
455
- msgstr "Zobrazit statistiky do admin menu"
456
 
457
  #: includes/settings/tabs/wps-general.php:253
458
  msgid "Hide admin notices about non active features"
459
- msgstr "Skryť admin oznámenia o non aktívne funkcie"
460
 
461
  #: includes/settings/tabs/wps-general.php:259
462
  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."
463
- msgstr "V predvolenom nastavení WP Statistics zobrazí výstrahu, ak základné funkcie sú vypnuté na každý admin stránky, táto možnosť bude vypnúť tieto oznámenia."
464
 
465
  #: includes/settings/tabs/wps-general.php:265
466
  msgid "Delete the manual"
@@ -468,15 +532,15 @@ msgstr "Odstrániť manuál"
468
 
469
  #: includes/settings/tabs/wps-general.php:271
470
  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."
471
- msgstr "V predvolenom nastavení WP Statistics ukladá admin manuálne v plugin adresári (~ 5 meg), ak je táto možnosť povolená, bude zmazaný teraz a počas upgrade v budúcnosti."
472
 
473
  #: includes/settings/tabs/wps-general.php:276
474
  msgid "Search Engines"
475
- msgstr ""
476
 
477
  #: includes/settings/tabs/wps-general.php:293
478
  msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
479
- msgstr "Vypnutie všetkých vyhľadávačov nie je povolené, by to znamenalo vo všetkých vyhľadávačoch je aktívny."
480
 
481
  #: includes/settings/tabs/wps-general.php:308
482
  msgid "disable"
@@ -484,7 +548,7 @@ msgstr "vypnúť"
484
 
485
  #: includes/settings/tabs/wps-general.php:309
486
  msgid "Disable %s from data collection and reporting."
487
- msgstr "Vypnúť %s zo zberu údajov a oznamovania."
488
 
489
  #: includes/settings/tabs/wps-general.php:315
490
  msgid "Charts"
@@ -496,79 +560,79 @@ msgstr "Zahrnúť súčty"
496
 
497
  #: includes/settings/tabs/wps-general.php:326
498
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
499
- msgstr "Pridanie riadka Celkom na grafy s viacerými hodnotami, ako vyhľadávače referrals"
500
 
501
- #: includes/settings/tabs/wps-geoip.php:27
502
  msgid "GeoIP settings"
503
  msgstr "GeoIP nastavenia"
504
 
505
- #: includes/settings/tabs/wps-geoip.php:32
506
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
507
- msgstr "IP poloha služby poskytované GeoLite2 údaje vytvorené MaxMind, dostupné z %s."
508
 
509
- #: includes/settings/tabs/wps-geoip.php:42
510
  msgid "GeoIP collection"
511
- msgstr "Kolekcia GeoIP"
512
 
513
- #: includes/settings/tabs/wps-geoip.php:48
514
  msgid "For get more information and location (country) from visitor, enable this feature."
515
- msgstr "Pre viac informácií a lokalita (krajina) návštevníka, túto funkciu."
516
 
517
- #: includes/settings/tabs/wps-geoip.php:54
518
  msgid "Update GeoIP Info"
519
  msgstr "Aktualizácia GeoIP Info"
520
 
521
- #: includes/settings/tabs/wps-geoip.php:59
522
  msgid "Download GeoIP Database"
523
- msgstr "Stiahnuť GeoIP databázy"
524
 
525
- #: includes/settings/tabs/wps-geoip.php:66
526
  msgid "Schedule monthly update of GeoIP DB"
527
- msgstr "Harmonogram mesačná aktualizácia dB GeoIP"
528
 
529
- #: includes/settings/tabs/wps-geoip.php:92
530
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
531
- msgstr "Stiahnuť GeoIP databázy bude konať 2 dni po prvý utorok v mesiaci."
532
 
533
- #: includes/settings/tabs/wps-geoip.php:93
534
  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)."
535
- msgstr "Táto voľba bude tiež stiahnuť databázu ak miestne veľkosť je menej ako 1 kB (čo zvyčajne znamená stub, ktorý je dodávaný s pluginom je stále na svojom mieste)."
536
 
537
- #: includes/settings/tabs/wps-geoip.php:99
538
  msgid "Populate missing GeoIP after update of GeoIP DB"
539
- msgstr "Vyplniť chýbajúce GeoIP po aktualizácii GeoIP dB"
540
 
541
- #: includes/settings/tabs/wps-geoip.php:105
542
  msgid "Update any missing GeoIP data after downloading a new database."
543
  msgstr "Aktualizovať chýbajúce údaje, GeoIP po stiahnutí novej databázy."
544
 
545
- #: includes/settings/tabs/wps-geoip.php:111
546
  msgid "Country code for private IP addresses"
547
- msgstr ""
548
 
549
- #: includes/settings/tabs/wps-geoip.php:116
550
  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."
551
- msgstr ""
552
 
553
- #: includes/settings/tabs/wps-geoip.php:127
554
  msgid "GeoIP collection is disabled due to the following reasons:"
555
- msgstr "GeoIP kolekcia je zakázané z nasledujúcich príčin:"
556
 
557
- #: includes/settings/tabs/wps-geoip.php:130
558
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
559
- msgstr "GeoIP zber vyžaduje PHP %s alebo vyššie, je v súčasnosti zakázaný kvôli nainštalované PHP verzia je "
560
 
561
- #: includes/settings/tabs/wps-geoip.php:135
562
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
563
- msgstr "GeoIP zber vyžaduje rozšírenie PHP cURL a nie je naložené na svoju verziu PHP!"
564
 
565
- #: includes/settings/tabs/wps-geoip.php:141
566
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
567
- msgstr "GeoIP zber vyžaduje BC Math PHP rozšírenie a to nie je naložené na svoju verziu PHP!"
568
 
569
- #: includes/settings/tabs/wps-geoip.php:147
570
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
571
- msgstr "PHP núdzovom režime zistiť! GeoIP kolekcia nie je podporovaná s PHP v núdzovom režime povolený!"
572
 
573
  #: includes/settings/tabs/wps-maintenance.php:20
574
  msgid "This will permanently delete data from the database each day, are you sure you want to enable this option?"
@@ -581,15 +645,15 @@ msgstr "Údržba databázy"
581
  #: includes/settings/tabs/wps-maintenance.php:35
582
  #: includes/settings/tabs/wps-maintenance.php:59
583
  msgid "Run a daily WP Cron job to prune the databases"
584
- msgstr "Spustiť denné WP cronu prerezávať databázy"
585
 
586
  #: includes/settings/tabs/wps-maintenance.php:41
587
  msgid "A WP Cron job will be run daily to prune any data older than a set number of days."
588
- msgstr "WP cronu bude prebiehať denne prerezávať všetky údaje staršie ako nastavený počet dní."
589
 
590
  #: includes/settings/tabs/wps-maintenance.php:47
591
  msgid "Prune data older than"
592
- msgstr "Prerezávať údaje staršie ako"
593
 
594
  #: includes/settings/tabs/wps-maintenance.php:52
595
  msgid "Days"
@@ -597,11 +661,11 @@ msgstr "Dní"
597
 
598
  #: includes/settings/tabs/wps-maintenance.php:53
599
  msgid "The number of days to keep statistics for. Minimum value is 30 days. Invalid values will disable the daily maintenance."
600
- msgstr "Počet dní, aby štatistiky. Minimálna hodnota je 30 dní. Neplatné hodnoty zakážete každodennú údržbu."
601
 
602
  #: includes/settings/tabs/wps-notifications.php:44
603
  msgid "Common Report Options"
604
- msgstr ""
605
 
606
  #: includes/settings/tabs/wps-notifications.php:49
607
  msgid "E-mail addresses"
@@ -609,59 +673,58 @@ msgstr "E-mailové adresy"
609
 
610
  #: includes/settings/tabs/wps-notifications.php:54
611
  msgid "A comma separated list of e-mail addresses to send reports to."
612
- msgstr ""
613
 
614
  #: includes/settings/tabs/wps-notifications.php:59
615
  msgid "Update Reports"
616
- msgstr ""
617
 
618
  #: includes/log/exclusions.php:24
619
  #: includes/settings/tabs/wps-notifications.php:64
620
  msgid "Browscap"
621
- msgstr ""
622
 
623
  #: includes/settings/tabs/wps-notifications.php:70
624
  msgid "Send a report whenever the browscap.ini is updated."
625
- msgstr ""
626
 
627
  #: includes/log/exclusions.php:24
628
  #: includes/settings/tabs/wps-notifications.php:76
629
- #: includes/settings/wps-settings.php:111
630
  msgid "GeoIP"
631
  msgstr "GeoIP"
632
 
633
  #: includes/settings/tabs/wps-notifications.php:82
634
  msgid "Send a report whenever the GeoIP database is updated."
635
- msgstr ""
636
 
637
  #: includes/settings/tabs/wps-notifications.php:88
638
  msgid "Pruning"
639
- msgstr ""
640
 
641
  #: includes/settings/tabs/wps-notifications.php:94
642
  msgid "Send a report whenever the pruning of database is run."
643
- msgstr ""
644
 
645
  #: includes/settings/tabs/wps-notifications.php:100
646
  msgid "Upgrade"
647
- msgstr ""
648
 
649
  #: includes/settings/tabs/wps-notifications.php:106
650
  msgid "Send a report whenever the plugin is upgraded."
651
- msgstr ""
652
 
653
  #: includes/settings/tabs/wps-notifications.php:111
654
- #: includes/settings/tabs/wps-notifications.php:116 schedule.php:199
655
  msgid "Statistical reporting"
656
  msgstr "Štatistické vykazovanie"
657
 
658
  #: includes/settings/tabs/wps-notifications.php:129
659
  msgid "Schedule"
660
- msgstr "Rozvrh"
661
 
662
  #: includes/settings/tabs/wps-notifications.php:153
663
  msgid "Select how often to receive statistical report."
664
- msgstr ""
665
 
666
  #: includes/settings/tabs/wps-notifications.php:159
667
  msgid "Send reports via"
@@ -669,7 +732,7 @@ msgstr "Odoslať správy prostredníctvom"
669
 
670
  #: includes/settings/tabs/wps-notifications.php:165
671
  msgid "Email"
672
- msgstr "E-mailom"
673
 
674
  #: includes/settings/tabs/wps-notifications.php:167
675
  msgid "SMS"
@@ -677,11 +740,11 @@ msgstr "SMS"
677
 
678
  #: includes/settings/tabs/wps-notifications.php:170
679
  msgid "Select delivery method for statistical report."
680
- msgstr ""
681
 
682
  #: includes/settings/tabs/wps-notifications.php:173
683
  msgid "Note: To send SMS text messages please install the %s plugin."
684
- msgstr "Poznámka: Poslať SMS textových správ nainštalujte %s plugin."
685
 
686
  #: includes/settings/tabs/wps-notifications.php:173
687
  msgid "WordPress SMS"
@@ -693,35 +756,35 @@ msgstr "Telo správy"
693
 
694
  #: includes/settings/tabs/wps-notifications.php:185
695
  msgid "Enter the contents of the report."
696
- msgstr ""
697
 
698
  #: includes/settings/tabs/wps-notifications.php:187
699
  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:"
700
- msgstr ""
701
 
702
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
703
- #: widget.php:245 wp-statistics.php:532
704
  msgid "User Online"
705
- msgstr "Uzivatel Online"
706
 
707
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
708
  #: widget.php:251
709
  msgid "Today Visitor"
710
- msgstr "Dnes návštevník"
711
 
712
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
713
  #: widget.php:248
714
  msgid "Today Visit"
715
- msgstr "Dnes Visit"
716
 
717
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
718
  #: widget.php:257
719
  msgid "Yesterday Visitor"
720
- msgstr "Včera návštevník"
721
 
722
  #: includes/settings/tabs/wps-notifications.php:192 widget.php:59
723
  msgid "Yesterday Visit"
724
- msgstr "Vcera Visit"
725
 
726
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
727
  #: widget.php:272
@@ -743,57 +806,57 @@ msgid "Summary Statistics"
743
  msgstr "Súhrnné štatistiky"
744
 
745
  #: includes/settings/tabs/wps-overview-display.php:28
746
- #: includes/settings/wps-settings.php:115
747
  msgid "About"
748
- msgstr "O"
749
 
750
  #: includes/settings/tabs/wps-overview-display.php:34
751
  msgid "Hits Statistical Chart"
752
- msgstr "Hity štatistický graf"
753
 
754
  #: includes/settings/tabs/wps-overview-display.php:36
755
  msgid "Search Engine Referrers Statistical Chart"
756
- msgstr "Hľadať Motor odkazovateľov štatistický graf"
757
 
758
  #: includes/settings/tabs/wps-overview-display.php:38
759
  msgid "Top Pages Visited"
760
- msgstr "Začiatok stránky navštívil"
761
 
762
  #: includes/settings/tabs/wps-overview-display.php:73
763
  msgid "Dashboard"
764
- msgstr ""
765
 
766
  #: includes/settings/tabs/wps-overview-display.php:77
767
  #: includes/settings/tabs/wps-overview-display.php:97
768
  #: includes/settings/tabs/wps-overview-display.php:117
769
  msgid "The following items are global to all users."
770
- msgstr ""
771
 
772
  #: includes/settings/tabs/wps-overview-display.php:82
773
  msgid "Disable dashboard widgets"
774
- msgstr ""
775
 
776
  #: includes/settings/tabs/wps-overview-display.php:88
777
  msgid "Disable the dashboard widgets."
778
- msgstr ""
779
 
780
  #: includes/settings/tabs/wps-overview-display.php:93
781
  msgid "Page/Post Editor"
782
- msgstr ""
783
 
784
  #: includes/settings/tabs/wps-overview-display.php:102
785
  msgid "Disable post/page editor widget"
786
- msgstr ""
787
 
788
  #: includes/settings/tabs/wps-overview-display.php:108
789
  msgid "Disable the page/post editor widget."
790
- msgstr ""
791
 
792
  #: includes/settings/tabs/wps-overview-display.php:122
793
  msgid "Map type"
794
  msgstr "Typ mapy"
795
 
796
- #: includes/functions/functions.php:402
797
  #: includes/settings/tabs/wps-overview-display.php:128
798
  msgid "Google"
799
  msgstr "Google"
@@ -804,15 +867,15 @@ msgstr "JQVMap"
804
 
805
  #: includes/settings/tabs/wps-overview-display.php:135
806
  msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
807
- msgstr "\"Google\" možnosť používať Google mapovanie služby pozemok posledných návštevníkov (vyžaduje prístup k Google)."
808
 
809
  #: includes/settings/tabs/wps-overview-display.php:136
810
  msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
811
- msgstr "\"JQVMap\" možnosť používať JQVMap javascript mapovanie knižnica pozemok posledných návštevníkov (vyžaduje služby bez extenral)."
812
 
813
  #: includes/settings/tabs/wps-overview-display.php:142
814
  msgid "Disable map"
815
- msgstr "Zakázať mapa"
816
 
817
  #: includes/settings/tabs/wps-overview-display.php:148
818
  msgid "Disable the map display"
@@ -820,19 +883,19 @@ msgstr "Vypnúť zobrazovanie máp"
820
 
821
  #: includes/settings/tabs/wps-overview-display.php:154
822
  msgid "Get country location from Google"
823
- msgstr "Získajte krajinu od Google"
824
 
825
  #: includes/settings/tabs/wps-overview-display.php:160
826
  msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
827
- msgstr "Táto funkcia môže spôsobiť výkonu pri prezeraní štatistiky a platí len ak je nastavený typ mapy na \"Google\"."
828
 
829
  #: includes/settings/tabs/wps-overview-display.php:171
830
  msgid "Overview Widgets to Display"
831
- msgstr ""
832
 
833
  #: includes/settings/tabs/wps-overview-display.php:175
834
  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."
835
- msgstr "Tieto položky sú jedinečné pre každého používateľa. Ak nevyberiete \"O' widget sa automaticky zobrazí v poslednej pozícii stĺpca A."
836
 
837
  #: includes/settings/tabs/wps-overview-display.php:180
838
  msgid "Slot"
@@ -877,11 +940,11 @@ msgstr "N/A"
877
 
878
  #: includes/settings/tabs/wps-overview-display.php:366
879
  msgid "Slot 7"
880
- msgstr ""
881
 
882
  #: includes/settings/tabs/wps-removal.php:15
883
  msgid "WP Statisitcs Removal"
884
- msgstr ""
885
 
886
  #: includes/settings/tabs/wps-removal.php:20
887
  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."
@@ -889,49 +952,44 @@ msgstr ""
889
 
890
  #: includes/settings/tabs/wps-removal.php:23
891
  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."
892
- msgstr ""
893
 
894
  #: includes/settings/tabs/wps-removal.php:29
895
  msgid "Remove data and settings"
896
- msgstr ""
897
 
898
  #: includes/settings/tabs/wps-removal.php:34
899
  msgid "Remove"
900
- msgstr ""
901
 
902
  #: includes/settings/tabs/wps-removal.php:35
903
  msgid "Remove data and settings, this action cannot be undone."
904
- msgstr ""
905
 
906
- #: includes/settings/wps-settings.php:106
907
  msgid "General"
908
- msgstr "Všeobecné"
909
 
910
- #: includes/settings/wps-settings.php:107
911
  msgid "Notifications"
912
- msgstr ""
913
 
914
- #: includes/settings/wps-settings.php:108
915
  msgid "Dashboard/Overview"
916
- msgstr ""
917
-
918
- #: includes/settings/wps-settings.php:112
919
- msgid "browscap"
920
- msgstr "browscap"
921
 
922
- #: includes/settings/wps-settings.php:113
923
  msgid "Maintenance"
924
  msgstr "Údržba"
925
 
926
- #: includes/settings/wps-settings.php:114
927
  msgid "Removal"
928
- msgstr ""
929
 
930
  #: includes/settings/tabs/wps-access-level.php:85
931
- #: includes/settings/tabs/wps-browscap.php:81
932
  #: includes/settings/tabs/wps-exclusions.php:234
 
933
  #: includes/settings/tabs/wps-general.php:349
934
- #: includes/settings/tabs/wps-geoip.php:158
935
  #: includes/settings/tabs/wps-maintenance.php:84
936
  #: includes/settings/tabs/wps-notifications.php:201
937
  #: includes/settings/tabs/wps-overview-display.php:388
@@ -941,7 +999,7 @@ msgstr "Aktualizácia"
941
 
942
  #: schedule.php:10
943
  msgid "Once Weekly"
944
- msgstr "Hmotnosti raz týždenne"
945
 
946
  #: schedule.php:17
947
  msgid "Once Every 2 Weeks"
@@ -951,9 +1009,9 @@ msgstr "Raz za 2 týždne"
951
  msgid "Once Every 4 Weeks"
952
  msgstr "Raz za 4 týždne"
953
 
954
- #: widget.php:14 wp-statistics.php:342 wp-statistics.php:380
955
  msgid "Statistics"
956
- msgstr "Statistika"
957
 
958
  #: widget.php:15
959
  msgid "Show site stats in sidebar."
@@ -965,7 +1023,7 @@ msgstr "Tyzden Visit"
965
 
966
  #: widget.php:80 widget.php:263
967
  msgid "Month Visit"
968
- msgstr "Mesiac Visit"
969
 
970
  #: widget.php:87 widget.php:266
971
  msgid "Years Visit"
@@ -977,7 +1035,7 @@ msgstr "Celkový počet zobrazení stránky"
977
 
978
  #: widget.php:116
979
  msgid "Search Engine referred"
980
- msgstr "Vyhľadávač uvedených"
981
 
982
  #: widget.php:123 widget.php:298
983
  msgid "Total Posts"
@@ -985,7 +1043,7 @@ msgstr "Celkom prispevkov"
985
 
986
  #: widget.php:130 widget.php:301
987
  msgid "Total Pages"
988
- msgstr "Celkom Stranok"
989
 
990
  #: widget.php:137 widget.php:304
991
  msgid "Total Comments"
@@ -997,15 +1055,15 @@ msgstr "Celkom spamy"
997
 
998
  #: widget.php:151 widget.php:310
999
  msgid "Total Users"
1000
- msgstr "Celkom Uzivatelske"
1001
 
1002
  #: widget.php:158 widget.php:313
1003
  msgid "Average Posts"
1004
- msgstr "Priemerna prispevky"
1005
 
1006
  #: widget.php:165 widget.php:316
1007
  msgid "Average Comments"
1008
- msgstr "Priemerna Komentare"
1009
 
1010
  #: widget.php:172 widget.php:319
1011
  msgid "Average Users"
@@ -1013,7 +1071,7 @@ msgstr "Priemerny Uzivatelske"
1013
 
1014
  #: shortcode.php:144 widget.php:179 widget.php:322
1015
  msgid "Last Post Date"
1016
- msgstr "Datum posledneho prispevku"
1017
 
1018
  #: widget.php:238
1019
  msgid "Name"
@@ -1023,21 +1081,21 @@ msgstr "Meno"
1023
  msgid "Items"
1024
  msgstr "Polozky"
1025
 
1026
- #: widget.php:254 wp-statistics.php:557
1027
  msgid "Yesterday visit"
1028
- msgstr "Vcera navsteva"
1029
 
1030
  #: widget.php:278
1031
  msgid "Search Engine Referred"
1032
- msgstr "Vyhľadávač uvedených"
1033
 
1034
  #: widget.php:281
1035
  msgid "Select type of search engine"
1036
- msgstr "Vyberte typ vyhladavace"
1037
 
1038
  #: wp-statistics.php:70
1039
  msgid "ERROR: WP Statistics has detected an unsupported version of PHP, WP Statistics will not function without PHP Version "
1040
- msgstr "Chyba: WP Statistics zistil nepodporovanú verziu PHP, WP Statistics nebude fungovať bez PHP verzia "
1041
 
1042
  #: wp-statistics.php:70
1043
  msgid " or higher!"
@@ -1045,27 +1103,27 @@ msgstr "alebo vyšší!"
1045
 
1046
  #: wp-statistics.php:70
1047
  msgid "Your current PHP version is"
1048
- msgstr ""
1049
 
1050
  #: wp-statistics.php:86
1051
  msgid "WP Statistics has been removed, please disable and delete it."
1052
- msgstr ""
1053
 
1054
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1055
  #. Plugin Name of the plugin/theme
1056
  #: wp-statistics.php:37
1057
  msgid "WP Statistics"
1058
  msgstr "WP Statistics"
1059
 
1060
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1061
  #. Description of the plugin/theme
1062
  #: wp-statistics.php:38
1063
  msgid "Complete statistics for your WordPress site."
1064
- msgstr "Kompletné štatistiky pre vaše stránky WordPress."
1065
 
1066
  #: wp-statistics.php:137
1067
  msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
1068
- msgstr "Používateľa on-line sledovanie v WP Statistics nie je povolená, prosím prejdite na %s a umožniť mu."
1069
 
1070
  #: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
1071
  msgid "setting page"
@@ -1073,7 +1131,7 @@ msgstr "Nastavenie stránky"
1073
 
1074
  #: wp-statistics.php:140
1075
  msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
1076
- msgstr "Hit sledovania v WP Statistics nie je povolená, prosím prejdite na %s a umožniť mu."
1077
 
1078
  #: wp-statistics.php:143
1079
  msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
@@ -1081,139 +1139,139 @@ msgstr "Návštevník tracking v WP Statistics nie je povolená, prosím prejdit
1081
 
1082
  #: wp-statistics.php:146
1083
  msgid "GeoIP collection is not active, please go to %s and enable this feature."
1084
- msgstr "GeoIP kolekcia nie je aktívny, prosím prejdite na %s a túto funkciu."
1085
 
1086
  #: wp-statistics.php:146
1087
  msgid "Setting page > GeoIP"
1088
  msgstr "Nastavenie stránky > GeoIP"
1089
 
1090
- #: wp-statistics.php:249 wp-statistics.php:361 wp-statistics.php:434
1091
  msgid "Settings"
1092
  msgstr "Nastavenia"
1093
 
1094
- #: wp-statistics.php:261
1095
  msgid "Click here to visit the plugin on WordPress.org"
1096
- msgstr "Kliknite tu pre návštevu plugin na WordPress.org"
1097
 
1098
- #: wp-statistics.php:261
1099
  msgid "Visit WordPress.org page"
1100
  msgstr "Navštívte stránku WordPress.org"
1101
 
1102
- #: wp-statistics.php:264
1103
  msgid "Click here to rate and review this plugin on WordPress.org"
1104
- msgstr "Kliknite tu pre sadzby a preskúmať tento plugin na WordPress.org"
1105
 
1106
- #: wp-statistics.php:264
1107
  msgid "Rate this plugin"
1108
- msgstr "Hodnotiť tento plugin"
1109
 
1110
- #: wp-statistics.php:308
1111
  msgid "WP Statistics - Hits"
1112
  msgstr "WP Statistics - hity"
1113
 
1114
- #: wp-statistics.php:345 wp-statistics.php:383 wp-statistics.php:421
1115
  msgid "Overview"
1116
  msgstr "Prehľad"
1117
 
1118
- #: wp-statistics.php:350 wp-statistics.php:426
1119
  msgid "Online"
1120
- msgstr ""
1121
 
1122
- #: wp-statistics.php:352 wp-statistics.php:428
1123
  msgid "Referrers"
1124
- msgstr ""
1125
 
1126
- #: shortcode.php:135 wp-statistics.php:353 wp-statistics.php:429
1127
  msgid "Searches"
1128
  msgstr "Vyhľadávanie"
1129
 
1130
- #: wp-statistics.php:354 wp-statistics.php:430
1131
  msgid "Search Words"
1132
  msgstr "Hľadané slová"
1133
 
1134
- #: wp-statistics.php:355 wp-statistics.php:431
1135
  msgid "Top Visitors Today"
1136
- msgstr ""
1137
 
1138
- #: wp-statistics.php:360 wp-statistics.php:433
1139
  msgid "Optimization"
1140
  msgstr "Optimalizácia"
1141
 
1142
- #: wp-statistics.php:366 wp-statistics.php:397
1143
  msgid "Manual"
1144
  msgstr "Manuál"
1145
 
1146
- #: wp-statistics.php:412
1147
  msgid "Site"
1148
- msgstr ""
1149
 
1150
- #: wp-statistics.php:413
1151
  msgid "Options"
1152
- msgstr ""
1153
 
1154
- #: wp-statistics.php:539
1155
  msgid "Today visitor"
1156
- msgstr "Dnes návštevník"
1157
 
1158
- #: wp-statistics.php:545
1159
  msgid "Today visit"
1160
  msgstr "Dnes navštíviť"
1161
 
1162
- #: wp-statistics.php:551
1163
  msgid "Yesterday visitor"
1164
- msgstr "Včera návštevník"
1165
 
1166
- #: wp-statistics.php:563
1167
  msgid "View Stats"
1168
  msgstr "Zobrazenie štatistiky"
1169
 
1170
- #: wp-statistics.php:587
1171
  msgid "Download ODF file"
1172
  msgstr "Stiahnuť ODF súbor"
1173
 
1174
- #: wp-statistics.php:588
1175
  msgid "Download HTML file"
1176
  msgstr "Stiahnuť súbor vo formáte HTML"
1177
 
1178
- #: wp-statistics.php:592
1179
  msgid "Manual file not found."
1180
- msgstr "Manuálny súbor nebol nájdený."
1181
 
1182
- #: wp-statistics.php:659 wp-statistics.php:770 wp-statistics.php:804
1183
  msgid "You do not have sufficient permissions to access this page."
1184
- msgstr "Nemate dostatocne opravnenia pre pristup k tejto stranke."
1185
 
1186
  #: wp-statistics.php:672
1187
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
1188
- msgstr ""
1189
 
1190
- #: wp-statistics.php:237
1191
  msgid "WP Statistics %s installed on"
1192
- msgstr ""
1193
 
1194
  #: wps-updates.php:39
1195
  msgid "Error downloading GeoIP database from: %s - %s"
1196
- msgstr "Chyba pri preberaní GeoIP databázy z: %s - %s"
1197
 
1198
  #: wps-updates.php:50
1199
  msgid "Error could not open downloaded GeoIP database for reading: %s"
1200
- msgstr "Chyba Nepodarilo sa otvoriť stiahnutý GeoIP databázy pre čítanie: %s"
1201
 
1202
  #: wps-updates.php:57
1203
  msgid "Error could not open destination GeoIP database for writing %s"
1204
- msgstr "Chyba nemožno otvoriť určenia GeoIP databázy pre písanie %s"
1205
 
1206
  #: wps-updates.php:73
1207
  msgid "GeoIP Database updated successfully!"
1208
- msgstr "GeoIP databázy aktualizovan²!"
1209
 
1210
  #: wps-updates.php:98
1211
  msgid "GeoIP update on"
1212
- msgstr ""
1213
 
1214
  #: wps-updates.php:165
1215
  msgid "Error downloading browscap database from: %s - %s"
1216
- msgstr "Chyba pri preberaní browscap databázy z: %s - %s"
1217
 
1218
  #: wps-updates.php:267
1219
  msgid "browscap database updated successfully!"
@@ -1221,11 +1279,11 @@ msgstr "browscap databáza je aktualizovaná úspešne!"
1221
 
1222
  #: wps-updates.php:277
1223
  msgid "browscap database updated failed! Cache file too large, reverting to previous browscap.ini."
1224
- msgstr ""
1225
 
1226
  #: wps-updates.php:285
1227
  msgid "browscap database updated failed! New browscap.ini is mis-identifing user agents as crawlers, reverting to previous browscap.ini."
1228
- msgstr ""
1229
 
1230
  #: wps-updates.php:307
1231
  msgid "browscap already at current version!"
@@ -1233,14 +1291,14 @@ msgstr "browscap už v aktuálnej verzii!"
1233
 
1234
  #: wps-updates.php:320
1235
  msgid "Browscap.ini update on"
1236
- msgstr ""
1237
 
1238
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1239
  #. Plugin URI of the plugin/theme
1240
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1241
  #. Author URI of the plugin/theme
1242
  msgid "http://wp-statistics.com/"
1243
- msgstr "http://WP-statistics.com/"
1244
 
1245
  #. Author of the plugin/theme
1246
  msgid "Mostafa Soufi & Greg Ross"
@@ -1248,11 +1306,11 @@ msgstr "Mostafa Soufi & Greg Ross"
1248
 
1249
  #: dashboard.php:55
1250
  msgid "Quick Stats"
1251
- msgstr ""
1252
 
1253
  #: dashboard.php:56 includes/log/widgets/browsers.php:58
1254
  msgid "Top 10 Browsers"
1255
- msgstr "Top 10 prehliadače"
1256
 
1257
  #: dashboard.php:57 includes/log/widgets/countries.php:11
1258
  #: includes/settings/tabs/wps-overview-display.php:27
@@ -1261,12 +1319,12 @@ msgstr "Top 10 krajín"
1261
 
1262
  #: dashboard.php:58
1263
  msgid "Today's Visitor Map"
1264
- msgstr ""
1265
 
1266
  #: dashboard.php:59 editor.php:46 includes/log/hit-statistics.php:8
1267
  #: includes/log/widgets/hits.php:10
1268
  msgid "Hit Statistics"
1269
- msgstr "Hit štatistiky"
1270
 
1271
  #: dashboard.php:60 includes/log/widgets/pages.php:14
1272
  msgid "Top 10 Pages"
@@ -1276,18 +1334,18 @@ msgstr "Top 10 stránok"
1276
  #: includes/log/widgets/recent.php:10
1277
  #: includes/settings/tabs/wps-overview-display.php:39
1278
  msgid "Recent Visitors"
1279
- msgstr "Posledný návštevníci"
1280
 
1281
  #: dashboard.php:62 includes/log/top-referring.php:27
1282
  #: includes/log/top-referring.php:42 includes/log/widgets/referring.php:16
1283
  #: includes/settings/tabs/wps-overview-display.php:26
1284
  msgid "Top Referring Sites"
1285
- msgstr "Začiatok odkazuje stránky"
1286
 
1287
  #: dashboard.php:63 includes/log/widgets/search.php:10
1288
  #: includes/log/widgets/summary.php:89
1289
  msgid "Search Engine Referrals"
1290
- msgstr "Vyhľadávače Referrals"
1291
 
1292
  #: dashboard.php:64 includes/log/widgets/summary.php:8
1293
  msgid "Summary"
@@ -1297,24 +1355,24 @@ msgstr "Zhrnutie"
1297
  #: includes/log/widgets/words.php:11
1298
  #: includes/settings/tabs/wps-overview-display.php:37
1299
  msgid "Latest Search Words"
1300
- msgstr "Posledná hľadaných slov"
1301
 
1302
  #: dashboard.php:66 includes/log/widgets/top.visitors.php:10
1303
  #: includes/settings/tabs/wps-overview-display.php:35
1304
  msgid "Top 10 Visitors Today"
1305
- msgstr ""
1306
 
1307
  #: dashboard.php:97
1308
  msgid "Please reload the dashboard to display the content of this widget."
1309
- msgstr ""
1310
 
1311
  #: dashboard.php:138
1312
  msgid "WP Statistics Overview"
1313
- msgstr ""
1314
 
1315
  #: editor.php:63
1316
  msgid "This post is not yet published."
1317
- msgstr ""
1318
 
1319
  #: includes/functions/geoip-populate.php:24
1320
  msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
@@ -1332,11 +1390,11 @@ msgstr "%s údaje staršie ako %s dní úspešne vymazané."
1332
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1333
  #: includes/functions/purge.php:52 includes/functions/purge.php:85
1334
  msgid "No records found to purge from %s!"
1335
- msgstr "Žiadne záznamy nájdené očistiť od %s!"
1336
 
1337
  #: includes/functions/purge-hits.php:45 includes/functions/purge.php:98
1338
  msgid "Database pruned on"
1339
- msgstr ""
1340
 
1341
  #: includes/functions/purge.php:103
1342
  msgid "Please select a value over 30 days."
@@ -1344,7 +1402,7 @@ msgstr "Vyberte hodnotu viac ako 30 dní."
1344
 
1345
  #: includes/log/all-browsers.php:8
1346
  msgid "Browser Statistics"
1347
- msgstr "Prehliadač štatistiky"
1348
 
1349
  #: includes/log/all-browsers.php:14 includes/log/all-browsers.php:98
1350
  #: includes/log/all-browsers.php:233 includes/log/exclusions.php:72
@@ -1364,8 +1422,8 @@ msgid "Click to toggle"
1364
  msgstr "Kliknutím prepnúť"
1365
 
1366
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1367
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:346
1368
- #: wp-statistics.php:422
1369
  msgid "Browsers"
1370
  msgstr "Prehliadače"
1371
 
@@ -1384,55 +1442,55 @@ msgstr "Prehliadače podľa platformy"
1384
 
1385
  #: includes/log/all-browsers.php:234
1386
  msgid "%s Version"
1387
- msgstr "verzia %s"
1388
 
1389
  #: includes/log/exclusions.php:8
1390
  msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
1391
- msgstr "Pozor: Vylúčenie nie sú v súčasnosti nastavené zaznamenajú, výsledky nižšie nemusia odrážať súčasné štatistiky!"
1392
 
1393
  #: includes/log/exclusions.php:64
1394
  msgid "Exclusions Statistics"
1395
- msgstr "Vylúčenie štatistiky"
1396
 
1397
- #: includes/functions/functions.php:879
1398
  msgid "10 Days"
1399
  msgstr "10 dní"
1400
 
1401
- #: includes/functions/functions.php:879
1402
  msgid "20 Days"
1403
  msgstr "20 dní"
1404
 
1405
- #: includes/functions/functions.php:879
1406
  msgid "30 Days"
1407
  msgstr "30 dní"
1408
 
1409
- #: includes/functions/functions.php:879
1410
  msgid "2 Months"
1411
  msgstr "2 mesiace"
1412
 
1413
- #: includes/functions/functions.php:879
1414
  msgid "3 Months"
1415
  msgstr "3 mesiace"
1416
 
1417
- #: includes/functions/functions.php:879
1418
  msgid "6 Months"
1419
  msgstr "6 mesiacov"
1420
 
1421
- #: includes/functions/functions.php:879
1422
  msgid "9 Months"
1423
  msgstr "9 mesiacov"
1424
 
1425
- #: includes/functions/functions.php:879
1426
  msgid "1 Year"
1427
  msgstr "1 rok"
1428
 
1429
  #: includes/log/exclusions.php:73
1430
  msgid "Exclusions Statistical Chart"
1431
- msgstr "Vylúčenia štatistický graf"
1432
 
1433
  #: includes/log/exclusions.php:95
1434
  msgid "Excluded hits in the last"
1435
- msgstr "Vylúčiť zásahy v posledných"
1436
 
1437
  #: includes/log/exclusions.php:95 includes/log/hit-statistics.php:65
1438
  #: includes/log/search-statistics.php:69 includes/log/widgets/hits.php:61
@@ -1443,15 +1501,15 @@ msgstr "dní"
1443
 
1444
  #: includes/log/exclusions.php:116
1445
  msgid "Number of excluded hits"
1446
- msgstr "Počet vylúčených hity"
1447
 
1448
  #: includes/log/hit-statistics.php:27
1449
  msgid "Hits Statistics Chart"
1450
- msgstr "Hity štatistických údajov graf"
1451
 
1452
  #: includes/log/hit-statistics.php:65 includes/log/widgets/hits.php:61
1453
  msgid "Hits in the last"
1454
- msgstr "Hity v posledných"
1455
 
1456
  #: includes/log/hit-statistics.php:86 includes/log/widgets/hits.php:82
1457
  msgid "Number of visits and visitors"
@@ -1460,49 +1518,49 @@ msgstr "Návštevy a návštevníci"
1460
  #: includes/log/hit-statistics.php:100 includes/log/hit-statistics.php:169
1461
  #: includes/log/widgets/hits.php:96 includes/log/widgets/summary.php:38
1462
  msgid "Visit"
1463
- msgstr "Navštívte"
1464
 
1465
  #: includes/log/hit-statistics.php:100 includes/log/hit-statistics.php:170
1466
  #: includes/log/widgets/hits.php:96 includes/log/widgets/summary.php:37
1467
  msgid "Visitor"
1468
- msgstr "Návštevník"
1469
 
1470
  #: includes/log/last-search.php:65
1471
  msgid "Latest Search Word Statistics"
1472
- msgstr "Najnovšie vyhľadávania slovo štatistiky"
1473
 
1474
- #: includes/log/last-search.php:100 includes/log/last-visitor.php:101
1475
  #: includes/log/online.php:50 includes/log/widgets/google.map.php:84
1476
  #: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
1477
- #: includes/log/widgets/words.php:36
1478
  msgid "#hash#"
1479
- msgstr "#hash #"
1480
 
1481
- #: includes/log/last-search.php:105 includes/log/last-visitor.php:106
1482
  #: includes/log/online.php:55 includes/log/top-referring.php:71
1483
- #: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:43
1484
  #: includes/settings/tabs/wps-overview-display.php:33
1485
  #: includes/settings/tabs/wps-overview-display.php:113
1486
  msgid "Map"
1487
  msgstr "Mapa"
1488
 
1489
- #: includes/log/last-search.php:142 includes/log/last-visitor.php:139
1490
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1491
  #: includes/log/top-referring.php:125
1492
  msgid "Page"
1493
- msgstr "Stránka"
1494
 
1495
- #: includes/log/last-search.php:142 includes/log/last-visitor.php:139
1496
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1497
  #: includes/log/top-referring.php:125
1498
  msgid "From"
1499
- msgstr "Od"
1500
 
1501
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1502
  #: includes/log/top-referring.php:29
1503
  #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
1504
  msgid "All"
1505
- msgstr "Vsetko"
1506
 
1507
  #: includes/log/last-visitor.php:68
1508
  msgid "Recent Visitor Statistics"
@@ -1510,31 +1568,31 @@ msgstr "Nedávne štatistiky návštevnosti"
1510
 
1511
  #: includes/log/online.php:11 includes/log/online.php:18
1512
  msgid "Online Users"
1513
- msgstr ""
1514
 
1515
  #: includes/log/online.php:75
1516
  msgid "Online for "
1517
- msgstr ""
1518
 
1519
  #: includes/log/page-statistics.php:26
1520
  msgid "Page Trend for Post ID"
1521
- msgstr "Stránka Trend Post ID"
1522
 
1523
  #: includes/log/page-statistics.php:35
1524
  msgid "Page Trend"
1525
- msgstr "Stránka Trend"
1526
 
1527
  #: includes/log/search-statistics.php:19 includes/log/search-statistics.php:28
1528
  msgid "Search Engine Referral Statistics"
1529
- msgstr "Hľadať Motor postúpenie štatistiky"
1530
 
1531
  #: includes/log/search-statistics.php:69 includes/log/widgets/search.php:59
1532
  msgid "Search engine referrals in the last"
1533
- msgstr "Vyhľadávače referrals v posledných"
1534
 
1535
  #: includes/log/search-statistics.php:90 includes/log/widgets/search.php:80
1536
  msgid "Number of referrals"
1537
- msgstr "Počet odkazujúcich serverov"
1538
 
1539
  #: includes/log/exclusions.php:24 includes/log/search-statistics.php:104
1540
  #: includes/log/widgets/search.php:94 includes/log/widgets/summary.php:72
@@ -1549,7 +1607,7 @@ msgstr "Top krajiny"
1549
  #: includes/log/top-countries.php:30 includes/log/widgets/countries.php:30
1550
  #: includes/log/widgets/top.visitors.php:30
1551
  msgid "Rank"
1552
- msgstr "Hodnosť"
1553
 
1554
  #: includes/log/top-countries.php:31 includes/log/widgets/countries.php:31
1555
  #: includes/log/widgets/top.visitors.php:32
@@ -1559,7 +1617,7 @@ msgstr "Vlajka"
1559
  #: includes/log/top-countries.php:32 includes/log/widgets/countries.php:32
1560
  #: includes/log/widgets/top.visitors.php:33
1561
  msgid "Country"
1562
- msgstr "Krajiny"
1563
 
1564
  #: includes/log/top-countries.php:33 includes/log/widgets/countries.php:33
1565
  msgid "Visitor Count"
@@ -1567,7 +1625,7 @@ msgstr "Počet návštev"
1567
 
1568
  #: includes/log/top-pages.php:19 includes/log/top-pages.php:149
1569
  msgid "Top Pages"
1570
- msgstr "Začiatok stránky"
1571
 
1572
  #: includes/log/top-pages.php:29
1573
  msgid "Top 5 Pages Trends"
@@ -1579,11 +1637,11 @@ msgstr "Top 5 štatistiky stránka trendy"
1579
 
1580
  #: includes/log/top-pages.php:81 includes/log/widgets/page.php:63
1581
  msgid "Number of Hits"
1582
- msgstr "Počet prístupov"
1583
 
1584
  #: includes/log/top-pages.php:177 includes/log/widgets/pages.php:35
1585
  msgid "No page title found"
1586
- msgstr "Našiel žiadny názov stránky"
1587
 
1588
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1589
  #: includes/optimization/tabs/wps-optimization-historical.php:37
@@ -1606,7 +1664,7 @@ msgstr "Referencie"
1606
 
1607
  #: includes/log/top-visitors.php:12
1608
  msgid "Top 100 Visitors Today"
1609
- msgstr ""
1610
 
1611
  #: includes/log/widgets/about.php:8
1612
  msgid "About WP Statistics Version %s"
@@ -1642,7 +1700,7 @@ msgstr "Ostatné"
1642
 
1643
  #: includes/log/widgets/google.map.php:9 includes/log/widgets/jqv.map.php:9
1644
  msgid "Today Visitors Map"
1645
- msgstr "Dnes návštevníci mapa"
1646
 
1647
  #: includes/log/widgets/referring.php:35
1648
  msgid "Address"
@@ -1650,7 +1708,7 @@ msgstr "Adresa"
1650
 
1651
  #: includes/log/widgets/summary.php:26
1652
  msgid "User(s) Online"
1653
- msgstr "(Ov) Online"
1654
 
1655
  #: includes/log/widgets/summary.php:42 includes/log/widgets/summary.php:94
1656
  msgid "Today"
@@ -1662,7 +1720,7 @@ msgstr "Včera"
1662
 
1663
  #: includes/log/widgets/summary.php:113
1664
  msgid "Daily Total"
1665
- msgstr "Denné spolu"
1666
 
1667
  #: includes/log/widgets/summary.php:132
1668
  msgid "Current Time and Date"
@@ -1670,7 +1728,7 @@ msgstr "Aktuálny čas a dátum"
1670
 
1671
  #: includes/log/widgets/summary.php:132
1672
  msgid "(Adjustment)"
1673
- msgstr "(Úprava)"
1674
 
1675
  #: includes/log/widgets/summary.php:136
1676
  msgid "Date: %s"
@@ -1681,23 +1739,23 @@ msgid "Time: %s"
1681
  msgstr "Čas: %s"
1682
 
1683
  #: includes/log/widgets/top.visitors.php:31
1684
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:273
1685
- #: wp-statistics.php:349 wp-statistics.php:425
1686
  msgid "Hits"
1687
- msgstr "Hity"
1688
 
1689
  #: includes/log/widgets/top.visitors.php:34
1690
  msgid "IP"
1691
- msgstr ""
1692
 
1693
  #: includes/log/widgets/top.visitors.php:36
1694
  msgid "Agent"
1695
- msgstr ""
1696
 
1697
  #: includes/log/widgets/top.visitors.php:38
1698
  #: includes/optimization/tabs/wps-optimization-resources.php:291
1699
  msgid "Version"
1700
- msgstr ""
1701
 
1702
  #: ajax.php:41 ajax.php:71 ajax.php:125 ajax.php:150 ajax.php:180
1703
  #: includes/optimization/wps-optimization.php:6
@@ -1710,7 +1768,7 @@ msgstr "údaje agenta %s úspešne vymazaná."
1710
 
1711
  #: ajax.php:34
1712
  msgid "No agent data found to remove!"
1713
- msgstr ""
1714
 
1715
  #: ajax.php:38 ajax.php:68 ajax.php:116 ajax.php:122
1716
  msgid "Please select the desired items."
@@ -1718,19 +1776,19 @@ msgstr "Vyberte požadované položky."
1718
 
1719
  #: ajax.php:62
1720
  msgid "%s platform data deleted successfully."
1721
- msgstr "údaje platforma %s úspešne vymazaná."
1722
 
1723
  #: ajax.php:65
1724
  msgid "No platform data found to remove!"
1725
- msgstr ""
1726
 
1727
- #: includes/functions/functions.php:967
1728
  msgid "%s table data deleted successfully."
1729
- msgstr "Údajová tabuľka %s úspešne vymazaná."
1730
 
1731
- #: includes/functions/functions.php:971
1732
  msgid "Error, %s not emptied!"
1733
- msgstr "Chyba %s nie vyprázdnení!"
1734
 
1735
  #: includes/optimization/tabs/wps-optimization-database.php:5
1736
  msgid "Database Setup"
@@ -1738,7 +1796,7 @@ msgstr "Nastavenie databázy"
1738
 
1739
  #: includes/optimization/tabs/wps-optimization-database.php:10
1740
  msgid "Re-run Install"
1741
- msgstr "Spustite znova inštaláciu"
1742
 
1743
  #: includes/optimization/tabs/wps-optimization-database.php:14
1744
  msgid "Install Now!"
@@ -1746,17 +1804,17 @@ msgstr "Inštalovať teraz!"
1746
 
1747
  #: includes/optimization/tabs/wps-optimization-database.php:15
1748
  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."
1749
- msgstr "Ak z nejakého dôvodu vaša inštalácia WP Statistics chýba databázových tabuliek alebo iných položiek, jadro, to re-spustiť inštalačný proces."
1750
 
1751
  #: includes/optimization/tabs/wps-optimization-database.php:20
1752
  msgid "Database Index"
1753
- msgstr "Databáza registra"
1754
 
1755
  #: includes/optimization/tabs/wps-optimization-database.php:25
1756
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1757
- #: wp-statistics.php:347 wp-statistics.php:423
1758
  msgid "Countries"
1759
- msgstr "Krajín"
1760
 
1761
  #: includes/optimization/tabs/wps-optimization-database.php:39
1762
  #: includes/optimization/tabs/wps-optimization-database.php:69
@@ -1767,25 +1825,27 @@ msgstr "aktualizovať teraz!"
1767
 
1768
  #: includes/optimization/tabs/wps-optimization-database.php:40
1769
  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."
1770
- msgstr "Staršie inštalácie WP Statistics umožňujú duplicitné záznamy v tabuľke návštevníkov v prípade rohu. Novšie inštaluje chrániť proti tomuto s jedinečný index na tabuľku. Vytvoriť index na staršie inštaluje duplicitné položky musia byť najprv odstránené. Kliknutím \"Update Now\" kontrola vistitors stola, odstráni duplicitné záznamy a pridať do indexu."
1771
 
1772
  #: includes/optimization/tabs/wps-optimization-database.php:41
 
1773
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1774
- msgstr "Táto operácia môže trvať dlhú dobu na inštaluje s veľa riadkov v tabuľke návštevníkov."
1775
 
1776
  #: includes/optimization/tabs/wps-optimization-database.php:46
1777
  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."
1778
- msgstr "Staršie inštalácie WP Statistics umožňujú duplicitné záznamy v tabuľke návštevníkov v prípade rohu. Novšie inštaluje chrániť proti tomuto s jedinečný index na tabuľku."
1779
 
1780
  #: includes/optimization/tabs/wps-optimization-database.php:47
1781
  #: includes/optimization/tabs/wps-optimization-database.php:77
 
1782
  msgid "Congratulations, your installation is already up to date, nothing to do."
1783
- msgstr "Gratulujem, vaša inštalácia je už do dnešného dňa, čo robiť."
1784
 
1785
  #: includes/optimization/tabs/wps-optimization-export.php:8
1786
- #: includes/optimization/wps-optimization.php:183
1787
  msgid "Export"
1788
- msgstr "Vývoz"
1789
 
1790
  #: includes/optimization/tabs/wps-optimization-export.php:13
1791
  msgid "Export from"
@@ -1811,15 +1871,15 @@ msgstr "Export do"
1811
 
1812
  #: includes/optimization/tabs/wps-optimization-export.php:42
1813
  msgid "Select the output file type."
1814
- msgstr "Vyberte typ súboru výstupu."
1815
 
1816
  #: includes/optimization/tabs/wps-optimization-export.php:48
1817
  msgid "Include Header Row"
1818
- msgstr "Zahrnúť hlavičku"
1819
 
1820
  #: includes/optimization/tabs/wps-optimization-export.php:53
1821
  msgid "Include a header row as the first line of the exported file."
1822
- msgstr "Zahrnúť hlavičku ako prvý riadok z exportovaného súboru."
1823
 
1824
  #: includes/optimization/tabs/wps-optimization-export.php:54
1825
  msgid "Start Now!"
@@ -1827,30 +1887,30 @@ msgstr "Začnite teraz!"
1827
 
1828
  #: includes/optimization/tabs/wps-optimization-historical.php:15
1829
  msgid "Historical Values"
1830
- msgstr ""
1831
 
1832
  #: includes/optimization/tabs/wps-optimization-historical.php:20
1833
  msgid "Note: As you have just purged the database you must reload this page for these numbers to be correct."
1834
- msgstr ""
1835
 
1836
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1837
  #: includes/settings/tabs/wps-general.php:138
1838
  #: includes/settings/tabs/wps-general.php:143 shortcode.php:133
1839
- #: wp-statistics.php:356 wp-statistics.php:432
1840
  msgid "Visitors"
1841
  msgstr "Návštevníci"
1842
 
1843
  #: includes/optimization/tabs/wps-optimization-historical.php:31
1844
  msgid "Number of historical number of visitors to the site (current value is %s)."
1845
- msgstr ""
1846
 
1847
  #: includes/optimization/tabs/wps-optimization-historical.php:42
1848
  msgid "Number of historical number of visits to the site (current value is %s)."
1849
- msgstr ""
1850
 
1851
  #: includes/optimization/tabs/wps-optimization-historical.php:48
1852
  msgid "Update now!"
1853
- msgstr ""
1854
 
1855
  #: includes/optimization/tabs/wps-optimization-purging.php:10
1856
  #: includes/optimization/tabs/wps-optimization-purging.php:43
@@ -1858,11 +1918,11 @@ msgstr ""
1858
  #: includes/optimization/tabs/wps-optimization-purging.php:107
1859
  #: includes/optimization/tabs/wps-optimization-purging.php:141
1860
  msgid "Are you sure?"
1861
- msgstr "si si istý?"
1862
 
1863
  #: includes/optimization/tabs/wps-optimization-purging.php:175
1864
  msgid "Data"
1865
- msgstr "Údajov"
1866
 
1867
  #: includes/optimization/tabs/wps-optimization-purging.php:180
1868
  msgid "Empty Table"
@@ -1870,28 +1930,28 @@ msgstr "Prázdna tabuľka"
1870
 
1871
  #: includes/optimization/tabs/wps-optimization-purging.php:193
1872
  msgid "All data table will be lost."
1873
- msgstr "Všetky údaje tabuľky sa stratia."
1874
 
1875
  #: includes/optimization/tabs/wps-optimization-purging.php:194
1876
  msgid "Clear now!"
1877
- msgstr "Jasné, teraz!"
1878
 
1879
  #: includes/optimization/tabs/wps-optimization-purging.php:202
1880
  msgid "Purge records older than"
1881
- msgstr "Vymazať záznamy staršie ako"
1882
 
1883
  #: includes/optimization/tabs/wps-optimization-purging.php:208
1884
  msgid "Deleted user statistics data older than the selected number of days. Minimum value is 30 days."
1885
- msgstr "Odstránené používateľské štatistiky údaje staršie ako je vybraný počet dní. Minimálna hodnota je 30 dní."
1886
 
1887
  #: includes/optimization/tabs/wps-optimization-purging.php:209
1888
  #: includes/optimization/tabs/wps-optimization-purging.php:224
1889
  msgid "Purge now!"
1890
- msgstr "Vymazať teraz!"
1891
 
1892
  #: includes/optimization/tabs/wps-optimization-purging.php:231
1893
  msgid "Delete User Agent Types"
1894
- msgstr "Odstrániť typy používateľov Agent"
1895
 
1896
  #: includes/optimization/tabs/wps-optimization-purging.php:236
1897
  msgid "Delete Agents"
@@ -1899,7 +1959,7 @@ msgstr "Odstráňte agentov"
1899
 
1900
  #: includes/optimization/tabs/wps-optimization-purging.php:251
1901
  msgid "All visitor data will be lost for this agent type."
1902
- msgstr "Všetky návštevník údaje budú stratené pre tento typ agenta."
1903
 
1904
  #: includes/optimization/tabs/wps-optimization-purging.php:252
1905
  #: includes/optimization/tabs/wps-optimization-purging.php:276
@@ -1912,7 +1972,7 @@ msgstr "Odstrániť platformy"
1912
 
1913
  #: includes/optimization/tabs/wps-optimization-purging.php:275
1914
  msgid "All visitor data will be lost for this platform type."
1915
- msgstr "Všetky návštevník údaje budú stratené pre tento typ platformy."
1916
 
1917
  #: includes/optimization/tabs/wps-optimization-resources.php:17
1918
  msgid "Resources"
@@ -1930,11 +1990,11 @@ msgstr "Bajt"
1930
 
1931
  #: includes/optimization/tabs/wps-optimization-resources.php:33
1932
  msgid "Last Overview page memory usage"
1933
- msgstr ""
1934
 
1935
  #: includes/optimization/tabs/wps-optimization-resources.php:38
1936
  msgid "Memory usage in the overview page"
1937
- msgstr ""
1938
 
1939
  #: includes/optimization/tabs/wps-optimization-resources.php:44
1940
  msgid "PHP Memory Limit"
@@ -1942,7 +2002,7 @@ msgstr "PHP Limit pamäte"
1942
 
1943
  #: includes/optimization/tabs/wps-optimization-resources.php:49
1944
  msgid "The memory limit a script is allowed to consume, set in php.ini."
1945
- msgstr "Limit pamäte skript môže spotrebovať, nastavená v php.ini."
1946
 
1947
  #: includes/optimization/tabs/wps-optimization-resources.php:55
1948
  #: includes/optimization/tabs/wps-optimization-resources.php:66
@@ -1993,15 +2053,15 @@ msgstr "Používate verziu PHP."
1993
 
1994
  #: includes/optimization/tabs/wps-optimization-resources.php:147
1995
  msgid "PHP Safe Mode"
1996
- msgstr "PHP núdzovom režime"
1997
 
1998
  #: includes/optimization/tabs/wps-optimization-resources.php:152
1999
  msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
2000
- msgstr "Pôsobí PHP núdzovom režime. GeoIP kód nie je podporovaný v núdzovom režime."
2001
 
2002
  #: includes/optimization/tabs/wps-optimization-resources.php:158
2003
  msgid "jQuery Version"
2004
- msgstr "jQuery verziu"
2005
 
2006
  #: includes/optimization/tabs/wps-optimization-resources.php:163
2007
  msgid "The jQuery version you are running."
@@ -2009,15 +2069,15 @@ msgstr "JQuery verziu používate."
2009
 
2010
  #: includes/optimization/tabs/wps-optimization-resources.php:169
2011
  msgid "cURL Version"
2012
- msgstr "cURL verziu"
2013
 
2014
  #: includes/optimization/tabs/wps-optimization-resources.php:173
2015
  msgid "cURL not installed"
2016
- msgstr "nie nainštalovaný cURL"
2017
 
2018
  #: includes/optimization/tabs/wps-optimization-resources.php:174
2019
  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."
2020
- msgstr "PHP cURL verzia rozšírenia používate. cURL je potrebné pre GeoIP kód, ak nie je nainštalovaný GeoIP bude vypnutá."
2021
 
2022
  #: includes/optimization/tabs/wps-optimization-resources.php:180
2023
  msgid "BC Math"
@@ -2033,7 +2093,7 @@ msgstr "Nie je nainštalovaný"
2033
 
2034
  #: includes/optimization/tabs/wps-optimization-resources.php:185
2035
  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."
2036
- msgstr "Ak je nainštalovaný roz┼í├¡renie PHP BC Math. BC Math už nie je potrebné pre GeoIP kód a je tu uvedený len z historických dôvodov."
2037
 
2038
  #: includes/optimization/tabs/wps-optimization-resources.php:190
2039
  msgid "File Info"
@@ -2041,7 +2101,7 @@ msgstr "Informácie o súbore"
2041
 
2042
  #: includes/optimization/tabs/wps-optimization-resources.php:195
2043
  msgid "GeoIP Database"
2044
- msgstr "GeoIP databázy"
2045
 
2046
  #: includes/optimization/tabs/wps-optimization-resources.php:204
2047
  msgid "Database file does not exist."
@@ -2059,7 +2119,7 @@ msgstr "Veľkosť súboru a dátum GeoIP databázy."
2059
 
2060
  #: includes/optimization/tabs/wps-optimization-resources.php:214
2061
  msgid "browscap.ini File"
2062
- msgstr "browscap.ini súboru"
2063
 
2064
  #: includes/optimization/tabs/wps-optimization-resources.php:223
2065
  msgid "browscap.ini file does not exist."
@@ -2075,7 +2135,7 @@ msgstr "browscap súbor vyrovnávacej pamäte"
2075
 
2076
  #: includes/optimization/tabs/wps-optimization-resources.php:242
2077
  msgid "browscap cache file does not exist."
2078
- msgstr "browscap cache súbor neexistuje."
2079
 
2080
  #: includes/optimization/tabs/wps-optimization-resources.php:246
2081
  msgid "The file size and date of the browscap cache file."
@@ -2083,15 +2143,15 @@ msgstr "Veľkosť súboru a dátum súboru cache browscap."
2083
 
2084
  #: includes/optimization/tabs/wps-optimization-resources.php:251
2085
  msgid "Client Info"
2086
- msgstr "Klient Info"
2087
 
2088
  #: includes/optimization/tabs/wps-optimization-resources.php:256
2089
  msgid "Client IP"
2090
- msgstr "Klienta IP"
2091
 
2092
  #: includes/optimization/tabs/wps-optimization-resources.php:261
2093
  msgid "The client IP address."
2094
- msgstr "Adresu IP klienta."
2095
 
2096
  #: includes/optimization/tabs/wps-optimization-resources.php:267
2097
  msgid "User Agent"
@@ -2103,19 +2163,19 @@ msgstr "Identifikačný reťazec klienta."
2103
 
2104
  #: includes/optimization/tabs/wps-optimization-resources.php:278
2105
  msgid "Browser"
2106
- msgstr ""
2107
 
2108
  #: includes/optimization/tabs/wps-optimization-resources.php:285
2109
  msgid "The detected client browser."
2110
- msgstr ""
2111
 
2112
  #: includes/optimization/tabs/wps-optimization-resources.php:296
2113
  msgid "The detected client browser version."
2114
- msgstr ""
2115
 
2116
  #: includes/optimization/tabs/wps-optimization-resources.php:307
2117
  msgid "The detected client platform."
2118
- msgstr ""
2119
 
2120
  #: includes/optimization/tabs/wps-optimization-updates.php:4
2121
  msgid "This will replace all IP addresses in the database with hash values and cannot be undo, are you sure?"
@@ -2137,11 +2197,11 @@ msgstr "IP adresy"
2137
  #: includes/optimization/tabs/wps-optimization-updates.php:36
2138
  #: includes/settings/tabs/wps-general.php:71
2139
  msgid "Hash IP Addresses"
2140
- msgstr "Haš IP adresy"
2141
 
2142
  #: includes/optimization/tabs/wps-optimization-updates.php:41
2143
  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"
2144
- msgstr "IP adresy v databáze nahradiť hodnoty hash, nebudete schopní obnoviť IP adresy v budúcnosti naplniť umiestnenie informácií neskôr a to môže chvíľu trvať,"
2145
 
2146
  #: includes/optimization/wps-optimization.php:43
2147
  msgid "IP Addresses replaced with hash values."
@@ -2149,27 +2209,27 @@ msgstr "IP adresy nahradené hodnotami hash."
2149
 
2150
  #: includes/optimization/wps-optimization.php:51
2151
  msgid "Install routine complete."
2152
- msgstr "Inštalačný rutinu kompletný."
2153
 
2154
- #: includes/optimization/wps-optimization.php:182
2155
  msgid "Resources/Information"
2156
- msgstr "Zdroje informácií /"
2157
 
2158
- #: includes/optimization/wps-optimization.php:184
2159
  msgid "Purging"
2160
- msgstr "Preplachovací"
2161
 
2162
- #: includes/optimization/wps-optimization.php:185
2163
  msgid "Database"
2164
  msgstr "Databáza"
2165
 
2166
- #: includes/optimization/wps-optimization.php:186
2167
  msgid "Updates"
2168
  msgstr "Aktualizácie"
2169
 
2170
- #: includes/optimization/wps-optimization.php:187
2171
  msgid "Historical"
2172
- msgstr ""
2173
 
2174
  #: includes/settings/tabs/wps-about.php:8
2175
  msgid "WP Statistics V%s"
@@ -2181,7 +2241,7 @@ msgstr "Navštívte nás Online"
2181
 
2182
  #: includes/settings/tabs/wps-about.php:32
2183
  msgid "Come visit our great new %s and keep up to date on the latest news about WP Statistics."
2184
- msgstr "Príďte navštíviť náš skvelý nový %s a aktualizovať na najnovšie správy o WP Statistics."
2185
 
2186
  #: includes/settings/tabs/wps-about.php:32
2187
  msgid "website"
@@ -2197,11 +2257,11 @@ msgstr "Vďaka za inštaláciu WP Statistics, odporúčame vám podať "
2197
 
2198
  #: includes/settings/tabs/wps-about.php:40
2199
  msgid "rating and review"
2200
- msgstr "Hodnotenie a preskúmanie"
2201
 
2202
  #: includes/settings/tabs/wps-about.php:40
2203
  msgid "over at WordPress.org. Your feedback is greatly appreciated!"
2204
- msgstr "viac ako na WordPress.org. Vaša spätná väzba je veľmi ocenil!"
2205
 
2206
  #: includes/settings/tabs/wps-about.php:44
2207
  msgid "Translations"
@@ -2217,7 +2277,7 @@ msgstr "preklad spolupracujúca lokalita"
2217
 
2218
  #: includes/settings/tabs/wps-about.php:48
2219
  msgid "drop us a line"
2220
- msgstr "Napíšte nám na linku"
2221
 
2222
  #: includes/settings/tabs/wps-about.php:52
2223
  msgid "Support"
@@ -2230,7 +2290,7 @@ msgstr "Ľutujeme, máte problém s WP Statistics a sme radi pomohli. Tu je niek
2230
  #: includes/settings/tabs/wps-about.php:60
2231
  #: includes/settings/tabs/wps-about.php:61
2232
  msgid "Have you read the %s?"
2233
- msgstr "Čítal ste %s?"
2234
 
2235
  #: includes/settings/tabs/wps-about.php:60
2236
  msgid "FAQs"
@@ -2242,7 +2302,7 @@ msgstr "manuál"
2242
 
2243
  #: includes/settings/tabs/wps-about.php:62
2244
  msgid "Have you search the %s for a similar issue?"
2245
- msgstr "Máte vyhľadať %s pre podobný problém?"
2246
 
2247
  #: includes/settings/tabs/wps-about.php:62
2248
  msgid "support forum"
@@ -2250,11 +2310,11 @@ msgstr "diskusné fórum"
2250
 
2251
  #: includes/settings/tabs/wps-about.php:63
2252
  msgid "Have you search the Internet for any error messages you are receiving?"
2253
- msgstr "Máte Hľadať na internete pre chybové hlásenia dostávate?"
2254
 
2255
  #: includes/settings/tabs/wps-about.php:64
2256
  msgid "Make sure you have access to your PHP error logs."
2257
- msgstr ""
2258
 
2259
  #: includes/settings/tabs/wps-about.php:67
2260
  msgid "And a few things to double-check:"
@@ -2266,19 +2326,19 @@ msgstr "Ako je váš memory_limit v php.ini?"
2266
 
2267
  #: includes/settings/tabs/wps-about.php:71
2268
  msgid "Have you tried disabling any other plugins you may have installed?"
2269
- msgstr "Skúšali ste vypnúť ostatné pluginy môžete mať nainštalovaný"
2270
 
2271
  #: includes/settings/tabs/wps-about.php:72
2272
  msgid "Have you tried using the default WordPress theme?"
2273
- msgstr " ste vyskúšali pomocou predvolené WordPress tému?"
2274
 
2275
  #: includes/settings/tabs/wps-about.php:73
2276
  msgid "Have you double checked the plugin settings?"
2277
- msgstr "Ste dvojité skontrolovať nastavenia plugin?"
2278
 
2279
  #: includes/settings/tabs/wps-about.php:74
2280
  msgid "Do you have all the required PHP extensions installed?"
2281
- msgstr "Máte všetky potrebné rozšírenie PHP nainštalované?"
2282
 
2283
  #: includes/settings/tabs/wps-about.php:75
2284
  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?"
@@ -2286,23 +2346,23 @@ msgstr "Ste stále nevyplnené alebo neúplné stránky zobrazujú v prehliadač
2286
 
2287
  #: includes/settings/tabs/wps-about.php:76
2288
  msgid "Have you checked your PHP and web server error logs?"
2289
- msgstr "Skontrolovali ste svoje PHP a webové protokoly serveri chyba?"
2290
 
2291
  #: includes/settings/tabs/wps-about.php:79
2292
  msgid "Still not having any luck?"
2293
- msgstr "Ešte s trochou šťastia?"
2294
 
2295
  #: includes/settings/tabs/wps-about.php:79
2296
  msgid "Then please open a new thread on the %s and we'll respond as soon as possible."
2297
- msgstr "Potom prosím otvoriť nové vlákno na %s a budeme odpovedať čo najskôr."
2298
 
2299
  #: includes/settings/tabs/wps-about.php:79
2300
  msgid "WordPress.org support forum"
2301
- msgstr "WordPress.org diskusné fórum"
2302
 
2303
  #: includes/settings/tabs/wps-about.php:83
2304
  msgid "Alternatively %s support is available as well."
2305
- msgstr "Alternatívne podpory %s je k dispozícii aj."
2306
 
2307
  #: includes/settings/tabs/wps-about.php:83
2308
  msgid "Farsi"
@@ -2310,28 +2370,28 @@ msgstr "Perzština"
2310
 
2311
  #: includes/settings/tabs/wps-exclusions.php:21
2312
  msgid "WP Statistics Honey Pot Page"
2313
- msgstr ""
2314
 
2315
  #: includes/settings/tabs/wps-exclusions.php:22
2316
  msgid "This is the honey pot for WP Statistics to use, do not delete."
2317
- msgstr ""
2318
 
2319
  #: includes/settings/tabs/wps-access-level.php:23
2320
- #: includes/settings/wps-settings.php:109
2321
  msgid "Access Levels"
2322
  msgstr "Úrovne prístupu"
2323
 
2324
  #: includes/settings/tabs/wps-access-level.php:52
2325
  msgid "Required user level to view WP Statistics"
2326
- msgstr "Požadované užívateľskej úrovni zobrazenie WP Statistics"
2327
 
2328
  #: includes/settings/tabs/wps-access-level.php:67
2329
  msgid "Required user level to manage WP Statistics"
2330
- msgstr "Požadovanej užívateľskej úrovni spravovať WP Statistics"
2331
 
2332
  #: includes/settings/tabs/wps-access-level.php:75
2333
  msgid "See the %s for details on capability levels."
2334
- msgstr "Pozrite si %s Podrobnosti na úroveň spôsobilostí."
2335
 
2336
  #: includes/settings/tabs/wps-access-level.php:75
2337
  msgid "WordPress Roles and Capabilities page"
@@ -2339,25 +2399,25 @@ msgstr "WordPress funkcie a možnosti stránka"
2339
 
2340
  #: includes/settings/tabs/wps-access-level.php:76
2341
  msgid "Hint: manage_network = Super Admin Network, manage_options = Administrator, edit_others_posts = Editor, publish_posts = Author, edit_posts = Contributor, read = Everyone."
2342
- msgstr "Tip: manage_network = Super Admin siete, manage_options = správca, edit_others_posts = Editor, publish_posts = autor, edit_posts = prispievateľ, čítať = všetci."
2343
 
2344
  #: includes/settings/tabs/wps-access-level.php:77
2345
  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."
2346
- msgstr "Každá z vyššie uvedených casscades práva nahor v predvolenom nastavení WordPress. Tak napríklad výberom publish_posts udeľuje právo autorov, editory, administrátorov a Super administrátorov."
2347
 
2348
  #: includes/settings/tabs/wps-access-level.php:78
2349
  msgid "If you need a more robust solution to delegate access you might want to look at %s in the WordPress plugin directory."
2350
- msgstr "Ak potrebujete viac robustné riešenie prístup delegáta, budete chcieť pozrieť na %s do WordPress plugin adresári."
2351
 
2352
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2353
- #: includes/settings/wps-settings.php:110 wp-statistics.php:348
2354
- #: wp-statistics.php:424
2355
  msgid "Exclusions"
2356
  msgstr "Vylúčenia"
2357
 
2358
  #: includes/settings/tabs/wps-exclusions.php:50
2359
  msgid "Record exclusions"
2360
- msgstr "Záznam vylúčenia"
2361
 
2362
  #: includes/settings/tabs/wps-exclusions.php:52
2363
  #: includes/settings/tabs/wps-exclusions.php:106
@@ -2372,7 +2432,7 @@ msgstr "To bude zaznamenávať všetky vylúčené hity v samostatnej tabuľke d
2372
 
2373
  #: includes/settings/tabs/wps-exclusions.php:58
2374
  msgid "Exclude User Roles"
2375
- msgstr "Vylúčiť roly používateľa"
2376
 
2377
  #: includes/settings/tabs/wps-exclusions.php:74
2378
  #: includes/settings/tabs/wps-exclusions.php:196
@@ -2384,7 +2444,7 @@ msgstr "Vylúčiť"
2384
 
2385
  #: includes/settings/tabs/wps-exclusions.php:75
2386
  msgid "Exclude %s role from data collection."
2387
- msgstr "%S úloha vylúčiť zo zberu údajov."
2388
 
2389
  #: includes/settings/tabs/wps-exclusions.php:81
2390
  msgid "IP/Robot Exclusions"
@@ -2392,11 +2452,11 @@ msgstr "IP/Robot vylúčenia"
2392
 
2393
  #: includes/settings/tabs/wps-exclusions.php:85
2394
  msgid "Robot list"
2395
- msgstr "Robot zoznam"
2396
 
2397
  #: includes/settings/tabs/wps-exclusions.php:98
2398
  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."
2399
- msgstr "Zoznam slov, (jeden na riadok) na zápas proti zistiť roboty. Položky musia mať aspoň 4 znakov alebo sa bude ignorovať."
2400
 
2401
  #: includes/settings/tabs/wps-exclusions.php:99
2402
  msgid "Reset to Default"
@@ -2404,27 +2464,27 @@ msgstr "Obnoviť predvolené"
2404
 
2405
  #: includes/settings/tabs/wps-exclusions.php:104
2406
  msgid "Force robot list update after upgrades"
2407
- msgstr "Aktualizácia zoznamu robot sily po upgrade"
2408
 
2409
  #: includes/settings/tabs/wps-exclusions.php:107
2410
  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."
2411
- msgstr "Platnosť zoznamu robot obnoviť predvolené po aktualizáciu na WP Statistics sa odohráva. Poznámka: Ak je táto možnosť povolená žiadne vlastné roboty ste pridali do zoznamu sa stratia."
2412
 
2413
  #: includes/settings/tabs/wps-exclusions.php:112
2414
  msgid "Robot visit threshold"
2415
- msgstr ""
2416
 
2417
  #: includes/settings/tabs/wps-exclusions.php:115
2418
  msgid "Treat visitors with more than this number of visits per day as robots. 0 = disabled."
2419
- msgstr ""
2420
 
2421
  #: includes/settings/tabs/wps-exclusions.php:120
2422
  msgid "Excluded IP address list"
2423
- msgstr "Zoznam vylúčených adries IP"
2424
 
2425
  #: includes/settings/tabs/wps-exclusions.php:123
2426
  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."
2427
- msgstr "Zoznam IP adresy a podsiete masky (jeden na riadok) vylúčiť z zber štatistiky (192.168.0.0/24 a 192.168.0.0/255.255.255.0 formáty sú akceptované). Ak chcete zadať adresu IP len, použite podsiete hodnotu 32 alebo 255.255.255.255."
2428
 
2429
  #: includes/settings/tabs/wps-exclusions.php:124
2430
  msgid "Add 10.0.0.0"
@@ -2440,59 +2500,59 @@ msgstr "Pridať 192.168.0.0"
2440
 
2441
  #: includes/settings/tabs/wps-exclusions.php:131
2442
  msgid "Use honey pot"
2443
- msgstr ""
2444
 
2445
  #: includes/settings/tabs/wps-exclusions.php:134
2446
  msgid "Use a honey pot page to identify robots."
2447
- msgstr ""
2448
 
2449
  #: includes/settings/tabs/wps-exclusions.php:139
2450
  msgid "Honey pot post id"
2451
- msgstr ""
2452
 
2453
  #: includes/settings/tabs/wps-exclusions.php:142
2454
  msgid "The post id to use for the honeypot page."
2455
- msgstr ""
2456
 
2457
  #: includes/settings/tabs/wps-exclusions.php:143
2458
  msgid "Create a new honey pot page"
2459
- msgstr ""
2460
 
2461
  #: includes/settings/tabs/wps-exclusions.php:156
2462
  msgid "GeoIP Exclusions"
2463
- msgstr ""
2464
 
2465
  #: includes/settings/tabs/wps-exclusions.php:160
2466
  msgid "Excluded countries list"
2467
- msgstr ""
2468
 
2469
  #: includes/settings/tabs/wps-exclusions.php:163
2470
  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."
2471
- msgstr ""
2472
 
2473
  #: includes/settings/tabs/wps-exclusions.php:168
2474
  msgid "Included countries list"
2475
- msgstr ""
2476
 
2477
  #: includes/settings/tabs/wps-exclusions.php:171
2478
  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."
2479
- msgstr ""
2480
 
2481
  #: includes/settings/tabs/wps-exclusions.php:176
2482
  msgid "Host Exclusions"
2483
- msgstr ""
2484
 
2485
  #: includes/settings/tabs/wps-exclusions.php:180
2486
  msgid "Excluded hosts list"
2487
- msgstr ""
2488
 
2489
  #: includes/settings/tabs/wps-exclusions.php:183
2490
  msgid "A list of fully qualified host names (ie. server.example.com, one per line) to exclude from statistics collection."
2491
- msgstr ""
2492
 
2493
  #: includes/settings/tabs/wps-exclusions.php:185
2494
  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."
2495
- msgstr ""
2496
 
2497
  #: includes/settings/tabs/wps-exclusions.php:190
2498
  msgid "Site URL Exclusions"
@@ -2500,11 +2560,11 @@ msgstr "Stránky URL vylúčenia"
2500
 
2501
  #: includes/settings/tabs/wps-exclusions.php:194
2502
  msgid "Excluded login page"
2503
- msgstr "Vylúčené prihlasovaciu stránku"
2504
 
2505
  #: includes/settings/tabs/wps-exclusions.php:197
2506
  msgid "Exclude the login page for registering as a hit."
2507
- msgstr "Vylúčiť prihlasovaciu stránku pre registráciu ako hit."
2508
 
2509
  #: includes/settings/tabs/wps-exclusions.php:201
2510
  msgid "Excluded admin pages"
@@ -2512,26 +2572,31 @@ msgstr "Vylúčené admin stránky"
2512
 
2513
  #: includes/settings/tabs/wps-exclusions.php:204
2514
  msgid "Exclude the admin pages for registering as a hit."
2515
- msgstr "Vylúčiť stránky admin za registráciu ako hit."
2516
 
2517
  #: includes/settings/tabs/wps-exclusions.php:208
2518
  msgid "Excluded RSS feeds"
2519
- msgstr ""
2520
 
2521
  #: includes/settings/tabs/wps-exclusions.php:211
2522
  msgid "Exclude the RSS feeds for registering as a hit."
2523
- msgstr ""
2524
 
2525
- #: includes/settings/tabs/wps-browscap.php:22
2526
  msgid "browscap settings"
2527
  msgstr "browscap nastavenia"
2528
 
2529
- #: includes/settings/tabs/wps-browscap.php:27
2530
  msgid "browscap usage"
2531
  msgstr "browscap použitie"
2532
 
2533
- #: includes/settings/tabs/wps-browscap.php:32
2534
- #: includes/settings/tabs/wps-browscap.php:56
 
 
 
 
 
2535
  #: includes/settings/tabs/wps-general.php:76
2536
  #: includes/settings/tabs/wps-general.php:92
2537
  #: includes/settings/tabs/wps-general.php:116
@@ -2547,9 +2612,6 @@ msgstr "browscap použitie"
2547
  #: includes/settings/tabs/wps-general.php:286
2548
  #: includes/settings/tabs/wps-general.php:325
2549
  #: includes/settings/tabs/wps-general.php:341
2550
- #: includes/settings/tabs/wps-geoip.php:47
2551
- #: includes/settings/tabs/wps-geoip.php:71
2552
- #: includes/settings/tabs/wps-geoip.php:104
2553
  #: includes/settings/tabs/wps-maintenance.php:40
2554
  #: includes/settings/tabs/wps-maintenance.php:64
2555
  #: includes/settings/tabs/wps-notifications.php:69
@@ -2562,37 +2624,39 @@ msgstr "browscap použitie"
2562
  #: includes/settings/tabs/wps-overview-display.php:147
2563
  #: includes/settings/tabs/wps-overview-display.php:159
2564
  msgid "Active"
2565
- msgstr ""
2566
 
2567
- #: includes/settings/tabs/wps-browscap.php:33
2568
  msgid "The browscap database will be downloaded and used to detect robots."
2569
- msgstr "Browscap databázy budú stiahnuté a použité zistiť roboty."
2570
 
2571
- #: includes/settings/tabs/wps-browscap.php:39
2572
  msgid "Update browscap Info"
2573
  msgstr "Aktualizácia browscap Info"
2574
 
2575
- #: includes/settings/tabs/wps-browscap.php:44
2576
  msgid "Download browscap Database"
2577
- msgstr "Stiahnuť browscap databázy"
2578
 
2579
- #: includes/settings/tabs/wps-browscap.php:45
2580
- #: includes/settings/tabs/wps-geoip.php:60
 
2581
  msgid "Save changes on this page to download the update."
2582
- msgstr "Uložiť zmeny na tejto stránke prevezmite aktualizáciu."
2583
 
2584
- #: includes/settings/tabs/wps-browscap.php:51
2585
  msgid "Schedule weekly update of browscap DB"
2586
- msgstr "Týždenná aktualizácia plánu browscap DB"
2587
 
2588
- #: includes/settings/tabs/wps-browscap.php:59
2589
- #: includes/settings/tabs/wps-geoip.php:74
 
2590
  msgid "Next update will be"
2591
  msgstr "Ďalšia aktualizácia bude"
2592
 
2593
- #: includes/settings/tabs/wps-browscap.php:74
2594
  msgid "Download of the browscap database will be scheduled for once a week."
2595
- msgstr "Na stiahnutie databázy browscap bude konať raz za týždeň."
2596
 
2597
  #: includes/settings/tabs/wps-general.php:50
2598
  msgid "This will delete the manual when you save the settings, are you sure?"
@@ -2600,12 +2664,12 @@ msgstr "To odstráni manuálne uložíte nastavenia, sú si istí?"
2600
 
2601
  #: includes/settings/tabs/wps-general.php:77
2602
  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."
2603
- msgstr "Táto funkcia nebude ukladať IP adresy v databáze, ale namiesto toho použiť jedinečné hodnoty hash. \"Store celého užívateľského agenta string\" nastavenie sa vypne, ak je táto možnosť vybratá. Nebudete môcť obnoviť IP adresy v budúcnosti obnoviť informácie o polohe, ak je toto povolené."
2604
 
2605
  #: includes/settings/tabs/wps-general.php:82 shortcode.php:131
2606
  msgid "Users Online"
2607
- msgstr "Užívatelia Online"
2608
 
2609
  #: includes/settings/tabs/wps-general.php:87
2610
  msgid "User online"
2611
- msgstr "Užívateľov online"
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2015-08-03 08:27:49+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: includes/optimization/wps-optimization.php:173
14
+ msgid "Search table conversion complete, %d rows added."
15
+ msgstr "Konverzia vyhľadavacej tabuľky dokončená, pridaných %d riadkov."
16
+
17
+ #: includes/optimization/tabs/wps-optimization-database.php:107
18
+ msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion."
19
+ msgstr "Staršie inštalácie WP Štatistiky ukladajú detaily z vyhľadávania v tabuľke návštevníkov, čo môže spôsobovať výkonostné problémy pri veľkých objemoch dát. Bola preto vytvorená nová tabuľka pre uchovanie týchto informácií lepšie škálovateľným spôsobom."
20
+
21
+ #: includes/optimization/tabs/wps-optimization-database.php:86
22
+ msgid "Search Table"
23
+ msgstr "Vyhľadávacia Tabuľka"
24
+
25
+ #: includes/optimization/tabs/wps-optimization-database.php:91
26
+ msgid "Convert"
27
+ msgstr "Konvertovať"
28
+
29
+ #: includes/optimization/tabs/wps-optimization-database.php:100
30
+ msgid "Convert Now!"
31
+ msgstr "Konvertovať teraz!"
32
+
33
+ #: includes/optimization/tabs/wps-optimization-database.php:101
34
+ msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion, however the old data must first be converted to the new format before it can be used."
35
+ msgstr "Staršie inštalácie WP Štatistiky ukladajú detaily z vyhľadávania v tabuľke návštevníkov, čo môže spôsobovať výkonostné problémy pri veľkých objemoch dát. Bola preto vytvorená nová tabuľka pre uchovanie týchto informácií lepšie škálovateľným spôsobom. Predtým ako staré dáta bude môžné použiť, musia byť najskôr konvertované na nový formát."
36
+
37
+ #: includes/log/exclusions.php:24
38
+ msgid "Referrer Spam"
39
+ msgstr "Referrer Spam"
40
+
41
+ #: includes/settings/tabs/wps-externals.php:277
42
+ msgid "Download of the Piwik Referrer Spam Blacklist database will be scheduled for once a week."
43
+ msgstr "Sťahovanie databázy Piwik Referrer Spam Blacklist bude naplánovaná raz týždenne."
44
+
45
+ #: includes/settings/wps-settings.php:105
46
+ msgid "Externals"
47
+ msgstr "Externé špecifikácie"
48
+
49
+ #: includes/settings/tabs/wps-externals.php:219
50
+ msgid "Piwik Referrer Spam Blacklist settings"
51
+ msgstr "Nastavenia Piwik Referrer Spam Blacklist"
52
+
53
+ #: includes/settings/tabs/wps-externals.php:254
54
+ msgid "Schedule weekly update of Piwik Referrer Spam Blacklist DB"
55
+ msgstr "Naplánovať týždennú aktualizáciu Piwik Referrer Spam Blacklist DB"
56
+
57
+ #: includes/settings/tabs/wps-externals.php:247
58
+ msgid "Download Piwik Referrer Spam Blacklist Database"
59
+ msgstr "Stiahnite si Piwik Referrer Spam Blacklist databázu"
60
+
61
+ #: includes/settings/tabs/wps-externals.php:242
62
+ msgid "Update Piwik Referrer Spam Blacklist Info"
63
+ msgstr "Aktualizácia Piwik Referrer Spam Blacklist informácií"
64
+
65
+ #: includes/settings/tabs/wps-externals.php:236
66
+ msgid "The Piwik Referrer Spam Blacklist database will be downloaded and used to detect referrer spam."
67
+ msgstr "Bude stiahnutá Piwik Referrer Spam Blacklist databáza, ktorá sa používa na určenie spamu odkazovača."
68
+
69
+ #: includes/settings/tabs/wps-externals.php:224
70
+ msgid "Referrer spam blacklist is provided by Piwik, available from %s."
71
+ msgstr "Referrer spam blacklist poskytuje Piwik, dostupný z %s."
72
+
73
+ #: includes/settings/tabs/wps-externals.php:230
74
+ msgid "Piwik Referrer Spam Blacklist usage"
75
+ msgstr "Využitie Piwik Referrer Spam Blacklist "
76
+
77
  #: includes/settings/tabs/wps-exclusions.php:148
78
  msgid "Treat corrupt browser info as a bot"
79
  msgstr ""
80
 
81
  #: includes/log/exclusions.php:24
82
  msgid "404 Pages"
83
+ msgstr "Stránky 404"
84
 
85
  #: includes/log/top-visitors.php:26
86
  msgid "Date"
87
+ msgstr "Dátum"
88
 
89
  #: includes/settings/tabs/wps-exclusions.php:151
90
  msgid "Treat any visitor with corrupt browser info (missing IP address or empty user agent string) as a robot."
92
 
93
  #: includes/settings/tabs/wps-exclusions.php:215
94
  msgid "Excluded 404 pages"
95
+ msgstr "Vylúčené stránky 404"
96
 
97
  #: includes/settings/tabs/wps-exclusions.php:218
98
  msgid "Exclude any URL that returns a \"404 - Not Found\" message."
99
+ msgstr "Vylúčiť ľubovoľnú URL, ktorá vracia - správa \"404 - Not Found\"."
100
 
101
  #: wps-updates.php:29
102
  msgid "Error creating GeoIP database directory, make sure your web server has permissions to create directories in : %s"
103
+ msgstr "Chyba pri vytváraní adresára GeoIP databázy, uistite sa, že váš webový server má oprávnenie na vytvorenie adresárov v : %s"
104
 
105
  #: includes/settings/tabs/wps-general.php:281
106
  msgid "Add page title to empty search words"
107
+ msgstr "Zadajte názov stránky do prázdnych vyhľadávacích slóv"
108
 
109
  #: includes/settings/tabs/wps-general.php:287
110
  msgid "If a search engine is identified as the referrer but it does not include the search query this option will substitute the page title in quotes preceded by \"~:\" as the search query to help identify what the user may have been searching for."
111
+ msgstr "Ak je vyhľadávač identifikovaný ako refferer (označenie pre URI, z kterého bola webová stránka navštívená), ale nezahŕňa vyhľadávací dotaz, táto voľba nahradí názov stránky v úvodzovkách, ktorému predchádza \"~:\", ako vyhľadávací dotaz a tak pomôže určiť čo používateľ hľadal."
112
 
113
  #: includes/settings/tabs/wps-maintenance.php:77
114
  msgid "The number of hits required to delete the visitor. Invalid values will disable the daily maintenance (must be 10 or greater)."
115
+ msgstr "Počet návštev potrebný na to, aby bol odstránený návštevník. Neplatné hodnoty znemožnia dennú údržbu (musí byť 10 alebo vyšší)."
116
 
117
  #: includes/settings/tabs/wps-maintenance.php:71
118
  msgid "Prune visitors with more than"
119
+ msgstr "Odstrániť návštevníkov s viac ako"
120
 
121
  #: includes/settings/tabs/wps-maintenance.php:65
122
  msgid "A WP Cron job will be run daily to prune any users statistics data where the user has more than the defined number of hits in a day (aka they are probably a bot)."
123
+ msgstr "WP Cron úloha bude spúštaná denne na odstránenie akýchkoľvek štatistických dát používateľov, keď má používateľ viac ako definovaný počet zobrazení za deň (oni sú pravdepodobne roboti)."
124
 
125
  #: includes/optimization/tabs/wps-optimization-purging.php:217
126
  msgid "Purge visitors with more than"
127
+ msgstr "Odstrániť návštevníkov s viac ako"
128
 
129
  #: includes/optimization/tabs/wps-optimization-purging.php:222
130
  msgid "hits"
131
+ msgstr "zobrazenia"
132
 
133
  #: includes/optimization/tabs/wps-optimization-purging.php:223
134
  msgid "Deleted user statistics data where the user has more than the defined number of hits in a day. This can be useful to clear up old data when your site has been hit by a bot. This will remove the visitor and their hits to the site, however it will not remove individual page hits as that data is not recorded on a per use basis. Minimum value is 10 hits."
135
+ msgstr "Zmazané používateľské štatistiky, kde má používateľ viac zobrazení za deň ako definovaný počet. Môže byť užitočné vymazať staré dáta, keď boli vaše stránky zobrazované robotom. Tým sa odstráni návštevník a jeho zobrazenia stránok, ale neodstráni to jednotlivé zobrazenia stránok, kedže dáta nie sú zaznamenavané podľa použitia. Minimálna hodnota je 10 zobrazení."
136
 
137
  #: includes/functions/purge-hits.php:28
138
  msgid "No visitors found to purge."
139
+ msgstr "Neboli nájdení žiadni návštevníci na odstránenie."
140
 
141
  #: includes/functions/purge-hits.php:25
142
  msgid "%s records purged successfully."
143
+ msgstr "%s záznamov úspešne uvoľnených."
144
 
145
  #: ajax.php:174 includes/functions/purge-hits.php:32
146
  msgid "Number of hits must be greater than or equal to 10!"
147
+ msgstr "Počet zobrazení musí byť väčší alebo rovný 10!"
148
 
149
  #: shortcode.php:134
150
  msgid "Page Visits"
151
+ msgstr "Návštev stránok"
152
 
153
  #: shortcode.php:137
154
  msgid "Page Count"
155
+ msgstr "Počet stránok"
156
 
157
  #: shortcode.php:138
158
  msgid "Comment Count"
159
+ msgstr "Počet komentárov"
160
 
161
  #: shortcode.php:139
162
  msgid "Spam Count"
163
+ msgstr "Počet Spamu"
164
 
165
  #: shortcode.php:140
166
  msgid "User Count"
167
+ msgstr "Počet používateľov"
168
 
169
  #: shortcode.php:141
170
  msgid "Post Average"
171
+ msgstr "Priemerne príspevkov"
172
 
173
  #: shortcode.php:142
174
  msgid "Comment Average"
175
+ msgstr "Komentárov priemerne"
176
 
177
  #: shortcode.php:143
178
  msgid "User Average"
180
 
181
  #: shortcode.php:151
182
  msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
183
+ msgstr "Časový rámec pre získanie štatistiky, pre tento výpočet bude použitá funkcia strtotime() (http://php.net/manual/en/datetime.formats.php)."
184
 
185
  #: shortcode.php:155
186
  msgid "Search Provider"
187
+ msgstr "Poskytovateľ vyhľadávania"
188
 
189
  #: shortcode.php:158
190
  msgid "The search provider to get statistics on."
191
+ msgstr "Poskytovateľ vyhľadávania pre získanie štatistických údajov."
192
 
193
  #: shortcode.php:162
194
  msgid "Number Format"
195
+ msgstr "Číselný formát"
196
 
197
  #: shortcode.php:165
198
  msgid "The format to display numbers in: i18n, english, none."
199
+ msgstr "Formát zobrazenia čísla v: i18n, angličtina, nič."
200
 
201
  #: shortcode.php:169
202
  msgid "English"
203
+ msgstr "Angličtina"
204
 
205
  #: shortcode.php:170
206
  msgid "International"
207
+ msgstr "Medzinárodný"
208
 
209
  #: includes/log/exclusions.php:191 includes/log/hit-statistics.php:163
210
  msgid "Hits Statistics Summary"
211
+ msgstr "Súhrn štatistík zobrazení"
212
 
213
  #: includes/log/exclusions.php:201 includes/log/hit-statistics.php:174
214
  msgid "Chart Total"
215
+ msgstr "Sumárny graf"
216
 
217
  #: includes/log/exclusions.php:206 includes/log/hit-statistics.php:180
218
  msgid "All Time Total"
219
+ msgstr "Celkovo"
220
 
221
  #: includes/log/log.php:57
222
  msgid "Have you thought about donating to WP Statistics?"
223
+ msgstr "Už ste premýšľali o podpore pre WP Statistics?"
224
 
225
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
226
  msgid "Donate"
227
+ msgstr "Prispejte"
228
 
229
  #: includes/settings/tabs/wps-about.php:24
230
  msgid "Fell like showing us how much you enjoy WP Statistics? Drop by our %s page and show us some love!"
231
+ msgstr "Chcete sa s námi podeliť o to ako sa vám páči WP Statistics? Prejdite na našu stránku %s a ukážte nám trochu lásky!"
232
 
233
  #: includes/settings/tabs/wps-about.php:24
234
  msgid "donation"
235
+ msgstr "dar"
236
 
237
  #: includes/log/log.php:57
238
  msgid "Donate Now!"
239
+ msgstr "Prispejte práve teraz!"
240
 
241
  #: includes/log/log.php:57
242
  msgid "Close"
243
+ msgstr "Zavrieť"
244
 
245
  #: shortcode.php:128
246
  msgid "Select the statistic you wish to display."
247
+ msgstr "Vyberte štatistiku, ktorú chcete zobraziť."
248
 
249
  #: shortcode.php:125
250
  msgid "Statistic"
251
+ msgstr "Štatistický"
252
 
253
  #: shortcode.php:136
254
  msgid "Post Count"
255
+ msgstr "Počet príspevkov"
256
 
257
  #: shortcode.php:148
258
  msgid "Time Frame"
259
+ msgstr "Časový rámec"
260
 
261
+ #: includes/functions/functions.php:981
262
  msgid "to"
263
+ msgstr "do"
264
 
265
+ #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
266
  msgid "Go"
267
+ msgstr "Prejsť"
268
 
269
  #: includes/log/top-pages.php:95
270
  msgid "Rank #5"
271
+ msgstr "Rank #5"
272
 
273
  #: includes/log/top-pages.php:95
274
  msgid "Rank #4"
275
+ msgstr "Rank #4"
276
 
277
  #: includes/log/top-pages.php:95
278
  msgid "Rank #3"
279
+ msgstr "Rank #3"
280
 
281
  #: includes/log/top-pages.php:95
282
  msgid "Rank #1"
283
+ msgstr "Rank #1"
284
 
285
  #: includes/log/top-pages.php:95
286
  msgid "Rank #2"
287
+ msgstr "Rank #2"
288
 
289
  #: includes/optimization/tabs/wps-optimization-database.php:56
290
  msgid "Visits Table"
291
+ msgstr "Tabuľka návštev"
292
 
293
  #: includes/optimization/tabs/wps-optimization-database.php:70
294
  msgid "Older installs of WP Statistics allow for duplicate entries in the visits table in a corner case. Newer installs protect against this with a unique index on the table. To create the index on the older installs duplicate entries must be deleted first. Clicking \"Update Now\" will scan the vistits table, delete duplicate entries and add the index."
295
+ msgstr "Staršie inštalácie WP Statistics umožňujú v hraničnom prípade duplicitné záznamy v tabuľke návštev. Novšie inštalácie zabraňujú tomu použitím jedinečného indexu v tabuľke. Ak chcete vytvoriť index na staršie inštalácie, musíte najkôr duplicitné položky odstrániť. Kliknutím \"Aktualizovať teraz\" sa vykoná kontrola tabuľky návštev, odstránia sa duplicitné záznamy a pridá sa index."
296
 
297
  #: includes/optimization/tabs/wps-optimization-database.php:71
298
  msgid "This operation could take a long time on installs with many rows in the visits table."
299
+ msgstr "Ak je veľa riadkov v tabuľke návštev, táto operácia môže trvať počas inštalácie dlhú dobu."
300
 
301
  #: includes/optimization/tabs/wps-optimization-database.php:76
302
  msgid "Older installs of WP Statistics allow for duplicate entries in the visits table in a corner case. Newer installs protect against this with a unique index on the table."
303
+ msgstr "Staršie inštalácie WP Statistics umožňujú v hraničnom prípade duplicitné záznamy v tabuľke návštev. Novšie inštalácie zabraňujú tomu použitím jedinečného indexu v tabuľke. "
304
 
305
  #: includes/log/last-visitor.php:68
306
  msgid "Filtered by"
307
+ msgstr "Filtrované podľa"
308
 
309
+ #: includes/functions/functions.php:974 includes/functions/functions.php:977
310
  msgid "Range"
311
+ msgstr "Rozsah"
312
 
313
+ #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
314
  msgid "MM/DD/YYYY"
315
+ msgstr "MM/DD/RRRR"
316
 
317
  #: includes/settings/tabs/wps-general.php:342
318
  msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
319
+ msgstr "Nepoužívajte preklady a namiesto toho použite predvolenú Angličtinu pre WP Statistics (vyžaduje dve načítania stránky)"
320
 
321
  #: includes/settings/tabs/wps-general.php:336
322
  msgid "Force English"
323
+ msgstr "Vynútiť Angličtinu"
324
 
325
  #: includes/settings/tabs/wps-general.php:331
326
  msgid "Languages"
327
+ msgstr "Jazyky"
328
 
329
  #: includes/settings/tabs/wps-exclusions.php:227
330
  msgid "Note: this option will NOT handle url parameters (anything after the ?), only to the script name. Entries less than two characters will be ignored."
331
+ msgstr "Poznámka: Táto voľba nebude spracovávať parametre URL (hocičo za ?), len po meno skriptu. Položky s menej ako dvoma znakmi budú ignorované."
332
 
333
  #: includes/settings/tabs/wps-exclusions.php:225
334
  msgid "A list of local urls (ie. /wordpress/about, one per line) to exclude from statistics collection."
335
+ msgstr "Zoznam lokálnych adries URL (napr. /wordpress /about, jedna na riadok), vylúčených zo zberu štatistických údajov."
336
 
337
  #: includes/settings/tabs/wps-exclusions.php:222
338
  msgid "Excluded URLs list"
339
+ msgstr "Zoznam vylúčených URL-adries"
340
 
341
  #: includes/log/exclusions.php:24
342
  msgid "Excluded URL"
343
+ msgstr "Vylúčené URL"
344
 
345
  #: includes/log/widgets/summary.php:66
346
  msgid "Last 365 Days (Year)"
347
+ msgstr "Posledných 365 dní (Rok)"
348
 
349
  #: includes/log/widgets/summary.php:60
350
  msgid "Last 30 Days (Month)"
351
+ msgstr "Posledných 30 dní (Mesiac)"
352
 
353
  #: includes/log/widgets/summary.php:54
354
  msgid "Last 7 Days (Week)"
355
+ msgstr "Posledných 7 dní (Týždeň)"
356
 
357
+ #: includes/functions/functions.php:405
358
  msgid "Yahoo!"
359
+ msgstr "Yahoo!"
360
 
361
+ #: includes/functions/functions.php:406
362
  msgid "Yandex"
363
+ msgstr "Yandex"
364
 
365
+ #: includes/functions/functions.php:402
366
  msgid "clearch.org"
367
+ msgstr "clearch.org"
368
 
369
+ #: includes/functions/functions.php:403
370
  msgid "DuckDuckGo"
371
+ msgstr "DuckDuckGo"
372
 
373
+ #: includes/functions/functions.php:401
374
  msgid "Bing"
375
+ msgstr "Bing"
376
 
377
+ #: includes/functions/functions.php:400
378
  msgid "Baidu"
379
+ msgstr "Baidu"
380
 
381
  #: editor.php:69
382
  msgid "Hits in the last 20 days"
383
+ msgstr "Zobrazenia za posledných 20 dní"
384
 
385
  #: includes/log/exclusions.php:24
386
  msgid "Feeds"
387
+ msgstr "Prísuny (Feeds)"
388
 
389
  #: includes/log/exclusions.php:24
390
  msgid "User Role"
391
+ msgstr "Rola používateľa"
392
 
393
  #: includes/log/exclusions.php:24
394
  msgid "Login Page"
395
+ msgstr "Prihlasovacia stránka"
396
 
397
  #: includes/log/exclusions.php:24
398
  msgid "Admin Page"
399
+ msgstr "Administrátorska stránka"
400
 
401
  #: includes/log/exclusions.php:24
402
  msgid "Self Referral"
403
+ msgstr "Seba odkazujúci"
404
 
405
  #: includes/log/exclusions.php:24
406
  msgid "IP Match"
407
+ msgstr "IP zhoda"
408
 
409
  #: includes/log/exclusions.php:24
410
  msgid "Robot"
411
+ msgstr "Robot"
412
 
413
  #: includes/log/online.php:100
414
  msgid "Currently there are no users online in the site."
415
+ msgstr "Aktuálne nie sú na webe žiadni aktívni používatelia."
416
 
417
  #: includes/log/exclusions.php:24
418
  msgid "Robot Threshold"
419
+ msgstr "Prah pre roboty"
420
 
421
  #: includes/log/exclusions.php:24
422
  msgid "Honey Pot"
423
+ msgstr "Honey Pot"
424
 
425
  #: includes/log/widgets/page.php:8
426
  msgid "Page Trending Stats"
427
+ msgstr "Štatistika trendov stránky"
428
 
429
  #: includes/log/exclusions.php:24
430
  msgid "Hostname"
431
+ msgstr "Meno hostiteľa"
432
 
433
  #: includes/settings/tabs/wps-general.php:93
434
  #: includes/settings/tabs/wps-general.php:133
442
 
443
  #: includes/settings/tabs/wps-general.php:99
444
  msgid "Check for online users every"
445
+ msgstr "Kontrolovať aktívnych používateľov každých"
446
 
447
  #: includes/settings/tabs/wps-general.php:104
448
  msgid "Second"
449
+ msgstr "Sekúnd"
450
 
451
  #: includes/settings/tabs/wps-general.php:105
452
  msgid "Time for the check accurate online user in the site. Now: %s Second"
454
 
455
  #: includes/settings/tabs/wps-general.php:111
456
  msgid "Record all user"
457
+ msgstr "Zaznamenať všetkých používateľov"
458
 
459
  #: includes/settings/tabs/wps-general.php:117
460
  msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
461
+ msgstr "Ignoruje nastavenia pre vylúčenie a zaznamenáva všetkých aktívnych používateľov (vrátane svojich reffererov a robotov). Malo by byť použité iba pri riešení problémov."
462
 
463
  #: includes/settings/tabs/wps-general.php:155
464
  msgid "Store entire user agent string"
465
+ msgstr "Uložiť celý reťazec agenta používateľa"
466
 
467
  #: includes/settings/tabs/wps-general.php:161
468
  msgid "Only enabled for debugging"
469
+ msgstr "Aktivované len pre ladenie"
470
 
471
  #: includes/settings/tabs/wps-general.php:167
472
  msgid "Coefficient per visitor"
473
+ msgstr "Koeficient na návštevníka"
474
 
475
  #: includes/settings/tabs/wps-general.php:172
476
  msgid "For each visit to account for several hits. Currently %s."
477
+ msgstr "Za každú návštevu započítať niekoľko zobrazení. Momentálne %s."
478
 
479
  #: includes/settings/tabs/wps-general.php:177
480
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
481
+ #: wp-statistics.php:431
482
  msgid "Pages"
483
  msgstr "Stránky"
484
 
488
 
489
  #: includes/settings/tabs/wps-general.php:209
490
  msgid "Strip parameters from URI"
491
+ msgstr "Získať parametre z URI"
492
 
493
  #: includes/settings/tabs/wps-general.php:215
494
  msgid "This will remove anything after the ? in a URL."
495
+ msgstr "Týmto sa odstráni v URL všetko nasledujúce po?."
496
 
497
  #: includes/settings/tabs/wps-general.php:223
498
  msgid "Disable hits column in post/pages list"
499
+ msgstr "Zakázať stĺpec zobrazení vo výpise príspevkov/stránok"
500
 
501
  #: includes/settings/tabs/wps-general.php:234
502
  msgid "Miscellaneous"
504
 
505
  #: includes/settings/tabs/wps-general.php:239
506
  msgid "Show stats in menu bar"
507
+ msgstr "Zobraziť štatistiky v menu"
508
 
509
  #: includes/settings/tabs/wps-general.php:244
510
  msgid "No"
512
 
513
  #: includes/settings/tabs/wps-general.php:245
514
  msgid "Yes"
515
+ msgstr "Áno"
516
 
517
  #: includes/settings/tabs/wps-general.php:247
518
  msgid "Show stats in admin menu bar"
519
+ msgstr "Zobraziť štatistiky v administrátorskom menu"
520
 
521
  #: includes/settings/tabs/wps-general.php:253
522
  msgid "Hide admin notices about non active features"
523
+ msgstr "Skryť administrátorské oznámenia o neaktívnych funkciách"
524
 
525
  #: includes/settings/tabs/wps-general.php:259
526
  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."
527
+ msgstr "Ak sú základné funkcie deaktivované, v predvolenom nastavení WP Statistics zobrazuje výstrahu na každej admin stránke, táto voľba vypne zobrazovanie týchto výstrah."
528
 
529
  #: includes/settings/tabs/wps-general.php:265
530
  msgid "Delete the manual"
532
 
533
  #: includes/settings/tabs/wps-general.php:271
534
  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."
535
+ msgstr "V predvolenom nastavení WP Statistics ukladá administrátorsky manuál v plugin adresári (~ 5 meg), ak je táto možnosť povolená, bude teraz manuál zmazaný a aj počas aktualizácii v budúcnosti."
536
 
537
  #: includes/settings/tabs/wps-general.php:276
538
  msgid "Search Engines"
539
+ msgstr "Vyhľadávače"
540
 
541
  #: includes/settings/tabs/wps-general.php:293
542
  msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
543
+ msgstr "Vypnutie všetkých vyhľadávačov nie je povolené, vykonanie tohto spôsobí zmenu vo všetkých aktívnych vyhľadávačoch."
544
 
545
  #: includes/settings/tabs/wps-general.php:308
546
  msgid "disable"
548
 
549
  #: includes/settings/tabs/wps-general.php:309
550
  msgid "Disable %s from data collection and reporting."
551
+ msgstr "Vypnúť %s zo zberu údajov a hlásení."
552
 
553
  #: includes/settings/tabs/wps-general.php:315
554
  msgid "Charts"
560
 
561
  #: includes/settings/tabs/wps-general.php:326
562
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
563
+ msgstr "Pridanie sumárneho riadku na grafy s viacerými hodnotami, ako referencie vyhľadávača"
564
 
565
+ #: includes/settings/tabs/wps-externals.php:32
566
  msgid "GeoIP settings"
567
  msgstr "GeoIP nastavenia"
568
 
569
+ #: includes/settings/tabs/wps-externals.php:37
570
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
571
+ msgstr "IP služby polohy poskytované GeoLite2 Data, vytvoril MaxMind, dostupné z %s."
572
 
573
+ #: includes/settings/tabs/wps-externals.php:47
574
  msgid "GeoIP collection"
575
+ msgstr "Zber údajov GeoIP"
576
 
577
+ #: includes/settings/tabs/wps-externals.php:53
578
  msgid "For get more information and location (country) from visitor, enable this feature."
579
+ msgstr "Pre získanie ďalších informácií a lokácie (krajiny) návštevníka, aktivujte túto funkciu."
580
 
581
+ #: includes/settings/tabs/wps-externals.php:59
582
  msgid "Update GeoIP Info"
583
  msgstr "Aktualizácia GeoIP Info"
584
 
585
+ #: includes/settings/tabs/wps-externals.php:64
586
  msgid "Download GeoIP Database"
587
+ msgstr "Stiahnuť GeoIP databázu"
588
 
589
+ #: includes/settings/tabs/wps-externals.php:71
590
  msgid "Schedule monthly update of GeoIP DB"
591
+ msgstr "Naplánovať mesačnú aktualizáciu GeoIP DB"
592
 
593
+ #: includes/settings/tabs/wps-externals.php:97
594
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
595
+ msgstr "Sťahovanie GeoIP databázy bude naplánované 2 dni po prvom utorku v mesiaci."
596
 
597
+ #: includes/settings/tabs/wps-externals.php:98
598
  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)."
599
+ msgstr "Ak veľkosť lokálneho súboru je menej ako 1k, táto voľba tiež stiahne databázu (čo zvyčajne znamená že pozostatok, pochádzajúci zo zásuvného modulu zostávna na svojom mieste)."
600
 
601
+ #: includes/settings/tabs/wps-externals.php:104
602
  msgid "Populate missing GeoIP after update of GeoIP DB"
603
+ msgstr "Vyplňte chýbajúce GeoIP po aktualizácii GeoIP DB"
604
 
605
+ #: includes/settings/tabs/wps-externals.php:110
606
  msgid "Update any missing GeoIP data after downloading a new database."
607
  msgstr "Aktualizovať chýbajúce údaje, GeoIP po stiahnutí novej databázy."
608
 
609
+ #: includes/settings/tabs/wps-externals.php:116
610
  msgid "Country code for private IP addresses"
611
+ msgstr "Kód krajiny pre súkromné ​​IP adresy"
612
 
613
+ #: includes/settings/tabs/wps-externals.php:121
614
  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."
615
+ msgstr "Štandardný medzinárodný kód krajiny zložený z dvoch písmen (napr. US = Spojené štáty, CA = Kanada, atď.) pre súkromné ​​(nepoužité na smerovanie) IP adresy (napr. 10.0.0.1, 192.158.1.1, 127.0.0.1, atď.). Zadajte \"000\" (tri nuly) na použitie \"Unknown\" (Neznáma) ako kód krajiny."
616
 
617
+ #: includes/settings/tabs/wps-externals.php:132
618
  msgid "GeoIP collection is disabled due to the following reasons:"
619
+ msgstr "Zber údajov GeoIP je zakázaný z nasledujúcich príčin:"
620
 
621
+ #: includes/settings/tabs/wps-externals.php:135
622
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
623
+ msgstr "Zber údajov GeoIP vyžaduje PHP %s alebo vyššie, je preto zakázaný kvôli aktuálne nainštalovanej PHP verzii "
624
 
625
+ #: includes/settings/tabs/wps-externals.php:140
626
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
627
+ msgstr "Zber údajov GeoIP vyžaduje rozšírenie PHP cURL a to nie je zavedené vo vašej verzii PHP!"
628
 
629
+ #: includes/settings/tabs/wps-externals.php:146
630
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
631
+ msgstr "Zber údajov GeoIP vyžaduje BC Math PHP rozšírenie a to nie je zavedené vo vašej verzii PHP!"
632
 
633
+ #: includes/settings/tabs/wps-externals.php:152
634
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
635
+ msgstr "Zistený PHP núdzový režim! Zber GeoIP údajov nie je podporovaný s PHP v núdzovom režime!"
636
 
637
  #: includes/settings/tabs/wps-maintenance.php:20
638
  msgid "This will permanently delete data from the database each day, are you sure you want to enable this option?"
645
  #: includes/settings/tabs/wps-maintenance.php:35
646
  #: includes/settings/tabs/wps-maintenance.php:59
647
  msgid "Run a daily WP Cron job to prune the databases"
648
+ msgstr "Spustiť denné WP úlohu pre výčistenie databáz"
649
 
650
  #: includes/settings/tabs/wps-maintenance.php:41
651
  msgid "A WP Cron job will be run daily to prune any data older than a set number of days."
652
+ msgstr "WP Cron úloha bude spúštaná denne na odstránenie všetkých dát starších ako nastavený počet dní."
653
 
654
  #: includes/settings/tabs/wps-maintenance.php:47
655
  msgid "Prune data older than"
656
+ msgstr "Odstrániť údaje staršie ako"
657
 
658
  #: includes/settings/tabs/wps-maintenance.php:52
659
  msgid "Days"
661
 
662
  #: includes/settings/tabs/wps-maintenance.php:53
663
  msgid "The number of days to keep statistics for. Minimum value is 30 days. Invalid values will disable the daily maintenance."
664
+ msgstr "Počet dní pre uchovanie štatistík. Minimálna hodnota je 30 dní. Neplatné hodnoty znemožnia dennú údržbu."
665
 
666
  #: includes/settings/tabs/wps-notifications.php:44
667
  msgid "Common Report Options"
668
+ msgstr "Všeobecné nastavenia záznamov"
669
 
670
  #: includes/settings/tabs/wps-notifications.php:49
671
  msgid "E-mail addresses"
673
 
674
  #: includes/settings/tabs/wps-notifications.php:54
675
  msgid "A comma separated list of e-mail addresses to send reports to."
676
+ msgstr "Čiarkou oddelený zoznam e-mailových adries pre odoslanie hlásení."
677
 
678
  #: includes/settings/tabs/wps-notifications.php:59
679
  msgid "Update Reports"
680
+ msgstr "Správy o aktualizácii"
681
 
682
  #: includes/log/exclusions.php:24
683
  #: includes/settings/tabs/wps-notifications.php:64
684
  msgid "Browscap"
685
+ msgstr "Browscap"
686
 
687
  #: includes/settings/tabs/wps-notifications.php:70
688
  msgid "Send a report whenever the browscap.ini is updated."
689
+ msgstr "Poslať správu, kedykoľvek je browscap.ini aktualizovaný."
690
 
691
  #: includes/log/exclusions.php:24
692
  #: includes/settings/tabs/wps-notifications.php:76
 
693
  msgid "GeoIP"
694
  msgstr "GeoIP"
695
 
696
  #: includes/settings/tabs/wps-notifications.php:82
697
  msgid "Send a report whenever the GeoIP database is updated."
698
+ msgstr "Poslať správu, kedykoľvek je databáza GeoIP aktualizovaná."
699
 
700
  #: includes/settings/tabs/wps-notifications.php:88
701
  msgid "Pruning"
702
+ msgstr "Odstránenie"
703
 
704
  #: includes/settings/tabs/wps-notifications.php:94
705
  msgid "Send a report whenever the pruning of database is run."
706
+ msgstr "Poslať správu, kedykoľvek sa spustí čistenie databázy."
707
 
708
  #: includes/settings/tabs/wps-notifications.php:100
709
  msgid "Upgrade"
710
+ msgstr "Aktualizácia"
711
 
712
  #: includes/settings/tabs/wps-notifications.php:106
713
  msgid "Send a report whenever the plugin is upgraded."
714
+ msgstr "Poslať správu, kedykoľvek je zásuvný modul aktualizovaný."
715
 
716
  #: includes/settings/tabs/wps-notifications.php:111
717
+ #: includes/settings/tabs/wps-notifications.php:116 schedule.php:221
718
  msgid "Statistical reporting"
719
  msgstr "Štatistické vykazovanie"
720
 
721
  #: includes/settings/tabs/wps-notifications.php:129
722
  msgid "Schedule"
723
+ msgstr "Plánovanie"
724
 
725
  #: includes/settings/tabs/wps-notifications.php:153
726
  msgid "Select how often to receive statistical report."
727
+ msgstr "Vyberte, ako často chcete dostávať štatistický záznam."
728
 
729
  #: includes/settings/tabs/wps-notifications.php:159
730
  msgid "Send reports via"
732
 
733
  #: includes/settings/tabs/wps-notifications.php:165
734
  msgid "Email"
735
+ msgstr "E-mail"
736
 
737
  #: includes/settings/tabs/wps-notifications.php:167
738
  msgid "SMS"
740
 
741
  #: includes/settings/tabs/wps-notifications.php:170
742
  msgid "Select delivery method for statistical report."
743
+ msgstr "Zvoliť spôsob doručenia pre štatistický záznam."
744
 
745
  #: includes/settings/tabs/wps-notifications.php:173
746
  msgid "Note: To send SMS text messages please install the %s plugin."
747
+ msgstr "Poznámka: Pre odosielanie SMS textových správ nainštalujte %s zásuvný modul."
748
 
749
  #: includes/settings/tabs/wps-notifications.php:173
750
  msgid "WordPress SMS"
756
 
757
  #: includes/settings/tabs/wps-notifications.php:185
758
  msgid "Enter the contents of the report."
759
+ msgstr "Zadajte obsah správy."
760
 
761
  #: includes/settings/tabs/wps-notifications.php:187
762
  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:"
763
+ msgstr "Akýkoľvek skrátený kód (shortcode) podporovaný inštaláciou WordPress, zahŕňa všetky skrátené kódy pre WP Statistics (viď. administrátorsky návod pre zoznam dostupných kódov), sú podporované v tele správy. Tu je niekoľko príkladov:"
764
 
765
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
766
+ #: widget.php:245 wp-statistics.php:536
767
  msgid "User Online"
768
+ msgstr "Aktívny Používateľ"
769
 
770
  #: includes/settings/tabs/wps-notifications.php:189 widget.php:52
771
  #: widget.php:251
772
  msgid "Today Visitor"
773
+ msgstr "Dnes Návštevníkov"
774
 
775
  #: includes/settings/tabs/wps-notifications.php:190 widget.php:45
776
  #: widget.php:248
777
  msgid "Today Visit"
778
+ msgstr "Dnes Návštev"
779
 
780
  #: includes/settings/tabs/wps-notifications.php:191 widget.php:66
781
  #: widget.php:257
782
  msgid "Yesterday Visitor"
783
+ msgstr "Včera Návštevníkov"
784
 
785
  #: includes/settings/tabs/wps-notifications.php:192 widget.php:59
786
  msgid "Yesterday Visit"
787
+ msgstr "Včera Návštev"
788
 
789
  #: includes/settings/tabs/wps-notifications.php:193 widget.php:101
790
  #: widget.php:272
806
  msgstr "Súhrnné štatistiky"
807
 
808
  #: includes/settings/tabs/wps-overview-display.php:28
809
+ #: includes/settings/wps-settings.php:108
810
  msgid "About"
811
+ msgstr "O aplikácii"
812
 
813
  #: includes/settings/tabs/wps-overview-display.php:34
814
  msgid "Hits Statistical Chart"
815
+ msgstr "Štatistický graf zobrazení "
816
 
817
  #: includes/settings/tabs/wps-overview-display.php:36
818
  msgid "Search Engine Referrers Statistical Chart"
819
+ msgstr "Štatistický graf odkazovačov (referrers) vyhľadávača"
820
 
821
  #: includes/settings/tabs/wps-overview-display.php:38
822
  msgid "Top Pages Visited"
823
+ msgstr "Top navštívené stránky"
824
 
825
  #: includes/settings/tabs/wps-overview-display.php:73
826
  msgid "Dashboard"
827
+ msgstr "Prehľadový panel"
828
 
829
  #: includes/settings/tabs/wps-overview-display.php:77
830
  #: includes/settings/tabs/wps-overview-display.php:97
831
  #: includes/settings/tabs/wps-overview-display.php:117
832
  msgid "The following items are global to all users."
833
+ msgstr "Nasledujúce položky sú globálne pre všetkých používateľov."
834
 
835
  #: includes/settings/tabs/wps-overview-display.php:82
836
  msgid "Disable dashboard widgets"
837
+ msgstr "Zakázať Widgety prehľadového panelu"
838
 
839
  #: includes/settings/tabs/wps-overview-display.php:88
840
  msgid "Disable the dashboard widgets."
841
+ msgstr "Zakázať widgety prehľadového panelu."
842
 
843
  #: includes/settings/tabs/wps-overview-display.php:93
844
  msgid "Page/Post Editor"
845
+ msgstr "Editor Stránky/Príspevku"
846
 
847
  #: includes/settings/tabs/wps-overview-display.php:102
848
  msgid "Disable post/page editor widget"
849
+ msgstr "Zakázať Widget editora príspevku/stránky"
850
 
851
  #: includes/settings/tabs/wps-overview-display.php:108
852
  msgid "Disable the page/post editor widget."
853
+ msgstr "Zakázať widget editora stránky/príspevku."
854
 
855
  #: includes/settings/tabs/wps-overview-display.php:122
856
  msgid "Map type"
857
  msgstr "Typ mapy"
858
 
859
+ #: includes/functions/functions.php:404
860
  #: includes/settings/tabs/wps-overview-display.php:128
861
  msgid "Google"
862
  msgstr "Google"
867
 
868
  #: includes/settings/tabs/wps-overview-display.php:135
869
  msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
870
+ msgstr "Možnosť \"Google\" bude používať pre zobrazenie posledných návštevníkov služby máp od Google (vyžaduje sa prístup ku Google)."
871
 
872
  #: includes/settings/tabs/wps-overview-display.php:136
873
  msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
874
+ msgstr "Možnosť \"JQVMap\" bude pre zobrazenie posledných návštevníkov používať JQVMap javascript knižnicu mapovania (nevyžaduje žiadne externé služby)."
875
 
876
  #: includes/settings/tabs/wps-overview-display.php:142
877
  msgid "Disable map"
878
+ msgstr "Zakázať mapu"
879
 
880
  #: includes/settings/tabs/wps-overview-display.php:148
881
  msgid "Disable the map display"
883
 
884
  #: includes/settings/tabs/wps-overview-display.php:154
885
  msgid "Get country location from Google"
886
+ msgstr "Získajte lokáciu krajiny z Google"
887
 
888
  #: includes/settings/tabs/wps-overview-display.php:160
889
  msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
890
+ msgstr "Táto funkcia môže spôsobiť pri prezeraní štatistík pokles výkonu a je platná len ak je nastavený typ mapy na \"Google\"."
891
 
892
  #: includes/settings/tabs/wps-overview-display.php:171
893
  msgid "Overview Widgets to Display"
894
+ msgstr "Prehľad Widgetov na zobrazenie"
895
 
896
  #: includes/settings/tabs/wps-overview-display.php:175
897
  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."
898
+ msgstr "Tieto položky sú jedinečné pre každého používateľa. Ak nevyberiete pomôcku \"O aplikácii', automaticky sa zobrazí v poslednej pozícii stĺpca A."
899
 
900
  #: includes/settings/tabs/wps-overview-display.php:180
901
  msgid "Slot"
940
 
941
  #: includes/settings/tabs/wps-overview-display.php:366
942
  msgid "Slot 7"
943
+ msgstr "Slot 7"
944
 
945
  #: includes/settings/tabs/wps-removal.php:15
946
  msgid "WP Statisitcs Removal"
947
+ msgstr "Odstránenie WP Statisitcs"
948
 
949
  #: includes/settings/tabs/wps-removal.php:20
950
  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."
952
 
953
  #: includes/settings/tabs/wps-removal.php:23
954
  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."
955
+ msgstr "Po odoslaní tohto formulára budú počas načítavania stránky zmazané nastavenia, avšak WP Statistics ich bude aj naďalej zobrazovať v ponuke pre správu, až pokiaľ sa neudeje načítanie ďalšej stránky."
956
 
957
  #: includes/settings/tabs/wps-removal.php:29
958
  msgid "Remove data and settings"
959
+ msgstr "Odstrániť dáta a nastavenia"
960
 
961
  #: includes/settings/tabs/wps-removal.php:34
962
  msgid "Remove"
963
+ msgstr "Odstrániť"
964
 
965
  #: includes/settings/tabs/wps-removal.php:35
966
  msgid "Remove data and settings, this action cannot be undone."
967
+ msgstr "Odstrániť dáta a nastavenia, túto operáciu nie je možno vratiť späť."
968
 
969
+ #: includes/settings/wps-settings.php:100
970
  msgid "General"
971
+ msgstr "Všeobecne"
972
 
973
+ #: includes/settings/wps-settings.php:101
974
  msgid "Notifications"
975
+ msgstr "Notifikácie"
976
 
977
+ #: includes/settings/wps-settings.php:102
978
  msgid "Dashboard/Overview"
979
+ msgstr "Prehľadový panel/Prehľad"
 
 
 
 
980
 
981
+ #: includes/settings/wps-settings.php:106
982
  msgid "Maintenance"
983
  msgstr "Údržba"
984
 
985
+ #: includes/settings/wps-settings.php:107
986
  msgid "Removal"
987
+ msgstr "Odstránenie"
988
 
989
  #: includes/settings/tabs/wps-access-level.php:85
 
990
  #: includes/settings/tabs/wps-exclusions.php:234
991
+ #: includes/settings/tabs/wps-externals.php:284
992
  #: includes/settings/tabs/wps-general.php:349
 
993
  #: includes/settings/tabs/wps-maintenance.php:84
994
  #: includes/settings/tabs/wps-notifications.php:201
995
  #: includes/settings/tabs/wps-overview-display.php:388
999
 
1000
  #: schedule.php:10
1001
  msgid "Once Weekly"
1002
+ msgstr "Raz týždenne"
1003
 
1004
  #: schedule.php:17
1005
  msgid "Once Every 2 Weeks"
1009
  msgid "Once Every 4 Weeks"
1010
  msgstr "Raz za 4 týždne"
1011
 
1012
+ #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
1013
  msgid "Statistics"
1014
+ msgstr "Štatistiky"
1015
 
1016
  #: widget.php:15
1017
  msgid "Show site stats in sidebar."
1023
 
1024
  #: widget.php:80 widget.php:263
1025
  msgid "Month Visit"
1026
+ msgstr "Návštevy mesačne"
1027
 
1028
  #: widget.php:87 widget.php:266
1029
  msgid "Years Visit"
1035
 
1036
  #: widget.php:116
1037
  msgid "Search Engine referred"
1038
+ msgstr "Odkazovaný vyhľadávač"
1039
 
1040
  #: widget.php:123 widget.php:298
1041
  msgid "Total Posts"
1043
 
1044
  #: widget.php:130 widget.php:301
1045
  msgid "Total Pages"
1046
+ msgstr "Celkom stránok"
1047
 
1048
  #: widget.php:137 widget.php:304
1049
  msgid "Total Comments"
1055
 
1056
  #: widget.php:151 widget.php:310
1057
  msgid "Total Users"
1058
+ msgstr "Celkom používateľov"
1059
 
1060
  #: widget.php:158 widget.php:313
1061
  msgid "Average Posts"
1062
+ msgstr "Priemer príspevkov"
1063
 
1064
  #: widget.php:165 widget.php:316
1065
  msgid "Average Comments"
1066
+ msgstr "Priemer komentárov"
1067
 
1068
  #: widget.php:172 widget.php:319
1069
  msgid "Average Users"
1071
 
1072
  #: shortcode.php:144 widget.php:179 widget.php:322
1073
  msgid "Last Post Date"
1074
+ msgstr "Dátum posledného príspevku"
1075
 
1076
  #: widget.php:238
1077
  msgid "Name"
1081
  msgid "Items"
1082
  msgstr "Polozky"
1083
 
1084
+ #: widget.php:254 wp-statistics.php:561
1085
  msgid "Yesterday visit"
1086
+ msgstr "Včera návštev"
1087
 
1088
  #: widget.php:278
1089
  msgid "Search Engine Referred"
1090
+ msgstr "Odkazovaný Vyhľadávač "
1091
 
1092
  #: widget.php:281
1093
  msgid "Select type of search engine"
1094
+ msgstr "Vyberte typ vyhladávača"
1095
 
1096
  #: wp-statistics.php:70
1097
  msgid "ERROR: WP Statistics has detected an unsupported version of PHP, WP Statistics will not function without PHP Version "
1098
+ msgstr "Chyba: WP Statistics zistil nepodporovanú verziu PHP, WP Statistics nebude fungovať bez PHP verzie"
1099
 
1100
  #: wp-statistics.php:70
1101
  msgid " or higher!"
1103
 
1104
  #: wp-statistics.php:70
1105
  msgid "Your current PHP version is"
1106
+ msgstr "Vaša aktuálna verzia PHP je"
1107
 
1108
  #: wp-statistics.php:86
1109
  msgid "WP Statistics has been removed, please disable and delete it."
1110
+ msgstr "Aplikácia WP Statistics bola odstránená, prosím, vypnite a zmažte ju."
1111
 
1112
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1113
  #. Plugin Name of the plugin/theme
1114
  #: wp-statistics.php:37
1115
  msgid "WP Statistics"
1116
  msgstr "WP Statistics"
1117
 
1118
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1119
  #. Description of the plugin/theme
1120
  #: wp-statistics.php:38
1121
  msgid "Complete statistics for your WordPress site."
1122
+ msgstr "Kompletné štatistiky pre vaše WordPress stránky."
1123
 
1124
  #: wp-statistics.php:137
1125
  msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
1126
+ msgstr "Sledovanie online používateľov nie je povolené vo WP Statistics, prosím prejdite na %s a povoľte to."
1127
 
1128
  #: wp-statistics.php:137 wp-statistics.php:140 wp-statistics.php:143
1129
  msgid "setting page"
1131
 
1132
  #: wp-statistics.php:140
1133
  msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
1134
+ msgstr "Sledovania zobrazenia nie je povolené vo WP Statistics, prosím prejdite na %s a aktivujte ho."
1135
 
1136
  #: wp-statistics.php:143
1137
  msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
1139
 
1140
  #: wp-statistics.php:146
1141
  msgid "GeoIP collection is not active, please go to %s and enable this feature."
1142
+ msgstr "Zber údajov GeoIP nie je aktívny, prosím prejdite na %s a aktivujte túto funkciu."
1143
 
1144
  #: wp-statistics.php:146
1145
  msgid "Setting page > GeoIP"
1146
  msgstr "Nastavenie stránky > GeoIP"
1147
 
1148
+ #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
1149
  msgid "Settings"
1150
  msgstr "Nastavenia"
1151
 
1152
+ #: wp-statistics.php:265
1153
  msgid "Click here to visit the plugin on WordPress.org"
1154
+ msgstr "Kliknite tu pre návštevu pluginu na WordPress.org"
1155
 
1156
+ #: wp-statistics.php:265
1157
  msgid "Visit WordPress.org page"
1158
  msgstr "Navštívte stránku WordPress.org"
1159
 
1160
+ #: wp-statistics.php:268
1161
  msgid "Click here to rate and review this plugin on WordPress.org"
1162
+ msgstr "Kliknite tu pre ohodnotenie a posúdenie tohto pluginu na WordPress.org"
1163
 
1164
+ #: wp-statistics.php:268
1165
  msgid "Rate this plugin"
1166
+ msgstr "Hodnotiť tento zásuvný modul (plugin)"
1167
 
1168
+ #: wp-statistics.php:312
1169
  msgid "WP Statistics - Hits"
1170
  msgstr "WP Statistics - hity"
1171
 
1172
+ #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
1173
  msgid "Overview"
1174
  msgstr "Prehľad"
1175
 
1176
+ #: wp-statistics.php:354 wp-statistics.php:430
1177
  msgid "Online"
1178
+ msgstr "Online"
1179
 
1180
+ #: wp-statistics.php:356 wp-statistics.php:432
1181
  msgid "Referrers"
1182
+ msgstr "Odkazovače"
1183
 
1184
+ #: shortcode.php:135 wp-statistics.php:357 wp-statistics.php:433
1185
  msgid "Searches"
1186
  msgstr "Vyhľadávanie"
1187
 
1188
+ #: wp-statistics.php:358 wp-statistics.php:434
1189
  msgid "Search Words"
1190
  msgstr "Hľadané slová"
1191
 
1192
+ #: wp-statistics.php:359 wp-statistics.php:435
1193
  msgid "Top Visitors Today"
1194
+ msgstr "Top návštevníci dnes"
1195
 
1196
+ #: wp-statistics.php:364 wp-statistics.php:437
1197
  msgid "Optimization"
1198
  msgstr "Optimalizácia"
1199
 
1200
+ #: wp-statistics.php:370 wp-statistics.php:401
1201
  msgid "Manual"
1202
  msgstr "Manuál"
1203
 
1204
+ #: wp-statistics.php:416
1205
  msgid "Site"
1206
+ msgstr "Stránka"
1207
 
1208
+ #: wp-statistics.php:417
1209
  msgid "Options"
1210
+ msgstr "Možnosti"
1211
 
1212
+ #: wp-statistics.php:543
1213
  msgid "Today visitor"
1214
+ msgstr "Dnes návštevníkov"
1215
 
1216
+ #: wp-statistics.php:549
1217
  msgid "Today visit"
1218
  msgstr "Dnes navštíviť"
1219
 
1220
+ #: wp-statistics.php:555
1221
  msgid "Yesterday visitor"
1222
+ msgstr "Včera návštevníkov"
1223
 
1224
+ #: wp-statistics.php:567
1225
  msgid "View Stats"
1226
  msgstr "Zobrazenie štatistiky"
1227
 
1228
+ #: wp-statistics.php:591
1229
  msgid "Download ODF file"
1230
  msgstr "Stiahnuť ODF súbor"
1231
 
1232
+ #: wp-statistics.php:592
1233
  msgid "Download HTML file"
1234
  msgstr "Stiahnuť súbor vo formáte HTML"
1235
 
1236
+ #: wp-statistics.php:596
1237
  msgid "Manual file not found."
1238
+ msgstr "Súbor manuálu nebol nájdený."
1239
 
1240
+ #: wp-statistics.php:663 wp-statistics.php:770 wp-statistics.php:804
1241
  msgid "You do not have sufficient permissions to access this page."
1242
+ msgstr "Nemáte dostatočné oprávnenia pre prístup k tejto stránke."
1243
 
1244
  #: wp-statistics.php:672
1245
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
1246
+ msgstr "Tabuľky zásuvného modulu neexistujú v databáze! Prosím, znovu spustite %s inštalačnú rutinu %s."
1247
 
1248
+ #: wp-statistics.php:241
1249
  msgid "WP Statistics %s installed on"
1250
+ msgstr "WP Statistics %s inštalovaný na"
1251
 
1252
  #: wps-updates.php:39
1253
  msgid "Error downloading GeoIP database from: %s - %s"
1254
+ msgstr "Chyba pri sťahovaní GeoIP databázy z: %s - %s"
1255
 
1256
  #: wps-updates.php:50
1257
  msgid "Error could not open downloaded GeoIP database for reading: %s"
1258
+ msgstr "Nepodarilo sa otvoriť stiahnutú GeoIP databázu pre čítanie: %s"
1259
 
1260
  #: wps-updates.php:57
1261
  msgid "Error could not open destination GeoIP database for writing %s"
1262
+ msgstr "Nemožno otvoriť cieľovú GeoIP databázu pre zápis %s"
1263
 
1264
  #: wps-updates.php:73
1265
  msgid "GeoIP Database updated successfully!"
1266
+ msgstr "GeoIP databáza aktualizovaná úspešne!"
1267
 
1268
  #: wps-updates.php:98
1269
  msgid "GeoIP update on"
1270
+ msgstr "GeoIP aktualizované na"
1271
 
1272
  #: wps-updates.php:165
1273
  msgid "Error downloading browscap database from: %s - %s"
1274
+ msgstr "Chyba pri sťahovaní browscap databázy z: %s - %s"
1275
 
1276
  #: wps-updates.php:267
1277
  msgid "browscap database updated successfully!"
1279
 
1280
  #: wps-updates.php:277
1281
  msgid "browscap database updated failed! Cache file too large, reverting to previous browscap.ini."
1282
+ msgstr "browscap aktualizácia databázy zlyhala! Súbor vyrovnávacej pamäte (Cache) je príliš veľký, návrat k predchádzajúcemu browscap.ini."
1283
 
1284
  #: wps-updates.php:285
1285
  msgid "browscap database updated failed! New browscap.ini is mis-identifing user agents as crawlers, reverting to previous browscap.ini."
1286
+ msgstr "browscap aktualizácia databázy zlyhala! Nový browscap.ini chybne identifikuje pužívateľských agentov ako skenery, návrat k predchádzajúcemu browscap.ini."
1287
 
1288
  #: wps-updates.php:307
1289
  msgid "browscap already at current version!"
1291
 
1292
  #: wps-updates.php:320
1293
  msgid "Browscap.ini update on"
1294
+ msgstr "Browscap.ini aktualizovaný na"
1295
 
1296
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1297
  #. Plugin URI of the plugin/theme
1298
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1299
  #. Author URI of the plugin/theme
1300
  msgid "http://wp-statistics.com/"
1301
+ msgstr "http://wp-statistics.com/"
1302
 
1303
  #. Author of the plugin/theme
1304
  msgid "Mostafa Soufi & Greg Ross"
1306
 
1307
  #: dashboard.php:55
1308
  msgid "Quick Stats"
1309
+ msgstr "Rýchle štatistiky"
1310
 
1311
  #: dashboard.php:56 includes/log/widgets/browsers.php:58
1312
  msgid "Top 10 Browsers"
1313
+ msgstr "Top 10 prehliadačov"
1314
 
1315
  #: dashboard.php:57 includes/log/widgets/countries.php:11
1316
  #: includes/settings/tabs/wps-overview-display.php:27
1319
 
1320
  #: dashboard.php:58
1321
  msgid "Today's Visitor Map"
1322
+ msgstr "Dnešná mapa návštevníkov"
1323
 
1324
  #: dashboard.php:59 editor.php:46 includes/log/hit-statistics.php:8
1325
  #: includes/log/widgets/hits.php:10
1326
  msgid "Hit Statistics"
1327
+ msgstr "Štatistiky zobrazenia"
1328
 
1329
  #: dashboard.php:60 includes/log/widgets/pages.php:14
1330
  msgid "Top 10 Pages"
1334
  #: includes/log/widgets/recent.php:10
1335
  #: includes/settings/tabs/wps-overview-display.php:39
1336
  msgid "Recent Visitors"
1337
+ msgstr "Nedávni návštevníci"
1338
 
1339
  #: dashboard.php:62 includes/log/top-referring.php:27
1340
  #: includes/log/top-referring.php:42 includes/log/widgets/referring.php:16
1341
  #: includes/settings/tabs/wps-overview-display.php:26
1342
  msgid "Top Referring Sites"
1343
+ msgstr "Top odkazujúce stránky"
1344
 
1345
  #: dashboard.php:63 includes/log/widgets/search.php:10
1346
  #: includes/log/widgets/summary.php:89
1347
  msgid "Search Engine Referrals"
1348
+ msgstr "Odkazovače vyhľadávača"
1349
 
1350
  #: dashboard.php:64 includes/log/widgets/summary.php:8
1351
  msgid "Summary"
1355
  #: includes/log/widgets/words.php:11
1356
  #: includes/settings/tabs/wps-overview-display.php:37
1357
  msgid "Latest Search Words"
1358
+ msgstr "Naposledy hľadané slová"
1359
 
1360
  #: dashboard.php:66 includes/log/widgets/top.visitors.php:10
1361
  #: includes/settings/tabs/wps-overview-display.php:35
1362
  msgid "Top 10 Visitors Today"
1363
+ msgstr "Top 10 Návštevníkov dnes"
1364
 
1365
  #: dashboard.php:97
1366
  msgid "Please reload the dashboard to display the content of this widget."
1367
+ msgstr "Prosím, obnovte informačný panel pre zobrazenie obsahu nástrojov."
1368
 
1369
  #: dashboard.php:138
1370
  msgid "WP Statistics Overview"
1371
+ msgstr "WP Statistics Prehľad"
1372
 
1373
  #: editor.php:63
1374
  msgid "This post is not yet published."
1375
+ msgstr "Tento príspevok ešte nie je uverejnený."
1376
 
1377
  #: includes/functions/geoip-populate.php:24
1378
  msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
1390
  #: includes/functions/purge.php:23 includes/functions/purge.php:41
1391
  #: includes/functions/purge.php:52 includes/functions/purge.php:85
1392
  msgid "No records found to purge from %s!"
1393
+ msgstr "Žiadne záznamy nenájdené na odstránenie z %s!"
1394
 
1395
  #: includes/functions/purge-hits.php:45 includes/functions/purge.php:98
1396
  msgid "Database pruned on"
1397
+ msgstr "Databáza vyčistená"
1398
 
1399
  #: includes/functions/purge.php:103
1400
  msgid "Please select a value over 30 days."
1402
 
1403
  #: includes/log/all-browsers.php:8
1404
  msgid "Browser Statistics"
1405
+ msgstr "Štatistiky prehliadačov"
1406
 
1407
  #: includes/log/all-browsers.php:14 includes/log/all-browsers.php:98
1408
  #: includes/log/all-browsers.php:233 includes/log/exclusions.php:72
1422
  msgstr "Kliknutím prepnúť"
1423
 
1424
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1425
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
1426
+ #: wp-statistics.php:426
1427
  msgid "Browsers"
1428
  msgstr "Prehliadače"
1429
 
1442
 
1443
  #: includes/log/all-browsers.php:234
1444
  msgid "%s Version"
1445
+ msgstr "Verzia %s"
1446
 
1447
  #: includes/log/exclusions.php:8
1448
  msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
1449
+ msgstr "Pozor: Vylúčenia nie sú aktuálne nastavené na zaznamenávanie, výsledky nižšie nemusia odrážať aktuálne štatistiky!"
1450
 
1451
  #: includes/log/exclusions.php:64
1452
  msgid "Exclusions Statistics"
1453
+ msgstr "Štatistiky vylúčení"
1454
 
1455
+ #: includes/functions/functions.php:931
1456
  msgid "10 Days"
1457
  msgstr "10 dní"
1458
 
1459
+ #: includes/functions/functions.php:931
1460
  msgid "20 Days"
1461
  msgstr "20 dní"
1462
 
1463
+ #: includes/functions/functions.php:931
1464
  msgid "30 Days"
1465
  msgstr "30 dní"
1466
 
1467
+ #: includes/functions/functions.php:931
1468
  msgid "2 Months"
1469
  msgstr "2 mesiace"
1470
 
1471
+ #: includes/functions/functions.php:931
1472
  msgid "3 Months"
1473
  msgstr "3 mesiace"
1474
 
1475
+ #: includes/functions/functions.php:931
1476
  msgid "6 Months"
1477
  msgstr "6 mesiacov"
1478
 
1479
+ #: includes/functions/functions.php:931
1480
  msgid "9 Months"
1481
  msgstr "9 mesiacov"
1482
 
1483
+ #: includes/functions/functions.php:931
1484
  msgid "1 Year"
1485
  msgstr "1 rok"
1486
 
1487
  #: includes/log/exclusions.php:73
1488
  msgid "Exclusions Statistical Chart"
1489
+ msgstr "Štatistický graf vylúčení"
1490
 
1491
  #: includes/log/exclusions.php:95
1492
  msgid "Excluded hits in the last"
1493
+ msgstr "Vylúčené zobrazenia naposledy"
1494
 
1495
  #: includes/log/exclusions.php:95 includes/log/hit-statistics.php:65
1496
  #: includes/log/search-statistics.php:69 includes/log/widgets/hits.php:61
1501
 
1502
  #: includes/log/exclusions.php:116
1503
  msgid "Number of excluded hits"
1504
+ msgstr "Počet vylúčených zobrazení"
1505
 
1506
  #: includes/log/hit-statistics.php:27
1507
  msgid "Hits Statistics Chart"
1508
+ msgstr "Graf štatistík zobrazení"
1509
 
1510
  #: includes/log/hit-statistics.php:65 includes/log/widgets/hits.php:61
1511
  msgid "Hits in the last"
1512
+ msgstr "Zobrazenia posledých"
1513
 
1514
  #: includes/log/hit-statistics.php:86 includes/log/widgets/hits.php:82
1515
  msgid "Number of visits and visitors"
1518
  #: includes/log/hit-statistics.php:100 includes/log/hit-statistics.php:169
1519
  #: includes/log/widgets/hits.php:96 includes/log/widgets/summary.php:38
1520
  msgid "Visit"
1521
+ msgstr "Návštev"
1522
 
1523
  #: includes/log/hit-statistics.php:100 includes/log/hit-statistics.php:170
1524
  #: includes/log/widgets/hits.php:96 includes/log/widgets/summary.php:37
1525
  msgid "Visitor"
1526
+ msgstr "Návštevníkov"
1527
 
1528
  #: includes/log/last-search.php:65
1529
  msgid "Latest Search Word Statistics"
1530
+ msgstr "Najnovšie štatistiky vyhľadávania slóv"
1531
 
1532
+ #: includes/log/last-search.php:110 includes/log/last-visitor.php:101
1533
  #: includes/log/online.php:50 includes/log/widgets/google.map.php:84
1534
  #: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
1535
+ #: includes/log/widgets/words.php:46
1536
  msgid "#hash#"
1537
+ msgstr "#hash#"
1538
 
1539
+ #: includes/log/last-search.php:115 includes/log/last-visitor.php:106
1540
  #: includes/log/online.php:55 includes/log/top-referring.php:71
1541
+ #: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
1542
  #: includes/settings/tabs/wps-overview-display.php:33
1543
  #: includes/settings/tabs/wps-overview-display.php:113
1544
  msgid "Map"
1545
  msgstr "Mapa"
1546
 
1547
+ #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1548
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1549
  #: includes/log/top-referring.php:125
1550
  msgid "Page"
1551
+ msgstr "Strana"
1552
 
1553
+ #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1554
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1555
  #: includes/log/top-referring.php:125
1556
  msgid "From"
1557
+ msgstr "z"
1558
 
1559
  #: includes/log/last-search.php:47 includes/log/last-visitor.php:38
1560
  #: includes/log/top-referring.php:29
1561
  #: includes/optimization/tabs/wps-optimization-purging.php:191 widget.php:294
1562
  msgid "All"
1563
+ msgstr "Všetko"
1564
 
1565
  #: includes/log/last-visitor.php:68
1566
  msgid "Recent Visitor Statistics"
1568
 
1569
  #: includes/log/online.php:11 includes/log/online.php:18
1570
  msgid "Online Users"
1571
+ msgstr "Online používatelia"
1572
 
1573
  #: includes/log/online.php:75
1574
  msgid "Online for "
1575
+ msgstr "Online už"
1576
 
1577
  #: includes/log/page-statistics.php:26
1578
  msgid "Page Trend for Post ID"
1579
+ msgstr "Trend stránok pre ID príspevku"
1580
 
1581
  #: includes/log/page-statistics.php:35
1582
  msgid "Page Trend"
1583
+ msgstr "Trend stránok"
1584
 
1585
  #: includes/log/search-statistics.php:19 includes/log/search-statistics.php:28
1586
  msgid "Search Engine Referral Statistics"
1587
+ msgstr "Štatistiky odkazovačov vyhľadávača"
1588
 
1589
  #: includes/log/search-statistics.php:69 includes/log/widgets/search.php:59
1590
  msgid "Search engine referrals in the last"
1591
+ msgstr "Odkazovače vyhľadávača posledných"
1592
 
1593
  #: includes/log/search-statistics.php:90 includes/log/widgets/search.php:80
1594
  msgid "Number of referrals"
1595
+ msgstr "Počet odkazovačov "
1596
 
1597
  #: includes/log/exclusions.php:24 includes/log/search-statistics.php:104
1598
  #: includes/log/widgets/search.php:94 includes/log/widgets/summary.php:72
1607
  #: includes/log/top-countries.php:30 includes/log/widgets/countries.php:30
1608
  #: includes/log/widgets/top.visitors.php:30
1609
  msgid "Rank"
1610
+ msgstr "Hodnotenie"
1611
 
1612
  #: includes/log/top-countries.php:31 includes/log/widgets/countries.php:31
1613
  #: includes/log/widgets/top.visitors.php:32
1617
  #: includes/log/top-countries.php:32 includes/log/widgets/countries.php:32
1618
  #: includes/log/widgets/top.visitors.php:33
1619
  msgid "Country"
1620
+ msgstr "Krajina"
1621
 
1622
  #: includes/log/top-countries.php:33 includes/log/widgets/countries.php:33
1623
  msgid "Visitor Count"
1625
 
1626
  #: includes/log/top-pages.php:19 includes/log/top-pages.php:149
1627
  msgid "Top Pages"
1628
+ msgstr "Top stránky"
1629
 
1630
  #: includes/log/top-pages.php:29
1631
  msgid "Top 5 Pages Trends"
1637
 
1638
  #: includes/log/top-pages.php:81 includes/log/widgets/page.php:63
1639
  msgid "Number of Hits"
1640
+ msgstr "Počet zobrazení"
1641
 
1642
  #: includes/log/top-pages.php:177 includes/log/widgets/pages.php:35
1643
  msgid "No page title found"
1644
+ msgstr "Nenašiel sa názov stránky"
1645
 
1646
  #: includes/log/top-pages.php:180 includes/log/widgets/pages.php:38
1647
  #: includes/optimization/tabs/wps-optimization-historical.php:37
1664
 
1665
  #: includes/log/top-visitors.php:12
1666
  msgid "Top 100 Visitors Today"
1667
+ msgstr "Top 100 Návštevníkov dnes"
1668
 
1669
  #: includes/log/widgets/about.php:8
1670
  msgid "About WP Statistics Version %s"
1700
 
1701
  #: includes/log/widgets/google.map.php:9 includes/log/widgets/jqv.map.php:9
1702
  msgid "Today Visitors Map"
1703
+ msgstr "Dnešná mapa návštevníkov"
1704
 
1705
  #: includes/log/widgets/referring.php:35
1706
  msgid "Address"
1708
 
1709
  #: includes/log/widgets/summary.php:26
1710
  msgid "User(s) Online"
1711
+ msgstr "Používatelia online"
1712
 
1713
  #: includes/log/widgets/summary.php:42 includes/log/widgets/summary.php:94
1714
  msgid "Today"
1720
 
1721
  #: includes/log/widgets/summary.php:113
1722
  msgid "Daily Total"
1723
+ msgstr "Denne spolu"
1724
 
1725
  #: includes/log/widgets/summary.php:132
1726
  msgid "Current Time and Date"
1728
 
1729
  #: includes/log/widgets/summary.php:132
1730
  msgid "(Adjustment)"
1731
+ msgstr "(Prispôsobiť)"
1732
 
1733
  #: includes/log/widgets/summary.php:136
1734
  msgid "Date: %s"
1739
  msgstr "Čas: %s"
1740
 
1741
  #: includes/log/widgets/top.visitors.php:31
1742
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
1743
+ #: wp-statistics.php:353 wp-statistics.php:429
1744
  msgid "Hits"
1745
+ msgstr "Zobrazenia"
1746
 
1747
  #: includes/log/widgets/top.visitors.php:34
1748
  msgid "IP"
1749
+ msgstr "IP"
1750
 
1751
  #: includes/log/widgets/top.visitors.php:36
1752
  msgid "Agent"
1753
+ msgstr "Agent"
1754
 
1755
  #: includes/log/widgets/top.visitors.php:38
1756
  #: includes/optimization/tabs/wps-optimization-resources.php:291
1757
  msgid "Version"
1758
+ msgstr "Verzia"
1759
 
1760
  #: ajax.php:41 ajax.php:71 ajax.php:125 ajax.php:150 ajax.php:180
1761
  #: includes/optimization/wps-optimization.php:6
1768
 
1769
  #: ajax.php:34
1770
  msgid "No agent data found to remove!"
1771
+ msgstr "Neboli nájdené žiadne údaje agentov na odstránenie!"
1772
 
1773
  #: ajax.php:38 ajax.php:68 ajax.php:116 ajax.php:122
1774
  msgid "Please select the desired items."
1776
 
1777
  #: ajax.php:62
1778
  msgid "%s platform data deleted successfully."
1779
+ msgstr "údaje platformy %s úspešne vymazané."
1780
 
1781
  #: ajax.php:65
1782
  msgid "No platform data found to remove!"
1783
+ msgstr "Neboli nájdené žiadne údaje platformy na odstránenie!"
1784
 
1785
+ #: includes/functions/functions.php:1019
1786
  msgid "%s table data deleted successfully."
1787
+ msgstr "%s údaje tabuľky úspešne vymazané."
1788
 
1789
+ #: includes/functions/functions.php:1023
1790
  msgid "Error, %s not emptied!"
1791
+ msgstr "Chyba, %s nie je vyprázdnený!"
1792
 
1793
  #: includes/optimization/tabs/wps-optimization-database.php:5
1794
  msgid "Database Setup"
1796
 
1797
  #: includes/optimization/tabs/wps-optimization-database.php:10
1798
  msgid "Re-run Install"
1799
+ msgstr "Spustiť znovu inštaláciu"
1800
 
1801
  #: includes/optimization/tabs/wps-optimization-database.php:14
1802
  msgid "Install Now!"
1804
 
1805
  #: includes/optimization/tabs/wps-optimization-database.php:15
1806
  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."
1807
+ msgstr "Ak z nejakého dôvodu vašej inštalácii WP Statistics chýbajú databázové tabuľky alebo iné kľúčové časti, toto spustí opätovne inštalačný proces."
1808
 
1809
  #: includes/optimization/tabs/wps-optimization-database.php:20
1810
  msgid "Database Index"
1811
+ msgstr "Index databázy"
1812
 
1813
  #: includes/optimization/tabs/wps-optimization-database.php:25
1814
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1815
+ #: wp-statistics.php:351 wp-statistics.php:427
1816
  msgid "Countries"
1817
+ msgstr "Krajiny"
1818
 
1819
  #: includes/optimization/tabs/wps-optimization-database.php:39
1820
  #: includes/optimization/tabs/wps-optimization-database.php:69
1825
 
1826
  #: includes/optimization/tabs/wps-optimization-database.php:40
1827
  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."
1828
+ msgstr "Staršie inštalácie WP Statistics umožňujú v hraničnom prípade duplicitné záznamy v tabuľke návštevníkov. Novšie inštalácie zabraňujú tomu použitím jedinečného indexu v tabuľke. Ak chcete vytvoriť index na staršie inštalácie, musíte najkôr duplicitné položky odstrániť. Kliknutím \"Aktualizovať teraz\" sa vykoná kontrola tabuľky návštevníkov, odstránia sa duplicitné záznamy a pridá sa index."
1829
 
1830
  #: includes/optimization/tabs/wps-optimization-database.php:41
1831
+ #: includes/optimization/tabs/wps-optimization-database.php:102
1832
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1833
+ msgstr "Ak je veľa riadkov v tabuľke návštevníkov, táto operácia môže trvať počas inštalácie dlhú dobu."
1834
 
1835
  #: includes/optimization/tabs/wps-optimization-database.php:46
1836
  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."
1837
+ msgstr "Staršie inštalácie WP Statistics umožňujú v hraničnom prípade duplicitné záznamy v tabuľke návštevníkov. Novšie inštalácie zabraňujú tomu použitím jedinečného indexu v tabuľke."
1838
 
1839
  #: includes/optimization/tabs/wps-optimization-database.php:47
1840
  #: includes/optimization/tabs/wps-optimization-database.php:77
1841
+ #: includes/optimization/tabs/wps-optimization-database.php:108
1842
  msgid "Congratulations, your installation is already up to date, nothing to do."
1843
+ msgstr "Gratulujeme, vaša inštalácia je už aktuálna, nič nebude vykonané."
1844
 
1845
  #: includes/optimization/tabs/wps-optimization-export.php:8
1846
+ #: includes/optimization/wps-optimization.php:212
1847
  msgid "Export"
1848
+ msgstr "Export"
1849
 
1850
  #: includes/optimization/tabs/wps-optimization-export.php:13
1851
  msgid "Export from"
1871
 
1872
  #: includes/optimization/tabs/wps-optimization-export.php:42
1873
  msgid "Select the output file type."
1874
+ msgstr "Vyberte typ výstupného súboru."
1875
 
1876
  #: includes/optimization/tabs/wps-optimization-export.php:48
1877
  msgid "Include Header Row"
1878
+ msgstr "Zahrnúť riadok hlavičky"
1879
 
1880
  #: includes/optimization/tabs/wps-optimization-export.php:53
1881
  msgid "Include a header row as the first line of the exported file."
1882
+ msgstr "Zahrnúť hlavičku ako prvý riadok exportovaného súboru."
1883
 
1884
  #: includes/optimization/tabs/wps-optimization-export.php:54
1885
  msgid "Start Now!"
1887
 
1888
  #: includes/optimization/tabs/wps-optimization-historical.php:15
1889
  msgid "Historical Values"
1890
+ msgstr "Historické hodnoty"
1891
 
1892
  #: includes/optimization/tabs/wps-optimization-historical.php:20
1893
  msgid "Note: As you have just purged the database you must reload this page for these numbers to be correct."
1894
+ msgstr "Poznámka: Ako ste práve vyčistili databázu, musíte znova načítať túto stránku aby boli tieto čísla správne."
1895
 
1896
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1897
  #: includes/settings/tabs/wps-general.php:138
1898
  #: includes/settings/tabs/wps-general.php:143 shortcode.php:133
1899
+ #: wp-statistics.php:360 wp-statistics.php:436
1900
  msgid "Visitors"
1901
  msgstr "Návštevníci"
1902
 
1903
  #: includes/optimization/tabs/wps-optimization-historical.php:31
1904
  msgid "Number of historical number of visitors to the site (current value is %s)."
1905
+ msgstr "Historický počet návštevníkov stránok (aktuálna hodnota je %s)."
1906
 
1907
  #: includes/optimization/tabs/wps-optimization-historical.php:42
1908
  msgid "Number of historical number of visits to the site (current value is %s)."
1909
+ msgstr "Historický počet návštev stránok (aktuálna hodnota je %s)."
1910
 
1911
  #: includes/optimization/tabs/wps-optimization-historical.php:48
1912
  msgid "Update now!"
1913
+ msgstr "Aktualizovať teraz!"
1914
 
1915
  #: includes/optimization/tabs/wps-optimization-purging.php:10
1916
  #: includes/optimization/tabs/wps-optimization-purging.php:43
1918
  #: includes/optimization/tabs/wps-optimization-purging.php:107
1919
  #: includes/optimization/tabs/wps-optimization-purging.php:141
1920
  msgid "Are you sure?"
1921
+ msgstr "Ste si istý?"
1922
 
1923
  #: includes/optimization/tabs/wps-optimization-purging.php:175
1924
  msgid "Data"
1925
+ msgstr "Údaje"
1926
 
1927
  #: includes/optimization/tabs/wps-optimization-purging.php:180
1928
  msgid "Empty Table"
1930
 
1931
  #: includes/optimization/tabs/wps-optimization-purging.php:193
1932
  msgid "All data table will be lost."
1933
+ msgstr "Celá tabuľka údajov bude stratená."
1934
 
1935
  #: includes/optimization/tabs/wps-optimization-purging.php:194
1936
  msgid "Clear now!"
1937
+ msgstr "Vyčistiť teraz!"
1938
 
1939
  #: includes/optimization/tabs/wps-optimization-purging.php:202
1940
  msgid "Purge records older than"
1941
+ msgstr "Odstrániť záznamy staršie ako"
1942
 
1943
  #: includes/optimization/tabs/wps-optimization-purging.php:208
1944
  msgid "Deleted user statistics data older than the selected number of days. Minimum value is 30 days."
1945
+ msgstr "Odstránené používateľské štatistiky staršie ako je vybraný počet dní. Minimálna hodnota je 30 dní."
1946
 
1947
  #: includes/optimization/tabs/wps-optimization-purging.php:209
1948
  #: includes/optimization/tabs/wps-optimization-purging.php:224
1949
  msgid "Purge now!"
1950
+ msgstr "Odstrániť teraz!"
1951
 
1952
  #: includes/optimization/tabs/wps-optimization-purging.php:231
1953
  msgid "Delete User Agent Types"
1954
+ msgstr "Odstrániť typy používateľských agentov"
1955
 
1956
  #: includes/optimization/tabs/wps-optimization-purging.php:236
1957
  msgid "Delete Agents"
1959
 
1960
  #: includes/optimization/tabs/wps-optimization-purging.php:251
1961
  msgid "All visitor data will be lost for this agent type."
1962
+ msgstr "Všetky údaje návštevníka budú stratené pre tento typ agenta."
1963
 
1964
  #: includes/optimization/tabs/wps-optimization-purging.php:252
1965
  #: includes/optimization/tabs/wps-optimization-purging.php:276
1972
 
1973
  #: includes/optimization/tabs/wps-optimization-purging.php:275
1974
  msgid "All visitor data will be lost for this platform type."
1975
+ msgstr "Všetky údaje návštevníka budú stratené pre tento typ platformy."
1976
 
1977
  #: includes/optimization/tabs/wps-optimization-resources.php:17
1978
  msgid "Resources"
1990
 
1991
  #: includes/optimization/tabs/wps-optimization-resources.php:33
1992
  msgid "Last Overview page memory usage"
1993
+ msgstr "Posledný prehľad využitia pamäte stránky"
1994
 
1995
  #: includes/optimization/tabs/wps-optimization-resources.php:38
1996
  msgid "Memory usage in the overview page"
1997
+ msgstr "Využitie pamäte na prehľadovej stránke"
1998
 
1999
  #: includes/optimization/tabs/wps-optimization-resources.php:44
2000
  msgid "PHP Memory Limit"
2002
 
2003
  #: includes/optimization/tabs/wps-optimization-resources.php:49
2004
  msgid "The memory limit a script is allowed to consume, set in php.ini."
2005
+ msgstr "Limit pamäte, ktorú môže skript spotrebovať, nastavené v php.ini."
2006
 
2007
  #: includes/optimization/tabs/wps-optimization-resources.php:55
2008
  #: includes/optimization/tabs/wps-optimization-resources.php:66
2053
 
2054
  #: includes/optimization/tabs/wps-optimization-resources.php:147
2055
  msgid "PHP Safe Mode"
2056
+ msgstr "PHP núdzový režim"
2057
 
2058
  #: includes/optimization/tabs/wps-optimization-resources.php:152
2059
  msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
2060
+ msgstr "Je PHP núdzový režim (Safe Mode) aktívny? GeoIP kód nie je podporovaný v núdzovom režime."
2061
 
2062
  #: includes/optimization/tabs/wps-optimization-resources.php:158
2063
  msgid "jQuery Version"
2064
+ msgstr "Verzia jQuery"
2065
 
2066
  #: includes/optimization/tabs/wps-optimization-resources.php:163
2067
  msgid "The jQuery version you are running."
2069
 
2070
  #: includes/optimization/tabs/wps-optimization-resources.php:169
2071
  msgid "cURL Version"
2072
+ msgstr "cURL verzia"
2073
 
2074
  #: includes/optimization/tabs/wps-optimization-resources.php:173
2075
  msgid "cURL not installed"
2076
+ msgstr "cURL nie je nainštalovaný"
2077
 
2078
  #: includes/optimization/tabs/wps-optimization-resources.php:174
2079
  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."
2080
+ msgstr "Používaná verzia PHP cURL rozšírenia. cURL je potrebné pre určenie GeoIP kódu, ak nie je nainštalované, funkcia GeoIP bude vypnutá."
2081
 
2082
  #: includes/optimization/tabs/wps-optimization-resources.php:180
2083
  msgid "BC Math"
2093
 
2094
  #: includes/optimization/tabs/wps-optimization-resources.php:185
2095
  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."
2096
+ msgstr "Ak je nainštalované rozšírenie PHP BC Math, BC Math už nie je potrebné pre GeoIP kód a je tu uvedené len z historických dôvodov."
2097
 
2098
  #: includes/optimization/tabs/wps-optimization-resources.php:190
2099
  msgid "File Info"
2101
 
2102
  #: includes/optimization/tabs/wps-optimization-resources.php:195
2103
  msgid "GeoIP Database"
2104
+ msgstr "GeoIP databáza"
2105
 
2106
  #: includes/optimization/tabs/wps-optimization-resources.php:204
2107
  msgid "Database file does not exist."
2119
 
2120
  #: includes/optimization/tabs/wps-optimization-resources.php:214
2121
  msgid "browscap.ini File"
2122
+ msgstr "browscap.ini súbor"
2123
 
2124
  #: includes/optimization/tabs/wps-optimization-resources.php:223
2125
  msgid "browscap.ini file does not exist."
2135
 
2136
  #: includes/optimization/tabs/wps-optimization-resources.php:242
2137
  msgid "browscap cache file does not exist."
2138
+ msgstr "browscap súbor vyrovnávacej pamäte neexistuje."
2139
 
2140
  #: includes/optimization/tabs/wps-optimization-resources.php:246
2141
  msgid "The file size and date of the browscap cache file."
2143
 
2144
  #: includes/optimization/tabs/wps-optimization-resources.php:251
2145
  msgid "Client Info"
2146
+ msgstr "Info o klientovi"
2147
 
2148
  #: includes/optimization/tabs/wps-optimization-resources.php:256
2149
  msgid "Client IP"
2150
+ msgstr "IP klienta"
2151
 
2152
  #: includes/optimization/tabs/wps-optimization-resources.php:261
2153
  msgid "The client IP address."
2154
+ msgstr "Adresa IP klienta."
2155
 
2156
  #: includes/optimization/tabs/wps-optimization-resources.php:267
2157
  msgid "User Agent"
2163
 
2164
  #: includes/optimization/tabs/wps-optimization-resources.php:278
2165
  msgid "Browser"
2166
+ msgstr "Prehliadač"
2167
 
2168
  #: includes/optimization/tabs/wps-optimization-resources.php:285
2169
  msgid "The detected client browser."
2170
+ msgstr "Zistený prehliadač klienta."
2171
 
2172
  #: includes/optimization/tabs/wps-optimization-resources.php:296
2173
  msgid "The detected client browser version."
2174
+ msgstr "Zistená verzia prehliadača klienta."
2175
 
2176
  #: includes/optimization/tabs/wps-optimization-resources.php:307
2177
  msgid "The detected client platform."
2178
+ msgstr "Zistená platforma klienta."
2179
 
2180
  #: includes/optimization/tabs/wps-optimization-updates.php:4
2181
  msgid "This will replace all IP addresses in the database with hash values and cannot be undo, are you sure?"
2197
  #: includes/optimization/tabs/wps-optimization-updates.php:36
2198
  #: includes/settings/tabs/wps-general.php:71
2199
  msgid "Hash IP Addresses"
2200
+ msgstr "Hash IP adries"
2201
 
2202
  #: includes/optimization/tabs/wps-optimization-updates.php:41
2203
  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"
2204
+ msgstr "IP adresy v databáze nahradiť hodnotami hash. Nebudete potom schopní obnoviť IP adresy v budúcnosti a získať lokalizačné informácie. Táto operácia môže chvíľu trvať"
2205
 
2206
  #: includes/optimization/wps-optimization.php:43
2207
  msgid "IP Addresses replaced with hash values."
2209
 
2210
  #: includes/optimization/wps-optimization.php:51
2211
  msgid "Install routine complete."
2212
+ msgstr "Inštalačná rutina kompletná."
2213
 
2214
+ #: includes/optimization/wps-optimization.php:211
2215
  msgid "Resources/Information"
2216
+ msgstr "Zdroje/Informácie"
2217
 
2218
+ #: includes/optimization/wps-optimization.php:213
2219
  msgid "Purging"
2220
+ msgstr "Odstraňujem"
2221
 
2222
+ #: includes/optimization/wps-optimization.php:214
2223
  msgid "Database"
2224
  msgstr "Databáza"
2225
 
2226
+ #: includes/optimization/wps-optimization.php:215
2227
  msgid "Updates"
2228
  msgstr "Aktualizácie"
2229
 
2230
+ #: includes/optimization/wps-optimization.php:216
2231
  msgid "Historical"
2232
+ msgstr "Historický"
2233
 
2234
  #: includes/settings/tabs/wps-about.php:8
2235
  msgid "WP Statistics V%s"
2241
 
2242
  #: includes/settings/tabs/wps-about.php:32
2243
  msgid "Come visit our great new %s and keep up to date on the latest news about WP Statistics."
2244
+ msgstr "Príďte navštíviť náše skvelé nové %s a zostaňte informovaní o najnovších novinkách ohľadom WP Statistics."
2245
 
2246
  #: includes/settings/tabs/wps-about.php:32
2247
  msgid "website"
2257
 
2258
  #: includes/settings/tabs/wps-about.php:40
2259
  msgid "rating and review"
2260
+ msgstr "hodnotenie a recenzia"
2261
 
2262
  #: includes/settings/tabs/wps-about.php:40
2263
  msgid "over at WordPress.org. Your feedback is greatly appreciated!"
2264
+ msgstr "na WordPress.org. Vaša spätná väzba je veľmi cenná!"
2265
 
2266
  #: includes/settings/tabs/wps-about.php:44
2267
  msgid "Translations"
2277
 
2278
  #: includes/settings/tabs/wps-about.php:48
2279
  msgid "drop us a line"
2280
+ msgstr "Napíšte nám"
2281
 
2282
  #: includes/settings/tabs/wps-about.php:52
2283
  msgid "Support"
2290
  #: includes/settings/tabs/wps-about.php:60
2291
  #: includes/settings/tabs/wps-about.php:61
2292
  msgid "Have you read the %s?"
2293
+ msgstr "Čítali ste %s?"
2294
 
2295
  #: includes/settings/tabs/wps-about.php:60
2296
  msgid "FAQs"
2302
 
2303
  #: includes/settings/tabs/wps-about.php:62
2304
  msgid "Have you search the %s for a similar issue?"
2305
+ msgstr "Hľadali ste v %s podobný problém?"
2306
 
2307
  #: includes/settings/tabs/wps-about.php:62
2308
  msgid "support forum"
2310
 
2311
  #: includes/settings/tabs/wps-about.php:63
2312
  msgid "Have you search the Internet for any error messages you are receiving?"
2313
+ msgstr "Hľadali ste na Internete chybové hlásenia, ktoré dostávate?"
2314
 
2315
  #: includes/settings/tabs/wps-about.php:64
2316
  msgid "Make sure you have access to your PHP error logs."
2317
+ msgstr "Uistite sa, že máte prístup k PHP chybovým záznamom."
2318
 
2319
  #: includes/settings/tabs/wps-about.php:67
2320
  msgid "And a few things to double-check:"
2326
 
2327
  #: includes/settings/tabs/wps-about.php:71
2328
  msgid "Have you tried disabling any other plugins you may have installed?"
2329
+ msgstr "Skúšali ste vypnúť nejaké iné zásuvné moduly (pluginy), ktoré máte nainštalované?"
2330
 
2331
  #: includes/settings/tabs/wps-about.php:72
2332
  msgid "Have you tried using the default WordPress theme?"
2333
+ msgstr "Vyskúšali ste s pomocou predvolenej WordPress témy?"
2334
 
2335
  #: includes/settings/tabs/wps-about.php:73
2336
  msgid "Have you double checked the plugin settings?"
2337
+ msgstr "Prekontrolovali ste nastavenia zásuvného modulu (pluginu)?"
2338
 
2339
  #: includes/settings/tabs/wps-about.php:74
2340
  msgid "Do you have all the required PHP extensions installed?"
2341
+ msgstr "Máte všetky potrebné PHP rozšírenia nainštalované?"
2342
 
2343
  #: includes/settings/tabs/wps-about.php:75
2344
  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?"
2346
 
2347
  #: includes/settings/tabs/wps-about.php:76
2348
  msgid "Have you checked your PHP and web server error logs?"
2349
+ msgstr "Skontrolovali ste svoje PHP a chybové hlásenia webového servera?"
2350
 
2351
  #: includes/settings/tabs/wps-about.php:79
2352
  msgid "Still not having any luck?"
2353
+ msgstr "Stále bez trochy šťastia?"
2354
 
2355
  #: includes/settings/tabs/wps-about.php:79
2356
  msgid "Then please open a new thread on the %s and we'll respond as soon as possible."
2357
+ msgstr "Potom prosím otvoriť nové vlákno na %s, budeme odpovedať čo najskôr."
2358
 
2359
  #: includes/settings/tabs/wps-about.php:79
2360
  msgid "WordPress.org support forum"
2361
+ msgstr "WordPress.org fórum podpory"
2362
 
2363
  #: includes/settings/tabs/wps-about.php:83
2364
  msgid "Alternatively %s support is available as well."
2365
+ msgstr "Alternatívne je tu k dispozícii podpora v jazyku %s ."
2366
 
2367
  #: includes/settings/tabs/wps-about.php:83
2368
  msgid "Farsi"
2370
 
2371
  #: includes/settings/tabs/wps-exclusions.php:21
2372
  msgid "WP Statistics Honey Pot Page"
2373
+ msgstr "Stránka WP Statistics Honey Pot "
2374
 
2375
  #: includes/settings/tabs/wps-exclusions.php:22
2376
  msgid "This is the honey pot for WP Statistics to use, do not delete."
2377
+ msgstr "Toto je honey pot používaný WP Statistics, neodstraňujte ho."
2378
 
2379
  #: includes/settings/tabs/wps-access-level.php:23
2380
+ #: includes/settings/wps-settings.php:103
2381
  msgid "Access Levels"
2382
  msgstr "Úrovne prístupu"
2383
 
2384
  #: includes/settings/tabs/wps-access-level.php:52
2385
  msgid "Required user level to view WP Statistics"
2386
+ msgstr "Požadovaná pužívateľská úroveň potrebná pre zobrazenie WP Statistics"
2387
 
2388
  #: includes/settings/tabs/wps-access-level.php:67
2389
  msgid "Required user level to manage WP Statistics"
2390
+ msgstr "Požadovaná pužívateľská úroveň potrebná pre správu WP Statistics"
2391
 
2392
  #: includes/settings/tabs/wps-access-level.php:75
2393
  msgid "See the %s for details on capability levels."
2394
+ msgstr "Pozrite si %s podrobnosti o úrovniach spôsobilosti."
2395
 
2396
  #: includes/settings/tabs/wps-access-level.php:75
2397
  msgid "WordPress Roles and Capabilities page"
2399
 
2400
  #: includes/settings/tabs/wps-access-level.php:76
2401
  msgid "Hint: manage_network = Super Admin Network, manage_options = Administrator, edit_others_posts = Editor, publish_posts = Author, edit_posts = Contributor, read = Everyone."
2402
+ msgstr "Tip: manage_network = Superadministrátor siete, manage_options = Administrátor, edit_others_posts = Editor, publish_posts = Autor, edit_posts = Prispievateľ, read = všetci."
2403
 
2404
  #: includes/settings/tabs/wps-access-level.php:77
2405
  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."
2406
+ msgstr "Každé z vyššie uvedených mení v predvolenom nastavení WordPress kaskádne práva smerom nahor. Tak napríklad výberom publish_posts udeľujete právo autorom, editorom, administrátorom a super administrátorom."
2407
 
2408
  #: includes/settings/tabs/wps-access-level.php:78
2409
  msgid "If you need a more robust solution to delegate access you might want to look at %s in the WordPress plugin directory."
2410
+ msgstr "Ak potrebujete viacej robustné riešenie na delegovanie prístupu, asi sa budete chcieť pozrieť na %s v adresári WordPress zasúvného modulu."
2411
 
2412
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2413
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:352
2414
+ #: wp-statistics.php:428
2415
  msgid "Exclusions"
2416
  msgstr "Vylúčenia"
2417
 
2418
  #: includes/settings/tabs/wps-exclusions.php:50
2419
  msgid "Record exclusions"
2420
+ msgstr "Vylúčenie záznamov"
2421
 
2422
  #: includes/settings/tabs/wps-exclusions.php:52
2423
  #: includes/settings/tabs/wps-exclusions.php:106
2432
 
2433
  #: includes/settings/tabs/wps-exclusions.php:58
2434
  msgid "Exclude User Roles"
2435
+ msgstr "Vylúčiť používateľské role"
2436
 
2437
  #: includes/settings/tabs/wps-exclusions.php:74
2438
  #: includes/settings/tabs/wps-exclusions.php:196
2444
 
2445
  #: includes/settings/tabs/wps-exclusions.php:75
2446
  msgid "Exclude %s role from data collection."
2447
+ msgstr "Vylúčiť %s rolu zo zberu údajov."
2448
 
2449
  #: includes/settings/tabs/wps-exclusions.php:81
2450
  msgid "IP/Robot Exclusions"
2452
 
2453
  #: includes/settings/tabs/wps-exclusions.php:85
2454
  msgid "Robot list"
2455
+ msgstr "Zoznam robotov"
2456
 
2457
  #: includes/settings/tabs/wps-exclusions.php:98
2458
  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."
2459
+ msgstr "Zoznam slov (jedno na riadok) pre porovnanie na detekciu robotov. Položky musia mať aspoň 4 znaky alebo sa budú ignorovať."
2460
 
2461
  #: includes/settings/tabs/wps-exclusions.php:99
2462
  msgid "Reset to Default"
2464
 
2465
  #: includes/settings/tabs/wps-exclusions.php:104
2466
  msgid "Force robot list update after upgrades"
2467
+ msgstr "Po aktualizáciach vynútiť aj aktualizáciu zoznamu robotov"
2468
 
2469
  #: includes/settings/tabs/wps-exclusions.php:107
2470
  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."
2471
+ msgstr "Po aktualizácii WP Statistics vynútiť obnovenie zoznamu robotov na prednastavenú hodnotu. Poznámka: Ak je táto vlastnosť povolená, vami pridané roboty do zoznamu sa stratia."
2472
 
2473
  #: includes/settings/tabs/wps-exclusions.php:112
2474
  msgid "Robot visit threshold"
2475
+ msgstr "Prah pre návštevy robotov"
2476
 
2477
  #: includes/settings/tabs/wps-exclusions.php:115
2478
  msgid "Treat visitors with more than this number of visits per day as robots. 0 = disabled."
2479
+ msgstr "Rozlišuj návštevníkov s počet návštev za deň viac ako toto číslo ako robotov. 0 = vypnuté."
2480
 
2481
  #: includes/settings/tabs/wps-exclusions.php:120
2482
  msgid "Excluded IP address list"
2483
+ msgstr "Zoznam vylúčených IP adries "
2484
 
2485
  #: includes/settings/tabs/wps-exclusions.php:123
2486
  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."
2487
+ msgstr "Zoznam IP adries a ich maska podsiete (jedna na riadok) vylúčených zo zberu štatistických údajov (192.168.0.0/24 a 192.168.0.0/255.255.255.0 formáty sú akceptované). Ak chcete špecifikovať len IP adresu, použite hodnotu podsiete 32 alebo 255.255.255.255."
2488
 
2489
  #: includes/settings/tabs/wps-exclusions.php:124
2490
  msgid "Add 10.0.0.0"
2500
 
2501
  #: includes/settings/tabs/wps-exclusions.php:131
2502
  msgid "Use honey pot"
2503
+ msgstr "Použiť Honey Pot"
2504
 
2505
  #: includes/settings/tabs/wps-exclusions.php:134
2506
  msgid "Use a honey pot page to identify robots."
2507
+ msgstr "Použite stránku Honey Pot na identifikáciu robotov."
2508
 
2509
  #: includes/settings/tabs/wps-exclusions.php:139
2510
  msgid "Honey pot post id"
2511
+ msgstr "Id Honey pot príspevku"
2512
 
2513
  #: includes/settings/tabs/wps-exclusions.php:142
2514
  msgid "The post id to use for the honeypot page."
2515
+ msgstr "Id príspevku použité pre stránku Honeypot."
2516
 
2517
  #: includes/settings/tabs/wps-exclusions.php:143
2518
  msgid "Create a new honey pot page"
2519
+ msgstr "Vytvorenie novej Honey Pot stránky"
2520
 
2521
  #: includes/settings/tabs/wps-exclusions.php:156
2522
  msgid "GeoIP Exclusions"
2523
+ msgstr "GeoIP Vylúčenia"
2524
 
2525
  #: includes/settings/tabs/wps-exclusions.php:160
2526
  msgid "Excluded countries list"
2527
+ msgstr "Zoznam vylúčených krajín"
2528
 
2529
  #: includes/settings/tabs/wps-exclusions.php:163
2530
  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."
2531
+ msgstr "Zoznam kódov krajín (jeden na riadok, dve písmená) vylúčených zo zberu štatistických údajov. Pomocou &quot;000&quot; (tri nuly) vylúčite neznáme krajiny."
2532
 
2533
  #: includes/settings/tabs/wps-exclusions.php:168
2534
  msgid "Included countries list"
2535
+ msgstr "Zahrnuté zoznamy krajín"
2536
 
2537
  #: includes/settings/tabs/wps-exclusions.php:171
2538
  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."
2539
+ msgstr "Zoznam kódov krajín (jeden na riadok, dve písmená) zahrnutých do zberu štatistických údajov, ak nie je tento zoznam prázdny, budú zaznamenaní iba návštevníci zo zoznamu krajín. Pomocou &quot;000&quot; (tri nuly) vylúčite neznáme krajiny."
2540
 
2541
  #: includes/settings/tabs/wps-exclusions.php:176
2542
  msgid "Host Exclusions"
2543
+ msgstr "Hostiteľské vylúčenia"
2544
 
2545
  #: includes/settings/tabs/wps-exclusions.php:180
2546
  msgid "Excluded hosts list"
2547
+ msgstr "Vylúčený zoznam hostiteľov"
2548
 
2549
  #: includes/settings/tabs/wps-exclusions.php:183
2550
  msgid "A list of fully qualified host names (ie. server.example.com, one per line) to exclude from statistics collection."
2551
+ msgstr "Zoznam plne kvalifikovaných názvov hostiteľov (to je. server.example.com, jeden na riadok) vylúčených zo zberu štatistických údajov."
2552
 
2553
  #: includes/settings/tabs/wps-exclusions.php:185
2554
  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."
2555
+ msgstr "Poznámka: Táto voľba nebude vykonávať spätné DNS vyhľadávanie pri každom načítaní stránky, ale namiesto toho si pre poskytnuté mená hostiteľov ukladá do pamäte IP adresy po dobu jednej hodiny. Ak ste vylúčili dynamicky prideľených hostiteľov, môžete objaviť nejaký stupeň prekrývania, keď hostiteľ mení svoju IP adresu a keď je pamäť aktualizovaná zaznamenaním nejakého zobrazenia. "
2556
 
2557
  #: includes/settings/tabs/wps-exclusions.php:190
2558
  msgid "Site URL Exclusions"
2560
 
2561
  #: includes/settings/tabs/wps-exclusions.php:194
2562
  msgid "Excluded login page"
2563
+ msgstr "Vylúčená prihlasovacia stránka"
2564
 
2565
  #: includes/settings/tabs/wps-exclusions.php:197
2566
  msgid "Exclude the login page for registering as a hit."
2567
+ msgstr "Vylúčiť prihlasovaciu stránku z registrácie zobrazenia."
2568
 
2569
  #: includes/settings/tabs/wps-exclusions.php:201
2570
  msgid "Excluded admin pages"
2572
 
2573
  #: includes/settings/tabs/wps-exclusions.php:204
2574
  msgid "Exclude the admin pages for registering as a hit."
2575
+ msgstr "Vylúčiť admin stránky z registrácie zobrazenia."
2576
 
2577
  #: includes/settings/tabs/wps-exclusions.php:208
2578
  msgid "Excluded RSS feeds"
2579
+ msgstr "Vylúčené RSS kanály"
2580
 
2581
  #: includes/settings/tabs/wps-exclusions.php:211
2582
  msgid "Exclude the RSS feeds for registering as a hit."
2583
+ msgstr "Vylúčiť RSS kanály z registrácie zobrazenia."
2584
 
2585
+ #: includes/settings/tabs/wps-externals.php:162
2586
  msgid "browscap settings"
2587
  msgstr "browscap nastavenia"
2588
 
2589
+ #: includes/settings/tabs/wps-externals.php:167
2590
  msgid "browscap usage"
2591
  msgstr "browscap použitie"
2592
 
2593
+ #: includes/settings/tabs/wps-externals.php:52
2594
+ #: includes/settings/tabs/wps-externals.php:76
2595
+ #: includes/settings/tabs/wps-externals.php:109
2596
+ #: includes/settings/tabs/wps-externals.php:172
2597
+ #: includes/settings/tabs/wps-externals.php:196
2598
+ #: includes/settings/tabs/wps-externals.php:235
2599
+ #: includes/settings/tabs/wps-externals.php:259
2600
  #: includes/settings/tabs/wps-general.php:76
2601
  #: includes/settings/tabs/wps-general.php:92
2602
  #: includes/settings/tabs/wps-general.php:116
2612
  #: includes/settings/tabs/wps-general.php:286
2613
  #: includes/settings/tabs/wps-general.php:325
2614
  #: includes/settings/tabs/wps-general.php:341
 
 
 
2615
  #: includes/settings/tabs/wps-maintenance.php:40
2616
  #: includes/settings/tabs/wps-maintenance.php:64
2617
  #: includes/settings/tabs/wps-notifications.php:69
2624
  #: includes/settings/tabs/wps-overview-display.php:147
2625
  #: includes/settings/tabs/wps-overview-display.php:159
2626
  msgid "Active"
2627
+ msgstr "Aktívne"
2628
 
2629
+ #: includes/settings/tabs/wps-externals.php:173
2630
  msgid "The browscap database will be downloaded and used to detect robots."
2631
+ msgstr "Browscap databáza bude stiahnutá a použitá na detekciu robotov."
2632
 
2633
+ #: includes/settings/tabs/wps-externals.php:179
2634
  msgid "Update browscap Info"
2635
  msgstr "Aktualizácia browscap Info"
2636
 
2637
+ #: includes/settings/tabs/wps-externals.php:184
2638
  msgid "Download browscap Database"
2639
+ msgstr "Stiahnuť browscap databázu"
2640
 
2641
+ #: includes/settings/tabs/wps-externals.php:65
2642
+ #: includes/settings/tabs/wps-externals.php:185
2643
+ #: includes/settings/tabs/wps-externals.php:248
2644
  msgid "Save changes on this page to download the update."
2645
+ msgstr "Uložite zmeny na tejto stránke aby sa začalo sťahovanie aktualizácie."
2646
 
2647
+ #: includes/settings/tabs/wps-externals.php:191
2648
  msgid "Schedule weekly update of browscap DB"
2649
+ msgstr "Naplánovať týždennú aktualizáciu browscap DB"
2650
 
2651
+ #: includes/settings/tabs/wps-externals.php:79
2652
+ #: includes/settings/tabs/wps-externals.php:199
2653
+ #: includes/settings/tabs/wps-externals.php:262
2654
  msgid "Next update will be"
2655
  msgstr "Ďalšia aktualizácia bude"
2656
 
2657
+ #: includes/settings/tabs/wps-externals.php:214
2658
  msgid "Download of the browscap database will be scheduled for once a week."
2659
+ msgstr "Sťahovanie browscap databázy bude naplánované raz týždenne."
2660
 
2661
  #: includes/settings/tabs/wps-general.php:50
2662
  msgid "This will delete the manual when you save the settings, are you sure?"
2664
 
2665
  #: includes/settings/tabs/wps-general.php:77
2666
  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."
2667
+ msgstr "Táto funkcia nebude ukladať IP adresy v databáze, ale namiesto toho použije jedinečné hodnoty hash. Ak je táto možnosť vybratá, nastavenie \"Uložiť celý reťazec agenta používateľa\" sa vypne. Pri tomto nastavení nebudete môcť v budúcnosti obnoviť IP adresy a získať tak informácie o polohe."
2668
 
2669
  #: includes/settings/tabs/wps-general.php:82 shortcode.php:131
2670
  msgid "Users Online"
2671
+ msgstr "Aktívni používatelia"
2672
 
2673
  #: includes/settings/tabs/wps-general.php:87
2674
  msgid "User online"
2675
+ msgstr "Aktívny používateľ"
languages/wp_statistics-sr_RS.mo CHANGED
Binary file
languages/wp_statistics-sr_RS.po CHANGED
@@ -10,6 +10,70 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  #: includes/settings/tabs/wps-exclusions.php:148
14
  msgid "Treat corrupt browser info as a bot"
15
  msgstr ""
@@ -158,7 +222,7 @@ msgstr ""
158
  msgid "Have you thought about donating to WP Statistics?"
159
  msgstr ""
160
 
161
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:362
162
  msgid "Donate"
163
  msgstr ""
164
 
@@ -194,11 +258,11 @@ msgstr ""
194
  msgid "Time Frame"
195
  msgstr ""
196
 
197
- #: includes/functions/functions.php:929
198
  msgid "to"
199
  msgstr ""
200
 
201
- #: includes/functions/functions.php:929 includes/log/top-visitors.php:29
202
  msgid "Go"
203
  msgstr ""
204
 
@@ -242,11 +306,11 @@ msgstr ""
242
  msgid "Filtered by"
243
  msgstr ""
244
 
245
- #: includes/functions/functions.php:922 includes/functions/functions.php:925
246
  msgid "Range"
247
  msgstr ""
248
 
249
- #: includes/functions/functions.php:929 includes/log/top-visitors.php:29
250
  msgid "MM/DD/YYYY"
251
  msgstr ""
252
 
@@ -290,27 +354,27 @@ msgstr ""
290
  msgid "Last 7 Days (Week)"
291
  msgstr ""
292
 
293
- #: includes/functions/functions.php:403
294
  msgid "Yahoo!"
295
  msgstr ""
296
 
297
- #: includes/functions/functions.php:404
298
  msgid "Yandex"
299
  msgstr ""
300
 
301
- #: includes/functions/functions.php:400
302
  msgid "clearch.org"
303
  msgstr ""
304
 
305
- #: includes/functions/functions.php:401
306
  msgid "DuckDuckGo"
307
  msgstr ""
308
 
309
- #: includes/functions/functions.php:399
310
  msgid "Bing"
311
  msgstr ""
312
 
313
- #: includes/functions/functions.php:398
314
  msgid "Baidu"
315
  msgstr ""
316
 
@@ -413,8 +477,8 @@ msgid "For each visit to account for several hits. Currently %s."
413
  msgstr "Za svakog posetioca broji se po nekoliko zahteva. Trenutno %s."
414
 
415
  #: includes/settings/tabs/wps-general.php:177
416
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:351
417
- #: wp-statistics.php:427
418
  msgid "Pages"
419
  msgstr "Stranice"
420
 
@@ -498,75 +562,75 @@ msgstr "Uključujući ukupne vrednosti"
498
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
499
  msgstr "Dodaj red za ukupne vrednosti grafikonima, kao što su uputi pretraživača."
500
 
501
- #: includes/settings/tabs/wps-geoip.php:27
502
  msgid "GeoIP settings"
503
  msgstr "GeoIP podešavanja"
504
 
505
- #: includes/settings/tabs/wps-geoip.php:32
506
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
507
  msgstr "IP servis lokacija obezbeđuju GeoLite2 podaci koje je kreirao MaxMind, raspoloživ sa %s."
508
 
509
- #: includes/settings/tabs/wps-geoip.php:42
510
  msgid "GeoIP collection"
511
  msgstr "GeoIP kolekcija"
512
 
513
- #: includes/settings/tabs/wps-geoip.php:48
514
  msgid "For get more information and location (country) from visitor, enable this feature."
515
  msgstr "Da biste dobili više informacija i lokaciju (državu) posetilaca, aktivirajte ovu funkcionalnost."
516
 
517
- #: includes/settings/tabs/wps-geoip.php:54
518
  msgid "Update GeoIP Info"
519
  msgstr "Ažuriraj GeoIP Info"
520
 
521
- #: includes/settings/tabs/wps-geoip.php:59
522
  msgid "Download GeoIP Database"
523
  msgstr "Preuzmi GeoIP bazu podataka"
524
 
525
- #: includes/settings/tabs/wps-geoip.php:66
526
  msgid "Schedule monthly update of GeoIP DB"
527
  msgstr "Planiraj ažuriranje GeoIP baze podataka jednom mesečno"
528
 
529
- #: includes/settings/tabs/wps-geoip.php:92
530
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
531
  msgstr "Preuzimanje GeoIP baze podataka biće planirano 2 dana posle prvog utorka u mesecu."
532
 
533
- #: includes/settings/tabs/wps-geoip.php:93
534
  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)."
535
  msgstr "Ova opcija će, takođe, preuzeti bazu podataka ako je veličina lokalne datoteke manja od 1k (što obično znači da je stub koji dolazi uz plugin još na svom mestu)."
536
 
537
- #: includes/settings/tabs/wps-geoip.php:99
538
  msgid "Populate missing GeoIP after update of GeoIP DB"
539
  msgstr "Ubacite nedostajući GeoIP nakon ažuriranja GeoIP baze podataka"
540
 
541
- #: includes/settings/tabs/wps-geoip.php:105
542
  msgid "Update any missing GeoIP data after downloading a new database."
543
  msgstr "Ažurirajte bilo koji nedostajući GeoIP podatak nakon preuzimanja nove baze podataka."
544
 
545
- #: includes/settings/tabs/wps-geoip.php:111
546
  msgid "Country code for private IP addresses"
547
  msgstr ""
548
 
549
- #: includes/settings/tabs/wps-geoip.php:116
550
  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."
551
  msgstr ""
552
 
553
- #: includes/settings/tabs/wps-geoip.php:127
554
  msgid "GeoIP collection is disabled due to the following reasons:"
555
  msgstr "GeoIP kolekcija deaktivirana je iz sledećih razloga:"
556
 
557
- #: includes/settings/tabs/wps-geoip.php:130
558
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
559
  msgstr "GeoIP kolekcija zahteva PHP verziju %s ili noviju. Trenutno je deaktivirana jer je instalirana PHP verzija "
560
 
561
- #: includes/settings/tabs/wps-geoip.php:135
562
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
563
  msgstr "GeoIP kolekcija zahteva cURL PHP ekstenziju i nije otpremljena na vašoj PHP verziji!"
564
 
565
- #: includes/settings/tabs/wps-geoip.php:141
566
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
567
  msgstr "GeoIP kolekcija zahteva BC Math PHP ekstenziju i nije otpremljena na vašoj PHP verziji!"
568
 
569
- #: includes/settings/tabs/wps-geoip.php:147
570
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
571
  msgstr "Otkriven je PHP bezbedni režim! GeoIP kolekcija nije podržana kad je aktiviran PHP bezbedni režim!"
572
 
@@ -626,7 +690,6 @@ msgstr ""
626
 
627
  #: includes/log/exclusions.php:24
628
  #: includes/settings/tabs/wps-notifications.php:76
629
- #: includes/settings/wps-settings.php:111
630
  msgid "GeoIP"
631
  msgstr "GeoIP"
632
 
@@ -651,7 +714,7 @@ msgid "Send a report whenever the plugin is upgraded."
651
  msgstr ""
652
 
653
  #: includes/settings/tabs/wps-notifications.php:111
654
- #: includes/settings/tabs/wps-notifications.php:116 schedule.php:199
655
  msgid "Statistical reporting"
656
  msgstr "Statistički izveštaji"
657
 
@@ -700,7 +763,7 @@ msgid "Any shortcode supported by your installation of WordPress, include all sh
700
  msgstr ""
701
 
702
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
703
- #: widget.php:245 wp-statistics.php:532
704
  msgid "User Online"
705
  msgstr "Online korisnici"
706
 
@@ -743,7 +806,7 @@ msgid "Summary Statistics"
743
  msgstr "Pregled statistike"
744
 
745
  #: includes/settings/tabs/wps-overview-display.php:28
746
- #: includes/settings/wps-settings.php:115
747
  msgid "About"
748
  msgstr "O"
749
 
@@ -793,7 +856,7 @@ msgstr ""
793
  msgid "Map type"
794
  msgstr "Vrsta mape"
795
 
796
- #: includes/functions/functions.php:402
797
  #: includes/settings/tabs/wps-overview-display.php:128
798
  msgid "Google"
799
  msgstr "Google"
@@ -903,35 +966,30 @@ msgstr ""
903
  msgid "Remove data and settings, this action cannot be undone."
904
  msgstr ""
905
 
906
- #: includes/settings/wps-settings.php:106
907
  msgid "General"
908
  msgstr "Opšti"
909
 
910
- #: includes/settings/wps-settings.php:107
911
  msgid "Notifications"
912
  msgstr ""
913
 
914
- #: includes/settings/wps-settings.php:108
915
  msgid "Dashboard/Overview"
916
  msgstr ""
917
 
918
- #: includes/settings/wps-settings.php:112
919
- msgid "browscap"
920
- msgstr "бровсцап"
921
-
922
- #: includes/settings/wps-settings.php:113
923
  msgid "Maintenance"
924
  msgstr "Održavanje"
925
 
926
- #: includes/settings/wps-settings.php:114
927
  msgid "Removal"
928
  msgstr ""
929
 
930
  #: includes/settings/tabs/wps-access-level.php:85
931
- #: includes/settings/tabs/wps-browscap.php:81
932
  #: includes/settings/tabs/wps-exclusions.php:234
 
933
  #: includes/settings/tabs/wps-general.php:349
934
- #: includes/settings/tabs/wps-geoip.php:158
935
  #: includes/settings/tabs/wps-maintenance.php:84
936
  #: includes/settings/tabs/wps-notifications.php:201
937
  #: includes/settings/tabs/wps-overview-display.php:388
@@ -951,7 +1009,7 @@ msgstr "Jednom u 2 nedelje"
951
  msgid "Once Every 4 Weeks"
952
  msgstr "Jednom u 4 nedelje"
953
 
954
- #: widget.php:14 wp-statistics.php:342 wp-statistics.php:380
955
  msgid "Statistics"
956
  msgstr "Statistike"
957
 
@@ -1023,7 +1081,7 @@ msgstr "Naziv"
1023
  msgid "Items"
1024
  msgstr "Stavke"
1025
 
1026
- #: widget.php:254 wp-statistics.php:557
1027
  msgid "Yesterday visit"
1028
  msgstr "Jučerašnja poseta"
1029
 
@@ -1051,13 +1109,13 @@ msgstr ""
1051
  msgid "WP Statistics has been removed, please disable and delete it."
1052
  msgstr ""
1053
 
1054
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1055
  #. Plugin Name of the plugin/theme
1056
  #: wp-statistics.php:37
1057
  msgid "WP Statistics"
1058
  msgstr "WP Statistics"
1059
 
1060
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1061
  #. Description of the plugin/theme
1062
  #: wp-statistics.php:38
1063
  msgid "Complete statistics for your WordPress site."
@@ -1087,99 +1145,99 @@ msgstr "ГеоИП збирка није молимо идите на %s и о
1087
  msgid "Setting page > GeoIP"
1088
  msgstr "овустраницуГеоИП"
1089
 
1090
- #: wp-statistics.php:249 wp-statistics.php:361 wp-statistics.php:434
1091
  msgid "Settings"
1092
  msgstr "Podešavanja"
1093
 
1094
- #: wp-statistics.php:261
1095
  msgid "Click here to visit the plugin on WordPress.org"
1096
  msgstr "Kliknite ovde da biste posetili plugin na WordPress.org"
1097
 
1098
- #: wp-statistics.php:261
1099
  msgid "Visit WordPress.org page"
1100
  msgstr "Posetite stranicu WordPress.org "
1101
 
1102
- #: wp-statistics.php:264
1103
  msgid "Click here to rate and review this plugin on WordPress.org"
1104
  msgstr "Kliknite ovde da biste ocenili i komentarisali ovaj plugin na WordPress.org"
1105
 
1106
- #: wp-statistics.php:264
1107
  msgid "Rate this plugin"
1108
  msgstr "Ocenite ovaj plugin"
1109
 
1110
- #: wp-statistics.php:308
1111
  msgid "WP Statistics - Hits"
1112
  msgstr "WP Statistics - Zahtevi"
1113
 
1114
- #: wp-statistics.php:345 wp-statistics.php:383 wp-statistics.php:421
1115
  msgid "Overview"
1116
  msgstr "Pregled"
1117
 
1118
- #: wp-statistics.php:350 wp-statistics.php:426
1119
  msgid "Online"
1120
  msgstr ""
1121
 
1122
- #: wp-statistics.php:352 wp-statistics.php:428
1123
  msgid "Referrers"
1124
  msgstr ""
1125
 
1126
- #: shortcode.php:135 wp-statistics.php:353 wp-statistics.php:429
1127
  msgid "Searches"
1128
  msgstr "Pretrage"
1129
 
1130
- #: wp-statistics.php:354 wp-statistics.php:430
1131
  msgid "Search Words"
1132
  msgstr "Reči za pretragu"
1133
 
1134
- #: wp-statistics.php:355 wp-statistics.php:431
1135
  msgid "Top Visitors Today"
1136
  msgstr ""
1137
 
1138
- #: wp-statistics.php:360 wp-statistics.php:433
1139
  msgid "Optimization"
1140
  msgstr "Optimizacija"
1141
 
1142
- #: wp-statistics.php:366 wp-statistics.php:397
1143
  msgid "Manual"
1144
  msgstr "Uputstvo"
1145
 
1146
- #: wp-statistics.php:412
1147
  msgid "Site"
1148
  msgstr ""
1149
 
1150
- #: wp-statistics.php:413
1151
  msgid "Options"
1152
  msgstr ""
1153
 
1154
- #: wp-statistics.php:539
1155
  msgid "Today visitor"
1156
  msgstr "Broj posetilaca danas"
1157
 
1158
- #: wp-statistics.php:545
1159
  msgid "Today visit"
1160
  msgstr "Broj poseta danas"
1161
 
1162
- #: wp-statistics.php:551
1163
  msgid "Yesterday visitor"
1164
  msgstr "Broj poseta juče"
1165
 
1166
- #: wp-statistics.php:563
1167
  msgid "View Stats"
1168
  msgstr "Vidi statistiku"
1169
 
1170
- #: wp-statistics.php:587
1171
  msgid "Download ODF file"
1172
  msgstr "Preuzmi ODF datoteku"
1173
 
1174
- #: wp-statistics.php:588
1175
  msgid "Download HTML file"
1176
  msgstr "Preuzmi HTML datoteku"
1177
 
1178
- #: wp-statistics.php:592
1179
  msgid "Manual file not found."
1180
  msgstr "Datoteka sa uputstvom nije pronađena"
1181
 
1182
- #: wp-statistics.php:659 wp-statistics.php:770 wp-statistics.php:804
1183
  msgid "You do not have sufficient permissions to access this page."
1184
  msgstr "Nemate odgovarajuće dozvole za pristup ovoj stranici"
1185
 
@@ -1187,7 +1245,7 @@ msgstr "Nemate odgovarajuće dozvole za pristup ovoj stranici"
1187
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
1188
  msgstr ""
1189
 
1190
- #: wp-statistics.php:237
1191
  msgid "WP Statistics %s installed on"
1192
  msgstr ""
1193
 
@@ -1235,9 +1293,9 @@ msgstr "бровсцап већ у тренутној верзији"
1235
  msgid "Browscap.ini update on"
1236
  msgstr ""
1237
 
1238
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1239
  #. Plugin URI of the plugin/theme
1240
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1241
  #. Author URI of the plugin/theme
1242
  msgid "http://wp-statistics.com/"
1243
  msgstr "хттп://вп-статистицс.цом/"
@@ -1364,8 +1422,8 @@ msgid "Click to toggle"
1364
  msgstr "Klikni za aktiviranje/deaktiviranje"
1365
 
1366
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1367
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:346
1368
- #: wp-statistics.php:422
1369
  msgid "Browsers"
1370
  msgstr "Pretraživači"
1371
 
@@ -1394,35 +1452,35 @@ msgstr "Pažnja: Trenutno se izuzeci ne beleže, rezultati koji slede možda ne
1394
  msgid "Exclusions Statistics"
1395
  msgstr "Statistika izuzetaka"
1396
 
1397
- #: includes/functions/functions.php:879
1398
  msgid "10 Days"
1399
  msgstr "10 dana"
1400
 
1401
- #: includes/functions/functions.php:879
1402
  msgid "20 Days"
1403
  msgstr "20 dana"
1404
 
1405
- #: includes/functions/functions.php:879
1406
  msgid "30 Days"
1407
  msgstr "30 dana"
1408
 
1409
- #: includes/functions/functions.php:879
1410
  msgid "2 Months"
1411
  msgstr "2 meseca"
1412
 
1413
- #: includes/functions/functions.php:879
1414
  msgid "3 Months"
1415
  msgstr "3 meseca"
1416
 
1417
- #: includes/functions/functions.php:879
1418
  msgid "6 Months"
1419
  msgstr "6 meseci"
1420
 
1421
- #: includes/functions/functions.php:879
1422
  msgid "9 Months"
1423
  msgstr "9 meseci"
1424
 
1425
- #: includes/functions/functions.php:879
1426
  msgid "1 Year"
1427
  msgstr "1 godina"
1428
 
@@ -1471,28 +1529,28 @@ msgstr "Posetilac"
1471
  msgid "Latest Search Word Statistics"
1472
  msgstr "Statistika pretrage poslednjih reči"
1473
 
1474
- #: includes/log/last-search.php:100 includes/log/last-visitor.php:101
1475
  #: includes/log/online.php:50 includes/log/widgets/google.map.php:84
1476
  #: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
1477
- #: includes/log/widgets/words.php:36
1478
  msgid "#hash#"
1479
  msgstr "#hash#"
1480
 
1481
- #: includes/log/last-search.php:105 includes/log/last-visitor.php:106
1482
  #: includes/log/online.php:55 includes/log/top-referring.php:71
1483
- #: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:43
1484
  #: includes/settings/tabs/wps-overview-display.php:33
1485
  #: includes/settings/tabs/wps-overview-display.php:113
1486
  msgid "Map"
1487
  msgstr "Mapa"
1488
 
1489
- #: includes/log/last-search.php:142 includes/log/last-visitor.php:139
1490
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1491
  #: includes/log/top-referring.php:125
1492
  msgid "Page"
1493
  msgstr "Stranica"
1494
 
1495
- #: includes/log/last-search.php:142 includes/log/last-visitor.php:139
1496
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1497
  #: includes/log/top-referring.php:125
1498
  msgid "From"
@@ -1681,8 +1739,8 @@ msgid "Time: %s"
1681
  msgstr "Тиме: %s подаци"
1682
 
1683
  #: includes/log/widgets/top.visitors.php:31
1684
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:273
1685
- #: wp-statistics.php:349 wp-statistics.php:425
1686
  msgid "Hits"
1687
  msgstr "Zahtevi"
1688
 
@@ -1724,11 +1782,11 @@ msgstr "платформаза податке %s успешно обрисан"
1724
  msgid "No platform data found to remove!"
1725
  msgstr ""
1726
 
1727
- #: includes/functions/functions.php:967
1728
  msgid "%s table data deleted successfully."
1729
  msgstr "подаци Табела %s успешно"
1730
 
1731
- #: includes/functions/functions.php:971
1732
  msgid "Error, %s not emptied!"
1733
  msgstr "Greška, %s nije ispražnjen!"
1734
 
@@ -1754,7 +1812,7 @@ msgstr "Indeks baze podataka"
1754
 
1755
  #: includes/optimization/tabs/wps-optimization-database.php:25
1756
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1757
- #: wp-statistics.php:347 wp-statistics.php:423
1758
  msgid "Countries"
1759
  msgstr "Države"
1760
 
@@ -1770,6 +1828,7 @@ msgid "Older installs of WP Statistics allow for duplicate entries in the visito
1770
  msgstr "Starije WP Statistics instalacije dozvoljavaju dupliranje unosa u tabeli posetilaca u izuzetnim slučajevima. Novije instalacije štite se od toga jedinstvenim indeksom na tabeli. Da biste kreirali indeks na starijim instalacijama, prvo morate obrisati duple unose. Ako kliknete na opciju \"Ažuriraj sad\", tabele posetilaca biće skenirane, dupli unosi će biti obrisani i indeksi će biti dodati tabeli."
1771
 
1772
  #: includes/optimization/tabs/wps-optimization-database.php:41
 
1773
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1774
  msgstr "Ova operacija mogla bi da potraje malo duže ako u tabeli posetilaca ima mnogo redova."
1775
 
@@ -1779,11 +1838,12 @@ msgstr "Starije WP Statistics instalacije dozvoljavaju dupliranje unosa u tabeli
1779
 
1780
  #: includes/optimization/tabs/wps-optimization-database.php:47
1781
  #: includes/optimization/tabs/wps-optimization-database.php:77
 
1782
  msgid "Congratulations, your installation is already up to date, nothing to do."
1783
  msgstr "Čestitamo! Vaša instalacija već je ažurirana, nemate šta da radite."
1784
 
1785
  #: includes/optimization/tabs/wps-optimization-export.php:8
1786
- #: includes/optimization/wps-optimization.php:183
1787
  msgid "Export"
1788
  msgstr "Izvezi"
1789
 
@@ -1836,7 +1896,7 @@ msgstr ""
1836
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1837
  #: includes/settings/tabs/wps-general.php:138
1838
  #: includes/settings/tabs/wps-general.php:143 shortcode.php:133
1839
- #: wp-statistics.php:356 wp-statistics.php:432
1840
  msgid "Visitors"
1841
  msgstr "Posetioci"
1842
 
@@ -2151,23 +2211,23 @@ msgstr "IP adrese zamenjene hash vrednostima."
2151
  msgid "Install routine complete."
2152
  msgstr "Инсталл рутинску ЦОМПЛЕТЕбровсцап..."
2153
 
2154
- #: includes/optimization/wps-optimization.php:182
2155
  msgid "Resources/Information"
2156
  msgstr "Izvori/Informacije"
2157
 
2158
- #: includes/optimization/wps-optimization.php:184
2159
  msgid "Purging"
2160
  msgstr "Brisanje"
2161
 
2162
- #: includes/optimization/wps-optimization.php:185
2163
  msgid "Database"
2164
  msgstr "Baza podataka"
2165
 
2166
- #: includes/optimization/wps-optimization.php:186
2167
  msgid "Updates"
2168
  msgstr "Ažuriranja"
2169
 
2170
- #: includes/optimization/wps-optimization.php:187
2171
  msgid "Historical"
2172
  msgstr ""
2173
 
@@ -2317,7 +2377,7 @@ msgid "This is the honey pot for WP Statistics to use, do not delete."
2317
  msgstr ""
2318
 
2319
  #: includes/settings/tabs/wps-access-level.php:23
2320
- #: includes/settings/wps-settings.php:109
2321
  msgid "Access Levels"
2322
  msgstr "Nivoi pristupa"
2323
 
@@ -2350,8 +2410,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2350
  msgstr "Ako vam je potrebno striktnije rešenje za raspodelu pristupa, možda ćete hteti da pogledate %s u WordPress plugin direktorijumu."
2351
 
2352
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2353
- #: includes/settings/wps-settings.php:110 wp-statistics.php:348
2354
- #: wp-statistics.php:424
2355
  msgid "Exclusions"
2356
  msgstr "Izuzeci"
2357
 
@@ -2522,16 +2582,21 @@ msgstr ""
2522
  msgid "Exclude the RSS feeds for registering as a hit."
2523
  msgstr ""
2524
 
2525
- #: includes/settings/tabs/wps-browscap.php:22
2526
  msgid "browscap settings"
2527
  msgstr "бровсцап Сеттингс"
2528
 
2529
- #: includes/settings/tabs/wps-browscap.php:27
2530
  msgid "browscap usage"
2531
  msgstr "бровсцап Употреба"
2532
 
2533
- #: includes/settings/tabs/wps-browscap.php:32
2534
- #: includes/settings/tabs/wps-browscap.php:56
 
 
 
 
 
2535
  #: includes/settings/tabs/wps-general.php:76
2536
  #: includes/settings/tabs/wps-general.php:92
2537
  #: includes/settings/tabs/wps-general.php:116
@@ -2547,9 +2612,6 @@ msgstr "бровсцап Употреба"
2547
  #: includes/settings/tabs/wps-general.php:286
2548
  #: includes/settings/tabs/wps-general.php:325
2549
  #: includes/settings/tabs/wps-general.php:341
2550
- #: includes/settings/tabs/wps-geoip.php:47
2551
- #: includes/settings/tabs/wps-geoip.php:71
2552
- #: includes/settings/tabs/wps-geoip.php:104
2553
  #: includes/settings/tabs/wps-maintenance.php:40
2554
  #: includes/settings/tabs/wps-maintenance.php:64
2555
  #: includes/settings/tabs/wps-notifications.php:69
@@ -2564,33 +2626,35 @@ msgstr "бровсцап Употреба"
2564
  msgid "Active"
2565
  msgstr "Aktivan"
2566
 
2567
- #: includes/settings/tabs/wps-browscap.php:33
2568
  msgid "The browscap database will be downloaded and used to detect robots."
2569
  msgstr "база података бровсцап ће бити преузета и користити за детекцију роботе"
2570
 
2571
- #: includes/settings/tabs/wps-browscap.php:39
2572
  msgid "Update browscap Info"
2573
  msgstr "Упдате бровсцап Инфо"
2574
 
2575
- #: includes/settings/tabs/wps-browscap.php:44
2576
  msgid "Download browscap Database"
2577
  msgstr "Довнлоад бровсцап база"
2578
 
2579
- #: includes/settings/tabs/wps-browscap.php:45
2580
- #: includes/settings/tabs/wps-geoip.php:60
 
2581
  msgid "Save changes on this page to download the update."
2582
  msgstr "Sačuvaj izmene na ovoj stranici radi preuzimanja ažuriranja."
2583
 
2584
- #: includes/settings/tabs/wps-browscap.php:51
2585
  msgid "Schedule weekly update of browscap DB"
2586
  msgstr "Распоред недељно ажурирање бровсцап ДБ"
2587
 
2588
- #: includes/settings/tabs/wps-browscap.php:59
2589
- #: includes/settings/tabs/wps-geoip.php:74
 
2590
  msgid "Next update will be"
2591
  msgstr "Naredno ažuriranje biće"
2592
 
2593
- #: includes/settings/tabs/wps-browscap.php:74
2594
  msgid "Download of the browscap database will be scheduled for once a week."
2595
  msgstr "преузимање базе бити заказана једном недељно."
2596
 
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: includes/optimization/wps-optimization.php:173
14
+ msgid "Search table conversion complete, %d rows added."
15
+ msgstr ""
16
+
17
+ #: includes/optimization/tabs/wps-optimization-database.php:107
18
+ msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion."
19
+ msgstr ""
20
+
21
+ #: includes/optimization/tabs/wps-optimization-database.php:86
22
+ msgid "Search Table"
23
+ msgstr ""
24
+
25
+ #: includes/optimization/tabs/wps-optimization-database.php:91
26
+ msgid "Convert"
27
+ msgstr ""
28
+
29
+ #: includes/optimization/tabs/wps-optimization-database.php:100
30
+ msgid "Convert Now!"
31
+ msgstr ""
32
+
33
+ #: includes/optimization/tabs/wps-optimization-database.php:101
34
+ msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion, however the old data must first be converted to the new format before it can be used."
35
+ msgstr ""
36
+
37
+ #: includes/log/exclusions.php:24
38
+ msgid "Referrer Spam"
39
+ msgstr ""
40
+
41
+ #: includes/settings/tabs/wps-externals.php:277
42
+ msgid "Download of the Piwik Referrer Spam Blacklist database will be scheduled for once a week."
43
+ msgstr ""
44
+
45
+ #: includes/settings/wps-settings.php:105
46
+ msgid "Externals"
47
+ msgstr ""
48
+
49
+ #: includes/settings/tabs/wps-externals.php:219
50
+ msgid "Piwik Referrer Spam Blacklist settings"
51
+ msgstr ""
52
+
53
+ #: includes/settings/tabs/wps-externals.php:254
54
+ msgid "Schedule weekly update of Piwik Referrer Spam Blacklist DB"
55
+ msgstr ""
56
+
57
+ #: includes/settings/tabs/wps-externals.php:247
58
+ msgid "Download Piwik Referrer Spam Blacklist Database"
59
+ msgstr ""
60
+
61
+ #: includes/settings/tabs/wps-externals.php:242
62
+ msgid "Update Piwik Referrer Spam Blacklist Info"
63
+ msgstr ""
64
+
65
+ #: includes/settings/tabs/wps-externals.php:236
66
+ msgid "The Piwik Referrer Spam Blacklist database will be downloaded and used to detect referrer spam."
67
+ msgstr ""
68
+
69
+ #: includes/settings/tabs/wps-externals.php:224
70
+ msgid "Referrer spam blacklist is provided by Piwik, available from %s."
71
+ msgstr ""
72
+
73
+ #: includes/settings/tabs/wps-externals.php:230
74
+ msgid "Piwik Referrer Spam Blacklist usage"
75
+ msgstr ""
76
+
77
  #: includes/settings/tabs/wps-exclusions.php:148
78
  msgid "Treat corrupt browser info as a bot"
79
  msgstr ""
222
  msgid "Have you thought about donating to WP Statistics?"
223
  msgstr ""
224
 
225
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
226
  msgid "Donate"
227
  msgstr ""
228
 
258
  msgid "Time Frame"
259
  msgstr ""
260
 
261
+ #: includes/functions/functions.php:981
262
  msgid "to"
263
  msgstr ""
264
 
265
+ #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
266
  msgid "Go"
267
  msgstr ""
268
 
306
  msgid "Filtered by"
307
  msgstr ""
308
 
309
+ #: includes/functions/functions.php:974 includes/functions/functions.php:977
310
  msgid "Range"
311
  msgstr ""
312
 
313
+ #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
314
  msgid "MM/DD/YYYY"
315
  msgstr ""
316
 
354
  msgid "Last 7 Days (Week)"
355
  msgstr ""
356
 
357
+ #: includes/functions/functions.php:405
358
  msgid "Yahoo!"
359
  msgstr ""
360
 
361
+ #: includes/functions/functions.php:406
362
  msgid "Yandex"
363
  msgstr ""
364
 
365
+ #: includes/functions/functions.php:402
366
  msgid "clearch.org"
367
  msgstr ""
368
 
369
+ #: includes/functions/functions.php:403
370
  msgid "DuckDuckGo"
371
  msgstr ""
372
 
373
+ #: includes/functions/functions.php:401
374
  msgid "Bing"
375
  msgstr ""
376
 
377
+ #: includes/functions/functions.php:400
378
  msgid "Baidu"
379
  msgstr ""
380
 
477
  msgstr "Za svakog posetioca broji se po nekoliko zahteva. Trenutno %s."
478
 
479
  #: includes/settings/tabs/wps-general.php:177
480
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
481
+ #: wp-statistics.php:431
482
  msgid "Pages"
483
  msgstr "Stranice"
484
 
562
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
563
  msgstr "Dodaj red za ukupne vrednosti grafikonima, kao što su uputi pretraživača."
564
 
565
+ #: includes/settings/tabs/wps-externals.php:32
566
  msgid "GeoIP settings"
567
  msgstr "GeoIP podešavanja"
568
 
569
+ #: includes/settings/tabs/wps-externals.php:37
570
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
571
  msgstr "IP servis lokacija obezbeđuju GeoLite2 podaci koje je kreirao MaxMind, raspoloživ sa %s."
572
 
573
+ #: includes/settings/tabs/wps-externals.php:47
574
  msgid "GeoIP collection"
575
  msgstr "GeoIP kolekcija"
576
 
577
+ #: includes/settings/tabs/wps-externals.php:53
578
  msgid "For get more information and location (country) from visitor, enable this feature."
579
  msgstr "Da biste dobili više informacija i lokaciju (državu) posetilaca, aktivirajte ovu funkcionalnost."
580
 
581
+ #: includes/settings/tabs/wps-externals.php:59
582
  msgid "Update GeoIP Info"
583
  msgstr "Ažuriraj GeoIP Info"
584
 
585
+ #: includes/settings/tabs/wps-externals.php:64
586
  msgid "Download GeoIP Database"
587
  msgstr "Preuzmi GeoIP bazu podataka"
588
 
589
+ #: includes/settings/tabs/wps-externals.php:71
590
  msgid "Schedule monthly update of GeoIP DB"
591
  msgstr "Planiraj ažuriranje GeoIP baze podataka jednom mesečno"
592
 
593
+ #: includes/settings/tabs/wps-externals.php:97
594
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
595
  msgstr "Preuzimanje GeoIP baze podataka biće planirano 2 dana posle prvog utorka u mesecu."
596
 
597
+ #: includes/settings/tabs/wps-externals.php:98
598
  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)."
599
  msgstr "Ova opcija će, takođe, preuzeti bazu podataka ako je veličina lokalne datoteke manja od 1k (što obično znači da je stub koji dolazi uz plugin još na svom mestu)."
600
 
601
+ #: includes/settings/tabs/wps-externals.php:104
602
  msgid "Populate missing GeoIP after update of GeoIP DB"
603
  msgstr "Ubacite nedostajući GeoIP nakon ažuriranja GeoIP baze podataka"
604
 
605
+ #: includes/settings/tabs/wps-externals.php:110
606
  msgid "Update any missing GeoIP data after downloading a new database."
607
  msgstr "Ažurirajte bilo koji nedostajući GeoIP podatak nakon preuzimanja nove baze podataka."
608
 
609
+ #: includes/settings/tabs/wps-externals.php:116
610
  msgid "Country code for private IP addresses"
611
  msgstr ""
612
 
613
+ #: includes/settings/tabs/wps-externals.php:121
614
  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."
615
  msgstr ""
616
 
617
+ #: includes/settings/tabs/wps-externals.php:132
618
  msgid "GeoIP collection is disabled due to the following reasons:"
619
  msgstr "GeoIP kolekcija deaktivirana je iz sledećih razloga:"
620
 
621
+ #: includes/settings/tabs/wps-externals.php:135
622
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
623
  msgstr "GeoIP kolekcija zahteva PHP verziju %s ili noviju. Trenutno je deaktivirana jer je instalirana PHP verzija "
624
 
625
+ #: includes/settings/tabs/wps-externals.php:140
626
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
627
  msgstr "GeoIP kolekcija zahteva cURL PHP ekstenziju i nije otpremljena na vašoj PHP verziji!"
628
 
629
+ #: includes/settings/tabs/wps-externals.php:146
630
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
631
  msgstr "GeoIP kolekcija zahteva BC Math PHP ekstenziju i nije otpremljena na vašoj PHP verziji!"
632
 
633
+ #: includes/settings/tabs/wps-externals.php:152
634
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
635
  msgstr "Otkriven je PHP bezbedni režim! GeoIP kolekcija nije podržana kad je aktiviran PHP bezbedni režim!"
636
 
690
 
691
  #: includes/log/exclusions.php:24
692
  #: includes/settings/tabs/wps-notifications.php:76
 
693
  msgid "GeoIP"
694
  msgstr "GeoIP"
695
 
714
  msgstr ""
715
 
716
  #: includes/settings/tabs/wps-notifications.php:111
717
+ #: includes/settings/tabs/wps-notifications.php:116 schedule.php:221
718
  msgid "Statistical reporting"
719
  msgstr "Statistički izveštaji"
720
 
763
  msgstr ""
764
 
765
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
766
+ #: widget.php:245 wp-statistics.php:536
767
  msgid "User Online"
768
  msgstr "Online korisnici"
769
 
806
  msgstr "Pregled statistike"
807
 
808
  #: includes/settings/tabs/wps-overview-display.php:28
809
+ #: includes/settings/wps-settings.php:108
810
  msgid "About"
811
  msgstr "O"
812
 
856
  msgid "Map type"
857
  msgstr "Vrsta mape"
858
 
859
+ #: includes/functions/functions.php:404
860
  #: includes/settings/tabs/wps-overview-display.php:128
861
  msgid "Google"
862
  msgstr "Google"
966
  msgid "Remove data and settings, this action cannot be undone."
967
  msgstr ""
968
 
969
+ #: includes/settings/wps-settings.php:100
970
  msgid "General"
971
  msgstr "Opšti"
972
 
973
+ #: includes/settings/wps-settings.php:101
974
  msgid "Notifications"
975
  msgstr ""
976
 
977
+ #: includes/settings/wps-settings.php:102
978
  msgid "Dashboard/Overview"
979
  msgstr ""
980
 
981
+ #: includes/settings/wps-settings.php:106
 
 
 
 
982
  msgid "Maintenance"
983
  msgstr "Održavanje"
984
 
985
+ #: includes/settings/wps-settings.php:107
986
  msgid "Removal"
987
  msgstr ""
988
 
989
  #: includes/settings/tabs/wps-access-level.php:85
 
990
  #: includes/settings/tabs/wps-exclusions.php:234
991
+ #: includes/settings/tabs/wps-externals.php:284
992
  #: includes/settings/tabs/wps-general.php:349
 
993
  #: includes/settings/tabs/wps-maintenance.php:84
994
  #: includes/settings/tabs/wps-notifications.php:201
995
  #: includes/settings/tabs/wps-overview-display.php:388
1009
  msgid "Once Every 4 Weeks"
1010
  msgstr "Jednom u 4 nedelje"
1011
 
1012
+ #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
1013
  msgid "Statistics"
1014
  msgstr "Statistike"
1015
 
1081
  msgid "Items"
1082
  msgstr "Stavke"
1083
 
1084
+ #: widget.php:254 wp-statistics.php:561
1085
  msgid "Yesterday visit"
1086
  msgstr "Jučerašnja poseta"
1087
 
1109
  msgid "WP Statistics has been removed, please disable and delete it."
1110
  msgstr ""
1111
 
1112
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1113
  #. Plugin Name of the plugin/theme
1114
  #: wp-statistics.php:37
1115
  msgid "WP Statistics"
1116
  msgstr "WP Statistics"
1117
 
1118
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1119
  #. Description of the plugin/theme
1120
  #: wp-statistics.php:38
1121
  msgid "Complete statistics for your WordPress site."
1145
  msgid "Setting page > GeoIP"
1146
  msgstr "овустраницуГеоИП"
1147
 
1148
+ #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
1149
  msgid "Settings"
1150
  msgstr "Podešavanja"
1151
 
1152
+ #: wp-statistics.php:265
1153
  msgid "Click here to visit the plugin on WordPress.org"
1154
  msgstr "Kliknite ovde da biste posetili plugin na WordPress.org"
1155
 
1156
+ #: wp-statistics.php:265
1157
  msgid "Visit WordPress.org page"
1158
  msgstr "Posetite stranicu WordPress.org "
1159
 
1160
+ #: wp-statistics.php:268
1161
  msgid "Click here to rate and review this plugin on WordPress.org"
1162
  msgstr "Kliknite ovde da biste ocenili i komentarisali ovaj plugin na WordPress.org"
1163
 
1164
+ #: wp-statistics.php:268
1165
  msgid "Rate this plugin"
1166
  msgstr "Ocenite ovaj plugin"
1167
 
1168
+ #: wp-statistics.php:312
1169
  msgid "WP Statistics - Hits"
1170
  msgstr "WP Statistics - Zahtevi"
1171
 
1172
+ #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
1173
  msgid "Overview"
1174
  msgstr "Pregled"
1175
 
1176
+ #: wp-statistics.php:354 wp-statistics.php:430
1177
  msgid "Online"
1178
  msgstr ""
1179
 
1180
+ #: wp-statistics.php:356 wp-statistics.php:432
1181
  msgid "Referrers"
1182
  msgstr ""
1183
 
1184
+ #: shortcode.php:135 wp-statistics.php:357 wp-statistics.php:433
1185
  msgid "Searches"
1186
  msgstr "Pretrage"
1187
 
1188
+ #: wp-statistics.php:358 wp-statistics.php:434
1189
  msgid "Search Words"
1190
  msgstr "Reči za pretragu"
1191
 
1192
+ #: wp-statistics.php:359 wp-statistics.php:435
1193
  msgid "Top Visitors Today"
1194
  msgstr ""
1195
 
1196
+ #: wp-statistics.php:364 wp-statistics.php:437
1197
  msgid "Optimization"
1198
  msgstr "Optimizacija"
1199
 
1200
+ #: wp-statistics.php:370 wp-statistics.php:401
1201
  msgid "Manual"
1202
  msgstr "Uputstvo"
1203
 
1204
+ #: wp-statistics.php:416
1205
  msgid "Site"
1206
  msgstr ""
1207
 
1208
+ #: wp-statistics.php:417
1209
  msgid "Options"
1210
  msgstr ""
1211
 
1212
+ #: wp-statistics.php:543
1213
  msgid "Today visitor"
1214
  msgstr "Broj posetilaca danas"
1215
 
1216
+ #: wp-statistics.php:549
1217
  msgid "Today visit"
1218
  msgstr "Broj poseta danas"
1219
 
1220
+ #: wp-statistics.php:555
1221
  msgid "Yesterday visitor"
1222
  msgstr "Broj poseta juče"
1223
 
1224
+ #: wp-statistics.php:567
1225
  msgid "View Stats"
1226
  msgstr "Vidi statistiku"
1227
 
1228
+ #: wp-statistics.php:591
1229
  msgid "Download ODF file"
1230
  msgstr "Preuzmi ODF datoteku"
1231
 
1232
+ #: wp-statistics.php:592
1233
  msgid "Download HTML file"
1234
  msgstr "Preuzmi HTML datoteku"
1235
 
1236
+ #: wp-statistics.php:596
1237
  msgid "Manual file not found."
1238
  msgstr "Datoteka sa uputstvom nije pronađena"
1239
 
1240
+ #: wp-statistics.php:663 wp-statistics.php:770 wp-statistics.php:804
1241
  msgid "You do not have sufficient permissions to access this page."
1242
  msgstr "Nemate odgovarajuće dozvole za pristup ovoj stranici"
1243
 
1245
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
1246
  msgstr ""
1247
 
1248
+ #: wp-statistics.php:241
1249
  msgid "WP Statistics %s installed on"
1250
  msgstr ""
1251
 
1293
  msgid "Browscap.ini update on"
1294
  msgstr ""
1295
 
1296
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1297
  #. Plugin URI of the plugin/theme
1298
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1299
  #. Author URI of the plugin/theme
1300
  msgid "http://wp-statistics.com/"
1301
  msgstr "хттп://вп-статистицс.цом/"
1422
  msgstr "Klikni za aktiviranje/deaktiviranje"
1423
 
1424
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1425
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
1426
+ #: wp-statistics.php:426
1427
  msgid "Browsers"
1428
  msgstr "Pretraživači"
1429
 
1452
  msgid "Exclusions Statistics"
1453
  msgstr "Statistika izuzetaka"
1454
 
1455
+ #: includes/functions/functions.php:931
1456
  msgid "10 Days"
1457
  msgstr "10 dana"
1458
 
1459
+ #: includes/functions/functions.php:931
1460
  msgid "20 Days"
1461
  msgstr "20 dana"
1462
 
1463
+ #: includes/functions/functions.php:931
1464
  msgid "30 Days"
1465
  msgstr "30 dana"
1466
 
1467
+ #: includes/functions/functions.php:931
1468
  msgid "2 Months"
1469
  msgstr "2 meseca"
1470
 
1471
+ #: includes/functions/functions.php:931
1472
  msgid "3 Months"
1473
  msgstr "3 meseca"
1474
 
1475
+ #: includes/functions/functions.php:931
1476
  msgid "6 Months"
1477
  msgstr "6 meseci"
1478
 
1479
+ #: includes/functions/functions.php:931
1480
  msgid "9 Months"
1481
  msgstr "9 meseci"
1482
 
1483
+ #: includes/functions/functions.php:931
1484
  msgid "1 Year"
1485
  msgstr "1 godina"
1486
 
1529
  msgid "Latest Search Word Statistics"
1530
  msgstr "Statistika pretrage poslednjih reči"
1531
 
1532
+ #: includes/log/last-search.php:110 includes/log/last-visitor.php:101
1533
  #: includes/log/online.php:50 includes/log/widgets/google.map.php:84
1534
  #: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
1535
+ #: includes/log/widgets/words.php:46
1536
  msgid "#hash#"
1537
  msgstr "#hash#"
1538
 
1539
+ #: includes/log/last-search.php:115 includes/log/last-visitor.php:106
1540
  #: includes/log/online.php:55 includes/log/top-referring.php:71
1541
+ #: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
1542
  #: includes/settings/tabs/wps-overview-display.php:33
1543
  #: includes/settings/tabs/wps-overview-display.php:113
1544
  msgid "Map"
1545
  msgstr "Mapa"
1546
 
1547
+ #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1548
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1549
  #: includes/log/top-referring.php:125
1550
  msgid "Page"
1551
  msgstr "Stranica"
1552
 
1553
+ #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1554
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1555
  #: includes/log/top-referring.php:125
1556
  msgid "From"
1739
  msgstr "Тиме: %s подаци"
1740
 
1741
  #: includes/log/widgets/top.visitors.php:31
1742
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
1743
+ #: wp-statistics.php:353 wp-statistics.php:429
1744
  msgid "Hits"
1745
  msgstr "Zahtevi"
1746
 
1782
  msgid "No platform data found to remove!"
1783
  msgstr ""
1784
 
1785
+ #: includes/functions/functions.php:1019
1786
  msgid "%s table data deleted successfully."
1787
  msgstr "подаци Табела %s успешно"
1788
 
1789
+ #: includes/functions/functions.php:1023
1790
  msgid "Error, %s not emptied!"
1791
  msgstr "Greška, %s nije ispražnjen!"
1792
 
1812
 
1813
  #: includes/optimization/tabs/wps-optimization-database.php:25
1814
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1815
+ #: wp-statistics.php:351 wp-statistics.php:427
1816
  msgid "Countries"
1817
  msgstr "Države"
1818
 
1828
  msgstr "Starije WP Statistics instalacije dozvoljavaju dupliranje unosa u tabeli posetilaca u izuzetnim slučajevima. Novije instalacije štite se od toga jedinstvenim indeksom na tabeli. Da biste kreirali indeks na starijim instalacijama, prvo morate obrisati duple unose. Ako kliknete na opciju \"Ažuriraj sad\", tabele posetilaca biće skenirane, dupli unosi će biti obrisani i indeksi će biti dodati tabeli."
1829
 
1830
  #: includes/optimization/tabs/wps-optimization-database.php:41
1831
+ #: includes/optimization/tabs/wps-optimization-database.php:102
1832
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1833
  msgstr "Ova operacija mogla bi da potraje malo duže ako u tabeli posetilaca ima mnogo redova."
1834
 
1838
 
1839
  #: includes/optimization/tabs/wps-optimization-database.php:47
1840
  #: includes/optimization/tabs/wps-optimization-database.php:77
1841
+ #: includes/optimization/tabs/wps-optimization-database.php:108
1842
  msgid "Congratulations, your installation is already up to date, nothing to do."
1843
  msgstr "Čestitamo! Vaša instalacija već je ažurirana, nemate šta da radite."
1844
 
1845
  #: includes/optimization/tabs/wps-optimization-export.php:8
1846
+ #: includes/optimization/wps-optimization.php:212
1847
  msgid "Export"
1848
  msgstr "Izvezi"
1849
 
1896
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1897
  #: includes/settings/tabs/wps-general.php:138
1898
  #: includes/settings/tabs/wps-general.php:143 shortcode.php:133
1899
+ #: wp-statistics.php:360 wp-statistics.php:436
1900
  msgid "Visitors"
1901
  msgstr "Posetioci"
1902
 
2211
  msgid "Install routine complete."
2212
  msgstr "Инсталл рутинску ЦОМПЛЕТЕбровсцап..."
2213
 
2214
+ #: includes/optimization/wps-optimization.php:211
2215
  msgid "Resources/Information"
2216
  msgstr "Izvori/Informacije"
2217
 
2218
+ #: includes/optimization/wps-optimization.php:213
2219
  msgid "Purging"
2220
  msgstr "Brisanje"
2221
 
2222
+ #: includes/optimization/wps-optimization.php:214
2223
  msgid "Database"
2224
  msgstr "Baza podataka"
2225
 
2226
+ #: includes/optimization/wps-optimization.php:215
2227
  msgid "Updates"
2228
  msgstr "Ažuriranja"
2229
 
2230
+ #: includes/optimization/wps-optimization.php:216
2231
  msgid "Historical"
2232
  msgstr ""
2233
 
2377
  msgstr ""
2378
 
2379
  #: includes/settings/tabs/wps-access-level.php:23
2380
+ #: includes/settings/wps-settings.php:103
2381
  msgid "Access Levels"
2382
  msgstr "Nivoi pristupa"
2383
 
2410
  msgstr "Ako vam je potrebno striktnije rešenje za raspodelu pristupa, možda ćete hteti da pogledate %s u WordPress plugin direktorijumu."
2411
 
2412
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2413
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:352
2414
+ #: wp-statistics.php:428
2415
  msgid "Exclusions"
2416
  msgstr "Izuzeci"
2417
 
2582
  msgid "Exclude the RSS feeds for registering as a hit."
2583
  msgstr ""
2584
 
2585
+ #: includes/settings/tabs/wps-externals.php:162
2586
  msgid "browscap settings"
2587
  msgstr "бровсцап Сеттингс"
2588
 
2589
+ #: includes/settings/tabs/wps-externals.php:167
2590
  msgid "browscap usage"
2591
  msgstr "бровсцап Употреба"
2592
 
2593
+ #: includes/settings/tabs/wps-externals.php:52
2594
+ #: includes/settings/tabs/wps-externals.php:76
2595
+ #: includes/settings/tabs/wps-externals.php:109
2596
+ #: includes/settings/tabs/wps-externals.php:172
2597
+ #: includes/settings/tabs/wps-externals.php:196
2598
+ #: includes/settings/tabs/wps-externals.php:235
2599
+ #: includes/settings/tabs/wps-externals.php:259
2600
  #: includes/settings/tabs/wps-general.php:76
2601
  #: includes/settings/tabs/wps-general.php:92
2602
  #: includes/settings/tabs/wps-general.php:116
2612
  #: includes/settings/tabs/wps-general.php:286
2613
  #: includes/settings/tabs/wps-general.php:325
2614
  #: includes/settings/tabs/wps-general.php:341
 
 
 
2615
  #: includes/settings/tabs/wps-maintenance.php:40
2616
  #: includes/settings/tabs/wps-maintenance.php:64
2617
  #: includes/settings/tabs/wps-notifications.php:69
2626
  msgid "Active"
2627
  msgstr "Aktivan"
2628
 
2629
+ #: includes/settings/tabs/wps-externals.php:173
2630
  msgid "The browscap database will be downloaded and used to detect robots."
2631
  msgstr "база података бровсцап ће бити преузета и користити за детекцију роботе"
2632
 
2633
+ #: includes/settings/tabs/wps-externals.php:179
2634
  msgid "Update browscap Info"
2635
  msgstr "Упдате бровсцап Инфо"
2636
 
2637
+ #: includes/settings/tabs/wps-externals.php:184
2638
  msgid "Download browscap Database"
2639
  msgstr "Довнлоад бровсцап база"
2640
 
2641
+ #: includes/settings/tabs/wps-externals.php:65
2642
+ #: includes/settings/tabs/wps-externals.php:185
2643
+ #: includes/settings/tabs/wps-externals.php:248
2644
  msgid "Save changes on this page to download the update."
2645
  msgstr "Sačuvaj izmene na ovoj stranici radi preuzimanja ažuriranja."
2646
 
2647
+ #: includes/settings/tabs/wps-externals.php:191
2648
  msgid "Schedule weekly update of browscap DB"
2649
  msgstr "Распоред недељно ажурирање бровсцап ДБ"
2650
 
2651
+ #: includes/settings/tabs/wps-externals.php:79
2652
+ #: includes/settings/tabs/wps-externals.php:199
2653
+ #: includes/settings/tabs/wps-externals.php:262
2654
  msgid "Next update will be"
2655
  msgstr "Naredno ažuriranje biće"
2656
 
2657
+ #: includes/settings/tabs/wps-externals.php:214
2658
  msgid "Download of the browscap database will be scheduled for once a week."
2659
  msgstr "преузимање базе бити заказана једном недељно."
2660
 
languages/wp_statistics-sv_SE.mo CHANGED
Binary file
languages/wp_statistics-sv_SE.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2015-05-30 14:43:08+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -10,33 +10,97 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  #: includes/settings/tabs/wps-exclusions.php:148
14
  msgid "Treat corrupt browser info as a bot"
15
- msgstr ""
16
 
17
  #: includes/log/exclusions.php:24
18
  msgid "404 Pages"
19
- msgstr ""
20
 
21
  #: includes/log/top-visitors.php:26
22
  msgid "Date"
23
- msgstr ""
24
 
25
  #: includes/settings/tabs/wps-exclusions.php:151
26
  msgid "Treat any visitor with corrupt browser info (missing IP address or empty user agent string) as a robot."
27
- msgstr ""
28
 
29
  #: includes/settings/tabs/wps-exclusions.php:215
30
  msgid "Excluded 404 pages"
31
- msgstr ""
32
 
33
  #: includes/settings/tabs/wps-exclusions.php:218
34
  msgid "Exclude any URL that returns a \"404 - Not Found\" message."
35
- msgstr ""
36
 
37
  #: wps-updates.php:29
38
  msgid "Error creating GeoIP database directory, make sure your web server has permissions to create directories in : %s"
39
- msgstr ""
40
 
41
  #: includes/settings/tabs/wps-general.php:281
42
  msgid "Add page title to empty search words"
@@ -158,7 +222,7 @@ msgstr "Totalt under hela tidsperioden"
158
  msgid "Have you thought about donating to WP Statistics?"
159
  msgstr "Kan du tänka dig en donation till WP Statistics?"
160
 
161
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:362
162
  msgid "Donate"
163
  msgstr "Donera"
164
 
@@ -194,11 +258,11 @@ msgstr "Antal inlägg"
194
  msgid "Time Frame"
195
  msgstr "Tidsram"
196
 
197
- #: includes/functions/functions.php:929
198
  msgid "to"
199
  msgstr "till"
200
 
201
- #: includes/functions/functions.php:929 includes/log/top-visitors.php:29
202
  msgid "Go"
203
  msgstr "start"
204
 
@@ -242,11 +306,11 @@ msgstr "I äldre installationer av WP Statistics kan dubbletter i besökstabelle
242
  msgid "Filtered by"
243
  msgstr "Filtrerat med"
244
 
245
- #: includes/functions/functions.php:922 includes/functions/functions.php:925
246
  msgid "Range"
247
  msgstr "Område"
248
 
249
- #: includes/functions/functions.php:929 includes/log/top-visitors.php:29
250
  msgid "MM/DD/YYYY"
251
  msgstr "MM/DD/YYYY"
252
 
@@ -290,27 +354,27 @@ msgstr "Senaste månaden (30 dagar)"
290
  msgid "Last 7 Days (Week)"
291
  msgstr "Senaste veckan (7 dagar)"
292
 
293
- #: includes/functions/functions.php:403
294
  msgid "Yahoo!"
295
  msgstr "Yahoo"
296
 
297
- #: includes/functions/functions.php:404
298
  msgid "Yandex"
299
  msgstr "Yandex"
300
 
301
- #: includes/functions/functions.php:400
302
  msgid "clearch.org"
303
  msgstr "clearch.org"
304
 
305
- #: includes/functions/functions.php:401
306
  msgid "DuckDuckGo"
307
  msgstr "DuckDuckGo"
308
 
309
- #: includes/functions/functions.php:399
310
  msgid "Bing"
311
  msgstr "Bing"
312
 
313
- #: includes/functions/functions.php:398
314
  msgid "Baidu"
315
  msgstr "Baidu"
316
 
@@ -413,8 +477,8 @@ msgid "For each visit to account for several hits. Currently %s."
413
  msgstr "Faktor för varje besök vid flera träffar. För närvarande %s."
414
 
415
  #: includes/settings/tabs/wps-general.php:177
416
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:351
417
- #: wp-statistics.php:427
418
  msgid "Pages"
419
  msgstr "Sidor"
420
 
@@ -498,75 +562,75 @@ msgstr "Inkludera totalvärden"
498
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
499
  msgstr "Lägger till en totalvärdesrad till diagram med flera värden, som exempelvis sökmotorlänkningar"
500
 
501
- #: includes/settings/tabs/wps-geoip.php:27
502
  msgid "GeoIP settings"
503
  msgstr "Inställningar för GeoIP"
504
 
505
- #: includes/settings/tabs/wps-geoip.php:32
506
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
507
  msgstr "IP-platstjänster levererade från GeoLite2 data, skapat av MaxMind, tillgänglig från %s."
508
 
509
- #: includes/settings/tabs/wps-geoip.php:42
510
  msgid "GeoIP collection"
511
  msgstr "GeoIP-insamling"
512
 
513
- #: includes/settings/tabs/wps-geoip.php:48
514
  msgid "For get more information and location (country) from visitor, enable this feature."
515
  msgstr "Lägg till den här funktionen för att få mer besökarinformation och -plats (land)."
516
 
517
- #: includes/settings/tabs/wps-geoip.php:54
518
  msgid "Update GeoIP Info"
519
  msgstr "Uppdatera information med GeoIP"
520
 
521
- #: includes/settings/tabs/wps-geoip.php:59
522
  msgid "Download GeoIP Database"
523
  msgstr "Hämta databasen med GeoIP"
524
 
525
- #: includes/settings/tabs/wps-geoip.php:66
526
  msgid "Schedule monthly update of GeoIP DB"
527
  msgstr "Schemalägg månadsvis uppdatering av databasen med GeoIP"
528
 
529
- #: includes/settings/tabs/wps-geoip.php:92
530
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
531
  msgstr "Hämtning av databasen med GeoIP schemaläggs till 2 dagar efter första tisdagen i månaden."
532
 
533
- #: includes/settings/tabs/wps-geoip.php:93
534
  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)."
535
  msgstr "Detta alternativ hämtar även databasen när den lokala storleken är mindre än 1k (vilket i regel betyder att minidatabasen som bifogats tillägget finns kvar)."
536
 
537
- #: includes/settings/tabs/wps-geoip.php:99
538
  msgid "Populate missing GeoIP after update of GeoIP DB"
539
  msgstr "Komplettera GeoIP efter uppdatering av databasen med GeoIP"
540
 
541
- #: includes/settings/tabs/wps-geoip.php:105
542
  msgid "Update any missing GeoIP data after downloading a new database."
543
  msgstr "Uppdaterar GeoIP-data som saknas när en ny databas hämtats."
544
 
545
- #: includes/settings/tabs/wps-geoip.php:111
546
  msgid "Country code for private IP addresses"
547
  msgstr "Landskod för privata IP-adresser"
548
 
549
- #: includes/settings/tabs/wps-geoip.php:116
550
  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."
551
  msgstr "Den internationella standarden med två bokstäver (t.ex. US = USA, CA = Kanada, etc.) för privata (icke-routningsbara) IP-adresser (t.ex. 10.0.0.1, 192.158.1.1, 127.0.0.1, etc.). Använd &quot;000&quot; (tre nollor) för att ange &quot;okänd&quot; landskod."
552
 
553
- #: includes/settings/tabs/wps-geoip.php:127
554
  msgid "GeoIP collection is disabled due to the following reasons:"
555
  msgstr "GeoIP-insamlingen är inaktiverad på grund av följande skäl:"
556
 
557
- #: includes/settings/tabs/wps-geoip.php:130
558
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
559
  msgstr "GeoIP-insamling kräver PHP %s eller senare, den är just nu avstängd på grund av att den installerade PHP versionen är för gammal"
560
 
561
- #: includes/settings/tabs/wps-geoip.php:135
562
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
563
  msgstr "GeoIP insamling behöver tillägget cURL i PHP vilket saknas i din version av PHP!"
564
 
565
- #: includes/settings/tabs/wps-geoip.php:141
566
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
567
  msgstr "GeoIP insamling behöver tillägget BC Math i PHP vilket saknas i din version av PHP!"
568
 
569
- #: includes/settings/tabs/wps-geoip.php:147
570
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
571
  msgstr "PHP \"säkert läge\" detekterat! GeoIP insamling saknar stöd för aktiverat \"säkert läge\" i PHP."
572
 
@@ -626,7 +690,6 @@ msgstr "Rapporterar när browscap.ini har uppdaterats."
626
 
627
  #: includes/log/exclusions.php:24
628
  #: includes/settings/tabs/wps-notifications.php:76
629
- #: includes/settings/wps-settings.php:111
630
  msgid "GeoIP"
631
  msgstr "GeoIP"
632
 
@@ -651,7 +714,7 @@ msgid "Send a report whenever the plugin is upgraded."
651
  msgstr "Rapporterar när tillägget WP Statistics har uppgraderats."
652
 
653
  #: includes/settings/tabs/wps-notifications.php:111
654
- #: includes/settings/tabs/wps-notifications.php:116 schedule.php:199
655
  msgid "Statistical reporting"
656
  msgstr "Statistikrapportering"
657
 
@@ -700,7 +763,7 @@ msgid "Any shortcode supported by your installation of WordPress, include all sh
700
  msgstr "Använd \"shortcode\" som stöds i WordPress för att ange innehållet. Se i administrationsmanualen för WP Statistics vilka koder som kan användas. Här följer ett par exempel:"
701
 
702
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
703
- #: widget.php:245 wp-statistics.php:532
704
  msgid "User Online"
705
  msgstr "Uppkopplade användare"
706
 
@@ -743,7 +806,7 @@ msgid "Summary Statistics"
743
  msgstr "Sammanfattande statistik"
744
 
745
  #: includes/settings/tabs/wps-overview-display.php:28
746
- #: includes/settings/wps-settings.php:115
747
  msgid "About"
748
  msgstr "Om"
749
 
@@ -793,7 +856,7 @@ msgstr "Inaktivera eventuellt redigerings-widget."
793
  msgid "Map type"
794
  msgstr "Karttyp"
795
 
796
- #: includes/functions/functions.php:402
797
  #: includes/settings/tabs/wps-overview-display.php:128
798
  msgid "Google"
799
  msgstr "Google"
@@ -903,35 +966,30 @@ msgstr "Radera"
903
  msgid "Remove data and settings, this action cannot be undone."
904
  msgstr "Raderar all data och alla inställningar, åtgärden kan inte ångras."
905
 
906
- #: includes/settings/wps-settings.php:106
907
  msgid "General"
908
  msgstr "Generellt"
909
 
910
- #: includes/settings/wps-settings.php:107
911
  msgid "Notifications"
912
  msgstr "Meddelanden"
913
 
914
- #: includes/settings/wps-settings.php:108
915
  msgid "Dashboard/Overview"
916
  msgstr "Översiktspanel"
917
 
918
- #: includes/settings/wps-settings.php:112
919
- msgid "browscap"
920
- msgstr "Browscap"
921
-
922
- #: includes/settings/wps-settings.php:113
923
  msgid "Maintenance"
924
  msgstr "Underhåll"
925
 
926
- #: includes/settings/wps-settings.php:114
927
  msgid "Removal"
928
  msgstr "Radering"
929
 
930
  #: includes/settings/tabs/wps-access-level.php:85
931
- #: includes/settings/tabs/wps-browscap.php:81
932
  #: includes/settings/tabs/wps-exclusions.php:234
 
933
  #: includes/settings/tabs/wps-general.php:349
934
- #: includes/settings/tabs/wps-geoip.php:158
935
  #: includes/settings/tabs/wps-maintenance.php:84
936
  #: includes/settings/tabs/wps-notifications.php:201
937
  #: includes/settings/tabs/wps-overview-display.php:388
@@ -951,7 +1009,7 @@ msgstr "Varannan vecka"
951
  msgid "Once Every 4 Weeks"
952
  msgstr "Var fjärde vecka"
953
 
954
- #: widget.php:14 wp-statistics.php:342 wp-statistics.php:380
955
  msgid "Statistics"
956
  msgstr "Statistik"
957
 
@@ -1023,7 +1081,7 @@ msgstr "Namn"
1023
  msgid "Items"
1024
  msgstr "Enheter"
1025
 
1026
- #: widget.php:254 wp-statistics.php:557
1027
  msgid "Yesterday visit"
1028
  msgstr "Besök igår"
1029
 
@@ -1051,13 +1109,13 @@ msgstr "Din nuvarande PHP-version är"
1051
  msgid "WP Statistics has been removed, please disable and delete it."
1052
  msgstr "WP Statistik har tagits bort, var vänlig inaktivera och radera det."
1053
 
1054
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1055
  #. Plugin Name of the plugin/theme
1056
  #: wp-statistics.php:37
1057
  msgid "WP Statistics"
1058
  msgstr "WP Statistics"
1059
 
1060
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1061
  #. Description of the plugin/theme
1062
  #: wp-statistics.php:38
1063
  msgid "Complete statistics for your WordPress site."
@@ -1087,99 +1145,99 @@ msgstr "GeoIP insamling är inte aktiverad, vänligen gå till %s och aktivera f
1087
  msgid "Setting page > GeoIP"
1088
  msgstr "Inställningssidan > GeoIP"
1089
 
1090
- #: wp-statistics.php:249 wp-statistics.php:361 wp-statistics.php:434
1091
  msgid "Settings"
1092
  msgstr "Inställningar"
1093
 
1094
- #: wp-statistics.php:261
1095
  msgid "Click here to visit the plugin on WordPress.org"
1096
  msgstr "Klicka här för att besöka tillägget hos WordPress.org"
1097
 
1098
- #: wp-statistics.php:261
1099
  msgid "Visit WordPress.org page"
1100
  msgstr "Besök sidan WordPress.org"
1101
 
1102
- #: wp-statistics.php:264
1103
  msgid "Click here to rate and review this plugin on WordPress.org"
1104
  msgstr "Klicka här för att betygsätta och recensera detta tillägg hos WordPress.org"
1105
 
1106
- #: wp-statistics.php:264
1107
  msgid "Rate this plugin"
1108
  msgstr "Betygsätt detta tillägg"
1109
 
1110
- #: wp-statistics.php:308
1111
  msgid "WP Statistics - Hits"
1112
  msgstr "WP Statistics - träffar"
1113
 
1114
- #: wp-statistics.php:345 wp-statistics.php:383 wp-statistics.php:421
1115
  msgid "Overview"
1116
  msgstr "Översikt"
1117
 
1118
- #: wp-statistics.php:350 wp-statistics.php:426
1119
  msgid "Online"
1120
  msgstr "Uppkopplingar"
1121
 
1122
- #: wp-statistics.php:352 wp-statistics.php:428
1123
  msgid "Referrers"
1124
- msgstr "Länkningar"
1125
 
1126
- #: shortcode.php:135 wp-statistics.php:353 wp-statistics.php:429
1127
  msgid "Searches"
1128
  msgstr "Sökningar"
1129
 
1130
- #: wp-statistics.php:354 wp-statistics.php:430
1131
  msgid "Search Words"
1132
  msgstr "Sökord"
1133
 
1134
- #: wp-statistics.php:355 wp-statistics.php:431
1135
  msgid "Top Visitors Today"
1136
  msgstr "Besökartopp idag"
1137
 
1138
- #: wp-statistics.php:360 wp-statistics.php:433
1139
  msgid "Optimization"
1140
  msgstr "Optimering"
1141
 
1142
- #: wp-statistics.php:366 wp-statistics.php:397
1143
  msgid "Manual"
1144
  msgstr "Manual"
1145
 
1146
- #: wp-statistics.php:412
1147
  msgid "Site"
1148
  msgstr "Sajt"
1149
 
1150
- #: wp-statistics.php:413
1151
  msgid "Options"
1152
  msgstr "Alternativ"
1153
 
1154
- #: wp-statistics.php:539
1155
  msgid "Today visitor"
1156
  msgstr "Besökare idag"
1157
 
1158
- #: wp-statistics.php:545
1159
  msgid "Today visit"
1160
  msgstr "Besök idag"
1161
 
1162
- #: wp-statistics.php:551
1163
  msgid "Yesterday visitor"
1164
  msgstr "Besökare igår"
1165
 
1166
- #: wp-statistics.php:563
1167
  msgid "View Stats"
1168
  msgstr "Visa statistik"
1169
 
1170
- #: wp-statistics.php:587
1171
  msgid "Download ODF file"
1172
  msgstr "Hämta ODF-fil"
1173
 
1174
- #: wp-statistics.php:588
1175
  msgid "Download HTML file"
1176
  msgstr "Hämta HTML-fil"
1177
 
1178
- #: wp-statistics.php:592
1179
  msgid "Manual file not found."
1180
  msgstr "Manualfilen hittades inte."
1181
 
1182
- #: wp-statistics.php:659 wp-statistics.php:770 wp-statistics.php:804
1183
  msgid "You do not have sufficient permissions to access this page."
1184
  msgstr "Du har inte behörighet för åtkomst till den här sidan."
1185
 
@@ -1187,7 +1245,7 @@ msgstr "Du har inte behörighet för åtkomst till den här sidan."
1187
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
1188
  msgstr "Tilläggstabeller saknas i databasen! Vänligen repetera %s installationsrutin %s."
1189
 
1190
- #: wp-statistics.php:237
1191
  msgid "WP Statistics %s installed on"
1192
  msgstr "WP Statistics %s installerad på"
1193
 
@@ -1235,9 +1293,9 @@ msgstr "browscap har redan den senaste versionen!"
1235
  msgid "Browscap.ini update on"
1236
  msgstr "Uppdatering av browscap.ini pågår"
1237
 
1238
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1239
  #. Plugin URI of the plugin/theme
1240
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1241
  #. Author URI of the plugin/theme
1242
  msgid "http://wp-statistics.com/"
1243
  msgstr "http://wp-statistics.com/"
@@ -1364,8 +1422,8 @@ msgid "Click to toggle"
1364
  msgstr "Klicka för att växla"
1365
 
1366
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1367
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:346
1368
- #: wp-statistics.php:422
1369
  msgid "Browsers"
1370
  msgstr "Webbläsare"
1371
 
@@ -1394,35 +1452,35 @@ msgstr "Lystring: Uteslutning är för närvarande inte inställd för att lagra
1394
  msgid "Exclusions Statistics"
1395
  msgstr "Uteslutningsstatistik"
1396
 
1397
- #: includes/functions/functions.php:879
1398
  msgid "10 Days"
1399
  msgstr "10 dagar"
1400
 
1401
- #: includes/functions/functions.php:879
1402
  msgid "20 Days"
1403
  msgstr "20 dagar"
1404
 
1405
- #: includes/functions/functions.php:879
1406
  msgid "30 Days"
1407
  msgstr "30 dagar"
1408
 
1409
- #: includes/functions/functions.php:879
1410
  msgid "2 Months"
1411
  msgstr "2 månader"
1412
 
1413
- #: includes/functions/functions.php:879
1414
  msgid "3 Months"
1415
  msgstr "3 månader"
1416
 
1417
- #: includes/functions/functions.php:879
1418
  msgid "6 Months"
1419
  msgstr "6 månader"
1420
 
1421
- #: includes/functions/functions.php:879
1422
  msgid "9 Months"
1423
  msgstr "9 månader"
1424
 
1425
- #: includes/functions/functions.php:879
1426
  msgid "1 Year"
1427
  msgstr "1 år"
1428
 
@@ -1471,28 +1529,28 @@ msgstr "Besökare"
1471
  msgid "Latest Search Word Statistics"
1472
  msgstr "Statistik över senaste sökorden"
1473
 
1474
- #: includes/log/last-search.php:100 includes/log/last-visitor.php:101
1475
  #: includes/log/online.php:50 includes/log/widgets/google.map.php:84
1476
  #: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
1477
- #: includes/log/widgets/words.php:36
1478
  msgid "#hash#"
1479
  msgstr "#hash#"
1480
 
1481
- #: includes/log/last-search.php:105 includes/log/last-visitor.php:106
1482
  #: includes/log/online.php:55 includes/log/top-referring.php:71
1483
- #: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:43
1484
  #: includes/settings/tabs/wps-overview-display.php:33
1485
  #: includes/settings/tabs/wps-overview-display.php:113
1486
  msgid "Map"
1487
  msgstr "Karta"
1488
 
1489
- #: includes/log/last-search.php:142 includes/log/last-visitor.php:139
1490
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1491
  #: includes/log/top-referring.php:125
1492
  msgid "Page"
1493
  msgstr "Sida"
1494
 
1495
- #: includes/log/last-search.php:142 includes/log/last-visitor.php:139
1496
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1497
  #: includes/log/top-referring.php:125
1498
  msgid "From"
@@ -1681,8 +1739,8 @@ msgid "Time: %s"
1681
  msgstr "Tid:%s"
1682
 
1683
  #: includes/log/widgets/top.visitors.php:31
1684
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:273
1685
- #: wp-statistics.php:349 wp-statistics.php:425
1686
  msgid "Hits"
1687
  msgstr "Träffar"
1688
 
@@ -1724,11 +1782,11 @@ msgstr "%s plattformsdata har raderats."
1724
  msgid "No platform data found to remove!"
1725
  msgstr "Ingen plattformsdata finns att ta bort!"
1726
 
1727
- #: includes/functions/functions.php:967
1728
  msgid "%s table data deleted successfully."
1729
  msgstr "%s tabelldata har raderats."
1730
 
1731
- #: includes/functions/functions.php:971
1732
  msgid "Error, %s not emptied!"
1733
  msgstr "Fel, %s inte tömd!"
1734
 
@@ -1754,7 +1812,7 @@ msgstr "Databasindex"
1754
 
1755
  #: includes/optimization/tabs/wps-optimization-database.php:25
1756
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1757
- #: wp-statistics.php:347 wp-statistics.php:423
1758
  msgid "Countries"
1759
  msgstr "Länder"
1760
 
@@ -1770,6 +1828,7 @@ msgid "Older installs of WP Statistics allow for duplicate entries in the visito
1770
  msgstr "I äldre installationer av WP Statistics kan dubbletter i besökartabellen uppstå. Nyare installationer har skydd mot detta med hjälp av unika index. För att skapa index på en äldre installation måste dubbletterna raderas. Klicka på \"Uppdatera nu\" för att granska besökartabellen, radera dubbletter och skapa index."
1771
 
1772
  #: includes/optimization/tabs/wps-optimization-database.php:41
 
1773
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1774
  msgstr "Operationen kan ta lång tid om det finns många rader i besökartabellen."
1775
 
@@ -1779,11 +1838,12 @@ msgstr "I äldre installationer av WP Statistics kan dubbletter i besökartabell
1779
 
1780
  #: includes/optimization/tabs/wps-optimization-database.php:47
1781
  #: includes/optimization/tabs/wps-optimization-database.php:77
 
1782
  msgid "Congratulations, your installation is already up to date, nothing to do."
1783
  msgstr "Grattis, din installation är redan sjyst, ingen åtgärd behövs."
1784
 
1785
  #: includes/optimization/tabs/wps-optimization-export.php:8
1786
- #: includes/optimization/wps-optimization.php:183
1787
  msgid "Export"
1788
  msgstr "Exportera"
1789
 
@@ -1836,7 +1896,7 @@ msgstr "Obs! Om du nyligen har städat i databasen måste du ladda om denna sida
1836
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1837
  #: includes/settings/tabs/wps-general.php:138
1838
  #: includes/settings/tabs/wps-general.php:143 shortcode.php:133
1839
- #: wp-statistics.php:356 wp-statistics.php:432
1840
  msgid "Visitors"
1841
  msgstr "Besökare"
1842
 
@@ -2151,23 +2211,23 @@ msgstr "IP-adresserna har ersatts med hashade värden."
2151
  msgid "Install routine complete."
2152
  msgstr "Installationen är klar."
2153
 
2154
- #: includes/optimization/wps-optimization.php:182
2155
  msgid "Resources/Information"
2156
  msgstr "Resurser/information"
2157
 
2158
- #: includes/optimization/wps-optimization.php:184
2159
  msgid "Purging"
2160
  msgstr "Städning"
2161
 
2162
- #: includes/optimization/wps-optimization.php:185
2163
  msgid "Database"
2164
  msgstr "Databas"
2165
 
2166
- #: includes/optimization/wps-optimization.php:186
2167
  msgid "Updates"
2168
  msgstr "Uppdateringar"
2169
 
2170
- #: includes/optimization/wps-optimization.php:187
2171
  msgid "Historical"
2172
  msgstr "Historik"
2173
 
@@ -2317,7 +2377,7 @@ msgid "This is the honey pot for WP Statistics to use, do not delete."
2317
  msgstr "Detta är en \"syltburk\" som WP Statistics använder, ta inte bort den."
2318
 
2319
  #: includes/settings/tabs/wps-access-level.php:23
2320
- #: includes/settings/wps-settings.php:109
2321
  msgid "Access Levels"
2322
  msgstr "Åtkomstnivåer"
2323
 
@@ -2350,8 +2410,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2350
  msgstr "Om du behöver en mer genomgripande lösning för att delegera åtkomst kanske du är hjälpt av %s i Tilläggskatalogen för WordPress."
2351
 
2352
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2353
- #: includes/settings/wps-settings.php:110 wp-statistics.php:348
2354
- #: wp-statistics.php:424
2355
  msgid "Exclusions"
2356
  msgstr "Uteslutningar"
2357
 
@@ -2522,16 +2582,21 @@ msgstr "Uteslut RSS feed"
2522
  msgid "Exclude the RSS feeds for registering as a hit."
2523
  msgstr "Uteslut RSS-feeds från att registreras som träff."
2524
 
2525
- #: includes/settings/tabs/wps-browscap.php:22
2526
  msgid "browscap settings"
2527
  msgstr "Inställningar för browscap"
2528
 
2529
- #: includes/settings/tabs/wps-browscap.php:27
2530
  msgid "browscap usage"
2531
  msgstr "Användning av browscap"
2532
 
2533
- #: includes/settings/tabs/wps-browscap.php:32
2534
- #: includes/settings/tabs/wps-browscap.php:56
 
 
 
 
 
2535
  #: includes/settings/tabs/wps-general.php:76
2536
  #: includes/settings/tabs/wps-general.php:92
2537
  #: includes/settings/tabs/wps-general.php:116
@@ -2547,9 +2612,6 @@ msgstr "Användning av browscap"
2547
  #: includes/settings/tabs/wps-general.php:286
2548
  #: includes/settings/tabs/wps-general.php:325
2549
  #: includes/settings/tabs/wps-general.php:341
2550
- #: includes/settings/tabs/wps-geoip.php:47
2551
- #: includes/settings/tabs/wps-geoip.php:71
2552
- #: includes/settings/tabs/wps-geoip.php:104
2553
  #: includes/settings/tabs/wps-maintenance.php:40
2554
  #: includes/settings/tabs/wps-maintenance.php:64
2555
  #: includes/settings/tabs/wps-notifications.php:69
@@ -2564,33 +2626,35 @@ msgstr "Användning av browscap"
2564
  msgid "Active"
2565
  msgstr "Aktiv"
2566
 
2567
- #: includes/settings/tabs/wps-browscap.php:33
2568
  msgid "The browscap database will be downloaded and used to detect robots."
2569
  msgstr "Databasen för browscap hämtas och används för att upptäcka robotar."
2570
 
2571
- #: includes/settings/tabs/wps-browscap.php:39
2572
  msgid "Update browscap Info"
2573
  msgstr "Uppdatera information för browscap"
2574
 
2575
- #: includes/settings/tabs/wps-browscap.php:44
2576
  msgid "Download browscap Database"
2577
  msgstr "Hämta Databasen för browscap"
2578
 
2579
- #: includes/settings/tabs/wps-browscap.php:45
2580
- #: includes/settings/tabs/wps-geoip.php:60
 
2581
  msgid "Save changes on this page to download the update."
2582
  msgstr "Spara ändringar på denna sida för att hämta uppdateringen."
2583
 
2584
- #: includes/settings/tabs/wps-browscap.php:51
2585
  msgid "Schedule weekly update of browscap DB"
2586
  msgstr "Schemalägg veckovis uppdatering av databasen för browscap"
2587
 
2588
- #: includes/settings/tabs/wps-browscap.php:59
2589
- #: includes/settings/tabs/wps-geoip.php:74
 
2590
  msgid "Next update will be"
2591
  msgstr "Nästa uppdatering kommer att vara"
2592
 
2593
- #: includes/settings/tabs/wps-browscap.php:74
2594
  msgid "Download of the browscap database will be scheduled for once a week."
2595
  msgstr "Nedladdningen av browscap databas kommer att planeras till en gång i veckan."
2596
 
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2015-07-23 14:41:20+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: includes/optimization/wps-optimization.php:173
14
+ msgid "Search table conversion complete, %d rows added."
15
+ msgstr ""
16
+
17
+ #: includes/optimization/tabs/wps-optimization-database.php:107
18
+ msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion."
19
+ msgstr ""
20
+
21
+ #: includes/optimization/tabs/wps-optimization-database.php:86
22
+ msgid "Search Table"
23
+ msgstr ""
24
+
25
+ #: includes/optimization/tabs/wps-optimization-database.php:91
26
+ msgid "Convert"
27
+ msgstr ""
28
+
29
+ #: includes/optimization/tabs/wps-optimization-database.php:100
30
+ msgid "Convert Now!"
31
+ msgstr ""
32
+
33
+ #: includes/optimization/tabs/wps-optimization-database.php:101
34
+ msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion, however the old data must first be converted to the new format before it can be used."
35
+ msgstr ""
36
+
37
+ #: includes/log/exclusions.php:24
38
+ msgid "Referrer Spam"
39
+ msgstr "Manipulerade referenskällor"
40
+
41
+ #: includes/settings/tabs/wps-externals.php:277
42
+ msgid "Download of the Piwik Referrer Spam Blacklist database will be scheduled for once a week."
43
+ msgstr "Nedladdning av Piwiks svartlistade skräpreferenser kommer att schemaläggas en gång per vecka."
44
+
45
+ #: includes/settings/wps-settings.php:105
46
+ msgid "Externals"
47
+ msgstr "Externa"
48
+
49
+ #: includes/settings/tabs/wps-externals.php:219
50
+ msgid "Piwik Referrer Spam Blacklist settings"
51
+ msgstr "Inställningar för svarta listan från Piwik med skräpreferenser"
52
+
53
+ #: includes/settings/tabs/wps-externals.php:254
54
+ msgid "Schedule weekly update of Piwik Referrer Spam Blacklist DB"
55
+ msgstr "Schemalägg veckovis uppdatering av svarta listan från Piwik med skräpreferenser"
56
+
57
+ #: includes/settings/tabs/wps-externals.php:247
58
+ msgid "Download Piwik Referrer Spam Blacklist Database"
59
+ msgstr "Hämta svarta skräpreferenslistan från Piwik"
60
+
61
+ #: includes/settings/tabs/wps-externals.php:242
62
+ msgid "Update Piwik Referrer Spam Blacklist Info"
63
+ msgstr "Uppdatera information om Piwiks svartlistade skräpreferenser"
64
+
65
+ #: includes/settings/tabs/wps-externals.php:236
66
+ msgid "The Piwik Referrer Spam Blacklist database will be downloaded and used to detect referrer spam."
67
+ msgstr "Svartlistade skräpreferenser hämtas från Piwiks databas och används för att detektera s.k. \"referrer spam\"."
68
+
69
+ #: includes/settings/tabs/wps-externals.php:224
70
+ msgid "Referrer spam blacklist is provided by Piwik, available from %s."
71
+ msgstr "Svarta listan med skräpreferenser tillhandahålls av Piwik, som är tillgänglig från %s."
72
+
73
+ #: includes/settings/tabs/wps-externals.php:230
74
+ msgid "Piwik Referrer Spam Blacklist usage"
75
+ msgstr "Användning av Piwiks svarta lista med skräpreferenser"
76
+
77
  #: includes/settings/tabs/wps-exclusions.php:148
78
  msgid "Treat corrupt browser info as a bot"
79
+ msgstr "Betrakta förvrängd webbläsarinformation som robotgenererad"
80
 
81
  #: includes/log/exclusions.php:24
82
  msgid "404 Pages"
83
+ msgstr "404-sidor"
84
 
85
  #: includes/log/top-visitors.php:26
86
  msgid "Date"
87
+ msgstr "Datum"
88
 
89
  #: includes/settings/tabs/wps-exclusions.php:151
90
  msgid "Treat any visitor with corrupt browser info (missing IP address or empty user agent string) as a robot."
91
+ msgstr "Betrakta alla besökare med förvrängd webbläsarinformation (såsom saknad ip-adress eller utebliven user-agent-sträng) som en robot."
92
 
93
  #: includes/settings/tabs/wps-exclusions.php:215
94
  msgid "Excluded 404 pages"
95
+ msgstr "Uteslutna 404-sidor"
96
 
97
  #: includes/settings/tabs/wps-exclusions.php:218
98
  msgid "Exclude any URL that returns a \"404 - Not Found\" message."
99
+ msgstr "Uteslut alla URL:er som returnerar felmeddelandet 404 (sidan kan inte hittas)."
100
 
101
  #: wps-updates.php:29
102
  msgid "Error creating GeoIP database directory, make sure your web server has permissions to create directories in : %s"
103
+ msgstr "Fel vid skapandet av katalogen för GeoIP-databasen, kontrollera om din webbserver har rättigheten att skapa kataloger i %s"
104
 
105
  #: includes/settings/tabs/wps-general.php:281
106
  msgid "Add page title to empty search words"
222
  msgid "Have you thought about donating to WP Statistics?"
223
  msgstr "Kan du tänka dig en donation till WP Statistics?"
224
 
225
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
226
  msgid "Donate"
227
  msgstr "Donera"
228
 
258
  msgid "Time Frame"
259
  msgstr "Tidsram"
260
 
261
+ #: includes/functions/functions.php:981
262
  msgid "to"
263
  msgstr "till"
264
 
265
+ #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
266
  msgid "Go"
267
  msgstr "start"
268
 
306
  msgid "Filtered by"
307
  msgstr "Filtrerat med"
308
 
309
+ #: includes/functions/functions.php:974 includes/functions/functions.php:977
310
  msgid "Range"
311
  msgstr "Område"
312
 
313
+ #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
314
  msgid "MM/DD/YYYY"
315
  msgstr "MM/DD/YYYY"
316
 
354
  msgid "Last 7 Days (Week)"
355
  msgstr "Senaste veckan (7 dagar)"
356
 
357
+ #: includes/functions/functions.php:405
358
  msgid "Yahoo!"
359
  msgstr "Yahoo"
360
 
361
+ #: includes/functions/functions.php:406
362
  msgid "Yandex"
363
  msgstr "Yandex"
364
 
365
+ #: includes/functions/functions.php:402
366
  msgid "clearch.org"
367
  msgstr "clearch.org"
368
 
369
+ #: includes/functions/functions.php:403
370
  msgid "DuckDuckGo"
371
  msgstr "DuckDuckGo"
372
 
373
+ #: includes/functions/functions.php:401
374
  msgid "Bing"
375
  msgstr "Bing"
376
 
377
+ #: includes/functions/functions.php:400
378
  msgid "Baidu"
379
  msgstr "Baidu"
380
 
477
  msgstr "Faktor för varje besök vid flera träffar. För närvarande %s."
478
 
479
  #: includes/settings/tabs/wps-general.php:177
480
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
481
+ #: wp-statistics.php:431
482
  msgid "Pages"
483
  msgstr "Sidor"
484
 
562
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
563
  msgstr "Lägger till en totalvärdesrad till diagram med flera värden, som exempelvis sökmotorlänkningar"
564
 
565
+ #: includes/settings/tabs/wps-externals.php:32
566
  msgid "GeoIP settings"
567
  msgstr "Inställningar för GeoIP"
568
 
569
+ #: includes/settings/tabs/wps-externals.php:37
570
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
571
  msgstr "IP-platstjänster levererade från GeoLite2 data, skapat av MaxMind, tillgänglig från %s."
572
 
573
+ #: includes/settings/tabs/wps-externals.php:47
574
  msgid "GeoIP collection"
575
  msgstr "GeoIP-insamling"
576
 
577
+ #: includes/settings/tabs/wps-externals.php:53
578
  msgid "For get more information and location (country) from visitor, enable this feature."
579
  msgstr "Lägg till den här funktionen för att få mer besökarinformation och -plats (land)."
580
 
581
+ #: includes/settings/tabs/wps-externals.php:59
582
  msgid "Update GeoIP Info"
583
  msgstr "Uppdatera information med GeoIP"
584
 
585
+ #: includes/settings/tabs/wps-externals.php:64
586
  msgid "Download GeoIP Database"
587
  msgstr "Hämta databasen med GeoIP"
588
 
589
+ #: includes/settings/tabs/wps-externals.php:71
590
  msgid "Schedule monthly update of GeoIP DB"
591
  msgstr "Schemalägg månadsvis uppdatering av databasen med GeoIP"
592
 
593
+ #: includes/settings/tabs/wps-externals.php:97
594
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
595
  msgstr "Hämtning av databasen med GeoIP schemaläggs till 2 dagar efter första tisdagen i månaden."
596
 
597
+ #: includes/settings/tabs/wps-externals.php:98
598
  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)."
599
  msgstr "Detta alternativ hämtar även databasen när den lokala storleken är mindre än 1k (vilket i regel betyder att minidatabasen som bifogats tillägget finns kvar)."
600
 
601
+ #: includes/settings/tabs/wps-externals.php:104
602
  msgid "Populate missing GeoIP after update of GeoIP DB"
603
  msgstr "Komplettera GeoIP efter uppdatering av databasen med GeoIP"
604
 
605
+ #: includes/settings/tabs/wps-externals.php:110
606
  msgid "Update any missing GeoIP data after downloading a new database."
607
  msgstr "Uppdaterar GeoIP-data som saknas när en ny databas hämtats."
608
 
609
+ #: includes/settings/tabs/wps-externals.php:116
610
  msgid "Country code for private IP addresses"
611
  msgstr "Landskod för privata IP-adresser"
612
 
613
+ #: includes/settings/tabs/wps-externals.php:121
614
  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."
615
  msgstr "Den internationella standarden med två bokstäver (t.ex. US = USA, CA = Kanada, etc.) för privata (icke-routningsbara) IP-adresser (t.ex. 10.0.0.1, 192.158.1.1, 127.0.0.1, etc.). Använd &quot;000&quot; (tre nollor) för att ange &quot;okänd&quot; landskod."
616
 
617
+ #: includes/settings/tabs/wps-externals.php:132
618
  msgid "GeoIP collection is disabled due to the following reasons:"
619
  msgstr "GeoIP-insamlingen är inaktiverad på grund av följande skäl:"
620
 
621
+ #: includes/settings/tabs/wps-externals.php:135
622
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
623
  msgstr "GeoIP-insamling kräver PHP %s eller senare, den är just nu avstängd på grund av att den installerade PHP versionen är för gammal"
624
 
625
+ #: includes/settings/tabs/wps-externals.php:140
626
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
627
  msgstr "GeoIP insamling behöver tillägget cURL i PHP vilket saknas i din version av PHP!"
628
 
629
+ #: includes/settings/tabs/wps-externals.php:146
630
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
631
  msgstr "GeoIP insamling behöver tillägget BC Math i PHP vilket saknas i din version av PHP!"
632
 
633
+ #: includes/settings/tabs/wps-externals.php:152
634
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
635
  msgstr "PHP \"säkert läge\" detekterat! GeoIP insamling saknar stöd för aktiverat \"säkert läge\" i PHP."
636
 
690
 
691
  #: includes/log/exclusions.php:24
692
  #: includes/settings/tabs/wps-notifications.php:76
 
693
  msgid "GeoIP"
694
  msgstr "GeoIP"
695
 
714
  msgstr "Rapporterar när tillägget WP Statistics har uppgraderats."
715
 
716
  #: includes/settings/tabs/wps-notifications.php:111
717
+ #: includes/settings/tabs/wps-notifications.php:116 schedule.php:221
718
  msgid "Statistical reporting"
719
  msgstr "Statistikrapportering"
720
 
763
  msgstr "Använd \"shortcode\" som stöds i WordPress för att ange innehållet. Se i administrationsmanualen för WP Statistics vilka koder som kan användas. Här följer ett par exempel:"
764
 
765
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
766
+ #: widget.php:245 wp-statistics.php:536
767
  msgid "User Online"
768
  msgstr "Uppkopplade användare"
769
 
806
  msgstr "Sammanfattande statistik"
807
 
808
  #: includes/settings/tabs/wps-overview-display.php:28
809
+ #: includes/settings/wps-settings.php:108
810
  msgid "About"
811
  msgstr "Om"
812
 
856
  msgid "Map type"
857
  msgstr "Karttyp"
858
 
859
+ #: includes/functions/functions.php:404
860
  #: includes/settings/tabs/wps-overview-display.php:128
861
  msgid "Google"
862
  msgstr "Google"
966
  msgid "Remove data and settings, this action cannot be undone."
967
  msgstr "Raderar all data och alla inställningar, åtgärden kan inte ångras."
968
 
969
+ #: includes/settings/wps-settings.php:100
970
  msgid "General"
971
  msgstr "Generellt"
972
 
973
+ #: includes/settings/wps-settings.php:101
974
  msgid "Notifications"
975
  msgstr "Meddelanden"
976
 
977
+ #: includes/settings/wps-settings.php:102
978
  msgid "Dashboard/Overview"
979
  msgstr "Översiktspanel"
980
 
981
+ #: includes/settings/wps-settings.php:106
 
 
 
 
982
  msgid "Maintenance"
983
  msgstr "Underhåll"
984
 
985
+ #: includes/settings/wps-settings.php:107
986
  msgid "Removal"
987
  msgstr "Radering"
988
 
989
  #: includes/settings/tabs/wps-access-level.php:85
 
990
  #: includes/settings/tabs/wps-exclusions.php:234
991
+ #: includes/settings/tabs/wps-externals.php:284
992
  #: includes/settings/tabs/wps-general.php:349
 
993
  #: includes/settings/tabs/wps-maintenance.php:84
994
  #: includes/settings/tabs/wps-notifications.php:201
995
  #: includes/settings/tabs/wps-overview-display.php:388
1009
  msgid "Once Every 4 Weeks"
1010
  msgstr "Var fjärde vecka"
1011
 
1012
+ #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
1013
  msgid "Statistics"
1014
  msgstr "Statistik"
1015
 
1081
  msgid "Items"
1082
  msgstr "Enheter"
1083
 
1084
+ #: widget.php:254 wp-statistics.php:561
1085
  msgid "Yesterday visit"
1086
  msgstr "Besök igår"
1087
 
1109
  msgid "WP Statistics has been removed, please disable and delete it."
1110
  msgstr "WP Statistik har tagits bort, var vänlig inaktivera och radera det."
1111
 
1112
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1113
  #. Plugin Name of the plugin/theme
1114
  #: wp-statistics.php:37
1115
  msgid "WP Statistics"
1116
  msgstr "WP Statistics"
1117
 
1118
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1119
  #. Description of the plugin/theme
1120
  #: wp-statistics.php:38
1121
  msgid "Complete statistics for your WordPress site."
1145
  msgid "Setting page > GeoIP"
1146
  msgstr "Inställningssidan > GeoIP"
1147
 
1148
+ #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
1149
  msgid "Settings"
1150
  msgstr "Inställningar"
1151
 
1152
+ #: wp-statistics.php:265
1153
  msgid "Click here to visit the plugin on WordPress.org"
1154
  msgstr "Klicka här för att besöka tillägget hos WordPress.org"
1155
 
1156
+ #: wp-statistics.php:265
1157
  msgid "Visit WordPress.org page"
1158
  msgstr "Besök sidan WordPress.org"
1159
 
1160
+ #: wp-statistics.php:268
1161
  msgid "Click here to rate and review this plugin on WordPress.org"
1162
  msgstr "Klicka här för att betygsätta och recensera detta tillägg hos WordPress.org"
1163
 
1164
+ #: wp-statistics.php:268
1165
  msgid "Rate this plugin"
1166
  msgstr "Betygsätt detta tillägg"
1167
 
1168
+ #: wp-statistics.php:312
1169
  msgid "WP Statistics - Hits"
1170
  msgstr "WP Statistics - träffar"
1171
 
1172
+ #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
1173
  msgid "Overview"
1174
  msgstr "Översikt"
1175
 
1176
+ #: wp-statistics.php:354 wp-statistics.php:430
1177
  msgid "Online"
1178
  msgstr "Uppkopplingar"
1179
 
1180
+ #: wp-statistics.php:356 wp-statistics.php:432
1181
  msgid "Referrers"
1182
+ msgstr "Länkreferenser"
1183
 
1184
+ #: shortcode.php:135 wp-statistics.php:357 wp-statistics.php:433
1185
  msgid "Searches"
1186
  msgstr "Sökningar"
1187
 
1188
+ #: wp-statistics.php:358 wp-statistics.php:434
1189
  msgid "Search Words"
1190
  msgstr "Sökord"
1191
 
1192
+ #: wp-statistics.php:359 wp-statistics.php:435
1193
  msgid "Top Visitors Today"
1194
  msgstr "Besökartopp idag"
1195
 
1196
+ #: wp-statistics.php:364 wp-statistics.php:437
1197
  msgid "Optimization"
1198
  msgstr "Optimering"
1199
 
1200
+ #: wp-statistics.php:370 wp-statistics.php:401
1201
  msgid "Manual"
1202
  msgstr "Manual"
1203
 
1204
+ #: wp-statistics.php:416
1205
  msgid "Site"
1206
  msgstr "Sajt"
1207
 
1208
+ #: wp-statistics.php:417
1209
  msgid "Options"
1210
  msgstr "Alternativ"
1211
 
1212
+ #: wp-statistics.php:543
1213
  msgid "Today visitor"
1214
  msgstr "Besökare idag"
1215
 
1216
+ #: wp-statistics.php:549
1217
  msgid "Today visit"
1218
  msgstr "Besök idag"
1219
 
1220
+ #: wp-statistics.php:555
1221
  msgid "Yesterday visitor"
1222
  msgstr "Besökare igår"
1223
 
1224
+ #: wp-statistics.php:567
1225
  msgid "View Stats"
1226
  msgstr "Visa statistik"
1227
 
1228
+ #: wp-statistics.php:591
1229
  msgid "Download ODF file"
1230
  msgstr "Hämta ODF-fil"
1231
 
1232
+ #: wp-statistics.php:592
1233
  msgid "Download HTML file"
1234
  msgstr "Hämta HTML-fil"
1235
 
1236
+ #: wp-statistics.php:596
1237
  msgid "Manual file not found."
1238
  msgstr "Manualfilen hittades inte."
1239
 
1240
+ #: wp-statistics.php:663 wp-statistics.php:770 wp-statistics.php:804
1241
  msgid "You do not have sufficient permissions to access this page."
1242
  msgstr "Du har inte behörighet för åtkomst till den här sidan."
1243
 
1245
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
1246
  msgstr "Tilläggstabeller saknas i databasen! Vänligen repetera %s installationsrutin %s."
1247
 
1248
+ #: wp-statistics.php:241
1249
  msgid "WP Statistics %s installed on"
1250
  msgstr "WP Statistics %s installerad på"
1251
 
1293
  msgid "Browscap.ini update on"
1294
  msgstr "Uppdatering av browscap.ini pågår"
1295
 
1296
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1297
  #. Plugin URI of the plugin/theme
1298
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1299
  #. Author URI of the plugin/theme
1300
  msgid "http://wp-statistics.com/"
1301
  msgstr "http://wp-statistics.com/"
1422
  msgstr "Klicka för att växla"
1423
 
1424
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1425
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
1426
+ #: wp-statistics.php:426
1427
  msgid "Browsers"
1428
  msgstr "Webbläsare"
1429
 
1452
  msgid "Exclusions Statistics"
1453
  msgstr "Uteslutningsstatistik"
1454
 
1455
+ #: includes/functions/functions.php:931
1456
  msgid "10 Days"
1457
  msgstr "10 dagar"
1458
 
1459
+ #: includes/functions/functions.php:931
1460
  msgid "20 Days"
1461
  msgstr "20 dagar"
1462
 
1463
+ #: includes/functions/functions.php:931
1464
  msgid "30 Days"
1465
  msgstr "30 dagar"
1466
 
1467
+ #: includes/functions/functions.php:931
1468
  msgid "2 Months"
1469
  msgstr "2 månader"
1470
 
1471
+ #: includes/functions/functions.php:931
1472
  msgid "3 Months"
1473
  msgstr "3 månader"
1474
 
1475
+ #: includes/functions/functions.php:931
1476
  msgid "6 Months"
1477
  msgstr "6 månader"
1478
 
1479
+ #: includes/functions/functions.php:931
1480
  msgid "9 Months"
1481
  msgstr "9 månader"
1482
 
1483
+ #: includes/functions/functions.php:931
1484
  msgid "1 Year"
1485
  msgstr "1 år"
1486
 
1529
  msgid "Latest Search Word Statistics"
1530
  msgstr "Statistik över senaste sökorden"
1531
 
1532
+ #: includes/log/last-search.php:110 includes/log/last-visitor.php:101
1533
  #: includes/log/online.php:50 includes/log/widgets/google.map.php:84
1534
  #: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
1535
+ #: includes/log/widgets/words.php:46
1536
  msgid "#hash#"
1537
  msgstr "#hash#"
1538
 
1539
+ #: includes/log/last-search.php:115 includes/log/last-visitor.php:106
1540
  #: includes/log/online.php:55 includes/log/top-referring.php:71
1541
+ #: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
1542
  #: includes/settings/tabs/wps-overview-display.php:33
1543
  #: includes/settings/tabs/wps-overview-display.php:113
1544
  msgid "Map"
1545
  msgstr "Karta"
1546
 
1547
+ #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1548
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1549
  #: includes/log/top-referring.php:125
1550
  msgid "Page"
1551
  msgstr "Sida"
1552
 
1553
+ #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1554
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1555
  #: includes/log/top-referring.php:125
1556
  msgid "From"
1739
  msgstr "Tid:%s"
1740
 
1741
  #: includes/log/widgets/top.visitors.php:31
1742
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
1743
+ #: wp-statistics.php:353 wp-statistics.php:429
1744
  msgid "Hits"
1745
  msgstr "Träffar"
1746
 
1782
  msgid "No platform data found to remove!"
1783
  msgstr "Ingen plattformsdata finns att ta bort!"
1784
 
1785
+ #: includes/functions/functions.php:1019
1786
  msgid "%s table data deleted successfully."
1787
  msgstr "%s tabelldata har raderats."
1788
 
1789
+ #: includes/functions/functions.php:1023
1790
  msgid "Error, %s not emptied!"
1791
  msgstr "Fel, %s inte tömd!"
1792
 
1812
 
1813
  #: includes/optimization/tabs/wps-optimization-database.php:25
1814
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1815
+ #: wp-statistics.php:351 wp-statistics.php:427
1816
  msgid "Countries"
1817
  msgstr "Länder"
1818
 
1828
  msgstr "I äldre installationer av WP Statistics kan dubbletter i besökartabellen uppstå. Nyare installationer har skydd mot detta med hjälp av unika index. För att skapa index på en äldre installation måste dubbletterna raderas. Klicka på \"Uppdatera nu\" för att granska besökartabellen, radera dubbletter och skapa index."
1829
 
1830
  #: includes/optimization/tabs/wps-optimization-database.php:41
1831
+ #: includes/optimization/tabs/wps-optimization-database.php:102
1832
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1833
  msgstr "Operationen kan ta lång tid om det finns många rader i besökartabellen."
1834
 
1838
 
1839
  #: includes/optimization/tabs/wps-optimization-database.php:47
1840
  #: includes/optimization/tabs/wps-optimization-database.php:77
1841
+ #: includes/optimization/tabs/wps-optimization-database.php:108
1842
  msgid "Congratulations, your installation is already up to date, nothing to do."
1843
  msgstr "Grattis, din installation är redan sjyst, ingen åtgärd behövs."
1844
 
1845
  #: includes/optimization/tabs/wps-optimization-export.php:8
1846
+ #: includes/optimization/wps-optimization.php:212
1847
  msgid "Export"
1848
  msgstr "Exportera"
1849
 
1896
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1897
  #: includes/settings/tabs/wps-general.php:138
1898
  #: includes/settings/tabs/wps-general.php:143 shortcode.php:133
1899
+ #: wp-statistics.php:360 wp-statistics.php:436
1900
  msgid "Visitors"
1901
  msgstr "Besökare"
1902
 
2211
  msgid "Install routine complete."
2212
  msgstr "Installationen är klar."
2213
 
2214
+ #: includes/optimization/wps-optimization.php:211
2215
  msgid "Resources/Information"
2216
  msgstr "Resurser/information"
2217
 
2218
+ #: includes/optimization/wps-optimization.php:213
2219
  msgid "Purging"
2220
  msgstr "Städning"
2221
 
2222
+ #: includes/optimization/wps-optimization.php:214
2223
  msgid "Database"
2224
  msgstr "Databas"
2225
 
2226
+ #: includes/optimization/wps-optimization.php:215
2227
  msgid "Updates"
2228
  msgstr "Uppdateringar"
2229
 
2230
+ #: includes/optimization/wps-optimization.php:216
2231
  msgid "Historical"
2232
  msgstr "Historik"
2233
 
2377
  msgstr "Detta är en \"syltburk\" som WP Statistics använder, ta inte bort den."
2378
 
2379
  #: includes/settings/tabs/wps-access-level.php:23
2380
+ #: includes/settings/wps-settings.php:103
2381
  msgid "Access Levels"
2382
  msgstr "Åtkomstnivåer"
2383
 
2410
  msgstr "Om du behöver en mer genomgripande lösning för att delegera åtkomst kanske du är hjälpt av %s i Tilläggskatalogen för WordPress."
2411
 
2412
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2413
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:352
2414
+ #: wp-statistics.php:428
2415
  msgid "Exclusions"
2416
  msgstr "Uteslutningar"
2417
 
2582
  msgid "Exclude the RSS feeds for registering as a hit."
2583
  msgstr "Uteslut RSS-feeds från att registreras som träff."
2584
 
2585
+ #: includes/settings/tabs/wps-externals.php:162
2586
  msgid "browscap settings"
2587
  msgstr "Inställningar för browscap"
2588
 
2589
+ #: includes/settings/tabs/wps-externals.php:167
2590
  msgid "browscap usage"
2591
  msgstr "Användning av browscap"
2592
 
2593
+ #: includes/settings/tabs/wps-externals.php:52
2594
+ #: includes/settings/tabs/wps-externals.php:76
2595
+ #: includes/settings/tabs/wps-externals.php:109
2596
+ #: includes/settings/tabs/wps-externals.php:172
2597
+ #: includes/settings/tabs/wps-externals.php:196
2598
+ #: includes/settings/tabs/wps-externals.php:235
2599
+ #: includes/settings/tabs/wps-externals.php:259
2600
  #: includes/settings/tabs/wps-general.php:76
2601
  #: includes/settings/tabs/wps-general.php:92
2602
  #: includes/settings/tabs/wps-general.php:116
2612
  #: includes/settings/tabs/wps-general.php:286
2613
  #: includes/settings/tabs/wps-general.php:325
2614
  #: includes/settings/tabs/wps-general.php:341
 
 
 
2615
  #: includes/settings/tabs/wps-maintenance.php:40
2616
  #: includes/settings/tabs/wps-maintenance.php:64
2617
  #: includes/settings/tabs/wps-notifications.php:69
2626
  msgid "Active"
2627
  msgstr "Aktiv"
2628
 
2629
+ #: includes/settings/tabs/wps-externals.php:173
2630
  msgid "The browscap database will be downloaded and used to detect robots."
2631
  msgstr "Databasen för browscap hämtas och används för att upptäcka robotar."
2632
 
2633
+ #: includes/settings/tabs/wps-externals.php:179
2634
  msgid "Update browscap Info"
2635
  msgstr "Uppdatera information för browscap"
2636
 
2637
+ #: includes/settings/tabs/wps-externals.php:184
2638
  msgid "Download browscap Database"
2639
  msgstr "Hämta Databasen för browscap"
2640
 
2641
+ #: includes/settings/tabs/wps-externals.php:65
2642
+ #: includes/settings/tabs/wps-externals.php:185
2643
+ #: includes/settings/tabs/wps-externals.php:248
2644
  msgid "Save changes on this page to download the update."
2645
  msgstr "Spara ändringar på denna sida för att hämta uppdateringen."
2646
 
2647
+ #: includes/settings/tabs/wps-externals.php:191
2648
  msgid "Schedule weekly update of browscap DB"
2649
  msgstr "Schemalägg veckovis uppdatering av databasen för browscap"
2650
 
2651
+ #: includes/settings/tabs/wps-externals.php:79
2652
+ #: includes/settings/tabs/wps-externals.php:199
2653
+ #: includes/settings/tabs/wps-externals.php:262
2654
  msgid "Next update will be"
2655
  msgstr "Nästa uppdatering kommer att vara"
2656
 
2657
+ #: includes/settings/tabs/wps-externals.php:214
2658
  msgid "Download of the browscap database will be scheduled for once a week."
2659
  msgstr "Nedladdningen av browscap databas kommer att planeras till en gång i veckan."
2660
 
languages/wp_statistics-tr_TR.mo CHANGED
Binary file
languages/wp_statistics-tr_TR.po CHANGED
@@ -10,6 +10,70 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  #: includes/settings/tabs/wps-exclusions.php:148
14
  msgid "Treat corrupt browser info as a bot"
15
  msgstr ""
@@ -158,7 +222,7 @@ msgstr ""
158
  msgid "Have you thought about donating to WP Statistics?"
159
  msgstr ""
160
 
161
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:362
162
  msgid "Donate"
163
  msgstr ""
164
 
@@ -194,11 +258,11 @@ msgstr ""
194
  msgid "Time Frame"
195
  msgstr ""
196
 
197
- #: includes/functions/functions.php:929
198
  msgid "to"
199
  msgstr ""
200
 
201
- #: includes/functions/functions.php:929 includes/log/top-visitors.php:29
202
  msgid "Go"
203
  msgstr ""
204
 
@@ -242,11 +306,11 @@ msgstr ""
242
  msgid "Filtered by"
243
  msgstr ""
244
 
245
- #: includes/functions/functions.php:922 includes/functions/functions.php:925
246
  msgid "Range"
247
  msgstr ""
248
 
249
- #: includes/functions/functions.php:929 includes/log/top-visitors.php:29
250
  msgid "MM/DD/YYYY"
251
  msgstr ""
252
 
@@ -290,27 +354,27 @@ msgstr ""
290
  msgid "Last 7 Days (Week)"
291
  msgstr ""
292
 
293
- #: includes/functions/functions.php:403
294
  msgid "Yahoo!"
295
  msgstr ""
296
 
297
- #: includes/functions/functions.php:404
298
  msgid "Yandex"
299
  msgstr ""
300
 
301
- #: includes/functions/functions.php:400
302
  msgid "clearch.org"
303
  msgstr ""
304
 
305
- #: includes/functions/functions.php:401
306
  msgid "DuckDuckGo"
307
  msgstr ""
308
 
309
- #: includes/functions/functions.php:399
310
  msgid "Bing"
311
  msgstr ""
312
 
313
- #: includes/functions/functions.php:398
314
  msgid "Baidu"
315
  msgstr ""
316
 
@@ -413,8 +477,8 @@ msgid "For each visit to account for several hits. Currently %s."
413
  msgstr "Muhtelif ziyaretleri olan kayıtlı üyeler. ŞuAnda %s."
414
 
415
  #: includes/settings/tabs/wps-general.php:177
416
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:351
417
- #: wp-statistics.php:427
418
  msgid "Pages"
419
  msgstr "Sayfalar"
420
 
@@ -498,75 +562,75 @@ msgstr "Toplam İçerik"
498
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
499
  msgstr "Arama Motorları Referansları gibi, Çoklu Verilerle Kartlara Bir Toplam Satırı Ekle"
500
 
501
- #: includes/settings/tabs/wps-geoip.php:27
502
  msgid "GeoIP settings"
503
  msgstr "IP Coğrafyası Kurgusu"
504
 
505
- #: includes/settings/tabs/wps-geoip.php:32
506
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
507
  msgstr "GeoLite2 veri MaxMind, %s üzerinden kullanılabilir tarafından oluşturulan tarafından sağlanan IP konum servisleri."
508
 
509
- #: includes/settings/tabs/wps-geoip.php:42
510
  msgid "GeoIP collection"
511
  msgstr "IP Coğrafyası Koleksiyonu"
512
 
513
- #: includes/settings/tabs/wps-geoip.php:48
514
  msgid "For get more information and location (country) from visitor, enable this feature."
515
  msgstr "Ziyaret ve Yer Bilgisi Hakkında Geniş Bilgi İçin Aktif Yapın."
516
 
517
- #: includes/settings/tabs/wps-geoip.php:54
518
  msgid "Update GeoIP Info"
519
  msgstr "IP Coğrafyası Bilgisi Güncelleme"
520
 
521
- #: includes/settings/tabs/wps-geoip.php:59
522
  msgid "Download GeoIP Database"
523
  msgstr "IP Coğrafyası Bilgisini İndir"
524
 
525
- #: includes/settings/tabs/wps-geoip.php:66
526
  msgid "Schedule monthly update of GeoIP DB"
527
  msgstr "Aylık Olarak IP Coğrafyası Bilgilerini Güncelle"
528
 
529
- #: includes/settings/tabs/wps-geoip.php:92
530
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
531
  msgstr "Her Ayın İlk Çarşambasından Sonra 2 Gün IP Coğrafyası Bilgisini İndir"
532
 
533
- #: includes/settings/tabs/wps-geoip.php:93
534
  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)."
535
  msgstr "1k Altındaki Bilgileri İndirme Seçeneği"
536
 
537
- #: includes/settings/tabs/wps-geoip.php:99
538
  msgid "Populate missing GeoIP after update of GeoIP DB"
539
  msgstr "Kayıp IP Coğrafyası Bilgilerini Güncelleme Sonunda Doldur"
540
 
541
- #: includes/settings/tabs/wps-geoip.php:105
542
  msgid "Update any missing GeoIP data after downloading a new database."
543
  msgstr "Kayıp IP Coğrafyası Bilgilerini Yeni Bilgilerle Güncelle."
544
 
545
- #: includes/settings/tabs/wps-geoip.php:111
546
  msgid "Country code for private IP addresses"
547
  msgstr ""
548
 
549
- #: includes/settings/tabs/wps-geoip.php:116
550
  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."
551
  msgstr ""
552
 
553
- #: includes/settings/tabs/wps-geoip.php:127
554
  msgid "GeoIP collection is disabled due to the following reasons:"
555
  msgstr "GeoIP koleksiyonu şu sebepler yüzünden geçersiz kılındı:"
556
 
557
- #: includes/settings/tabs/wps-geoip.php:130
558
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
559
  msgstr "IP Coğrafyası Koleksiyonu için %s veya Daha Üzeri PHP Versiyonu Gerekir."
560
 
561
- #: includes/settings/tabs/wps-geoip.php:135
562
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
563
  msgstr "GeoIP Koleksiyonu, cURL PHP Eklentisini gerektirir ve bu PHP versiyonunuzda yüklenmemiştir."
564
 
565
- #: includes/settings/tabs/wps-geoip.php:141
566
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
567
  msgstr "GeoIP Koleksiyonu, BC Math (Toplama) PHP Eklentisini gerektirir ve bu PHP versiyonunuzda yüklenmemiştir."
568
 
569
- #: includes/settings/tabs/wps-geoip.php:147
570
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
571
  msgstr "PHP Güvenli Modu belirlendi! Güvenli PHP Modu geçerli kılındığında GeoIP Koleksiyonu desteklenmek."
572
 
@@ -626,7 +690,6 @@ msgstr ""
626
 
627
  #: includes/log/exclusions.php:24
628
  #: includes/settings/tabs/wps-notifications.php:76
629
- #: includes/settings/wps-settings.php:111
630
  msgid "GeoIP"
631
  msgstr "IP Coğrafyası"
632
 
@@ -651,7 +714,7 @@ msgid "Send a report whenever the plugin is upgraded."
651
  msgstr ""
652
 
653
  #: includes/settings/tabs/wps-notifications.php:111
654
- #: includes/settings/tabs/wps-notifications.php:116 schedule.php:199
655
  msgid "Statistical reporting"
656
  msgstr "İstatistiki Raporlama"
657
 
@@ -700,7 +763,7 @@ msgid "Any shortcode supported by your installation of WordPress, include all sh
700
  msgstr "WordPress kurgunuz tarafından desteklenen kısakodlar ve WP İstatistik için kullanılan bütün kısakodları da desteklemektedir. Bu konudaki örnekler için bakınız:"
701
 
702
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
703
- #: widget.php:245 wp-statistics.php:532
704
  msgid "User Online"
705
  msgstr "ŞuAnda Kullanıcı"
706
 
@@ -743,7 +806,7 @@ msgid "Summary Statistics"
743
  msgstr "Özet İstatistikler"
744
 
745
  #: includes/settings/tabs/wps-overview-display.php:28
746
- #: includes/settings/wps-settings.php:115
747
  msgid "About"
748
  msgstr "Hakkında"
749
 
@@ -793,7 +856,7 @@ msgstr ""
793
  msgid "Map type"
794
  msgstr "Harita türü"
795
 
796
- #: includes/functions/functions.php:402
797
  #: includes/settings/tabs/wps-overview-display.php:128
798
  msgid "Google"
799
  msgstr "Google"
@@ -903,35 +966,30 @@ msgstr "Sil Kaldır"
903
  msgid "Remove data and settings, this action cannot be undone."
904
  msgstr "Veri ve kurgunun silinmesi işlemi geri alınamaz."
905
 
906
- #: includes/settings/wps-settings.php:106
907
  msgid "General"
908
  msgstr "Genel"
909
 
910
- #: includes/settings/wps-settings.php:107
911
  msgid "Notifications"
912
  msgstr ""
913
 
914
- #: includes/settings/wps-settings.php:108
915
  msgid "Dashboard/Overview"
916
  msgstr ""
917
 
918
- #: includes/settings/wps-settings.php:112
919
- msgid "browscap"
920
- msgstr "Browscap"
921
-
922
- #: includes/settings/wps-settings.php:113
923
  msgid "Maintenance"
924
  msgstr "Bakım"
925
 
926
- #: includes/settings/wps-settings.php:114
927
  msgid "Removal"
928
  msgstr "Kaldırma işlemi"
929
 
930
  #: includes/settings/tabs/wps-access-level.php:85
931
- #: includes/settings/tabs/wps-browscap.php:81
932
  #: includes/settings/tabs/wps-exclusions.php:234
 
933
  #: includes/settings/tabs/wps-general.php:349
934
- #: includes/settings/tabs/wps-geoip.php:158
935
  #: includes/settings/tabs/wps-maintenance.php:84
936
  #: includes/settings/tabs/wps-notifications.php:201
937
  #: includes/settings/tabs/wps-overview-display.php:388
@@ -951,7 +1009,7 @@ msgstr "Bir kez her 2 hafta"
951
  msgid "Once Every 4 Weeks"
952
  msgstr "4 haftada bir kez"
953
 
954
- #: widget.php:14 wp-statistics.php:342 wp-statistics.php:380
955
  msgid "Statistics"
956
  msgstr "İstatistikler"
957
 
@@ -1023,7 +1081,7 @@ msgstr "İsim"
1023
  msgid "Items"
1024
  msgstr "Ürünler"
1025
 
1026
- #: widget.php:254 wp-statistics.php:557
1027
  msgid "Yesterday visit"
1028
  msgstr "Dünkü Ziyaret"
1029
 
@@ -1051,13 +1109,13 @@ msgstr ""
1051
  msgid "WP Statistics has been removed, please disable and delete it."
1052
  msgstr "WP İstatistik silinip kaldırıldı, eklentiyi pasif hale getirip siliniz."
1053
 
1054
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1055
  #. Plugin Name of the plugin/theme
1056
  #: wp-statistics.php:37
1057
  msgid "WP Statistics"
1058
  msgstr "WP Statistics"
1059
 
1060
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1061
  #. Description of the plugin/theme
1062
  #: wp-statistics.php:38
1063
  msgid "Complete statistics for your WordPress site."
@@ -1087,99 +1145,99 @@ msgstr "GeoIP toplama etkin değil, lütfen %s öğesine gidin ve bu özelliği
1087
  msgid "Setting page > GeoIP"
1088
  msgstr "Ayar sayfası > GeoIP"
1089
 
1090
- #: wp-statistics.php:249 wp-statistics.php:361 wp-statistics.php:434
1091
  msgid "Settings"
1092
  msgstr "Ayarlar"
1093
 
1094
- #: wp-statistics.php:261
1095
  msgid "Click here to visit the plugin on WordPress.org"
1096
  msgstr "Eklenti WordPress.org ziyaret etmek için tıklayın"
1097
 
1098
- #: wp-statistics.php:261
1099
  msgid "Visit WordPress.org page"
1100
  msgstr "WordPress.org sayfasını ziyaret edin"
1101
 
1102
- #: wp-statistics.php:264
1103
  msgid "Click here to rate and review this plugin on WordPress.org"
1104
  msgstr "Oranı ve bu eklenti WordPress.org üzerinde incelemek için tıklayınız"
1105
 
1106
- #: wp-statistics.php:264
1107
  msgid "Rate this plugin"
1108
  msgstr "Bu eklenti oranı"
1109
 
1110
- #: wp-statistics.php:308
1111
  msgid "WP Statistics - Hits"
1112
  msgstr "WP Statisticsleri - Hits"
1113
 
1114
- #: wp-statistics.php:345 wp-statistics.php:383 wp-statistics.php:421
1115
  msgid "Overview"
1116
  msgstr "Genel Bakış"
1117
 
1118
- #: wp-statistics.php:350 wp-statistics.php:426
1119
  msgid "Online"
1120
  msgstr ""
1121
 
1122
- #: wp-statistics.php:352 wp-statistics.php:428
1123
  msgid "Referrers"
1124
  msgstr ""
1125
 
1126
- #: shortcode.php:135 wp-statistics.php:353 wp-statistics.php:429
1127
  msgid "Searches"
1128
  msgstr "Aramalar"
1129
 
1130
- #: wp-statistics.php:354 wp-statistics.php:430
1131
  msgid "Search Words"
1132
  msgstr "Arama Kelimeleri"
1133
 
1134
- #: wp-statistics.php:355 wp-statistics.php:431
1135
  msgid "Top Visitors Today"
1136
  msgstr ""
1137
 
1138
- #: wp-statistics.php:360 wp-statistics.php:433
1139
  msgid "Optimization"
1140
  msgstr "İyileştirme"
1141
 
1142
- #: wp-statistics.php:366 wp-statistics.php:397
1143
  msgid "Manual"
1144
  msgstr "Manuel"
1145
 
1146
- #: wp-statistics.php:412
1147
  msgid "Site"
1148
  msgstr ""
1149
 
1150
- #: wp-statistics.php:413
1151
  msgid "Options"
1152
  msgstr ""
1153
 
1154
- #: wp-statistics.php:539
1155
  msgid "Today visitor"
1156
  msgstr "Bugünkü Ziyaretciler"
1157
 
1158
- #: wp-statistics.php:545
1159
  msgid "Today visit"
1160
  msgstr "Bugünkü Ziyaretler"
1161
 
1162
- #: wp-statistics.php:551
1163
  msgid "Yesterday visitor"
1164
  msgstr "Dünkü Ziyaretci"
1165
 
1166
- #: wp-statistics.php:563
1167
  msgid "View Stats"
1168
  msgstr "İstatistiklere Bak"
1169
 
1170
- #: wp-statistics.php:587
1171
  msgid "Download ODF file"
1172
  msgstr "ODF Dosyası indir"
1173
 
1174
- #: wp-statistics.php:588
1175
  msgid "Download HTML file"
1176
  msgstr "HTML Dosyası indir"
1177
 
1178
- #: wp-statistics.php:592
1179
  msgid "Manual file not found."
1180
  msgstr "Manuel Dosya bulunmadı."
1181
 
1182
- #: wp-statistics.php:659 wp-statistics.php:770 wp-statistics.php:804
1183
  msgid "You do not have sufficient permissions to access this page."
1184
  msgstr "Bu sayfaya girme yetkiniz yok."
1185
 
@@ -1187,7 +1245,7 @@ msgstr "Bu sayfaya girme yetkiniz yok."
1187
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
1188
  msgstr ""
1189
 
1190
- #: wp-statistics.php:237
1191
  msgid "WP Statistics %s installed on"
1192
  msgstr ""
1193
 
@@ -1235,9 +1293,9 @@ msgstr "Geçerli sürüm de zaten Browscap!"
1235
  msgid "Browscap.ini update on"
1236
  msgstr ""
1237
 
1238
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1239
  #. Plugin URI of the plugin/theme
1240
- #. #-#-#-#-# plugin.pot (WP Statistics 9.3.1) #-#-#-#-#
1241
  #. Author URI of the plugin/theme
1242
  msgid "http://wp-statistics.com/"
1243
  msgstr ""
@@ -1364,8 +1422,8 @@ msgid "Click to toggle"
1364
  msgstr "Geçiş yapmak için tıklayın"
1365
 
1366
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1367
- #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:346
1368
- #: wp-statistics.php:422
1369
  msgid "Browsers"
1370
  msgstr "Tarayıcılar"
1371
 
@@ -1394,35 +1452,35 @@ msgstr "Dikkat: İstisnalar henüz belirlenmedi ve sonuçlar mevcut istatistikle
1394
  msgid "Exclusions Statistics"
1395
  msgstr "İstatistik İstisnaları"
1396
 
1397
- #: includes/functions/functions.php:879
1398
  msgid "10 Days"
1399
  msgstr "10 Günlük"
1400
 
1401
- #: includes/functions/functions.php:879
1402
  msgid "20 Days"
1403
  msgstr "20 Günlük"
1404
 
1405
- #: includes/functions/functions.php:879
1406
  msgid "30 Days"
1407
  msgstr "30 Günlük"
1408
 
1409
- #: includes/functions/functions.php:879
1410
  msgid "2 Months"
1411
  msgstr "2 Aylık"
1412
 
1413
- #: includes/functions/functions.php:879
1414
  msgid "3 Months"
1415
  msgstr "3 Aylık"
1416
 
1417
- #: includes/functions/functions.php:879
1418
  msgid "6 Months"
1419
  msgstr "6 Aylık"
1420
 
1421
- #: includes/functions/functions.php:879
1422
  msgid "9 Months"
1423
  msgstr "9 Aylık"
1424
 
1425
- #: includes/functions/functions.php:879
1426
  msgid "1 Year"
1427
  msgstr "1 Yıllık"
1428
 
@@ -1471,28 +1529,28 @@ msgstr "Ziyaretci"
1471
  msgid "Latest Search Word Statistics"
1472
  msgstr "En son arama Word istatistik"
1473
 
1474
- #: includes/log/last-search.php:100 includes/log/last-visitor.php:101
1475
  #: includes/log/online.php:50 includes/log/widgets/google.map.php:84
1476
  #: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
1477
- #: includes/log/widgets/words.php:36
1478
  msgid "#hash#"
1479
  msgstr "#hash #"
1480
 
1481
- #: includes/log/last-search.php:105 includes/log/last-visitor.php:106
1482
  #: includes/log/online.php:55 includes/log/top-referring.php:71
1483
- #: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:43
1484
  #: includes/settings/tabs/wps-overview-display.php:33
1485
  #: includes/settings/tabs/wps-overview-display.php:113
1486
  msgid "Map"
1487
  msgstr "Harita"
1488
 
1489
- #: includes/log/last-search.php:142 includes/log/last-visitor.php:139
1490
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1491
  #: includes/log/top-referring.php:125
1492
  msgid "Page"
1493
  msgstr "Sayfa"
1494
 
1495
- #: includes/log/last-search.php:142 includes/log/last-visitor.php:139
1496
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1497
  #: includes/log/top-referring.php:125
1498
  msgid "From"
@@ -1681,8 +1739,8 @@ msgid "Time: %s"
1681
  msgstr "Süre: %s"
1682
 
1683
  #: includes/log/widgets/top.visitors.php:31
1684
- #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:273
1685
- #: wp-statistics.php:349 wp-statistics.php:425
1686
  msgid "Hits"
1687
  msgstr "Ziyaretler"
1688
 
@@ -1724,11 +1782,11 @@ msgstr "%s platformu verileri başarıyla silindi."
1724
  msgid "No platform data found to remove!"
1725
  msgstr "Kaldırılacak herhangi bir platform bilgisi yok!"
1726
 
1727
- #: includes/functions/functions.php:967
1728
  msgid "%s table data deleted successfully."
1729
  msgstr "%s tablo verileri başarıyla silindi."
1730
 
1731
- #: includes/functions/functions.php:971
1732
  msgid "Error, %s not emptied!"
1733
  msgstr "Hata, %s Bilgi Var!"
1734
 
@@ -1754,7 +1812,7 @@ msgstr "Veritabanı dizini"
1754
 
1755
  #: includes/optimization/tabs/wps-optimization-database.php:25
1756
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1757
- #: wp-statistics.php:347 wp-statistics.php:423
1758
  msgid "Countries"
1759
  msgstr "Ülkeler"
1760
 
@@ -1770,6 +1828,7 @@ msgid "Older installs of WP Statistics allow for duplicate entries in the visito
1770
  msgstr "WP Statistics büyük yükler gibi bir köşe halinde ziyaretçi tablodaki yinelenen girişleri sağlar. Daha yeni yükler tablo üzerinde benzersiz dizin ile buna karşı korumak. Dizin üzerinde büyük yükler yinelenen girdileri oluşturmak için ilk önce silinmelidir. \"Update Now tıklatarak\" vistitors tablo tarar, yinelenen kayıtları silmek ve dizin ekleyin."
1771
 
1772
  #: includes/optimization/tabs/wps-optimization-database.php:41
 
1773
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1774
  msgstr "Bu işlem yükler ziyaretçi tablosunda birçok satır içeren üzerinde uzun zaman alabilir."
1775
 
@@ -1779,11 +1838,12 @@ msgstr "WP Statistics büyük yükler gibi bir köşe halinde ziyaretçi tabloda
1779
 
1780
  #: includes/optimization/tabs/wps-optimization-database.php:47
1781
  #: includes/optimization/tabs/wps-optimization-database.php:77
 
1782
  msgid "Congratulations, your installation is already up to date, nothing to do."
1783
  msgstr "Tebrikler, yüklemenizin zaten tarihine kadar hiçbir durumda."
1784
 
1785
  #: includes/optimization/tabs/wps-optimization-export.php:8
1786
- #: includes/optimization/wps-optimization.php:183
1787
  msgid "Export"
1788
  msgstr "Dışarı Verme"
1789
 
@@ -1836,7 +1896,7 @@ msgstr "Not: Data temizliğini yeni yaptınız, sayfayı yenilerseniz verileri d
1836
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1837
  #: includes/settings/tabs/wps-general.php:138
1838
  #: includes/settings/tabs/wps-general.php:143 shortcode.php:133
1839
- #: wp-statistics.php:356 wp-statistics.php:432
1840
  msgid "Visitors"
1841
  msgstr "Ziyaretciler"
1842
 
@@ -2151,23 +2211,23 @@ msgstr "IP adresleri karma değerleri ile değiştirilir."
2151
  msgid "Install routine complete."
2152
  msgstr "Rutin tam yükleyin."
2153
 
2154
- #: includes/optimization/wps-optimization.php:182
2155
  msgid "Resources/Information"
2156
  msgstr "Kaynaklar / Bilgiler"
2157
 
2158
- #: includes/optimization/wps-optimization.php:184
2159
  msgid "Purging"
2160
  msgstr "Temizleme"
2161
 
2162
- #: includes/optimization/wps-optimization.php:185
2163
  msgid "Database"
2164
  msgstr "Veritabanı"
2165
 
2166
- #: includes/optimization/wps-optimization.php:186
2167
  msgid "Updates"
2168
  msgstr "Güncelleme"
2169
 
2170
- #: includes/optimization/wps-optimization.php:187
2171
  msgid "Historical"
2172
  msgstr "Geçmiş"
2173
 
@@ -2317,7 +2377,7 @@ msgid "This is the honey pot for WP Statistics to use, do not delete."
2317
  msgstr ""
2318
 
2319
  #: includes/settings/tabs/wps-access-level.php:23
2320
- #: includes/settings/wps-settings.php:109
2321
  msgid "Access Levels"
2322
  msgstr "Giriş Seviyeleri"
2323
 
@@ -2350,8 +2410,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2350
  msgstr "Daha Sağlıklı Bilgiler İçin Eklenti Dizinine Bakınız : %s "
2351
 
2352
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2353
- #: includes/settings/wps-settings.php:110 wp-statistics.php:348
2354
- #: wp-statistics.php:424
2355
  msgid "Exclusions"
2356
  msgstr "İstisnalar"
2357
 
@@ -2522,16 +2582,21 @@ msgstr ""
2522
  msgid "Exclude the RSS feeds for registering as a hit."
2523
  msgstr ""
2524
 
2525
- #: includes/settings/tabs/wps-browscap.php:22
2526
  msgid "browscap settings"
2527
  msgstr "Browscap ayarları"
2528
 
2529
- #: includes/settings/tabs/wps-browscap.php:27
2530
  msgid "browscap usage"
2531
  msgstr "Browscap kullanımı"
2532
 
2533
- #: includes/settings/tabs/wps-browscap.php:32
2534
- #: includes/settings/tabs/wps-browscap.php:56
 
 
 
 
 
2535
  #: includes/settings/tabs/wps-general.php:76
2536
  #: includes/settings/tabs/wps-general.php:92
2537
  #: includes/settings/tabs/wps-general.php:116
@@ -2547,9 +2612,6 @@ msgstr "Browscap kullanımı"
2547
  #: includes/settings/tabs/wps-general.php:286
2548
  #: includes/settings/tabs/wps-general.php:325
2549
  #: includes/settings/tabs/wps-general.php:341
2550
- #: includes/settings/tabs/wps-geoip.php:47
2551
- #: includes/settings/tabs/wps-geoip.php:71
2552
- #: includes/settings/tabs/wps-geoip.php:104
2553
  #: includes/settings/tabs/wps-maintenance.php:40
2554
  #: includes/settings/tabs/wps-maintenance.php:64
2555
  #: includes/settings/tabs/wps-notifications.php:69
@@ -2564,33 +2626,35 @@ msgstr "Browscap kullanımı"
2564
  msgid "Active"
2565
  msgstr "Aktif"
2566
 
2567
- #: includes/settings/tabs/wps-browscap.php:33
2568
  msgid "The browscap database will be downloaded and used to detect robots."
2569
  msgstr "Browscap veritabanı indirilebilir ve robotlar tespit etmek için kullanılır."
2570
 
2571
- #: includes/settings/tabs/wps-browscap.php:39
2572
  msgid "Update browscap Info"
2573
  msgstr "Browscap bilgi güncelleme"
2574
 
2575
- #: includes/settings/tabs/wps-browscap.php:44
2576
  msgid "Download browscap Database"
2577
  msgstr "Browscap veritabanı indir"
2578
 
2579
- #: includes/settings/tabs/wps-browscap.php:45
2580
- #: includes/settings/tabs/wps-geoip.php:60
 
2581
  msgid "Save changes on this page to download the update."
2582
  msgstr "İndirilen Güncelleme Değişikliklerini Kaydet"
2583
 
2584
- #: includes/settings/tabs/wps-browscap.php:51
2585
  msgid "Schedule weekly update of browscap DB"
2586
  msgstr "Browscap DB ve haftalık güncelleme planı"
2587
 
2588
- #: includes/settings/tabs/wps-browscap.php:59
2589
- #: includes/settings/tabs/wps-geoip.php:74
 
2590
  msgid "Next update will be"
2591
  msgstr "Bir Sonraki Güncelleme Tarihi"
2592
 
2593
- #: includes/settings/tabs/wps-browscap.php:74
2594
  msgid "Download of the browscap database will be scheduled for once a week."
2595
  msgstr "Download browscap veritabanı için haftada planlanır."
2596
 
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: includes/optimization/wps-optimization.php:173
14
+ msgid "Search table conversion complete, %d rows added."
15
+ msgstr ""
16
+
17
+ #: includes/optimization/tabs/wps-optimization-database.php:107
18
+ msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion."
19
+ msgstr ""
20
+
21
+ #: includes/optimization/tabs/wps-optimization-database.php:86
22
+ msgid "Search Table"
23
+ msgstr ""
24
+
25
+ #: includes/optimization/tabs/wps-optimization-database.php:91
26
+ msgid "Convert"
27
+ msgstr ""
28
+
29
+ #: includes/optimization/tabs/wps-optimization-database.php:100
30
+ msgid "Convert Now!"
31
+ msgstr ""
32
+
33
+ #: includes/optimization/tabs/wps-optimization-database.php:101
34
+ msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion, however the old data must first be converted to the new format before it can be used."
35
+ msgstr ""
36
+
37
+ #: includes/log/exclusions.php:24
38
+ msgid "Referrer Spam"
39
+ msgstr ""
40
+
41
+ #: includes/settings/tabs/wps-externals.php:277
42
+ msgid "Download of the Piwik Referrer Spam Blacklist database will be scheduled for once a week."
43
+ msgstr ""
44
+
45
+ #: includes/settings/wps-settings.php:105
46
+ msgid "Externals"
47
+ msgstr ""
48
+
49
+ #: includes/settings/tabs/wps-externals.php:219
50
+ msgid "Piwik Referrer Spam Blacklist settings"
51
+ msgstr ""
52
+
53
+ #: includes/settings/tabs/wps-externals.php:254
54
+ msgid "Schedule weekly update of Piwik Referrer Spam Blacklist DB"
55
+ msgstr ""
56
+
57
+ #: includes/settings/tabs/wps-externals.php:247
58
+ msgid "Download Piwik Referrer Spam Blacklist Database"
59
+ msgstr ""
60
+
61
+ #: includes/settings/tabs/wps-externals.php:242
62
+ msgid "Update Piwik Referrer Spam Blacklist Info"
63
+ msgstr ""
64
+
65
+ #: includes/settings/tabs/wps-externals.php:236
66
+ msgid "The Piwik Referrer Spam Blacklist database will be downloaded and used to detect referrer spam."
67
+ msgstr ""
68
+
69
+ #: includes/settings/tabs/wps-externals.php:224
70
+ msgid "Referrer spam blacklist is provided by Piwik, available from %s."
71
+ msgstr ""
72
+
73
+ #: includes/settings/tabs/wps-externals.php:230
74
+ msgid "Piwik Referrer Spam Blacklist usage"
75
+ msgstr ""
76
+
77
  #: includes/settings/tabs/wps-exclusions.php:148
78
  msgid "Treat corrupt browser info as a bot"
79
  msgstr ""
222
  msgid "Have you thought about donating to WP Statistics?"
223
  msgstr ""
224
 
225
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
226
  msgid "Donate"
227
  msgstr ""
228
 
258
  msgid "Time Frame"
259
  msgstr ""
260
 
261
+ #: includes/functions/functions.php:981
262
  msgid "to"
263
  msgstr ""
264
 
265
+ #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
266
  msgid "Go"
267
  msgstr ""
268
 
306
  msgid "Filtered by"
307
  msgstr ""
308
 
309
+ #: includes/functions/functions.php:974 includes/functions/functions.php:977
310
  msgid "Range"
311
  msgstr ""
312
 
313
+ #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
314
  msgid "MM/DD/YYYY"
315
  msgstr ""
316
 
354
  msgid "Last 7 Days (Week)"
355
  msgstr ""
356
 
357
+ #: includes/functions/functions.php:405
358
  msgid "Yahoo!"
359
  msgstr ""
360
 
361
+ #: includes/functions/functions.php:406
362
  msgid "Yandex"
363
  msgstr ""
364
 
365
+ #: includes/functions/functions.php:402
366
  msgid "clearch.org"
367
  msgstr ""
368
 
369
+ #: includes/functions/functions.php:403
370
  msgid "DuckDuckGo"
371
  msgstr ""
372
 
373
+ #: includes/functions/functions.php:401
374
  msgid "Bing"
375
  msgstr ""
376
 
377
+ #: includes/functions/functions.php:400
378
  msgid "Baidu"
379
  msgstr ""
380
 
477
  msgstr "Muhtelif ziyaretleri olan kayıtlı üyeler. ŞuAnda %s."
478
 
479
  #: includes/settings/tabs/wps-general.php:177
480
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
481
+ #: wp-statistics.php:431
482
  msgid "Pages"
483
  msgstr "Sayfalar"
484
 
562
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
563
  msgstr "Arama Motorları Referansları gibi, Çoklu Verilerle Kartlara Bir Toplam Satırı Ekle"
564
 
565
+ #: includes/settings/tabs/wps-externals.php:32
566
  msgid "GeoIP settings"
567
  msgstr "IP Coğrafyası Kurgusu"
568
 
569
+ #: includes/settings/tabs/wps-externals.php:37
570
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
571
  msgstr "GeoLite2 veri MaxMind, %s üzerinden kullanılabilir tarafından oluşturulan tarafından sağlanan IP konum servisleri."
572
 
573
+ #: includes/settings/tabs/wps-externals.php:47
574
  msgid "GeoIP collection"
575
  msgstr "IP Coğrafyası Koleksiyonu"
576
 
577
+ #: includes/settings/tabs/wps-externals.php:53
578
  msgid "For get more information and location (country) from visitor, enable this feature."
579
  msgstr "Ziyaret ve Yer Bilgisi Hakkında Geniş Bilgi İçin Aktif Yapın."
580
 
581
+ #: includes/settings/tabs/wps-externals.php:59
582
  msgid "Update GeoIP Info"
583
  msgstr "IP Coğrafyası Bilgisi Güncelleme"
584
 
585
+ #: includes/settings/tabs/wps-externals.php:64
586
  msgid "Download GeoIP Database"
587
  msgstr "IP Coğrafyası Bilgisini İndir"
588
 
589
+ #: includes/settings/tabs/wps-externals.php:71
590
  msgid "Schedule monthly update of GeoIP DB"
591
  msgstr "Aylık Olarak IP Coğrafyası Bilgilerini Güncelle"
592
 
593
+ #: includes/settings/tabs/wps-externals.php:97
594
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
595
  msgstr "Her Ayın İlk Çarşambasından Sonra 2 Gün IP Coğrafyası Bilgisini İndir"
596
 
597
+ #: includes/settings/tabs/wps-externals.php:98
598
  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)."
599
  msgstr "1k Altındaki Bilgileri İndirme Seçeneği"
600
 
601
+ #: includes/settings/tabs/wps-externals.php:104
602
  msgid "Populate missing GeoIP after update of GeoIP DB"
603
  msgstr "Kayıp IP Coğrafyası Bilgilerini Güncelleme Sonunda Doldur"
604
 
605
+ #: includes/settings/tabs/wps-externals.php:110
606
  msgid "Update any missing GeoIP data after downloading a new database."
607
  msgstr "Kayıp IP Coğrafyası Bilgilerini Yeni Bilgilerle Güncelle."
608
 
609
+ #: includes/settings/tabs/wps-externals.php:116
610
  msgid "Country code for private IP addresses"
611
  msgstr ""
612
 
613
+ #: includes/settings/tabs/wps-externals.php:121
614
  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."
615
  msgstr ""
616
 
617
+ #: includes/settings/tabs/wps-externals.php:132
618
  msgid "GeoIP collection is disabled due to the following reasons:"
619
  msgstr "GeoIP koleksiyonu şu sebepler yüzünden geçersiz kılındı:"
620
 
621
+ #: includes/settings/tabs/wps-externals.php:135
622
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
623
  msgstr "IP Coğrafyası Koleksiyonu için %s veya Daha Üzeri PHP Versiyonu Gerekir."
624
 
625
+ #: includes/settings/tabs/wps-externals.php:140
626
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
627
  msgstr "GeoIP Koleksiyonu, cURL PHP Eklentisini gerektirir ve bu PHP versiyonunuzda yüklenmemiştir."
628
 
629
+ #: includes/settings/tabs/wps-externals.php:146
630
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
631
  msgstr "GeoIP Koleksiyonu, BC Math (Toplama) PHP Eklentisini gerektirir ve bu PHP versiyonunuzda yüklenmemiştir."
632
 
633
+ #: includes/settings/tabs/wps-externals.php:152
634
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
635
  msgstr "PHP Güvenli Modu belirlendi! Güvenli PHP Modu geçerli kılındığında GeoIP Koleksiyonu desteklenmek."
636
 
690
 
691
  #: includes/log/exclusions.php:24
692
  #: includes/settings/tabs/wps-notifications.php:76
 
693
  msgid "GeoIP"
694
  msgstr "IP Coğrafyası"
695
 
714
  msgstr ""
715
 
716
  #: includes/settings/tabs/wps-notifications.php:111
717
+ #: includes/settings/tabs/wps-notifications.php:116 schedule.php:221
718
  msgid "Statistical reporting"
719
  msgstr "İstatistiki Raporlama"
720
 
763
  msgstr "WordPress kurgunuz tarafından desteklenen kısakodlar ve WP İstatistik için kullanılan bütün kısakodları da desteklemektedir. Bu konudaki örnekler için bakınız:"
764
 
765
  #: includes/settings/tabs/wps-notifications.php:188 widget.php:38
766
+ #: widget.php:245 wp-statistics.php:536
767
  msgid "User Online"
768
  msgstr "ŞuAnda Kullanıcı"
769
 
806
  msgstr "Özet İstatistikler"
807
 
808
  #: includes/settings/tabs/wps-overview-display.php:28
809
+ #: includes/settings/wps-settings.php:108
810
  msgid "About"
811
  msgstr "Hakkında"
812
 
856
  msgid "Map type"
857
  msgstr "Harita türü"
858
 
859
+ #: includes/functions/functions.php:404
860
  #: includes/settings/tabs/wps-overview-display.php:128
861
  msgid "Google"
862
  msgstr "Google"
966
  msgid "Remove data and settings, this action cannot be undone."
967
  msgstr "Veri ve kurgunun silinmesi işlemi geri alınamaz."
968
 
969
+ #: includes/settings/wps-settings.php:100
970
  msgid "General"
971
  msgstr "Genel"
972
 
973
+ #: includes/settings/wps-settings.php:101
974
  msgid "Notifications"
975
  msgstr ""
976
 
977
+ #: includes/settings/wps-settings.php:102
978
  msgid "Dashboard/Overview"
979
  msgstr ""
980
 
981
+ #: includes/settings/wps-settings.php:106
 
 
 
 
982
  msgid "Maintenance"
983
  msgstr "Bakım"
984
 
985
+ #: includes/settings/wps-settings.php:107
986
  msgid "Removal"
987
  msgstr "Kaldırma işlemi"
988
 
989
  #: includes/settings/tabs/wps-access-level.php:85
 
990
  #: includes/settings/tabs/wps-exclusions.php:234
991
+ #: includes/settings/tabs/wps-externals.php:284
992
  #: includes/settings/tabs/wps-general.php:349
 
993
  #: includes/settings/tabs/wps-maintenance.php:84
994
  #: includes/settings/tabs/wps-notifications.php:201
995
  #: includes/settings/tabs/wps-overview-display.php:388
1009
  msgid "Once Every 4 Weeks"
1010
  msgstr "4 haftada bir kez"
1011
 
1012
+ #: widget.php:14 wp-statistics.php:346 wp-statistics.php:384
1013
  msgid "Statistics"
1014
  msgstr "İstatistikler"
1015
 
1081
  msgid "Items"
1082
  msgstr "Ürünler"
1083
 
1084
+ #: widget.php:254 wp-statistics.php:561
1085
  msgid "Yesterday visit"
1086
  msgstr "Dünkü Ziyaret"
1087
 
1109
  msgid "WP Statistics has been removed, please disable and delete it."
1110
  msgstr "WP İstatistik silinip kaldırıldı, eklentiyi pasif hale getirip siliniz."
1111
 
1112
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1113
  #. Plugin Name of the plugin/theme
1114
  #: wp-statistics.php:37
1115
  msgid "WP Statistics"
1116
  msgstr "WP Statistics"
1117
 
1118
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1119
  #. Description of the plugin/theme
1120
  #: wp-statistics.php:38
1121
  msgid "Complete statistics for your WordPress site."
1145
  msgid "Setting page > GeoIP"
1146
  msgstr "Ayar sayfası > GeoIP"
1147
 
1148
+ #: wp-statistics.php:253 wp-statistics.php:365 wp-statistics.php:438
1149
  msgid "Settings"
1150
  msgstr "Ayarlar"
1151
 
1152
+ #: wp-statistics.php:265
1153
  msgid "Click here to visit the plugin on WordPress.org"
1154
  msgstr "Eklenti WordPress.org ziyaret etmek için tıklayın"
1155
 
1156
+ #: wp-statistics.php:265
1157
  msgid "Visit WordPress.org page"
1158
  msgstr "WordPress.org sayfasını ziyaret edin"
1159
 
1160
+ #: wp-statistics.php:268
1161
  msgid "Click here to rate and review this plugin on WordPress.org"
1162
  msgstr "Oranı ve bu eklenti WordPress.org üzerinde incelemek için tıklayınız"
1163
 
1164
+ #: wp-statistics.php:268
1165
  msgid "Rate this plugin"
1166
  msgstr "Bu eklenti oranı"
1167
 
1168
+ #: wp-statistics.php:312
1169
  msgid "WP Statistics - Hits"
1170
  msgstr "WP Statisticsleri - Hits"
1171
 
1172
+ #: wp-statistics.php:349 wp-statistics.php:387 wp-statistics.php:425
1173
  msgid "Overview"
1174
  msgstr "Genel Bakış"
1175
 
1176
+ #: wp-statistics.php:354 wp-statistics.php:430
1177
  msgid "Online"
1178
  msgstr ""
1179
 
1180
+ #: wp-statistics.php:356 wp-statistics.php:432
1181
  msgid "Referrers"
1182
  msgstr ""
1183
 
1184
+ #: shortcode.php:135 wp-statistics.php:357 wp-statistics.php:433
1185
  msgid "Searches"
1186
  msgstr "Aramalar"
1187
 
1188
+ #: wp-statistics.php:358 wp-statistics.php:434
1189
  msgid "Search Words"
1190
  msgstr "Arama Kelimeleri"
1191
 
1192
+ #: wp-statistics.php:359 wp-statistics.php:435
1193
  msgid "Top Visitors Today"
1194
  msgstr ""
1195
 
1196
+ #: wp-statistics.php:364 wp-statistics.php:437
1197
  msgid "Optimization"
1198
  msgstr "İyileştirme"
1199
 
1200
+ #: wp-statistics.php:370 wp-statistics.php:401
1201
  msgid "Manual"
1202
  msgstr "Manuel"
1203
 
1204
+ #: wp-statistics.php:416
1205
  msgid "Site"
1206
  msgstr ""
1207
 
1208
+ #: wp-statistics.php:417
1209
  msgid "Options"
1210
  msgstr ""
1211
 
1212
+ #: wp-statistics.php:543
1213
  msgid "Today visitor"
1214
  msgstr "Bugünkü Ziyaretciler"
1215
 
1216
+ #: wp-statistics.php:549
1217
  msgid "Today visit"
1218
  msgstr "Bugünkü Ziyaretler"
1219
 
1220
+ #: wp-statistics.php:555
1221
  msgid "Yesterday visitor"
1222
  msgstr "Dünkü Ziyaretci"
1223
 
1224
+ #: wp-statistics.php:567
1225
  msgid "View Stats"
1226
  msgstr "İstatistiklere Bak"
1227
 
1228
+ #: wp-statistics.php:591
1229
  msgid "Download ODF file"
1230
  msgstr "ODF Dosyası indir"
1231
 
1232
+ #: wp-statistics.php:592
1233
  msgid "Download HTML file"
1234
  msgstr "HTML Dosyası indir"
1235
 
1236
+ #: wp-statistics.php:596
1237
  msgid "Manual file not found."
1238
  msgstr "Manuel Dosya bulunmadı."
1239
 
1240
+ #: wp-statistics.php:663 wp-statistics.php:770 wp-statistics.php:804
1241
  msgid "You do not have sufficient permissions to access this page."
1242
  msgstr "Bu sayfaya girme yetkiniz yok."
1243
 
1245
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
1246
  msgstr ""
1247
 
1248
+ #: wp-statistics.php:241
1249
  msgid "WP Statistics %s installed on"
1250
  msgstr ""
1251
 
1293
  msgid "Browscap.ini update on"
1294
  msgstr ""
1295
 
1296
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1297
  #. Plugin URI of the plugin/theme
1298
+ #. #-#-#-#-# plugin.pot (WP Statistics 9.4.1) #-#-#-#-#
1299
  #. Author URI of the plugin/theme
1300
  msgid "http://wp-statistics.com/"
1301
  msgstr ""
1422
  msgstr "Geçiş yapmak için tıklayın"
1423
 
1424
  #: includes/log/all-browsers.php:15 includes/log/widgets/browsers.php:10
1425
+ #: includes/settings/tabs/wps-overview-display.php:25 wp-statistics.php:350
1426
+ #: wp-statistics.php:426
1427
  msgid "Browsers"
1428
  msgstr "Tarayıcılar"
1429
 
1452
  msgid "Exclusions Statistics"
1453
  msgstr "İstatistik İstisnaları"
1454
 
1455
+ #: includes/functions/functions.php:931
1456
  msgid "10 Days"
1457
  msgstr "10 Günlük"
1458
 
1459
+ #: includes/functions/functions.php:931
1460
  msgid "20 Days"
1461
  msgstr "20 Günlük"
1462
 
1463
+ #: includes/functions/functions.php:931
1464
  msgid "30 Days"
1465
  msgstr "30 Günlük"
1466
 
1467
+ #: includes/functions/functions.php:931
1468
  msgid "2 Months"
1469
  msgstr "2 Aylık"
1470
 
1471
+ #: includes/functions/functions.php:931
1472
  msgid "3 Months"
1473
  msgstr "3 Aylık"
1474
 
1475
+ #: includes/functions/functions.php:931
1476
  msgid "6 Months"
1477
  msgstr "6 Aylık"
1478
 
1479
+ #: includes/functions/functions.php:931
1480
  msgid "9 Months"
1481
  msgstr "9 Aylık"
1482
 
1483
+ #: includes/functions/functions.php:931
1484
  msgid "1 Year"
1485
  msgstr "1 Yıllık"
1486
 
1529
  msgid "Latest Search Word Statistics"
1530
  msgstr "En son arama Word istatistik"
1531
 
1532
+ #: includes/log/last-search.php:110 includes/log/last-visitor.php:101
1533
  #: includes/log/online.php:50 includes/log/widgets/google.map.php:84
1534
  #: includes/log/widgets/jqv.map.php:71 includes/log/widgets/recent.php:33
1535
+ #: includes/log/widgets/words.php:46
1536
  msgid "#hash#"
1537
  msgstr "#hash #"
1538
 
1539
+ #: includes/log/last-search.php:115 includes/log/last-visitor.php:106
1540
  #: includes/log/online.php:55 includes/log/top-referring.php:71
1541
+ #: includes/log/widgets/recent.php:38 includes/log/widgets/words.php:61
1542
  #: includes/settings/tabs/wps-overview-display.php:33
1543
  #: includes/settings/tabs/wps-overview-display.php:113
1544
  msgid "Map"
1545
  msgstr "Harita"
1546
 
1547
+ #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1548
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1549
  #: includes/log/top-referring.php:125
1550
  msgid "Page"
1551
  msgstr "Sayfa"
1552
 
1553
+ #: includes/log/last-search.php:159 includes/log/last-visitor.php:139
1554
  #: includes/log/online.php:109 includes/log/top-pages.php:198
1555
  #: includes/log/top-referring.php:125
1556
  msgid "From"
1739
  msgstr "Süre: %s"
1740
 
1741
  #: includes/log/widgets/top.visitors.php:31
1742
+ #: includes/settings/tabs/wps-maintenance.php:76 wp-statistics.php:277
1743
+ #: wp-statistics.php:353 wp-statistics.php:429
1744
  msgid "Hits"
1745
  msgstr "Ziyaretler"
1746
 
1782
  msgid "No platform data found to remove!"
1783
  msgstr "Kaldırılacak herhangi bir platform bilgisi yok!"
1784
 
1785
+ #: includes/functions/functions.php:1019
1786
  msgid "%s table data deleted successfully."
1787
  msgstr "%s tablo verileri başarıyla silindi."
1788
 
1789
+ #: includes/functions/functions.php:1023
1790
  msgid "Error, %s not emptied!"
1791
  msgstr "Hata, %s Bilgi Var!"
1792
 
1812
 
1813
  #: includes/optimization/tabs/wps-optimization-database.php:25
1814
  #: includes/optimization/tabs/wps-optimization-updates.php:21
1815
+ #: wp-statistics.php:351 wp-statistics.php:427
1816
  msgid "Countries"
1817
  msgstr "Ülkeler"
1818
 
1828
  msgstr "WP Statistics büyük yükler gibi bir köşe halinde ziyaretçi tablodaki yinelenen girişleri sağlar. Daha yeni yükler tablo üzerinde benzersiz dizin ile buna karşı korumak. Dizin üzerinde büyük yükler yinelenen girdileri oluşturmak için ilk önce silinmelidir. \"Update Now tıklatarak\" vistitors tablo tarar, yinelenen kayıtları silmek ve dizin ekleyin."
1829
 
1830
  #: includes/optimization/tabs/wps-optimization-database.php:41
1831
+ #: includes/optimization/tabs/wps-optimization-database.php:102
1832
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1833
  msgstr "Bu işlem yükler ziyaretçi tablosunda birçok satır içeren üzerinde uzun zaman alabilir."
1834
 
1838
 
1839
  #: includes/optimization/tabs/wps-optimization-database.php:47
1840
  #: includes/optimization/tabs/wps-optimization-database.php:77
1841
+ #: includes/optimization/tabs/wps-optimization-database.php:108
1842
  msgid "Congratulations, your installation is already up to date, nothing to do."
1843
  msgstr "Tebrikler, yüklemenizin zaten tarihine kadar hiçbir durumda."
1844
 
1845
  #: includes/optimization/tabs/wps-optimization-export.php:8
1846
+ #: includes/optimization/wps-optimization.php:212
1847
  msgid "Export"
1848
  msgstr "Dışarı Verme"
1849
 
1896
  #: includes/optimization/tabs/wps-optimization-historical.php:26
1897
  #: includes/settings/tabs/wps-general.php:138
1898
  #: includes/settings/tabs/wps-general.php:143 shortcode.php:133
1899
+ #: wp-statistics.php:360 wp-statistics.php:436
1900
  msgid "Visitors"
1901
  msgstr "Ziyaretciler"
1902
 
2211
  msgid "Install routine complete."
2212
  msgstr "Rutin tam yükleyin."
2213
 
2214
+ #: includes/optimization/wps-optimization.php:211
2215
  msgid "Resources/Information"
2216
  msgstr "Kaynaklar / Bilgiler"
2217
 
2218
+ #: includes/optimization/wps-optimization.php:213
2219
  msgid "Purging"
2220
  msgstr "Temizleme"
2221
 
2222
+ #: includes/optimization/wps-optimization.php:214
2223
  msgid "Database"
2224
  msgstr "Veritabanı"
2225
 
2226
+ #: includes/optimization/wps-optimization.php:215
2227
  msgid "Updates"
2228
  msgstr "Güncelleme"
2229
 
2230
+ #: includes/optimization/wps-optimization.php:216
2231
  msgid "Historical"
2232
  msgstr "Geçmiş"
2233
 
2377
  msgstr ""
2378
 
2379
  #: includes/settings/tabs/wps-access-level.php:23
2380
+ #: includes/settings/wps-settings.php:103
2381
  msgid "Access Levels"
2382
  msgstr "Giriş Seviyeleri"
2383
 
2410
  msgstr "Daha Sağlıklı Bilgiler İçin Eklenti Dizinine Bakınız : %s "
2411
 
2412
  #: includes/log/exclusions.php:197 includes/settings/tabs/wps-exclusions.php:46
2413
+ #: includes/settings/wps-settings.php:104 wp-statistics.php:352
2414
+ #: wp-statistics.php:428
2415
  msgid "Exclusions"
2416
  msgstr "İstisnalar"
2417
 
2582
  msgid "Exclude the RSS feeds for registering as a hit."
2583
  msgstr ""
2584
 
2585
+ #: includes/settings/tabs/wps-externals.php:162
2586
  msgid "browscap settings"
2587
  msgstr "Browscap ayarları"
2588
 
2589
+ #: includes/settings/tabs/wps-externals.php:167
2590
  msgid "browscap usage"
2591
  msgstr "Browscap kullanımı"
2592
 
2593
+ #: includes/settings/tabs/wps-externals.php:52
2594
+ #: includes/settings/tabs/wps-externals.php:76
2595
+ #: includes/settings/tabs/wps-externals.php:109
2596
+ #: includes/settings/tabs/wps-externals.php:172
2597
+ #: includes/settings/tabs/wps-externals.php:196
2598
+ #: includes/settings/tabs/wps-externals.php:235
2599
+ #: includes/settings/tabs/wps-externals.php:259
2600
  #: includes/settings/tabs/wps-general.php:76
2601
  #: includes/settings/tabs/wps-general.php:92
2602
  #: includes/settings/tabs/wps-general.php:116
2612
  #: includes/settings/tabs/wps-general.php:286
2613
  #: includes/settings/tabs/wps-general.php:325
2614
  #: includes/settings/tabs/wps-general.php:341
 
 
 
2615
  #: includes/settings/tabs/wps-maintenance.php:40
2616
  #: includes/settings/tabs/wps-maintenance.php:64
2617
  #: includes/settings/tabs/wps-notifications.php:69
2626
  msgid "Active"
2627
  msgstr "Aktif"
2628
 
2629
+ #: includes/settings/tabs/wps-externals.php:173
2630
  msgid "The browscap database will be downloaded and used to detect robots."
2631
  msgstr "Browscap veritabanı indirilebilir ve robotlar tespit etmek için kullanılır."
2632
 
2633
+ #: includes/settings/tabs/wps-externals.php:179
2634
  msgid "Update browscap Info"
2635
  msgstr "Browscap bilgi güncelleme"
2636
 
2637
+ #: includes/settings/tabs/wps-externals.php:184
2638
  msgid "Download browscap Database"
2639
  msgstr "Browscap veritabanı indir"
2640
 
2641
+ #: includes/settings/tabs/wps-externals.php:65
2642
+ #: includes/settings/tabs/wps-externals.php:185
2643
+ #: includes/settings/tabs/wps-externals.php:248
2644
  msgid "Save changes on this page to download the update."
2645
  msgstr "İndirilen Güncelleme Değişikliklerini Kaydet"
2646
 
2647
+ #: includes/settings/tabs/wps-externals.php:191
2648
  msgid "Schedule weekly update of browscap DB"
2649
  msgstr "Browscap DB ve haftalık güncelleme planı"
2650
 
2651
+ #: includes/settings/tabs/wps-externals.php:79
2652
+ #: includes/settings/tabs/wps-externals.php:199
2653
+ #: includes/settings/tabs/wps-externals.php:262
2654
  msgid "Next update will be"
2655
  msgstr "Bir Sonraki Güncelleme Tarihi"
2656
 
2657
+ #: includes/settings/tabs/wps-externals.php:214
2658
  msgid "Download of the browscap database will be scheduled for once a week."
2659
  msgstr "Download browscap veritabanı için haftada planlanır."
2660
 
languages/wp_statistics-uk.mo CHANGED
Binary file
languages/wp_statistics-uk.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: +0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -10,361 +10,425 @@ msgstr ""
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  #: includes/settings/tabs/wps-exclusions.php:148
14
  msgid "Treat corrupt browser info as a bot"
15
- msgstr ""
16
 
17
  #: includes/log/exclusions.php:24
18
  msgid "404 Pages"
19
- msgstr ""
20
 
21
  #: includes/log/top-visitors.php:26
22
  msgid "Date"
23
- msgstr ""
24
 
25
  #: includes/settings/tabs/wps-exclusions.php:151
26
  msgid "Treat any visitor with corrupt browser info (missing IP address or empty user agent string) as a robot."
27
- msgstr ""
28
 
29
  #: includes/settings/tabs/wps-exclusions.php:215
30
  msgid "Excluded 404 pages"
31
- msgstr ""
32
 
33
  #: includes/settings/tabs/wps-exclusions.php:218
34
  msgid "Exclude any URL that returns a \"404 - Not Found\" message."
35
- msgstr ""
36
 
37
  #: wps-updates.php:29
38
  msgid "Error creating GeoIP database directory, make sure your web server has permissions to create directories in : %s"
39
- msgstr ""
40
 
41
  #: includes/settings/tabs/wps-general.php:281
42
  msgid "Add page title to empty search words"
43
- msgstr ""
44
 
45
  #: includes/settings/tabs/wps-general.php:287
46
  msgid "If a search engine is identified as the referrer but it does not include the search query this option will substitute the page title in quotes preceded by \"~:\" as the search query to help identify what the user may have been searching for."
47
- msgstr ""
48
 
49
  #: includes/settings/tabs/wps-maintenance.php:77
50
  msgid "The number of hits required to delete the visitor. Invalid values will disable the daily maintenance (must be 10 or greater)."
51
- msgstr ""
52
 
53
  #: includes/settings/tabs/wps-maintenance.php:71
54
  msgid "Prune visitors with more than"
55
- msgstr ""
56
 
57
  #: includes/settings/tabs/wps-maintenance.php:65
58
  msgid "A WP Cron job will be run daily to prune any users statistics data where the user has more than the defined number of hits in a day (aka they are probably a bot)."
59
- msgstr ""
60
 
61
  #: includes/optimization/tabs/wps-optimization-purging.php:217
62
  msgid "Purge visitors with more than"
63
- msgstr ""
64
 
65
  #: includes/optimization/tabs/wps-optimization-purging.php:222
66
  msgid "hits"
67
- msgstr ""
68
 
69
  #: includes/optimization/tabs/wps-optimization-purging.php:223
70
  msgid "Deleted user statistics data where the user has more than the defined number of hits in a day. This can be useful to clear up old data when your site has been hit by a bot. This will remove the visitor and their hits to the site, however it will not remove individual page hits as that data is not recorded on a per use basis. Minimum value is 10 hits."
71
- msgstr ""
72
 
73
  #: includes/functions/purge-hits.php:28
74
  msgid "No visitors found to purge."
75
- msgstr ""
76
 
77
  #: includes/functions/purge-hits.php:25
78
  msgid "%s records purged successfully."
79
- msgstr ""
80
 
81
  #: ajax.php:174 includes/functions/purge-hits.php:32
82
  msgid "Number of hits must be greater than or equal to 10!"
83
- msgstr ""
84
 
85
  #: shortcode.php:134
86
  msgid "Page Visits"
87
- msgstr ""
88
 
89
  #: shortcode.php:137
90
  msgid "Page Count"
91
- msgstr ""
92
 
93
  #: shortcode.php:138
94
  msgid "Comment Count"
95
- msgstr ""
96
 
97
  #: shortcode.php:139
98
  msgid "Spam Count"
99
- msgstr ""
100
 
101
  #: shortcode.php:140
102
  msgid "User Count"
103
- msgstr ""
104
 
105
  #: shortcode.php:141
106
  msgid "Post Average"
107
- msgstr ""
108
 
109
  #: shortcode.php:142
110
  msgid "Comment Average"
111
- msgstr ""
112
 
113
  #: shortcode.php:143
114
  msgid "User Average"
115
- msgstr ""
116
 
117
  #: shortcode.php:151
118
  msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
119
- msgstr ""
120
 
121
  #: shortcode.php:155
122
  msgid "Search Provider"
123
- msgstr ""
124
 
125
  #: shortcode.php:158
126
  msgid "The search provider to get statistics on."
127
- msgstr ""
128
 
129
  #: shortcode.php:162
130
  msgid "Number Format"
131
- msgstr ""
132
 
133
  #: shortcode.php:165
134
  msgid "The format to display numbers in: i18n, english, none."
135
- msgstr ""
136
 
137
  #: shortcode.php:169
138
  msgid "English"
139
- msgstr ""
140
 
141
  #: shortcode.php:170
142
  msgid "International"
143
- msgstr ""
144
 
145
  #: includes/log/exclusions.php:191 includes/log/hit-statistics.php:163
146
  msgid "Hits Statistics Summary"
147
- msgstr ""
148
 
149
  #: includes/log/exclusions.php:201 includes/log/hit-statistics.php:174
150
  msgid "Chart Total"
151
- msgstr ""
152
 
153
  #: includes/log/exclusions.php:206 includes/log/hit-statistics.php:180
154
  msgid "All Time Total"
155
- msgstr ""
156
 
157
  #: includes/log/log.php:57
158
  msgid "Have you thought about donating to WP Statistics?"
159
- msgstr ""
160
 
161
- #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:362
162
  msgid "Donate"
163
- msgstr ""
164
 
165
  #: includes/settings/tabs/wps-about.php:24
166
  msgid "Fell like showing us how much you enjoy WP Statistics? Drop by our %s page and show us some love!"
167
- msgstr ""
168
 
169
  #: includes/settings/tabs/wps-about.php:24
170
  msgid "donation"
171
- msgstr ""
172
 
173
  #: includes/log/log.php:57
174
  msgid "Donate Now!"
175
- msgstr ""
176
 
177
  #: includes/log/log.php:57
178
  msgid "Close"
179
- msgstr ""
180
 
181
  #: shortcode.php:128
182
  msgid "Select the statistic you wish to display."
183
- msgstr ""
184
 
185
  #: shortcode.php:125
186
  msgid "Statistic"
187
- msgstr ""
188
 
189
  #: shortcode.php:136
190
  msgid "Post Count"
191
- msgstr ""
192
 
193
  #: shortcode.php:148
194
  msgid "Time Frame"
195
- msgstr ""
196
 
197
- #: includes/functions/functions.php:929
198
  msgid "to"
199
- msgstr ""
200
 
201
- #: includes/functions/functions.php:929 includes/log/top-visitors.php:29
202
  msgid "Go"
203
- msgstr ""
204
 
205
  #: includes/log/top-pages.php:95
206
  msgid "Rank #5"
207
- msgstr ""
208
 
209
  #: includes/log/top-pages.php:95
210
  msgid "Rank #4"
211
- msgstr ""
212
 
213
  #: includes/log/top-pages.php:95
214
  msgid "Rank #3"
215
- msgstr ""
216
 
217
  #: includes/log/top-pages.php:95
218
  msgid "Rank #1"
219
- msgstr ""
220
 
221
  #: includes/log/top-pages.php:95
222
  msgid "Rank #2"
223
- msgstr ""
224
 
225
  #: includes/optimization/tabs/wps-optimization-database.php:56
226
  msgid "Visits Table"
227
- msgstr ""
228
 
229
  #: includes/optimization/tabs/wps-optimization-database.php:70
230
  msgid "Older installs of WP Statistics allow for duplicate entries in the visits table in a corner case. Newer installs protect against this with a unique index on the table. To create the index on the older installs duplicate entries must be deleted first. Clicking \"Update Now\" will scan the vistits table, delete duplicate entries and add the index."
231
- msgstr ""
232
 
233
  #: includes/optimization/tabs/wps-optimization-database.php:71
234
  msgid "This operation could take a long time on installs with many rows in the visits table."
235
- msgstr ""
236
 
237
  #: includes/optimization/tabs/wps-optimization-database.php:76
238
  msgid "Older installs of WP Statistics allow for duplicate entries in the visits table in a corner case. Newer installs protect against this with a unique index on the table."
239
- msgstr ""
240
 
241
  #: includes/log/last-visitor.php:68
242
  msgid "Filtered by"
243
- msgstr ""
244
 
245
- #: includes/functions/functions.php:922 includes/functions/functions.php:925
246
  msgid "Range"
247
- msgstr ""
248
 
249
- #: includes/functions/functions.php:929 includes/log/top-visitors.php:29
250
  msgid "MM/DD/YYYY"
251
- msgstr ""
252
 
253
  #: includes/settings/tabs/wps-general.php:342
254
  msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
255
- msgstr ""
256
 
257
  #: includes/settings/tabs/wps-general.php:336
258
  msgid "Force English"
259
- msgstr ""
260
 
261
  #: includes/settings/tabs/wps-general.php:331
262
  msgid "Languages"
263
- msgstr ""
264
 
265
  #: includes/settings/tabs/wps-exclusions.php:227
266
  msgid "Note: this option will NOT handle url parameters (anything after the ?), only to the script name. Entries less than two characters will be ignored."
267
- msgstr ""
268
 
269
  #: includes/settings/tabs/wps-exclusions.php:225
270
  msgid "A list of local urls (ie. /wordpress/about, one per line) to exclude from statistics collection."
271
- msgstr ""
272
 
273
  #: includes/settings/tabs/wps-exclusions.php:222
274
  msgid "Excluded URLs list"
275
- msgstr ""
276
 
277
  #: includes/log/exclusions.php:24
278
  msgid "Excluded URL"
279
- msgstr ""
280
 
281
  #: includes/log/widgets/summary.php:66
282
  msgid "Last 365 Days (Year)"
283
- msgstr ""
284
 
285
  #: includes/log/widgets/summary.php:60
286
  msgid "Last 30 Days (Month)"
287
- msgstr ""
288
 
289
  #: includes/log/widgets/summary.php:54
290
  msgid "Last 7 Days (Week)"
291
- msgstr ""
292
 
293
- #: includes/functions/functions.php:403
294
  msgid "Yahoo!"
295
- msgstr ""
296
 
297
- #: includes/functions/functions.php:404
298
  msgid "Yandex"
299
- msgstr ""
300
 
301
- #: includes/functions/functions.php:400
302
  msgid "clearch.org"
303
- msgstr ""
304
 
305
- #: includes/functions/functions.php:401
306
  msgid "DuckDuckGo"
307
- msgstr ""
308
 
309
- #: includes/functions/functions.php:399
310
  msgid "Bing"
311
- msgstr ""
312
 
313
- #: includes/functions/functions.php:398
314
  msgid "Baidu"
315
- msgstr ""
316
 
317
  #: editor.php:69
318
  msgid "Hits in the last 20 days"
319
- msgstr ""
320
 
321
  #: includes/log/exclusions.php:24
322
  msgid "Feeds"
323
- msgstr ""
324
 
325
  #: includes/log/exclusions.php:24
326
  msgid "User Role"
327
- msgstr ""
328
 
329
  #: includes/log/exclusions.php:24
330
  msgid "Login Page"
331
- msgstr ""
332
 
333
  #: includes/log/exclusions.php:24
334
  msgid "Admin Page"
335
- msgstr ""
336
 
337
  #: includes/log/exclusions.php:24
338
  msgid "Self Referral"
339
- msgstr ""
340
 
341
  #: includes/log/exclusions.php:24
342
  msgid "IP Match"
343
- msgstr ""
344
 
345
  #: includes/log/exclusions.php:24
346
  msgid "Robot"
347
- msgstr ""
348
 
349
  #: includes/log/online.php:100
350
  msgid "Currently there are no users online in the site."
351
- msgstr ""
352
 
353
  #: includes/log/exclusions.php:24
354
  msgid "Robot Threshold"
355
- msgstr ""
356
 
357
  #: includes/log/exclusions.php:24
358
  msgid "Honey Pot"
359
- msgstr ""
360
 
361
  #: includes/log/widgets/page.php:8
362
  msgid "Page Trending Stats"
363
- msgstr ""
364
 
365
  #: includes/log/exclusions.php:24
366
  msgid "Hostname"
367
- msgstr ""
368
 
369
  #: includes/settings/tabs/wps-general.php:93
370
  #: includes/settings/tabs/wps-general.php:133
@@ -374,977 +438,971 @@ msgstr ""
374
  #: includes/settings/tabs/wps-general.php:229
375
  #: includes/settings/tabs/wps-notifications.php:122
376
  msgid "Enable or disable this feature"
377
- msgstr ""
378
 
379
  #: includes/settings/tabs/wps-general.php:99
380
  msgid "Check for online users every"
381
- msgstr ""
382
 
383
  #: includes/settings/tabs/wps-general.php:104
384
  msgid "Second"
385
- msgstr ""
386
 
387
  #: includes/settings/tabs/wps-general.php:105
388
  msgid "Time for the check accurate online user in the site. Now: %s Second"
389
- msgstr ""
390
 
391
  #: includes/settings/tabs/wps-general.php:111
392
  msgid "Record all user"
393
- msgstr ""
394
 
395
  #: includes/settings/tabs/wps-general.php:117
396
  msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
397
- msgstr ""
398
 
399
  #: includes/settings/tabs/wps-general.php:155
400
  msgid "Store entire user agent string"
401
- msgstr ""
402
 
403
  #: includes/settings/tabs/wps-general.php:161
404
  msgid "Only enabled for debugging"
405
- msgstr ""
406
 
407
  #: includes/settings/tabs/wps-general.php:167
408
  msgid "Coefficient per visitor"
409
- msgstr ""
410
 
411
  #: includes/settings/tabs/wps-general.php:172
412
  msgid "For each visit to account for several hits. Currently %s."
413
- msgstr ""
414
 
415
  #: includes/settings/tabs/wps-general.php:177
416
- #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:351
417
- #: wp-statistics.php:427
418
  msgid "Pages"
419
- msgstr ""
420
 
421
  #: includes/settings/tabs/wps-general.php:194
422
  msgid "Track all pages"
423
- msgstr ""
424
 
425
  #: includes/settings/tabs/wps-general.php:209
426
  msgid "Strip parameters from URI"
427
- msgstr ""
428
 
429
  #: includes/settings/tabs/wps-general.php:215
430
  msgid "This will remove anything after the ? in a URL."
431
- msgstr ""
432
 
433
  #: includes/settings/tabs/wps-general.php:223
434
  msgid "Disable hits column in post/pages list"
435
- msgstr ""
436
 
437
  #: includes/settings/tabs/wps-general.php:234
438
  msgid "Miscellaneous"
439
- msgstr ""
440
 
441
  #: includes/settings/tabs/wps-general.php:239
442
  msgid "Show stats in menu bar"
443
- msgstr ""
444
 
445
  #: includes/settings/tabs/wps-general.php:244
446
  msgid "No"
447
- msgstr ""
448
 
449
  #: includes/settings/tabs/wps-general.php:245
450
  msgid "Yes"
451
- msgstr ""
452
 
453
  #: includes/settings/tabs/wps-general.php:247
454
  msgid "Show stats in admin menu bar"
455
- msgstr ""
456
 
457
  #: includes/settings/tabs/wps-general.php:253
458
  msgid "Hide admin notices about non active features"
459
- msgstr ""
460
 
461
  #: includes/settings/tabs/wps-general.php:259
462
  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."
463
- msgstr ""
464
 
465
  #: includes/settings/tabs/wps-general.php:265
466
  msgid "Delete the manual"
467
- msgstr ""
468
 
469
  #: includes/settings/tabs/wps-general.php:271
470
  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."
471
- msgstr ""
472
 
473
  #: includes/settings/tabs/wps-general.php:276
474
  msgid "Search Engines"
475
- msgstr ""
476
 
477
  #: includes/settings/tabs/wps-general.php:293
478
  msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
479
- msgstr ""
480
 
481
  #: includes/settings/tabs/wps-general.php:308
482
  msgid "disable"
483
- msgstr ""
484
 
485
  #: includes/settings/tabs/wps-general.php:309
486
  msgid "Disable %s from data collection and reporting."
487
- msgstr ""
488
 
489
  #: includes/settings/tabs/wps-general.php:315
490
  msgid "Charts"
491
- msgstr ""
492
 
493
  #: includes/settings/tabs/wps-general.php:320
494
  msgid "Include totals"
495
- msgstr ""
496
 
497
  #: includes/settings/tabs/wps-general.php:326
498
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
499
- msgstr ""
500
 
501
- #: includes/settings/tabs/wps-geoip.php:27
502
  msgid "GeoIP settings"
503
- msgstr ""
504
 
505
- #: includes/settings/tabs/wps-geoip.php:32
506
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
507
- msgstr ""
508
 
509
- #: includes/settings/tabs/wps-geoip.php:42
510
  msgid "GeoIP collection"
511
- msgstr ""
512
 
513
- #: includes/settings/tabs/wps-geoip.php:48
514
  msgid "For get more information and location (country) from visitor, enable this feature."
515
- msgstr ""
516
 
517
- #: includes/settings/tabs/wps-geoip.php:54
518
  msgid "Update GeoIP Info"
519
- msgstr ""
520
 
521
- #: includes/settings/tabs/wps-geoip.php:59
522
  msgid "Download GeoIP Database"
523
- msgstr ""
524
 
525
- #: includes/settings/tabs/wps-geoip.php:66
526
  msgid "Schedule monthly update of GeoIP DB"
527
- msgstr ""
528
 
529
- #: includes/settings/tabs/wps-geoip.php:92
530
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
531
- msgstr ""
532
 
533
- #: includes/settings/tabs/wps-geoip.php:93
534
  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)."
535
- msgstr ""
536
 
537
- #: includes/settings/tabs/wps-geoip.php:99
538
  msgid "Populate missing GeoIP after update of GeoIP DB"
539
- msgstr ""
540
 
541
- #: includes/settings/tabs/wps-geoip.php:105
542
  msgid "Update any missing GeoIP data after downloading a new database."
543
- msgstr ""
544
 
545
- #: includes/settings/tabs/wps-geoip.php:111
546
  msgid "Country code for private IP addresses"
547
- msgstr ""
548
 
549
- #: includes/settings/tabs/wps-geoip.php:116
550
  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."
551
- msgstr ""
552
 
553
- #: includes/settings/tabs/wps-geoip.php:127
554
  msgid "GeoIP collection is disabled due to the following reasons:"
555
- msgstr ""
556
 
557
- #: includes/settings/tabs/wps-geoip.php:130
558
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
559
- msgstr ""
560
 
561
- #: includes/settings/tabs/wps-geoip.php:135
562
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
563
- msgstr ""
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2015-07-26 15:21:34+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
10
  "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
 
13
+ #: includes/optimization/wps-optimization.php:173
14
+ msgid "Search table conversion complete, %d rows added."
15
+ msgstr "Конвертування пошукової таблиці завершено, %d рядків додано."
16
+
17
+ #: includes/optimization/tabs/wps-optimization-database.php:107
18
+ msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion."
19
+ msgstr "Старі програми установки WP Statistics зберігають інформацію про пошуки в таблиці відвідувачів, які можуть стати проблемою продуктивності при великих наборах даних. Нова таблиця створена, щоб тримати цю інформацію в більших масштабах."
20
+
21
+ #: includes/optimization/tabs/wps-optimization-database.php:86
22
+ msgid "Search Table"
23
+ msgstr "Пошукова таблиця"
24
+
25
+ #: includes/optimization/tabs/wps-optimization-database.php:91
26
+ msgid "Convert"
27
+ msgstr "Конвертувати"
28
+
29
+ #: includes/optimization/tabs/wps-optimization-database.php:100
30
+ msgid "Convert Now!"
31
+ msgstr "Конвертувати зараз!"
32
+
33
+ #: includes/optimization/tabs/wps-optimization-database.php:101
34
+ msgid "Older installs of WP Statistics store details of searches in the visitors table which can become a performance issue on large datasets. A new table has been created to hold this information in a more scalable fashion, however the old data must first be converted to the new format before it can be used."
35
+ msgstr "Старі установки WP Statistics зберігають інформацію про пошуки в таблиці відвідувачів, які можуть стати проблемою продуктивності при великих наборах даних. Нова таблиця була створена, щоб тримати цю інформацію в більших масштабах, однак старі дані повинні треба спочатку конвертувати в новий формат перед початком використання."
36
+
37
+ #: includes/log/exclusions.php:24
38
+ msgid "Referrer Spam"
39
+ msgstr "Referrer Spam"
40
+
41
+ #: includes/settings/tabs/wps-externals.php:277
42
+ msgid "Download of the Piwik Referrer Spam Blacklist database will be scheduled for once a week."
43
+ msgstr "Завантаження бази даних Piwik Referrer Spam Blacklist заплановано один раз на тиждень."
44
+
45
+ #: includes/settings/wps-settings.php:105
46
+ msgid "Externals"
47
+ msgstr "Зовнішні специфікації"
48
+
49
+ #: includes/settings/tabs/wps-externals.php:219
50
+ msgid "Piwik Referrer Spam Blacklist settings"
51
+ msgstr "Налаштування Piwik Referrer Spam Blacklist "
52
+
53
+ #: includes/settings/tabs/wps-externals.php:254
54
+ msgid "Schedule weekly update of Piwik Referrer Spam Blacklist DB"
55
+ msgstr "Графік щотижневих оновлень Piwik Referrer Spam Blacklist DB"
56
+
57
+ #: includes/settings/tabs/wps-externals.php:247
58
+ msgid "Download Piwik Referrer Spam Blacklist Database"
59
+ msgstr "Хавантажити базу даних Piwik Referrer Spam Blacklist "
60
+
61
+ #: includes/settings/tabs/wps-externals.php:242
62
+ msgid "Update Piwik Referrer Spam Blacklist Info"
63
+ msgstr "Оновити інформацію Piwik Referrer Spam Blacklist"
64
+
65
+ #: includes/settings/tabs/wps-externals.php:236
66
+ msgid "The Piwik Referrer Spam Blacklist database will be downloaded and used to detect referrer spam."
67
+ msgstr "База даних Piwik Referrer Spam Blacklist буде завантажена та буде використовуватись для виявлення спаму. "
68
+
69
+ #: includes/settings/tabs/wps-externals.php:224
70
+ msgid "Referrer spam blacklist is provided by Piwik, available from %s."
71
+ msgstr "Referrer spam blacklist від Piwik, доступний з %s."
72
+
73
+ #: includes/settings/tabs/wps-externals.php:230
74
+ msgid "Piwik Referrer Spam Blacklist usage"
75
+ msgstr "Використання Piwik Referrer Spam Blacklist "
76
+
77
  #: includes/settings/tabs/wps-exclusions.php:148
78
  msgid "Treat corrupt browser info as a bot"
79
+ msgstr "Вважати пошкоджені дані браузера ботами"
80
 
81
  #: includes/log/exclusions.php:24
82
  msgid "404 Pages"
83
+ msgstr "Сторінки 404"
84
 
85
  #: includes/log/top-visitors.php:26
86
  msgid "Date"
87
+ msgstr "Дата"
88
 
89
  #: includes/settings/tabs/wps-exclusions.php:151
90
  msgid "Treat any visitor with corrupt browser info (missing IP address or empty user agent string) as a robot."
91
+ msgstr "Вважати будь-якого відвідувача з пошкодженою інформацією браузера (без ІР адреси або пустим рядком про користувача) роботом."
92
 
93
  #: includes/settings/tabs/wps-exclusions.php:215
94
  msgid "Excluded 404 pages"
95
+ msgstr "Виключені сторінки 404 "
96
 
97
  #: includes/settings/tabs/wps-exclusions.php:218
98
  msgid "Exclude any URL that returns a \"404 - Not Found\" message."
99
+ msgstr "Вилучити будь-який URL який повертає повідомлення \"404-не знайдено\""
100
 
101
  #: wps-updates.php:29
102
  msgid "Error creating GeoIP database directory, make sure your web server has permissions to create directories in : %s"
103
+ msgstr "Помилка при створенні каталога бази даних GeoIP , переконайтеся, що ваш веб-сервер має права на створення каталогів в: %s"
104
 
105
  #: includes/settings/tabs/wps-general.php:281
106
  msgid "Add page title to empty search words"
107
+ msgstr "Додати заголовок сторінки до порожніх пошукових слів"
108
 
109
  #: includes/settings/tabs/wps-general.php:287
110
  msgid "If a search engine is identified as the referrer but it does not include the search query this option will substitute the page title in quotes preceded by \"~:\" as the search query to help identify what the user may have been searching for."
111
+ msgstr "Якщо пошукова система визначена як реферер, але вона не включає пошуковий запит, цей варіант замінить заголовок сторінки в лапках, після \"~:\" як пошуковий запит, щоб допомогти визначити, що користувач міг шукати."
112
 
113
  #: includes/settings/tabs/wps-maintenance.php:77
114
  msgid "The number of hits required to delete the visitor. Invalid values will disable the daily maintenance (must be 10 or greater)."
115
+ msgstr "Кількість переглядів необхідних для видалення відвідувача. Неприпустимі значення відключатимуть щоденне обслуговування (повинно бути 10 або більше)."
116
 
117
  #: includes/settings/tabs/wps-maintenance.php:71
118
  msgid "Prune visitors with more than"
119
+ msgstr "Відсікти відвідувачів з більш ніж"
120
 
121
  #: includes/settings/tabs/wps-maintenance.php:65
122
  msgid "A WP Cron job will be run daily to prune any users statistics data where the user has more than the defined number of hits in a day (aka they are probably a bot)."
123
+ msgstr "WP Cron працюватиме щодня, щоб відсікти будь-які статистичні дані, де користувач має більш ніж певне число переглядів в день (тобто вони, ймовірно, боти)."
124
 
125
  #: includes/optimization/tabs/wps-optimization-purging.php:217
126
  msgid "Purge visitors with more than"
127
+ msgstr "Очистити відвідувачів з більш ніж"
128
 
129
  #: includes/optimization/tabs/wps-optimization-purging.php:222
130
  msgid "hits"
131
+ msgstr "переглядів"
132
 
133
  #: includes/optimization/tabs/wps-optimization-purging.php:223
134
  msgid "Deleted user statistics data where the user has more than the defined number of hits in a day. This can be useful to clear up old data when your site has been hit by a bot. This will remove the visitor and their hits to the site, however it will not remove individual page hits as that data is not recorded on a per use basis. Minimum value is 10 hits."
135
+ msgstr "Видалені статистичні дані, де користувач має більш ніж певне число переглядів в день. Це може бути корисно для очищення старих даних, коли ваш сайт переглядався ботами. Це дозволить видалити відвідувача і його перегляди на сайті, однак не видаляться перегляди окремих сторінок , оскільки, такі дані не записуються на основі використання. Мінімальне значення 10 переглядів."
136
 
137
  #: includes/functions/purge-hits.php:28
138
  msgid "No visitors found to purge."
139
+ msgstr "Не знайдено жодного відвідувача для очищення."
140
 
141
  #: includes/functions/purge-hits.php:25
142
  msgid "%s records purged successfully."
143
+ msgstr "%s записів успішно очищено."
144
 
145
  #: ajax.php:174 includes/functions/purge-hits.php:32
146
  msgid "Number of hits must be greater than or equal to 10!"
147
+ msgstr "Число переглядів повинно бути більше або дорівнювати 10!"
148
 
149
  #: shortcode.php:134
150
  msgid "Page Visits"
151
+ msgstr "Відвідування сторінки"
152
 
153
  #: shortcode.php:137
154
  msgid "Page Count"
155
+ msgstr "Кількість сторінок"
156
 
157
  #: shortcode.php:138
158
  msgid "Comment Count"
159
+ msgstr "Кількість коментарів"
160
 
161
  #: shortcode.php:139
162
  msgid "Spam Count"
163
+ msgstr "Кількість спаму"
164
 
165
  #: shortcode.php:140
166
  msgid "User Count"
167
+ msgstr "Кількість користувачів"
168
 
169
  #: shortcode.php:141
170
  msgid "Post Average"
171
+ msgstr "середня кількість публікацій"
172
 
173
  #: shortcode.php:142
174
  msgid "Comment Average"
175
+ msgstr "середня кількість коментарів"
176
 
177
  #: shortcode.php:143
178
  msgid "User Average"
179
+ msgstr "Середня кількість користувачів"
180
 
181
  #: shortcode.php:151
182
  msgid "The time frame to get the statistic for, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it."
183
+ msgstr "Інтервал часу для отримання статистики для, strtotime() (http://php.net/manual/en/datetime.formats.php) буде використано для його обчислення."
184
 
185
  #: shortcode.php:155
186
  msgid "Search Provider"
187
+ msgstr "Пошуковий провайдер"
188
 
189
  #: shortcode.php:158
190
  msgid "The search provider to get statistics on."
191
+ msgstr "Пошуковий провайдер для отримання статистики"
192
 
193
  #: shortcode.php:162
194
  msgid "Number Format"
195
+ msgstr "Числовий формат"
196
 
197
  #: shortcode.php:165
198
  msgid "The format to display numbers in: i18n, english, none."
199
+ msgstr "Формат для відображення чисел в: i18n, англйська, нічого."
200
 
201
  #: shortcode.php:169
202
  msgid "English"
203
+ msgstr "Англійська"
204
 
205
  #: shortcode.php:170
206
  msgid "International"
207
+ msgstr "Міжнародна"
208
 
209
  #: includes/log/exclusions.php:191 includes/log/hit-statistics.php:163
210
  msgid "Hits Statistics Summary"
211
+ msgstr "Підсумкова статистика переглядів"
212
 
213
  #: includes/log/exclusions.php:201 includes/log/hit-statistics.php:174
214
  msgid "Chart Total"
215
+ msgstr "Сумарний Графік"
216
 
217
  #: includes/log/exclusions.php:206 includes/log/hit-statistics.php:180
218
  msgid "All Time Total"
219
+ msgstr "Увесь сумарний час"
220
 
221
  #: includes/log/log.php:57
222
  msgid "Have you thought about donating to WP Statistics?"
223
+ msgstr "Чи замислювалися ви про пожертвування для WP Statistics?"
224
 
225
+ #: includes/settings/tabs/wps-about.php:20 wp-statistics.php:366
226
  msgid "Donate"
227
+ msgstr "Пожертвувати"
228
 
229
  #: includes/settings/tabs/wps-about.php:24
230
  msgid "Fell like showing us how much you enjoy WP Statistics? Drop by our %s page and show us some love!"
231
+ msgstr "Хочете поділитися з нами, наскільки вам подобається WP Statistics? Перейдіть до нашої %s сторінки і покажіть нам вашу любов!"
232
 
233
  #: includes/settings/tabs/wps-about.php:24
234
  msgid "donation"
235
+ msgstr "пожертвування"
236
 
237
  #: includes/log/log.php:57
238
  msgid "Donate Now!"
239
+ msgstr "Пожертвувати зараз!"
240
 
241
  #: includes/log/log.php:57
242
  msgid "Close"
243
+ msgstr "Закрити"
244
 
245
  #: shortcode.php:128
246
  msgid "Select the statistic you wish to display."
247
+ msgstr "Вибрати статистику, яку хочете відображати."
248
 
249
  #: shortcode.php:125
250
  msgid "Statistic"
251
+ msgstr "Статистика"
252
 
253
  #: shortcode.php:136
254
  msgid "Post Count"
255
+ msgstr "Кількість публікацій"
256
 
257
  #: shortcode.php:148
258
  msgid "Time Frame"
259
+ msgstr "Інтервал часу"
260
 
261
+ #: includes/functions/functions.php:981
262
  msgid "to"
263
+ msgstr "до"
264
 
265
+ #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
266
  msgid "Go"
267
+ msgstr "перейти"
268
 
269
  #: includes/log/top-pages.php:95
270
  msgid "Rank #5"
271
+ msgstr "Ранг #5"
272
 
273
  #: includes/log/top-pages.php:95
274
  msgid "Rank #4"
275
+ msgstr "Ранг #4"
276
 
277
  #: includes/log/top-pages.php:95
278
  msgid "Rank #3"
279
+ msgstr "Ранг #3"
280
 
281
  #: includes/log/top-pages.php:95
282
  msgid "Rank #1"
283
+ msgstr "Ранг #1"
284
 
285
  #: includes/log/top-pages.php:95
286
  msgid "Rank #2"
287
+ msgstr "Ранг #2"
288
 
289
  #: includes/optimization/tabs/wps-optimization-database.php:56
290
  msgid "Visits Table"
291
+ msgstr "Таблиця переглядів"
292
 
293
  #: includes/optimization/tabs/wps-optimization-database.php:70
294
  msgid "Older installs of WP Statistics allow for duplicate entries in the visits table in a corner case. Newer installs protect against this with a unique index on the table. To create the index on the older installs duplicate entries must be deleted first. Clicking \"Update Now\" will scan the vistits table, delete duplicate entries and add the index."
295
+ msgstr "Старі установки WP Statistics дублювали записи у таблиці відвідувань у тупиковій ситуації. Нові установки захищені проти цього унікальним індексом в таблиці. Щоб створити індекс для старих установок, дубльовані записи мають бути видалені спочатку. Натиснувши на \"Оновити зараз\", почнеться сканування таблиці переглядів, видаляться дублікати записів і додадуться індекси."
296
 
297
  #: includes/optimization/tabs/wps-optimization-database.php:71
298
  msgid "This operation could take a long time on installs with many rows in the visits table."
299
+ msgstr "Ця операція може зайняти багато часу на установки з кількістю рядків у таблиці відвідувань."
300
 
301
  #: includes/optimization/tabs/wps-optimization-database.php:76
302
  msgid "Older installs of WP Statistics allow for duplicate entries in the visits table in a corner case. Newer installs protect against this with a unique index on the table."
303
+ msgstr "Старі установки WP Statistics дублювали записи у таблиці відвідувань у тупиковій ситуації. Нові установки захищені проти цього унікальним індексом в таблиці."
304
 
305
  #: includes/log/last-visitor.php:68
306
  msgid "Filtered by"
307
+ msgstr "Відфільтровано по"
308
 
309
+ #: includes/functions/functions.php:974 includes/functions/functions.php:977
310
  msgid "Range"
311
+ msgstr "Діапазон"
312
 
313
+ #: includes/functions/functions.php:981 includes/log/top-visitors.php:29
314
  msgid "MM/DD/YYYY"
315
+ msgstr "ММ/ДД/РРРР"
316
 
317
  #: includes/settings/tabs/wps-general.php:342
318
  msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
319
+ msgstr "Не використовуйте переклади і замість застосовуйте англійську за замовчуванням для WP Statistics (потрібно два завантаження сторінки)"
320
 
321
  #: includes/settings/tabs/wps-general.php:336
322
  msgid "Force English"
323
+ msgstr "примусова англійська"
324
 
325
  #: includes/settings/tabs/wps-general.php:331
326
  msgid "Languages"
327
+ msgstr "Мови"
328
 
329
  #: includes/settings/tabs/wps-exclusions.php:227
330
  msgid "Note: this option will NOT handle url parameters (anything after the ?), only to the script name. Entries less than two characters will be ignored."
331
+ msgstr "Примітка: Ця опція не оброблятиме параметри URL-адреси (будь-що після ?) , тільки ім'я скрипта. Записи менше двох символів будуть пропущені."
332
 
333
  #: includes/settings/tabs/wps-exclusions.php:225
334
  msgid "A list of local urls (ie. /wordpress/about, one per line) to exclude from statistics collection."
335
+ msgstr "Список локальних URL-адрес (тобто /wordpress/about, по одному в рядку), щоб вилучити зі списку статистики."
336
 
337
  #: includes/settings/tabs/wps-exclusions.php:222
338
  msgid "Excluded URLs list"
339
+ msgstr "Список вилучених URL-адрес"
340
 
341
  #: includes/log/exclusions.php:24
342
  msgid "Excluded URL"
343
+ msgstr "Вилучена URL-адреса"
344
 
345
  #: includes/log/widgets/summary.php:66
346
  msgid "Last 365 Days (Year)"
347
+ msgstr "Останні 365 днів (рік)"
348
 
349
  #: includes/log/widgets/summary.php:60
350
  msgid "Last 30 Days (Month)"
351
+ msgstr "Останні 30 днів (місяць)"
352
 
353
  #: includes/log/widgets/summary.php:54
354
  msgid "Last 7 Days (Week)"
355
+ msgstr "Останні 7 днів (тиждень)"
356
 
357
+ #: includes/functions/functions.php:405
358
  msgid "Yahoo!"
359
+ msgstr "Yahoo!"
360
 
361
+ #: includes/functions/functions.php:406
362
  msgid "Yandex"
363
+ msgstr "Yandex"
364
 
365
+ #: includes/functions/functions.php:402
366
  msgid "clearch.org"
367
+ msgstr "clearch.org"
368
 
369
+ #: includes/functions/functions.php:403
370
  msgid "DuckDuckGo"
371
+ msgstr "DuckDuckGo"
372
 
373
+ #: includes/functions/functions.php:401
374
  msgid "Bing"
375
+ msgstr "Bing"
376
 
377
+ #: includes/functions/functions.php:400
378
  msgid "Baidu"
379
+ msgstr "Baidu"
380
 
381
  #: editor.php:69
382
  msgid "Hits in the last 20 days"
383
+ msgstr "Переглядів за останні 20 днів"
384
 
385
  #: includes/log/exclusions.php:24
386
  msgid "Feeds"
387
+ msgstr "Потоки"
388
 
389
  #: includes/log/exclusions.php:24
390
  msgid "User Role"
391
+ msgstr "Роль користувача"
392
 
393
  #: includes/log/exclusions.php:24
394
  msgid "Login Page"
395
+ msgstr "Сторінка входу"
396
 
397
  #: includes/log/exclusions.php:24
398
  msgid "Admin Page"
399
+ msgstr "Сторінка адміністратора"
400
 
401
  #: includes/log/exclusions.php:24
402
  msgid "Self Referral"
403
+ msgstr "самостійний реферал"
404
 
405
  #: includes/log/exclusions.php:24
406
  msgid "IP Match"
407
+ msgstr "IP-матч"
408
 
409
  #: includes/log/exclusions.php:24
410
  msgid "Robot"
411
+ msgstr "Робот"
412
 
413
  #: includes/log/online.php:100
414
  msgid "Currently there are no users online in the site."
415
+ msgstr "В даний час на сайті немає користувачів онлайн ."
416
 
417
  #: includes/log/exclusions.php:24
418
  msgid "Robot Threshold"
419
+ msgstr "Граничне значення робота"
420
 
421
  #: includes/log/exclusions.php:24
422
  msgid "Honey Pot"
423
+ msgstr "Система-пастка"
424
 
425
  #: includes/log/widgets/page.php:8
426
  msgid "Page Trending Stats"
427
+ msgstr "Статистика відсліковування тенденцій"
428
 
429
  #: includes/log/exclusions.php:24
430
  msgid "Hostname"
431
+ msgstr "Ім'я хоста"
432
 
433
  #: includes/settings/tabs/wps-general.php:93
434
  #: includes/settings/tabs/wps-general.php:133
438
  #: includes/settings/tabs/wps-general.php:229
439
  #: includes/settings/tabs/wps-notifications.php:122
440
  msgid "Enable or disable this feature"
441
+ msgstr "Включити або виключити функцію"
442
 
443
  #: includes/settings/tabs/wps-general.php:99
444
  msgid "Check for online users every"
445
+ msgstr "Перевіряти користувачів онлайн кожну"
446
 
447
  #: includes/settings/tabs/wps-general.php:104
448
  msgid "Second"
449
+ msgstr "секунду"
450
 
451
  #: includes/settings/tabs/wps-general.php:105
452
  msgid "Time for the check accurate online user in the site. Now: %s Second"
453
+ msgstr "Час для перевірки достовірного онлайн користувача на сайті. Зараз:%s секунд"
454
 
455
  #: includes/settings/tabs/wps-general.php:111
456
  msgid "Record all user"
457
+ msgstr "Запис всіх користувачів"
458
 
459
  #: includes/settings/tabs/wps-general.php:117
460
  msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
461
+ msgstr "Ігнорує параметри виключення і реєструє всіх користувачів онлайн (у тому числі самостійних рефералів і роботів). Слід використовувати тільки для усунення неполадок."
462
 
463
  #: includes/settings/tabs/wps-general.php:155
464
  msgid "Store entire user agent string"
465
+ msgstr "Зберігає весь рядок користувача"
466
 
467
  #: includes/settings/tabs/wps-general.php:161
468
  msgid "Only enabled for debugging"
469
+ msgstr "Тільки включено для налагодження"
470
 
471
  #: includes/settings/tabs/wps-general.php:167
472
  msgid "Coefficient per visitor"
473
+ msgstr "Коефіціент на відвідувача"
474
 
475
  #: includes/settings/tabs/wps-general.php:172
476
  msgid "For each visit to account for several hits. Currently %s."
477
+ msgstr "На кожен візит декілька переглядів. В даний час %s"
478
 
479
  #: includes/settings/tabs/wps-general.php:177
480
+ #: includes/settings/tabs/wps-general.php:182 wp-statistics.php:355
481
+ #: wp-statistics.php:431
482
  msgid "Pages"
483
+ msgstr "Сторінки"
484
 
485
  #: includes/settings/tabs/wps-general.php:194
486
  msgid "Track all pages"
487
+ msgstr "Відслідковувати всі сторінки"
488
 
489
  #: includes/settings/tabs/wps-general.php:209
490
  msgid "Strip parameters from URI"
491
+ msgstr "Параметри смуги з URI"
492
 
493
  #: includes/settings/tabs/wps-general.php:215
494
  msgid "This will remove anything after the ? in a URL."
495
+ msgstr "Це видалить все після ? в URL-адресі."
496
 
497
  #: includes/settings/tabs/wps-general.php:223
498
  msgid "Disable hits column in post/pages list"
499
+ msgstr "Виключити колонку переглядів у списку публікацій/сторінок"
500
 
501
  #: includes/settings/tabs/wps-general.php:234
502
  msgid "Miscellaneous"
503
+ msgstr "Різне"
504
 
505
  #: includes/settings/tabs/wps-general.php:239
506
  msgid "Show stats in menu bar"
507
+ msgstr "Показати статистику в меню"
508
 
509
  #: includes/settings/tabs/wps-general.php:244
510
  msgid "No"
511
+ msgstr "Ні"
512
 
513
  #: includes/settings/tabs/wps-general.php:245
514
  msgid "Yes"
515
+ msgstr "Так"
516
 
517
  #: includes/settings/tabs/wps-general.php:247
518
  msgid "Show stats in admin menu bar"
519
+ msgstr "Показати статистику в адмін меню"
520
 
521
  #: includes/settings/tabs/wps-general.php:253
522
  msgid "Hide admin notices about non active features"
523
+ msgstr "Приховати повідомлення адміністратора про неактивні функції"
524
 
525
  #: includes/settings/tabs/wps-general.php:259
526
  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."
527
+ msgstr "За замовчуванням WP Statistics показує попередження, якщо яка-небудь з основних функцій виключена, на кожній сторінці адміністратора, цей параметр відключить ці повідомлення."
528
 
529
  #: includes/settings/tabs/wps-general.php:265
530
  msgid "Delete the manual"
531
+ msgstr "Видалити інструкцію"
532
 
533
  #: includes/settings/tabs/wps-general.php:271
534
  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."
535
+ msgstr "За замовчуванням WP Statistics зберігає інструкцію в папці плагіна (~ 5 мб), якщо ця опція включена, вона буде видалена хараз і протягом оновлень в майбутньому."
536
 
537
  #: includes/settings/tabs/wps-general.php:276
538
  msgid "Search Engines"
539
+ msgstr "Пошуковики"
540
 
541
  #: includes/settings/tabs/wps-general.php:293
542
  msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
543
+ msgstr "Відключення всіх пошукових систем не допускається, це призведе до активації всіх пошукових систем ."
544
 
545
  #: includes/settings/tabs/wps-general.php:308
546
  msgid "disable"
547
+ msgstr "Відключити"
548
 
549
  #: includes/settings/tabs/wps-general.php:309
550
  msgid "Disable %s from data collection and reporting."
551
+ msgstr "Відключити%s з колекції даних і звітності."
552
 
553
  #: includes/settings/tabs/wps-general.php:315
554
  msgid "Charts"
555
+ msgstr "Графіки"
556
 
557
  #: includes/settings/tabs/wps-general.php:320
558
  msgid "Include totals"
559
+ msgstr "Включити загальні дані"
560
 
561
  #: includes/settings/tabs/wps-general.php:326
562
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
563
+ msgstr "Додати загальний рядок в графік з декількома значеннями, як пошукові реферали"
564
 
565
+ #: includes/settings/tabs/wps-externals.php:32
566
  msgid "GeoIP settings"
567
+ msgstr "GeoIP налаштування"
568
 
569
+ #: includes/settings/tabs/wps-externals.php:37
570
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
571
+ msgstr "Послуги розміщення IP, наданих GeoLite2 від MaxMind, доступні з %s."
572
 
573
+ #: includes/settings/tabs/wps-externals.php:47
574
  msgid "GeoIP collection"
575
+ msgstr "GeoIP колекція"
576
 
577
+ #: includes/settings/tabs/wps-externals.php:53
578
  msgid "For get more information and location (country) from visitor, enable this feature."
579
+ msgstr "Для отримання більш детальної інформації та місцезнаходження (країна) від відвідувача, включіть цю функцію."
580
 
581
+ #: includes/settings/tabs/wps-externals.php:59
582
  msgid "Update GeoIP Info"
583
+ msgstr "Відновити GeoIP інфо"
584
 
585
+ #: includes/settings/tabs/wps-externals.php:64
586
  msgid "Download GeoIP Database"
587
+ msgstr "Завантажити GeoIP базу даних"
588
 
589
+ #: includes/settings/tabs/wps-externals.php:71
590
  msgid "Schedule monthly update of GeoIP DB"
591
+ msgstr "Графік щомісячного оновлення БД GeoIP"
592
 
593
+ #: includes/settings/tabs/wps-externals.php:97
594
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
595
+ msgstr "Завантаження бази даних GeoIP будуть заплановані протягом 2 днів після першого вівторка місяця."
596
 
597
+ #: includes/settings/tabs/wps-externals.php:98
598
  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)."
599
+ msgstr "Ця опця також завантажить базу даних, якщо локальний розмір файлу менше, ніж 1k (це, як правило, означає, що заглушка, яка поставляється з плагіном, все ще перебуває на місці)."
600
 
601
+ #: includes/settings/tabs/wps-externals.php:104
602
  msgid "Populate missing GeoIP after update of GeoIP DB"
603
+ msgstr "Заповніть відсутні GeoIP після оновлення БД GeoIP"
604
 
605
+ #: includes/settings/tabs/wps-externals.php:110
606
  msgid "Update any missing GeoIP data after downloading a new database."
607
+ msgstr "Оновити відсутні дані Geoip після завантаження нової бази даних."
608
 
609
+ #: includes/settings/tabs/wps-externals.php:116
610
  msgid "Country code for private IP addresses"
611
+ msgstr "Код країни для приватних IP-адрес"
612
 
613
+ #: includes/settings/tabs/wps-externals.php:121
614
  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."
615
+ msgstr "Міжнародний стандарт двох літерний код країни (тобто, США = Сполучені Штати, Канада CA =, і т.д.) для приватних (не маршрутизованих) IP-адрес (тобто 10.0.0.1, 192.158.1.1, 127.0.0.1 і т.д.). Використовуйте \"000\" (три нуля), щоб застосовувати \"невідомо\" в якості коду країни."
616
 
617
+ #: includes/settings/tabs/wps-externals.php:132
618
  msgid "GeoIP collection is disabled due to the following reasons:"
619
+ msgstr "Колекція GeoIP відключена через наступні причини:"
620
 
621
+ #: includes/settings/tabs/wps-externals.php:135
622
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
623
+ msgstr "Колекції GeoIP потрібно PHP %s або вище, в даний час відключена у зв'язку з встановленою версією PHP "
624
 
625
+ #: includes/settings/tabs/wps-externals.php:140
626
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
627
+ msgstr "Колекції GeoIP потрібне розширення cURL PHP і вона не